chiark / gitweb /
4150c16af721a64b6f56d55f3b0f8055cd69588a
[elogind.git] / udev / udev.h
1 /*
2  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
3  * Copyright (C) 2003-2010 Kay Sievers <kay.sievers@vrfy.org>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef _UDEV_H_
20 #define _UDEV_H_
21
22 #include <sys/types.h>
23 #include <sys/param.h>
24 #include <signal.h>
25
26 #include "libudev.h"
27 #include "libudev-private.h"
28
29 #define DEFAULT_FAKE_PARTITIONS_COUNT           15
30 #define UDEV_EVENT_TIMEOUT                      180
31
32 #define UDEV_CTRL_SOCK_PATH                     "@/org/kernel/udev/udevd"
33
34 struct udev_event {
35         struct udev *udev;
36         struct udev_device *dev;
37         struct udev_device *dev_parent;
38         struct udev_device *dev_db;
39         char *name;
40         char *tmp_node;
41         char *program_result;
42         mode_t mode;
43         uid_t uid;
44         gid_t gid;
45         struct udev_list_node run_list;
46         bool group_final;
47         bool owner_final;
48         bool mode_final;
49         bool name_final;
50         bool devlink_final;
51         bool run_final;
52         bool inotify_watch;
53 };
54
55 struct udev_watch {
56         struct udev_list_node node;
57         int handle;
58         char *name;
59 };
60
61 /* udev-rules.c */
62 struct udev_rules;
63 struct udev_rules *udev_rules_new(struct udev *udev, int resolve_names);
64 void udev_rules_unref(struct udev_rules *rules);
65 int udev_rules_apply_to_event(struct udev_rules *rules, struct udev_event *event);
66 void udev_rules_apply_static_dev_perms(struct udev_rules *rules);
67
68 /* udev-event.c */
69 struct udev_event *udev_event_new(struct udev_device *dev);
70 void udev_event_unref(struct udev_event *event);
71 int udev_event_execute_rules(struct udev_event *event, struct udev_rules *rules);
72 int udev_event_execute_run(struct udev_event *event, const sigset_t *sigset);
73 size_t udev_event_apply_format(struct udev_event *event, const char *src, char *dest, size_t size);
74 int udev_event_apply_subsys_kernel(struct udev_event *event, const char *string,
75                                    char *result, size_t maxsize, int read_value);
76
77 /* udev-watch.c */
78 int udev_watch_init(struct udev *udev);
79 void udev_watch_restore(struct udev *udev);
80 void udev_watch_begin(struct udev *udev, struct udev_device *dev);
81 void udev_watch_end(struct udev *udev, struct udev_device *dev);
82 struct udev_device *udev_watch_lookup(struct udev *udev, int wd);
83
84 /* udev-node.c */
85 int udev_node_mknod(struct udev_device *dev, const char *file, mode_t mode, uid_t uid, gid_t gid);
86 int udev_node_add(struct udev_device *dev, mode_t mode, uid_t uid, gid_t gid);
87 int udev_node_remove(struct udev_device *dev);
88 void udev_node_update_old_links(struct udev_device *dev, struct udev_device *dev_old);
89
90 /* udevadm commands */
91 int udevadm_monitor(struct udev *udev, int argc, char *argv[]);
92 int udevadm_info(struct udev *udev, int argc, char *argv[]);
93 int udevadm_control(struct udev *udev, int argc, char *argv[]);
94 int udevadm_trigger(struct udev *udev, int argc, char *argv[]);
95 int udevadm_settle(struct udev *udev, int argc, char *argv[]);
96 int udevadm_test(struct udev *udev, int argc, char *argv[]);
97 #endif