]> git.ipfire.org Git - thirdparty/systemd.git/blob - udev.h
[PATCH] avoid building klibc test programs and pass SUBDIRS= to klibc clean
[thirdparty/systemd.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 <sys/param.h>
27 #include "libsysfs/sysfs/libsysfs.h"
28
29 #define ALARM_TIMEOUT 120
30 #define COMMENT_CHARACTER '#'
31
32 #define NAME_SIZE 256
33 #define USER_SIZE 32
34
35 #define ACTION_SIZE 32
36 #define DEVPATH_SIZE 256
37 #define SUBSYSTEM_SIZE 32
38 #define SEQNUM_SIZE 32
39
40 #define LINE_SIZE 256
41
42 #define DEVD_DIR "/etc/dev.d"
43 #define DEVD_SUFFIX ".dev"
44
45 #define HOTPLUGD_DIR "/etc/hotplug.d"
46 #define HOTPLUG_SUFFIX ".hotplug"
47
48 struct udevice {
49 char devpath[DEVPATH_SIZE];
50 char subsystem[SUBSYSTEM_SIZE];
51
52 char name[NAME_SIZE];
53 char symlink[NAME_SIZE];
54 char owner[USER_SIZE];
55 char group[USER_SIZE];
56 mode_t mode;
57 char type;
58 int major;
59 int minor;
60
61 char devname[NAME_SIZE];
62 int partitions;
63 int ignore_remove;
64 int config_line;
65 char config_file[NAME_SIZE];
66 char bus_id[SYSFS_NAME_LEN];
67 char program_result[NAME_SIZE];
68 char kernel_number[NAME_SIZE];
69 char kernel_name[NAME_SIZE];
70 int test_run;
71 };
72
73 extern int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev);
74 extern int udev_remove_device(struct udevice *udev);
75 extern void udev_init_config(void);
76 extern int udev_start(void);
77 extern int parse_get_pair(char **orig_string, char **left, char **right);
78 extern void udev_multiplex_directory(struct udevice *udev, const char *basedir, const char *suffix);
79
80 extern char sysfs_path[SYSFS_PATH_MAX];
81 extern char udev_root[PATH_MAX];
82 extern char udev_db_path[PATH_MAX+NAME_MAX];
83 extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
84 extern char udev_config_filename[PATH_MAX+NAME_MAX];
85 extern char udev_rules_filename[PATH_MAX+NAME_MAX];
86 extern mode_t default_mode;
87 extern char default_owner[USER_SIZE];
88 extern char default_group[USER_SIZE];
89 extern int udev_log;
90 extern int udev_dev_d;
91 extern int udev_hotplug_d;
92
93 #endif