Sponsored Content
Full Discussion: id3lib SEGFAULT
Top Forums Programming id3lib SEGFAULT Post 302389324 by errb on Sunday 24th of January 2010 08:14:00 AM
Old 01-24-2010
Java id3lib SEGFAULT

Hello everyone,
I'm writing a program using the id3lib unfortunately I've encountered with memory issue that cause segmentation fault. I tried to rerun and analyze the program with valgrind but it doesn't point me anywhere. I really stuck on this one.

Valgrind output:
Code:
==14716== Invalid read of size 4

==14716==    at 0x404BEFC: ID3_Frame::GetField(ID3_FieldID) const (in /usr/lib/libid3-3.8.so.3.0.0)

==14716==    by 0x8049BD0: Parse_mask(char const*, char const*, ID3_TagType) (in /home/earlcash/dev/id3fcp/id3fcp)

==14716==    by 0x804967D: main (in /home/earlcash/dev/id3fcp/id3fcp)

==14716==  Address 0x4 is not stack'd, malloc'd or (recently) free'd

==14716==

==14716== Process terminating with default action of signal 11 (SIGSEGV)

==14716==  Access not within mapped region at address 0x4

==14716==    at 0x404BEFC: ID3_Frame::GetField(ID3_FieldID) const (in /usr/lib/libid3-3.8.so.3.0.0)

==14716==    by 0x8049BD0: Parse_mask(char const*, char const*, ID3_TagType) (in /home/earlcash/dev/id3fcp/id3fcp)

==14716==    by 0x804967D: main (in /home/earlcash/dev/id3fcp/id3fcp)

==14716==

==14716== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 21 from 1)

==14716== malloc/free: in use at exit: 775 bytes in 6 blocks.

==14716== malloc/free: 16 allocs, 10 frees, 9,487 bytes allocated.

==14716== For counts of detected errors, rerun with: -v

==14716== searching for pointers to 6 not-freed blocks.

==14716== checked 130,888 bytes.

'Parse_mask' definition:
Code:
const char *Parse_mask(const char *filename, const char *mask, ID3_TagType id3_ver){
    p_symbols event[] =
    {
        { "%n", ID3FID_TRACKNUM },
        { "%i", ID3FID_ORIGARTIST },
        { "%t", ID3FID_TITLE },
        { "%a", ID3FID_ALBUM },
    //    { "%g", ID3FID_ },
        { "%y", ID3FID_ORIGYEAR },
    //    { "%c",  },
        { NULL, ID3FID_NOFRAME }
    };
    string s_mask = mask;
    ID3_Tag file;
    /*ID3_Frame *f_frame = NULL;
    ID3_Field *f_field = NULL;*/
    char tag_buff[255];
    int iter = 0;
    size_t match;

    if(file.Link(filename, id3_ver) == 0){
        return NULL;    
    }
    
    while(event[iter].symbol != NULL){
        
        if((match = s_mask.find(event[iter].symbol)) != string::npos){
            file.Find(event[iter].frame_id)->GetField(ID3FN_TEXT)->Get(tag_buff, 255);
            s_mask.replace(match, strlen(event[iter].symbol), tag_buff);
            iter++;
            continue;
        }
        iter++;
    }

    file.Clear();
    s_mask += ".mp3";
    return s_mask.c_str();
}

Thanks in advance Smilie
 

10 More Discussions You Might Find Interesting

1. Programming

gnu history library signal segfault

i am trying to use the history functions in a c++ program along with a custom signal handler for SIGINT. the prog works fine catching signals without the line: add_history(*args); but as soon as this line is added, the prog segfaults on SIGINT. does anyone have experience using gnu... (2 Replies)
Discussion started by: a1g0rithm
2 Replies

2. UNIX for Dummies Questions & Answers

[Linux] How Do I Run Until Segfault

Hello, sorry if this has been posted before but i was wondering if there is a way to run a program until a segmentation fault is found. Currently i'm using a simple shell script which runs my program 100 times, sleeps 1 second because srand(time(0)) is dependent on seconds. Is there a possible... (1 Reply)
Discussion started by: aslambilal
1 Replies

3. Programming

how to avoid the segfault from Address 0x1cd00000103 out of bounds

After allocating memory for some variables, segfault is often to happen, due to the same reason: Address 0x1cd00000103 out of bounds It is welcome to recommend some treatments. Thanks e.g. is_done = 0x1cd00000103 <Address 0x1cd00000103 out of bounds>, hood = 0x23c00000247, c =... (11 Replies)
Discussion started by: cdbug
11 Replies

