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#include "libbb.h"
27#include "common_bufsiz.h"
28#include <linux/netlink.h>
29
30#define BUFFER_SIZE 16*1024
31
32#define env ((char **)bb_common_bufsiz1)
33#define INIT_G() do { setup_common_bufsiz(); } while (0)
34enum {
35 MAX_ENV = COMMON_BUFSIZE / sizeof(env[0]) - 1,
36};
37
38#ifndef SO_RCVBUFFORCE
39#define SO_RCVBUFFORCE 33
40#endif
41enum { RCVBUF = 2 * 1024 * 1024 };
42
43int uevent_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
44int uevent_main(int argc UNUSED_PARAM, char **argv)
45{
46 struct sockaddr_nl sa;
47 int fd;
48
49 INIT_G();
50
51 argv++;
52
53
54 sa.nl_family = AF_NETLINK;
55 sa.nl_pad = 0;
56 sa.nl_pid = getpid();
57 sa.nl_groups = 1 << 0;
58 fd = xsocket(AF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
59 xbind(fd, (struct sockaddr *) &sa, sizeof(sa));
60 close_on_exec_on(fd);
61
62
63
64
65
66
67
68
69 setsockopt_SOL_SOCKET_int(fd, SO_RCVBUF, RCVBUF);
70 setsockopt_SOL_SOCKET_int(fd, SO_RCVBUFFORCE, RCVBUF);
71 if (0) {
72 int z;
73 socklen_t zl = sizeof(z);
74 getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &z, &zl);
75 bb_error_msg("SO_RCVBUF:%d", z);
76 }
77
78 for (;;) {
79 char *netbuf;
80 char *s, *end;
81 ssize_t len;
82 int idx;
83
84
85
86
87
88 netbuf = mmap(NULL, BUFFER_SIZE,
89 PROT_READ | PROT_WRITE,
90 MAP_PRIVATE | MAP_ANON,
91 -1, 0);
92 if (netbuf == MAP_FAILED)
93 bb_perror_msg_and_die("mmap");
94
95
96 len = safe_read(fd, netbuf, BUFFER_SIZE - 1);
97 if (len < 0)
98 bb_perror_msg_and_die("read");
99 end = netbuf + len;
100 *end = '\0';
101
102
103
104
105 if (!argv[0])
106 putchar('\n');
107 idx = 0;
108 s = netbuf;
109 while (s < end) {
110 if (!argv[0])
111 puts(s);
112 if (strchr(s, '=') && idx < MAX_ENV)
113 env[idx++] = s;
114 s += strlen(s) + 1;
115 }
116 env[idx] = NULL;
117
118 idx = 0;
119 while (env[idx])
120 putenv(env[idx++]);
121 if (argv[0])
122 spawn_and_wait(argv);
123 idx = 0;
124 while (env[idx])
125 bb_unsetenv(env[idx++]);
126 munmap(netbuf, BUFFER_SIZE);
127 }
128
129 return 0;
130}
131