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
|
#include <bus.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include <sys/wait.h>
#define t(stmt) if (stmt) goto fail
static char arg[4098];
static int argc;
static char **argv;
static int remaining = 0;
static char *started = NULL;
static char msg[BUS_MEMORY_SIZE];
static void
announce_wait(pid_t pid)
{
bus_t bus;
int i;
t(bus_open(&bus, getenv("BUS_INIT"), BUS_WRONLY));
for (i = 1; i < argc; i++) {
if (!started[i]) {
sprintf(arg, "%ji awaiting-started %s", (intmax_t)pid, argv[i]);
t(bus_write(&bus, arg, 0));
}
}
t(bus_close(&bus));
return;
fail:
perror("await-started");
}
static int
callback(const char *message, void *user_data)
{
int i;
char *arg2;
char *arg3;
pid_t pid;
pid_t ppid;
if (!message) {
ppid = getppid();
pid = fork();
if (pid == 0) {
if (fork() == 0)
announce_wait(ppid);
exit(0);
} else {
(void) waitpid(pid, NULL, 0); /* Let's pretend everything will go swimmingly. */
}
return 1;
}
strncpy(msg, message, BUS_MEMORY_SIZE - 1);
msg[BUS_MEMORY_SIZE - 1] = 0;
arg2 = strchr(msg, ' ');
if (!arg2)
return 1;
arg3 = strchr(++arg2, ' ');
if (!arg3)
return 1;
*arg3++ = 0;
if (strcmp(arg2, "started") && strcmp(arg2, "ready"))
return 1;
for (i = 1; i < argc; i++)
if (!started[i] && !strcmp(argv[i], arg3))
started[i] = 1, remaining--;
return !!remaining;
(void) user_data;
}
int
main(int argc_, char *argv_[])
{
bus_t bus;
int i;
argc = argc_;
argv = argv_;
if (argc < 2)
return fprintf(stderr, "USAGE: %s daemon...", *argv), 2;
t(bus_open(&bus, getenv("BUS_INIT"), BUS_RDONLY));
started = calloc(argc, sizeof(char));
t(started == NULL);
started[0] = 1;
for (i = 1; i < argc; i++) {
sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/started-daemons\" >/dev/null", argv[i]);
if (!WEXITSTATUS(system(arg))) {
started[i] = 1;
} else {
sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/ready-daemons\" >/dev/null", argv[i]);
if (!WEXITSTATUS(system(arg)))
started[i] = 1;
else
remaining++;
}
}
if (remaining)
bus_read(&bus, callback, NULL);
bus_close(&bus);
free(started);
return 0;
fail:
perror("await-started");
bus_close(&bus);
free(started);
return 1;
}
|