4. Solaris

Working around netscape 4.9 segfault on Solaris 8

We have a Solaris 8 server which users login to via VNC to get a desktop. On that desktop these users use Netscape Communicator 4.9 to access a very important mail account. Unfortunately Netscape has started segfaulting regularly. Does anyone have any ideas how I can try to find out what point... (1 Reply)
Discussion started by: aussieos
1 Replies

5. Programming

2 Problems: Segfault on ctrl+c and syslog() prob

1. Even if i have the handles for ctrl+c it gives off a segfault 2. syslog doesn't log LOG_ERR event with log masked specified or non specified, it logs LOG_WARNING however... #include <sys/types.h> /* include this before any other sys headers */ #include <sys/stat.h> #include <fcntl.h>... (2 Replies)
Discussion started by: james2432
2 Replies

6. UNIX for Dummies Questions & Answers

Compiling with debugger flag -g fixes SEGfault (fortran90)

So the title kinda says it all. I was getting a SEGfault, so I decided to compile with the -g option to find where, and low and behold the SEGfault doesn't occur. I suppose the answer is "Problem solved! You fixed yet another SEGfault." But I am very curious how this could have happened. ... (3 Replies)
Discussion started by: drbones
3 Replies

7. Programming

Is Drive Valid Segfault

I have a program that allows users to specify the debug log file location and name. I have tried using the access() and stat() but they both segfault if the drive say (d:\) is invalid. Both seem to be fine if the drive exists. Could someone please point me in the direction to a function that... (1 Reply)
Discussion started by: robfwauk
1 Replies

8. Programming

segfault in pointer to string program

hello all, my question is not about How code can be rewritten, i just wanna know even though i am not using read only memory of C (i have declared str) why this function gives me segfault :wall:and the other code executes comfortably though both code uses same pointer arithmetic. ... (4 Replies)
Discussion started by: zius_oram
4 Replies

9. Programming

String array iteration causing segfault

