chiark / gitweb /
[PATCH] new version of libsysfs patch
[elogind.git] / udev-remove.c
1 /*
2  * udev-remove.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 /*
39  * Look up the sysfs path in the database to see if we have named this device
40  * something different from the kernel name.  If we have, us it.  If not, use
41  * the default kernel name for lack of anything else to know to do.
42  */
43 static char *get_name(char *path, int major, int minor)
44 {
45         static char name[100];
46         struct udevice *dev;
47         char *temp;
48
49         dev = udevdb_get_dev(path);
50         if (dev != NULL) {
51                 strcpy(name, dev->name);
52                 goto exit;
53         }
54
55         dbg("%s not found in database, falling back on default name", path);
56         temp = strrchr(path, '/');
57         if (temp == NULL)
58                 return NULL;
59         strncpy(name, &temp[1], sizeof(name));
60
61 exit:
62         dbg("name is %s", name);
63         return &name[0];
64 }
65
66 /*
67  * We also want to clean up any symlinks that were created in create_node()
68  */
69 static int delete_node(char *name)
70 {
71         char filename[255];
72
73         strncpy(filename, UDEV_ROOT, sizeof(filename));
74         strncat(filename, name, sizeof(filename));
75
76         dbg("unlinking %s", filename);
77         return unlink(filename);
78 }
79
80 int udev_remove_device(char *device, char *subsystem)
81 {
82         char *name;
83         int retval = 0;
84
85         name = get_name(device, 0, 0);
86         if (name == NULL) {
87                 dbg ("get_name failed");
88                 retval = -ENODEV;
89                 goto exit;
90         }
91
92         udevdb_delete_dev(device);
93
94         return delete_node(name);
95
96 exit:
97         return retval;
98 }