您的位置:首页 > 运维架构 > Linux

Linux C编程--进程介绍5--system函数

2013-03-03 15:17 218 查看
表头文件

#i nclude<stdlib.h>

定义函数

int system(const char * string);


这个函数是用fork,exec,waitpid这三个系统函数实现的,返回值相对比较复杂。
函数说明
system()会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串所代表的命令,此命>令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD 信号会被暂时搁置,SIGINT和SIGQUIT 信号则会被忽略。

返回值

=-1:出现错误

=0:调用成功但是没有出现子进程

>0:成功退出的子进程的id


如果system()在调用/bin/sh时失败则返回127,其他失败原因返回-1。若参数string为空指针(NULL),则返回大于零值,如果system()调用成功则最后会返回执行shell命令后的返回值,但是此返回值也有可能为 system()调用/bin/sh失败所返回的127,因此最好能再检查errno 来确认执行成功。对以返回值进行判断以验证system是否调用成功,其中用到的宏和wait函数的宏相同

附加说明


在编写具有SUID/SGID权限的程序时请勿使用system(),system()会继承环境变量,通过环境变量可能会造成系统安全的问题。

为了更好的理解system函数,下面给出函数的实现代码:
#include <sys/type.h>
#include <sys/wait.h>
#include <errno.h>
#include  <unistd.h>
int system(const char * cmdstring)
{
pid_t pid;
int status;

if(cmdstring == NULL){
return (1);
}
if((pid = fork())<0){

status = -1;
}
else if(pid == 0){
execl("/bin/sh", "sh", "-c", cmdstring, (char *)0);
-exit(127); //子进程正常执行则不会执行此语句
}
else{
while(waitpid(pid, &status, 0) < 0){
if(errno != EINTER){
status = -1;
break;
}
}
}
return status;
}


下面给出一个简单的system函数调用程序
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>

int main()
{
	int status;
	if((status=system("date"))<0)
	{
		printf("system error .\n");
		exit(0);
	}
	printf("exit status = %d \n",status);
	if((status=system("nosuchcommand"))<0)
	{
		printf("system error");
		exit(0);
	}
	printf("exit status =%d \n",status);
	if((status=system("who;exit "))<0)
	{
		printf("system  error");
		exit(0);
	}
	printf("exit status=%d\n",status);
	exit(0);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: