C没有为新的char数组分配内存

时间:2019-07-01 18:22:44

标签: c pointers malloc crypt

我看不到下面的代码如何工作char数组cd2被覆盖。我试图为两个字符串分配空间,然后使用crypt函数的结果填充它们。我不确定crypt在这里扮演什么角色,或者这是否会带来其他一些字符串操作功能。但是以下输出不应相同,应具有不同的值。但是它们都是“ ttxtRM6GAOLtI”,我试图从“ ss”开始获得一个输出

#include <crypt.h>
#include <unistd.h>
#include <pwd.h>
#include <string.h>
#include <stdio.h>

int main(int argc, string argv[])
{
    char *cd;  
    cd = malloc(30 * sizeof(*cd));
    char *cd2; 
    cd2 = malloc(30 * sizeof(*cd2));

    cd2 = crypt("yum", "ss");
    cd = crypt("yum", "tt");

    printf("hasehd 'yum' with 'tt' salt is %s\n",cd);
    printf("hasehd 'yum' with 'ss' salt is %s\n",cd2);

}

输出-

   hasehd 'yum' with 'tt' salt is ttxtRM6GAOLtI
   hasehd 'yum' with 'ss' salt is ttxtRM6GAOLtI

更新:我将其更改为不使用malloc,但我认为我必须通过char数组的声明来分配内存。由于crypt覆盖了静态缓冲区,因此我需要在覆盖结果之前将结果提供给其他地方。

#include <crypt.h>
#include <unistd.h>
#include <pwd.h>
#include <string.h>
#include <stdio.h>

int main(int argc, string argv[])
{
 char ch1[30];
 char ch2[30];
 char *cd;
 char *cd2;
 cd = &ch1[0];  
 cd2 = &ch2[0]; 

 snprintf(cd2, 12, "%s\n", crypt("yum", "ss"));
 snprintf(cd, 12, "%s\n", crypt("yum", "tt"));

 printf("hasehd 'yum' with 'tt' salt is %s\n",cd);
 printf("hasehd 'yum' with 'ss' salt is %s\n",cd2);

}

输出-

hasehd 'yum' with 'tt' salt is ttxtRM6GAOL
hasehd 'yum' with 'ss' salt is ssqDHVWOCwe

更新:我按照建议使用strcpy,并且使用malloc为数组分配空间。 strcpy似乎更简洁一些,因为我不需要提供长度。

#include <crypt.h>
#include <unistd.h>
#include <pwd.h>
#include <string.h>
#include <stdio.h>

int main(int argc, string argv[])
{
  int PWORD_LENGTH = 30;

   char *cd;
   char *cd2;
   cd = malloc(sizeof(char) * (PWORD_LENGTH + 1));
   cd2 = malloc(sizeof(char) * (PWORD_LENGTH + 1));

   strcpy(cd2, crypt("yum", "ss"));
   strcpy(cd, crypt("yum", "tt"));

   printf("hasehd 'yum' with 'tt' salt is %s\n",cd);
   printf("hasehd 'yum' with 'ss' salt is %s\n",cd2);

}

输出-

hasehd 'yum' with 'tt' salt is ttxtRM6GAOL
hasehd 'yum' with 'ss' salt is ssqDHVWOCwe

2 个答案:

答案 0 :(得分:1)

crypt()返回一个指向静态分配缓冲区的指针。每次对crypt()的调用都会覆盖之前的结果。

http://man7.org/linux/man-pages/man3/crypt.3.html

  

返回值指向静态数据,其内容被覆盖   每个电话。

在这种情况下,不需要您的malloc呼叫。实际上,您最终会遇到无法访问的内存,您现在无法free,因为您用crypt()

的结果覆盖了指针

答案 1 :(得分:1)

crypt()函数具有内部存储器,每个调用都会覆盖以前的结果。

分别调用crypt()printf()的“ ss”,然后调用“ tt”

或使用可重入版本

#define _GNU_SOURCE 1
#include <crypt.h>
#include <unistd.h>
#include <pwd.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
    char *cd;
    cd = malloc(30 * sizeof(*cd));
    char *cd2;
    cd2 = malloc(30 * sizeof(*cd2));

    struct crypt_data *data = calloc(1, sizeof (struct crypt_data));
    struct crypt_data *data2 = calloc(1, sizeof (struct crypt_data));

    cd2 = crypt_r("yum", "ss", data2);
    cd = crypt_r("yum", "tt", data);

    printf("hasehd 'yum' with 'ss' salt is %s\n",cd2);
    printf("hasehd 'yum' with 'tt' salt is %s\n",cd);

}