《Operating Systems: Three Easy Pieces》(2)

背景

这篇文章是操作系统的第二篇笔记,我们将开始探索 process 具体的 API。因为涉及到具体的 API ,主要的精力应该放在这本书 第二篇 的 Homework,辅之以相关的文档,所以在简单介绍几个重要的 API 之后,我会在最后添上我的 Homework code。

接口列表

我们先依次来看下三个比较重要的 API Family

  • fork()
  • wait()
  • exec()

The fork() System Call

fork() 这个 API 是用来创建一个新的 process,这个新的 process 非常特殊,它特殊在几乎是调用这个接口的 process 的复制者,所以我们也称这个创建出来的 process 为 child process. 这个函数的 文档

/// 所依赖的库
#include <unistd.h>
/// - Parameters:
///    -无
/// - Return Value:
///    - On success, the PID(process ID) of the child process is returned in the parent, 
///    - and 0 is returned in the child.
///    - On failure, -1 is returned in the parent, 
///    - no child process is created, and errno is set appropriately
pid_t fork(void);

我在贴一下书上的例子:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main(int argc, char *argv[])
{
    printf("hello world (pid:%d)\n", (int) getpid());
    int rc = fork();
    if (rc < 0) {
        // fork failed; exit
        fprintf(stderr, "fork failed\n");
        exit(1);
    } else if (rc == 0) {
        // child (new process)
        printf("hello, I am child (pid:%d)\n", (int) getpid());
    } else {
        // parent goes down this path (original process)
        printf("hello, I am parent of %d (pid:%d)\n", rc, (int) getpid());
    }
    return 0;
}

在早期的 unix 系统中,创建 process 的函数就这一个,就没在提供其它接口了。这就很令人好奇了,为什么不提供一些类似 createProcess 这样的接口,可以让使用者创建一个全新的 process,而是只能通过复制 process,来创建一个新的 process。

在网上简单搜索了下,大致可以理解为这样的设计可以使得接口变得非常简单。而在 Windows 中,是有这样的函数的 CreateProcess,可以看到所需要的参数非常多,大多数的参数还是结构体,所以还是挺复杂的。这么一对比,fork() 这个接口确实简洁的多(也符合 unix 的设计哲学),可以仔细看看这个高票回答

The Wait() System Call

wait() 这个函数就如同它的名字所揭示的那样,是用来等待 child 的 process 结束的。当 parent process 调用这个函数的时候,它不会继续运行下去而处于 suspend 的状态,直到它的 child process 结束运行时,parent process 才会继续运行下去。这里有一点要注意的是,只有 parent process wait child process 这个函数才会有效,child process wait parent 是无效的,这章 Homework的有道题也说明了这点。

我们同样来看下这个函数的文档 和 书上的代码示例 。

/// 依赖的库
#include <sys/types.h>
#include <sys/wait.h>
/// - Parameters:
///    - a pointer to int which is child process's status
/// - Return Value:
///    - on success, returns the process ID of the terminated child;
///    - on error, -1 is returned 
pid_t wait(int *status);
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>

int
main(int argc, char *argv[])
{
    printf("hello world (pid:%d)\n", (int) getpid());
    int rc = fork();
    if (rc < 0) {
        // fork failed; exit
        fprintf(stderr, "fork failed\n");
        exit(1);
    } else if (rc == 0) {
        // child (new process)
        printf("hello, I am child (pid:%d)\n", (int) getpid());
        sleep(1);
    } else {
        // parent goes down this path (original process)
        int wc = wait(NULL);
        printf("hello, I am parent of %d (wc:%d) (pid:%d)\n",
           rc, wc, (int) getpid());
    }
    return 0;
}

相似功能的函数还有很多,waitpidwaitid 等等,这些函数没有本质的区别,只是参数略有不同,有兴趣的可以看上面那个文档,也详细的介绍了这些函数,稍后在作业里我们也会用到其中一个函数。

The exec() family System Call

exec() System Call 包含一系列的函数:

  • execl
  • execlp
  • execle
    .... 完整的文档
    这个函数是用来在当前的 process 调用其它 program。这里调用其它 program 并不会创建一个新的 process,而是将当前的 process image 保存起来,并替换成新的 process image。

it loads code (and static data) from that executable and overwrites its current code segment (and current static data) with it; the heap and stack and other parts of the memory space of the program are re-initialized. Then the OS simply runs that program, passing in any arguments as the argv of that process. Thus, it does not create a new process; rather, it transforms the currently running program into a different running program

书上的例子

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

int
main(int argc, char *argv[])
{
    int rc = fork();
    if (rc < 0) {
        // fork failed; exit
        fprintf(stderr, "fork failed\n");
        exit(1);
    } else if (rc == 0) {
        // child: redirect standard output to a file
        close(STDOUT_FILENO); 
        open("./p4.output", O_CREAT|O_WRONLY|O_TRUNC, S_IRWXU);

        // now exec "wc"...
        char *myargs[3];
        myargs[0] = strdup("wc");   // program: "wc" (word count)
        myargs[1] = strdup("p4.c"); // argument: file to count (change to your file path)
        myargs[2] = NULL;           // marks end of array
        execvp(myargs[0], myargs);  // runs word count
    } else {
        // parent goes down this path (original process)
        int wc = wait(NULL);
        assert(wc >= 0);
    }
    return 0;
}

Homework

GitHub 地址

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容