这似乎是我以前的帖子,但这里的问题不同..
这是问题的 C 结构 -
typedef struct ip_esp_private { /* keep track of things privately */
u_int32_t type;
u_int32_t ivlen;
u_int32_t icvlen;
u_int32_t keylen; /* length of "Encryption key */
u_int32_t akeylen; /*length of authn key */
u_int32_t key[0]; /* encryption key and authentication key both */
} esp_private;
这些值在运行时提供给结构内容,如下所示 -
case 'k': /* Key */
length = stringargument(arg, &temp);
priv->keylen = length;
priv = (esp_private *)realloc(priv,
sizeof(esp_private)+/*length*/priv->keylen);
/*This one is edited */
// if(priv->akeylen)
// memmove(&priv->key[priv->keylen],
// &priv->key[0],priv->akeylen);
/*These three are commented*/
memcpy(&priv->key[0], temp, priv->keylen);
pack->private = priv;
pack->modified |= ESP_MOD_KEY;
break;
case 'K': /* Authentication Key */
length = stringargument(arg, &temp);
priv->akeylen = length; // marked line(explained below)
priv = (esp_private *)realloc(priv,
sizeof(esp_private)+/*length*/priv->keylen+priv->akeylen);
/*this one edited too */
memcpy(&priv->key[priv->keylen/sizeof(u_int32_t)],
temp,priv->akeylen);
pack->private = priv;
pack->modified |= ESP_MOD_KEY;
现在有一个使用身份验证密钥值的函数。
该功能的相关部分是 -
if (!epriv->akeylen) {
key = &fakekey;
keylen = 1;
} else {
key = (u_int8_t *)malloc(epriv->akeylen);
memcpy(key,&epriv->key[epriv->keylen/sizeof(u_int32_t)]
,epriv->akeylen);
现在,当我尝试运行以下程序时,得到了这个我不知道的错误。
sendip: malloc.c:3574: mremap_chunk: Assertion `((size + offset)
& (mp_.pagesize-1)) == 0' failed.
我认为函数部分可能存在错误,但我不确定它到底是什么,因为当我评论标记的行(上面提到的)时,它akeylen
是空的,所以取该fakekey
值并且程序运行良好。
编辑1:
我在三个地方编辑了代码(也在上面的代码中编辑过)。
现在程序可以运行,但出现不一致的输出。
输入 :
Encryption key - qwerty
Authentication key - abcdef
输出:
Encryption key - qwerab
Authentication key - abcdef
现在情况更清楚了。
它意味着的问题肯定存在于realloc
statements 中。
请就此提出建议。
最初我在两个realloc
语句中都添加了长度,但现在我将其更改为priv->keylen
在第一和priv->keylen+priv->akeylen
第二位置。
但仍有一些地方需要改进
为什么这是覆盖???