chiark / gitweb /
3837e864a0049e4c70d2f60f0c3c9ecd8deebe64
[elogind.git] / namedev.h
1 /*
2  * namedev.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 NAMEDEV_H
24 #define NAMEDEV_H
25
26 #include "udev.h"
27 #include "list.h"
28
29 struct sysfs_class_device;
30
31 #define BUS_SIZE                30
32 #define FILE_SIZE               50
33 #define VALUE_SIZE              100
34 #define ID_SIZE                 50
35 #define PLACE_SIZE              50
36 #define PROGRAM_SIZE            100
37
38 #define FIELD_BUS               "BUS"
39 #define FIELD_SYSFS             "SYSFS"
40 #define FIELD_ID                "ID"
41 #define FIELD_PLACE             "PLACE"
42 #define FIELD_PROGRAM           "PROGRAM"
43 #define FIELD_RESULT            "RESULT"
44 #define FIELD_KERNEL            "KERNEL"
45 #define FIELD_SUBSYSTEM         "SUBSYSTEM"
46 #define FIELD_NAME              "NAME"
47 #define FIELD_SYMLINK           "SYMLINK"
48 #define FIELD_OWNER             "OWNER"
49 #define FIELD_GROUP             "GROUP"
50 #define FIELD_MODE              "MODE"
51
52 #define ATTR_PARTITIONS         "all_partitions"
53 #define PARTITIONS_COUNT        15
54
55 #define MAX_SYSFS_PAIRS         5
56
57 #define RULEFILE_SUFFIX         ".rules"
58 #define PERMFILE_SUFFIX         ".permissions"
59
60 #define set_empty_perms(dev, m, o, g)           \
61         if (dev->mode == 0)                     \
62                 dev->mode = m;                  \
63         if (dev->owner[0] == '\0')              \
64                 strfieldcpy(dev->owner, o);     \
65         if (dev->group[0] == '\0')              \
66                 strfieldcpy(dev->group, g);
67
68 struct sysfs_pair {
69         char file[FILE_SIZE];
70         char value[VALUE_SIZE];
71 };
72
73 struct config_device {
74         struct list_head node;
75
76         char bus[BUS_SIZE];
77         char id[ID_SIZE];
78         char place[PLACE_SIZE];
79         char kernel[NAME_SIZE];
80         char program[PROGRAM_SIZE];
81         char result[PROGRAM_SIZE];
82         char subsystem[SUBSYSTEM_SIZE];
83         char name[NAME_SIZE];
84         char symlink[NAME_SIZE];
85         struct sysfs_pair sysfs_pair[MAX_SYSFS_PAIRS];
86         char owner[OWNER_SIZE];
87         char group[GROUP_SIZE];
88         unsigned int mode;
89         int partitions;
90         char config_file[NAME_SIZE];
91         int config_line;
92 };
93
94 struct perm_device {
95         struct list_head node;
96
97         char name[NAME_SIZE];
98         char owner[OWNER_SIZE];
99         char group[GROUP_SIZE];
100         unsigned int mode;
101 };
102
103 extern struct list_head config_device_list;
104 extern struct list_head perm_device_list;
105
106 extern int namedev_init(void);
107 extern int namedev_name_device(struct udevice *udev, struct sysfs_class_device *class_dev);
108 extern int namedev_init_permissions(void);
109 extern int namedev_init_rules(void);
110
111 extern void dump_config_dev(struct config_device *dev);
112 extern void dump_config_dev_list(void);
113 extern void dump_perm_dev(struct perm_device *dev);
114 extern void dump_perm_dev_list(void);
115
116 #endif