I am populating an array of string and print it. But it going in infinite loop and causing segfault. char Name = { "yahoo", "rediff", "facebook", NULL }; main(int argc, char* argv) { int j = 0; ... (7 Replies)
Discussion started by: rupeshkp728
7 Replies

10. Programming

Segfault When Parsing Delimiters In C

Another project, another bump in the road and another chance to learn. I've been trying to open gzipped files and parse data from them and hit a snag. I have data in gzips with a place followed by an ip or ip range sort of like this: Some place:x.x.x.x-x.x.x.x I was able to modify some code... (6 Replies)
Discussion started by: Azrael
6 Replies
scf_iter_create(3SCF)													     scf_iter_create(3SCF)

NAME
scf_iter_create, scf_iter_handle, scf_iter_destroy, scf_iter_reset, scf_iter_handle_scopes, scf_iter_scope_services, scf_iter_ser- vice_instances, scf_iter_service_pgs, scf_iter_service_pgs_typed, scf_iter_instance_snapshots, scf_iter_snaplevel_pgs, scf_iter_snaplevel_pgs_typed, scf_iter_instance_pgs, scf_iter_instance_pgs_typed, scf_iter_instance_pgs_composed, scf_iter_instance_pgs_typed_composed, scf_iter_pg_properties, scf_iter_property_values, scf_iter_next_scope, scf_iter_next_service, scf_iter_next_instance, scf_iter_next_snapshot, scf_iter_next_pg, scf_iter_next_property, scf_iter_next_value - iterate through the Service Configuration Facility repository SYNOPSIS
cc [ flag... ] file... -lscf [ library... ] #include <libscf.h> scf_iter_t *scf_iter_create(scf_handle_t *handle); scf_handle_t *scf_iter_handle(scf_iter_t *iter); void scf_iter_destroy(scf_iter_t *iter); void scf_iter_reset(scf_iter_t *iter); int scf_iter_handle_scopes(scf_iter_t *iter, const scf_handle_t *h); int scf_iter_scope_services(scf_iter_t *iter, const scf_scope_t *parent); int scf_iter_service_instances(scf_iter_t *iter, const scf_service_t *parent); int scf_iter_service_pgs(scf_iter_t *iter, const scf_service_t *parent); int scf_iter_service_pgs_typed(scf_iter_t *iter, const scf_service_t *parent, const char *pgtype); int scf_iter_instance_snapshots(scf_iter_t *iter, const scf_instance_t *parent); int scf_iter_snaplevel_pgs(scf_iter_t *iter, const scf_snaplevel_t *parent); int scf_iter_snaplevel_pgs_typed(scf_iter_t *iter, const scf_snaplevel_t *parent, const char *pgtype); int scf_iter_instance_pgs(scf_iter_t *iter, scf_instance_t *parent); int scf_iter_instance_pgs_typed(scf_iter_t *iter, scf_instance_t *parent, const char *pgtype); int scf_iter_instance_pgs_composed(scf_iter_t *iter, const scf_instance_t *instance, const scf_snapshot_t *snapshot); int scf_iter_instance_pgs_typed_composed(scf_iter_t *iter, const scf_instance_t *instance, const scf_snapshot_t *snapshot, const char *pgtype); int scf_iter_pg_properties(scf_iter_t *iter, const scf_propertygroup_t *parent); int scf_iter_property_values(scf_iter_t *iter, const scf_property_t *parent); int scf_iter_next_scope(scf_iter_t *iter, scf_scope_t *out); int scf_iter_next_service(scf_iter_t *iter, scf_service_t *out); int scf_iter_next_instance(scf_iter_t *iter, scf_instance_t *out); int scf_iter_next_snapshot(scf_iter_t *iter, scf_snapshot_t *out); int scf_iter_next_pg(scf_iter_t *iter, scf_pg_t *out); int scf_iter_next_property(scf_iter_t *iter, scf_property_t *out); int scf_iter_next_value(scf_iter_t *iter, scf_value_t *out); The scf_iter_create() function creates a new iterator associated with handle. The scf_iter_destroy() function destroys an iteration. The scf_iter_reset() function releases any resources involved with an active iteration and returns the iterator to its initial state. The scf_iter_handle_scopes(), scf_iter_scope_services(), scf_iter_service_instances(), scf_iter_instance_snapshots(), scf_iter_ser- vice_pgs(), scf_iter_instance_pgs(), scf_iter_snaplevel_pgs(), scf_iter_pg_properties(), and scf_iter_property_values() functions set up a new iteration of all the children of parent of a particular type. The scf_iter_service_pgs_typed(), scf_iter_instance_pgs_typed(), and scf_iter_snaplevel_pgs_typed() functions iterate over the child prop- erty groups of parent, but restrict them to a particular property group type. The scf_iter_instance_pgs_composed() function sets up a new iteration of the composed view of instance's children at the time snapshot was taken. If snapshot is NULL, the current properties are used. The composed view of an instance's properties is the union of the properties of the instance and its ancestors. Properties of the instance take precedence over properties of the service with the same name, including property group name. Property groups retrieved with this iterator might not have instance as their parent and properties retrieved from such property groups might not have the indicated property group as their parent. If instance and its parent have property groups with the same name but different types, the properties in the property group of the parent are excluded. The scf_iter_instance_pgs_typed_composed() function behaves as scf_iter_instance_pgs_composed(), except the property groups of the type pgtype are returned. The scf_iter_next_scope(), scf_iter_next_service(), scf_iter_next_instance(), scf_iter_next_snapshot(), scf_iter_next_pg(), scf_iter_next_property(), and scf_iter_next_value() functions retrieve the next element of the iteration. Upon successful completion, scf_iter_create() returns a pointer to a new iterator. Otherwise, it returns NULL. Upon successful completion, scf_iter_handle() returns the handle associated with iter. Otherwise it returns NULL. Upon successful completion, scf_iter_handle_scopes(), scf_iter_scope_services(), scf_iter_service_instances(), scf_iter_instance_snap- shots(), scf_iter_service_pgs(), scf_iter_instance_pgs(), scf_iter_snaplevel_pgs(), scf_iter_pg_properties(), scf_iter_property_values(), scf_iter_service_pgs_typed(), scf_iter_instance_pgs_composed(), scf_iter_instance_pgs_typed(), scf_iter_instance_pgs_typed_composed(), and scf_iter_snaplevel_pgs_typed() return 0. Otherwise, they return -1. Upon successful completion, scf_iter_next_scope(), scf_iter_next_service(), scf_iter_next_instance(), scf_iter_next_snapshot(), scf_iter_next_pg(), scf_iter_next_property(), and scf_iter_next_value() return 1. If the iterator is complete, they return 0. Otherwise, they return -1. The scf_iter_create() function will fail if: SCF_ERROR_INVALID_ARGUMENT The handle argument is NULL. SCF_ERROR_NO_MEMORY There is no memory available. SCF_ERROR_NO_RESOURCES The server does not have adequate resources for a new iteration. The scf_iter_handle() function will fail if: SCF_ERROR_HANDLE_DESTROYED The handle associated with iter has been destroyed. The scf_iter_handle_scopes(), scf_iter_scope_services(), scf_iter_service_instances(), scf_iter_instance_snapshots(), scf_iter_ser- vice_pgs(), scf_iter_instance_pgs(), scf_iter_instance_pgs_composed(), scf_iter_snaplevel_pgs(), scf_iter_pg_properties(), scf_iter_prop- erty_values(), scf_iter_service_pgs_typed(), scf_iter_instance_pgs_typed(), scf_iter_instance_pgs_typed_composed(), and scf_iter_snaplevel_pgs_typed() functions will fail if: SCF_ERROR_DELETED The parent has been deleted. SCF_ERROR_NOT_SET The parent is not set. SCF_ERROR_NOT_BOUND The handle is not bound. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. SCF_ERROR_HANDLE_MISMATCH The iter and parent arguments are not derived from the same handle. The scf_iter_service_pgs_typed(), scf_iter_instance_pgs_typed(), scf_iter_instance_pgs_typed_composed(), and scf_iter_snaplevel_pgs_typed() functions will fail if: SCF_ERROR_INVALID_ARGUMENT The pgtype argument is not a valid property group type. The scf_iter_next_service(), scf_iter_next_instance(), scf_iter_next_snapshot(), scf_iter_next_pg(), scf_iter_next_property(), and scf_iter_next_value() functions will fail if: SCF_ERROR_DELETED The parent the iterator is attached to has been deleted. The scf_iter_next_scope(), scf_iter_next_service(), scf_iter_next_instance(), scf_iter_next_snapshot(), scf_iter_next_pg(),scf_iter_next_property(), and scf_iter_next_value() functions will fail if: SCF_ERROR_NOT_SET The iterator is not set. SCF_ERROR_INVALID_ARGUMENT The requested object type does not match the type the iterator is walking. SCF_ERROR_NOT_BOUND The handle is not bound. SCF_ERROR_HANDLE_MISMATCH The iter and parent arguments are not derived from the same handle. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. The scf_error(3SCF) function can be used to retrieve the error value. Example 1: Iterate over all instances under a service. scf_iter_t *iter = scf_iter_create(handle); if (iter == NULL || scf_iter_service_instances(iter, parent) == -1) { /* failure */ } while ((r = scf_iter_next_instance(iter, child)) > 0) { /* process child */ } if (r < 0) { /* failure */ } scf_iter_destroy(iter); Example 2: Connect to the repository, walk all services and instances and print their FMRIs. scf_handle_t *handle = scf_handle_create(SCF_VERSION); scf_scope_t *scope = scf_scope_create(handle); scf_service_t *svc = scf_service_create(handle); scf_instance_t *inst = scf_instance_create(handle); scf_iter_t *svc_iter = scf_iter_create(handle); scf_iter_t *inst_iter = scf_iter_create(handle); size_t sz = scf_limit(SCF_LIMIT_MAX_FMRI_LENGTH) + 1; char *fmri = malloc(sz + 1); int r; if (handle == NULL || scope == NULL || svc == NULL || inst == NULL || svc_iter == NULL || inst_iter == NULL || fmri == NULL) { /* failure */ } if (scf_handle_bind(handle) == -1 || scf_handle_get_scope(handle, SCF_SCOPE_LOCAL, scope) == -1 || scf_iter_scope_services(svc_iter, scope) == -1) { /* failure */ } while ((r = scf_iter_next_service(svc_iter, svc)) > 0) { if (scf_service_to_fmri(svc, fmri, sz) < 0) { /* failure */ } puts(fmri); if (scf_iter_service_instances(inst_iter, svc) < 0) { /* failure */ } while ((r = scf_iter_next_instance(inst_iter, inst)) > 0) { if (scf_instance_to_fmri(inst, fmri, sz) < 0) { /* failure */ } puts(fmri); } if (r < 0) break; } if (r < 0) { /* failure */ } scf_handle_destroy(handle); scf_scope_destroy(scope); scf_service_destroy(svc); scf_instance_destroy(inst); scf_iter_destroy(svc_iter); scf_iter_destroy(inst_iter); See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ libscf(3LIB), scf_error(3SCF), scf_handle_create(3SCF), attributes(5) 22 Aug 2005 scf_iter_create(3SCF)
All times are GMT -4. The time now is 10:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy