]> git.ipfire.org Git - thirdparty/systemd.git/blame - namedev.h
[PATCH] avoid building klibc test programs and pass SUBDIRS= to klibc clean
[thirdparty/systemd.git] / namedev.h
CommitLineData
2232cac8
GKH
1/*
2 * namedev.h
3 *
4 * Userspace devfs
5 *
274812b5 6 * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
2232cac8
GKH
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
8e41d35d 26#include "udev.h"
cb32ac94
GKH
27#include "list.h"
28
19dc5d4c
GKH
29struct sysfs_class_device;
30
2092fbcd
KS
31#define BUS_SIZE 32
32#define FILE_SIZE 64
33#define VALUE_SIZE 128
34#define ID_SIZE 64
35#define PLACE_SIZE 64
36#define DRIVER_SIZE 64
37#define PROGRAM_SIZE 128
50e5de03
KS
38
39#define FIELD_BUS "BUS"
40#define FIELD_SYSFS "SYSFS"
41#define FIELD_ID "ID"
42#define FIELD_PLACE "PLACE"
43#define FIELD_PROGRAM "PROGRAM"
44#define FIELD_RESULT "RESULT"
45#define FIELD_KERNEL "KERNEL"
6818c51d 46#define FIELD_SUBSYSTEM "SUBSYSTEM"
2092fbcd 47#define FIELD_DRIVER "DRIVER"
50e5de03
KS
48#define FIELD_NAME "NAME"
49#define FIELD_SYMLINK "SYMLINK"
e41016d3
KS
50#define FIELD_OWNER "OWNER"
51#define FIELD_GROUP "GROUP"
52#define FIELD_MODE "MODE"
50e5de03
KS
53
54#define ATTR_PARTITIONS "all_partitions"
7efa217d 55#define ATTR_IGNORE_REMOVE "ignore_remove"
50e5de03
KS
56#define PARTITIONS_COUNT 15
57
50e5de03 58#define MAX_SYSFS_PAIRS 5
a8b01705 59
4a539daf
KS
60#define RULEFILE_SUFFIX ".rules"
61#define PERMFILE_SUFFIX ".permissions"
e41245cb 62
a8b01705
GKH
63struct sysfs_pair {
64 char file[FILE_SIZE];
65 char value[VALUE_SIZE];
66};
cb32ac94
GKH
67
68struct config_device {
69 struct list_head node;
70
cb32ac94 71 char bus[BUS_SIZE];
cb32ac94
GKH
72 char id[ID_SIZE];
73 char place[PLACE_SIZE];
ac28b86d
KS
74 char kernel[NAME_SIZE];
75 char program[PROGRAM_SIZE];
76 char result[PROGRAM_SIZE];
6818c51d 77 char subsystem[SUBSYSTEM_SIZE];
2092fbcd 78 char driver[DRIVER_SIZE];
61219c75 79 char name[NAME_SIZE];
3d150dfb 80 char symlink[NAME_SIZE];
a8b01705 81 struct sysfs_pair sysfs_pair[MAX_SYSFS_PAIRS];
5f72c470
KS
82 char owner[USER_SIZE];
83 char group[USER_SIZE];
84 mode_t mode;
50e5de03 85 int partitions;
7efa217d 86 int ignore_remove;
bd5f8e7c 87 char config_file[NAME_SIZE];
54988802 88 int config_line;
61219c75
GKH
89};
90
91struct perm_device {
92 struct list_head node;
f7b4eca4 93
9d496c74 94 char name[NAME_SIZE];
5f72c470
KS
95 char owner[USER_SIZE];
96 char group[USER_SIZE];
d45ea2b7 97 unsigned int mode;
cb32ac94
GKH
98};
99
19feb351 100extern struct list_head config_device_list;
61219c75 101extern struct list_head perm_device_list;
cb32ac94 102
2232cac8 103extern int namedev_init(void);
7a947ce5 104extern int namedev_name_device(struct udevice *udev, struct sysfs_class_device *class_dev);
19feb351 105extern int namedev_init_permissions(void);
e8baccca 106extern int namedev_init_rules(void);
19feb351 107
19feb351
GKH
108extern void dump_config_dev(struct config_device *dev);
109extern void dump_config_dev_list(void);
61219c75
GKH
110extern void dump_perm_dev(struct perm_device *dev);
111extern void dump_perm_dev_list(void);
2232cac8
GKH
112
113#endif