Malloc和memcpy结构加数组

问题描述 投票:1回答:1

我正在尝试寻找一个更好的标题,如果造成混淆,我深表歉意。

我有一个二进制消息,我正在通过串行端口读取。该消息包含一个恒定的8字节标头和一个动态消息长度(取决于8字节标头中定义的消息类型)。

我正在尝试创建一个函数,该函数返回使用malloc分配的数组的此消息。

我更改了一些变量/成员名称只是为了更清楚示例:

#include <stdlib.h>
#include <stdio.h>

typedef struct MyMessageHeader {
  uint8_t byte1, byte2, byte3, byte4, byte5, byte6, byte7, 
} MyMessageHeader;

// I could have up to 100 different message types, but they all contain 
// the same header, so trying to make a message type with a header and array pointer
typedef struct MyMessage {
  MyMessageHeader header;
  uint8_t* data;
} MyMessage;

// Function to copy a raw byte array that is read from the serial port into
// a MyMessage object
MyMessage* FunctionThatIsNotWorking(uint8_t* rawBytes) {
  // Somehow we have determined in rawBytes that this message contains 12 bytes of data
  // plus the 8 bytes which is the header
  MyMessage* ret_msg = malloc(20);
  // This is where things go wrong and I get segmentation faults. Likely due to
  // my misunderstanding of malloc.
  // Copy the rawBytes into MyMessage. Assuming the first 8 bytes of rawBytes goes
  // into MyMessageHeader, and the last 12 bytes go into data
  memcpy(ret_msg, rawBytes, 20);
}

int main() {
uint8_t raw_bytes[20] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};
MyMessage* my_msg = FunctionThatIsNotWorking(raw_bytes);
// Expecting now but this doesnt work
my_msg->header.byte1 == 1;
my_msg->header.byte2 == 2;
my_msg->header.byte3 == 3;
// ...
// first byte of data should be the 9th byte in raw_bytes 
my_msg->data[0] == 9;
my_msg->data[1] == 10;
}

我在这里想念的是什么,或者我的误解是什么?

c malloc memcpy
1个回答
2
投票

我怀疑您要骗的是(双关语)structure padding

建议:

  1. 直接从设备读取数据到本地缓冲区。使缓冲区至少与最大预期消息一样长。

  2. 读取标题

  3. 执行您的“ malloc”,最后

  4. 将缓冲区中的数据解包到您中


确定:这是我的建议:

/*
 * SAMPLE OUTPUT:
 * sizeof(*my_msg)= 16
 * header: 01 02 03 04 05 06 07 08
 * data: 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14
 */
#include <stdio.h>
#include <stdint.h>   // unit8_t
#include <stdlib.h>   // malloc()
#include <string.h>   // memcpy ()

typedef struct MyMessage {
  uint8_t header[8];  // 8 bytes (you said) for header; message length unknown.
  uint8_t* data;      // Here, you're only allocating space for a pointer (e.g. 4 bytes)
} MyMessage_t;

MyMessage_t* FunctionThatIsNotWorking(uint8_t* rawBytes) {
  // Let's assume rawBytes contains header + data
  // Parse the header, determine message type, and determine message length
  // ... TBD ...

  // Allocate your struct
  MyMessage_t* ret_msg = malloc(sizeof (struct MyMessage));

  // Now allocate space for your *data* (let's assume this particular message has 12 bytes)
  ret_msg->data = malloc(12);

  // Copy your header (from rawBytes)
  memcpy(&ret_msg->header, rawBytes, 8);

  // Copy the data (starting on the ninth byte; assume the data is contiguous)
  memcpy(ret_msg->data, &rawBytes[8], 12);

  // Return the completed record
  return ret_msg;
}

int main() {
  int i;
  // Create some dummy data
  uint8_t raw_bytes[20] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};

  MyMessage_t* my_msg = FunctionThatIsNotWorking(raw_bytes);

  printf ("sizeof(*my_msg)= %ld\n", sizeof(*my_msg));
  printf ("header: ");
  for (i=0; i<sizeof(my_msg->header); i++) {
    printf("%02x ", my_msg->header[i]);
  }
  printf ("\ndata: ");
  for (i=0; i<12; i++) {
    printf("%02x ", my_msg->data[i]);
  }
  printf ("\n");

  return 0;
}

我想说的是,编译器为您的结构提供的字节布局为NOT,这一定是您所期望的。字段中通常会有“多余的空格”,以确保对齐。

如果您在发送端使用结构(在构造消息时),则接收方中的数据布局不一定与发送方中的布局匹配。

因此,通常您需要明确地在不同主机/不同平台之间来回发送消息,以“打包”和“解压缩”消息。

我想强调的是,您从未为数据分配空间。这是真的:)希望以上示例对您有所帮助。

最后,在大多数情况下,直到您实际阅读标题为止,消息的长度才是未知的。我的示例也处理这种情况。

如果只想将数据传递回调用者(我的示例同时复制标头和数据),则可能要在结构中添加“消息长度”字段。

总是尝试使用“ sizeof”运算符,而不是硬编码“ magic number”。其次,最好是声明常量(例如#define DATA_LENGTH 12)。

'希望有帮助!


另一个例子。

假设您知道您的消息数据总是恰好是12个字节。并继续假设您希望header字段为8个字节。您可以这样做:

...
typedef struct MyMessage {
  uint8_t header[8]; // 8 bytes (you said) for header
  uint8_t data[12];  // This allocates 12 bytes
} MyMessage_t;
...
MyMessage_t* FunctionThatIsNotWorking(uint8_t* rawBytes) {
  // Let's assume rawBytes contains header + data
  // Parse the header, determine message type, and determine message length
  // ... TBD ...

  // Allocate your struct
  MyMessage_t* ret_msg = malloc(sizeof (*ret_msg));

  // Copy directly from rawBytes
  memcpy(ret_msg, rawBytes, sizeof (*ret_msg));

  // Return the completed record
  return ret_msg;
}
© www.soinside.com 2019 - 2024. All rights reserved.