]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/udev-builtin.c
treewide: use log_*_errno whenever %m is in the format string
[thirdparty/systemd.git] / src / udev / udev-builtin.c
CommitLineData
c3cfed0d
KS
1/***
2 This file is part of systemd.
3
4 Copyright 2007-2012 Kay Sievers <kay@vrfy.org>
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
d7867b31
KS
19
20#include <unistd.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <stddef.h>
24#include <string.h>
25#include <errno.h>
26#include <getopt.h>
27
28#include "udev.h"
29
7781e063
KS
30static bool initialized;
31
d7867b31 32static const struct udev_builtin *builtins[] = {
f553b3b1 33#ifdef HAVE_BLKID
912541b0 34 [UDEV_BUILTIN_BLKID] = &udev_builtin_blkid,
f553b3b1 35#endif
0bb91b50 36 [UDEV_BUILTIN_BTRFS] = &udev_builtin_btrfs,
796b06c2 37 [UDEV_BUILTIN_HWDB] = &udev_builtin_hwdb,
912541b0 38 [UDEV_BUILTIN_INPUT_ID] = &udev_builtin_input_id,
9d7d42bc 39 [UDEV_BUILTIN_KEYBOARD] = &udev_builtin_keyboard,
e3043162 40#ifdef HAVE_KMOD
912541b0 41 [UDEV_BUILTIN_KMOD] = &udev_builtin_kmod,
e3043162 42#endif
a660c63c 43 [UDEV_BUILTIN_NET_ID] = &udev_builtin_net_id,
0b99c9f8 44 [UDEV_BUILTIN_NET_LINK] = &udev_builtin_net_setup_link,
912541b0 45 [UDEV_BUILTIN_PATH_ID] = &udev_builtin_path_id,
912541b0 46 [UDEV_BUILTIN_USB_ID] = &udev_builtin_usb_id,
83cd6b75
KS
47#ifdef HAVE_ACL
48 [UDEV_BUILTIN_UACCESS] = &udev_builtin_uaccess,
49#endif
d7867b31
KS
50};
51
9ec6e95b 52void udev_builtin_init(struct udev *udev) {
912541b0 53 unsigned int i;
912541b0 54
7781e063 55 if (initialized)
4af113f9 56 return;
7781e063 57
4af113f9
KS
58 for (i = 0; i < ELEMENTSOF(builtins); i++)
59 if (builtins[i]->init)
60 builtins[i]->init(udev);
7781e063
KS
61
62 initialized = true;
aa29418a
KS
63}
64
9ec6e95b 65void udev_builtin_exit(struct udev *udev) {
912541b0 66 unsigned int i;
aa29418a 67
7781e063
KS
68 if (!initialized)
69 return;
70
8fef0ff2 71 for (i = 0; i < ELEMENTSOF(builtins); i++)
912541b0
KS
72 if (builtins[i]->exit)
73 builtins[i]->exit(udev);
7781e063
KS
74
75 initialized = false;
aa29418a
KS
76}
77
9ec6e95b 78bool udev_builtin_validate(struct udev *udev) {
912541b0 79 unsigned int i;
912541b0 80
8fef0ff2 81 for (i = 0; i < ELEMENTSOF(builtins); i++)
4af113f9
KS
82 if (builtins[i]->validate && builtins[i]->validate(udev))
83 return true;
84 return false;
4f1795cc
KS
85}
86
9ec6e95b 87void udev_builtin_list(struct udev *udev) {
912541b0 88 unsigned int i;
d7867b31 89
8fef0ff2 90 for (i = 0; i < ELEMENTSOF(builtins); i++)
912541b0 91 fprintf(stderr, " %-12s %s\n", builtins[i]->name, builtins[i]->help);
d7867b31
KS
92}
93
9ec6e95b 94const char *udev_builtin_name(enum udev_builtin_cmd cmd) {
912541b0 95 return builtins[cmd]->name;
d7867b31
KS
96}
97
9ec6e95b 98bool udev_builtin_run_once(enum udev_builtin_cmd cmd) {
912541b0 99 return builtins[cmd]->run_once;
81dadce5
KS
100}
101
9ec6e95b 102enum udev_builtin_cmd udev_builtin_lookup(const char *command) {
912541b0
KS
103 char name[UTIL_PATH_SIZE];
104 enum udev_builtin_cmd i;
105 char *pos;
106
d5a89d7d 107 strscpy(name, sizeof(name), command);
912541b0
KS
108 pos = strchr(name, ' ');
109 if (pos)
110 pos[0] = '\0';
8fef0ff2 111 for (i = 0; i < ELEMENTSOF(builtins); i++)
090be865 112 if (streq(builtins[i]->name, name))
912541b0
KS
113 return i;
114 return UDEV_BUILTIN_MAX;
d7867b31
KS
115}
116
9ec6e95b 117int udev_builtin_run(struct udev_device *dev, enum udev_builtin_cmd cmd, const char *command, bool test) {
912541b0
KS
118 char arg[UTIL_PATH_SIZE];
119 int argc;
120 char *argv[128];
121
e5f2783e
KS
122 /* we need '0' here to reset the internal state */
123 optind = 0;
d5a89d7d 124 strscpy(arg, sizeof(arg), command);
912541b0
KS
125 udev_build_argv(udev_device_get_udev(dev), arg, &argc, argv);
126 return builtins[cmd]->cmd(dev, argc, argv, test);
d7867b31
KS
127}
128
9ec6e95b 129int udev_builtin_add_property(struct udev_device *dev, bool test, const char *key, const char *val) {
912541b0 130 struct udev_list_entry *entry;
d7867b31 131
912541b0
KS
132 entry = udev_device_add_property(dev, key, val);
133 /* store in db, skip private keys */
134 if (key[0] != '.')
135 udev_list_entry_set_num(entry, true);
d7867b31 136
912541b0
KS
137 if (test)
138 printf("%s=%s\n", key, val);
139 return 0;
d7867b31 140}