chiark / gitweb /
fix printed udevmonitor header
[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 <sys/socket.h>
29 #include <sys/un.h>
30 #include <sys/select.h>
31 #include <linux/types.h>
32 #include <linux/netlink.h>
33
34 #include "udev.h"
35 #include "udevd.h"
36 #include "udev_utils.h"
37 #include "udev_libc_wrapper.h"
38
39 static int uevent_netlink_sock;
40 static int udev_monitor_sock;
41
42 static int init_udev_monitor_socket(void)
43 {
44         struct sockaddr_un saddr;
45         socklen_t addrlen;
46         const int feature_on = 1;
47         int retval;
48
49         memset(&saddr, 0x00, sizeof(saddr));
50         saddr.sun_family = AF_LOCAL;
51         /* use abstract namespace for socket path */
52         strcpy(&saddr.sun_path[1], "/org/kernel/udev/monitor");
53         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
54
55         udev_monitor_sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
56         if (udev_monitor_sock == -1) {
57                 fprintf(stderr, "error getting socket, %s\n", strerror(errno));
58                 return -1;
59         }
60
61         /* the bind takes care of ensuring only one copy running */
62         retval = bind(udev_monitor_sock, (struct sockaddr *) &saddr, addrlen);
63         if (retval < 0) {
64                 fprintf(stderr, "bind failed, %s\n", strerror(errno));
65                 close(udev_monitor_sock);
66                 return -1;
67         }
68
69         /* enable receiving of the sender credentials */
70         setsockopt(udev_monitor_sock, SOL_SOCKET, SO_PASSCRED, &feature_on, sizeof(feature_on));
71
72         return 0;
73 }
74
75 static int init_uevent_netlink_sock(void)
76 {
77         struct sockaddr_nl snl;
78         int retval;
79
80         memset(&snl, 0x00, sizeof(struct sockaddr_nl));
81         snl.nl_family = AF_NETLINK;
82         snl.nl_pid = getpid();
83         snl.nl_groups = 0xffffffff;
84
85         uevent_netlink_sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
86         if (uevent_netlink_sock == -1) {
87                 fprintf(stderr, "error getting socket, %s\n", strerror(errno));
88                 return -1;
89         }
90
91         retval = bind(uevent_netlink_sock, (struct sockaddr *) &snl,
92                       sizeof(struct sockaddr_nl));
93         if (retval < 0) {
94                 fprintf(stderr, "bind failed, %s\n", strerror(errno));
95                 close(uevent_netlink_sock);
96                 uevent_netlink_sock = -1;
97                 return -1;
98         }
99
100         return 0;
101 }
102
103 int main(int argc, char *argv[])
104 {
105         int env = 0;
106         fd_set readfds;
107         int i;
108         int retval = 0;
109
110         for (i = 1 ; i < argc; i++) {
111                 char *arg = argv[i];
112                 if (strcmp(arg, "--env") == 0 || strcmp(arg, "-e") == 0) {
113                         env = 1;
114                 }
115                 else if (strcmp(arg, "--help") == 0  || strcmp(arg, "-h") == 0){
116                         printf("Usage: udevmonitor [--env]\n"
117                                 "  --env    print the whole event environment\n"
118                                 "  --help   print this help text\n\n");
119                         exit(0);
120                 } else {
121                         fprintf(stderr, "unknown option\n\n");
122                         exit(1);
123                 }
124         }
125
126         if (getuid() != 0) {
127                 fprintf(stderr, "need to be root, exit\n\n");
128                 exit(1);
129         }
130
131         retval = init_udev_monitor_socket();
132         if (retval)
133                 goto out;
134         init_uevent_netlink_sock();
135
136         printf("udevmonitor prints the received event from the kernel [UEVENT]\n"
137                "and the event which udev sends out after rule processing [UDEV]\n\n");
138
139         while (1) {
140                 static char buf[UEVENT_BUFFER_SIZE*2];
141                 ssize_t buflen;
142                 int fdcount;
143
144                 buflen = 0;
145                 FD_ZERO(&readfds);
146                 if (uevent_netlink_sock > 0)
147                         FD_SET(uevent_netlink_sock, &readfds);
148                 if (udev_monitor_sock > 0)
149                         FD_SET(udev_monitor_sock, &readfds);
150
151                 fdcount = select(UDEV_MAX(uevent_netlink_sock, udev_monitor_sock)+1, &readfds, NULL, NULL, NULL);
152                 if (fdcount < 0) {
153                         if (errno != EINTR)
154                                 fprintf(stderr, "error receiving uevent message\n");
155                         continue;
156                 }
157
158                 if ((uevent_netlink_sock > 0) && FD_ISSET(uevent_netlink_sock, &readfds)) {
159                         buflen = recv(uevent_netlink_sock, &buf, sizeof(buf), 0);
160                         if (buflen <=  0) {
161                                 fprintf(stderr, "error receiving uevent message\n");
162                                 continue;
163                         }
164                         printf("UEVENT[%i] %s\n", time(NULL), buf);
165                 }
166
167                 if ((udev_monitor_sock > 0) && FD_ISSET(udev_monitor_sock, &readfds)) {
168                         buflen = recv(udev_monitor_sock, &buf, sizeof(buf), 0);
169                         if (buflen <=  0) {
170                                 fprintf(stderr, "error receiving udev message\n");
171                                 continue;
172                         }
173                         printf("UDEV  [%i] %s\n", time(NULL), buf);
174                 }
175
176                 if (buflen == 0)
177                         continue;
178
179                 /* print environment */
180                 if (env) {
181                         size_t bufpos;
182
183                         /* start of payload */
184                         bufpos = strlen(buf) + 1;
185
186                         while (bufpos < (size_t)buflen) {
187                                 int keylen;
188                                 char *key;
189
190                                 key = &buf[bufpos];
191                                 keylen = strlen(key);
192                                 if (keylen == 0)
193                                         break;
194                                 printf("%s\n", key);
195                                 bufpos += keylen + 1;
196                         }
197                         printf("\n");
198                 }
199         }
200
201 out:
202         if (uevent_netlink_sock > 0)
203                 close(uevent_netlink_sock);
204         if (udev_monitor_sock > 0)
205                 close(udev_monitor_sock);
206
207         return retval;
208 }