Linux clone 疑问

2019-06-04 16:20:49 +08:00
 juzipeek

在看 man page ( man clone )时有这样一句:

Since the child and calling process may share memory, it is not possible for the child process to execute in the same stack as the calling process.

中文翻译是:由于子进程和调用进程可能共享内存,因此子进程不可能与调用进程在同一堆栈中执行。

为什么会由于共享内存( share memory )会导致父子进程运行在相同的栈上?

3069 次点击
所在节点    Linux
7 条回复
dorentus
2019-06-04 16:27:41 +08:00
说了不能啊。
lechain
2019-06-04 17:55:45 +08:00
由于子进程和调用进程可能共享内存,因此子进程不可能与调用进程在同一堆栈中执行。=>共享内存会导致父子进程运行在相同的栈。
想知道这个因果关系是如何得出来的
不应该是 如果父子进程运行在相同的栈上,就无法共享内存吗……(虽然这个命题好像也是不对的
zzjas98
2019-06-05 01:01:17 +08:00
每个 process 有自己的 stack pointer ( SP )。如果两个 process 共享 memory space 还共享 stack 的话,互相有可能会 overwrite 掉对方的 stack。

e.g.
Process 1 has initial sp1 = 0xff
Process 1 advances sp1 to 0xf0
Process 1 calls clone
Process 2 is created with initial sp = 0xff
Context switch to Process 2
Process 2 advances sp2 to 0xa0
Context switch to Process 1
Process 1 continues executing with sp1 = 0xf0
--> Content from 0xff to 0xf0 are overwritten by Process 2

所以:由于子进程和调用进程可能共享内存 => 因此子进程不可能与调用进程在同一堆栈中执行


这里并没有后半个因果关系: “由于子进程和调用进程可能共享内存,因此子进程不可能与调用进程在同一堆栈中执行。=> 共享内存会导致父子进程运行在相同的栈”
zzjas98
2019-06-05 01:01:34 +08:00
上面是一本正经的瞎猜,说错了请多包涵
zzjas98
2019-06-05 01:02:56 +08:00
例子的第 4 行有个 typo,应该是“ with initial sp2 = 0xff ”
owt5008137
2019-06-05 09:16:06 +08:00
人家说的明明是不能。
juzipeek
2019-06-05 17:05:08 +08:00
补充说明,问题的语境是

```c
#define _GNU_SOURCE
#include <sched.h>

int clone(int (*fn)(void *), void *child_stack,
int flags, void *arg, ...
/* pid_t *ptid, void *newtls, pid_t *ctid */ );
```

... ...

The child_stack argument specifies the location of the stack used by the child process. Since the child and calling process may share memory, it is not possible for the child process to execute in the same stack as the calling process. The calling process must therefore set up memory space for the child stack and pass a pointer to this space to clone(). Stacks grow downward on all processors that run Linux (except the HP PA processors), so child_stack usually points to the topmost address of the memory space set up for the child stack.

... ...

现在觉的“ Since the child and calling process may share memory, it is not possible for the child process to execute in the same stack as the calling process. ”这句话没有营养,关键在后面,调用 clone 要指定 child_stack。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/570801

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX