chiark / gitweb /
remove 'static' from local variable
[elogind.git] / udevcontrol.c
1 /*
2  * udevcontrol.c
3  *
4  * Copyright (C) 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 <time.h>
22 #include <errno.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <stddef.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <sys/types.h>
29 #include <sys/socket.h>
30 #include <sys/wait.h>
31 #include <sys/un.h>
32
33 #include "udev.h"
34 #include "udevd.h"
35
36 static int sock = -1;
37 static int udev_log = 0;
38
39 #ifdef USE_LOG
40 void log_message (int priority, const char *format, ...)
41 {
42         va_list args;
43
44         if (priority > udev_log)
45                 return;
46
47         va_start(args, format);
48         vsyslog(priority, format, args);
49         va_end(args);
50 }
51 #endif
52
53 static void usage(void)
54 {
55         printf("Usage: udevcontrol COMMAND\n"
56                 "  log_priority=<level> set the udev log level for the daemon\n"
57                 "  stop_exec_queue      keep udevd from executing events, queue only\n"
58                 "  start_exec_queue     execute events, flush queue\n"
59                 "  reload_rules         reloads the rules files\n"
60                 "  max_childs=<N>       maximum number of childs running at the same time\n"
61                 "  --help               print this help text\n\n");
62 }
63
64 int main(int argc, char *argv[], char *envp[])
65 {
66         static struct udevd_msg usend_msg;
67         struct sockaddr_un saddr;
68         socklen_t addrlen;
69         const char *env;
70         const char *val;
71         int *intval;
72         int i;
73         int retval = 1;
74
75         env = getenv("UDEV_LOG");
76         if (env)
77                 udev_log = log_priority(env);
78
79         logging_init("udevcontrol");
80         dbg("version %s", UDEV_VERSION);
81
82         if (argc < 2) {
83                 fprintf(stderr, "missing command\n\n");
84                 usage();
85                 goto exit;
86         }
87
88         memset(&usend_msg, 0x00, sizeof(struct udevd_msg));
89         strcpy(usend_msg.magic, UDEV_MAGIC);
90
91         for (i = 1 ; i < argc; i++) {
92                 char *arg = argv[i];
93
94                 if (!strcmp(arg, "stop_exec_queue"))
95                         usend_msg.type = UDEVD_STOP_EXEC_QUEUE;
96                 else if (!strcmp(arg, "start_exec_queue"))
97                         usend_msg.type = UDEVD_START_EXEC_QUEUE;
98                 else if (!strcmp(arg, "reload_rules"))
99                         usend_msg.type = UDEVD_RELOAD_RULES;
100                 else if (!strncmp(arg, "log_priority=", strlen("log_priority="))) {
101                         intval = (int *) usend_msg.envbuf;
102                         val = &arg[strlen("log_priority=")];
103                         usend_msg.type = UDEVD_SET_LOG_LEVEL;
104                         *intval = log_priority(val);
105                         info("send log_priority=%i", *intval);
106                 } else if (!strncmp(arg, "max_childs=", strlen("max_childs="))) {
107                         intval = (int *) usend_msg.envbuf;
108                         val = &arg[strlen("max_childs=")];
109                         usend_msg.type = UDEVD_SET_MAX_CHILDS;
110                         *intval = atoi(val);
111                         info("send max_childs=%i", *intval);
112                 } else if (strcmp(arg, "help") == 0  || strcmp(arg, "--help") == 0  || strcmp(arg, "-h") == 0) {
113                         usage();
114                         goto exit;
115                 } else {
116                         fprintf(stderr, "unknown option\n\n");
117                         usage();
118                         goto exit;
119                 }
120         }
121
122         if (getuid() != 0) {
123                 fprintf(stderr, "need to be root, exit\n\n");
124                 goto exit;
125         }
126
127         sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
128         if (sock == -1) {
129                 err("error getting socket: %s", strerror(errno));
130                 goto exit;
131         }
132
133         memset(&saddr, 0x00, sizeof(struct sockaddr_un));
134         saddr.sun_family = AF_LOCAL;
135         /* use abstract namespace for socket path */
136         strcpy(&saddr.sun_path[1], UDEVD_SOCK_PATH);
137         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
138
139         retval = sendto(sock, &usend_msg, sizeof(usend_msg), 0, (struct sockaddr *)&saddr, addrlen);
140         if (retval == -1) {
141                 err("error sending message: %s", strerror(errno));
142                 retval = 1;
143         } else {
144                 dbg("sent message type=0x%02x, %u bytes sent", usend_msg.type, retval);
145                 retval = 0;
146         }
147
148         close(sock);
149 exit:
150         logging_close();
151         return retval;
152 }