进程程序替换

进程程序替换

是什么?

进程不变,仅仅替换当前进程的代码和数据的技术,叫做进程的程序替换。

进程程序替换并不创建新的进程。

替换原理

用fork创建子进程后执行的是和父进程相同的程序(但有可能执行不同的代码分支),子进程往往要调用一种exec函数以执行另一个程序。当进程调用一种exec函数时,该进程的用户空间代码和数据完全被新程序替换,从新程序的启动例程开始执行。调用exec并不创建新进程,所以调用exec前后该进程的id并未改变。

替换函数 exec*

有六种以exec开头的函数,统称exec函数

 #include <unistd.h>`
 
 int execl(const char *path, const char *arg, ...);
 int execlp(const char *file, const char *arg, ...);
 int execle(const char *path, const char *arg, ...,char *const envp[]); int execv(const char *path, char *const argv[]);
 int execvp(const char *file, char *const argv[]);
 int execve(const char *path, char *const argv[], char *const envp[]);

这些函数如果调用成功则加载新的程序,从启动代码开始执行,不再返回。如果调用出错则返回-1,所以exec函数只有出错的返回值而没有成功的返回值。

命名理解

  • l(list) : 表示参数采用列表

  • v(vector) : 参数用数组

  • p(path) : 有p自动搜索环境变量PATH

  • e(env) : 表示自己维护环境变量

函数名参数格式是否带路径是否使用当前环境变量
execl列表不是
execlp列表
execle列表不是不是,须自己组装环境变量
execv数组不是
execvp数组
execve数组不是不是,须自己组装环境变量

调用举例

image-20230514160210353

进程具有独立性,故可以使子进程执行程序替换,父进程进行执行原程序。此处因为进程程序替换,代码区代码将改变,发生写时拷贝。

image-20230514160541783

#include <unistd.h>
int main()
{
    char *const argv[] = {"ps", "-ef", NULL};
    char *const envp[] = {"PATH=/bin:/usr/bin", "TERM=console", NULL};
    
    execl("/bin/ps", "ps", "-ef", NULL);
    
    // 带p的,可以使用环境变量PATH,无需写全路径     
    execlp("ps", "ps", "-ef", NULL);
    
    // 带e的,需要自己组装环境变量
    execle("ps", "ps", "-ef", NULL, envp);
    
    execv("/bin/ps", argv);
    
    // 带p的,可以使用环境变量PATH,无需写全路径
    execvp("ps", argv);
    
    // 带e的,需要自己组装环境变量
    execve("/bin/ps", argv, envp);
    
    exit(0);
}

必须以NULL作为参数传递的结束。

事实上,只有execve是真正的系统调用,其它五个函数最终都调用 execve,所以execve在man手册 第2节,其它函数在man手册第3节。这些函数之间的关系如下图所示。

image-20230514161004914

简易shell

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <string.h>

#define NUM 128
#define CMD_NUM 64
int main(){

  char command[NUM];
  for( ; ;  ){
    char *argv[CMD_NUM] = {NULL};
    //1. 打印提示符
    command[0] = 0; //用这种方式,可以做到O(1)时间复杂度,清空字符串
    printf("[who@myhostname mydir]# ");

    //2. 获取命令字符串
    fgets(command, NUM, stdin);
    command[strlen(command)-1] = '\0'; 
    printf("echo: %s\n",command);
    //fflush(stdout);

    //3. 解析命令字符串, char *argv[]
    const char *sep = " ";
    argv[0] = strtok(command, sep);
    int i = 1;
    while(argv[i] = strtok(NULL, sep)){
      i++;
    }
    //4. 检测命令是否是需要shell本身执行的,内建命令
    if(strcmp(argv[0], "cd") == 0){
      if(argv[1] != NULL) chdir(argv[1]);
      continue;
    }

    //5. 执行第三方命令
    if(fork() == 0){
      //child
      execvp(argv[0], argv);
      exit(1);//若替换失败,直接终止
    }
    int status = 0;
    waitpid(-1, &status, 0);
    printf("exit code: %d\n", (status >> 8)&0xFF);
    //for(i = 0; argv[i]; i++){
    //  printf("argv[%d]: %s\n", i, argv[i]);
    //}
  }
  return 0;
}

image-20230514162250153

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值