chiark / gitweb /
[PATCH] add IGNORE rule type
[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 <sys/wait.h>
33 #include <sys/stat.h>
34
35 #include "list.h"
36 #include "udev.h"
37 #include "udev_version.h"
38 #include "namedev.h"
39 #include "libsysfs/libsysfs.h"
40 #include "klibc_fixups.h"
41
42 LIST_HEAD(config_device_list);
43 LIST_HEAD(perm_device_list);
44
45 /* compare string with pattern (supports * ? [0-9] [!A-Z]) */
46 static int strcmp_pattern(const char *p, const char *s)
47 {
48         if (*s == '\0') {
49                 while (*p == '*')
50                         p++;
51                 return (*p != '\0');
52         }
53         switch (*p) {
54         case '[':
55                 {
56                         int not = 0;
57                         p++;
58                         if (*p == '!') {
59                                 not = 1;
60                                 p++;
61                         }
62                         while (*p && (*p != ']')) {
63                                 int match = 0;
64                                 if (p[1] == '-') {
65                                         if ((*s >= *p) && (*s <= p[2]))
66                                                 match = 1;
67                                         p += 3;
68                                 } else {
69                                         match = (*p == *s);
70                                         p++;
71                                 }
72                                 if (match ^ not) {
73                                         while (*p && (*p != ']'))
74                                                 p++;
75                                         return strcmp_pattern(p+1, s+1);
76                                 }
77                         }
78                 }
79                 break;
80         case '*':
81                 if (strcmp_pattern(p, s+1))
82                         return strcmp_pattern(p+1, s);
83                 return 0;
84         case '\0':
85                 if (*s == '\0') {
86                         return 0;
87                 }
88                 break;
89         default:
90                 if ((*p == *s) || (*p == '?'))
91                         return strcmp_pattern(p+1, s+1);
92                 break;
93         }
94         return 1;
95 }
96
97 #define copy_var(a, b, var)             \
98         if (b->var)                     \
99                 a->var = b->var;
100
101 #define copy_string(a, b, var)          \
102         if (strlen(b->var))             \
103                 strcpy(a->var, b->var);
104
105 int add_perm_dev(struct perm_device *new_dev)
106 {
107         struct perm_device *dev;
108         struct perm_device *tmp_dev;
109
110         /* update the values if we already have the device */
111         list_for_each_entry(dev, &perm_device_list, node) {
112                 if (strcmp_pattern(new_dev->name, dev->name))
113                         continue;
114                 copy_var(dev, new_dev, mode);
115                 copy_string(dev, new_dev, owner);
116                 copy_string(dev, new_dev, group);
117                 return 0;
118         }
119
120         /* not found, add new structure to the perm list */
121         tmp_dev = malloc(sizeof(*tmp_dev));
122         if (!tmp_dev)
123                 return -ENOMEM;
124         memcpy(tmp_dev, new_dev, sizeof(*tmp_dev));
125         list_add_tail(&tmp_dev->node, &perm_device_list);
126         //dump_perm_dev(tmp_dev);
127         return 0;
128 }
129
130 static struct perm_device *find_perm(char *name)
131 {
132         struct perm_device *perm;
133
134         list_for_each_entry(perm, &perm_device_list, node) {
135                 if (strcmp_pattern(perm->name, name))
136                         continue;
137                 return perm;
138         }
139         return NULL;
140 }
141
142 static mode_t get_default_mode(struct sysfs_class_device *class_dev)
143 {
144         mode_t mode = 0600;     /* default to owner rw only */
145
146         if (strlen(default_mode_str) != 0) {
147                 mode = strtol(default_mode_str, NULL, 8);
148         }
149         return mode;
150 }
151
152 static void apply_format(struct udevice *udev, unsigned char *string)
153 {
154         char name[NAME_SIZE];
155         char temp[NAME_SIZE];
156         char *tail;
157         char *pos;
158         char *pos2;
159         char *pos3;
160         int num;
161
162         while (1) {
163                 num = 0;
164                 pos = strchr(string, '%');
165
166                 if (pos) {
167                         *pos = '\0';
168                         tail = pos+1;
169                         if (isdigit(tail[0])) {
170                                 num = (int) strtoul(&pos[1], &tail, 10);
171                                 if (tail == NULL) {
172                                         dbg("format parsing error '%s'", pos+1);
173                                         break;
174                                 }
175                         }
176                         strfieldcpy(name, tail+1);
177
178                         switch (tail[0]) {
179                         case 'b':
180                                 if (strlen(udev->bus_id) == 0)
181                                         break;
182                                 strcat(pos, udev->bus_id);
183                                 dbg("substitute bus_id '%s'", udev->bus_id);
184                                 break;
185                         case 'k':
186                                 if (strlen(udev->kernel_name) == 0)
187                                         break;
188                                 strcat(pos, udev->kernel_name);
189                                 dbg("substitute kernel name '%s'", udev->kernel_name);
190                                 break;
191                         case 'n':
192                                 if (strlen(udev->kernel_number) == 0)
193                                         break;
194                                 strcat(pos, udev->kernel_number);
195                                 dbg("substitute kernel number '%s'", udev->kernel_number);
196                                 break;
197                         case 'D':
198                                 if (strlen(udev->kernel_number) == 0) {
199                                         strcat(pos, "disc");
200                                         dbg("substitute devfs disc");
201                                         break;
202                                 }
203                                 strcat(pos, "part");
204                                 strcat(pos, udev->kernel_number);
205                                 dbg("substitute devfs part '%s'", udev->kernel_number);
206                                 break;
207                         case 'm':
208                                 sprintf(pos, "%u", udev->minor);
209                                 dbg("substitute minor number '%u'", udev->minor);
210                                 break;
211                         case 'M':
212                                 sprintf(pos, "%u", udev->major);
213                                 dbg("substitute major number '%u'", udev->major);
214                                 break;
215                         case 'c':
216                                 if (strlen(udev->callout_value) == 0)
217                                         break;
218                                 if (num) {
219                                         /* get part of return string */
220                                         strncpy(temp, udev->callout_value, sizeof(temp));
221                                         pos2 = temp;
222                                         while (num) {
223                                                 num--;
224                                                 pos3 = strsep(&pos2, " ");
225                                                 if (pos3 == NULL) {
226                                                         dbg("requested part of callout string not found");
227                                                         break;
228                                                 }
229                                         }
230                                         if (pos3) {
231                                                 strcat(pos, pos3);
232                                                 dbg("substitute partial callout output '%s'", pos3);
233                                         }
234                                 } else {
235                                         strcat(pos, udev->callout_value);
236                                         dbg("substitute callout output '%s'", udev->callout_value);
237                                 }
238                                 break;
239                         default:
240                                 dbg("unknown substitution type '%%%c'", pos[1]);
241                                 break;
242                         }
243                         strcat(string, name);
244                 } else
245                         break;
246         }
247 }
248
249 static struct bus_file {
250         char *bus;
251         char *file;
252 } bus_files[] = {
253         { .bus = "scsi",        .file = "vendor" },
254         { .bus = "usb",         .file = "idVendor" },
255         { .bus = "ide",         .file = "detach_state" },
256         { .bus = "pci",         .file = "vendor" },
257         {}
258 };
259
260 #define SECONDS_TO_WAIT_FOR_FILE        10
261 static void wait_for_device_to_initialize(struct sysfs_device *sysfs_device)
262 {
263         /* sleep until we see the file for this specific bus type show up this
264          * is needed because we can easily out-run the kernel in looking for
265          * these files before the paticular subsystem has created them in the
266          * sysfs tree properly.
267          *
268          * And people thought that the /sbin/hotplug event system was going to
269          * be slow, poo on you for arguing that before even testing it...
270          */
271         struct bus_file *b = &bus_files[0];
272         struct sysfs_attribute *tmpattr;
273         int loop;
274
275         while (1) {
276                 if (b->bus == NULL)
277                         break;
278                 if (strcmp(sysfs_device->bus, b->bus) == 0) {
279                         tmpattr = NULL;
280                         loop = SECONDS_TO_WAIT_FOR_FILE;
281                         while (loop--) {
282                                 dbg("looking for file '%s' on bus '%s'", b->file, b->bus);
283                                 tmpattr = sysfs_get_device_attr(sysfs_device, b->file);
284                                 if (tmpattr) {
285                                         /* found it! */
286                                         goto exit;
287                                 }
288                                 /* sleep to give the kernel a chance to create the file */
289                                 sleep(1);
290                         }
291                         dbg("Timed out waiting for '%s' file, continuing on anyway...", b->file);
292                         goto exit;
293                 }
294                 b++;
295         }
296         dbg("Did not find bus type '%s' on list of bus_id_files, contact greg@kroah.com", sysfs_device->bus);
297 exit:
298         return; /* here to prevent compiler warning... */
299 }
300
301 static int do_ignore(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
302 {
303         struct config_device *dev;
304         struct list_head *tmp;
305
306         list_for_each(tmp, &config_device_list) {
307                 dev = list_entry(tmp, struct config_device, node);
308                 if (dev->type != IGNORE)
309                         continue;
310
311                 dbg("compare name '%s' with '%s'", dev->kernel_name, class_dev->name);
312                 if (strcmp_pattern(dev->kernel_name, class_dev->name) != 0)
313                         continue;
314
315                 dbg("found name, '%s' will be ignored", dev->kernel_name);
316
317                 return 0;
318         }
319         return -ENODEV;
320 }
321
322 static int exec_callout(struct config_device *dev, char *value, int len)
323 {
324         int retval;
325         int res;
326         int status;
327         int fds[2];
328         pid_t pid;
329         int value_set = 0;
330         char buffer[256];
331         char *pos;
332         char *args[CALLOUT_MAXARG];
333         int i;
334
335         dbg("callout to '%s'", dev->exec_program);
336         retval = pipe(fds);
337         if (retval != 0) {
338                 dbg("pipe failed");
339                 return -1;
340         }
341         pid = fork();
342         if (pid == -1) {
343                 dbg("fork failed");
344                 return -1;
345         }
346
347         if (pid == 0) {
348                 /* child */
349                 close(STDOUT_FILENO);
350                 dup(fds[1]);    /* dup write side of pipe to STDOUT */
351                 if (strchr(dev->exec_program, ' ')) {
352                         /* callout with arguments */
353                         pos = dev->exec_program;
354                         for (i=0; i < CALLOUT_MAXARG-1; i++) {
355                                 args[i] = strsep(&pos, " ");
356                                 if (args[i] == NULL)
357                                         break;
358                         }
359                         if (args[i]) {
360                                 dbg("too many args - %d", i);
361                                 args[i] = NULL;
362                         }
363                         retval = execve(args[0], args, main_envp);
364                 } else {
365                         retval = execve(dev->exec_program, main_argv, main_envp);
366                 }
367                 if (retval != 0) {
368                         dbg("child execve failed");
369                         exit(1);
370                 }
371                 return -1; /* avoid compiler warning */
372         } else {
373                 /* parent reads from fds[0] */
374                 close(fds[1]);
375                 retval = 0;
376                 while (1) {
377                         res = read(fds[0], buffer, sizeof(buffer) - 1);
378                         if (res <= 0)
379                                 break;
380                         buffer[res] = '\0';
381                         if (res > len) {
382                                 dbg("callout len %d too short", len);
383                                 retval = -1;
384                         }
385                         if (value_set) {
386                                 dbg("callout value already set");
387                                 retval = -1;
388                         } else {
389                                 value_set = 1;
390                                 strncpy(value, buffer, len);
391                                 pos = value + strlen(value)-1;
392                                 if (pos[0] == '\n')
393                                 pos[0] = '\0';
394                                 dbg("callout returned '%s'", value);
395                         }
396                 }
397                 close(fds[0]);
398                 res = wait(&status);
399                 if (res < 0) {
400                         dbg("wait failed result %d", res);
401                         retval = -1;
402                 }
403
404 #ifndef __KLIBC__
405                 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
406                         dbg("callout program status 0x%x", status);
407                         retval = -1;
408                 }
409 #endif
410         }
411         return retval;
412 }
413
414 static int do_callout(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
415 {
416         struct config_device *dev;
417
418         list_for_each_entry(dev, &config_device_list, node) {
419                 if (dev->type != CALLOUT)
420                         continue;
421
422                 if (dev->bus[0] != '\0') {
423                         /* as the user specified a bus, we must match it up */
424                         if (!sysfs_device)
425                                 continue;
426                         dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
427                         if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
428                                 continue;
429                 }
430
431                 /* substitute anything that needs to be in the program name */
432                 apply_format(udev, dev->exec_program);
433                 if (exec_callout(dev, udev->callout_value, NAME_SIZE))
434                         continue;
435                 if (strcmp_pattern(dev->id, udev->callout_value) != 0)
436                         continue;
437                 strfieldcpy(udev->name, dev->name);
438                 strfieldcpy(udev->symlink, dev->symlink);
439                 dbg("callout returned matching value '%s', '%s' becomes '%s'",
440                     dev->id, class_dev->name, udev->name);
441                 return 0;
442         }
443         return -ENODEV;
444 }
445
446 static int match_pair(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device, struct sysfs_pair *pair)
447 {
448         struct sysfs_attribute *tmpattr = NULL;
449         char *c;
450
451         if ((pair == NULL) || (pair->file[0] == '\0') || (pair->value == '\0'))
452                 return -ENODEV;
453
454         dbg("look for device attribute '%s'", pair->file);
455         /* try to find the attribute in the class device directory */
456         tmpattr = sysfs_get_classdev_attr(class_dev, pair->file);
457         if (tmpattr)
458                 goto label_found;
459
460         /* look in the class device directory if present */
461         if (sysfs_device) {
462                 tmpattr = sysfs_get_device_attr(sysfs_device, pair->file);
463                 if (tmpattr)
464                         goto label_found;
465         }
466
467         return -ENODEV;
468
469 label_found:
470         c = tmpattr->value + strlen(tmpattr->value)-1;
471         if (*c == '\n')
472                 *c = 0x00;
473         dbg("compare attribute '%s' value '%s' with '%s'",
474                   pair->file, tmpattr->value, pair->value);
475         if (strcmp_pattern(pair->value, tmpattr->value) != 0)
476                 return -ENODEV;
477
478         dbg("found matching attribute '%s' with value '%s'",
479             pair->file, pair->value);
480         return 0;
481 }
482
483 static int do_label(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
484 {
485         struct sysfs_pair *pair;
486         struct config_device *dev;
487         int i;
488         int match;
489
490         list_for_each_entry(dev, &config_device_list, node) {
491                 if (dev->type != LABEL)
492                         continue;
493
494                 if (dev->bus[0] != '\0') {
495                         /* as the user specified a bus, we must match it up */
496                         if (!sysfs_device)
497                                 continue;
498                         dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
499                         if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
500                                 continue;
501                 }
502
503                 match = 1;
504                 for (i = 0; i < MAX_SYSFS_PAIRS; ++i) {
505                         pair = &dev->sysfs_pair[i];
506                         if ((pair->file[0] == '\0') || (pair->value[0] == '\0'))
507                                 break;
508                         if (match_pair(class_dev, sysfs_device, pair) != 0) {
509                                 match = 0;
510                                 break;
511                         }
512                 }
513                 if (match == 0)
514                         continue;
515
516                 /* found match */
517                 strfieldcpy(udev->name, dev->name);
518                 strfieldcpy(udev->symlink, dev->symlink);
519                 dbg("found matching attribute, '%s' becomes '%s' ",
520                     class_dev->name, udev->name);
521
522                 return 0;
523         }
524         return -ENODEV;
525 }
526
527 static int do_number(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
528 {
529         struct config_device *dev;
530         char path[SYSFS_PATH_MAX];
531         int found;
532         char *temp = NULL;
533
534         /* we have to have a sysfs device for NUMBER to work */
535         if (!sysfs_device)
536                 return -ENODEV;
537
538         list_for_each_entry(dev, &config_device_list, node) {
539                 if (dev->type != NUMBER)
540                         continue;
541
542                 dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
543                 if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
544                         continue;
545
546                 found = 0;
547                 strfieldcpy(path, sysfs_device->path);
548                 temp = strrchr(path, '/');
549                 dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
550                 if (strstr(temp, dev->id) != NULL) {
551                         found = 1;
552                 } else {
553                         *temp = 0x00;
554                         temp = strrchr(path, '/');
555                         dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
556                         if (strstr(temp, dev->id) != NULL)
557                                 found = 1;
558                 }
559                 if (!found)
560                         continue;
561                 strfieldcpy(udev->name, dev->name);
562                 strfieldcpy(udev->symlink, dev->symlink);
563                 dbg("found matching id '%s', '%s' becomes '%s'",
564                     dev->id, class_dev->name, udev->name);
565                 return 0;
566         }
567         return -ENODEV;
568 }
569
570 static int do_topology(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
571 {
572         struct config_device *dev;
573         char path[SYSFS_PATH_MAX];
574         int found;
575         char *temp = NULL;
576
577         /* we have to have a sysfs device for TOPOLOGY to work */
578         if (!sysfs_device)
579                 return -ENODEV;
580
581         list_for_each_entry(dev, &config_device_list, node) {
582                 if (dev->type != TOPOLOGY)
583                         continue;
584
585                 dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
586                 if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
587                         continue;
588
589                 found = 0;
590                 strfieldcpy(path, sysfs_device->path);
591                 temp = strrchr(path, '/');
592                 dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
593                 if (strstr(temp, dev->place) != NULL) {
594                         found = 1;
595                 } else {
596                         *temp = 0x00;
597                         temp = strrchr(path, '/');
598                         dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
599                         if (strstr(temp, dev->place) != NULL)
600                                 found = 1;
601                 }
602                 if (!found)
603                         continue;
604
605                 strfieldcpy(udev->name, dev->name);
606                 strfieldcpy(udev->symlink, dev->symlink);
607                 dbg("found matching place '%s', '%s' becomes '%s'",
608                     dev->place, class_dev->name, udev->name);
609                 return 0;
610         }
611         return -ENODEV;
612 }
613
614 static int do_replace(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
615 {
616         struct config_device *dev;
617
618         list_for_each_entry(dev, &config_device_list, node) {
619                 if (dev->type != REPLACE)
620                         continue;
621
622                 dbg("compare name '%s' with '%s'", dev->kernel_name, class_dev->name);
623                 if (strcmp_pattern(dev->kernel_name, class_dev->name) != 0)
624                         continue;
625
626                 strfieldcpy(udev->name, dev->name);
627                 strfieldcpy(udev->symlink, dev->symlink);
628                 dbg("found name, '%s' becomes '%s'", dev->kernel_name, udev->name);
629                 
630                 return 0;
631         }
632         return -ENODEV;
633 }
634
635 static void do_kernelname(struct sysfs_class_device *class_dev, struct udevice *udev)
636 {
637         /* heh, this is pretty simple... */
638         strfieldcpy(udev->name, class_dev->name);
639 }
640
641 static struct sysfs_device *get_sysfs_device(struct sysfs_class_device *class_dev)
642 {
643         struct sysfs_device *sysfs_device;
644         struct sysfs_class_device *class_dev_parent;
645         int loop;
646         char filename[SYSFS_PATH_MAX + 6];
647         int retval;
648         char *temp;
649         int partition = 0;
650
651         /* Figure out where the device symlink is at.  For char devices this will
652          * always be in the class_dev->path.  But for block devices, it's different.
653          * The main block device will have the device symlink in it's path, but
654          * all partitions have the symlink in its parent directory.
655          * But we need to watch out for block devices that do not have parents, yet
656          * look like a partition (fd0, loop0, etc.)  They all do not have a device
657          * symlink yet.  We do sit and spin on waiting for them right now, we should
658          * possibly have a whitelist for these devices here...
659          */
660         strcpy(filename, class_dev->path);
661         dbg("filename = %s", filename);
662         if (strcmp(class_dev->classname, SYSFS_BLOCK_NAME) == 0) {
663                 if (isdigit(class_dev->path[strlen(class_dev->path)-1])) {
664                         temp = strrchr(filename, '/');
665                         if (temp) {
666                                 char *temp2 = strrchr(filename, '/');
667                                 partition = 1;
668                                 *temp = 0x00;
669                                 dbg("temp2 = %s", temp2);
670                                 if (temp2 && (strcmp(temp2, "/block") == 0)) {
671                                         /* oops, we have no parent block device, so go back to original directory */
672                                         strcpy(filename, class_dev->path);
673                                         partition = 0;
674                                 }
675                         }
676                 }
677         }
678         strcat(filename, "/device");
679
680         loop = 2;
681         while (loop--) {
682                 struct stat buf;
683                 dbg("looking for '%s'", filename);
684                 retval = stat(filename, &buf);
685                 if (!retval)
686                         break;
687                 /* sleep to give the kernel a chance to create the device file */
688                 sleep(1);
689         }
690
691         loop = 1;       /* FIXME put a real value in here for when everything is fixed... */
692         while (loop--) {
693                 /* find the sysfs_device for this class device */
694                 /* Wouldn't it really be nice if libsysfs could do this for us? */
695                 sysfs_device = sysfs_get_classdev_device(class_dev);
696                 if (sysfs_device != NULL)
697                         goto exit;
698
699                 /* if it's a partition, we need to get the parent device */
700                 if (partition) {
701                         /* FIXME  HACK HACK HACK HACK
702                          * for some reason partitions need this extra sleep here, in order
703                          * to wait for the device properly.  Once the libsysfs code is
704                          * fixed properly, this sleep should go away, and we can just loop above.
705                          */
706                         sleep(1);
707                         dbg("really is a partition");
708                         class_dev_parent = sysfs_get_classdev_parent(class_dev);
709                         if (class_dev_parent == NULL) {
710                                 dbg("sysfs_get_classdev_parent for class device '%s' failed", class_dev->name);
711                         } else {
712                                 dbg("class_dev_parent->name='%s'", class_dev_parent->name);
713                                 sysfs_device = sysfs_get_classdev_device(class_dev_parent);
714                                 if (sysfs_device != NULL)
715                                         goto exit;
716                         }
717                 }
718                 /* sleep to give the kernel a chance to create the link */
719                 /* FIXME remove comment...
720                 sleep(1); */
721         }
722         dbg("Timed out waiting for device symlink, continuing on anyway...");
723 exit:
724         return sysfs_device;
725 }
726
727 int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *udev)
728 {
729         struct sysfs_device *sysfs_device = NULL;
730         int retval = 0;
731         struct perm_device *perm;
732         char *pos;
733
734         udev->mode = 0;
735
736         /* find the sysfs_device associated with this class device */
737         sysfs_device = get_sysfs_device(class_dev);
738         if (sysfs_device) {
739                 dbg("sysfs_device->path='%s'", sysfs_device->path);
740                 dbg("sysfs_device->bus_id='%s'", sysfs_device->bus_id);
741                 dbg("sysfs_device->bus='%s'", sysfs_device->bus);
742                 strfieldcpy(udev->bus_id, sysfs_device->bus_id);
743                 wait_for_device_to_initialize(sysfs_device);
744         } else {
745                 dbg("class_dev->name = '%s'", class_dev->name);
746         }
747
748         strfieldcpy(udev->kernel_name, class_dev->name);
749
750         /* get kernel number */
751         pos = class_dev->name + strlen(class_dev->name);
752         while (isdigit(*(pos-1)))
753                 pos--;
754         strfieldcpy(udev->kernel_number, pos);
755         dbg("kernel_number='%s'", udev->kernel_number);
756
757         /* rules are looked at in priority order */
758         retval = do_ignore(class_dev, udev, sysfs_device);
759         if (retval == 0) {
760                 dbg("name, '%s' is being ignored", class_dev->name);
761                 return 1;
762         }
763
764         retval = do_callout(class_dev, udev, sysfs_device);
765         if (retval == 0)
766                 goto found;
767
768         retval = do_label(class_dev, udev, sysfs_device);
769         if (retval == 0)
770                 goto found;
771
772         retval = do_number(class_dev, udev, sysfs_device);
773         if (retval == 0)
774                 goto found;
775
776         retval = do_topology(class_dev, udev, sysfs_device);
777         if (retval == 0)
778                 goto found;
779
780         retval = do_replace(class_dev, udev, sysfs_device);
781         if (retval == 0)
782                 goto found;
783
784         do_kernelname(class_dev, udev);
785         goto done;
786
787 found:
788         /* substitute placeholder */
789         apply_format(udev, udev->name);
790         apply_format(udev, udev->symlink);
791
792 done:
793         perm = find_perm(udev->name);
794         if (perm) {
795                 udev->mode = perm->mode;
796                 strfieldcpy(udev->owner, perm->owner);
797                 strfieldcpy(udev->group, perm->group);
798         } else {
799                 /* no matching perms found :( */
800                 udev->mode = get_default_mode(class_dev);
801                 udev->owner[0] = 0x00;
802                 udev->group[0] = 0x00;
803         }
804         dbg("name, '%s' is going to have owner='%s', group='%s', mode = %#o",
805             udev->name, udev->owner, udev->group, udev->mode);
806
807         return 0;
808 }
809
810 int namedev_init(void)
811 {
812         int retval;
813
814         retval = namedev_init_rules();
815         if (retval)
816                 return retval;
817
818         retval = namedev_init_permissions();
819         if (retval)
820                 return retval;
821
822         dump_config_dev_list();
823         dump_perm_dev_list();
824         return retval;
825 }