chiark / gitweb /
[PATCH] detect NAME="" as ignore_device rule
[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 <sys/types.h>
27 #include <sys/param.h>
28 #include "libsysfs/sysfs/libsysfs.h"
29
30 #define ALARM_TIMEOUT                   120
31 #define COMMENT_CHARACTER               '#'
32
33 #define NAME_SIZE                       256
34 #define USER_SIZE                       32
35
36 #define ACTION_SIZE                     32
37 #define DEVPATH_SIZE                    256
38 #define SUBSYSTEM_SIZE                  32
39 #define SEQNUM_SIZE                     32
40
41 #define LINE_SIZE                       512
42
43 #define DEVD_DIR                        "/etc/dev.d"
44 #define DEVD_SUFFIX                     ".dev"
45
46 #define HOTPLUGD_DIR                    "/etc/hotplug.d"
47 #define HOTPLUG_SUFFIX                  ".hotplug"
48
49 #define DEFAULT_PARTITIONS_COUNT        15
50
51 enum device_type {
52         UNKNOWN,
53         CLASS,
54         BLOCK,
55         NET,
56         PHYSDEV,
57 };
58
59 struct udevice {
60         char devpath[DEVPATH_SIZE];
61         char subsystem[SUBSYSTEM_SIZE];
62
63         char name[NAME_SIZE];
64         char symlink[NAME_SIZE];
65         char owner[USER_SIZE];
66         char group[USER_SIZE];
67         mode_t mode;
68         char type;
69         dev_t devt;
70
71         char devname[NAME_SIZE];
72         char tmp_node[NAME_SIZE];
73         int partitions;
74         int ignore_remove;
75         int config_line;
76         char config_file[NAME_SIZE];
77         char bus_id[SYSFS_NAME_LEN];
78         char program_result[NAME_SIZE];
79         char kernel_number[NAME_SIZE];
80         char kernel_name[NAME_SIZE];
81         int test_run;
82 };
83
84 extern int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev);
85 extern int udev_remove_device(struct udevice *udev);
86 extern void udev_init_config(void);
87 extern int udev_start(void);
88 extern void udev_multiplex_directory(struct udevice *udev, const char *basedir, const char *suffix);
89 extern int udev_make_node(struct udevice *udev, const char *file, dev_t devt, mode_t mode, uid_t uid, gid_t gid);
90
91 extern char sysfs_path[SYSFS_PATH_MAX];
92 extern char udev_root[PATH_MAX];
93 extern char udev_db_path[PATH_MAX+NAME_MAX];
94 extern char udev_config_filename[PATH_MAX+NAME_MAX];
95 extern char udev_rules_filename[PATH_MAX+NAME_MAX];
96 extern int udev_log;
97 extern int udev_dev_d;
98 extern int udev_hotplug_d;
99
100 #endif