6 * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
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.
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.
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.
34 #include "udev_utils.h"
35 #include "udev_version.h"
40 static int delete_path(const char *path)
45 pos = strrchr(path, '/');
48 pos = strrchr(path, '/');
50 /* don't remove the last one */
51 if ((pos == path) || (pos == NULL))
59 if (errno == ENOTEMPTY)
61 dbg("rmdir(%s) failed with error '%s'",
62 path, strerror(errno));
65 dbg("removed '%s'", path);
70 /** Remove all permissions on the device node, before
71 * unlinking it. This fixes a security issue.
72 * If the user created a hard-link to the device node,
73 * he can't use it any longer, because he lost permission
76 static int secure_unlink(const char *filename)
80 retval = chown(filename, 0, 0);
82 dbg("chown(%s, 0, 0) failed with error '%s'",
83 filename, strerror(errno));
84 /* We continue nevertheless.
85 * I think it's very unlikely for chown
86 * to fail here, if the file exists.
89 retval = chmod(filename, 0000);
91 dbg("chmod(%s, 0000) failed with error '%s'",
92 filename, strerror(errno));
93 /* We continue nevertheless. */
95 retval = unlink(filename);
99 dbg("unlink(%s) failed with error '%s'",
100 filename, strerror(errno));
105 static int delete_node(struct udevice *udev)
107 char filename[NAME_SIZE];
108 char partitionname[NAME_SIZE];
115 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, udev->name);
116 filename[NAME_SIZE-1] = '\0';
118 info("removing device node '%s'", filename);
119 retval = secure_unlink(filename);
123 /* remove all_partitions nodes */
124 num = udev->partitions;
126 info("removing all_partitions '%s[1-%i]'", filename, num);
127 if (num > PARTITIONS_COUNT) {
128 info("garbage from udev database, skip all_partitions removal");
131 for (i = 1; i <= num; i++) {
132 strfieldcpy(partitionname, filename);
133 strintcat(partitionname, i);
134 secure_unlink(partitionname);
138 /* remove subdirectories */
139 if (strchr(udev->name, '/'))
140 delete_path(filename);
142 foreach_strpart(udev->symlink, " ", pos, len) {
143 char linkname[NAME_SIZE];
145 strfieldcpymax(linkname, pos, len+1);
146 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, linkname);
147 filename[NAME_SIZE-1] = '\0';
149 dbg("unlinking symlink '%s'", filename);
150 retval = unlink(filename);
154 dbg("unlink(%s) failed with error '%s'",
155 filename, strerror(errno));
158 if (strchr(udev->symlink, '/')) {
159 delete_path(filename);
167 * look up the sysfs path in the database to get the node name to remove
168 * If we can't find it, use kernel name for lack of anything else to know to do
170 int udev_remove_device(struct udevice *udev)
175 if (udev->type != 'b' && udev->type != 'c')
178 retval = udev_db_get_device(udev);
180 /* fall back to kernel name */
181 temp = strrchr(udev->devpath, '/');
184 strfieldcpy(udev->name, &temp[1]);
185 dbg("'%s' not found in database, falling back on default name", udev->name);
188 if (udev->ignore_remove) {
189 dbg("remove event for '%s' requested to be ignored by rule", udev->name);
193 dbg("remove name='%s'", udev->name);
194 udev_db_delete_device(udev);
196 /* use full path to the environment */
197 snprintf(udev->devname, NAME_SIZE, "%s/%s", udev_root, udev->name);
199 return delete_node(udev);