chiark / gitweb /
[PATCH] got "remove of named devices" working.
[elogind.git] / udev.c
1 /*
2  * udev.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 <stdlib.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <errno.h>
30
31 #include "udev.h"
32 #include "udev_version.h"
33 #include "namedev.h"
34 #include "udevdb.h"
35 #include "libsysfs/libsysfs.h"
36
37
38 static char *get_action(void)
39 {
40         char *action;
41
42         action = getenv("ACTION");
43         return action;
44 }
45
46
47 static char *get_device(void)
48 {
49         char *device;
50
51         device = getenv("DEVPATH");
52         return device;
53 }
54
55 char **main_argv;
56 char **main_envp;
57
58 int main(int argc, char **argv, char **envp)
59 {
60         char *action;
61         char *device;
62         char *subsystem;
63         int retval = -EINVAL;
64         
65         main_argv = argv;
66         main_envp = envp;
67
68         dbg("version %s", UDEV_VERSION);
69
70         if (argc != 2) {
71                 dbg ("unknown number of arguments");
72                 goto exit;
73         }
74
75         subsystem = argv[1];
76
77         device = get_device();
78         if (!device) {
79                 dbg ("no device?");
80                 goto exit;
81         }
82         dbg("looking at %s", device);
83
84         /* we only care about class devices and block stuff */
85         if (!strstr(device, "class") &&
86             !strstr(device, "block")) {
87                 dbg("not block or class");
88                 goto exit;
89         }
90
91         /* but we don't care about net class devices */
92         if (strcmp(subsystem, "net") == 0) {
93                 dbg("don't care about net devices");
94                 goto exit;
95         }
96
97         action = get_action();
98         if (!action) {
99                 dbg ("no action?");
100                 goto exit;
101         }
102
103         /* initialize udev database */
104         retval = udevdb_init(UDEVDB_DEFAULT);
105         if (retval != 0) {
106                 dbg("Unable to initialize database.");
107                 goto exit;
108         }
109
110         /* initialize the naming deamon */
111         namedev_init();
112
113         if (strcmp(action, "add") == 0)
114                 retval = udev_add_device(device, argv[1]);
115
116         else if (strcmp(action, "remove") == 0)
117                 retval = udev_remove_device(device, argv[1]);
118
119         else {
120                 dbg("Unknown action: %s", action);
121                 retval = -EINVAL;
122         }
123         udevdb_exit();
124
125 exit:   
126         return retval;
127 }
128