chiark / gitweb /
a9142374f4c1400e6737974795b083fe99633ec9
[elogind.git] / namedev.c
1 /*
2  * namedev.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  * 
13  *      This program is distributed in the hope that it will be useful, but
14  *      WITHOUT ANY WARRANTY; without even the implied warranty of
15  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *      General Public License for more details.
17  * 
18  *      You should have received a copy of the GNU General Public License along
19  *      with this program; if not, write to the Free Software Foundation, Inc.,
20  *      675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 #include <stddef.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28 #include <fcntl.h>
29 #include <ctype.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <time.h>
33 #include <sys/wait.h>
34 #include <sys/stat.h>
35
36 #include "libsysfs/sysfs/libsysfs.h"
37 #include "list.h"
38 #include "udev.h"
39 #include "udev_version.h"
40 #include "logging.h"
41 #include "namedev.h"
42 #include "klibc_fixups.h"
43
44 static struct sysfs_attribute *find_sysfs_attribute(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device, char *attr);
45
46 LIST_HEAD(config_device_list);
47 LIST_HEAD(perm_device_list);
48
49
50 /* compare string with pattern (supports * ? [0-9] [!A-Z]) */
51 static int strcmp_pattern(const char *p, const char *s)
52 {
53         if (s[0] == '\0') {
54                 while (p[0] == '*')
55                         p++;
56                 return (p[0] != '\0');
57         }
58         switch (p[0]) {
59         case '[':
60                 {
61                         int not = 0;
62                         p++;
63                         if (p[0] == '!') {
64                                 not = 1;
65                                 p++;
66                         }
67                         while ((p[0] != '\0') && (p[0] != ']')) {
68                                 int match = 0;
69                                 if (p[1] == '-') {
70                                         if ((s[0] >= p[0]) && (s[0] <= p[2]))
71                                                 match = 1;
72                                         p += 3;
73                                 } else {
74                                         match = (p[0] == s[0]);
75                                         p++;
76                                 }
77                                 if (match ^ not) {
78                                         while ((p[0] != '\0') && (p[0] != ']'))
79                                                 p++;
80                                         if (p[0] == ']')
81                                                 return strcmp_pattern(p+1, s+1);
82                                 }
83                         }
84                 }
85                 break;
86         case '*':
87                 if (strcmp_pattern(p, s+1))
88                         return strcmp_pattern(p+1, s);
89                 return 0;
90         case '\0':
91                 if (s[0] == '\0') {
92                         return 0;
93                 }
94                 break;
95         default:
96                 if ((p[0] == s[0]) || (p[0] == '?'))
97                         return strcmp_pattern(p+1, s+1);
98                 break;
99         }
100         return 1;
101 }
102
103 static struct perm_device *find_perm(char *name)
104 {
105         struct perm_device *perm;
106
107         list_for_each_entry(perm, &perm_device_list, node) {
108                 if (strcmp_pattern(perm->name, name))
109                         continue;
110                 return perm;
111         }
112         return NULL;
113 }
114
115 static mode_t get_default_mode(void)
116 {
117         mode_t mode = 0600;     /* default to owner rw only */
118
119         if (strlen(default_mode_str) != 0)
120                 mode = strtol(default_mode_str, NULL, 8);
121
122         return mode;
123 }
124
125 static char *get_default_owner(void)
126 {
127         if (strlen(default_owner_str) == 0)
128                 strfieldcpy(default_owner_str, "root");
129
130         return default_owner_str;
131 }
132
133 static char *get_default_group(void)
134 {
135         if (strlen(default_group_str) == 0)
136                 strfieldcpy(default_group_str, "root");
137
138         return default_group_str;
139 }
140
141 /* extract possible {attr} and move str behind it */
142 static char *get_format_attribute(char **str)
143 {
144         char *pos;
145         char *attr = NULL;
146
147         if (*str[0] == '{') {
148                 pos = strchr(*str, '}');
149                 if (pos == NULL) {
150                         dbg("missing closing brace for format");
151                         return NULL;
152                 }
153                 pos[0] = '\0';
154                 attr = *str+1;
155                 *str = pos+1;
156                 dbg("attribute='%s', str='%s'", attr, *str);
157         }
158         return attr;
159 }
160
161 /* extract possible format length and move str behind it*/
162 static int get_format_len(char **str)
163 {
164         int num;
165         char *tail;
166
167         if (isdigit(*str[0])) {
168                 num = (int) strtoul(*str, &tail, 10);
169                 if (num > 0) {
170                         *str = tail;
171                         dbg("format length=%i", num);
172                         return num;
173                 } else {
174                         dbg("format parsing error '%s'", *str);
175                 }
176         }
177         return -1;
178 }
179
180 static void apply_format(struct udevice *udev, char *string, size_t maxsize,
181                          struct sysfs_class_device *class_dev,
182                          struct sysfs_device *sysfs_device)
183 {
184         char temp[NAME_SIZE];
185         char temp2[NAME_SIZE];
186         char *tail;
187         char *pos;
188         char *attr;
189         int len;
190         int i;
191         char c;
192         char *spos;
193         int slen;
194         struct sysfs_attribute *tmpattr;
195
196         pos = string;
197
198         while (1) {
199                 pos = strchr(string, '%');
200                 if (pos != NULL) {
201                         pos[0] = '\0';
202                         tail = pos+1;
203                         len = get_format_len(&tail);
204                         c = tail[0];
205                         strfieldcpy(temp, tail+1);
206                         tail = temp;
207                 } else {
208                         break;
209                 }
210                 dbg("format=%c, string='%s', tail='%s'",c , string, tail);
211
212                 attr = get_format_attribute(&tail);
213
214                 switch (c) {
215                 case 'b':
216                         if (strlen(udev->bus_id) == 0)
217                                 break;
218                         strfieldcatmax(string, udev->bus_id, maxsize);
219                         dbg("substitute bus_id '%s'", udev->bus_id);
220                         break;
221                 case 'k':
222                         if (strlen(udev->kernel_name) == 0)
223                                 break;
224                         strfieldcatmax(string, udev->kernel_name, maxsize);
225                         dbg("substitute kernel name '%s'", udev->kernel_name);
226                         break;
227                 case 'n':
228                         if (strlen(udev->kernel_number) == 0)
229                                 break;
230                         strfieldcatmax(string, udev->kernel_number, maxsize);
231                         dbg("substitute kernel number '%s'", udev->kernel_number);
232                                 break;
233                 case 'm':
234                         strintcatmax(string, udev->minor, maxsize);
235                         dbg("substitute minor number '%u'", udev->minor);
236                         break;
237                 case 'M':
238                         strintcatmax(string, udev->major, maxsize);
239                         dbg("substitute major number '%u'", udev->major);
240                         break;
241                 case 'c':
242                         if (strlen(udev->program_result) == 0)
243                                 break;
244                         /* get part part of the result string */
245                         i = 0;
246                         if (attr != NULL)
247                                 i = atoi(attr);
248                         if (i > 0) {
249                                 foreach_strpart(udev->program_result, " \n\r", spos, slen) {
250                                         i--;
251                                         if (i == 0)
252                                                 break;
253                                 }
254                                 if (i > 0) {
255                                         dbg("requested part of result string not found");
256                                         break;
257                                 }
258                                 strfieldcpymax(temp2, spos, slen+1);
259                                 strfieldcatmax(string, temp2, maxsize);
260                                 dbg("substitute part of result string '%s'", temp2);
261                         } else {
262                                 strfieldcatmax(string, udev->program_result, maxsize);
263                                 dbg("substitute result string '%s'", udev->program_result);
264                         }
265                         break;
266                 case 's':
267                         if (attr != NULL) {
268                                 tmpattr = find_sysfs_attribute(class_dev, sysfs_device, attr);
269                                 if (tmpattr == NULL) {
270                                         dbg("sysfa attribute '%s' not found", attr);
271                                         break;
272                                 }
273                                 strfieldcatmax(string, tmpattr->value, maxsize);
274                                 dbg("substitute sysfs value '%s'", tmpattr->value);
275                         } else {
276                                 dbg("missing attribute");
277                         }
278                         break;
279                 case '%':
280                         strfieldcatmax(string, "%", maxsize);
281                         break;
282                 default:
283                         dbg("unknown substitution type '%%%c'", c);
284                         break;
285                 }
286                 /* truncate to specified length */
287                 if (len > 0)
288                         pos[len] = '\0';
289
290                 strfieldcatmax(string, tail, maxsize);
291         }
292 }
293
294 /* 
295  * Note, we can have multiple files for different busses in here due
296  * to the mess that USB has for its device tree...
297  */
298 static struct bus_file {
299         char *bus;
300         char *file;
301 } bus_files[] = {
302         { .bus = "scsi",        .file = "vendor" },
303         { .bus = "usb",         .file = "idVendor" },
304         { .bus = "usb",         .file = "iInterface" },
305         { .bus = "usb-serial",  .file = "detach_state" },
306         { .bus = "ide",         .file = "detach_state" },
307         { .bus = "pci",         .file = "vendor" },
308         {}
309 };
310
311 #define SECONDS_TO_WAIT_FOR_FILE        10
312 static void wait_for_device_to_initialize(struct sysfs_device *sysfs_device)
313 {
314         /* sleep until we see the file for this specific bus type show up this
315          * is needed because we can easily out-run the kernel in looking for
316          * these files before the paticular subsystem has created them in the
317          * sysfs tree properly.
318          *
319          * And people thought that the /sbin/hotplug event system was going to
320          * be slow, poo on you for arguing that before even testing it...
321          */
322         struct bus_file *b = &bus_files[0];
323         struct sysfs_attribute *tmpattr;
324         int found = 0;
325         int loop = SECONDS_TO_WAIT_FOR_FILE;
326
327         while (1) {
328                 if (b->bus == NULL) {
329                         if (!found)
330                                 break;
331                         /* sleep to give the kernel a chance to create the file */
332                         sleep(1);
333                         --loop;
334                         if (loop == 0)
335                                 break;
336                         b = &bus_files[0];
337                 }
338                 if (strcmp(sysfs_device->bus, b->bus) == 0) {
339                         found = 1;
340                         dbg("looking for file '%s' on bus '%s'", b->file, b->bus);
341                         tmpattr = sysfs_get_device_attr(sysfs_device, b->file);
342                         if (tmpattr) {
343                                 /* found it! */
344                                 goto exit;
345                         }
346                         dbg("can't find '%s' file", b->file);
347                 }
348                 ++b;
349         }
350         if (!found)
351                 dbg("did not find bus type '%s' on list of bus_id_files, "
352                     "contact greg@kroah.com", sysfs_device->bus);
353 exit:
354         return; /* here to prevent compiler warning... */
355 }
356
357 static void fix_kernel_name(struct udevice *udev)
358 {
359         char *temp = udev->kernel_name;
360
361         while (*temp != 0x00) {
362                 /* Some block devices have a ! in their name, 
363                  * we need to change that to / */
364                 if (*temp == '!')
365                         *temp = '/';
366                 ++temp;
367         }
368 }
369
370 static int execute_program(char *path, char *value, int len)
371 {
372         int retval;
373         int count;
374         int status;
375         int fds[2];
376         pid_t pid;
377         char *pos;
378         char arg[PROGRAM_SIZE];
379         char *argv[sizeof(arg) / 2];
380         int i;
381
382         i = 0;
383         if (strchr(path, ' ')) {
384                 strfieldcpy(arg, path);
385                 pos = arg;
386                 while (pos != NULL) {
387                         if (pos[0] == '\'') {
388                                 /* don't separate if in apostrophes */
389                                 pos++;
390                                 argv[i] = strsep(&pos, "\'");
391                                 while (pos[0] == ' ')
392                                         pos++;
393                 } else {
394                                 argv[i] = strsep(&pos, " ");
395                         }
396                         dbg("arg[%i] '%s'", i, argv[i]);
397                         i++;
398                 }
399         }
400         argv[i] =  NULL;
401
402         retval = pipe(fds);
403         if (retval != 0) {
404                 dbg("pipe failed");
405                 return -1;
406         }
407
408         pid = fork();
409         switch(pid) {
410         case 0:
411                 /* child */
412                 close(STDOUT_FILENO);
413
414                 /* dup write side of pipe to STDOUT */
415                 dup(fds[1]);
416                 if (argv[0] !=  NULL) {
417                         dbg("execute '%s' with given arguments", argv[0]);
418                         retval = execv(argv[0], argv);
419                 } else {
420                         dbg("execute '%s' with main argument", path);
421                         retval = execv(path, main_argv);
422                 }
423
424                 info(FIELD_PROGRAM " execution of '%s' failed", path);
425                 exit(1);
426         case -1:
427                 dbg("fork failed");
428                 return -1;
429         default:
430                 /* parent reads from fds[0] */
431                 close(fds[1]);
432                 retval = 0;
433                 i = 0;
434                 while (1) {
435                         count = read(fds[0], value + i, len - i-1);
436                         if (count <= 0)
437                                 break;
438
439                         i += count;
440                         if (i >= len-1) {
441                                 dbg("result len %d too short", len);
442                                 retval = -1;
443                                 break;
444                         }
445                 }
446
447                 if (count < 0) {
448                         dbg("read failed with '%s'", strerror(errno));
449                         retval = -1;
450                 }
451
452                 if (i > 0 && value[i] == '\n')
453                         i--;
454                 value[i] = '\0';
455                 dbg("result is '%s'", value);
456
457                 close(fds[0]);
458                 wait(&status);
459
460                 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
461                         dbg("exec program status 0x%x", status);
462                         retval = -1;
463                 }
464         }
465         return retval;
466 }
467
468 static struct sysfs_attribute *find_sysfs_attribute(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device, char *attr)
469 {
470         struct sysfs_attribute *tmpattr = NULL;
471         char *c;
472
473         dbg("look for device attribute '%s'", attr);
474         /* try to find the attribute in the class device directory */
475         tmpattr = sysfs_get_classdev_attr(class_dev, attr);
476         if (tmpattr)
477                 goto attr_found;
478
479         /* look in the class device directory if present */
480         if (sysfs_device) {
481                 tmpattr = sysfs_get_device_attr(sysfs_device, attr);
482                 if (tmpattr)
483                         goto attr_found;
484         }
485
486         return NULL;
487
488 attr_found:
489         c = strchr(tmpattr->value, '\n');
490         if (c != NULL)
491                 c[0] = '\0';
492
493         dbg("found attribute '%s'", tmpattr->path);
494         return tmpattr;
495 }
496
497 static int compare_sysfs_attribute(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device, struct sysfs_pair *pair)
498 {
499         struct sysfs_attribute *tmpattr;
500         int i;
501         int len;
502
503         if ((pair == NULL) || (pair->file[0] == '\0') || (pair->value == '\0'))
504                 return -ENODEV;
505
506         tmpattr = find_sysfs_attribute(class_dev, sysfs_device, pair->file);
507         if (tmpattr == NULL)
508                 return -ENODEV;
509
510         /* strip trailing whitespace of value, if not asked to match for it */
511         if (! isspace(pair->value[strlen(pair->value)-1])) {
512                 i = len = strlen(tmpattr->value);
513                 while (i > 0 &&  isspace(tmpattr->value[i-1]))
514                         i--;
515                 if (i < len) {
516                         tmpattr->value[i] = '\0';
517                         dbg("remove %i trailing whitespace chars from '%s'",
518                             len - i, tmpattr->value);
519                 }
520         }
521
522         dbg("compare attribute '%s' value '%s' with '%s'",
523                   pair->file, tmpattr->value, pair->value);
524         if (strcmp_pattern(pair->value, tmpattr->value) != 0)
525                 return -ENODEV;
526
527         dbg("found matching attribute '%s' with value '%s'",
528             pair->file, pair->value);
529         return 0;
530 }
531
532 static int match_sysfs_pairs(struct config_device *dev, struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device)
533 {
534         struct sysfs_pair *pair;
535         int i;
536
537         for (i = 0; i < MAX_SYSFS_PAIRS; ++i) {
538                 pair = &dev->sysfs_pair[i];
539                 if ((pair->file[0] == '\0') || (pair->value[0] == '\0'))
540                         break;
541                 if (compare_sysfs_attribute(class_dev, sysfs_device, pair) != 0) {
542                         dbg("sysfs attribute doesn't match");
543                         return -ENODEV;
544                 }
545         }
546
547         return 0;
548 }
549
550 static int match_id(struct config_device *dev, struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device)
551 {
552         char path[SYSFS_PATH_MAX];
553         char *temp = NULL;
554
555         /* we have to have a sysfs device for ID to work */
556         if (!sysfs_device)
557                 return -ENODEV;
558
559         strfieldcpy(path, sysfs_device->path);
560         temp = strrchr(path, '/');
561         temp++;
562         dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
563         if (strcmp_pattern(dev->id, temp) != 0)
564                 return -ENODEV;
565         else
566                 return 0;
567 }
568
569 static int match_place(struct config_device *dev, struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device)
570 {
571         char path[SYSFS_PATH_MAX];
572         int found;
573         char *temp = NULL;
574
575         /* we have to have a sysfs device for PLACE to work */
576         if (!sysfs_device)
577                 return -ENODEV;
578
579         found = 0;
580         strfieldcpy(path, sysfs_device->path);
581         temp = strrchr(path, '/');
582         dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
583         if (strstr(temp, dev->place) != NULL) {
584                 found = 1;
585         } else {
586                 *temp = 0x00;
587                 temp = strrchr(path, '/');
588                 dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
589                 if (strstr(temp, dev->place) != NULL)
590                         found = 1;
591         }
592         if (!found) {
593                 dbg("place doesn't match");
594                 return -ENODEV;
595         }
596
597         return 0;
598 }
599
600 static struct sysfs_device *get_sysfs_device(struct sysfs_class_device *class_dev)
601 {
602         struct sysfs_device *sysfs_device;
603         struct sysfs_class_device *class_dev_parent;
604         struct timespec tspec;
605         int loop;
606
607         /* Figure out where the device symlink is at.  For char devices this will
608          * always be in the class_dev->path.  But for block devices, it's different.
609          * The main block device will have the device symlink in it's path, but
610          * all partitions have the symlink in its parent directory.
611          * But we need to watch out for block devices that do not have parents, yet
612          * look like a partition (fd0, loop0, etc.)  They all do not have a device
613          * symlink yet.  We do sit and spin on waiting for them right now, we should
614          * possibly have a whitelist for these devices here...
615          */
616         class_dev_parent = sysfs_get_classdev_parent(class_dev);
617         if (class_dev_parent) 
618                 dbg("Really a partition");
619
620         tspec.tv_sec = 0;
621         tspec.tv_nsec = 10000000;  /* sleep 10 millisec */
622         loop = 10;
623         while (loop--) {
624                 if (udev_sleep)
625                         nanosleep(&tspec, NULL);
626                 if (class_dev_parent)
627                         sysfs_device = sysfs_get_classdev_device(class_dev_parent);
628                 else
629                         sysfs_device = sysfs_get_classdev_device(class_dev);
630
631                 if (sysfs_device != NULL)
632                         goto device_found;
633         }
634         dbg("timed out waiting for device symlink, continuing on anyway...");
635         
636 device_found:
637         /* We have another issue with just the wait above - the sysfs part of
638          * the kernel may not be quick enough to have created the link to the
639          * device under the "bus" subsystem. Due to this, the sysfs_device->bus
640          * will not contain the actual bus name :(
641          *
642          * Libsysfs now provides a new API sysfs_get_device_bus(), so use it
643          * if needed
644          */
645         if (sysfs_device) {
646                 if (sysfs_device->bus[0] != '\0')
647                         goto bus_found;
648
649                 loop = 10;
650                 tspec.tv_nsec = 10000000;
651                 while (loop--) {
652                         if (udev_sleep)
653                                 nanosleep(&tspec, NULL);
654                         sysfs_get_device_bus(sysfs_device);
655                         
656                         if (sysfs_device->bus[0] != '\0')
657                                 goto bus_found;
658                 }
659                 dbg("timed out waiting to find the device bus, continuing on anyway");
660                 goto exit;
661 bus_found:
662                 dbg("device %s is registered with bus '%s'",
663                                 sysfs_device->name, sysfs_device->bus);
664         }
665 exit:
666         return sysfs_device;
667 }
668
669 static int match_rule(struct config_device *dev, struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
670 {
671         while (1) {
672                 /* check for matching bus value */
673                 if (dev->bus[0] != '\0') {
674                         if (sysfs_device == NULL) {
675                                 dbg("device has no bus");
676                                 goto try_parent;
677                         }
678                         dbg("check for " FIELD_BUS " dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
679                         if (strcmp_pattern(dev->bus, sysfs_device->bus) != 0) {
680                                 dbg(FIELD_BUS " is not matching");
681                                 goto try_parent;
682                         } else {
683                                 dbg(FIELD_BUS " matches");
684                         }
685                 }
686
687                 /* check for matching kernel name*/
688                 if (dev->kernel[0] != '\0') {
689                         dbg("check for " FIELD_KERNEL " dev->kernel='%s' class_dev->name='%s'", dev->kernel, class_dev->name);
690                         if (strcmp_pattern(dev->kernel, class_dev->name) != 0) {
691                                 dbg(FIELD_KERNEL " is not matching");
692                                 goto try_parent;
693                         } else {
694                                 dbg(FIELD_KERNEL " matches");
695                         }
696                 }
697
698                 /* check for matching bus id */
699                 if (dev->id[0] != '\0') {
700                         dbg("check " FIELD_ID);
701                         if (match_id(dev, class_dev, sysfs_device) != 0) {
702                                 dbg(FIELD_ID " is not matching");
703                                 goto try_parent;
704                         } else {
705                                 dbg(FIELD_ID " matches");
706                         }
707                 }
708
709                 /* check for matching place of device */
710                 if (dev->place[0] != '\0') {
711                         dbg("check " FIELD_PLACE);
712                         if (match_place(dev, class_dev, sysfs_device) != 0) {
713                                 dbg(FIELD_PLACE " is not matching");
714                                 goto try_parent;
715                         } else {
716                                 dbg(FIELD_PLACE " matches");
717                         }
718                 }
719
720                 /* check for matching sysfs pairs */
721                 if (dev->sysfs_pair[0].file[0] != '\0') {
722                         dbg("check " FIELD_SYSFS " pairs");
723                         if (match_sysfs_pairs(dev, class_dev, sysfs_device) != 0) {
724                                 dbg(FIELD_SYSFS " is not matching");
725                                 goto try_parent;
726                         } else {
727                                 dbg(FIELD_SYSFS " matches");
728                         }
729                 }
730
731                 /* execute external program */
732                 if (dev->program[0] != '\0') {
733                         dbg("check " FIELD_PROGRAM);
734                         apply_format(udev, dev->program, sizeof(dev->program),
735                                      class_dev, sysfs_device);
736                         if (execute_program(dev->program, udev->program_result, NAME_SIZE) != 0) {
737                                 dbg(FIELD_PROGRAM " returned nonzero");
738                                 goto try_parent;
739                         } else {
740                                 dbg(FIELD_PROGRAM " returned successful");
741                         }
742                 }
743
744                 /* check for matching result of external program */
745                 if (dev->result[0] != '\0') {
746                         dbg("check for " FIELD_RESULT
747                             " dev->result='%s', udev->program_result='%s'",
748                             dev->result, udev->program_result);
749                         if (strcmp_pattern(dev->result, udev->program_result) != 0) {
750                                 dbg(FIELD_RESULT " is not matching");
751                                 goto try_parent;
752                         } else {
753                                 dbg(FIELD_RESULT " matches");
754                         }
755                 }
756
757                 /* Yeah, we matched! */
758                 return 0;
759
760 try_parent:
761                 dbg("try parent sysfs device");
762                 sysfs_device = sysfs_get_device_parent(sysfs_device);
763                 if (sysfs_device == NULL)
764                         return -ENODEV;
765                 dbg("sysfs_device->path='%s'", sysfs_device->path);
766                 dbg("sysfs_device->bus_id='%s'", sysfs_device->bus_id);
767                 dbg("sysfs_device->bus='%s'", sysfs_device->bus);
768         }
769
770 }
771
772 int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *udev)
773 {
774         struct sysfs_device *sysfs_device = NULL;
775         struct config_device *dev;
776         struct perm_device *perm;
777         char *pos;
778
779         udev->mode = 0;
780
781         /* find the sysfs_device associated with this class device */
782         sysfs_device = get_sysfs_device(class_dev);
783         if (sysfs_device) {
784                 dbg("sysfs_device->path='%s'", sysfs_device->path);
785                 dbg("sysfs_device->bus_id='%s'", sysfs_device->bus_id);
786                 dbg("sysfs_device->bus='%s'", sysfs_device->bus);
787                 strfieldcpy(udev->bus_id, sysfs_device->bus_id);
788                 wait_for_device_to_initialize(sysfs_device);
789         }
790         dbg("class_dev->name = '%s'", class_dev->name);
791
792         strfieldcpy(udev->kernel_name, class_dev->name);
793         fix_kernel_name(udev);
794         dbg("udev->kernel_name = '%s'", udev->kernel_name);
795
796         /* get kernel number */
797         pos = class_dev->name + strlen(class_dev->name);
798         while (isdigit(*(pos-1)))
799                 pos--;
800         strfieldcpy(udev->kernel_number, pos);
801         dbg("kernel_number='%s'", udev->kernel_number);
802
803         /* look for a matching rule to apply */
804         list_for_each_entry(dev, &config_device_list, node) {
805                 dbg("process rule");
806                 if (match_rule(dev, class_dev, udev, sysfs_device) == 0) {
807                         if (dev->name[0] == '\0' && dev->symlink[0] == '\0') {
808                                 info("configured rule in '%s' at line %i applied, '%s' is ignored",
809                                      dev->config_file, dev->config_line, udev->kernel_name);
810                                 return -1;
811                         }
812
813                         if (dev->symlink[0] != '\0') {
814                                 char temp[NAME_MAX];
815
816                                 info("configured rule in '%s' at line %i applied, added symlink '%s'",
817                                      dev->config_file, dev->config_line, dev->symlink);
818                                 /* do not clobber dev */
819                                 strfieldcpy(temp, dev->symlink);
820                                 apply_format(udev, temp, sizeof(temp),
821                                              class_dev, sysfs_device);
822                                 strfieldcat(udev->symlink, temp);
823                                 strfieldcat(udev->symlink, " ");
824                         }
825
826                         if (dev->name[0] != '\0') {
827                                 info("configured rule in '%s' at line %i applied, '%s' becomes '%s'",
828                                      dev->config_file, dev->config_line, udev->kernel_name, dev->name);
829                                 strfieldcpy(udev->name, dev->name);
830                                 goto found;
831                         }
832                 }
833         }
834
835         /* no rule was found so we use the kernel name */
836         strfieldcpy(udev->name, udev->kernel_name);
837         goto done;
838
839 found:
840         apply_format(udev, udev->name, sizeof(udev->name),
841                      class_dev, sysfs_device);
842         udev->partitions = dev->partitions;
843
844 done:
845         /* get permissions given in rule */
846         set_empty_perms(udev, dev->mode,
847                               dev->owner,
848                               dev->group);
849
850         /* get permissions given in config file or set defaults */
851         perm = find_perm(udev->name);
852         if (perm != NULL) {
853                 set_empty_perms(udev, perm->mode,
854                                       perm->owner,
855                                       perm->group);
856         } else {
857                 set_empty_perms(udev, get_default_mode(),
858                                       get_default_owner(),
859                                       get_default_group());
860         }
861
862         dbg("name, '%s' is going to have owner='%s', group='%s', mode = %#o",
863             udev->name, udev->owner, udev->group, udev->mode);
864
865         return 0;
866 }
867
868 int namedev_init(void)
869 {
870         int retval;
871
872         retval = namedev_init_rules();
873         if (retval)
874                 return retval;
875
876         retval = namedev_init_permissions();
877         if (retval)
878                 return retval;
879
880         dump_config_dev_list();
881         dump_perm_dev_list();
882         return retval;
883 }