(P13)exec替换进程映像

2024-06-08 06:18
文章标签 进程 替换 exec 映像 p13

本文主要是介绍(P13)exec替换进程映像,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

    • 1.exec替换进程映像
    • 2.exec关联函数组(execl、execlp、execle、execv、execvp)
    • 3.fcntl设置文件状态标志:FD_CLOEXEC

1.exec替换进程映像

  • 在进程的创建上,Unix采用了一个独特的方法,它将进程创建与加载一个新进程映像分离。
    这样的好处是,有更多的余地对2种操作进行管理。

  • 当我们创建了一个进程之后,通常将子进程替换成新的进程映像,这可以用exec系列的函数来进行。
    当然,exec系列的函数也可以将当前进程替换掉。

  • fork的特点:创建一个进程,新进程与原进程是一样的!
    在shell命令提示符下输入ps的过程:如何加载ps程序?
    fork会创建一个新进程,但是该进程与原进程是一样的,但是可将新进程用ps程序替换(可称之为加载一个新的程序,用exec系列函数来加载新的程序)

  • eg:代码:P13exec.c

#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");//将当前进程替换掉,代码段和数据段被替换了,但是进程控制块还是一样的,//所以只要替换成功,“Exiting main...\n”是不会输出的execlp("ls", "ls", "-l", NULL);printf("Exiting main...\n");return 0;
}
  • 测试:
    在这里插入图片描述
  • eg:代码:P13exec2.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");//替换之前的pid与hello程序输出的pid是一样的,替换之前与替换之后的pid应该是一样的printf("pid = %d\n", getpid());//将当前进程替换掉,代码段和数据段被替换了,但是进程控制块还是一样的,//所以只要替换成功,“Exiting main...\n”是不会输出的execlp("./hello", "hello", NULL);printf("Exiting main...\n");return 0;
}
  • 代码:
#include <stdio.h>
int main(void)
{printf("hello pid = %d\n", getpid());return 0;
}
  • 测试:P13hello.c
    在这里插入图片描述
  • eg:代码:P13exec3.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");//替换之前的pid与hello程序输出的pid是一样的,替换之前与替换之后的pid应该是一样的printf("pid = %d\n", getpid());int ret = execlp("hello", "hello", NULL);if (ret == -1)perror("execlp error");printf("Exiting main...\n");return 0;
}
  • 测试:
    为什么错误?
    Linux不会从当前路径底下搜索源程序,而是从环境变量的路径下搜索源程序!
    在这里插入图片描述

2.exec关联函数组(execl、execlp、execle、execv、execvp)

  • man execle
    功能:用exec函数可以把当前进程替换为一个新进程。
    exec名下是由多个关联函数组成的一个完整系列。
    头文件<unistd.h>

extern char **environ;int execl(const char *path, const char *arg, .../* (char  *) NULL */);
int execlp(const char *file, const char *arg, .../* (char  *) NULL */);
int execle(const char *path, const char *arg, .../*, (char *) NULL, char * const envp[] */);
int execv(const char *path, char *const argv[]);
int execvp(const char *file, char *const argv[]);
int execvpe(const char *file, char *const argv[],char *const envp[]);参数:
path:表示你要启动程序的名称,包括路径名
arg:表示启动程序所带的参数返回值:
成功返回0;
失败返回-1
  • execlp与execvp相比较
    代码:P13execvp.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");char *const args[] = {"ls", "-l", NULL};//将当前进程替换掉,代码段和数据段被替换了,但是进程控制块还是一样的,//所以只要替换成功,“Exiting main...\n”是不会输出的//execlp(程序文件名称,参数表(第一个参数是ls,第二个参数是-l),参数结束是NULL控制);// execlp("ls", "ls", "-l", NULL);//与execlp相比较,execvp将可变参数列表保存到变量argv中execvp("ls", args);printf("Exiting main...\n");return 0;
}

测试:
在这里插入图片描述

  • execlp与execl相比较
    代码:P13execl.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");// execlp("ls", "ls", "-l", NULL);//与execlp相比,execl的参数与其一样,但是ls命令必须指定全路径,他不会在全路径$PATH//下进行搜索,全路径可以是绝对的,也可以是相对的//带p,会到环境变量下找ls程序,不带p,则不会到环境变量下找ls程序int ret = execl("/bin/ls", "ls", "-l", NULL);if (ret == -1)ERR_EXIT("execl error");printf("Exiting main...\n");return 0;
}

测试:
在这里插入图片描述

  • execvp与execv相比较
    execv与execvp一样的,只是他不带p,不会去环境变量$PATH下去寻找程序

  • execle与execl相比较
    execle他不带p,不会去环境变量$PATH下去寻找程序;
    与execl相比较,execle他带了一个环境信息
    代码:P13execle.c

#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");char *const envp[] ={"AA=11", "BB=22", NULL}//指定envp环境变量项,传递给hello2进程int ret = execle("./test1", "hello", NULL, envp);// int ret = execl("./test2", "hello", NULL);if (ret == -1)ERR_EXIT("execl error");printf("Exiting main...\n");return 0;
}

测试:

显示指定了环境变量信息,不会从shell继承了
在这里插入图片描述
若执行hello1.c程序:P13hello1.c

#include <unistd.h>
#include <stdio.h>extern char** environ;
int main(void)
{printf("hello pid = %d\n", getpid());int i;for (i; environ[i] != NULL; ++i){printf("%s\n", environ[i]);}return 0;
}

environ是一个指针数组,指针的指针,environ中的每一项如下图右边所示:
在这里插入图片描述

