system() 執行 shell 命令

來源:互聯網
上載者:User


實現原理

strace 跟蹤結果:

clone(child_stack=0, flags=CLONE_PARENT_SETTID|SIGCHLD, parent_tidptr=0x7fff936fc388) = 15661wait4(15661, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 15661
實際的過程:

1. 父進程 - clone() 一個子進程

2. 父進程 - wait4() 子進程退出(如果 SIGCHLD 處理方式為 SIG_DFL, 則阻塞等待指子進程退出;如果是 SIG_IGN, 則立馬返回 -1)

3. 子進程 - execl(/bin/sh -c command)


傳回值

傳回值可能的情況:

-1: system() 執行失敗,例如 clone() 失敗、wait4() 失敗(SIG_IGN 時返回 -1)

>=0: system() 執行成功,命令執行成功或失敗,通過 WEXITSTATUS() 擷取命令執行的返回碼
正確的使用方法

1. 處理 SIGCHLD 訊號

2. WIFEXITED() 和 WEXITSTATUS()

#include <errno.h>#include <string.h>#include <stdlib.h>#include <signal.h>#include <string>#include <iostream>int main(int argc, char* argv[]){    char cmd[] = "su www -c 'kdir -p -m 755 /data/inst-123456 &>/dev/null '";    sighandler_t old_sighandler = signal(SIGCHLD, SIG_DFL);    int rv = system(cmd);    signal(SIGCHLD, old_sighandler);    if (-1 == rv)    {        std::cout << "error: " << strerror(errno) << std::endl;        return -1;    }        std::cout << "return value: " << rv << std::endl;        if (WIFEXITED(rv))    {        std::cout << "subprocess exited, exit code: " << WEXITSTATUS(rv) << std::endl;        if (0 == WEXITSTATUS(rv))        {            // if command returning 0 means succeed            std::cout << "command succeed" << std::endl;        }        else        {            if(127 == WEXITSTATUS(rv))            {                std::cout << "command not found" << std::endl;                return WEXITSTATUS(rv);            }            else            {                std::cout << "command failed: " << strerror(WEXITSTATUS(rv)) << std::endl;                return WEXITSTATUS(rv);            }        }    }    else    {        std::cout << "subprocess exit failed" << std::endl;        return -1;    }        return 0;}

命令後台執行

如果想命令在後台執行,可以在命令後面加 "&", 但是這樣做的後果是:只要 system() 執行成功,不管命令是否存在、命令執行是否成功,傳回值都為 0.



popen

http://blog.csdn.net/duyiwuer2009/article/details/50688493




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.