chiark / gitweb /
[PATCH] small cleanup
[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 exec_callout(struct config_device *dev, char *value, int len)
302 {
303         int retval;
304         int res;
305         int status;
306         int fds[2];
307         pid_t pid;
308         int value_set = 0;
309         char buffer[256];
310         char *pos;
311         char *args[CALLOUT_MAXARG];
312         int i;
313
314         dbg("callout to '%s'", dev->exec_program);
315         retval = pipe(fds);
316         if (retval != 0) {
317                 dbg("pipe failed");
318                 return -1;
319         }
320         pid = fork();
321         if (pid == -1) {
322                 dbg("fork failed");
323                 return -1;
324         }
325
326         if (pid == 0) {
327                 /* child */
328                 close(STDOUT_FILENO);
329                 dup(fds[1]);    /* dup write side of pipe to STDOUT */
330                 if (strchr(dev->exec_program, ' ')) {
331                         /* callout with arguments */
332                         pos = dev->exec_program;
333                         for (i=0; i < CALLOUT_MAXARG-1; i++) {
334                                 args[i] = strsep(&pos, " ");
335                                 if (args[i] == NULL)
336                                         break;
337                         }
338                         if (args[i]) {
339                                 dbg("too many args - %d", i);
340                                 args[i] = NULL;
341                         }
342                         retval = execve(args[0], args, main_envp);
343                 } else {
344                         retval = execve(dev->exec_program, main_argv, main_envp);
345                 }
346                 if (retval != 0) {
347                         dbg("child execve failed");
348                         exit(1);
349                 }
350                 return -1; /* avoid compiler warning */
351         } else {
352                 /* parent reads from fds[0] */
353                 close(fds[1]);
354                 retval = 0;
355                 while (1) {
356                         res = read(fds[0], buffer, sizeof(buffer) - 1);
357                         if (res <= 0)
358                                 break;
359                         buffer[res] = '\0';
360                         if (res > len) {
361                                 dbg("callout len %d too short", len);
362                                 retval = -1;
363                         }
364                         if (value_set) {
365                                 dbg("callout value already set");
366                                 retval = -1;
367                         } else {
368                                 value_set = 1;
369                                 strncpy(value, buffer, len);
370                                 pos = value + strlen(value)-1;
371                                 if (pos[0] == '\n')
372                                 pos[0] = '\0';
373                                 dbg("callout returned '%s'", value);
374                         }
375                 }
376                 close(fds[0]);
377                 res = wait(&status);
378                 if (res < 0) {
379                         dbg("wait failed result %d", res);
380                         retval = -1;
381                 }
382
383 #ifndef __KLIBC__
384                 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
385                         dbg("callout program status 0x%x", status);
386                         retval = -1;
387                 }
388 #endif
389         }
390         return retval;
391 }
392
393 static int do_callout(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
394 {
395         struct config_device *dev;
396
397         list_for_each_entry(dev, &config_device_list, node) {
398                 if (dev->type != CALLOUT)
399                         continue;
400
401                 if (dev->bus[0] != '\0') {
402                         /* as the user specified a bus, we must match it up */
403                         if (!sysfs_device)
404                                 continue;
405                         dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
406                         if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
407                                 continue;
408                 }
409
410                 /* substitute anything that needs to be in the program name */
411                 apply_format(udev, dev->exec_program);
412                 if (exec_callout(dev, udev->callout_value, NAME_SIZE))
413                         continue;
414                 if (strcmp_pattern(dev->id, udev->callout_value) != 0)
415                         continue;
416                 strfieldcpy(udev->name, dev->name);
417                 strfieldcpy(udev->symlink, dev->symlink);
418                 dbg("callout returned matching value '%s', '%s' becomes '%s'",
419                     dev->id, class_dev->name, udev->name);
420                 return 0;
421         }
422         return -ENODEV;
423 }
424
425 static int match_pair(struct sysfs_class_device *class_dev, struct sysfs_device *sysfs_device, struct sysfs_pair *pair)
426 {
427         struct sysfs_attribute *tmpattr = NULL;
428         char *c;
429
430         if ((pair == NULL) || (pair->file[0] == '\0') || (pair->value == '\0'))
431                 return -ENODEV;
432
433         dbg("look for device attribute '%s'", pair->file);
434         /* try to find the attribute in the class device directory */
435         tmpattr = sysfs_get_classdev_attr(class_dev, pair->file);
436         if (tmpattr)
437                 goto label_found;
438
439         /* look in the class device directory if present */
440         if (sysfs_device) {
441                 tmpattr = sysfs_get_device_attr(sysfs_device, pair->file);
442                 if (tmpattr)
443                         goto label_found;
444         }
445
446         return -ENODEV;
447
448 label_found:
449         c = tmpattr->value + strlen(tmpattr->value)-1;
450         if (*c == '\n')
451                 *c = 0x00;
452         dbg("compare attribute '%s' value '%s' with '%s'",
453                   pair->file, tmpattr->value, pair->value);
454         if (strcmp_pattern(pair->value, tmpattr->value) != 0)
455                 return -ENODEV;
456
457         dbg("found matching attribute '%s' with value '%s'",
458             pair->file, pair->value);
459         return 0;
460 }
461
462 static int do_label(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
463 {
464         struct sysfs_pair *pair;
465         struct config_device *dev;
466         int i;
467         int match;
468
469         list_for_each_entry(dev, &config_device_list, node) {
470                 if (dev->type != LABEL)
471                         continue;
472
473                 if (dev->bus[0] != '\0') {
474                         /* as the user specified a bus, we must match it up */
475                         if (!sysfs_device)
476                                 continue;
477                         dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
478                         if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
479                                 continue;
480                 }
481
482                 match = 1;
483                 for (i = 0; i < MAX_SYSFS_PAIRS; ++i) {
484                         pair = &dev->sysfs_pair[i];
485                         if ((pair->file[0] == '\0') || (pair->value[0] == '\0'))
486                                 break;
487                         if (match_pair(class_dev, sysfs_device, pair) != 0) {
488                                 match = 0;
489                                 break;
490                         }
491                 }
492                 if (match == 0)
493                         continue;
494
495                 /* found match */
496                 strfieldcpy(udev->name, dev->name);
497                 strfieldcpy(udev->symlink, dev->symlink);
498                 dbg("found matching attribute, '%s' becomes '%s' ",
499                     class_dev->name, udev->name);
500
501                 return 0;
502         }
503         return -ENODEV;
504 }
505
506 static int do_number(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
507 {
508         struct config_device *dev;
509         char path[SYSFS_PATH_MAX];
510         int found;
511         char *temp = NULL;
512
513         /* we have to have a sysfs device for NUMBER to work */
514         if (!sysfs_device)
515                 return -ENODEV;
516
517         list_for_each_entry(dev, &config_device_list, node) {
518                 if (dev->type != NUMBER)
519                         continue;
520
521                 dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
522                 if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
523                         continue;
524
525                 found = 0;
526                 strfieldcpy(path, sysfs_device->path);
527                 temp = strrchr(path, '/');
528                 dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
529                 if (strstr(temp, dev->id) != NULL) {
530                         found = 1;
531                 } else {
532                         *temp = 0x00;
533                         temp = strrchr(path, '/');
534                         dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
535                         if (strstr(temp, dev->id) != NULL)
536                                 found = 1;
537                 }
538                 if (!found)
539                         continue;
540                 strfieldcpy(udev->name, dev->name);
541                 strfieldcpy(udev->symlink, dev->symlink);
542                 dbg("found matching id '%s', '%s' becomes '%s'",
543                     dev->id, class_dev->name, udev->name);
544                 return 0;
545         }
546         return -ENODEV;
547 }
548
549 static int do_topology(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
550 {
551         struct config_device *dev;
552         char path[SYSFS_PATH_MAX];
553         int found;
554         char *temp = NULL;
555
556         /* we have to have a sysfs device for TOPOLOGY to work */
557         if (!sysfs_device)
558                 return -ENODEV;
559
560         list_for_each_entry(dev, &config_device_list, node) {
561                 if (dev->type != TOPOLOGY)
562                         continue;
563
564                 dbg("dev->bus='%s' sysfs_device->bus='%s'", dev->bus, sysfs_device->bus);
565                 if (strcasecmp(dev->bus, sysfs_device->bus) != 0)
566                         continue;
567
568                 found = 0;
569                 strfieldcpy(path, sysfs_device->path);
570                 temp = strrchr(path, '/');
571                 dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
572                 if (strstr(temp, dev->place) != NULL) {
573                         found = 1;
574                 } else {
575                         *temp = 0x00;
576                         temp = strrchr(path, '/');
577                         dbg("search '%s' in '%s', path='%s'", dev->place, temp, path);
578                         if (strstr(temp, dev->place) != NULL)
579                                 found = 1;
580                 }
581                 if (!found)
582                         continue;
583
584                 strfieldcpy(udev->name, dev->name);
585                 strfieldcpy(udev->symlink, dev->symlink);
586                 dbg("found matching place '%s', '%s' becomes '%s'",
587                     dev->place, class_dev->name, udev->name);
588                 return 0;
589         }
590         return -ENODEV;
591 }
592
593 static int do_replace(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
594 {
595         struct config_device *dev;
596
597         list_for_each_entry(dev, &config_device_list, node) {
598                 if (dev->type != REPLACE)
599                         continue;
600
601                 dbg("compare name '%s' with '%s'", dev->kernel_name, class_dev->name);
602                 if (strcmp_pattern(dev->kernel_name, class_dev->name) != 0)
603                         continue;
604
605                 strfieldcpy(udev->name, dev->name);
606                 strfieldcpy(udev->symlink, dev->symlink);
607                 dbg("found name, '%s' becomes '%s'", dev->kernel_name, udev->name);
608                 
609                 return 0;
610         }
611         return -ENODEV;
612 }
613
614 static void do_kernelname(struct sysfs_class_device *class_dev, struct udevice *udev)
615 {
616         /* heh, this is pretty simple... */
617         strfieldcpy(udev->name, class_dev->name);
618 }
619
620 static struct sysfs_device *get_sysfs_device(struct sysfs_class_device *class_dev)
621 {
622         struct sysfs_device *sysfs_device;
623         struct sysfs_class_device *class_dev_parent;
624         int loop;
625         char filename[SYSFS_PATH_MAX + 6];
626         int retval;
627         char *temp;
628         int partition = 0;
629
630         /* Figure out where the device symlink is at.  For char devices this will
631          * always be in the class_dev->path.  But for block devices, it's different.
632          * The main block device will have the device symlink in it's path, but
633          * all partitions have the symlink in its parent directory.
634          * But we need to watch out for block devices that do not have parents, yet
635          * look like a partition (fd0, loop0, etc.)  They all do not have a device
636          * symlink yet.  We do sit and spin on waiting for them right now, we should
637          * possibly have a whitelist for these devices here...
638          */
639         strcpy(filename, class_dev->path);
640         dbg("filename = %s", filename);
641         if (strcmp(class_dev->classname, SYSFS_BLOCK_NAME) == 0) {
642                 if (isdigit(class_dev->path[strlen(class_dev->path)-1])) {
643                         temp = strrchr(filename, '/');
644                         if (temp) {
645                                 char *temp2 = strrchr(filename, '/');
646                                 partition = 1;
647                                 *temp = 0x00;
648                                 dbg("temp2 = %s", temp2);
649                                 if (temp2 && (strcmp(temp2, "/block") == 0)) {
650                                         /* oops, we have no parent block device, so go back to original directory */
651                                         strcpy(filename, class_dev->path);
652                                         partition = 0;
653                                 }
654                         }
655                 }
656         }
657         strcat(filename, "/device");
658
659         loop = 2;
660         while (loop--) {
661                 struct stat buf;
662                 dbg("looking for '%s'", filename);
663                 retval = stat(filename, &buf);
664                 if (!retval)
665                         break;
666                 /* sleep to give the kernel a chance to create the device file */
667                 sleep(1);
668         }
669
670         loop = 1;       /* FIXME put a real value in here for when everything is fixed... */
671         while (loop--) {
672                 /* find the sysfs_device for this class device */
673                 /* Wouldn't it really be nice if libsysfs could do this for us? */
674                 sysfs_device = sysfs_get_classdev_device(class_dev);
675                 if (sysfs_device != NULL)
676                         goto exit;
677
678                 /* if it's a partition, we need to get the parent device */
679                 if (partition) {
680                         /* FIXME  HACK HACK HACK HACK
681                          * for some reason partitions need this extra sleep here, in order
682                          * to wait for the device properly.  Once the libsysfs code is
683                          * fixed properly, this sleep should go away, and we can just loop above.
684                          */
685                         sleep(1);
686                         dbg("really is a partition");
687                         class_dev_parent = sysfs_get_classdev_parent(class_dev);
688                         if (class_dev_parent == NULL) {
689                                 dbg("sysfs_get_classdev_parent for class device '%s' failed", class_dev->name);
690                         } else {
691                                 dbg("class_dev_parent->name='%s'", class_dev_parent->name);
692                                 sysfs_device = sysfs_get_classdev_device(class_dev_parent);
693                                 if (sysfs_device != NULL)
694                                         goto exit;
695                         }
696                 }
697                 /* sleep to give the kernel a chance to create the link */
698                 /* FIXME remove comment...
699                 sleep(1); */
700         }
701         dbg("Timed out waiting for device symlink, continuing on anyway...");
702 exit:
703         return sysfs_device;
704 }
705
706 int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *udev)
707 {
708         struct sysfs_device *sysfs_device = NULL;
709         int retval = 0;
710         struct perm_device *perm;
711         char *pos;
712
713         udev->mode = 0;
714
715         /* find the sysfs_device associated with this class device */
716         sysfs_device = get_sysfs_device(class_dev);
717         if (sysfs_device) {
718                 dbg("sysfs_device->path='%s'", sysfs_device->path);
719                 dbg("sysfs_device->bus_id='%s'", sysfs_device->bus_id);
720                 dbg("sysfs_device->bus='%s'", sysfs_device->bus);
721                 strfieldcpy(udev->bus_id, sysfs_device->bus_id);
722                 wait_for_device_to_initialize(sysfs_device);
723         } else {
724                 dbg("class_dev->name = '%s'", class_dev->name);
725         }
726
727         strfieldcpy(udev->kernel_name, class_dev->name);
728
729         /* get kernel number */
730         pos = class_dev->name + strlen(class_dev->name);
731         while (isdigit(*(pos-1)))
732                 pos--;
733         strfieldcpy(udev->kernel_number, pos);
734         dbg("kernel_number='%s'", udev->kernel_number);
735
736         /* rules are looked at in priority order */
737         retval = do_callout(class_dev, udev, sysfs_device);
738         if (retval == 0)
739                 goto found;
740
741         retval = do_label(class_dev, udev, sysfs_device);
742         if (retval == 0)
743                 goto found;
744
745         retval = do_number(class_dev, udev, sysfs_device);
746         if (retval == 0)
747                 goto found;
748
749         retval = do_topology(class_dev, udev, sysfs_device);
750         if (retval == 0)
751                 goto found;
752
753         retval = do_replace(class_dev, udev, sysfs_device);
754         if (retval == 0)
755                 goto found;
756
757         do_kernelname(class_dev, udev);
758         goto done;
759
760 found:
761         /* substitute placeholder */
762         apply_format(udev, udev->name);
763         apply_format(udev, udev->symlink);
764
765 done:
766         perm = find_perm(udev->name);
767         if (perm) {
768                 udev->mode = perm->mode;
769                 strfieldcpy(udev->owner, perm->owner);
770                 strfieldcpy(udev->group, perm->group);
771         } else {
772                 /* no matching perms found :( */
773                 udev->mode = get_default_mode(class_dev);
774                 udev->owner[0] = 0x00;
775                 udev->group[0] = 0x00;
776         }
777         dbg("name, '%s' is going to have owner='%s', group='%s', mode = %#o",
778             udev->name, udev->owner, udev->group, udev->mode);
779
780         return 0;
781 }
782
783 int namedev_init(void)
784 {
785         int retval;
786
787         retval = namedev_init_rules();
788         if (retval)
789                 return retval;
790
791         retval = namedev_init_permissions();
792         if (retval)
793                 return retval;
794
795         dump_config_dev_list();
796         dump_perm_dev_list();
797         return retval;
798 }