]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev.h
[PATCH] cleanup man & remove symlink comment
[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
GKH
28
29#ifdef DEBUG
30#include <syslog.h>
a507a015
GKH
31#define dbg(format, arg...) \
32 do { \
33 log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg); \
34 } while (0)
f0083e3d
GKH
35#else
36 #define dbg(format, arg...) do { } while (0)
37#endif
38
6739707d
GKH
39/* Parser needs it's own debugging statement, we usually don't care about this at all */
40#ifdef DEBUG_PARSER
41#define dbg_parse(format, arg...) \
42 do { \
43 log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg); \
44 } while (0)
45#else
46 #define dbg_parse(format, arg...) do { } while (0)
47#endif
f0083e3d 48
85511f02 49
032abea6
GKH
50extern int log_message (int level, const char *format, ...)
51 __attribute__ ((format (printf, 2, 3)));
a507a015 52
e8baccca 53#define COMMENT_CHARACTER '#'
6739707d 54
185a35a4
GKH
55#define NAME_SIZE 100
56#define OWNER_SIZE 30
57#define GROUP_SIZE 30
58
5840bc63
GKH
59struct udevice {
60 char name[NAME_SIZE];
61 char owner[OWNER_SIZE];
62 char group[GROUP_SIZE];
63 char type;
64 int major;
65 int minor;
66 mode_t mode;
3d150dfb 67 char symlink[NAME_SIZE];
f3b04a2e
GKH
68
69 /* fields that help us in building strings */
70 unsigned char bus_id[SYSFS_NAME_LEN];
71 unsigned char callout_value[NAME_SIZE];
72 unsigned char kernel_number[NAME_SIZE];
73
5840bc63
GKH
74};
75
70033702
AB
76#define strfieldcpy(to, from) \
77do { \
78 to[sizeof(to)-1] = '\0'; \
79 strncpy(to, from, sizeof(to)-1); \
80} while (0)
81
5840bc63
GKH
82extern int udev_add_device(char *path, char *subsystem);
83extern int udev_remove_device(char *path, char *subsystem);
e8baccca 84extern void udev_init_config(void);
a507a015 85
c27e6911
PM
86extern char **main_argv;
87extern char **main_envp;
c056c514 88extern char sysfs_path[SYSFS_PATH_MAX];
e8baccca 89extern char udev_root[PATH_MAX];
c056c514 90extern char udev_db_filename[PATH_MAX+NAME_MAX];
3836a3c4 91extern char udev_permissions_filename[PATH_MAX+NAME_MAX];
c056c514 92extern char udev_config_filename[PATH_MAX+NAME_MAX];
e8baccca 93extern char udev_rules_filename[PATH_MAX+NAME_MAX];
206d3623 94extern char default_mode_str[NAME_MAX];
c056c514 95
f0083e3d 96#endif