]> git.ipfire.org Git - thirdparty/systemd.git/blob - namedev.c
[PATCH] namedev.c strcat tweak
[thirdparty/systemd.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 /* define this to enable parsing debugging */
25 /* #define DEBUG_PARSER */
26
27 #include <stddef.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdio.h>
31 #include <fcntl.h>
32 #include <ctype.h>
33 #include <unistd.h>
34 #include <errno.h>
35 #include <sys/wait.h>
36
37 #include "list.h"
38 #include "udev.h"
39 #include "udev_version.h"
40 #include "namedev.h"
41 #include "libsysfs/libsysfs.h"
42 #include "klibc_fixups.h"
43
44 #define TYPE_LABEL "LABEL"
45 #define TYPE_NUMBER "NUMBER"
46 #define TYPE_TOPOLOGY "TOPOLOGY"
47 #define TYPE_REPLACE "REPLACE"
48 #define TYPE_CALLOUT "CALLOUT"
49 #define CALLOUT_MAXARG 8
50
51 static LIST_HEAD(config_device_list);
52
53 /* s2 may end with '*' to match everything */
54 static int strncmp_wildcard(char *s1, char *s2, int max)
55 {
56 int len = strlen(s2);
57 if (len > max)
58 len = max;
59 if (s2[len-1] == '*')
60 len--;
61 else
62 len = max;
63 return strncmp(s1, s2, len);
64 }
65
66 static void dump_dev(struct config_device *dev)
67 {
68 switch (dev->type) {
69 case KERNEL_NAME:
70 dbg_parse("KERNEL name='%s' ,"
71 "owner='%s', group='%s', mode=%#o",
72 dev->name, dev->owner, dev->group, dev->mode);
73 break;
74 case LABEL:
75 dbg_parse("LABEL name='%s', bus='%s', sysfs_file='%s', sysfs_value='%s', "
76 "owner='%s', group='%s', mode=%#o",
77 dev->name, dev->bus, dev->sysfs_file, dev->sysfs_value,
78 dev->owner, dev->group, dev->mode);
79 break;
80 case NUMBER:
81 dbg_parse("NUMBER name='%s', bus='%s', id='%s', "
82 "owner='%s', group='%s', mode=%#o",
83 dev->name, dev->bus, dev->id,
84 dev->owner, dev->group, dev->mode);
85 break;
86 case TOPOLOGY:
87 dbg_parse("TOPOLOGY name='%s', bus='%s', place='%s', "
88 "owner='%s', group='%s', mode=%#o",
89 dev->name, dev->bus, dev->place,
90 dev->owner, dev->group, dev->mode);
91 break;
92 case REPLACE:
93 dbg_parse("REPLACE name=%s, kernel_name=%s, "
94 "owner='%s', group='%s', mode=%#o",
95 dev->name, dev->kernel_name,
96 dev->owner, dev->group, dev->mode);
97 break;
98 case CALLOUT:
99 dbg_parse("CALLOUT name='%s', bus='%s', program='%s', id='%s', "
100 "owner='%s', group='%s', mode=%#o",
101 dev->name, dev->bus, dev->exec_program, dev->id,
102 dev->owner, dev->group, dev->mode);
103 break;
104 default:
105 dbg_parse("unknown type of method");
106 }
107 }
108
109 #define copy_var(a, b, var) \
110 if (b->var) \
111 a->var = b->var;
112
113 #define copy_string(a, b, var) \
114 if (strlen(b->var)) \
115 strcpy(a->var, b->var);
116
117 static int add_dev(struct config_device *new_dev)
118 {
119 struct list_head *tmp;
120 struct config_device *tmp_dev;
121
122 /* update the values if we already have the device */
123 list_for_each(tmp, &config_device_list) {
124 struct config_device *dev = list_entry(tmp, struct config_device, node);
125 if (strncmp_wildcard(dev->name, new_dev->name, sizeof(dev->name)))
126 continue;
127 copy_var(dev, new_dev, type);
128 copy_var(dev, new_dev, mode);
129 copy_string(dev, new_dev, bus);
130 copy_string(dev, new_dev, sysfs_file);
131 copy_string(dev, new_dev, sysfs_value);
132 copy_string(dev, new_dev, id);
133 copy_string(dev, new_dev, place);
134 copy_string(dev, new_dev, kernel_name);
135 copy_string(dev, new_dev, owner);
136 copy_string(dev, new_dev, group);
137 return 0;
138 }
139
140 /* not found, add new structure to the device list */
141 tmp_dev = malloc(sizeof(*tmp_dev));
142 if (!tmp_dev)
143 return -ENOMEM;
144 memcpy(tmp_dev, new_dev, sizeof(*tmp_dev));
145 list_add(&tmp_dev->node, &config_device_list);
146 //dump_dev(tmp_dev);
147 return 0;
148 }
149
150 static void dump_dev_list(void)
151 {
152 struct list_head *tmp;
153
154 list_for_each(tmp, &config_device_list) {
155 struct config_device *dev = list_entry(tmp, struct config_device, node);
156 dump_dev(dev);
157 }
158 }
159
160 static int get_pair(char **orig_string, char **left, char **right)
161 {
162 char *temp;
163 char *string = *orig_string;
164
165 if (!string)
166 return -ENODEV;
167
168 /* eat any whitespace */
169 while (isspace(*string))
170 ++string;
171
172 /* split based on '=' */
173 temp = strsep(&string, "=");
174 *left = temp;
175 if (!string)
176 return -ENODEV;
177
178 /* take the right side and strip off the '"' */
179 while (isspace(*string))
180 ++string;
181 if (*string == '"')
182 ++string;
183 else
184 return -ENODEV;
185
186 temp = strsep(&string, "\"");
187 if (!string || *temp == '\0')
188 return -ENODEV;
189 *right = temp;
190 *orig_string = string;
191
192 return 0;
193 }
194
195 static int get_value(const char *left, char **orig_string, char **ret_string)
196 {
197 int retval;
198 char *left_string;
199
200 retval = get_pair(orig_string, &left_string, ret_string);
201 if (retval)
202 return retval;
203 if (strcasecmp(left_string, left) != 0)
204 return -ENODEV;
205 return 0;
206 }
207
208 static int namedev_init_config(void)
209 {
210 char line[255];
211 int lineno;
212 char *temp;
213 char *temp2;
214 char *temp3;
215 FILE *fd;
216 int retval = 0;
217 struct config_device dev;
218
219 dbg("opening '%s' to read as config", udev_config_filename);
220 fd = fopen(udev_config_filename, "r");
221 if (fd == NULL) {
222 dbg("can't open '%s'", udev_config_filename);
223 return -ENODEV;
224 }
225
226 /* loop through the whole file */
227 lineno = 0;
228 while (1) {
229 /* get a line */
230 temp = fgets(line, sizeof(line), fd);
231 if (temp == NULL)
232 goto exit;
233 lineno++;
234
235 dbg_parse("read '%s'", temp);
236
237 /* eat the whitespace at the beginning of the line */
238 while (isspace(*temp))
239 ++temp;
240
241 /* empty line? */
242 if (*temp == 0x00)
243 continue;
244
245 /* see if this is a comment */
246 if (*temp == COMMENT_CHARACTER)
247 continue;
248
249 memset(&dev, 0x00, sizeof(struct config_device));
250
251 /* parse the line */
252 temp2 = strsep(&temp, ",");
253 if (strcasecmp(temp2, TYPE_LABEL) == 0) {
254 /* label type */
255 dev.type = LABEL;
256
257 /* BUS="bus" */
258 retval = get_value("BUS", &temp, &temp3);
259 if (retval)
260 break;
261 strfieldcpy(dev.bus, temp3);
262
263 /* file="value" */
264 temp2 = strsep(&temp, ",");
265 retval = get_pair(&temp, &temp2, &temp3);
266 if (retval)
267 break;
268 strfieldcpy(dev.sysfs_file, temp2);
269 strfieldcpy(dev.sysfs_value, temp3);
270
271 /* NAME="new_name" */
272 temp2 = strsep(&temp, ",");
273 retval = get_value("NAME", &temp, &temp3);
274 if (retval)
275 break;
276 strfieldcpy(dev.name, temp3);
277
278 dbg_parse("LABEL name='%s', bus='%s', "
279 "sysfs_file='%s', sysfs_value='%s'",
280 dev.name, dev.bus, dev.sysfs_file,
281 dev.sysfs_value);
282 }
283
284 if (strcasecmp(temp2, TYPE_NUMBER) == 0) {
285 /* number type */
286 dev.type = NUMBER;
287
288 /* BUS="bus" */
289 retval = get_value("BUS", &temp, &temp3);
290 if (retval)
291 break;
292 strfieldcpy(dev.bus, temp3);
293
294 /* ID="id" */
295 temp2 = strsep(&temp, ",");
296 retval = get_value("ID", &temp, &temp3);
297 if (retval)
298 break;
299 strfieldcpy(dev.id, temp3);
300
301 /* NAME="new_name" */
302 temp2 = strsep(&temp, ",");
303 retval = get_value("NAME", &temp, &temp3);
304 if (retval)
305 break;
306 strfieldcpy(dev.name, temp3);
307
308 dbg_parse("NUMBER name='%s', bus='%s', id='%s'",
309 dev.name, dev.bus, dev.id);
310 }
311
312 if (strcasecmp(temp2, TYPE_TOPOLOGY) == 0) {
313 /* number type */
314 dev.type = TOPOLOGY;
315
316 /* BUS="bus" */
317 retval = get_value("BUS", &temp, &temp3);
318 if (retval)
319 break;
320 strfieldcpy(dev.bus, temp3);
321
322 /* PLACE="place" */
323 temp2 = strsep(&temp, ",");
324 retval = get_value("PLACE", &temp, &temp3);
325 if (retval)
326 break;
327 strfieldcpy(dev.place, temp3);
328
329 /* NAME="new_name" */
330 temp2 = strsep(&temp, ",");
331 retval = get_value("NAME", &temp, &temp3);
332 if (retval)
333 break;
334 strfieldcpy(dev.name, temp3);
335
336 dbg_parse("TOPOLOGY name='%s', bus='%s', place='%s'",
337 dev.name, dev.bus, dev.place);
338 }
339
340 if (strcasecmp(temp2, TYPE_REPLACE) == 0) {
341 /* number type */
342 dev.type = REPLACE;
343
344 /* KERNEL="kernel_name" */
345 retval = get_value("KERNEL", &temp, &temp3);
346 if (retval)
347 break;
348 strfieldcpy(dev.kernel_name, temp3);
349
350 /* NAME="new_name" */
351 temp2 = strsep(&temp, ",");
352 retval = get_value("NAME", &temp, &temp3);
353 if (retval)
354 break;
355 strfieldcpy(dev.name, temp3);
356 dbg_parse("REPLACE name='%s', kernel_name='%s'",
357 dev.name, dev.kernel_name);
358 }
359 if (strcasecmp(temp2, TYPE_CALLOUT) == 0) {
360 /* number type */
361 dev.type = CALLOUT;
362
363 /* BUS="bus" */
364 retval = get_value("BUS", &temp, &temp3);
365 if (retval)
366 break;
367 strfieldcpy(dev.bus, temp3);
368
369 /* PROGRAM="executable" */
370 temp2 = strsep(&temp, ",");
371 retval = get_value("PROGRAM", &temp, &temp3);
372 if (retval)
373 break;
374 strfieldcpy(dev.exec_program, temp3);
375
376 /* ID="id" */
377 temp2 = strsep(&temp, ",");
378 retval = get_value("ID", &temp, &temp3);
379 if (retval)
380 break;
381 strfieldcpy(dev.id, temp3);
382
383 /* NAME="new_name" */
384 temp2 = strsep(&temp, ",");
385 retval = get_value("NAME", &temp, &temp3);
386 if (retval)
387 break;
388 strfieldcpy(dev.name, temp3);
389 dbg_parse("CALLOUT name='%s', program='%s'",
390 dev.name, dev.exec_program);
391 }
392
393 retval = add_dev(&dev);
394 if (retval) {
395 dbg("add_dev returned with error %d", retval);
396 goto exit;
397 }
398 }
399 dbg_parse("%s:%d:%Zd: error parsing '%s'", udev_config_filename,
400 lineno, temp - line, temp);
401 exit:
402 fclose(fd);
403 return retval;
404 }
405
406
407 static int namedev_init_permissions(void)
408 {
409 char line[255];
410 char *temp;
411 char *temp2;
412 FILE *fd;
413 int retval = 0;
414 struct config_device dev;
415
416 dbg("opening '%s' to read as permissions config", udev_config_permission_filename);
417 fd = fopen(udev_config_permission_filename, "r");
418 if (fd == NULL) {
419 dbg("can't open '%s'", udev_config_permission_filename);
420 return -ENODEV;
421 }
422
423 /* loop through the whole file */
424 while (1) {
425 temp = fgets(line, sizeof(line), fd);
426 if (temp == NULL)
427 break;
428
429 dbg_parse("read '%s'", temp);
430
431 /* eat the whitespace at the beginning of the line */
432 while (isspace(*temp))
433 ++temp;
434
435 /* empty line? */
436 if (*temp == 0x00)
437 continue;
438
439 /* see if this is a comment */
440 if (*temp == COMMENT_CHARACTER)
441 continue;
442
443 memset(&dev, 0x00, sizeof(dev));
444
445 /* parse the line */
446 temp2 = strsep(&temp, ":");
447 if (!temp2) {
448 dbg("cannot parse line '%s'", line);
449 continue;
450 }
451 strncpy(dev.name, temp2, sizeof(dev.name));
452
453 temp2 = strsep(&temp, ":");
454 if (!temp2) {
455 dbg("cannot parse line '%s'", line);
456 continue;
457 }
458 strncpy(dev.owner, temp2, sizeof(dev.owner));
459
460 temp2 = strsep(&temp, ":");
461 if (!temp2) {
462 dbg("cannot parse line '%s'", line);
463 continue;
464 }
465 strncpy(dev.group, temp2, sizeof(dev.owner));
466
467 dev.mode = strtol(temp, NULL, 8);
468
469 dbg_parse("name='%s', owner='%s', group='%s', mode=%#o",
470 dev.name, dev.owner, dev.group,
471 dev.mode);
472 retval = add_dev(&dev);
473 if (retval) {
474 dbg("add_dev returned with error %d", retval);
475 goto exit;
476 }
477 }
478
479 exit:
480 fclose(fd);
481 return retval;
482 }
483
484 static mode_t get_default_mode(struct sysfs_class_device *class_dev)
485 {
486 /* just default everyone to rw for the world! */
487 return 0666;
488 }
489
490 static void build_kernel_number(struct sysfs_class_device *class_dev, struct udevice *udev)
491 {
492 char *dig;
493
494 /* FIXME, figure out how to handle stuff like sdaj which will not work right now. */
495 dig = class_dev->name + strlen(class_dev->name);
496 while (isdigit(*(dig-1)))
497 dig--;
498 strfieldcpy(udev->kernel_number, dig);
499 dbg("kernel_number='%s'", udev->kernel_number);
500 }
501
502 static void apply_format(struct udevice *udev, unsigned char *string)
503 {
504 char name[NAME_SIZE];
505 char *pos;
506
507 while (1) {
508 pos = strchr(string, '%');
509
510 if (pos) {
511 strfieldcpy(name, pos+2);
512 *pos = 0x00;
513 switch (pos[1]) {
514 case 'b':
515 if (strlen(udev->bus_id) == 0)
516 break;
517 strcat(pos, udev->bus_id);
518 dbg("substitute bus_id '%s'", udev->bus_id);
519 break;
520 case 'n':
521 if (strlen(udev->kernel_number) == 0)
522 break;
523 strcat(pos, udev->kernel_number);
524 dbg("substitute kernel number '%s'", udev->kernel_number);
525 break;
526 case 'm':
527 sprintf(pos, "%u", udev->minor);
528 dbg("substitute minor number '%u'", udev->minor);
529 break;
530 case 'M':
531 sprintf(pos, "%u", udev->major);
532 dbg("substitute major number '%u'", udev->major);
533 break;
534 case 'c':
535 if (strlen(udev->callout_value) == 0)
536 break;
537 strcat(pos, udev->callout_value);
538 dbg("substitute callout output '%s'", udev->callout_value);
539 break;
540 default:
541 dbg("unknown substitution type '%%%c'", pos[1]);
542 break;
543 }
544 strcat(string, name);
545 } else
546 break;
547 }
548 }
549
550
551 static int exec_callout(struct config_device *dev, char *value, int len)
552 {
553 int retval;
554 int res;
555 int status;
556 int fds[2];
557 pid_t pid;
558 int value_set = 0;
559 char buffer[256];
560 char *arg;
561 char *args[CALLOUT_MAXARG];
562 int i;
563
564 dbg("callout to '%s'", dev->exec_program);
565 retval = pipe(fds);
566 if (retval != 0) {
567 dbg("pipe failed");
568 return -1;
569 }
570 pid = fork();
571 if (pid == -1) {
572 dbg("fork failed");
573 return -1;
574 }
575
576 if (pid == 0) {
577 /* child */
578 close(STDOUT_FILENO);
579 dup(fds[1]); /* dup write side of pipe to STDOUT */
580 if (strchr(dev->exec_program, ' ')) {
581 /* callout with arguments */
582 arg = dev->exec_program;
583 for (i=0; i < CALLOUT_MAXARG-1; i++) {
584 args[i] = strsep(&arg, " ");
585 if (args[i] == NULL)
586 break;
587 }
588 if (args[i]) {
589 dbg("too many args - %d", i);
590 args[i] = NULL;
591 }
592 retval = execve(args[0], args, main_envp);
593 } else {
594 retval = execve(dev->exec_program, main_argv, main_envp);
595 }
596 if (retval != 0) {
597 dbg("child execve failed");
598 exit(1);
599 }
600 return -1; /* avoid compiler warning */
601 } else {
602 /* parent reads from fds[0] */
603 close(fds[1]);
604 retval = 0;
605 while (1) {
606 res = read(fds[0], buffer, sizeof(buffer) - 1);
607 if (res <= 0)
608 break;
609 buffer[res] = '\0';
610 if (res > len) {
611 dbg("callout len %d too short", len);
612 retval = -1;
613 }
614 if (value_set) {
615 dbg("callout value already set");
616 retval = -1;
617 } else {
618 value_set = 1;
619 strncpy(value, buffer, len);
620 }
621 }
622 dbg("callout returned '%s'", value);
623 close(fds[0]);
624 res = wait(&status);
625 if (res < 0) {
626 dbg("wait failed result %d", res);
627 retval = -1;
628 }
629
630 #ifndef __KLIBC__
631 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
632 dbg("callout program status 0x%x", status);
633 retval = -1;
634 }
635 #endif
636 }
637 return retval;
638 }
639
640 static int do_callout(struct sysfs_class_device *class_dev, struct udevice *udev)
641 {
642 struct config_device *dev;
643 struct list_head *tmp;
644
645 list_for_each(tmp, &config_device_list) {
646 dev = list_entry(tmp, struct config_device, node);
647 if (dev->type != CALLOUT)
648 continue;
649
650 /* substitute anything that needs to be in the program name */
651 apply_format(udev, dev->exec_program);
652 if (exec_callout(dev, udev->callout_value, NAME_SIZE))
653 continue;
654 if (strncmp_wildcard(udev->callout_value, dev->id, NAME_SIZE) != 0)
655 continue;
656 strfieldcpy(udev->name, dev->name);
657 if (dev->mode != 0) {
658 udev->mode = dev->mode;
659 strfieldcpy(udev->owner, dev->owner);
660 strfieldcpy(udev->group, dev->group);
661 }
662 dbg_parse("callout returned matching value '%s', '%s' becomes '%s'"
663 " - owner='%s', group='%s', mode=%#o",
664 dev->id, class_dev->name, udev->name,
665 dev->owner, dev->group, dev->mode);
666 return 0;
667 }
668 return -ENODEV;
669 }
670
671 static int do_label(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
672 {
673 struct sysfs_attribute *tmpattr = NULL;
674 struct config_device *dev;
675 struct list_head *tmp;
676
677 list_for_each(tmp, &config_device_list) {
678 dev = list_entry(tmp, struct config_device, node);
679 if (dev->type != LABEL)
680 continue;
681
682 dbg_parse("look for device attribute '%s'", dev->sysfs_file);
683 /* try to find the attribute in the class device directory */
684 tmpattr = sysfs_get_classdev_attr(class_dev, dev->sysfs_file);
685 if (tmpattr)
686 goto label_found;
687
688 /* look in the class device directory if present */
689 if (sysfs_device) {
690 tmpattr = sysfs_get_device_attr(sysfs_device, dev->sysfs_file);
691 if (tmpattr)
692 goto label_found;
693 }
694
695 continue;
696
697 label_found:
698 tmpattr->value[strlen(tmpattr->value)-1] = 0x00;
699 dbg_parse("compare attribute '%s' value '%s' with '%s'",
700 dev->sysfs_file, tmpattr->value, dev->sysfs_value);
701 if (strcmp(dev->sysfs_value, tmpattr->value) != 0)
702 continue;
703
704 strfieldcpy(udev->name, dev->name);
705 if (dev->mode != 0) {
706 udev->mode = dev->mode;
707 strfieldcpy(udev->owner, dev->owner);
708 strfieldcpy(udev->group, dev->group);
709 }
710 dbg_parse("found matching attribute '%s', '%s' becomes '%s' "
711 "- owner='%s', group='%s', mode=%#o",
712 dev->sysfs_file, class_dev->name, udev->name,
713 dev->owner, dev->group, dev->mode);
714
715 return 0;
716 }
717 return -ENODEV;
718 }
719
720 static int do_number(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
721 {
722 struct config_device *dev;
723 struct list_head *tmp;
724 char path[SYSFS_PATH_MAX];
725 int found;
726 char *temp = NULL;
727
728 /* we have to have a sysfs device for NUMBER to work */
729 if (!sysfs_device)
730 return -ENODEV;
731
732 list_for_each(tmp, &config_device_list) {
733 dev = list_entry(tmp, struct config_device, node);
734 if (dev->type != NUMBER)
735 continue;
736
737 found = 0;
738 strfieldcpy(path, sysfs_device->path);
739 temp = strrchr(path, '/');
740 dbg_parse("search '%s' in '%s', path='%s'", dev->id, temp, path);
741 if (strstr(temp, dev->id) != NULL) {
742 found = 1;
743 } else {
744 *temp = 0x00;
745 temp = strrchr(path, '/');
746 dbg_parse("search '%s' in '%s', path='%s'", dev->id, temp, path);
747 if (strstr(temp, dev->id) != NULL)
748 found = 1;
749 }
750 if (!found)
751 continue;
752 strfieldcpy(udev->name, dev->name);
753 if (dev->mode != 0) {
754 udev->mode = dev->mode;
755 strfieldcpy(udev->owner, dev->owner);
756 strfieldcpy(udev->group, dev->group);
757 }
758 dbg_parse("found matching id '%s', '%s' becomes '%s'"
759 " - owner='%s', group ='%s', mode=%#o",
760 dev->id, class_dev->name, udev->name,
761 dev->owner, dev->group, dev->mode);
762 return 0;
763 }
764 return -ENODEV;
765 }
766
767
768 static int do_topology(struct sysfs_class_device *class_dev, struct udevice *udev, struct sysfs_device *sysfs_device)
769 {
770 struct config_device *dev;
771 struct list_head *tmp;
772 char path[SYSFS_PATH_MAX];
773 int found;
774 char *temp = NULL;
775
776 /* we have to have a sysfs device for TOPOLOGY to work */
777 if (!sysfs_device)
778 return -ENODEV;
779
780 list_for_each(tmp, &config_device_list) {
781 dev = list_entry(tmp, struct config_device, node);
782 if (dev->type != TOPOLOGY)
783 continue;
784
785 found = 0;
786 strfieldcpy(path, sysfs_device->path);
787 temp = strrchr(path, '/');
788 dbg_parse("search '%s' in '%s', path='%s'", dev->place, temp, path);
789 if (strstr(temp, dev->place) != NULL) {
790 found = 1;
791 } else {
792 *temp = 0x00;
793 temp = strrchr(path, '/');
794 dbg_parse("search '%s' in '%s', path='%s'", dev->place, temp, path);
795 if (strstr(temp, dev->place) != NULL)
796 found = 1;
797 }
798 if (!found)
799 continue;
800
801 strfieldcpy(udev->name, dev->name);
802 if (dev->mode != 0) {
803 udev->mode = dev->mode;
804 strfieldcpy(udev->owner, dev->owner);
805 strfieldcpy(udev->group, dev->group);
806 }
807 dbg_parse("found matching place '%s', '%s' becomes '%s'"
808 " - owner='%s', group ='%s', mode=%#o",
809 dev->place, class_dev->name, udev->name,
810 dev->owner, dev->group, dev->mode);
811 return 0;
812 }
813 return -ENODEV;
814 }
815
816 static int do_replace(struct sysfs_class_device *class_dev, struct udevice *udev)
817 {
818 struct config_device *dev;
819 struct list_head *tmp;
820
821 list_for_each(tmp, &config_device_list) {
822 dev = list_entry(tmp, struct config_device, node);
823 if (dev->type != REPLACE)
824 continue;
825
826 dbg_parse("compare name '%s' with '%s'",
827 dev->kernel_name, dev->name);
828 if (strcmp(dev->kernel_name, class_dev->name) != 0)
829 continue;
830
831 strfieldcpy(udev->name, dev->name);
832 if (dev->mode != 0) {
833 udev->mode = dev->mode;
834 strfieldcpy(udev->owner, dev->owner);
835 strfieldcpy(udev->group, dev->group);
836 }
837 dbg_parse("found name, '%s' becomes '%s' - owner='%s', group='%s', mode = %#o",
838 dev->kernel_name, udev->name,
839 dev->owner, dev->group, dev->mode);
840
841 return 0;
842 }
843 return -ENODEV;
844 }
845
846 static void do_kernelname(struct sysfs_class_device *class_dev, struct udevice *udev)
847 {
848 struct config_device *dev;
849 struct list_head *tmp;
850 int len;
851
852 strfieldcpy(udev->name, class_dev->name);
853 /* look for permissions */
854 list_for_each(tmp, &config_device_list) {
855 dev = list_entry(tmp, struct config_device, node);
856 len = strlen(dev->name);
857 if (strncmp_wildcard(class_dev->name, dev->name, sizeof(dev->name)))
858 continue;
859 if (dev->mode != 0) {
860 dbg_parse("found permissions for '%s'", class_dev->name);
861 udev->mode = dev->mode;
862 strfieldcpy(udev->owner, dev->owner);
863 strfieldcpy(udev->group, dev->group);
864 }
865 }
866 }
867
868 static int get_attr(struct sysfs_class_device *class_dev, struct udevice *udev)
869 {
870 struct sysfs_device *sysfs_device = NULL;
871 struct sysfs_class_device *class_dev_parent = NULL;
872 int retval = 0;
873 char *temp = NULL;
874
875 udev->mode = 0;
876
877 /* find the sysfs_device for this class device */
878 /* Wouldn't it really be nice if libsysfs could do this for us? */
879 if (class_dev->sysdevice) {
880 sysfs_device = class_dev->sysdevice;
881 } else {
882 /* bah, let's go backwards up a level to see if the device is there,
883 * as block partitions don't point to the physical device. Need to fix that
884 * up in the kernel...
885 */
886 if (strstr(class_dev->path, "block")) {
887 dbg_parse("looking at block device");
888 if (isdigit(class_dev->path[strlen(class_dev->path)-1])) {
889 char path[SYSFS_PATH_MAX];
890
891 dbg_parse("really is a partition");
892 strfieldcpy(path, class_dev->path);
893 temp = strrchr(path, '/');
894 *temp = 0x00;
895 dbg_parse("looking for a class device at '%s'", path);
896 class_dev_parent = sysfs_open_class_device(path);
897 if (class_dev_parent == NULL) {
898 dbg("sysfs_open_class_device at '%s' failed", path);
899 } else {
900 dbg_parse("class_dev_parent->name='%s'", class_dev_parent->name);
901 if (class_dev_parent->sysdevice)
902 sysfs_device = class_dev_parent->sysdevice;
903 }
904 }
905 }
906 }
907
908 if (sysfs_device) {
909 dbg_parse("sysfs_device->path='%s'", sysfs_device->path);
910 dbg_parse("sysfs_device->bus_id='%s'", sysfs_device->bus_id);
911 strfieldcpy(udev->bus_id, sysfs_device->bus_id);
912 } else {
913 dbg_parse("class_dev->name = '%s'", class_dev->name);
914 }
915
916 build_kernel_number(class_dev, udev);
917
918 /* rules are looked at in priority order */
919 retval = do_callout(class_dev, udev);
920 if (retval == 0)
921 goto found;
922
923 retval = do_label(class_dev, udev, sysfs_device);
924 if (retval == 0)
925 goto found;
926
927 retval = do_number(class_dev, udev, sysfs_device);
928 if (retval == 0)
929 goto found;
930
931 retval = do_topology(class_dev, udev, sysfs_device);
932 if (retval == 0)
933 goto found;
934
935 retval = do_replace(class_dev, udev);
936 if (retval == 0)
937 goto found;
938
939 do_kernelname(class_dev, udev);
940 goto done;
941
942 found:
943 /* substitute placeholder in NAME */
944 apply_format(udev, udev->name);
945
946 done:
947 /* mode was never set above */
948 if (!udev->mode) {
949 udev->mode = get_default_mode(class_dev);
950 udev->owner[0] = 0x00;
951 udev->group[0] = 0x00;
952 }
953
954 if (class_dev_parent)
955 sysfs_close_class_device(class_dev_parent);
956
957 return 0;
958 }
959
960 int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *dev)
961 {
962 int retval;
963
964 retval = get_attr(class_dev, dev);
965 if (retval)
966 dbg("get_attr failed");
967
968 return retval;
969 }
970
971 int namedev_init(void)
972 {
973 int retval;
974
975 retval = namedev_init_config();
976 if (retval)
977 return retval;
978
979 retval = namedev_init_permissions();
980 if (retval)
981 return retval;
982
983 dump_dev_list();
984 return retval;
985 }