chiark / gitweb /
udevinitsend: handle replay messages correctly
[elogind.git] / udev.h
1 /*
2  * udev.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  * Copyright (C) 2003-2005 Kay Sievers <kay.sievers@vrfy.org>
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  * 
13  *      This program is distributed in the hope that it will be useful, but
14  *      WITHOUT ANY WARRANTY; without even the implied warranty of
15  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *      General Public License for more details.
17  * 
18  *      You should have received a copy of the GNU General Public License along
19  *      with this program; if not, write to the Free Software Foundation, Inc.,
20  *      675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 #ifndef _UDEV_H_
25 #define _UDEV_H_
26
27 #include <sys/types.h>
28 #include <sys/param.h>
29 #include "libsysfs/sysfs/libsysfs.h"
30 #include "list.h"
31
32 #define ALARM_TIMEOUT                   120
33 #define COMMENT_CHARACTER               '#'
34
35 #define LINE_SIZE                       512
36 #define NAME_SIZE                       128
37 #define PATH_SIZE                       256
38 #define USER_SIZE                       32
39 #define SEQNUM_SIZE                     32
40 #define VALUE_SIZE                      128
41
42 #define DEFAULT_PARTITIONS_COUNT        15
43
44 enum device_type {
45         DEV_UNKNOWN,
46         DEV_CLASS,
47         DEV_BLOCK,
48         DEV_NET,
49         DEV_DEVICE,
50 };
51
52 struct udevice {
53         char devpath[PATH_SIZE];
54         char subsystem[NAME_SIZE];
55         char action[NAME_SIZE];
56
57         enum device_type type;
58         char name[PATH_SIZE];
59         int name_set;
60         char devname[PATH_SIZE];
61         struct list_head symlink_list;
62         int symlink_final;
63         char owner[USER_SIZE];
64         int owner_final;
65         char group[USER_SIZE];
66         int group_final;
67         mode_t mode;
68         int mode_final;
69         dev_t devt;
70         struct list_head run_list;
71         int run_final;
72
73         char tmp_node[PATH_SIZE];
74         int partitions;
75         int ignore_device;
76         int ignore_remove;
77         int config_line;
78         char config_file[PATH_SIZE];
79         char bus_id[NAME_SIZE];
80         char program_result[PATH_SIZE];
81         char kernel_number[NAME_SIZE];
82         char kernel_name[NAME_SIZE];
83         int test_run;
84 };
85
86 extern int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev);
87 extern int udev_remove_device(struct udevice *udev);
88 extern void udev_init_config(void);
89 extern int udev_start(void);
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[PATH_SIZE];
93 extern char udev_root[PATH_SIZE];
94 extern char udev_db_path[PATH_SIZE];
95 extern char udev_config_filename[PATH_SIZE];
96 extern char udev_rules_filename[PATH_SIZE];
97 extern int udev_log_priority;
98 extern int udev_run;
99
100 #endif