测试:
实现了env指令的功能
在这里插入图片描述

输入env,得到当前shell的环境变量
在这里插入图片描述

  • 总结
    (1)带l和不带l的区别,带l指定的是可变参数列表,最后一个参数是空指针,不带l,将参数列表存在指针数组argv中;
    带p和不带p的区别,带p的会从$PATH中搜索程序是否存在;
    带e和不带e的区别,带e的会传递一个环境信息给指定运行的进程(要加载的程序);
    (2)上述的函数最终都会调用execve系统调用函数(man execve)
int execve(const char *filename, char *const argv[],char *const envp[]);
第一个参数:文件名
第二个参数:参数表
第三个参数:环境信息

3.fcntl设置文件状态标志:FD_CLOEXEC

  • eg:代码:P13fcntl_exec.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <signal.h>#define ERR_EXIT(m) \do \{ \perror(m); \exit(EXIT_FAILURE); \} while(0)int main(int argc, char *argv[])
{printf("Entering main ...\n");//将标准输出fd的FD_CLOSEEXC进行置位,说明1号文件描述符已经被关闭了//hello2程序是无法输出的//与man 2 open的flags的O_CLOEXEC的功能是一样的int ret = fcntl(1, F_SETFD, FD_CLOEXEC);if (ret == -1)ERR_EXIT("fcntl error");execlp("./test1", "tes1", NULL);printf("Exiting main...\n");return 0;
}
  • 测试:
    在这里插入图片描述

  • Makefile

.PHONY:clean all
CC=gcc
CFLAGS=-Wall -g
BIN=01exec hello hello1
all:$(BIN)
%.o:%.c$(CC) $(CFLAGS) -c $< -o $@
clean:rm -f *.o $(BIN)

这篇关于(P13)exec替换进程映像的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1041403

相关文章

python多进程实现数据共享的示例代码

《python多进程实现数据共享的示例代码》本文介绍了Python中多进程实现数据共享的方法,包括使用multiprocessing模块和manager模块这两种方法,具有一定的参考价值,感兴趣的可以... 目录背景进程、进程创建进程间通信 进程间共享数据共享list实践背景 安卓ui自动化框架,使用的是

C#如何优雅地取消进程的执行之Cancellation详解

《C#如何优雅地取消进程的执行之Cancellation详解》本文介绍了.NET框架中的取消协作模型,包括CancellationToken的使用、取消请求的发送和接收、以及如何处理取消事件... 目录概述与取消线程相关的类型代码举例操作取消vs对象取消监听并响应取消请求轮询监听通过回调注册进行监听使用Wa

Java操作xls替换文本或图片的功能实现

《Java操作xls替换文本或图片的功能实现》这篇文章主要给大家介绍了关于Java操作xls替换文本或图片功能实现的相关资料,文中通过示例代码讲解了文件上传、文件处理和Excel文件生成,需要的朋友可... 目录准备xls模板文件:template.xls准备需要替换的图片和数据功能实现包声明与导入类声明与

[Linux]:进程(下)

✨✨ 欢迎大家来到贝蒂大讲堂✨✨ 🎈🎈养成好习惯,先赞后看哦~🎈🎈 所属专栏:Linux学习 贝蒂的主页:Betty’s blog 1. 进程终止 1.1 进程退出的场景 进程退出只有以下三种情况: 代码运行完毕,结果正确。代码运行完毕,结果不正确。代码异常终止(进程崩溃)。 1.2 进程退出码 在编程中,我们通常认为main函数是代码的入口,但实际上它只是用户级

java 进程 返回值

实现 Callable 接口 与 Runnable 相比,Callable 可以有返回值,返回值通过 FutureTask 进行封装。 public class MyCallable implements Callable<Integer> {public Integer call() {return 123;}} public static void main(String[] args

C#关闭指定时间段的Excel进程的方法

private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

linux中使用rust语言在不同进程之间通信

第一种:使用mmap映射相同文件 fn main() {let pid = std::process::id();println!(

Golang进程权限调度包runtime

关于 runtime 包几个方法: Gosched:让当前线程让出 cpu 以让其它线程运行,它不会挂起当前线程,因此当前线程未来会继续执行GOMAXPROCS:设置最大的可同时使用的 CPU 核数Goexit:退出当前 goroutine(但是defer语句会照常执行)NumGoroutine:返回正在执行和排队的任务总数GOOS:目标操作系统NumCPU:返回当前系统的 CPU 核数量 p

如何保证android程序进程不到万不得已的情况下,不会被结束

最近,做一个调用系统自带相机的那么一个功能,遇到的坑,在此记录一下。 设备:红米note4 问题起因 因为自定义的相机,很难满足客户的所有需要,比如:自拍杆的支持,优化方面等等。这些方面自定义的相机都不比系统自带的好,因为有些系统都是商家定制的,难免会出现一个奇葩的问题。比如:你在这款手机上运行,无任何问题,然而你换一款手机后,问题就出现了。 比如:小米的红米系列,你启用系统自带拍照功能后

flume系列之:记录一次flume agent进程被异常oom kill -9的原因定位

flume系列之:记录一次flume agent进程被异常oom kill -9的原因定位 一、背景二、定位问题三、解决方法 一、背景 flume系列之:定位flume没有关闭某个时间点生成的tmp文件的原因,并制定解决方案在博主上面这篇文章的基础上,在机器内存、cpu资源、flume agent资源都足够的情况下,flume agent又出现了tmp文件无法关闭的情况 二、