File: fork.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (115 lines) | stat: -rw-r--r-- 2,613 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include <sys/types.h>
#include <sys/wait.h>
#include <assert.h>
#if defined(TEST_CLONE)
#include <sched.h>
#endif
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

int g_val = 0;

void parent_func() {
  g_val = 1;
  printf("function run in parent\n");
}

int parent_done[2];
char parent_done_str[16];

void wait_for_parent() {
  char buf[2];
  // wait for the parent to finish its part
  int ret = read(parent_done[0], buf, sizeof(buf));
  assert(ret == 2);
  ret = close(parent_done[0]);
  assert(ret == 0);
}

// This is the function we set breakpoint on.
int child_func(const char *argv0) {
  // we need to avoid memory modifications for vfork(), yet we want
  // to be able to test watchpoints, so do the next best thing
  // and restore the original value
  g_val = 2;
  g_val = 0;
  execl(argv0, argv0, parent_done_str, NULL);
  assert(0 && "this should not be reached");
  return 1;
}

int child_top_func(void *argv0_ptr) {
  const char *argv0 = static_cast<char*>(argv0_ptr);

  int ret = close(parent_done[1]);
  assert(ret == 0);

  // NB: when using vfork(), the parent may be suspended while running
  // this function, so do not rely on any synchronization until we exec
#if defined(TEST_FORK)
  if (TEST_FORK != vfork)
#endif
    wait_for_parent();

  return child_func(argv0);
}

int main(int argc, char* argv[]) {
  alignas(uintmax_t) char stack[4096];
  int ret;

  if (argv[1]) {
    parent_done[0] = atoi(argv[1]);
    assert(parent_done[0] != 0);

#if defined(TEST_FORK)
    // for vfork(), we need to synchronize after exec
    if (TEST_FORK == vfork)
      wait_for_parent();
#endif

    fprintf(stderr, "function run in exec'd child\n");
    return 0;
  }

  ret = pipe(parent_done);
  assert(ret == 0);

  ret = snprintf(parent_done_str, sizeof(parent_done_str),
                 "%d", parent_done[0]);
  assert(ret != -1);

#if defined(TEST_CLONE)
  pid_t pid = clone(child_top_func, &stack[sizeof(stack)], 0, argv[0]);
#elif defined(TEST_FORK)
  pid_t pid = TEST_FORK();
  // NB: this must be equivalent to the clone() call above
  if (pid == 0)
    _exit(child_top_func(argv[0]));
#endif
  assert(pid != -1);

  ret = close(parent_done[0]);
  assert(ret == 0);

  parent_func();

  // resume the child
  ret = write(parent_done[1], "go", 2);
  assert(ret == 2);
  ret = close(parent_done[1]);
  assert(ret == 0);

  int status, wait_flags = 0;
#if defined(TEST_CLONE)
  wait_flags = __WALL;
#endif
  pid_t waited = waitpid(pid, &status, wait_flags);
  assert(waited == pid);
  assert(WIFEXITED(status));
  assert(WEXITSTATUS(status) == 0);

  return 0;
}