-
Notifications
You must be signed in to change notification settings - Fork 7
/
stress-fork.c
139 lines (121 loc) · 3.24 KB
/
stress-fork.c
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* Copyright (C) 2013-2018 Canonical, Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* This code is a complete clean re-write of the stress tool by
* Colin Ian King <colin.king@canonical.com> and attempts to be
* backwardly compatible with the stress tool by Amos Waterland
* <apw@rossby.metr.ou.edu> but has more stress tests and more
* functionality.
*
*/
#include "stress-ng.h"
/*
* stress_set_fork_max()
* set maximum number of forks allowed
*/
void stress_set_fork_max(const char *opt)
{
uint64_t fork_max;
fork_max = get_uint64(opt);
check_range("fork-max", fork_max,
MIN_FORKS, MAX_FORKS);
set_setting("fork-max", TYPE_ID_UINT64, &fork_max);
}
/*
* stress_set_vfork_max()
* set maximum number of vforks allowed
*/
void stress_set_vfork_max(const char *opt)
{
uint64_t vfork_max;
vfork_max = get_uint64(opt);
check_range("vfork-max", vfork_max,
MIN_VFORKS, MAX_VFORKS);
set_setting("vfork-max", TYPE_ID_UINT64, &vfork_max);
}
/*
* stress_fork_fn()
* stress by forking and exiting using
* fork function fork_fn (fork or vfork)
*/
static int stress_fork_fn(
const args_t *args,
pid_t (*fork_fn)(void),
const uint64_t fork_max)
{
pid_t pids[MAX_FORKS];
do {
unsigned int i;
(void)memset(pids, 0, sizeof(pids));
for (i = 0; i < fork_max; i++) {
pid_t pid = fork_fn();
if (pid == 0) {
/* Child, immediately exit */
_exit(0);
}
if (pid > -1)
(void)setpgid(pids[i], g_pgrp);
pids[i] = pid;
if (!g_keep_stressing_flag)
break;
}
for (i = 0; i < fork_max; i++) {
if (pids[i] > 0) {
int status;
/* Parent, wait for child */
(void)waitpid(pids[i], &status, 0);
inc_counter(args);
}
}
for (i = 0; i < fork_max; i++) {
if ((pids[i] < 0) && (g_opt_flags & OPT_FLAGS_VERIFY)) {
pr_fail("%s: fork failed\n", args->name);
}
}
} while (keep_stressing());
return EXIT_SUCCESS;
}
/*
* stress_fork()
* stress by forking and exiting
*/
int stress_fork(const args_t *args)
{
uint64_t fork_max = DEFAULT_FORKS;
if (!get_setting("fork-max", &fork_max)) {
if (g_opt_flags & OPT_FLAGS_MAXIMIZE)
fork_max = MAX_FORKS;
if (g_opt_flags & OPT_FLAGS_MINIMIZE)
fork_max = MIN_FORKS;
}
return stress_fork_fn(args, fork, fork_max);
}
/*
* stress_vfork()
* stress by vforking and exiting
*/
int stress_vfork(const args_t *args)
{
uint64_t vfork_max = DEFAULT_VFORKS;
if (!get_setting("vfork-max", &vfork_max)) {
if (g_opt_flags & OPT_FLAGS_MAXIMIZE)
vfork_max = MAX_VFORKS;
if (g_opt_flags & OPT_FLAGS_MINIMIZE)
vfork_max = MIN_VFORKS;
}
return stress_fork_fn(args, vfork, vfork_max);
}