chiark / gitweb /
add and use name_list_cleanup() for cleaning up the string lists
[elogind.git] / udevmonitor.c
1 /*
2  * udevmonitor.c
3  *
4  * Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  * 
10  *      This program is distributed in the hope that it will be useful, but
11  *      WITHOUT ANY WARRANTY; without even the implied warranty of
12  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *      General Public License for more details.
14  * 
15  *      You should have received a copy of the GNU General Public License along
16  *      with this program; if not, write to the Free Software Foundation, Inc.,
17  *      675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  */
20
21 #include <unistd.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <fcntl.h>
26 #include <time.h>
27 #include <errno.h>
28 #include <signal.h>
29 #include <sys/socket.h>
30 #include <sys/un.h>
31 #include <sys/select.h>
32 #include <linux/types.h>
33 #include <linux/netlink.h>
34
35 #include "udev.h"
36 #include "udevd.h"
37 #include "udev_utils.h"
38 #include "udev_libc_wrapper.h"
39
40 static int uevent_netlink_sock;
41 static int udev_monitor_sock;
42 static volatile int udev_exit;
43
44 static int init_udev_monitor_socket(void)
45 {
46         struct sockaddr_un saddr;
47         socklen_t addrlen;
48         const int feature_on = 1;
49         int retval;
50
51         memset(&saddr, 0x00, sizeof(saddr));
52         saddr.sun_family = AF_LOCAL;
53         /* use abstract namespace for socket path */
54         strcpy(&saddr.sun_path[1], "/org/kernel/udev/monitor");
55         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
56
57         udev_monitor_sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
58         if (udev_monitor_sock == -1) {
59                 fprintf(stderr, "error getting socket, %s\n", strerror(errno));
60                 return -1;
61         }
62
63         /* the bind takes care of ensuring only one copy running */
64         retval = bind(udev_monitor_sock, (struct sockaddr *) &saddr, addrlen);
65         if (retval < 0) {
66                 fprintf(stderr, "bind failed, %s\n", strerror(errno));
67                 close(udev_monitor_sock);
68                 udev_monitor_sock = -1;
69                 return -1;
70         }
71
72         /* enable receiving of the sender credentials */
73         setsockopt(udev_monitor_sock, SOL_SOCKET, SO_PASSCRED, &feature_on, sizeof(feature_on));
74
75         return 0;
76 }
77
78 static int init_uevent_netlink_sock(void)
79 {
80         struct sockaddr_nl snl;
81         int retval;
82
83         memset(&snl, 0x00, sizeof(struct sockaddr_nl));
84         snl.nl_family = AF_NETLINK;
85         snl.nl_pid = getpid();
86         snl.nl_groups = 0xffffffff;
87
88         uevent_netlink_sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
89         if (uevent_netlink_sock == -1) {
90                 fprintf(stderr, "error getting socket, %s\n", strerror(errno));
91                 return -1;
92         }
93
94         retval = bind(uevent_netlink_sock, (struct sockaddr *) &snl,
95                       sizeof(struct sockaddr_nl));
96         if (retval < 0) {
97                 fprintf(stderr, "bind failed, %s\n", strerror(errno));
98                 close(uevent_netlink_sock);
99                 uevent_netlink_sock = -1;
100                 return -1;
101         }
102
103         return 0;
104 }
105
106 static void asmlinkage sig_handler(int signum)
107 {
108         if (signum == SIGINT || signum == SIGTERM)
109                 udev_exit = 1;
110 }
111
112 int main(int argc, char *argv[])
113 {
114         struct sigaction act;
115         int env = 0;
116         fd_set readfds;
117         int i;
118         int retval = 0;
119
120         for (i = 1 ; i < argc; i++) {
121                 char *arg = argv[i];
122                 if (strcmp(arg, "--env") == 0 || strcmp(arg, "-e") == 0) {
123                         env = 1;
124                 }
125                 else if (strcmp(arg, "--help") == 0  || strcmp(arg, "-h") == 0){
126                         printf("Usage: udevmonitor [--env]\n"
127                                 "  --env    print the whole event environment\n"
128                                 "  --help   print this help text\n\n");
129                         exit(0);
130                 } else {
131                         fprintf(stderr, "unknown option\n\n");
132                         exit(1);
133                 }
134         }
135
136         if (getuid() != 0) {
137                 fprintf(stderr, "need to be root, exit\n\n");
138                 exit(2);
139         }
140
141         /* set signal handlers */
142         memset(&act, 0x00, sizeof(struct sigaction));
143         act.sa_handler = (void (*)(int)) sig_handler;
144         sigemptyset(&act.sa_mask);
145         act.sa_flags = SA_RESTART;
146         sigaction(SIGINT, &act, NULL);
147         sigaction(SIGTERM, &act, NULL);
148
149         retval = init_udev_monitor_socket();
150         if (retval)
151                 goto out;
152         retval = init_uevent_netlink_sock();
153         if (retval)
154                 goto out;
155
156         printf("udevmonitor prints the received event from the kernel [UEVENT]\n"
157                "and the event which udev sends out after rule processing [UDEV]\n\n");
158
159         while (!udev_exit) {
160                 static char buf[UEVENT_BUFFER_SIZE*2];
161                 ssize_t buflen;
162                 int fdcount;
163
164                 buflen = 0;
165                 FD_ZERO(&readfds);
166                 if (uevent_netlink_sock > 0)
167                         FD_SET(uevent_netlink_sock, &readfds);
168                 if (udev_monitor_sock > 0)
169                         FD_SET(udev_monitor_sock, &readfds);
170
171                 fdcount = select(UDEV_MAX(uevent_netlink_sock, udev_monitor_sock)+1, &readfds, NULL, NULL, NULL);
172                 if (fdcount < 0) {
173                         if (errno != EINTR)
174                                 fprintf(stderr, "error receiving uevent message\n");
175                         continue;
176                 }
177
178                 if ((uevent_netlink_sock > 0) && FD_ISSET(uevent_netlink_sock, &readfds)) {
179                         buflen = recv(uevent_netlink_sock, &buf, sizeof(buf), 0);
180                         if (buflen <=  0) {
181                                 fprintf(stderr, "error receiving uevent message\n");
182                                 continue;
183                         }
184                         printf("UEVENT[%i] %s\n", time(NULL), buf);
185                 }
186
187                 if ((udev_monitor_sock > 0) && FD_ISSET(udev_monitor_sock, &readfds)) {
188                         buflen = recv(udev_monitor_sock, &buf, sizeof(buf), 0);
189                         if (buflen <=  0) {
190                                 fprintf(stderr, "error receiving udev message\n");
191                                 continue;
192                         }
193                         printf("UDEV  [%i] %s\n", time(NULL), buf);
194                 }
195
196                 if (buflen == 0)
197                         continue;
198
199                 /* print environment */
200                 if (env) {
201                         size_t bufpos;
202
203                         /* start of payload */
204                         bufpos = strlen(buf) + 1;
205
206                         while (bufpos < (size_t)buflen) {
207                                 int keylen;
208                                 char *key;
209
210                                 key = &buf[bufpos];
211                                 keylen = strlen(key);
212                                 if (keylen == 0)
213                                         break;
214                                 printf("%s\n", key);
215                                 bufpos += keylen + 1;
216                         }
217                         printf("\n");
218                 }
219         }
220
221 out:
222         if (uevent_netlink_sock > 0)
223                 close(uevent_netlink_sock);
224         if (udev_monitor_sock > 0)
225                 close(udev_monitor_sock);
226
227         if (retval)
228                 return 3;
229         return 0;
230 }