chiark / gitweb /
[PATCH] add scripts to run gcov for udev from Leann Ogasawara <ogasawara@osdl.org>
[elogind.git] / udev_lib.c
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>
24 #include <stddef.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <errno.h>
28 #include <dirent.h>
29 #include <sys/stat.h>
30 #include <sys/mman.h>
31
32 #include "libsysfs/sysfs/libsysfs.h"
33 #include "udev.h"
34 #include "logging.h"
35 #include "udev_lib.h"
36 #include "list.h"
37
38
39 char *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
50 char *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
61 char *get_devname(void)
62 {
63         char *devname;
64
65         devname = getenv("DEVNAME");
66         if (devname != NULL && strlen(devname) > NAME_SIZE)
67                 devname[NAME_SIZE-1] = '\0';
68
69         return devname;
70 }
71
72 char *get_seqnum(void)
73 {
74         char *seqnum;
75
76         seqnum = getenv("SEQNUM");
77
78         return seqnum;
79 }
80
81 char *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
89 #define BLOCK_PATH              "/block/"
90 #define CLASS_PATH              "/class/"
91 #define NET_PATH                "/class/net/"
92
93 char get_device_type(const char *path, const char *subsystem)
94 {
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))
103                 return 'b';
104
105         if (strncmp(path, NET_PATH, strlen(NET_PATH)) == 0 &&
106             strlen(path) > strlen(NET_PATH))
107                 return 'n';
108
109         if (strncmp(path, CLASS_PATH, strlen(CLASS_PATH)) == 0 &&
110             strlen(path) > strlen(CLASS_PATH))
111                 return 'c';
112
113         return '\0';
114 }
115
116 int 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
141 void file_unmap(char *buf, size_t bufsize)
142 {
143         munmap(buf, bufsize);
144 }
145
146 size_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
155 struct files {
156         struct list_head list;
157         char name[NAME_SIZE];
158 };
159
160 /* sort files in lexical order */
161 static 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 */
184 int 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 }