]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev.h
[PATCH] udev-013/extras/multipath update
[thirdparty/systemd.git] / udev.h
CommitLineData
f0083e3d
GKH
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
5840bc63 26#include "libsysfs/libsysfs.h"
c076a2bd 27#include <sys/param.h>
f0083e3d 28
e8baccca 29#define COMMENT_CHARACTER '#'
6739707d 30
185a35a4
GKH
31#define NAME_SIZE 100
32#define OWNER_SIZE 30
33#define GROUP_SIZE 30
765cbd97 34#define MODE_SIZE 8
185a35a4 35
5840bc63
GKH
36struct udevice {
37 char name[NAME_SIZE];
38 char owner[OWNER_SIZE];
39 char group[GROUP_SIZE];
40 char type;
41 int major;
42 int minor;
43 mode_t mode;
3d150dfb 44 char symlink[NAME_SIZE];
f3b04a2e
GKH
45
46 /* fields that help us in building strings */
47 unsigned char bus_id[SYSFS_NAME_LEN];
ac28b86d 48 unsigned char program_result[NAME_SIZE];
f3b04a2e 49 unsigned char kernel_number[NAME_SIZE];
3e540368 50 unsigned char kernel_name[NAME_SIZE];
5840bc63
GKH
51};
52
70033702
AB
53#define strfieldcpy(to, from) \
54do { \
55 to[sizeof(to)-1] = '\0'; \
56 strncpy(to, from, sizeof(to)-1); \
57} while (0)
58
5840bc63
GKH
59extern int udev_add_device(char *path, char *subsystem);
60extern int udev_remove_device(char *path, char *subsystem);
e8baccca 61extern void udev_init_config(void);
a507a015 62
c27e6911
PM
63extern char **main_argv;
64extern char **main_envp;
c056c514 65extern char sysfs_path[SYSFS_PATH_MAX];
e8baccca 66extern char udev_root[PATH_MAX];
c056c514 67extern char udev_db_filename[PATH_MAX+NAME_MAX];
3836a3c4 68extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
c056c514 69extern char udev_config_filename[PATH_MAX+NAME_MAX];
e8baccca 70extern char udev_rules_filename[PATH_MAX+NAME_MAX];
765cbd97 71extern char default_mode_str[MODE_SIZE];
74c73ef9 72extern char default_owner_str[OWNER_SIZE];
73extern char default_group_str[GROUP_SIZE];
c056c514 74
f0083e3d 75#endif