免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1997 | 回复: 1
打印 上一主题 下一主题

[C] 求助:在代码中从root切换到其它用户时无法产生core文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-06-19 10:37 |显示全部楼层 |倒序浏览
在代码中从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. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2013-06-19 12:49 |显示全部楼层
我在程序中切换用户后做了setrlimit操作重新设置core文件大小,但是仍然无法生成core文件。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP