gpt4 book ai didi

c - 使用映射共享内存获取 "out-of-bounds"和 "variable uninitialized"警告

转载 作者:行者123 更新时间:2023-11-30 14:44:43 25 4
gpt4 key购买 nike

作为 Linux C 应用程序的一部分,我编写了一个小型库,以允许不同的进程通过共享内存区域进行通信。

我收到了很多针对潜在越界指针和我以这种方式创建的内存区域中包含的潜在未初始化变量的警报。

考虑我编写的用于创建共享内存区域的函数:

int LayOutShm (const char *shm_key, size_t memory_size, void ** new_memory)
{
int fd_value = 0;
void * pshm = NULL;
int return_value = MEM_MGMT_SHM_ERROR;

/* Force new_buffer pointer to NULL just like we initialize return_value to MEM_MGMT_SHM_ERROR */
*new_memory = NULL;

/* Shared object is created with O_EXCL to prevent two namesake areas from being created*/
fd_value = shm_open(shm_key, O_CREAT | O_RDWR | O_EXCL , S_IRWXU);

if(fd_value > 0){
if(ftruncate(fd_value, memory_size) == 0){
/* Here is where we get the pointer to the created memory area */
pshm = mmap(NULL, memory_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd_value, 0);
if(pshm != MAP_FAILED){
return_value = MEM_MGMT_SHM_OK;
memset(pshm,0,memory_size); /* Initialize the memory area */
*new_memory = pshm; /* Pass the pointer back to the caller */
}
}
}

return return_value;
}/*LayOutShm*/

现在,这是我收到警告时的一些代码:

#define SHM_KEY                 "my_shm_key"

typedef struct{
pthread_mutex_t shm_mutex;
int shm_var1;
char shm_var2;
union{
int shm_union_var1;
char shm_union_var2;
}shm_union
}t_shm_area;

static t_shm_area * shm_area = NULL;

static int ShmInitialization(void)
{
int return_value = -1;

(void)LayOutShm(SHM_KEY, sizeof(t_shm_area), (void**)&shm_area);

/*Check for errors in shared memory creation*/
if (shm_area == NULL){
syslog(LOG_ERR | LOG_USER, "Error laying out shared memory segment\n");
}
else{
shm_area->var1 = 0; /* This assignment gets flagged with a potential out-of-bounds runtime error */
shm_area->shm_union.shm_union_var2 = 0; /* This assignment gets flagged with a potential out-of-bounds runtime error */

/*Create empty attributes structure*/
pthread_mutexattr_t mutex_attributes;

/*Initialize attributes structures with default values*/
(void)pthread_mutexattr_init(&mutex_attributes);

/*Set attributes structure with shared memory value*/
(void)pthread_mutexattr_setpshared(&mutex_attributes, PTHREAD_PROCESS_SHARED);

/*settype mutex PTHREAD_MUTEX_ERRORCHECK*/
(void)pthread_mutexattr_settype(&mutex_attributes, PTHREAD_MUTEX_ERRORCHECK);

/*Initialize the mutex with all the previous attributes*/
(void)pthread_mutex_init(&shm_area->shm_mutex, &mutex_attributes);

return_value = 0;
}

return return_value;
}/*ShmInitialization*/

这是我第一次尝试双指针,所以如果我用声明中的 void ** 或将输入双指针转换为 void 的方式搞砸了事情,我不会感到惊讶。

该函数的先前实现直接返回指针,并没有产生这些问题,但我被要求更改它,以便我们可以返回状态代码(即使我们现在不使用它们)。

创建该区域后,我传递给库以从共享内存获取值的任何本地声明的变量都会受到潜在“越界”运行时错误或“变量可能未初始化”的警告的“污染”警告。该库已经使用多种不同类型的数据结构(其中一些大至 15kB)进行了测试,数据完整性和性能令人满意。

知道为什么我会收到这些警告吗?

非常感谢,最诚挚的问候!

最佳答案

C 中的通用指针类型是 void*。然而,没有通用的指针到指针类型void**。因此,强制转换 (void**)&shm_area 是不兼容指针类型之间的强制转换。从技术上讲,这是未定义的行为(严格的别名违规),因此任何事情都可能发生。

要解决此问题,请使用临时 void* 进行参数传递:

void* vptr = shm_area;
LayOutShm(...&vptr);
shm_area = vptr;

关于c - 使用映射共享内存获取 "out-of-bounds"和 "variable uninitialized"警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53409956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com