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