Chinaunix首页 | 论坛 | 博客
  • 博客访问: 481503
  • 博文数量: 120
  • 博客积分: 1853
  • 博客等级: 上尉
  • 技术积分: 1177
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-22 22:40
文章分类

全部博文(120)

文章存档

2013年(16)

2012年(104)

分类: LINUX

2012-05-09 14:28:12

通过查看getuid和geteuid确定用户id并没有变为0(root);
通过getppid为1,可以确定构造的子进程的父进程为init


点击(此处)折叠或打开

  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>

  4. int main(){


  5.     pid_t pid;

  6.     pid = fork();
  7.     if(pid == 0){
  8.         printf("the parentid is %d\n", getppid());
  9.         pid = fork();
  10.         if(pid == 0){
  11.             sleep(2);
  12.             printf("the parentid is %d,the userid is %d, the euid is %d\n", getppid(),getuid() ,geteuid() );
  13.             exit(0);
  14.         }
  15.         exit(0);

  16.     }
  17.     printf("the original id is %d\n", getpid());
  18.     sleep(3);
  19.     return 0;
  20. }

阅读(483) | 评论(0) | 转发(0) |
0

上一篇:signal(2)

下一篇:setjmp函数

给主人留下些什么吧!~~