]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev_lib.c
[PATCH] DEVNODE -> DEVNAME transition fixes
[thirdparty/systemd.git] / udev_lib.c
CommitLineData
c81b35c0
KS
1/*
2 * udev_lib - generic stuff used by udev
3 *
4 * Copyright (C) 2004 Kay Sievers <kay@vrfy.org>
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 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 */
20
21
22#include <stdlib.h>
23#include <stdio.h>
4a539daf 24#include <stddef.h>
c81b35c0
KS
25#include <unistd.h>
26#include <fcntl.h>
4a539daf
KS
27#include <errno.h>
28#include <dirent.h>
c81b35c0
KS
29#include <sys/stat.h>
30#include <sys/mman.h>
31
32#include "libsysfs/sysfs/libsysfs.h"
33#include "udev.h"
4a539daf 34#include "logging.h"
c81b35c0 35#include "udev_lib.h"
4a539daf 36#include "list.h"
c81b35c0
KS
37
38
39char *get_action(void)
40{
41 char *action;
42
43 action = getenv("ACTION");
44 if (action != NULL && strlen(action) > ACTION_SIZE)
45 action[ACTION_SIZE-1] = '\0';
46
47 return action;
48}
49
50char *get_devpath(void)
51{
52 char *devpath;
53
54 devpath = getenv("DEVPATH");
55 if (devpath != NULL && strlen(devpath) > DEVPATH_SIZE)
56 devpath[DEVPATH_SIZE-1] = '\0';
57
58 return devpath;
59}
60
4b06c852 61char *get_devname(void)
89fe4e00 62{
4b06c852 63 char *devname;
89fe4e00 64
4b06c852 65 devname = getenv("DEVNAME");
66 if (devname != NULL && strlen(devname) > NAME_SIZE)
67 devname[NAME_SIZE-1] = '\0';
89fe4e00 68
4b06c852 69 return devname;
89fe4e00
GKH
70}
71
c81b35c0
KS
72char *get_seqnum(void)
73{
74 char *seqnum;
75
76 seqnum = getenv("SEQNUM");
77
78 return seqnum;
79}
80
81char *get_subsystem(char *subsystem)
82{
83 if (subsystem != NULL && strlen(subsystem) > SUBSYSTEM_SIZE)
84 subsystem[SUBSYSTEM_SIZE-1] = '\0';
85
86 return subsystem;
87}
88
7b9b1839
KS
89#define BLOCK_PATH "/block/"
90#define CLASS_PATH "/class/"
91#define NET_PATH "/class/net/"
92
f61d732a
KS
93char get_device_type(const char *path, const char *subsystem)
94{
7b9b1839
KS
95 if (strcmp(subsystem, "block") == 0)
96 return 'b';
97
98 if (strcmp(subsystem, "net") == 0)
99 return 'n';
100
101 if (strncmp(path, BLOCK_PATH, strlen(BLOCK_PATH)) == 0 &&
102 strlen(path) > strlen(BLOCK_PATH))
f61d732a
KS
103 return 'b';
104
7b9b1839
KS
105 if (strncmp(path, NET_PATH, strlen(NET_PATH)) == 0 &&
106 strlen(path) > strlen(NET_PATH))
f61d732a
KS
107 return 'n';
108
7b9b1839
KS
109 if (strncmp(path, CLASS_PATH, strlen(CLASS_PATH)) == 0 &&
110 strlen(path) > strlen(CLASS_PATH))
f61d732a
KS
111 return 'c';
112
113 return '\0';
114}
115
c81b35c0
KS
116int file_map(const char *filename, char **buf, size_t *bufsize)
117{
118 struct stat stats;
119 int fd;
120
121 fd = open(filename, O_RDONLY);
122 if (fd < 0) {
123 return -1;
124 }
125
126 if (fstat(fd, &stats) < 0) {
127 return -1;
128 }
129
130 *buf = mmap(NULL, stats.st_size, PROT_READ, MAP_SHARED, fd, 0);
131 if (*buf == MAP_FAILED) {
132 return -1;
133 }
134 *bufsize = stats.st_size;
135
136 close(fd);
137
138 return 0;
139}
140
141void file_unmap(char *buf, size_t bufsize)
142{
143 munmap(buf, bufsize);
144}
145
146size_t buf_get_line(char *buf, size_t buflen, size_t cur)
147{
148 size_t count = 0;
149
150 for (count = cur; count < buflen && buf[count] != '\n'; count++);
151
152 return count - cur;
153}
154
4a539daf
KS
155struct files {
156 struct list_head list;
157 char name[NAME_SIZE];
158};
159
160/* sort files in lexical order */
161static int file_list_insert(char *filename, struct list_head *file_list)
162{
163 struct files *loop_file;
164 struct files *new_file;
165
166 list_for_each_entry(loop_file, file_list, list) {
167 if (strcmp(loop_file->name, filename) > 0) {
168 break;
169 }
170 }
171
172 new_file = malloc(sizeof(struct files));
173 if (new_file == NULL) {
174 dbg("error malloc");
175 return -ENOMEM;
176 }
177
178 strfieldcpy(new_file->name, filename);
179 list_add_tail(&new_file->list, &loop_file->list);
180 return 0;
181}
182
183/* calls function for file or every file found in directory */
184int call_foreach_file(int fnct(char *f) , char *dirname, char *suffix)
185{
186 struct dirent *ent;
187 DIR *dir;
188 char *ext;
189 char file[NAME_SIZE];
190 struct files *loop_file;
191 struct files *tmp_file;
192 LIST_HEAD(file_list);
193
194 dbg("open directory '%s'", dirname);
195 dir = opendir(dirname);
196 if (dir == NULL) {
197 dbg("unable to open '%s'", dirname);
198 return -1;
199 }
200
201 while (1) {
202 ent = readdir(dir);
203 if (ent == NULL || ent->d_name[0] == '\0')
204 break;
205
206 if ((ent->d_name[0] == '.') || (ent->d_name[0] == COMMENT_CHARACTER))
207 continue;
208
209 /* look for file with specified suffix */
210 ext = strrchr(ent->d_name, '.');
211 if (ext == NULL)
212 continue;
213
214 if (strcmp(ext, suffix) != 0)
215 continue;
216
217 dbg("put file '%s/%s' in list", dirname, ent->d_name);
218 file_list_insert(ent->d_name, &file_list);
219 }
220
221 /* call function for every file in the list */
222 list_for_each_entry_safe(loop_file, tmp_file, &file_list, list) {
223 strfieldcpy(file, dirname);
224 strfieldcat(file, "/");
225 strfieldcat(file, loop_file->name);
226
227 fnct(file);
228
229 list_del(&loop_file->list);
230 free(loop_file);
231 }
232
233 closedir(dir);
234 return 0;
235}