chiark / gitweb /
Merge gregkh@ehlo.org:/home/kay/public_html/pub/scm/linux/hotplug/udev-kay
[elogind.git] / udev_rules.h
1 /*
2  * udev_rules.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003,2004 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_RULES_H
24 #define UDEV_RULES_H
25
26 #include "libsysfs/sysfs/libsysfs.h"
27 #include "udev.h"
28 #include "list.h"
29
30
31 #define KEY_KERNEL              "KERNEL"
32 #define KEY_SUBSYSTEM           "SUBSYSTEM"
33 #define KEY_ACTION              "ACTION"
34 #define KEY_DEVPATH             "DEVPATH"
35 #define KEY_BUS                 "BUS"
36 #define KEY_ID                  "ID"
37 #define KEY_PROGRAM             "PROGRAM"
38 #define KEY_RESULT              "RESULT"
39 #define KEY_DRIVER              "DRIVER"
40 #define KEY_SYSFS               "SYSFS"
41 #define KEY_ENV                 "ENV"
42 #define KEY_MODALIAS            "MODALIAS"
43 #define KEY_NAME                "NAME"
44 #define KEY_SYMLINK             "SYMLINK"
45 #define KEY_OWNER               "OWNER"
46 #define KEY_GROUP               "GROUP"
47 #define KEY_MODE                "MODE"
48 #define KEY_RUN                 "RUN"
49 #define KEY_OPTIONS             "OPTIONS"
50
51 #define OPTION_LAST_RULE        "last_rule"
52 #define OPTION_IGNORE_DEVICE    "ignore_device"
53 #define OPTION_IGNORE_REMOVE    "ignore_remove"
54 #define OPTION_PARTITIONS       "all_partitions"
55
56 #define KEY_SYSFS_PAIRS_MAX     5
57 #define KEY_ENV_PAIRS_MAX       5
58
59 #define RULEFILE_SUFFIX         ".rules"
60
61 enum key_operation {
62         KEY_OP_UNSET,
63         KEY_OP_MATCH,
64         KEY_OP_NOMATCH,
65         KEY_OP_ADD,
66         KEY_OP_ASSIGN,
67         KEY_OP_ASSIGN_FINAL,
68 };
69
70 struct key_pair {
71         char name[NAME_SIZE];
72         char value[VALUE_SIZE];
73         enum key_operation operation;
74 };
75
76 struct udev_rule {
77         struct list_head node;
78
79         char kernel[NAME_SIZE];
80         enum key_operation kernel_operation;
81         char subsystem[NAME_SIZE];
82         enum key_operation subsystem_operation;
83         char action[NAME_SIZE];
84         enum key_operation action_operation;
85         char devpath[PATH_SIZE];
86         enum key_operation devpath_operation;
87         char bus[NAME_SIZE];
88         enum key_operation bus_operation;
89         char id[NAME_SIZE];
90         enum key_operation id_operation;
91         char driver[NAME_SIZE];
92         enum key_operation driver_operation;
93         char program[PATH_SIZE];
94         enum key_operation program_operation;
95         char result[PATH_SIZE];
96         enum key_operation result_operation;
97         struct key_pair sysfs_pair[KEY_SYSFS_PAIRS_MAX];
98         int sysfs_pair_count;
99         struct key_pair env_pair[KEY_ENV_PAIRS_MAX];
100         int env_pair_count;
101         enum key_operation modalias_operation;
102         char modalias[PATH_SIZE];
103
104         char name[PATH_SIZE];
105         enum key_operation name_operation;
106         char symlink[PATH_SIZE];
107         enum key_operation symlink_operation;
108         char owner[USER_SIZE];
109         enum key_operation owner_operation;
110         char group[USER_SIZE];
111         enum key_operation group_operation;
112         mode_t mode;
113         enum key_operation mode_operation;
114         char run[PATH_SIZE];
115         enum key_operation run_operation;
116
117         int last_rule;
118         int ignore_device;
119         int ignore_remove;
120         int partitions;
121
122         char config_file[PATH_SIZE];
123         int config_line;
124 };
125
126 extern struct list_head udev_rule_list;
127
128 extern int udev_rules_init(void);
129 extern int udev_rules_get_name(struct udevice *udev, struct sysfs_class_device *class_dev);
130 extern int udev_rules_get_run(struct udevice *udev, struct sysfs_device *sysfs_device);
131 extern void udev_rules_close(void);
132
133 #endif