Chinaunix

标题: 求助:在代码中从root切换到其它用户时无法产生core文件 [打印本页]

作者: forward_ding    时间: 2013-06-19 10:37
标题: 求助:在代码中从root切换到其它用户时无法产生core文件
在代码中从root切换到其它用户,并且该用户有当前目录写权限,但却总是不能生成core文件。
已经采用不切换用户的方法进行了测试,这时是可以产生core的;
同时在切换后是可以使用system("echo 'tesstestestestestetestestet!!!!!!' >  hahahahhaahahah");   产生hahahahhaahahah这个文件的,但就是无法产生core文件,
附上代码,麻烦各位大侠帮忙测试测试,不胜感激!!!
  1. #include <pwd.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <unistd.h>
  5. #include <sys/types.h>
  6. #include <stdlib.h>

  7. int main()
  8. {
  9. #if 1
  10.     struct passwd *pw;

  11.     //char *username = "root";
  12.     char *username = "nobody";
  13.     if (getuid() == 0 || geteuid() == 0)
  14.     {
  15.         if (username == 0 || *username == '\0')
  16.         {
  17.             fprintf(stderr, "can't run as root without the -u switch\n");
  18.             exit(-1);
  19.         }
  20.         if ((pw = getpwnam(username)) == NULL)
  21.         {
  22.             fprintf(stderr, "can't find the user %s to switch to\n", username);
  23.             exit(-1);
  24.         }
  25.         if (setgid(pw->pw_gid) < 0 || setuid(pw->pw_uid) < 0)
  26.         {
  27.             fprintf(stderr, "failed to assume identity of user %s\n", username);
  28.             exit(-1);
  29.         }
  30.     }
  31. #endif

  32.     printf("now user change to group id %d, user id %d\n", getgid(), getuid());

  33.     system("echo 'tesstestestestestetestestet!!!!!!' >  hahahahhaahahah");
  34.     char *test_a = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
  35.     char *test_b;
  36.     strcpy(test_b, test_a);
  37.     *(char *)1=1;
  38.     printf("test_b:%s\n", test_b);
  39. }
复制代码

作者: lrita    时间: 2013-06-19 11:59
切换用户后 ulimit 设置的就无效了。
作者: forward_ding    时间: 2013-06-19 12:49
我在程序中切换用户后做了setrlimit操作重新设置core文件大小,但是仍然无法生成core文件。
作者: lxyscls    时间: 2013-06-20 11:18
stackoverflow




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2