chiark / gitweb /
add linux/types.h back, old glibc-kernel-headers want it
[elogind.git] / udev_utils_run.c
1 /*
2  * udev_utils_run.c - execute programs from udev and read its output
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
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <stddef.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <errno.h>
28 #include <ctype.h>
29 #include <sys/socket.h>
30 #include <sys/un.h>
31 #include <sys/wait.h>
32 #include <sys/select.h>
33
34 #include "udev_libc_wrapper.h"
35 #include "udev.h"
36 #include "logging.h"
37 #include "udev_utils.h"
38 #include "list.h"
39
40
41 int pass_env_to_socket(const char *sockname, const char *devpath, const char *action)
42 {
43         int sock;
44         struct sockaddr_un saddr;
45         socklen_t addrlen;
46         char buf[2048];
47         size_t bufpos = 0;
48         int i;
49         ssize_t count;
50         int retval = 0;
51
52         dbg("pass environment to socket '%s'", sockname);
53         sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
54         memset(&saddr, 0x00, sizeof(struct sockaddr_un));
55         saddr.sun_family = AF_LOCAL;
56         /* only abstract namespace is supported */
57         strcpy(&saddr.sun_path[1], sockname);
58         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
59
60         bufpos = snprintf(buf, sizeof(buf)-1, "%s@%s", action, devpath);
61         bufpos++;
62         for (i = 0; environ[i] != NULL && bufpos < sizeof(buf); i++) {
63                 bufpos += strlcpy(&buf[bufpos], environ[i], sizeof(buf) - bufpos-1);
64                 bufpos++;
65         }
66
67         count = sendto(sock, &buf, bufpos, 0, (struct sockaddr *)&saddr, addrlen);
68         if (count < 0)
69                 retval = -1;
70         info("passed %zi bytes to socket '%s', ", count, sockname);
71
72         close(sock);
73         return retval;
74 }
75
76 int run_program(const char *command, const char *subsystem,
77                 char *result, size_t ressize, size_t *reslen, int log)
78 {
79         int retval = 0;
80         int status;
81         int outpipe[2] = {-1, -1};
82         int errpipe[2] = {-1, -1};
83         pid_t pid;
84         char arg[PATH_SIZE];
85         char *argv[(sizeof(arg) / 2) + 1];
86         int devnull;
87         int i;
88
89         strlcpy(arg, command, sizeof(arg));
90         i = 0;
91         if (strchr(arg, ' ')) {
92                 char *pos = arg;
93                 while (pos != NULL) {
94                         if (pos[0] == '\'') {
95                                 /* don't separate if in apostrophes */
96                                 pos++;
97                                 argv[i] = strsep(&pos, "\'");
98                                 while (pos && pos[0] == ' ')
99                                         pos++;
100                         } else {
101                                 argv[i] = strsep(&pos, " ");
102                         }
103                         dbg("arg[%i] '%s'", i, argv[i]);
104                         i++;
105                 }
106                 argv[i] = NULL;
107                 info("'%s'", command);
108         } else {
109                 argv[0] = arg;
110                 argv[1] = (char *) subsystem;
111                 argv[2] = NULL;
112                 info("'%s' '%s'", arg, argv[1]);
113         }
114
115         /* prepare pipes from child to parent */
116         if (result || log) {
117                 if (pipe(outpipe) != 0) {
118                         err("pipe failed: %s", strerror(errno));
119                         return -1;
120                 }
121         }
122         if (log) {
123                 if (pipe(errpipe) != 0) {
124                         err("pipe failed: %s", strerror(errno));
125                         return -1;
126                 }
127         }
128
129         pid = fork();
130         switch(pid) {
131         case 0:
132                 /* child closes parent ends of pipes */
133                 if (outpipe[READ_END] > 0)
134                         close(outpipe[READ_END]);
135                 if (errpipe[READ_END] > 0)
136                         close(errpipe[READ_END]);
137
138                 /* discard child output or connect to pipe */
139                 devnull = open("/dev/null", O_RDWR);
140                 if (devnull > 0) {
141                         dup2(devnull, STDIN_FILENO);
142                         if (outpipe[WRITE_END] < 0)
143                                 dup2(devnull, STDOUT_FILENO);
144                         if (errpipe[WRITE_END] < 0)
145                                 dup2(devnull, STDERR_FILENO);
146                         close(devnull);
147                 } else
148                         err("open /dev/null failed: %s", strerror(errno));
149                 if (outpipe[WRITE_END] > 0)
150                         dup2(outpipe[WRITE_END], STDOUT_FILENO);
151                 if (errpipe[WRITE_END] > 0)
152                         dup2(errpipe[WRITE_END], STDERR_FILENO);
153                 execv(argv[0], argv);
154
155                 /* we should never reach this */
156                 err("exec of program '%s' failed", argv[0]);
157                 _exit(1);
158         case -1:
159                 err("fork of '%s' failed: %s", argv[0], strerror(errno));
160                 return -1;
161         default:
162                 /* read from child if requested */
163                 if (outpipe[READ_END] > 0 || errpipe[READ_END] > 0) {
164                         ssize_t count;
165                         size_t respos = 0;
166
167                         /* parent closes child ends of pipes */
168                         if (outpipe[WRITE_END] > 0)
169                                 close(outpipe[WRITE_END]);
170                         if (errpipe[WRITE_END] > 0)
171                                 close(errpipe[WRITE_END]);
172
173                         /* read child output */
174                         while (outpipe[READ_END] > 0 || errpipe[READ_END] > 0) {
175                                 int fdcount;
176                                 fd_set readfds;
177
178                                 FD_ZERO(&readfds);
179                                 if (outpipe[READ_END] > 0)
180                                         FD_SET(outpipe[READ_END], &readfds);
181                                 if (errpipe[READ_END] > 0)
182                                         FD_SET(errpipe[READ_END], &readfds);
183                                 fdcount = select(UDEV_MAX(outpipe[READ_END], errpipe[READ_END])+1, &readfds, NULL, NULL, NULL);
184                                 if (fdcount < 0) {
185                                         if (errno == EINTR)
186                                                 continue;
187                                         retval = -1;
188                                         break;
189                                 }
190
191                                 /* get stdout */
192                                 if (outpipe[READ_END] > 0 && FD_ISSET(outpipe[READ_END], &readfds)) {
193                                         char inbuf[1024];
194                                         char *pos;
195                                         char *line;
196
197                                         count = read(outpipe[READ_END], inbuf, sizeof(inbuf)-1);
198                                         if (count <= 0) {
199                                                 close(outpipe[READ_END]);
200                                                 outpipe[READ_END] = -1;
201                                                 if (count < 0) {
202                                                         err("stdin read failed: %s", strerror(errno));
203                                                         retval = -1;
204                                                 }
205                                                 continue;
206                                         }
207                                         inbuf[count] = '\0';
208
209                                         /* store result for rule processing */
210                                         if (result) {
211                                                 if (respos + count < ressize) {
212                                                         memcpy(&result[respos], inbuf, count);
213                                                         respos += count;
214                                                 } else {
215                                                         err("ressize %ld too short", (long)ressize);
216                                                         retval = -1;
217                                                 }
218                                         }
219                                         pos = inbuf;
220                                         while ((line = strsep(&pos, "\n")))
221                                                 if (pos || line[0] != '\0')
222                                                         info("'%s' (stdout) '%s'", argv[0], line);
223                                 }
224
225                                 /* get stderr */
226                                 if (errpipe[READ_END] > 0 && FD_ISSET(errpipe[READ_END], &readfds)) {
227                                         char errbuf[1024];
228                                         char *pos;
229                                         char *line;
230
231                                         count = read(errpipe[READ_END], errbuf, sizeof(errbuf)-1);
232                                         if (count <= 0) {
233                                                 close(errpipe[READ_END]);
234                                                 errpipe[READ_END] = -1;
235                                                 if (count < 0)
236                                                         err("stderr read failed: %s", strerror(errno));
237                                                 continue;
238                                         }
239                                         errbuf[count] = '\0';
240                                         pos = errbuf;
241                                         while ((line = strsep(&pos, "\n")))
242                                                 if (pos || line[0] != '\0')
243                                                         info("'%s' (stderr) '%s'", argv[0], line);
244                                 }
245                         }
246                         if (outpipe[READ_END] > 0)
247                                 close(outpipe[READ_END]);
248                         if (errpipe[READ_END] > 0)
249                                 close(errpipe[READ_END]);
250
251                         /* return the childs stdout string */
252                         if (result) {
253                                 result[respos] = '\0';
254                                 dbg("result='%s'", result);
255                                 if (reslen)
256                                         *reslen = respos;
257                         }
258                 }
259                 waitpid(pid, &status, 0);
260                 if (WIFEXITED(status)) {
261                         info("'%s' returned with status %i", argv[0], WEXITSTATUS(status));
262                         if (WEXITSTATUS(status) != 0)
263                                 retval = -1;
264                 } else {
265                         err("'%s' abnormal exit", argv[0]);
266                         retval = -1;
267                 }
268         }
269
270         return retval;
271 }