chiark / gitweb /
400ebad9e33b6841302065576e528feed81707b4
[elogind.git] / udev_rules.c
1 /*
2  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
3  * Copyright (C) 2003-2006 Kay Sievers <kay.sievers@vrfy.org>
4  *
5  *      This program is free software; you can redistribute it and/or modify it
6  *      under the terms of the GNU General Public License as published by the
7  *      Free Software Foundation version 2 of the License.
8  *
9  *      This program is distributed in the hope that it will be useful, but
10  *      WITHOUT ANY WARRANTY; without even the implied warranty of
11  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *      General Public License for more details.
13  *
14  *      You should have received a copy of the GNU General Public License along
15  *      with this program; if not, write to the Free Software Foundation, Inc.,
16  *      51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  *
18  */
19
20 #include <stddef.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <ctype.h>
26 #include <unistd.h>
27 #include <errno.h>
28 #include <syslog.h>
29 #include <fnmatch.h>
30 #include <sys/socket.h>
31 #include <sys/un.h>
32 #include <sys/wait.h>
33 #include <sys/stat.h>
34
35 #include "udev.h"
36 #include "udev_rules.h"
37
38 extern char **environ;
39
40 /* extract possible {attr} and move str behind it */
41 static char *get_format_attribute(char **str)
42 {
43         char *pos;
44         char *attr = NULL;
45
46         if (*str[0] == '{') {
47                 pos = strchr(*str, '}');
48                 if (pos == NULL) {
49                         err("missing closing brace for format");
50                         return NULL;
51                 }
52                 pos[0] = '\0';
53                 attr = *str+1;
54                 *str = pos+1;
55                 dbg("attribute='%s', str='%s'", attr, *str);
56         }
57         return attr;
58 }
59
60 /* extract possible format length and move str behind it*/
61 static int get_format_len(char **str)
62 {
63         int num;
64         char *tail;
65
66         if (isdigit(*str[0])) {
67                 num = (int) strtoul(*str, &tail, 10);
68                 if (num > 0) {
69                         *str = tail;
70                         dbg("format length=%i", num);
71                         return num;
72                 } else {
73                         err("format parsing error '%s'", *str);
74                 }
75         }
76         return -1;
77 }
78
79 static int get_key(char **line, char **key, char **value)
80 {
81         char *linepos;
82         char *temp;
83
84         linepos = *line;
85         if (linepos == NULL)
86                 return -1;
87
88         /* skip whitespace */
89         while (isspace(linepos[0]))
90                 linepos++;
91
92         /* get the key */
93         temp = strchr(linepos, '=');
94         if (temp == NULL || temp == linepos)
95                 return -1;
96         temp[0] = '\0';
97         *key = linepos;
98         linepos = &temp[1];
99
100         /* get a quoted value */
101         if (linepos[0] == '"' || linepos[0] == '\'') {
102                 temp = strchr(&linepos[1], linepos[0]);
103                 if (temp != NULL) {
104                         temp[0] = '\0';
105                         *value = &linepos[1];
106                         goto out;
107                 }
108         }
109
110         /* get the value*/
111         temp = strchr(linepos, '\n');
112         if (temp != NULL)
113                 temp[0] = '\0';
114         *value = linepos;
115 out:
116         return 0;
117 }
118
119 static int run_program(const char *command, const char *subsystem,
120                 char *result, size_t ressize, size_t *reslen)
121 {
122         int status;
123         int outpipe[2] = {-1, -1};
124         int errpipe[2] = {-1, -1};
125         pid_t pid;
126         char arg[PATH_SIZE];
127         char program[PATH_SIZE];
128         char *argv[(sizeof(arg) / 2) + 1];
129         int devnull;
130         int i;
131         int retval = 0;
132
133         /* build argv from comand */
134         strlcpy(arg, command, sizeof(arg));
135         i = 0;
136         if (strchr(arg, ' ') != NULL) {
137                 char *pos = arg;
138
139                 while (pos != NULL) {
140                         if (pos[0] == '\'') {
141                                 /* don't separate if in apostrophes */
142                                 pos++;
143                                 argv[i] = strsep(&pos, "\'");
144                                 while (pos != NULL && pos[0] == ' ')
145                                         pos++;
146                         } else {
147                                 argv[i] = strsep(&pos, " ");
148                         }
149                         dbg("arg[%i] '%s'", i, argv[i]);
150                         i++;
151                 }
152                 argv[i] = NULL;
153         } else {
154                 argv[0] = arg;
155                 argv[1] = NULL;
156         }
157         info("'%s'", command);
158
159         /* prepare pipes from child to parent */
160         if (result != NULL || udev_log_priority >= LOG_INFO) {
161                 if (pipe(outpipe) != 0) {
162                         err("pipe failed: %s", strerror(errno));
163                         return -1;
164                 }
165         }
166         if (udev_log_priority >= LOG_INFO) {
167                 if (pipe(errpipe) != 0) {
168                         err("pipe failed: %s", strerror(errno));
169                         return -1;
170                 }
171         }
172
173         /* allow programs in /lib/udev called without the path */
174         if (strchr(argv[0], '/') == NULL) {
175                 strlcpy(program, "/lib/udev/", sizeof(program));
176                 strlcat(program, argv[0], sizeof(program));
177                 argv[0] = program;
178         }
179
180         pid = fork();
181         switch(pid) {
182         case 0:
183                 /* child closes parent ends of pipes */
184                 if (outpipe[READ_END] > 0)
185                         close(outpipe[READ_END]);
186                 if (errpipe[READ_END] > 0)
187                         close(errpipe[READ_END]);
188
189                 /* discard child output or connect to pipe */
190                 devnull = open("/dev/null", O_RDWR);
191                 if (devnull > 0) {
192                         dup2(devnull, STDIN_FILENO);
193                         if (outpipe[WRITE_END] < 0)
194                                 dup2(devnull, STDOUT_FILENO);
195                         if (errpipe[WRITE_END] < 0)
196                                 dup2(devnull, STDERR_FILENO);
197                         close(devnull);
198                 } else
199                         err("open /dev/null failed: %s", strerror(errno));
200                 if (outpipe[WRITE_END] > 0) {
201                         dup2(outpipe[WRITE_END], STDOUT_FILENO);
202                         close(outpipe[WRITE_END]);
203                 }
204                 if (errpipe[WRITE_END] > 0) {
205                         dup2(errpipe[WRITE_END], STDERR_FILENO);
206                         close(errpipe[WRITE_END]);
207                 }
208                 execv(argv[0], argv);
209                 if (errno == ENOENT || errno == ENOTDIR) {
210                         /* may be on a filesytem which is not mounted right now */
211                         info("program '%s' not found", argv[0]);
212                 } else {
213                         /* other problems */
214                         err("exec of program '%s' failed", argv[0]);
215                 }
216                 _exit(1);
217         case -1:
218                 err("fork of '%s' failed: %s", argv[0], strerror(errno));
219                 return -1;
220         default:
221                 /* read from child if requested */
222                 if (outpipe[READ_END] > 0 || errpipe[READ_END] > 0) {
223                         ssize_t count;
224                         size_t respos = 0;
225
226                         /* parent closes child ends of pipes */
227                         if (outpipe[WRITE_END] > 0)
228                                 close(outpipe[WRITE_END]);
229                         if (errpipe[WRITE_END] > 0)
230                                 close(errpipe[WRITE_END]);
231
232                         /* read child output */
233                         while (outpipe[READ_END] > 0 || errpipe[READ_END] > 0) {
234                                 int fdcount;
235                                 fd_set readfds;
236
237                                 FD_ZERO(&readfds);
238                                 if (outpipe[READ_END] > 0)
239                                         FD_SET(outpipe[READ_END], &readfds);
240                                 if (errpipe[READ_END] > 0)
241                                         FD_SET(errpipe[READ_END], &readfds);
242                                 fdcount = select(UDEV_MAX(outpipe[READ_END], errpipe[READ_END])+1, &readfds, NULL, NULL, NULL);
243                                 if (fdcount < 0) {
244                                         if (errno == EINTR)
245                                                 continue;
246                                         retval = -1;
247                                         break;
248                                 }
249
250                                 /* get stdout */
251                                 if (outpipe[READ_END] > 0 && FD_ISSET(outpipe[READ_END], &readfds)) {
252                                         char inbuf[1024];
253                                         char *pos;
254                                         char *line;
255
256                                         count = read(outpipe[READ_END], inbuf, sizeof(inbuf)-1);
257                                         if (count <= 0) {
258                                                 close(outpipe[READ_END]);
259                                                 outpipe[READ_END] = -1;
260                                                 if (count < 0) {
261                                                         err("stdin read failed: %s", strerror(errno));
262                                                         retval = -1;
263                                                 }
264                                                 continue;
265                                         }
266                                         inbuf[count] = '\0';
267
268                                         /* store result for rule processing */
269                                         if (result) {
270                                                 if (respos + count < ressize) {
271                                                         memcpy(&result[respos], inbuf, count);
272                                                         respos += count;
273                                                 } else {
274                                                         err("ressize %ld too short", (long)ressize);
275                                                         retval = -1;
276                                                 }
277                                         }
278                                         pos = inbuf;
279                                         while ((line = strsep(&pos, "\n")))
280                                                 if (pos || line[0] != '\0')
281                                                         info("'%s' (stdout) '%s'", argv[0], line);
282                                 }
283
284                                 /* get stderr */
285                                 if (errpipe[READ_END] > 0 && FD_ISSET(errpipe[READ_END], &readfds)) {
286                                         char errbuf[1024];
287                                         char *pos;
288                                         char *line;
289
290                                         count = read(errpipe[READ_END], errbuf, sizeof(errbuf)-1);
291                                         if (count <= 0) {
292                                                 close(errpipe[READ_END]);
293                                                 errpipe[READ_END] = -1;
294                                                 if (count < 0)
295                                                         err("stderr read failed: %s", strerror(errno));
296                                                 continue;
297                                         }
298                                         errbuf[count] = '\0';
299                                         pos = errbuf;
300                                         while ((line = strsep(&pos, "\n")))
301                                                 if (pos || line[0] != '\0')
302                                                         info("'%s' (stderr) '%s'", argv[0], line);
303                                 }
304                         }
305                         if (outpipe[READ_END] > 0)
306                                 close(outpipe[READ_END]);
307                         if (errpipe[READ_END] > 0)
308                                 close(errpipe[READ_END]);
309
310                         /* return the childs stdout string */
311                         if (result) {
312                                 result[respos] = '\0';
313                                 dbg("result='%s'", result);
314                                 if (reslen)
315                                         *reslen = respos;
316                         }
317                 }
318                 waitpid(pid, &status, 0);
319                 if (WIFEXITED(status)) {
320                         info("'%s' returned with status %i", argv[0], WEXITSTATUS(status));
321                         if (WEXITSTATUS(status) != 0)
322                                 retval = -1;
323                 } else {
324                         err("'%s' abnormal exit", argv[0]);
325                         retval = -1;
326                 }
327         }
328
329         return retval;
330 }
331
332 static int import_keys_into_env(struct udevice *udev, const char *buf, size_t bufsize)
333 {
334         char line[LINE_SIZE];
335         const char *bufline;
336         char *linepos;
337         char *variable;
338         char *value;
339         size_t cur;
340         size_t count;
341         int lineno;
342
343         /* loop through the whole buffer */
344         lineno = 0;
345         cur = 0;
346         while (cur < bufsize) {
347                 count = buf_get_line(buf, bufsize, cur);
348                 bufline = &buf[cur];
349                 cur += count+1;
350                 lineno++;
351
352                 if (count >= sizeof(line)) {
353                         err("line too long, conf line skipped %s, line %d", udev_config_filename, lineno);
354                         continue;
355                 }
356
357                 /* eat the whitespace */
358                 while ((count > 0) && isspace(bufline[0])) {
359                         bufline++;
360                         count--;
361                 }
362                 if (count == 0)
363                         continue;
364
365                 /* see if this is a comment */
366                 if (bufline[0] == COMMENT_CHARACTER)
367                         continue;
368
369                 memcpy(line, bufline, count);
370                 line[count] = '\0';
371
372                 linepos = line;
373                 if (get_key(&linepos, &variable, &value) == 0) {
374                         dbg("import '%s=%s'", variable, value);
375
376                         /* handle device, renamed by external tool, returning new path */
377                         if (strcmp(variable, "DEVPATH") == 0) {
378                                 info("updating devpath from '%s' to '%s'", udev->dev->devpath, value);
379                                 sysfs_device_set_values(udev->dev, value, NULL, NULL);
380                         } else
381                                 name_list_key_add(&udev->env_list, variable, value);
382                         setenv(variable, value, 1);
383                 }
384         }
385
386         return 0;
387 }
388
389 static int import_file_into_env(struct udevice *udev, const char *filename)
390 {
391         char *buf;
392         size_t bufsize;
393
394         if (file_map(filename, &buf, &bufsize) != 0) {
395                 err("can't open '%s': %s", filename, strerror(errno));
396                 return -1;
397         }
398         import_keys_into_env(udev, buf, bufsize);
399         file_unmap(buf, bufsize);
400
401         return 0;
402 }
403
404 static int import_program_into_env(struct udevice *udev, const char *program)
405 {
406         char result[2048];
407         size_t reslen;
408
409         if (run_program(program, udev->dev->subsystem, result, sizeof(result), &reslen) != 0)
410                 return -1;
411         return import_keys_into_env(udev, result, reslen);
412 }
413
414 static int import_parent_into_env(struct udevice *udev, const char *filter)
415 {
416         struct sysfs_device *dev_parent;
417         int rc = -1;
418
419         dev_parent = sysfs_device_get_parent(udev->dev);
420         if (dev_parent != NULL) {
421                 struct udevice *udev_parent;
422                 struct name_entry *name_loop;
423
424                 dbg("found parent '%s', get the node name", dev_parent->devpath);
425                 udev_parent = udev_device_init(NULL);
426                 if (udev_parent == NULL)
427                         return -1;
428                 /* import the udev_db of the parent */
429                 if (udev_db_get_device(udev_parent, dev_parent->devpath) == 0) {
430                         dbg("import stored parent env '%s'", udev_parent->name);
431                         list_for_each_entry(name_loop, &udev_parent->env_list, node) {
432                                 char name[NAME_SIZE];
433                                 char *pos;
434
435                                 strlcpy(name, name_loop->name, sizeof(name));
436                                 pos = strchr(name, '=');
437                                 if (pos) {
438                                         pos[0] = '\0';
439                                         pos++;
440                                         if (fnmatch(filter, name, 0) == 0) {
441                                                 dbg("import key '%s'", name_loop->name);
442                                                 name_list_add(&udev->env_list, name_loop->name, 0);
443                                                 setenv(name, pos, 1);
444                                         } else
445                                                 dbg("skip key '%s'", name_loop->name);
446                                 }
447                         }
448                         rc = 0;
449                 } else
450                         dbg("parent not found in database");
451                 udev_device_cleanup(udev_parent);
452         }
453
454         return rc;
455 }
456
457 static int pass_env_to_socket(const char *sockname, const char *devpath, const char *action)
458 {
459         int sock;
460         struct sockaddr_un saddr;
461         socklen_t addrlen;
462         char buf[2048];
463         size_t bufpos = 0;
464         int i;
465         ssize_t count;
466         int retval = 0;
467
468         dbg("pass environment to socket '%s'", sockname);
469         sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
470         memset(&saddr, 0x00, sizeof(struct sockaddr_un));
471         saddr.sun_family = AF_LOCAL;
472         /* abstract namespace only */
473         strcpy(&saddr.sun_path[1], sockname);
474         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
475
476         bufpos = snprintf(buf, sizeof(buf)-1, "%s@%s", action, devpath);
477         bufpos++;
478         for (i = 0; environ[i] != NULL && bufpos < sizeof(buf); i++) {
479                 bufpos += strlcpy(&buf[bufpos], environ[i], sizeof(buf) - bufpos-1);
480                 bufpos++;
481         }
482
483         count = sendto(sock, &buf, bufpos, 0, (struct sockaddr *)&saddr, addrlen);
484         if (count < 0)
485                 retval = -1;
486         info("passed %zi bytes to socket '%s', ", count, sockname);
487
488         close(sock);
489         return retval;
490 }
491
492 int udev_rules_run(struct udevice *udev)
493 {
494         struct name_entry *name_loop;
495         int retval = 0;
496
497         dbg("executing run list");
498         list_for_each_entry(name_loop, &udev->run_list, node) {
499                 if (strncmp(name_loop->name, "socket:", strlen("socket:")) == 0) {
500                         pass_env_to_socket(&name_loop->name[strlen("socket:")], udev->dev->devpath, udev->action);
501                 } else {
502                         char program[PATH_SIZE];
503
504                         strlcpy(program, name_loop->name, sizeof(program));
505                         udev_rules_apply_format(udev, program, sizeof(program));
506                         if (run_program(program, udev->dev->subsystem, NULL, 0, NULL) != 0)
507                                 if (!name_loop->ignore_error)
508                                         retval = -1;
509                 }
510         }
511
512         return retval;
513 }
514
515 #define WAIT_LOOP_PER_SECOND            50
516 static int wait_for_sysfs(struct udevice *udev, const char *file, int timeout)
517 {
518         char devicepath[PATH_SIZE];
519         char filepath[PATH_SIZE];
520         struct stat stats;
521         int loop = timeout * WAIT_LOOP_PER_SECOND;
522
523         strlcpy(devicepath, sysfs_path, sizeof(devicepath));
524         strlcat(devicepath, udev->dev->devpath, sizeof(devicepath));
525         strlcpy(filepath, devicepath, sizeof(filepath));
526         strlcat(filepath, "/", sizeof(filepath));
527         strlcat(filepath, file, sizeof(filepath));
528
529         dbg("will wait %i sec for '%s'", timeout, filepath);
530         while (--loop) {
531                 /* lookup file */
532                 if (stat(filepath, &stats) == 0) {
533                         info("file '%s' appeared after %i loops", filepath, (timeout * WAIT_LOOP_PER_SECOND) - loop-1);
534                         return 0;
535                 }
536                 /* make sure, the device did not disappear in the meantime */
537                 if (stat(devicepath, &stats) != 0) {
538                         info("device disappeared while waiting for '%s'", filepath);
539                         return -2;
540                 }
541                 info("wait for '%s' for %i mseconds", filepath, 1000 / WAIT_LOOP_PER_SECOND);
542                 usleep(1000 * 1000 / WAIT_LOOP_PER_SECOND);
543         }
544         info("waiting for '%s' failed", filepath);
545         return -1;
546 }
547
548 /* handle "[$SUBSYSTEM/$KERNEL]<attribute>" lookup */
549 static int attr_get_by_subsys_id(const char *attrstr, char *devpath, size_t len, char **attr)
550 {
551         char subsys[NAME_SIZE];
552         char *attrib;
553         char *id;
554         int found = 0;
555
556         if (attrstr[0] != '[')
557                 goto out;
558
559         strlcpy(subsys, &attrstr[1], sizeof(subsys));
560
561         attrib = strchr(subsys, ']');
562         if (attrib == NULL)
563                 goto out;
564         attrib[0] = '\0';
565         attrib = &attrib[1];
566
567         id = strchr(subsys, '/');
568         if (id == NULL)
569                 goto out;
570         id[0] = '\0';
571         id = &id[1];
572
573         if (sysfs_lookup_devpath_by_subsys_id(devpath, len, subsys, id)) {
574                 if (attr != NULL) {
575                         if (attrib[0] != '\0')
576                                 *attr = attrib;
577                         else
578                                 *attr = NULL;
579                 }
580                 found = 1;
581         }
582 out:
583         return found;
584 }
585
586 void udev_rules_apply_format(struct udevice *udev, char *string, size_t maxsize)
587 {
588         char temp[PATH_SIZE];
589         char temp2[PATH_SIZE];
590         char *head, *tail, *pos, *cpos, *attr, *rest;
591         int len;
592         int i;
593         int count;
594         enum subst_type {
595                 SUBST_UNKNOWN,
596                 SUBST_DEVPATH,
597                 SUBST_KERNEL,
598                 SUBST_KERNEL_NUMBER,
599                 SUBST_ID,
600                 SUBST_MAJOR,
601                 SUBST_MINOR,
602                 SUBST_RESULT,
603                 SUBST_ATTR,
604                 SUBST_PARENT,
605                 SUBST_TEMP_NODE,
606                 SUBST_ROOT,
607                 SUBST_SYS,
608                 SUBST_ENV,
609         };
610         static const struct subst_map {
611                 char *name;
612                 char fmt;
613                 enum subst_type type;
614         } map[] = {
615                 { .name = "devpath",    .fmt = 'p',     .type = SUBST_DEVPATH },
616                 { .name = "number",     .fmt = 'n',     .type = SUBST_KERNEL_NUMBER },
617                 { .name = "kernel",     .fmt = 'k',     .type = SUBST_KERNEL },
618                 { .name = "id",         .fmt = 'b',     .type = SUBST_ID },
619                 { .name = "major",      .fmt = 'M',     .type = SUBST_MAJOR },
620                 { .name = "minor",      .fmt = 'm',     .type = SUBST_MINOR },
621                 { .name = "result",     .fmt = 'c',     .type = SUBST_RESULT },
622                 { .name = "attr",       .fmt = 's',     .type = SUBST_ATTR },
623                 { .name = "sysfs",      .fmt = 's',     .type = SUBST_ATTR },
624                 { .name = "parent",     .fmt = 'P',     .type = SUBST_PARENT },
625                 { .name = "tempnode",   .fmt = 'N',     .type = SUBST_TEMP_NODE },
626                 { .name = "root",       .fmt = 'r',     .type = SUBST_ROOT },
627                 { .name = "sys",        .fmt = 'S',     .type = SUBST_SYS },
628                 { .name = "env",        .fmt = 'E',     .type = SUBST_ENV },
629                 { NULL, '\0', 0 }
630         };
631         enum subst_type type;
632         const struct subst_map *subst;
633
634         head = string;
635         while (1) {
636                 len = -1;
637                 while (head[0] != '\0') {
638                         if (head[0] == '$') {
639                                 /* substitute named variable */
640                                 if (head[1] == '\0')
641                                         break;
642                                 if (head[1] == '$') {
643                                         strlcpy(temp, head+2, sizeof(temp));
644                                         strlcpy(head+1, temp, maxsize);
645                                         head++;
646                                         continue;
647                                 }
648                                 head[0] = '\0';
649                                 for (subst = map; subst->name; subst++) {
650                                         if (strncasecmp(&head[1], subst->name, strlen(subst->name)) == 0) {
651                                                 type = subst->type;
652                                                 tail = head + strlen(subst->name)+1;
653                                                 dbg("will substitute format name '%s'", subst->name);
654                                                 goto found;
655                                         }
656                                 }
657                                 head[0] = '$';
658                                 err("unknown format variable '%s'", head);
659                         } else if (head[0] == '%') {
660                                 /* substitute format char */
661                                 if (head[1] == '\0')
662                                         break;
663                                 if (head[1] == '%') {
664                                         strlcpy(temp, head+2, sizeof(temp));
665                                         strlcpy(head+1, temp, maxsize);
666                                         head++;
667                                         continue;
668                                 }
669                                 head[0] = '\0';
670                                 tail = head+1;
671                                 len = get_format_len(&tail);
672                                 for (subst = map; subst->name; subst++) {
673                                         if (tail[0] == subst->fmt) {
674                                                 type = subst->type;
675                                                 tail++;
676                                                 dbg("will substitute format char '%c'", subst->fmt);
677                                                 goto found;
678                                         }
679                                 }
680                                 head[0] = '%';
681                                 err("unknown format char '%c'", tail[0]);
682                         }
683                         head++;
684                 }
685                 break;
686 found:
687                 attr = get_format_attribute(&tail);
688                 strlcpy(temp, tail, sizeof(temp));
689                 dbg("format=%i, string='%s', tail='%s'", type ,string, tail);
690
691                 switch (type) {
692                 case SUBST_DEVPATH:
693                         strlcat(string, udev->dev->devpath, maxsize);
694                         dbg("substitute devpath '%s'", udev->dev->devpath);
695                         break;
696                 case SUBST_KERNEL:
697                         strlcat(string, udev->dev->kernel, maxsize);
698                         dbg("substitute kernel name '%s'", udev->dev->kernel);
699                         break;
700                 case SUBST_KERNEL_NUMBER:
701                         strlcat(string, udev->dev->kernel_number, maxsize);
702                         dbg("substitute kernel number '%s'", udev->dev->kernel_number);
703                         break;
704                 case SUBST_ID:
705                         if (udev->dev_parent != NULL) {
706                                 strlcat(string, udev->dev_parent->kernel, maxsize);
707                                 dbg("substitute id '%s'", udev->dev_parent->kernel);
708                         }
709                         break;
710                 case SUBST_MAJOR:
711                         sprintf(temp2, "%d", major(udev->devt));
712                         strlcat(string, temp2, maxsize);
713                         dbg("substitute major number '%s'", temp2);
714                         break;
715                 case SUBST_MINOR:
716                         sprintf(temp2, "%d", minor(udev->devt));
717                         strlcat(string, temp2, maxsize);
718                         dbg("substitute minor number '%s'", temp2);
719                         break;
720                 case SUBST_RESULT:
721                         if (udev->program_result[0] == '\0')
722                                 break;
723                         /* get part part of the result string */
724                         i = 0;
725                         if (attr != NULL)
726                                 i = strtoul(attr, &rest, 10);
727                         if (i > 0) {
728                                 dbg("request part #%d of result string", i);
729                                 cpos = udev->program_result;
730                                 while (--i) {
731                                         while (cpos[0] != '\0' && !isspace(cpos[0]))
732                                                 cpos++;
733                                         while (isspace(cpos[0]))
734                                                 cpos++;
735                                 }
736                                 if (i > 0) {
737                                         err("requested part of result string not found");
738                                         break;
739                                 }
740                                 strlcpy(temp2, cpos, sizeof(temp2));
741                                 /* %{2+}c copies the whole string from the second part on */
742                                 if (rest[0] != '+') {
743                                         cpos = strchr(temp2, ' ');
744                                         if (cpos)
745                                                 cpos[0] = '\0';
746                                 }
747                                 strlcat(string, temp2, maxsize);
748                                 dbg("substitute part of result string '%s'", temp2);
749                         } else {
750                                 strlcat(string, udev->program_result, maxsize);
751                                 dbg("substitute result string '%s'", udev->program_result);
752                         }
753                         break;
754                 case SUBST_ATTR:
755                         if (attr == NULL)
756                                 err("missing file parameter for attr");
757                         else {
758                                 char devpath[PATH_SIZE];
759                                 char *attrib;
760                                 const char *value = NULL;
761                                 size_t size;
762
763                                 if (attr_get_by_subsys_id(attr, devpath, sizeof(devpath), &attrib)) {
764                                         if (attrib != NULL)
765                                                 value = sysfs_attr_get_value(devpath, attrib);
766                                         else
767                                                 break;
768                                 }
769
770                                 /* try the current device, other matches may have selected */
771                                 if (value == NULL && udev->dev_parent != NULL && udev->dev_parent != udev->dev)
772                                         value = sysfs_attr_get_value(udev->dev_parent->devpath, attr);
773
774                                 /* look at all devices along the chain of parents */
775                                 if (value == NULL) {
776                                         struct sysfs_device *dev_parent = udev->dev;
777
778                                         do {
779                                                 dbg("looking at '%s'", dev_parent->devpath);
780                                                 value = sysfs_attr_get_value(dev_parent->devpath, attr);
781                                                 if (value != NULL) {
782                                                         strlcpy(temp2, value, sizeof(temp2));
783                                                         break;
784                                                 }
785                                                 dev_parent = sysfs_device_get_parent(dev_parent);
786                                         } while (dev_parent != NULL);
787                                 }
788
789                                 if (value == NULL)
790                                         break;
791
792                                 /* strip trailing whitespace, and replace unwanted characters */
793                                 size = strlcpy(temp2, value, sizeof(temp2));
794                                 if (size >= sizeof(temp2))
795                                         size = sizeof(temp2)-1;
796                                 while (size > 0 && isspace(temp2[size-1]))
797                                         temp2[--size] = '\0';
798                                 count = replace_chars(temp2, ALLOWED_CHARS_INPUT);
799                                 if (count > 0)
800                                         info("%i character(s) replaced" , count);
801                                 strlcat(string, temp2, maxsize);
802                                 dbg("substitute sysfs value '%s'", temp2);
803                         }
804                         break;
805                 case SUBST_PARENT:
806                         {
807                                 struct sysfs_device *dev_parent;
808
809                                 dev_parent = sysfs_device_get_parent(udev->dev);
810                                 if (dev_parent != NULL) {
811                                         struct udevice *udev_parent;
812
813                                         dbg("found parent '%s', get the node name", dev_parent->devpath);
814                                         udev_parent = udev_device_init(NULL);
815                                         if (udev_parent != NULL) {
816                                                 /* lookup the name in the udev_db with the DEVPATH of the parent */
817                                                 if (udev_db_get_device(udev_parent, dev_parent->devpath) == 0) {
818                                                         strlcat(string, udev_parent->name, maxsize);
819                                                         dbg("substitute parent node name'%s'", udev_parent->name);
820                                                 } else
821                                                         dbg("parent not found in database");
822                                                 udev_device_cleanup(udev_parent);
823                                         }
824                                 }
825                         }
826                         break;
827                 case SUBST_TEMP_NODE:
828                         if (udev->tmp_node[0] == '\0' && major(udev->devt) > 0) {
829                                 dbg("create temporary device node for callout");
830                                 snprintf(udev->tmp_node, sizeof(udev->tmp_node), "%s/.tmp-%u-%u",
831                                          udev_root, major(udev->devt), minor(udev->devt));
832                                 udev->tmp_node[sizeof(udev->tmp_node)-1] = '\0';
833                                 udev_node_mknod(udev, udev->tmp_node, udev->devt, 0600, 0, 0);
834                         }
835                         strlcat(string, udev->tmp_node, maxsize);
836                         dbg("substitute temporary device node name '%s'", udev->tmp_node);
837                         break;
838                 case SUBST_ROOT:
839                         strlcat(string, udev_root, maxsize);
840                         dbg("substitute udev_root '%s'", udev_root);
841                         break;
842                 case SUBST_SYS:
843                         strlcat(string, sysfs_path, maxsize);
844                         dbg("substitute sysfs_path '%s'", sysfs_path);
845                         break;
846                 case SUBST_ENV:
847                         if (attr == NULL) {
848                                 dbg("missing attribute");
849                                 break;
850                         }
851                         pos = getenv(attr);
852                         if (pos == NULL) {
853                                 dbg("env '%s' not available", attr);
854                                 break;
855                         }
856                         dbg("substitute env '%s=%s'", attr, pos);
857                         strlcat(string, pos, maxsize);
858                         break;
859                 default:
860                         err("unknown substitution type=%i", type);
861                         break;
862                 }
863                 /* possibly truncate to format-char specified length */
864                 if (len >= 0 && len < (int)strlen(head)) {
865                         head[len] = '\0';
866                         dbg("truncate to %i chars, subtitution string becomes '%s'", len, head);
867                 }
868                 strlcat(string, temp, maxsize);
869         }
870 }
871
872 static char *key_val(struct udev_rule *rule, struct key *key)
873 {
874         return rule->buf + key->val_off;
875 }
876
877 static char *key_pair_name(struct udev_rule *rule, struct key_pair *pair)
878 {
879         return rule->buf + pair->key_name_off;
880 }
881
882 static int match_key(const char *key_name, struct udev_rule *rule, struct key *key, const char *val)
883 {
884         char value[PATH_SIZE];
885         char *key_value;
886         char *pos;
887         int match = 0;
888
889         if (key->operation != KEY_OP_MATCH &&
890             key->operation != KEY_OP_NOMATCH)
891                 return 0;
892
893         /* look for a matching string, parts are separated by '|' */
894         strlcpy(value, rule->buf + key->val_off, sizeof(value));
895         key_value = value;
896         dbg("key %s value='%s'", key_name, key_value);
897         while (key_value) {
898                 pos = strchr(key_value, '|');
899                 if (pos) {
900                         pos[0] = '\0';
901                         pos++;
902                 }
903
904                 dbg("match %s '%s' <-> '%s'", key_name, key_value, val);
905                 match = (fnmatch(key_value, val, 0) == 0);
906                 if (match)
907                         break;
908
909                 key_value = pos;
910         }
911
912         if (match && (key->operation == KEY_OP_MATCH)) {
913                 dbg("%s is true (matching value)", key_name);
914                 return 0;
915         }
916         if (!match && (key->operation == KEY_OP_NOMATCH)) {
917                 dbg("%s is true (non-matching value)", key_name);
918                 return 0;
919         }
920         return -1;
921 }
922
923 /* match a single rule against a given device and possibly its parent devices */
924 static int match_rule(struct udevice *udev, struct udev_rule *rule)
925 {
926         int i;
927
928         if (match_key("ACTION", rule, &rule->action, udev->action))
929                 goto nomatch;
930
931         if (match_key("KERNEL", rule, &rule->kernel, udev->dev->kernel))
932                 goto nomatch;
933
934         if (match_key("SUBSYSTEM", rule, &rule->subsystem, udev->dev->subsystem))
935                 goto nomatch;
936
937         if (match_key("DEVPATH", rule, &rule->devpath, udev->dev->devpath))
938                 goto nomatch;
939
940         if (match_key("DRIVER", rule, &rule->driver, udev->dev->driver))
941                 goto nomatch;
942
943         /* match NAME against a value assigned by an earlier rule */
944         if (match_key("NAME", rule, &rule->name, udev->name))
945                 goto nomatch;
946
947         for (i = 0; i < rule->env.count; i++) {
948                 struct key_pair *pair = &rule->env.keys[i];
949
950                 /* we only check for matches, assignments will be handled later */
951                 if (pair->key.operation == KEY_OP_MATCH ||
952                     pair->key.operation == KEY_OP_NOMATCH) {
953                         const char *key_name = key_pair_name(rule, pair);
954                         const char *value = getenv(key_name);
955
956                         if (!value) {
957                                 dbg("ENV{'%s'} is not set, treat as empty", key_name);
958                                 value = "";
959                         }
960                         if (match_key("ENV", rule, &pair->key, value))
961                                 goto nomatch;
962                 }
963         }
964
965         if (rule->test.operation != KEY_OP_UNSET) {
966                 char filename[PATH_SIZE];
967                 char devpath[PATH_SIZE];
968                 char *attr;
969                 struct stat statbuf;
970                 int match;
971
972                 strlcpy(filename, key_val(rule, &rule->test), sizeof(filename));
973                 udev_rules_apply_format(udev, filename, sizeof(filename));
974
975                 if (attr_get_by_subsys_id(filename, devpath, sizeof(devpath), &attr)) {
976                         strlcpy(filename, sysfs_path, sizeof(filename));
977                         strlcat(filename, devpath, sizeof(filename));
978                         if (attr != NULL) {
979                                 strlcat(filename, "/", sizeof(filename));
980                                 strlcat(filename, attr, sizeof(filename));
981                         }
982                 }
983
984                 match = (stat(filename, &statbuf) == 0);
985                 info("'%s' %s", filename, match ? "exists" : "does not exist");
986                 if (match && rule->test_mode_mask > 0) {
987                         match = ((statbuf.st_mode & rule->test_mode_mask) > 0);
988                         info("'%s' has mode=%#o and %s %#o", filename, statbuf.st_mode,
989                              match ? "matches" : "does not match",
990                              rule->test_mode_mask);
991                 }
992                 if (match && rule->test.operation == KEY_OP_NOMATCH)
993                         goto nomatch;
994                 if (!match && rule->test.operation == KEY_OP_MATCH)
995                         goto nomatch;
996                 dbg("TEST key is true");
997         }
998
999         if (rule->wait_for_sysfs.operation != KEY_OP_UNSET) {
1000                 int found;
1001
1002                 found = (wait_for_sysfs(udev, key_val(rule, &rule->wait_for_sysfs), 3) == 0);
1003                 if (!found && (rule->wait_for_sysfs.operation != KEY_OP_NOMATCH))
1004                         goto nomatch;
1005         }
1006
1007         /* check for matching sysfs attribute pairs */
1008         for (i = 0; i < rule->attr.count; i++) {
1009                 struct key_pair *pair = &rule->attr.keys[i];
1010
1011                 if (pair->key.operation == KEY_OP_MATCH ||
1012                     pair->key.operation == KEY_OP_NOMATCH) {
1013                         const char *key_name = key_pair_name(rule, pair);
1014                         const char *key_value = key_val(rule, &pair->key);
1015                         char devpath[PATH_SIZE];
1016                         char *attrib;
1017                         const char *value = NULL;
1018                         char val[VALUE_SIZE];
1019                         size_t len;
1020
1021                         if (attr_get_by_subsys_id(key_name, devpath, sizeof(devpath), &attrib)) {
1022                                 if (attrib != NULL)
1023                                         value = sysfs_attr_get_value(devpath, attrib);
1024                                 else
1025                                         goto nomatch;
1026                         }
1027                         if (value == NULL)
1028                                 value = sysfs_attr_get_value(udev->dev->devpath, key_name);
1029                         if (value == NULL)
1030                                 goto nomatch;
1031                         strlcpy(val, value, sizeof(val));
1032
1033                         /* strip trailing whitespace of value, if not asked to match for it */
1034                         len = strlen(key_value);
1035                         if (len > 0 && !isspace(key_value[len-1])) {
1036                                 len = strlen(val);
1037                                 while (len > 0 && isspace(val[len-1]))
1038                                         val[--len] = '\0';
1039                                 dbg("removed %zi trailing whitespace chars from '%s'", strlen(val)-len, val);
1040                         }
1041
1042                         if (match_key("ATTR", rule, &pair->key, val))
1043                                 goto nomatch;
1044                 }
1045         }
1046
1047         /* walk up the chain of parent devices and find a match */
1048         udev->dev_parent = udev->dev;
1049         while (1) {
1050                 /* check for matching kernel device name */
1051                 if (match_key("KERNELS", rule, &rule->kernels, udev->dev_parent->kernel))
1052                         goto try_parent;
1053
1054                 /* check for matching subsystem value */
1055                 if (match_key("SUBSYSTEMS", rule, &rule->subsystems, udev->dev_parent->subsystem))
1056                         goto try_parent;
1057
1058                 /* check for matching driver */
1059                 if (match_key("DRIVERS", rule, &rule->drivers, udev->dev_parent->driver))
1060                         goto try_parent;
1061
1062                 /* check for matching sysfs attribute pairs */
1063                 for (i = 0; i < rule->attrs.count; i++) {
1064                         struct key_pair *pair = &rule->attrs.keys[i];
1065
1066                         if (pair->key.operation == KEY_OP_MATCH ||
1067                             pair->key.operation == KEY_OP_NOMATCH) {
1068                                 const char *key_name = key_pair_name(rule, pair);
1069                                 const char *key_value = key_val(rule, &pair->key);
1070                                 const char *value;
1071                                 char val[VALUE_SIZE];
1072                                 size_t len;
1073
1074                                 value = sysfs_attr_get_value(udev->dev_parent->devpath, key_name);
1075                                 if (value == NULL)
1076                                         value = sysfs_attr_get_value(udev->dev->devpath, key_name);
1077                                 if (value == NULL)
1078                                         goto try_parent;
1079                                 strlcpy(val, value, sizeof(val));
1080
1081                                 /* strip trailing whitespace of value, if not asked to match for it */
1082                                 len = strlen(key_value);
1083                                 if (len > 0 && !isspace(key_value[len-1])) {
1084                                         len = strlen(val);
1085                                         while (len > 0 && isspace(val[len-1]))
1086                                                 val[--len] = '\0';
1087                                         dbg("removed %zi trailing whitespace chars from '%s'", strlen(val)-len, val);
1088                                 }
1089
1090                                 if (match_key("ATTRS", rule, &pair->key, val))
1091                                         goto try_parent;
1092                         }
1093                 }
1094
1095                 /* found matching device  */
1096                 break;
1097 try_parent:
1098                 /* move to parent device */
1099                 dbg("try parent sysfs device");
1100                 udev->dev_parent = sysfs_device_get_parent(udev->dev_parent);
1101                 if (udev->dev_parent == NULL)
1102                         goto nomatch;
1103                 dbg("looking at dev_parent->devpath='%s'", udev->dev_parent->devpath);
1104                 dbg("looking at dev_parent->kernel='%s'", udev->dev_parent->kernel);
1105         }
1106
1107         /* execute external program */
1108         if (rule->program.operation != KEY_OP_UNSET) {
1109                 char program[PATH_SIZE];
1110                 char result[PATH_SIZE];
1111
1112                 strlcpy(program, key_val(rule, &rule->program), sizeof(program));
1113                 udev_rules_apply_format(udev, program, sizeof(program));
1114                 if (run_program(program, udev->dev->subsystem, result, sizeof(result), NULL) != 0) {
1115                         dbg("PROGRAM is false");
1116                         udev->program_result[0] = '\0';
1117                         if (rule->program.operation != KEY_OP_NOMATCH)
1118                                 goto nomatch;
1119                 } else {
1120                         int count;
1121
1122                         dbg("PROGRAM matches");
1123                         remove_trailing_chars(result, '\n');
1124                         if (rule->string_escape == ESCAPE_UNSET ||
1125                             rule->string_escape == ESCAPE_REPLACE) {
1126                                 count = replace_chars(result, ALLOWED_CHARS_INPUT);
1127                                 if (count > 0)
1128                                         info("%i character(s) replaced" , count);
1129                         }
1130                         dbg("result is '%s'", result);
1131                         strlcpy(udev->program_result, result, sizeof(udev->program_result));
1132                         dbg("PROGRAM returned successful");
1133                         if (rule->program.operation == KEY_OP_NOMATCH)
1134                                 goto nomatch;
1135                 }
1136                 dbg("PROGRAM key is true");
1137         }
1138
1139         /* check for matching result of external program */
1140         if (match_key("RESULT", rule, &rule->result, udev->program_result))
1141                 goto nomatch;
1142
1143         /* import variables returned from program or or file into environment */
1144         if (rule->import.operation != KEY_OP_UNSET) {
1145                 char import[PATH_SIZE];
1146                 int rc = -1;
1147
1148                 strlcpy(import, key_val(rule, &rule->import), sizeof(import));
1149                 udev_rules_apply_format(udev, import, sizeof(import));
1150                 dbg("check for IMPORT import='%s'", import);
1151                 if (rule->import_type == IMPORT_PROGRAM) {
1152                         rc = import_program_into_env(udev, import);
1153                 } else if (rule->import_type == IMPORT_FILE) {
1154                         dbg("import file import='%s'", import);
1155                         rc = import_file_into_env(udev, import);
1156                 } else if (rule->import_type == IMPORT_PARENT) {
1157                         dbg("import parent import='%s'", import);
1158                         rc = import_parent_into_env(udev, import);
1159                 }
1160                 if (rc != 0) {
1161                         dbg("IMPORT failed");
1162                         if (rule->import.operation != KEY_OP_NOMATCH)
1163                                 goto nomatch;
1164                 } else
1165                         dbg("IMPORT '%s' imported", key_val(rule, &rule->import));
1166                 dbg("IMPORT key is true");
1167         }
1168
1169         /* rule matches, if we have ENV assignments export it */
1170         for (i = 0; i < rule->env.count; i++) {
1171                 struct key_pair *pair = &rule->env.keys[i];
1172
1173                 if (pair->key.operation == KEY_OP_ASSIGN) {
1174                         char temp_value[NAME_SIZE];
1175                         const char *key_name = key_pair_name(rule, pair);
1176                         const char *value = key_val(rule, &pair->key);
1177
1178                         /* make sure we don't write to the same string we possibly read from */
1179                         strlcpy(temp_value, value, sizeof(temp_value));
1180                         udev_rules_apply_format(udev, temp_value, NAME_SIZE);
1181
1182                         if (temp_value[0] == '\0') {
1183                                 name_list_key_remove(&udev->env_list, key_name);
1184                                 unsetenv(key_name);
1185                                 info("unset ENV '%s'", key_name);
1186                         } else {
1187                                 struct name_entry *entry;
1188
1189                                 entry = name_list_key_add(&udev->env_list, key_name, temp_value);
1190                                 if (entry == NULL)
1191                                         break;
1192                                 putenv(entry->name);
1193                                 info("set ENV '%s'", entry->name);
1194                         }
1195                 }
1196         }
1197
1198         /* if we have ATTR assignments, write value to sysfs file */
1199         for (i = 0; i < rule->attr.count; i++) {
1200                 struct key_pair *pair = &rule->attr.keys[i];
1201
1202                 if (pair->key.operation == KEY_OP_ASSIGN) {
1203                         const char *key_name = key_pair_name(rule, pair);
1204                         char devpath[PATH_SIZE];
1205                         char *attrib;
1206                         char attr[PATH_SIZE] = "";
1207                         char value[NAME_SIZE];
1208                         FILE *f;
1209
1210                         if (attr_get_by_subsys_id(key_name, devpath, sizeof(devpath), &attrib)) {
1211                                 if (attrib != NULL) {
1212                                         strlcpy(attr, sysfs_path, sizeof(attr));
1213                                         strlcat(attr, devpath, sizeof(attr));
1214                                         strlcat(attr, "/", sizeof(attr));
1215                                         strlcat(attr, attrib, sizeof(attr));
1216                                 }
1217                         }
1218
1219                         if (attr[0] == '\0') {
1220                                 strlcpy(attr, sysfs_path, sizeof(attr));
1221                                 strlcat(attr, udev->dev->devpath, sizeof(attr));
1222                                 strlcat(attr, "/", sizeof(attr));
1223                                 strlcat(attr, key_name, sizeof(attr));
1224                         }
1225
1226                         strlcpy(value, key_val(rule, &pair->key), sizeof(value));
1227                         udev_rules_apply_format(udev, value, sizeof(value));
1228                         info("writing '%s' to sysfs file '%s'", value, attr);
1229                         f = fopen(attr, "w");
1230                         if (f != NULL) {
1231                                 if (!udev->test_run)
1232                                         if (fprintf(f, "%s", value) <= 0)
1233                                                 err("error writing ATTR{%s}: %s", attr, strerror(errno));
1234                                 fclose(f);
1235                         } else
1236                                 err("error opening ATTR{%s} for writing: %s", attr, strerror(errno));
1237                 }
1238         }
1239         return 0;
1240
1241 nomatch:
1242         return -1;
1243 }
1244
1245 int udev_rules_get_name(struct udev_rules *rules, struct udevice *udev)
1246 {
1247         struct udev_rule *rule;
1248         int name_set = 0;
1249
1250         dbg("udev->dev->devpath='%s'", udev->dev->devpath);
1251         dbg("udev->dev->kernel='%s'", udev->dev->kernel);
1252
1253         /* look for a matching rule to apply */
1254         udev_rules_iter_init(rules);
1255         while (1) {
1256                 rule = udev_rules_iter_next(rules);
1257                 if (rule == NULL)
1258                         break;
1259
1260                 if (name_set &&
1261                     (rule->name.operation == KEY_OP_ASSIGN ||
1262                      rule->name.operation == KEY_OP_ASSIGN_FINAL ||
1263                      rule->name.operation == KEY_OP_ADD)) {
1264                         dbg("node name already set, rule ignored");
1265                         continue;
1266                 }
1267
1268                 dbg("process rule");
1269                 if (match_rule(udev, rule) == 0) {
1270                         /* apply options */
1271                         if (rule->ignore_device) {
1272                                 info("rule applied, '%s' is ignored", udev->dev->kernel);
1273                                 udev->ignore_device = 1;
1274                                 return 0;
1275                         }
1276                         if (rule->ignore_remove) {
1277                                 udev->ignore_remove = 1;
1278                                 dbg("remove event should be ignored");
1279                         }
1280                         if (rule->link_priority != 0) {
1281                                 udev->link_priority = rule->link_priority;
1282                                 info("link_priority=%i", udev->link_priority);
1283                         }
1284                         /* apply all_partitions option only at a main block device */
1285                         if (rule->partitions &&
1286                             strcmp(udev->dev->subsystem, "block") == 0 && udev->dev->kernel_number[0] == '\0') {
1287                                 udev->partitions = rule->partitions;
1288                                 dbg("creation of partition nodes requested");
1289                         }
1290
1291                         /* apply permissions */
1292                         if (!udev->mode_final && rule->mode != 0000) {
1293                                 if (rule->mode_operation == KEY_OP_ASSIGN_FINAL)
1294                                         udev->mode_final = 1;
1295                                 udev->mode = rule->mode;
1296                                 dbg("applied mode=%#o to '%s'", rule->mode, udev->dev->kernel);
1297                         }
1298                         if (!udev->owner_final && rule->owner.operation != KEY_OP_UNSET) {
1299                                 if (rule->owner.operation == KEY_OP_ASSIGN_FINAL)
1300                                         udev->owner_final = 1;
1301                                 strlcpy(udev->owner, key_val(rule, &rule->owner), sizeof(udev->owner));
1302                                 udev_rules_apply_format(udev, udev->owner, sizeof(udev->owner));
1303                                 dbg("applied owner='%s' to '%s'", udev->owner, udev->dev->kernel);
1304                         }
1305                         if (!udev->group_final && rule->group.operation != KEY_OP_UNSET) {
1306                                 if (rule->group.operation == KEY_OP_ASSIGN_FINAL)
1307                                         udev->group_final = 1;
1308                                 strlcpy(udev->group, key_val(rule, &rule->group), sizeof(udev->group));
1309                                 udev_rules_apply_format(udev, udev->group, sizeof(udev->group));
1310                                 dbg("applied group='%s' to '%s'", udev->group, udev->dev->kernel);
1311                         }
1312
1313                         /* collect symlinks */
1314                         if (!udev->symlink_final && rule->symlink.operation != KEY_OP_UNSET) {
1315                                 char temp[PATH_SIZE];
1316                                 char *pos, *next;
1317                                 int count;
1318
1319                                 if (rule->symlink.operation == KEY_OP_ASSIGN_FINAL)
1320                                         udev->symlink_final = 1;
1321                                 if (rule->symlink.operation == KEY_OP_ASSIGN || rule->symlink.operation == KEY_OP_ASSIGN_FINAL) {
1322                                         info("reset symlink list");
1323                                         name_list_cleanup(&udev->symlink_list);
1324                                 }
1325                                 /* allow  multiple symlinks separated by spaces */
1326                                 strlcpy(temp, key_val(rule, &rule->symlink), sizeof(temp));
1327                                 udev_rules_apply_format(udev, temp, sizeof(temp));
1328                                 if (rule->string_escape == ESCAPE_UNSET ||
1329                                     rule->string_escape == ESCAPE_REPLACE) {
1330                                         count = replace_chars(temp, ALLOWED_CHARS_FILE " ");
1331                                         if (count > 0)
1332                                                 info("%i character(s) replaced" , count);
1333                                 }
1334                                 dbg("rule applied, added symlink(s) '%s'", temp);
1335                                 pos = temp;
1336                                 while (isspace(pos[0]))
1337                                         pos++;
1338                                 next = strchr(pos, ' ');
1339                                 while (next) {
1340                                         next[0] = '\0';
1341                                         info("add symlink '%s'", pos);
1342                                         name_list_add(&udev->symlink_list, pos, 0);
1343                                         while (isspace(next[1]))
1344                                                 next++;
1345                                         pos = &next[1];
1346                                         next = strchr(pos, ' ');
1347                                 }
1348                                 if (pos[0] != '\0') {
1349                                         info("add symlink '%s'", pos);
1350                                         name_list_add(&udev->symlink_list, pos, 0);
1351                                 }
1352                         }
1353
1354                         /* set name, later rules with name set will be ignored */
1355                         if (rule->name.operation == KEY_OP_ASSIGN ||
1356                             rule->name.operation == KEY_OP_ASSIGN_FINAL ||
1357                             rule->name.operation == KEY_OP_ADD) {
1358                                 int count;
1359
1360                                 name_set = 1;
1361                                 strlcpy(udev->name, key_val(rule, &rule->name), sizeof(udev->name));
1362                                 udev_rules_apply_format(udev, udev->name, sizeof(udev->name));
1363                                 if (rule->string_escape == ESCAPE_UNSET ||
1364                                     rule->string_escape == ESCAPE_REPLACE) {
1365                                         count = replace_chars(udev->name, ALLOWED_CHARS_FILE);
1366                                         if (count > 0)
1367                                                 info("%i character(s) replaced", count);
1368                                 }
1369
1370                                 info("rule applied, '%s' becomes '%s'", udev->dev->kernel, udev->name);
1371                                 if (strcmp(udev->dev->subsystem, "net") != 0)
1372                                         dbg("name, '%s' is going to have owner='%s', group='%s', mode=%#o partitions=%i",
1373                                             udev->name, udev->owner, udev->group, udev->mode, udev->partitions);
1374                         }
1375
1376                         if (!udev->run_final && rule->run.operation != KEY_OP_UNSET) {
1377                                 struct name_entry *entry;
1378
1379                                 if (rule->run.operation == KEY_OP_ASSIGN_FINAL)
1380                                         udev->run_final = 1;
1381                                 if (rule->run.operation == KEY_OP_ASSIGN || rule->run.operation == KEY_OP_ASSIGN_FINAL) {
1382                                         info("reset run list");
1383                                         name_list_cleanup(&udev->run_list);
1384                                 }
1385                                 dbg("add run '%s'", key_val(rule, &rule->run));
1386                                 entry = name_list_add(&udev->run_list, key_val(rule, &rule->run), 0);
1387                                 if (rule->run_ignore_error)
1388                                         entry->ignore_error = 1;
1389                         }
1390
1391                         if (rule->last_rule) {
1392                                 dbg("last rule to be applied");
1393                                 break;
1394                         }
1395
1396                         if (rule->goto_label.operation != KEY_OP_UNSET) {
1397                                 dbg("moving forward to label '%s'", key_val(rule, &rule->goto_label));
1398                                 udev_rules_iter_label(rules, key_val(rule, &rule->goto_label));
1399                         }
1400                 }
1401         }
1402
1403         if (!name_set) {
1404                 strlcpy(udev->name, udev->dev->kernel, sizeof(udev->name));
1405                 info("no node name set, will use kernel name '%s'", udev->name);
1406         }
1407
1408         if (udev->tmp_node[0] != '\0') {
1409                 dbg("removing temporary device node");
1410                 unlink_secure(udev->tmp_node);
1411                 udev->tmp_node[0] = '\0';
1412         }
1413
1414         return 0;
1415 }
1416
1417 int udev_rules_get_run(struct udev_rules *rules, struct udevice *udev)
1418 {
1419         struct udev_rule *rule;
1420
1421         dbg("udev->kernel='%s'", udev->dev->kernel);
1422
1423         /* look for a matching rule to apply */
1424         udev_rules_iter_init(rules);
1425         while (1) {
1426                 rule = udev_rules_iter_next(rules);
1427                 if (rule == NULL)
1428                         break;
1429
1430                 dbg("process rule");
1431                 if (rule->name.operation != KEY_OP_UNSET || rule->symlink.operation != KEY_OP_UNSET ||
1432                     rule->mode_operation != KEY_OP_UNSET || rule->owner.operation != KEY_OP_UNSET ||
1433                     rule->group.operation != KEY_OP_UNSET) {
1434                         dbg("skip rule that names a device");
1435                         continue;
1436                 }
1437
1438                 if (match_rule(udev, rule) == 0) {
1439                         if (rule->ignore_device) {
1440                                 info("rule applied, '%s' is ignored", udev->dev->kernel);
1441                                 udev->ignore_device = 1;
1442                                 return 0;
1443                         }
1444
1445                         if (!udev->run_final && rule->run.operation != KEY_OP_UNSET) {
1446                                 struct name_entry *entry;
1447
1448                                 if (rule->run.operation == KEY_OP_ASSIGN ||
1449                                     rule->run.operation == KEY_OP_ASSIGN_FINAL) {
1450                                         info("reset run list");
1451                                         name_list_cleanup(&udev->run_list);
1452                                 }
1453                                 dbg("add run '%s'", key_val(rule, &rule->run));
1454                                 entry = name_list_add(&udev->run_list, key_val(rule, &rule->run), 0);
1455                                 if (rule->run_ignore_error)
1456                                         entry->ignore_error = 1;
1457                                 if (rule->run.operation == KEY_OP_ASSIGN_FINAL)
1458                                         break;
1459                         }
1460
1461                         if (rule->last_rule) {
1462                                 dbg("last rule to be applied");
1463                                 break;
1464                         }
1465
1466                         if (rule->goto_label.operation != KEY_OP_UNSET) {
1467                                 dbg("moving forward to label '%s'", key_val(rule, &rule->goto_label));
1468                                 udev_rules_iter_label(rules, key_val(rule, &rule->goto_label));
1469                         }
1470                 }
1471         }
1472
1473         return 0;
1474 }