-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclone.c
More file actions
138 lines (110 loc) · 3.13 KB
/
Copy pathclone.c
File metadata and controls
138 lines (110 loc) · 3.13 KB
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
// Author: Adrien Mahieux
// Twitter: @saruspete
// License: "THE BEER-WARE LICENSE" (Revision 42):
// As long as you retain this notice you can do whatever you want with this stuff.
// If we meet some day, and you think this stuff is worth it, you can buy me a beer in return
#define _GNU_SOURCE
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <linux/unistd.h>
#include <linux/kernel.h>
#include <linux/futex.h>
#include <syscall.h>
#include <sys/sysinfo.h>
#include <sys/mman.h>
#define FSIZE 1024
// Just enough to use a var
#define STACK_SIZE 64
int doContinue = 1, futexStart;
unsigned int tMax = 0, loadExit = 0;
int futex_wake(void* addr, int n){
return syscall(SYS_futex, addr, FUTEX_WAKE, n, NULL, NULL, 0);
}
static int doNothing(void* arg) {
futexStart = 0;
syscall(SYS_futex, &futexStart, 0, NULL, NULL, 0);
int i = 0;
while (doContinue) {
i++;
}
return 0;
}
int main(int argc, char* argv[]) {
printf("LoadAverage generator by @saruspete\n\n");
if (argc < 2) {
printf("Usage: %s <load_to_generate> [load_to_exit_at]\n", argv[0]);
printf("\nLoad can be 'max' to spawn as many as possible\n");
return EXIT_FAILURE;
}
// parse input
if (argc >= 2) {
if (strcmp(argv[1], "max") == 0) {
tMax = -1;
}
else if (sscanf(argv[1], "%u", &tMax) != 1) {
printf("Error: load_to_generate must be a full number");
return EXIT_FAILURE;
}
}
if (argc >= 3) {
if (sscanf(argv[2], "%u", &loadExit) != 1) {
printf("Error: load_to_exit_at must be a full number");
return EXIT_FAILURE;
}
}
else {
loadExit = tMax;
}
printf("Check consumption with 'grep kB /proc/%u/status' (don't use ps/top)\n", getpid());
printf("Will try to run %u threads and stop at %u load\n", tMax, loadExit);
int cloneFlags = CLONE_VM | CLONE_THREAD | CLONE_SIGHAND;
//| CLONE_FS | CLONE_FILES | CLONE_SYSVSEM
// | CLONE_SETTLS | CLONE_PARENT_SETTID
// | CLONE_CHILD_CLEARTID;
int tCnt;
// Create all our threads
for (tCnt = 0; tCnt < tMax; tCnt++) {
void *cloneStack = mmap( 0, STACK_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
// The glibc clone wrapper wants a stack...
if (clone(&doNothing, cloneStack + STACK_SIZE, cloneFlags, NULL) == -1) {
if (tMax == -1) {
tMax = tCnt;
break;
}
else {
perror("clone");
return EXIT_FAILURE;
}
}
}
// Moving myself out of loaded cpus
cpu_set_t cpuMask;
CPU_ZERO(&cpuMask);
CPU_SET(0, &cpuMask);
sched_setaffinity(0, sizeof(cpuMask), &cpuMask);
// Unleash the beast
syscall(SYS_futex, &futexStart, FUTEX_WAKE, tMax, NULL, NULL, 0);
printf("Started %u threads\n", tMax);
// And a bit of info
unsigned long load1=0, loadLast=0, timeGross=0;
float loadFactor = 1.l / (1 << SI_LOAD_SHIFT);
struct sysinfo sysinf;
while (load1 < loadExit) {
if (sysinfo(&sysinf)) {
perror("sysinfo");
}
else {
load1 = (unsigned long) sysinf.loads[0] * loadFactor;
printf("%5lu Load: %lu (%lu)\n", timeGross, load1, load1 - loadLast);
loadLast = load1;
}
// loadavg is computed every 5 sec
sleep(5);
timeGross += 5;
}
doContinue = 0;
return EXIT_SUCCESS;
}