chiark / gitweb /
[PATCH] set default owner/group in db.
[elogind.git] / udev.h
1 /*
2  * udev.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 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_H
24 #define UDEV_H
25
26 #include "libsysfs/libsysfs.h"
27 #include <sys/param.h>
28
29 #define COMMENT_CHARACTER               '#'
30
31 #define NAME_SIZE       100
32 #define OWNER_SIZE      30
33 #define GROUP_SIZE      30
34
35 struct udevice {
36         char name[NAME_SIZE];
37         char owner[OWNER_SIZE];
38         char group[GROUP_SIZE];
39         char type;
40         int major;
41         int minor;
42         mode_t mode;
43         char symlink[NAME_SIZE];
44
45         /* fields that help us in building strings */
46         unsigned char bus_id[SYSFS_NAME_LEN];
47         unsigned char program_result[NAME_SIZE];
48         unsigned char kernel_number[NAME_SIZE];
49         unsigned char kernel_name[NAME_SIZE];
50 };
51
52 #define strfieldcpy(to, from) \
53 do { \
54         to[sizeof(to)-1] = '\0'; \
55         strncpy(to, from, sizeof(to)-1); \
56 } while (0)
57
58 extern int udev_add_device(char *path, char *subsystem);
59 extern int udev_remove_device(char *path, char *subsystem);
60 extern void udev_init_config(void);
61
62 extern char **main_argv;
63 extern char **main_envp;
64 extern char sysfs_path[SYSFS_PATH_MAX];
65 extern char udev_root[PATH_MAX];
66 extern char udev_db_filename[PATH_MAX+NAME_MAX];
67 extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
68 extern char udev_config_filename[PATH_MAX+NAME_MAX];
69 extern char udev_rules_filename[PATH_MAX+NAME_MAX];
70 extern char default_mode_str[NAME_MAX];
71 extern char default_owner_str[OWNER_SIZE];
72 extern char default_group_str[GROUP_SIZE];
73
74 #endif