chiark / gitweb /
[PATCH] PATCH some cleanups and security fixes
[elogind.git] / dev_d.c
1 /*
2  * dev_d.c - dev.d/ multiplexer
3  * 
4  * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  */
10
11 /*
12  * This essentially emulates the following shell script logic in C:
13  *      DIR="/etc/dev.d"
14  *      export DEVNAME="whatever_dev_name_udev_just_gave"
15  *      for I in "${DIR}/$DEVNAME/"*.dev "${DIR}/$1/"*.dev "${DIR}/default/"*.dev ; do
16  *              if [ -f $I ]; then $I $1 ; fi
17  *      done
18  *      exit 1;
19  */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/wait.h>
26 #include <unistd.h>
27 #include "udev.h"
28 #include "udev_lib.h"
29 #include "logging.h"
30
31 #define DEVD_DIR                        "/etc/dev.d/"
32 #define DEVD_SUFFIX                     ".dev"
33
34 static int run_program(char *name)
35 {
36         pid_t pid;
37
38         dbg("running %s", name);
39
40         pid = fork();
41         switch (pid) {
42         case 0:
43                 /* child */
44                 execv(name, main_argv);
45                 dbg("exec of child failed");
46                 exit(1);
47         case -1:
48                 dbg("fork of child failed");
49                 break;
50                 return -1;
51         default:
52                 wait(NULL);
53         }
54
55         return 0;
56 }
57
58 /* 
59  * runs files in these directories in order:
60  *      <node name given by udev>/
61  *      subsystem/
62  *      default/
63  */
64 void dev_d_send(struct udevice *dev, const char *subsystem, const char *devpath)
65 {
66         char dirname[256];
67         char env_devname[NAME_SIZE];
68         char *devname;
69         char *temp;
70
71         if (udev_dev_d == 0)
72                 return;
73
74         memset(env_devname, 0x00, sizeof(env_devname));
75         if (dev->type == 'b' || dev->type == 'c') {
76                 strfieldcpy(env_devname, udev_root);
77                 strfieldcat(env_devname, dev->name);
78         } else if (dev->type == 'n') {
79                 strfieldcpy(env_devname, dev->name);
80                 setenv("DEVPATH", devpath, 1);
81         }
82         setenv("DEVNAME", env_devname, 1);
83         dbg("DEVNAME='%s'", env_devname);
84
85         devname = strdup(dev->name);
86         if (!devname) {
87                 dbg("out of memory");
88                 return;
89         }
90
91         /* Chop the device name up into pieces based on '/' */
92         temp = strchr(devname, '/');
93         while (temp != NULL) {
94                 *temp = 0x00;
95                 strcpy(dirname, DEVD_DIR);
96                 strfieldcat(dirname, devname);
97                 call_foreach_file(run_program, dirname, DEVD_SUFFIX);
98
99                 *temp = '/';
100                 ++temp;
101                 temp = strchr(temp, '/');
102         }
103
104         strcpy(dirname, DEVD_DIR);
105         strfieldcat(dirname, dev->name);
106         call_foreach_file(run_program, dirname, DEVD_SUFFIX);
107
108         strcpy(dirname, DEVD_DIR);
109         strfieldcat(dirname, subsystem);
110         call_foreach_file(run_program, dirname, DEVD_SUFFIX);
111
112         strcpy(dirname, DEVD_DIR "default");
113         call_foreach_file(run_program, dirname, DEVD_SUFFIX);
114 }