chiark / gitweb /
0ce010f3c49071131795f70a0873c02fba3d9428
[elogind.git] / udev.h
1 /*
2  * udev.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *      This program is free software; you can redistribute it and/or modify it
9  *      under the terms of the GNU General Public License as published by the
10  *      Free Software Foundation version 2 of the License.
11  * 
12  *      This program is distributed in the hope that it will be useful, but
13  *      WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *      General Public License for more details.
16  * 
17  *      You should have received a copy of the GNU General Public License along
18  *      with this program; if not, write to the Free Software Foundation, Inc.,
19  *      675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef UDEV_H
24 #define UDEV_H
25
26 #include <sysfs/libsysfs.h>
27 #include <stddef.h>
28 #include <sys/param.h>
29
30 #define COMMENT_CHARACTER               '#'
31
32 #define NAME_SIZE       100
33 #define OWNER_SIZE      30
34 #define GROUP_SIZE      30
35 #define MODE_SIZE       8
36
37 /* length of public data */
38 #define UDEVICE_LEN (offsetof(struct udevice, bus_id))
39
40 struct udevice {
41         char name[NAME_SIZE];
42         char owner[OWNER_SIZE];
43         char group[GROUP_SIZE];
44         char type;
45         int major;
46         int minor;
47         unsigned int mode;      /* not mode_t due to conflicting definitions in different libcs */
48         char symlink[NAME_SIZE];
49         int partitions;
50
51         /* private data that help us in building strings */
52         char bus_id[SYSFS_NAME_LEN];
53         char program_result[NAME_SIZE];
54         char kernel_number[NAME_SIZE];
55         char kernel_name[NAME_SIZE];
56 };
57
58 #define strfieldcpy(to, from) \
59 do { \
60         to[sizeof(to)-1] = '\0'; \
61         strncpy(to, from, sizeof(to)-1); \
62 } while (0)
63
64 #define strfieldcat(to, from) \
65 do { \
66         to[sizeof(to)-1] = '\0'; \
67         strncat(to, from, sizeof(to) - strlen(to)-1); \
68 } while (0)
69
70 #define strnfieldcpy(to, from, maxsize) \
71 do { \
72         to[maxsize-1] = '\0'; \
73         strncpy(to, from, maxsize-1); \
74 } while (0)
75
76 #define strnfieldcat(to, from, maxsize) \
77 do { \
78         to[maxsize-1] = '\0'; \
79         strncat(to, from, maxsize - strlen(to)-1); \
80 } while (0)
81
82 extern int udev_add_device(char *path, char *subsystem, int fake);
83 extern int udev_remove_device(char *path, char *subsystem);
84 extern void udev_init_config(void);
85 extern int parse_get_pair(char **orig_string, char **left, char **right);
86
87 extern char **main_argv;
88 extern char **main_envp;
89 extern char sysfs_path[SYSFS_PATH_MAX];
90 extern char udev_root[PATH_MAX];
91 extern char udev_db_filename[PATH_MAX+NAME_MAX];
92 extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
93 extern char udev_config_filename[PATH_MAX+NAME_MAX];
94 extern char udev_rules_filename[PATH_MAX+NAME_MAX];
95 extern char default_mode_str[MODE_SIZE];
96 extern char default_owner_str[OWNER_SIZE];
97 extern char default_group_str[GROUP_SIZE];
98 extern int udev_log;
99 extern int udev_sleep;
100
101 #endif