chiark / gitweb /
631cc4270ab019c7fa490258d76475f7b640c85a
[elogind.git] / udev_rules.c
1 /*
2  * udev_rules.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  * Copyright (C) 2003-2005 Kay Sievers <kay.sievers@vrfy.org>
8  *
9  *
10  *      This program is free software; you can redistribute it and/or modify it
11  *      under the terms of the GNU General Public License as published by the
12  *      Free Software Foundation version 2 of the License.
13  * 
14  *      This program is distributed in the hope that it will be useful, but
15  *      WITHOUT ANY WARRANTY; without even the implied warranty of
16  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  *      General Public License for more details.
18  * 
19  *      You should have received a copy of the GNU General Public License along
20  *      with this program; if not, write to the Free Software Foundation, Inc.,
21  *      675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  */
24
25 #include <stddef.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <fcntl.h>
30 #include <ctype.h>
31 #include <unistd.h>
32 #include <errno.h>
33 #include <sys/wait.h>
34
35 #include "libsysfs/sysfs/libsysfs.h"
36 #include "list.h"
37 #include "udev_libc_wrapper.h"
38 #include "udev.h"
39 #include "udev_utils.h"
40 #include "udev_version.h"
41 #include "logging.h"
42 #include "udev_rules.h"
43 #include "udev_db.h"
44
45
46 /* compare string with pattern (supports * ? [0-9] [!A-Z]) */
47 static int strcmp_pattern(const char *p, const char *s)
48 {
49         if (s[0] == '\0') {
50                 while (p[0] == '*')
51                         p++;
52                 return (p[0] != '\0');
53         }
54         switch (p[0]) {
55         case '[':
56                 {
57                         int not = 0;
58                         p++;
59                         if (p[0] == '!') {
60                                 not = 1;
61                                 p++;
62                         }
63                         while ((p[0] != '\0') && (p[0] != ']')) {
64                                 int match = 0;
65                                 if (p[1] == '-') {
66                                         if ((s[0] >= p[0]) && (s[0] <= p[2]))
67                                                 match = 1;
68                                         p += 3;
69                                 } else {
70                                         match = (p[0] == s[0]);
71                                         p++;
72                                 }
73                                 if (match ^ not) {
74                                         while ((p[0] != '\0') && (p[0] != ']'))
75                                                 p++;
76                                         if (p[0] == ']')
77                                                 return strcmp_pattern(p+1, s+1);
78                                 }
79                         }
80                 }
81                 break;
82         case '*':
83                 if (strcmp_pattern(p, s+1))
84                         return strcmp_pattern(p+1, s);
85                 return 0;
86         case '\0':
87                 if (s[0] == '\0') {
88                         return 0;
89                 }
90                 break;
91         default:
92                 if ((p[0] == s[0]) || (p[0] == '?'))
93                         return strcmp_pattern(p+1, s+1);
94                 break;
95         }
96         return 1;
97 }
98
99 /* extract possible {attr} and move str behind it */
100 static char *get_format_attribute(char **str)
101 {
102         char *pos;
103         char *attr = NULL;
104
105         if (*str[0] == '{') {
106                 pos = strchr(*str, '}');
107                 if (pos == NULL) {
108                         err("missing closing brace for format");
109                         return NULL;
110                 }
111                 pos[0] = '\0';
112                 attr = *str+1;
113                 *str = pos+1;
114                 dbg("attribute='%s', str='%s'", attr, *str);
115         }
116         return attr;
117 }
118
119 /* extract possible format length and move str behind it*/
120 static int get_format_len(char **str)
121 {
122         int num;
123         char *tail;
124
125         if (isdigit(*str[0])) {
126                 num = (int) strtoul(*str, &tail, 10);
127                 if (num > 0) {
128                         *str = tail;
129                         dbg("format length=%i", num);
130                         return num;
131                 } else {
132                         err("format parsing error '%s'", *str);
133                 }
134         }
135         return -1;
136 }
137
138 /** Finds the lowest positive N such that <name>N isn't present in 
139  *  $(udevroot) either as a file or a symlink.
140  *
141  *  @param  name                Name to check for
142  *  @return                     0 if <name> didn't exist and N otherwise.
143  */
144 static int find_free_number(struct udevice *udev, const char *name)
145 {
146         char devpath[PATH_SIZE];
147         char filename[PATH_SIZE];
148         int num = 0;
149
150         strlcpy(filename, name, sizeof(filename));
151         while (1) {
152                 dbg("look for existing node '%s'", filename);
153                 if (udev_db_search_name(devpath, sizeof(devpath), filename) != 0) {
154                         dbg("free num=%d", num);
155                         return num;
156                 }
157
158                 num++;
159                 if (num > 1000) {
160                         info("find_free_number gone crazy (num=%d), aborted", num);
161                         return -1;
162                 }
163                 snprintf(filename, sizeof(filename), "%s%d", name, num);
164                 filename[sizeof(filename)-1] = '\0';
165         }
166 }
167
168 static int find_sysfs_attribute(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device,
169                                 const char *name, char *value, size_t len)
170 {
171         struct sysfs_attribute *tmpattr;
172
173         dbg("look for device attribute '%s'", name);
174         if (class_dev) {
175                 tmpattr = sysfs_get_classdev_attr(class_dev, name);
176                 if (tmpattr)
177                         goto attr_found;
178         }
179         if (sysfs_device) {
180                 tmpattr = sysfs_get_device_attr(sysfs_device, name);
181                 if (tmpattr)
182                         goto attr_found;
183         }
184
185         return -1;
186
187 attr_found:
188         strlcpy(value, tmpattr->value, len);
189         remove_trailing_char(value, '\n');
190
191         dbg("found attribute '%s'", tmpattr->path);
192         return 0;
193 }
194
195 static void apply_format(struct udevice *udev, char *string, size_t maxsize,
196                          struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device)
197 {
198         char temp[PATH_SIZE];
199         char temp2[PATH_SIZE];
200         char *tail, *pos, *cpos, *attr, *rest;
201         int len;
202         int i;
203         char c;
204         unsigned int next_free_number;
205         struct sysfs_class_device *class_dev_parent;
206
207         pos = string;
208         while (1) {
209                 pos = strchr(pos, '%');
210                 if (pos == NULL)
211                         break;
212
213                 pos[0] = '\0';
214                 tail = pos+1;
215                 len = get_format_len(&tail);
216                 c = tail[0];
217                 strlcpy(temp, tail+1, sizeof(temp));
218                 tail = temp;
219                 dbg("format=%c, string='%s', tail='%s'",c , string, tail);
220                 attr = get_format_attribute(&tail);
221
222                 switch (c) {
223                 case 'p':
224                         strlcat(string, udev->devpath, maxsize);
225                         dbg("substitute kernel name '%s'", udev->kernel_name);
226                         break;
227                 case 'b':
228                         strlcat(string, udev->bus_id, maxsize);
229                         dbg("substitute bus_id '%s'", udev->bus_id);
230                         break;
231                 case 'k':
232                         strlcat(string, udev->kernel_name, maxsize);
233                         dbg("substitute kernel name '%s'", udev->kernel_name);
234                         break;
235                 case 'n':
236                         strlcat(string, udev->kernel_number, maxsize);
237                         dbg("substitute kernel number '%s'", udev->kernel_number);
238                                 break;
239                 case 'm':
240                         sprintf(temp2, "%d", minor(udev->devt));
241                         strlcat(string, temp2, maxsize);
242                         dbg("substitute minor number '%s'", temp2);
243                         break;
244                 case 'M':
245                         sprintf(temp2, "%d", major(udev->devt));
246                         strlcat(string, temp2, maxsize);
247                         dbg("substitute major number '%s'", temp2);
248                         break;
249                 case 'c':
250                         if (udev->program_result[0] == '\0')
251                                 break;
252                         /* get part part of the result string */
253                         i = 0;
254                         if (attr != NULL)
255                                 i = strtoul(attr, &rest, 10);
256                         if (i > 0) {
257                                 dbg("request part #%d of result string", i);
258                                 cpos = udev->program_result;
259                                 while (--i) {
260                                         while (cpos[0] != '\0' && !isspace(cpos[0]))
261                                                 cpos++;
262                                         while (isspace(cpos[0]))
263                                                 cpos++;
264                                 }
265                                 if (i > 0) {
266                                         err("requested part of result string not found");
267                                         break;
268                                 }
269                                 strlcpy(temp2, cpos, sizeof(temp2));
270                                 /* %{2+}c copies the whole string from the second part on */
271                                 if (rest[0] != '+') {
272                                         cpos = strchr(temp2, ' ');
273                                         if (cpos)
274                                                 cpos[0] = '\0';
275                                 }
276                                 strlcat(string, temp2, maxsize);
277                                 dbg("substitute part of result string '%s'", temp2);
278                         } else {
279                                 strlcat(string, udev->program_result, maxsize);
280                                 dbg("substitute result string '%s'", udev->program_result);
281                         }
282                         break;
283                 case 's':
284                         if (attr == NULL) {
285                                 dbg("missing attribute");
286                                 break;
287                         }
288                         if (find_sysfs_attribute(class_dev, sysfs_device, attr, temp2, sizeof(temp2)) != 0) {
289                                 struct sysfs_device *parent_device;
290
291                                 dbg("sysfs attribute '%s' not found, walk up the physical devices", attr);
292                                 parent_device = sysfs_get_device_parent(sysfs_device);
293                                 while (parent_device) {
294                                         dbg("looking at '%s'", parent_device->path);
295                                         if (find_sysfs_attribute(NULL, parent_device, attr, temp2, sizeof(temp2)) == 0)
296                                                 break;
297                                         parent_device = sysfs_get_device_parent(parent_device);
298                                 }
299                                 if (!parent_device)
300                                         break;
301                         }
302                         /* strip trailing whitespace of sysfs value */
303                         i = strlen(temp2);
304                         while (i > 0 && isspace(temp2[i-1]))
305                                 temp2[--i] = '\0';
306                         replace_untrusted_chars(temp2);
307                         strlcat(string, temp2, maxsize);
308                         dbg("substitute sysfs value '%s'", temp2);
309                         break;
310                 case '%':
311                         strlcat(string, "%", maxsize);
312                         pos++;
313                         break;
314                 case 'e':
315                         next_free_number = find_free_number(udev, string);
316                         if (next_free_number > 0) {
317                                 sprintf(temp2, "%d", next_free_number);
318                                 strlcat(string, temp2, maxsize);
319                         }
320                         break;
321                 case 'P':
322                         if (!class_dev)
323                                 break;
324                         class_dev_parent = sysfs_get_classdev_parent(class_dev);
325                         if (class_dev_parent != NULL) {
326                                 struct udevice udev_parent;
327
328                                 dbg("found parent '%s', get the node name", class_dev_parent->path);
329                                 udev_init_device(&udev_parent, NULL, NULL, NULL);
330                                 /* lookup the name in the udev_db with the DEVPATH of the parent */
331                                 if (udev_db_get_device(&udev_parent, &class_dev_parent->path[strlen(sysfs_path)]) == 0) {
332                                         strlcat(string, udev_parent.name, maxsize);
333                                         dbg("substitute parent node name'%s'", udev_parent.name);
334                                 } else
335                                         dbg("parent not found in database");
336                                 udev_cleanup_device(&udev_parent);
337                         }
338                         break;
339                 case 'N':
340                         if (udev->tmp_node[0] == '\0') {
341                                 dbg("create temporary device node for callout");
342                                 snprintf(udev->tmp_node, sizeof(udev->tmp_node), "%s/.tmp-%u-%u",
343                                          udev_root, major(udev->devt), minor(udev->devt));
344                                 udev->tmp_node[sizeof(udev->tmp_node)-1] = '\0';
345                                 udev_make_node(udev, udev->tmp_node, udev->devt, 0600, 0, 0);
346                         }
347                         strlcat(string, udev->tmp_node, maxsize);
348                         dbg("substitute temporary device node name '%s'", udev->tmp_node);
349                         break;
350                 case 'r':
351                         strlcat(string, udev_root, maxsize);
352                         dbg("substitute udev_root '%s'", udev_root);
353                         break;
354                 default:
355                         err("unknown substitution type '%%%c'", c);
356                         break;
357                 }
358                 /* truncate to specified length */
359                 if (len > 0)
360                         pos[len] = '\0';
361
362                 strlcat(string, tail, maxsize);
363         }
364 }
365
366 static int execute_program_pipe(const char *command, const char *subsystem, char *value, int len)
367 {
368         int retval;
369         int count;
370         int status;
371         int pipefds[2];
372         pid_t pid;
373         char *pos;
374         char arg[PATH_SIZE];
375         char *argv[(sizeof(arg) / 2) + 1];
376         int devnull;
377         int i;
378
379         strlcpy(arg, command, sizeof(arg));
380         i = 0;
381         if (strchr(arg, ' ')) {
382                 pos = arg;
383                 while (pos != NULL) {
384                         if (pos[0] == '\'') {
385                                 /* don't separate if in apostrophes */
386                                 pos++;
387                                 argv[i] = strsep(&pos, "\'");
388                                 while (pos && pos[0] == ' ')
389                                         pos++;
390                         } else {
391                                 argv[i] = strsep(&pos, " ");
392                         }
393                         dbg("arg[%i] '%s'", i, argv[i]);
394                         i++;
395                 }
396                 argv[i] =  NULL;
397                 dbg("execute '%s' with parsed arguments", arg);
398         } else {
399                 argv[0] = arg;
400                 argv[1] = (char *) subsystem;
401                 argv[2] = NULL;
402                 dbg("execute '%s' with subsystem '%s' argument", arg, argv[1]);
403         }
404
405         retval = pipe(pipefds);
406         if (retval != 0) {
407                 err("pipe failed");
408                 return -1;
409         }
410
411         pid = fork();
412         switch(pid) {
413         case 0:
414                 /* child dup2 write side of pipe to STDOUT */
415                 devnull = open("/dev/null", O_RDWR);
416                 if (devnull >= 0) {
417                         dup2(devnull, STDIN_FILENO);
418                         dup2(devnull, STDERR_FILENO);
419                         close(devnull);
420                 }
421                 dup2(pipefds[1], STDOUT_FILENO);
422                 retval = execv(arg, argv);
423                 err("exec of program failed");
424                 _exit(1);
425         case -1:
426                 err("fork of '%s' failed", arg);
427                 retval = -1;
428                 break;
429         default:
430                 /* parent reads from pipefds[0] */
431                 close(pipefds[1]);
432                 retval = 0;
433                 i = 0;
434                 while (1) {
435                         count = read(pipefds[0], value + i, len - i-1);
436                         if (count < 0) {
437                                 err("read failed with '%s'", strerror(errno));
438                                 retval = -1;
439                         }
440
441                         if (count == 0)
442                                 break;
443
444                         i += count;
445                         if (i >= len-1) {
446                                 err("result len %d too short", len);
447                                 retval = -1;
448                                 break;
449                         }
450                 }
451                 value[i] = '\0';
452
453                 close(pipefds[0]);
454                 waitpid(pid, &status, 0);
455
456                 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
457                         dbg("exec program status 0x%x", status);
458                         retval = -1;
459                 }
460         }
461
462         if (!retval) {
463                 remove_trailing_char(value, '\n');
464                 dbg("result is '%s'", value);
465                 replace_untrusted_chars(value);
466         } else
467                 value[0] = '\0';
468
469         return retval;
470 }
471
472 static int match_rule(struct udevice *udev, struct udev_rule *rule,
473                       struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device)
474 {
475         struct sysfs_device *parent_device = sysfs_device;
476
477         if (rule->action_operation != KEY_OP_UNSET) {
478                 dbg("check for " KEY_ACTION " rule->action='%s' udev->action='%s'",
479                     rule->action, udev->action);
480                 if (strcmp_pattern(rule->action, udev->action) != 0) {
481                         dbg(KEY_ACTION " is not matching");
482                         if (rule->action_operation != KEY_OP_NOMATCH)
483                                 goto exit;
484                 } else {
485                         dbg(KEY_ACTION " matches");
486                         if (rule->action_operation == KEY_OP_NOMATCH)
487                                 goto exit;
488                 }
489                 dbg(KEY_ACTION " key is true");
490         }
491
492         if (rule->kernel_operation != KEY_OP_UNSET) {
493                 dbg("check for " KEY_KERNEL " rule->kernel='%s' udev_kernel_name='%s'",
494                     rule->kernel, udev->kernel_name);
495                 if (strcmp_pattern(rule->kernel, udev->kernel_name) != 0) {
496                         dbg(KEY_KERNEL " is not matching");
497                         if (rule->kernel_operation != KEY_OP_NOMATCH)
498                                 goto exit;
499                 } else {
500                         dbg(KEY_KERNEL " matches");
501                         if (rule->kernel_operation == KEY_OP_NOMATCH)
502                                 goto exit;
503                 }
504                 dbg(KEY_KERNEL " key is true");
505         }
506
507         if (rule->subsystem_operation != KEY_OP_UNSET) {
508                 dbg("check for " KEY_SUBSYSTEM " rule->subsystem='%s' udev->subsystem='%s'",
509                     rule->subsystem, udev->subsystem);
510                 if (strcmp_pattern(rule->subsystem, udev->subsystem) != 0) {
511                         dbg(KEY_SUBSYSTEM " is not matching");
512                         if (rule->subsystem_operation != KEY_OP_NOMATCH)
513                                 goto exit;
514                 } else {
515                         dbg(KEY_SUBSYSTEM " matches");
516                         if (rule->subsystem_operation == KEY_OP_NOMATCH)
517                                 goto exit;
518                 }
519                 dbg(KEY_SUBSYSTEM " key is true");
520         }
521
522         if (rule->env_pair_count) {
523                 int i;
524
525                 dbg("check for " KEY_ENV " pairs");
526                 for (i = 0; i < rule->env_pair_count; i++) {
527                         struct key_pair *pair;
528                         const char *value;
529
530                         pair = &rule->env_pair[i];
531                         value = getenv(pair->name);
532                         if (!value) {
533                                 dbg(KEY_ENV "{'%s'} is not found", pair->name);
534                                 goto exit;
535                         }
536                         if (strcmp_pattern(pair->value, value) != 0) {
537                                 dbg(KEY_ENV "{'%s'} is not matching", pair->name);
538                                 if (pair->operation != KEY_OP_NOMATCH)
539                                         goto exit;
540                         } else {
541                                 dbg(KEY_ENV "{'%s'} matches", pair->name);
542                                 if (pair->operation == KEY_OP_NOMATCH)
543                                         goto exit;
544                         }
545                 }
546                 dbg(KEY_ENV " key is true");
547         }
548
549         /* walk up the chain of physical devices and find a match */
550         while (1) {
551                 /* check for matching driver */
552                 if (rule->driver_operation != KEY_OP_UNSET) {
553                         if (parent_device == NULL) {
554                                 dbg("device has no sysfs_device");
555                                 goto exit;
556                         }
557                         dbg("check for " KEY_DRIVER " rule->driver='%s' sysfs_device->driver_name='%s'",
558                             rule->driver, parent_device->driver_name);
559                         if (strcmp_pattern(rule->driver, parent_device->driver_name) != 0) {
560                                 dbg(KEY_DRIVER " is not matching");
561                                 if (rule->driver_operation != KEY_OP_NOMATCH)
562                                         goto try_parent;
563                         } else {
564                                 dbg(KEY_DRIVER " matches");
565                                 if (rule->driver_operation == KEY_OP_NOMATCH)
566                                         goto try_parent;
567                         }
568                         dbg(KEY_DRIVER " key is true");
569                 }
570
571                 /* check for matching bus value */
572                 if (rule->bus_operation != KEY_OP_UNSET) {
573                         if (parent_device == NULL) {
574                                 dbg("device has no sysfs_device");
575                                 goto exit;
576                         }
577                         dbg("check for " KEY_BUS " rule->bus='%s' sysfs_device->bus='%s'",
578                             rule->bus, parent_device->bus);
579                         if (strcmp_pattern(rule->bus, parent_device->bus) != 0) {
580                                 dbg(KEY_BUS " is not matching");
581                                 if (rule->bus_operation != KEY_OP_NOMATCH)
582                                         goto try_parent;
583                         } else {
584                                 dbg(KEY_BUS " matches");
585                                 if (rule->bus_operation == KEY_OP_NOMATCH)
586                                         goto try_parent;
587                         }
588                         dbg(KEY_BUS " key is true");
589                 }
590
591                 /* check for matching bus id */
592                 if (rule->id_operation != KEY_OP_UNSET) {
593                         if (parent_device == NULL) {
594                                 dbg("device has no sysfs_device");
595                                 goto exit;
596                         }
597                         dbg("check " KEY_ID);
598                         if (strcmp_pattern(rule->id, parent_device->bus_id) != 0) {
599                                 dbg(KEY_ID " is not matching");
600                                 if (rule->id_operation != KEY_OP_NOMATCH)
601                                         goto try_parent;
602                         } else {
603                                 dbg(KEY_ID " matches");
604                                 if (rule->id_operation == KEY_OP_NOMATCH)
605                                         goto try_parent;
606                         }
607                         dbg(KEY_ID " key is true");
608                 }
609
610                 /* check for matching sysfs pairs */
611                 if (rule->sysfs_pair_count) {
612                         int i;
613
614                         dbg("check " KEY_SYSFS " pairs");
615                         for (i = 0; i < rule->sysfs_pair_count; i++) {
616                                 struct key_pair *pair;
617                                 char value[VALUE_SIZE];
618                                 size_t len;
619
620                                 pair = &rule->sysfs_pair[i];
621                                 if (find_sysfs_attribute(class_dev, parent_device, pair->name, value, sizeof(value)) != 0)
622                                         goto try_parent;
623
624                                 /* strip trailing whitespace of value, if not asked to match for it */
625                                 len = strlen(pair->value);
626                                 if (len && !isspace(pair->value[len-1])) {
627                                         len = strlen(value);
628                                         while (len > 0 && isspace(value[len-1]))
629                                                 value[--len] = '\0';
630                                         dbg("removed %i trailing whitespace chars from '%s'", strlen(value)-len, value);
631                                 }
632
633                                 dbg("compare attribute '%s' value '%s' with '%s'", pair->name, value, pair->value);
634                                 if (strcmp_pattern(pair->value, value) != 0) {
635                                         dbg(KEY_SYSFS "{'%s'} is not matching", pair->name);
636                                         if (pair->operation != KEY_OP_NOMATCH)
637                                                 goto try_parent;
638                                 } else {
639                                         dbg(KEY_SYSFS "{'%s'} matches", pair->name);
640                                         if (pair->operation == KEY_OP_NOMATCH)
641                                                 goto try_parent;
642                                 }
643                         }
644                         dbg(KEY_SYSFS " keys are true");
645                 }
646
647                 /* found matching physical device  */
648                 break;
649 try_parent:
650                 dbg("try parent sysfs device");
651                 parent_device = sysfs_get_device_parent(parent_device);
652                 if (parent_device == NULL)
653                         goto exit;
654                 dbg("look at sysfs_device->path='%s'", parent_device->path);
655                 dbg("look at sysfs_device->bus_id='%s'", parent_device->bus_id);
656         }
657
658         /* execute external program */
659         if (rule->program_operation != KEY_OP_UNSET) {
660                 char program[PATH_SIZE];
661
662                 dbg("check " KEY_PROGRAM);
663                 strlcpy(program, rule->program, sizeof(program));
664                 apply_format(udev, program, sizeof(program), class_dev, sysfs_device);
665                 if (execute_program_pipe(program, udev->subsystem,
666                                          udev->program_result, sizeof(udev->program_result)) != 0) {
667                         dbg(KEY_PROGRAM " returned nonzero");
668                         if (rule->program_operation != KEY_OP_NOMATCH)
669                                 goto exit;
670                 } else {
671                         dbg(KEY_PROGRAM " returned successful");
672                         if (rule->program_operation == KEY_OP_NOMATCH)
673                                 goto exit;
674                 }
675                 dbg(KEY_PROGRAM " key is true");
676         }
677
678         /* check for matching result of external program */
679         if (rule->result_operation != KEY_OP_UNSET) {
680                 dbg("check for " KEY_RESULT " rule->result='%s', udev->program_result='%s'",
681                    rule->result, udev->program_result);
682                 if (strcmp_pattern(rule->result, udev->program_result) != 0) {
683                         dbg(KEY_RESULT " is not matching");
684                         if (rule->result_operation != KEY_OP_NOMATCH)
685                                 goto exit;
686                 } else {
687                         dbg(KEY_RESULT " matches");
688                         if (rule->result_operation == KEY_OP_NOMATCH)
689                                 goto exit;
690                 }
691                 dbg(KEY_RESULT " key is true");
692         }
693
694         /* rule matches */
695         return 0;
696
697 exit:
698         return -1;
699 }
700
701 int udev_rules_get_name(struct udevice *udev, struct sysfs_class_device *class_dev)
702 {
703         struct sysfs_class_device *class_dev_parent;
704         struct sysfs_device *sysfs_device = NULL;
705         struct udev_rule *rule;
706
707         dbg("class_dev->name='%s'", class_dev->name);
708
709         /* Figure out where the "device"-symlink is at.  For char devices this will
710          * always be in the class_dev->path.  On block devices, only the main block
711          * device will have the device symlink in it's path. All partition devices
712          * need to look at the symlink in its parent directory.
713          */
714         class_dev_parent = sysfs_get_classdev_parent(class_dev);
715         if (class_dev_parent != NULL) {
716                 dbg("given class device has a parent, use this instead");
717                 sysfs_device = sysfs_get_classdev_device(class_dev_parent);
718         } else {
719                 sysfs_device = sysfs_get_classdev_device(class_dev);
720         }
721
722         if (sysfs_device) {
723                 dbg("found devices device: path='%s', bus_id='%s', bus='%s'",
724                     sysfs_device->path, sysfs_device->bus_id, sysfs_device->bus);
725                 strlcpy(udev->bus_id, sysfs_device->bus_id, sizeof(udev->bus_id));
726         }
727
728         dbg("udev->kernel_name='%s'", udev->kernel_name);
729
730         /* look for a matching rule to apply */
731         list_for_each_entry(rule, &udev_rule_list, node) {
732                 dbg("process rule");
733                 if (match_rule(udev, rule, class_dev, sysfs_device) == 0) {
734                         if (udev->name[0] != '\0' && rule->name[0] != '\0') {
735                                 dbg("node name already set, rule ignored");
736                                 continue;
737                         }
738
739                         /* apply options */
740                         if (rule->ignore_device) {
741                                 info("configured rule in '%s[%i]' applied, '%s' is ignored",
742                                      rule->config_file, rule->config_line, udev->kernel_name);
743                                 udev->ignore_device = 1;
744                                 return 0;
745                         }
746                         if (rule->ignore_remove) {
747                                 udev->ignore_remove = 1;
748                                 dbg("remove event should be ignored");
749                         }
750                         /* apply all_partitions option only at a main block device */
751                         if (rule->partitions && udev->type == DEV_BLOCK && udev->kernel_number[0] == '\0') {
752                                 udev->partitions = rule->partitions;
753                                 dbg("creation of partition nodes requested");
754                         }
755
756                         /* apply permissions */
757                         if (!udev->mode_final && rule->mode != 0000) {
758                                 if (rule->mode_operation == KEY_OP_ASSIGN_FINAL)
759                                         udev->mode_final = 1;
760                                 udev->mode = rule->mode;
761                                 dbg("applied mode=%#o to '%s'", udev->mode, udev->kernel_name);
762                         }
763                         if (!udev->owner_final && rule->owner[0] != '\0') {
764                                 if (rule->owner_operation == KEY_OP_ASSIGN_FINAL)
765                                         udev->owner_final = 1;
766                                 strlcpy(udev->owner, rule->owner, sizeof(udev->owner));
767                                 apply_format(udev, udev->owner, sizeof(udev->owner), class_dev, sysfs_device);
768                                 dbg("applied owner='%s' to '%s'", udev->owner, udev->kernel_name);
769                         }
770                         if (!udev->group_final && rule->group[0] != '\0') {
771                                 if (rule->group_operation == KEY_OP_ASSIGN_FINAL)
772                                         udev->group_final = 1;
773                                 strlcpy(udev->group, rule->group, sizeof(udev->group));
774                                 apply_format(udev, udev->group, sizeof(udev->group), class_dev, sysfs_device);
775                                 dbg("applied group='%s' to '%s'", udev->group, udev->kernel_name);
776                         }
777
778                         /* collect symlinks */
779                         if (!udev->symlink_final && rule->symlink[0] != '\0') {
780                                 char temp[PATH_SIZE];
781                                 char *pos, *next;
782
783                                 if (rule->symlink_operation == KEY_OP_ASSIGN_FINAL)
784                                         udev->symlink_final = 1;
785                                 else if (rule->symlink_operation == KEY_OP_ASSIGN) {
786                                         struct name_entry *name_loop;
787                                         struct name_entry *temp_loop;
788
789                                         list_for_each_entry_safe(name_loop, temp_loop, &udev->symlink_list, node) {
790                                                 list_del(&name_loop->node);
791                                                 free(name_loop);
792                                         }
793                                 }
794                                 info("configured rule in '%s[%i]' applied, added symlink '%s'",
795                                      rule->config_file, rule->config_line, rule->symlink);
796                                 strlcpy(temp, rule->symlink, sizeof(temp));
797                                 apply_format(udev, temp, sizeof(temp), class_dev, sysfs_device);
798
799                                 /* add multiple symlinks separated by spaces */
800                                 pos = temp;
801                                 next = strchr(temp, ' ');
802                                 while (next) {
803                                         next[0] = '\0';
804                                         info("add symlink '%s'", pos);
805                                         name_list_add(&udev->symlink_list, pos, 0);
806                                         pos = &next[1];
807                                         next = strchr(pos, ' ');
808                                 }
809                                 info("add symlink '%s'", pos);
810                                 name_list_add(&udev->symlink_list, pos, 0);
811                         }
812
813                         /* set name, later rules with name set will be ignored */
814                         if (rule->name[0] != '\0') {
815                                 info("configured rule in '%s[%i]' applied, '%s' becomes '%s'",
816                                      rule->config_file, rule->config_line, udev->kernel_name, rule->name);
817
818                                 strlcpy(udev->name, rule->name, sizeof(udev->name));
819                                 apply_format(udev, udev->name, sizeof(udev->name), class_dev, sysfs_device);
820                                 strlcpy(udev->config_file, rule->config_file, sizeof(udev->config_file));
821                                 udev->config_line = rule->config_line;
822
823                                 if (udev->type != DEV_NET)
824                                         dbg("name, '%s' is going to have owner='%s', group='%s', mode=%#o partitions=%i",
825                                             udev->name, udev->owner, udev->group, udev->mode, udev->partitions);
826                         }
827
828                         if (!udev->run_final && rule->run[0] != '\0') {
829                                 char program[PATH_SIZE];
830
831                                 if (rule->run_operation == KEY_OP_ASSIGN_FINAL)
832                                         udev->run_final = 1;
833                                 else if (rule->run_operation == KEY_OP_ASSIGN) {
834                                         struct name_entry *name_loop;
835                                         struct name_entry *temp_loop;
836
837                                         list_for_each_entry_safe(name_loop, temp_loop, &udev->run_list, node) {
838                                                 list_del(&name_loop->node);
839                                                 free(name_loop);
840                                         }
841                                 }
842                                 strlcpy(program, rule->run, sizeof(program));
843                                 apply_format(udev, program, sizeof(program), class_dev, sysfs_device);
844                                 dbg("add run '%s'", program);
845                                 name_list_add(&udev->run_list, program, 0);
846                         }
847
848                         if (rule->last_rule) {
849                                 dbg("last rule to be applied");
850                                 break;
851                         }
852                 }
853         }
854
855         if (udev->name[0] == '\0') {
856                 strlcpy(udev->name, udev->kernel_name, sizeof(udev->name));
857                 info("no rule found, use kernel name '%s'", udev->name);
858         }
859
860         if (udev->tmp_node[0] != '\0') {
861                 dbg("removing temporary device node");
862                 unlink_secure(udev->tmp_node);
863                 udev->tmp_node[0] = '\0';
864         }
865
866         return 0;
867 }
868
869 int udev_rules_get_run(struct udevice *udev)
870 {
871         struct udev_rule *rule;
872         char program[PATH_SIZE];
873
874         /* look for a matching rule to apply */
875         list_for_each_entry(rule, &udev_rule_list, node) {
876                 dbg("process rule");
877
878                 if (rule->run[0] == '\0')
879                         continue;
880
881                 if (rule->name[0] != '\0' || rule->symlink[0] != '\0' ||
882                     rule->mode != 0000 || rule->owner[0] != '\0' || rule->group[0] != '\0') {
883                         dbg("skip rule that names a device");
884                         continue;
885                 }
886
887                 if (rule->action_operation != KEY_OP_UNSET) {
888                         dbg("check for " KEY_ACTION " rule->action='%s' udev->action='%s'",
889                             rule->action, udev->action);
890                         if (strcmp_pattern(rule->action, udev->action) != 0) {
891                                 dbg(KEY_ACTION " is not matching");
892                                 if (rule->action_operation != KEY_OP_NOMATCH)
893                                         continue;
894                         } else {
895                                 dbg(KEY_ACTION " matches");
896                                 if (rule->action_operation == KEY_OP_NOMATCH)
897                                         continue;
898                         }
899                         dbg(KEY_ACTION " key is true");
900                 }
901
902                 if (rule->kernel_operation != KEY_OP_UNSET) {
903                         dbg("check for " KEY_KERNEL " rule->kernel='%s' udev->kernel_name='%s'",
904                             rule->kernel, udev->kernel_name);
905                         if (strcmp_pattern(rule->kernel, udev->kernel_name) != 0) {
906                                 dbg(KEY_KERNEL " is not matching");
907                                 if (rule->kernel_operation != KEY_OP_NOMATCH)
908                                         continue;
909                 } else {
910                                 dbg(KEY_KERNEL " matches");
911                                 if (rule->kernel_operation == KEY_OP_NOMATCH)
912                                         continue;
913                         }
914                         dbg(KEY_KERNEL " key is true");
915                 }
916
917                 if (rule->subsystem_operation != KEY_OP_UNSET) {
918                         dbg("check for " KEY_SUBSYSTEM " rule->subsystem='%s' udev->subsystem='%s'",
919                             rule->subsystem, udev->subsystem);
920                         if (strcmp_pattern(rule->subsystem, udev->subsystem) != 0) {
921                                 dbg(KEY_SUBSYSTEM " is not matching");
922                                 if (rule->subsystem_operation != KEY_OP_NOMATCH)
923                                         continue;
924                         } else {
925                                 dbg(KEY_SUBSYSTEM " matches");
926                                 if (rule->subsystem_operation == KEY_OP_NOMATCH)
927                                         continue;
928                         }
929                         dbg(KEY_SUBSYSTEM " key is true");
930                 }
931
932                 if (rule->env_pair_count) {
933                         int i;
934
935                         dbg("check for " KEY_ENV " pairs");
936                         for (i = 0; i < rule->env_pair_count; i++) {
937                                 struct key_pair *pair;
938                                 const char *value;
939
940                                 pair = &rule->env_pair[i];
941                                 value = getenv(pair->name);
942                                 if (!value) {
943                                         dbg(KEY_ENV "{'%s'} is not found", pair->name);
944                                         continue;
945                                 }
946                                 if (strcmp_pattern(pair->value, value) != 0) {
947                                         dbg(KEY_ENV "{'%s'} is not matching", pair->name);
948                                         if (pair->operation != KEY_OP_NOMATCH)
949                                                 continue;
950                                 } else {
951                                         dbg(KEY_ENV "{'%s'} matches", pair->name);
952                                         if (pair->operation == KEY_OP_NOMATCH)
953                                                 continue;
954                                 }
955                         }
956                         dbg(KEY_ENV " key is true");
957                 }
958
959                 /* rule matches */
960
961                 if (rule->ignore_device) {
962                         info("configured rule in '%s[%i]' applied, '%s' is ignored",
963                              rule->config_file, rule->config_line, udev->kernel_name);
964                         udev->ignore_device = 1;
965                         return 0;
966                 }
967
968                 strlcpy(program, rule->run, sizeof(program));
969                 apply_format(udev, program, sizeof(program), NULL, NULL);
970                 dbg("add run '%s'", program);
971                 name_list_add(&udev->run_list, program, 0);
972
973                 if (rule->last_rule) {
974                         dbg("last rule to be applied");
975                         break;
976                 }
977         }
978
979         return 0;
980 }