簡體   English   中英

C 指向指針和隊列的指針

[英]C pointer to pointer and queue

我有接受指向指針的指針的方法

typedef struct message_struct_t {
  struct mystruct_t **obj;  //not sure if this correct
  char name[50];
};



int server(mystruct _t **obj) {
   //i am able to push this to a queue
   //but first i store this in my temp struct
   message_struct_t *message = malloc(sizeof(message_struct_t));
   message->obj = obj;
   message->name = "Jaime";
   myqueue_enqueue(message);

   //some mutex and locking mechanism here
   for(int i = 0; i < num_threads; i++)
      pthread_create(&threads[i], NULL, send_message, NULL);
}

我需要獲取這個對象並將它傳遞給我將在線程池中處理的方法

   int send_message() {
       //i check and there is an item in my queue, but when i try to assign it to a new struct for 
       //handling i get errors
       struct message_struct *received = malloc(sizeof(message_struct)); //ERROR HERE
       printf("did I get here ? \n", received->name"); //ERROR

       free(received);
   }

我得到的錯誤是這個

  ==20730==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x61d0000102b0 at pc 0x55bab7c01cf5 bp 0x7f4d8a2fe980 sp 0x7f4d8a2fe0f8 
    READ of size 2089 at 0x61d0000102b0 thread T1
        #0 0x55bab7c01cf4 in printf_common(void*, char const*, __va_list_tag*) (/project_main+0x5ccf4)

0x61d0000102b0 is located 0 bytes to the right of 2096-byte region [0x61d00000fa80,0x61d0000102b0)
allocated by thread T1 here:
    #0 0x55bab7c6c7b0 in malloc 

in printf_common(void*, char const*, __va_list_tag*)
Shadow bytes around the buggy address:
  0x0c3a7fffa000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    
  0x0c3a7fffa010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    
  0x0c3a7fffa020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    
  0x0c3a7fffa030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    
  0x0c3a7fffa040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    
=>0x0c3a7fffa050: 00 00 00 00 00 00[fa]fa fa fa fa fa fa fa fa fa
  0x0c3a7fffa060: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa    
  0x0c3a7fffa070: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa    
  0x0c3a7fffa080: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa    
  0x0c3a7fffa090: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa    
  0x0c3a7fffa0a0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa    
Shadow byte legend (one shadow byte represents 8 application bytes): 
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb

現在我是 C 的新手,我可能在某處犯了一些明顯的錯誤,我會很感激一些關於我可能在哪里分配錯誤的建議(也許是指針?)。

您的send_message應如下所示:

void *send_message(void *args) {
    struct message_struct *received  = *((struct message_struct *) args);
    // ....
    free(received );
}

如果您無法更改send_message原型,則必須以某種方式將其包裝在void * func(void *args) ,我認為這會過多地維護接收到的消息的狀態。

此外,您需要確保正確釋放獲取的資源。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM