unix高级编程-fork和execve

简介: unix高级编程-fork和execve

fork和vfork

vfork是老的实现方法又很多问题

vfork

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/wait.h>
int main(void)
{    
    pid_t pid;
    printf("befor fork pid: %d\n",getpid());
    int a = 10;
    pid = vfork();
    if(pid == -1)
    {
         perror("失败!\n");
         return -1;       
    }
    if(pid > 0){
        printf("parent:pid: %d\n",getpid());    
        printf("parent:a:%d\n",a);    
    }
    else if(pid == 0)
    {    
        printf("child:%d,parent:%d\n",getpid(),getppid());   
        printf("child:a:%d\n",a);                         
    }
    return 0;
}

可以看到这里是有问题的

vfork常和 execve() 一起使用

就像Python中的os.system(cmd)这个函数,我们可以用这个函数来执行我们的shell脚本,单独的shell命令,或者是调用其他的程序,我们的execve()这个函数就和Python中的os.system函数类似,可以调用其他程序的执行,执行shell命令,,调用脚本等等功能。

int execve(const char *filename, char *const argv[], 
           char *const envp[]);

execve()执行程序由 filename决定。

filename必须是一个二进制的可执行文件,或者是一个脚本以#!格式开头的解释器参数参数。如果是后者,这个解释器必须是一个可执行的有效的路径名,但是不是脚本本身,它将调用解释器作为文件名。

argv是要调用的程序执行的参数序列,也就是我们要调用的程序需要传入的参数。

envp 同样也是参数序列,一般来说他是一种键值对的形式 key=value. 作为我们是新程序的环境。

注意,argv 和envp都必须以null指针结束。 这个参数向量和我们的环境变量都能够被我们的main函数调用,比如说我们可以定义为下面这个形式:

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/wait.h>
int main(void)
{    
    pid_t pid;
    printf("befor fork pid: %d\n",getpid());
    pid = vfork();
    if(pid == -1)
    {
         perror("失败!\n");
         return -1;       
    }
    if(pid > 0){
        printf("parent:pid: %d\n",getpid());    
        wait(NULL);  //这里不等子进程会变孤儿进程  
    }
    else if(pid == 0)
    {    
        printf("child:%d,parent:%d\n",getpid(),getppid());   
        int r = 0;
        r =  execve("./hello", NULL,NULL);                         
        if(r == -1)
        {    
            perror("失败!\n");
        }
        exit(0);
    }
    return 0;
}

hello文件包含的东西

#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{    
    printf("你好!");
    return 0;
}

我们调用系统的命令

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/wait.h>
int main(void)
{    
    pid_t pid;
    printf("befor fork pid: %d\n",getpid());
    pid = vfork();
    if(pid == -1)
    {
         perror("失败!\n");
         return -1;       
    }
    if(pid > 0){
        printf("parent:pid: %d\n",getpid());    
        wait(NULL);  //这里不等子进程会变孤儿进程  
    }
    else if(pid == 0)
    {    
        printf("child:%d,parent:%d\n",getpid(),getppid());   
        int r = 0;
        r =  execve("/bin/ls", NULL,NULL);                         
        if(r == -1)
        {    
            perror("失败!\n");
        }
        exit(0);
    }
    return 0;
}

这里最好还是用fork函数

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/wait.h>
int main(void)
{    
    pid_t pid;
    printf("befor fork pid: %d\n",getpid());
    pid = fork();
    if(pid == -1)
    {
         perror("失败!\n");
         return -1;       
    }
    if(pid > 0){
        printf("parent:pid: %d\n",getpid());    
        wait(NULL);  //这里不等子进程会变孤儿进程  
    }
    else if(pid == 0)
    {    
        printf("child:%d,parent:%d\n",getpid(),getppid());   
        int r = 0;
        r =  execve("/bin/ls", NULL,NULL);                         
        if(r == -1)
        {    
            perror("失败!\n");
        }
        exit(0);
    }
    return 0;
}
相关文章
|
1月前
|
算法 Unix 数据安全/隐私保护
Python编程--UNIX口令破解机
Python编程--UNIX口令破解机
|
5月前
|
Unix
Unix环境高级编程(第三版)中apue.h头文件及其依赖安装教程
Unix环境高级编程(第三版)中apue.h头文件及其依赖安装教程
110 0
|
Ubuntu Unix Shell
unix高级编程-fork之后父子进程共享文件
unix高级编程-fork之后父子进程共享文件
59 0
|
Unix Linux
unix高级编程-僵尸进程和孤儿进程
unix高级编程-僵尸进程和孤儿进程
60 0
|
6月前
|
缓存 网络协议 Unix
Linux(UNIX)五种网络I/O模型与IO多路复用
Linux(UNIX)五种网络I/O模型与IO多路复用
172 0
|
6月前
|
Unix Shell Linux
在Unix/Linux操作系统中,Shell脚本广泛用于自动化任务
在Unix/Linux操作系统中,Shell脚本广泛用于自动化任务
69 2
|
1月前
|
Unix 物联网 大数据
操作系统的演化与比较:从Unix到Linux
本文将探讨操作系统的历史发展,重点关注Unix和Linux两个主要的操作系统分支。通过分析它们的起源、设计哲学、技术特点以及在现代计算中的影响,我们可以更好地理解操作系统在计算机科学中的核心地位及其未来发展趋势。
|
3月前
|
Unix Linux 程序员
Unix:Linux的“逗趣祖师爷”与它的不凡传承
在科技长河中,Unix犹如一颗恒星,既是历史见证者也是未来的启发者。1969年,因程序员肯·汤普森想在他的PDP-7上玩“Space Travel”游戏,意外创造了Unix,以简洁优雅的代码改变了操作系统的世界。进入90年代,林纳斯·托瓦兹受Unix启发,开发了开源免费的Linux,像是Unix调皮的孙子,不仅继承其精髓还增添了开放共享的精神。Unix与Linux之间的传承,就像是智者与追蝶孩童的故事,充满了岁月的智慧与新生的活力,提醒我们科技传奇往往源于不起眼的小事。下次使用Linux时,不妨会心一笑吧!
54 0
|
3月前
|
开发框架 Unix Linux
LangChain 构建问题之在Unix/Linux系统上设置OpenAI API密钥如何解决
LangChain 构建问题之在Unix/Linux系统上设置OpenAI API密钥如何解决
50 0
|
6月前
|
Unix Shell Linux
在Linux和类Unix系统中,Shell提供了多种命令用于用户和权限管理
在Linux和类Unix系统中,Shell提供了多种命令用于用户和权限管理
77 4