]> git.ipfire.org Git - thirdparty/systemd.git/blame - namedev.h
[PATCH] Added line to udev.permissions.redhat
[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
50e5de03
KS
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_NAME "NAME"
46#define FIELD_SYMLINK "SYMLINK"
47
48#define ATTR_PARTITIONS "all_partitions"
49#define PARTITIONS_COUNT 15
50
50e5de03
KS
51#define PROGRAM_MAXARG 10
52#define MAX_SYSFS_PAIRS 5
a8b01705 53
e41245cb
KS
54#define RULEFILE_EXT ".rules"
55#define PERMFILE_EXT ".permissions"
56
a8b01705
GKH
57struct sysfs_pair {
58 char file[FILE_SIZE];
59 char value[VALUE_SIZE];
60};
cb32ac94
GKH
61
62struct config_device {
63 struct list_head node;
64
cb32ac94 65 char bus[BUS_SIZE];
cb32ac94
GKH
66 char id[ID_SIZE];
67 char place[PLACE_SIZE];
ac28b86d
KS
68 char kernel[NAME_SIZE];
69 char program[PROGRAM_SIZE];
70 char result[PROGRAM_SIZE];
61219c75 71 char name[NAME_SIZE];
3d150dfb 72 char symlink[NAME_SIZE];
a8b01705 73 struct sysfs_pair sysfs_pair[MAX_SYSFS_PAIRS];
50e5de03 74 int partitions;
bd5f8e7c 75 char config_file[NAME_SIZE];
54988802 76 int config_line;
61219c75
GKH
77};
78
79struct perm_device {
80 struct list_head node;
f7b4eca4 81
9d496c74
GKH
82 char name[NAME_SIZE];
83 char owner[OWNER_SIZE];
84 char group[GROUP_SIZE];
d45ea2b7 85 unsigned int mode;
cb32ac94
GKH
86};
87
19feb351 88extern struct list_head config_device_list;
61219c75 89extern struct list_head perm_device_list;
cb32ac94 90
2232cac8 91extern int namedev_init(void);
9d496c74 92extern int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *dev);
19feb351 93extern int namedev_init_permissions(void);
e8baccca 94extern int namedev_init_rules(void);
19feb351 95
61219c75 96extern int add_perm_dev(struct perm_device *new_dev);
19feb351
GKH
97extern void dump_config_dev(struct config_device *dev);
98extern void dump_config_dev_list(void);
61219c75
GKH
99extern void dump_perm_dev(struct perm_device *dev);
100extern void dump_perm_dev_list(void);
2232cac8
GKH
101
102#endif