blob: cd94869ae63f888b86ccb5690cfb4c5a21acbafb [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00002/*
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00003 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4 */
5
6/*
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00007 devfsd implementation for busybox
8
9 Copyright (C) 2003 by Tito Ragusa <farmatito@tiscali.it>
10
11 Busybox version is based on some previous work and ideas
12 Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>
13
14 devfsd.c
15
16 Main file for devfsd (devfs daemon for Linux).
17
18 Copyright (C) 1998-2002 Richard Gooch
19
20 devfsd.h
21
22 Header file for devfsd (devfs daemon for Linux).
23
24 Copyright (C) 1998-2000 Richard Gooch
25
26 compat_name.c
27
28 Compatibility name file for devfsd (build compatibility names).
29
30 Copyright (C) 1998-2002 Richard Gooch
31
32 expression.c
33
34 This code provides Borne Shell-like expression expansion.
35
36 Copyright (C) 1997-1999 Richard Gooch
37
38 This program is free software; you can redistribute it and/or modify
39 it under the terms of the GNU General Public License as published by
40 the Free Software Foundation; either version 2 of the License, or
41 (at your option) any later version.
42
43 This program is distributed in the hope that it will be useful,
44 but WITHOUT ANY WARRANTY; without even the implied warranty of
45 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46 GNU General Public License for more details.
47
48 You should have received a copy of the GNU General Public License
49 along with this program; if not, write to the Free Software
50 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
51
52 Richard Gooch may be reached by email at rgooch@atnf.csiro.au
53 The postal address is:
54 Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
55*/
56
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000057//#include <sys/wait.h>
58//#include <sys/ioctl.h>
59//#include <sys/socket.h>
Glenn L McGrath17d21fa2003-10-09 11:46:23 +000060#include <sys/un.h>
61#include <dirent.h>
Glenn L McGrath17d21fa2003-10-09 11:46:23 +000062#include <syslog.h>
Eric Andersen2af70002003-10-09 21:02:23 +000063#include <sys/sysmacros.h>
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000064#include "libbb.h"
65#include "xregex.h"
Glenn L McGrath17d21fa2003-10-09 11:46:23 +000066
Eric Andersen2af70002003-10-09 21:02:23 +000067
68/* Various defines taken from linux/major.h */
69#define IDE0_MAJOR 3
70#define IDE1_MAJOR 22
71#define IDE2_MAJOR 33
72#define IDE3_MAJOR 34
73#define IDE4_MAJOR 56
74#define IDE5_MAJOR 57
75#define IDE6_MAJOR 88
76#define IDE7_MAJOR 89
77#define IDE8_MAJOR 90
78#define IDE9_MAJOR 91
79
80
81/* Various defines taken from linux/devfs_fs.h */
82#define DEVFSD_PROTOCOL_REVISION_KERNEL 5
83#define DEVFSD_IOCTL_BASE 'd'
84/* These are the various ioctls */
85#define DEVFSDIOC_GET_PROTO_REV _IOR(DEVFSD_IOCTL_BASE, 0, int)
86#define DEVFSDIOC_SET_EVENT_MASK _IOW(DEVFSD_IOCTL_BASE, 2, int)
87#define DEVFSDIOC_RELEASE_EVENT_QUEUE _IOW(DEVFSD_IOCTL_BASE, 3, int)
Eric Andersenf18bd892003-12-19 11:07:59 +000088#define DEVFSDIOC_SET_CONFIG_DEBUG_MASK _IOW(DEVFSD_IOCTL_BASE, 4, int)
Eric Andersen2af70002003-10-09 21:02:23 +000089#define DEVFSD_NOTIFY_REGISTERED 0
90#define DEVFSD_NOTIFY_UNREGISTERED 1
91#define DEVFSD_NOTIFY_ASYNC_OPEN 2
92#define DEVFSD_NOTIFY_CLOSE 3
93#define DEVFSD_NOTIFY_LOOKUP 4
94#define DEVFSD_NOTIFY_CHANGE 5
95#define DEVFSD_NOTIFY_CREATE 6
96#define DEVFSD_NOTIFY_DELETE 7
Eric Andersenf18bd892003-12-19 11:07:59 +000097#define DEVFS_PATHLEN 1024
98/* Never change this otherwise the binary interface will change */
99
Eric Andersen2af70002003-10-09 21:02:23 +0000100struct devfsd_notify_struct
101{ /* Use native C types to ensure same types in kernel and user space */
102 unsigned int type; /* DEVFSD_NOTIFY_* value */
103 unsigned int mode; /* Mode of the inode or device entry */
104 unsigned int major; /* Major number of device entry */
105 unsigned int minor; /* Minor number of device entry */
106 unsigned int uid; /* Uid of process, inode or device entry */
107 unsigned int gid; /* Gid of process, inode or device entry */
108 unsigned int overrun_count; /* Number of lost events */
109 unsigned int namelen; /* Number of characters not including '\0' */
110 /* The device name MUST come last */
111 char devname[DEVFS_PATHLEN]; /* This will be '\0' terminated */
112};
113
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000114#define BUFFER_SIZE 16384
115#define DEVFSD_VERSION "1.3.25"
116#define CONFIG_FILE "/etc/devfsd.conf"
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000117#define MODPROBE "/sbin/modprobe"
Eric Andersenf18bd892003-12-19 11:07:59 +0000118#define MODPROBE_SWITCH_1 "-k"
119#define MODPROBE_SWITCH_2 "-C"
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000120#define CONFIG_MODULES_DEVFS "/etc/modules.devfs"
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000121#define MAX_ARGS (6 + 1)
122#define MAX_SUBEXPR 10
123#define STRING_LENGTH 255
124
125/* for get_uid_gid() */
126#define UID 0
127#define GID 1
128
Rob Landley1ba19d62005-10-08 17:42:35 +0000129/* fork_and_execute() */
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000130# define DIE 1
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000131# define NO_DIE 0
132
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000133/* for dir_operation() */
134#define RESTORE 0
135#define SERVICE 1
136#define READ_CONFIG 2
137
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000138/* Update only after changing code to reflect new protocol */
139#define DEVFSD_PROTOCOL_REVISION_DAEMON 5
140
141/* Compile-time check */
142#if DEVFSD_PROTOCOL_REVISION_KERNEL != DEVFSD_PROTOCOL_REVISION_DAEMON
143#error protocol version mismatch. Update your kernel headers
144#endif
145
146#define AC_PERMISSIONS 0
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000147#define AC_MODLOAD 1
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000148#define AC_EXECUTE 2
149#define AC_MFUNCTION 3 /* not supported by busybox */
150#define AC_CFUNCTION 4 /* not supported by busybox */
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000151#define AC_COPY 5
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000152#define AC_IGNORE 6
153#define AC_MKOLDCOMPAT 7
154#define AC_MKNEWCOMPAT 8
155#define AC_RMOLDCOMPAT 9
156#define AC_RMNEWCOMPAT 10
157#define AC_RESTORE 11
158
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000159struct permissions_type
160{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000161 mode_t mode;
162 uid_t uid;
163 gid_t gid;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000164};
165
166struct execute_type
167{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000168 char *argv[MAX_ARGS + 1]; /* argv[0] must always be the programme */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000169};
170
171struct copy_type
172{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000173 const char *source;
174 const char *destination;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000175};
176
177struct action_type
178{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000179 unsigned int what;
180 unsigned int when;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000181};
182
183struct config_entry_struct
184{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000185 struct action_type action;
186 regex_t preg;
187 union
188 {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000189 struct permissions_type permissions;
190 struct execute_type execute;
191 struct copy_type copy;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000192 }
193 u;
194 struct config_entry_struct *next;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000195};
196
197struct get_variable_info
198{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000199 const struct devfsd_notify_struct *info;
200 const char *devname;
201 char devpath[STRING_LENGTH];
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000202};
203
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000204static void dir_operation(int , const char * , int, unsigned long*);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000205static void service(struct stat statbuf, char *path);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000206static int st_expr_expand(char *, unsigned, const char *, const char *(*)(const char *, void *), void *);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000207static const char *get_old_name(const char *, unsigned, char *, unsigned, unsigned);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000208static int mksymlink(const char *oldpath, const char *newpath);
209static void read_config_file(char *path, int optional, unsigned long *event_mask);
210static void process_config_line(const char *, unsigned long *);
211static int do_servicing(int, unsigned long);
212static void service_name(const struct devfsd_notify_struct *);
213static void action_permissions(const struct devfsd_notify_struct *, const struct config_entry_struct *);
214static void action_execute(const struct devfsd_notify_struct *, const struct config_entry_struct *,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000215 const regmatch_t *, unsigned);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000216static void action_modload(const struct devfsd_notify_struct *info, const struct config_entry_struct *entry);
217static void action_copy(const struct devfsd_notify_struct *, const struct config_entry_struct *,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000218 const regmatch_t *, unsigned);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000219static void action_compat(const struct devfsd_notify_struct *, unsigned);
220static void free_config(void);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000221static void restore(char *spath, struct stat source_stat, int rootlen);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000222static int copy_inode(const char *, const struct stat *, mode_t, const char *, const struct stat *);
223static mode_t get_mode(const char *);
224static void signal_handler(int);
225static const char *get_variable(const char *, void *);
226static int make_dir_tree(const char *);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000227static int expand_expression(char *, unsigned, const char *, const char *(*)(const char *, void *), void *,
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000228 const char *, const regmatch_t *, unsigned);
229static void expand_regexp(char *, size_t, const char *, const char *, const regmatch_t *, unsigned);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000230static const char *expand_variable( char *, unsigned, unsigned *, const char *,
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000231 const char *(*)(const char *, void *), void *);
232static const char *get_variable_v2(const char *, const char *(*)(const char *, void *), void *);
233static char get_old_ide_name(unsigned , unsigned);
234static char *write_old_sd_name(char *, unsigned, unsigned, const char *);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000235
236/* busybox functions */
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000237static int get_uid_gid(int flag, const char *string);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000238static void safe_memcpy(char * dest, const char * src, int len);
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000239static unsigned int scan_dev_name_common(const char *d, unsigned int n, int addendum, const char *ptr);
240static unsigned int scan_dev_name(const char *d, unsigned int n, const char *ptr);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000241
242/* Structs and vars */
243static struct config_entry_struct *first_config = NULL;
244static struct config_entry_struct *last_config = NULL;
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000245static char *mount_point = NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000246static volatile int caught_signal = FALSE;
247static volatile int caught_sighup = FALSE;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000248static struct initial_symlink_struct {
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000249 const char *dest;
250 const char *name;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000251} initial_symlinks[] = {
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000252 {"/proc/self/fd", "fd"},
253 {"fd/0", "stdin"},
254 {"fd/1", "stdout"},
255 {"fd/2", "stderr"},
256 {NULL, NULL},
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000257};
258
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000259static struct event_type {
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000260 unsigned int type; /* The DEVFSD_NOTIFY_* value */
261 const char *config_name; /* The name used in the config file */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000262} event_types[] = {
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000263 {DEVFSD_NOTIFY_REGISTERED, "REGISTER"},
264 {DEVFSD_NOTIFY_UNREGISTERED, "UNREGISTER"},
265 {DEVFSD_NOTIFY_ASYNC_OPEN, "ASYNC_OPEN"},
266 {DEVFSD_NOTIFY_CLOSE, "CLOSE"},
267 {DEVFSD_NOTIFY_LOOKUP, "LOOKUP"},
268 {DEVFSD_NOTIFY_CHANGE, "CHANGE"},
269 {DEVFSD_NOTIFY_CREATE, "CREATE"},
270 {DEVFSD_NOTIFY_DELETE, "DELETE"},
271 {0xffffffff, NULL}
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000272};
273
Rob Landley1ba19d62005-10-08 17:42:35 +0000274/* Busybox messages */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000275
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000276static const char bb_msg_proto_rev[] ALIGN1 = "protocol revision";
277static const char bb_msg_bad_config[] ALIGN1 = "bad %s config file: %s";
278static const char bb_msg_small_buffer[] ALIGN1 = "buffer too small";
279static const char bb_msg_variable_not_found[] ALIGN1 = "variable: %s not found";
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000280
Rob Landley1ba19d62005-10-08 17:42:35 +0000281/* Busybox stuff */
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000282#if ENABLE_DEVFSD_VERBOSE || ENABLE_DEBUG
283#define info_logger(p, fmt, args...) bb_info_msg(fmt, ## args)
284#define msg_logger(p, fmt, args...) bb_error_msg(fmt, ## args)
285#define msg_logger_and_die(p, fmt, args...) bb_error_msg_and_die(fmt, ## args)
286#define error_logger(p, fmt, args...) bb_perror_msg(fmt, ## args)
287#define error_logger_and_die(p, fmt, args...) bb_perror_msg_and_die(fmt, ## args)
Rob Landley1ba19d62005-10-08 17:42:35 +0000288#else
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000289#define info_logger(p, fmt, args...)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000290#define msg_logger(p, fmt, args...)
Rob Landley1ba19d62005-10-08 17:42:35 +0000291#define msg_logger_and_die(p, fmt, args...) exit(1)
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000292#define error_logger(p, fmt, args...)
293#define error_logger_and_die(p, fmt, args...) exit(1)
Eric Andersenf18bd892003-12-19 11:07:59 +0000294#endif
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000295
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000296static void safe_memcpy(char *dest, const char *src, int len)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000297{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000298 memcpy(dest , src, len);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000299 dest[len] = '\0';
300}
301
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000302static unsigned int scan_dev_name_common(const char *d, unsigned int n, int addendum, const char *ptr)
Eric Andersenf18bd892003-12-19 11:07:59 +0000303{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000304 if (d[n - 4] == 'd' && d[n - 3] == 'i' && d[n - 2] == 's' && d[n - 1] == 'c')
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000305 return 2 + addendum;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000306 if (d[n - 2] == 'c' && d[n - 1] == 'd')
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000307 return 3 + addendum;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000308 if (ptr[0] == 'p' && ptr[1] == 'a' && ptr[2] == 'r' && ptr[3] == 't')
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000309 return 4 + addendum;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000310 if (ptr[n - 2] == 'm' && ptr[n - 1] == 't')
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000311 return 5 + addendum;
312 return 0;
Eric Andersenf18bd892003-12-19 11:07:59 +0000313}
314
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000315static unsigned int scan_dev_name(const char *d, unsigned int n, const char *ptr)
Eric Andersenf18bd892003-12-19 11:07:59 +0000316{
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000317 if (d[0] == 's' && d[1] == 'c' && d[2] == 's' && d[3] == 'i' && d[4] == '/') {
318 if (d[n - 7] == 'g' && d[n - 6] == 'e' && d[n - 5] == 'n'
319 && d[n - 4] == 'e' && d[n - 3] == 'r' && d[n - 2] == 'i' && d[n - 1] == 'c'
320 )
Eric Andersenf18bd892003-12-19 11:07:59 +0000321 return 1;
322 return scan_dev_name_common(d, n, 0, ptr);
323 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000324 if (d[0] == 'i' && d[1] == 'd' && d[2] == 'e' && d[3] == '/'
325 && d[4] == 'h' && d[5] == 'o' && d[6] == 's' && d[7] == 't'
326 )
Eric Andersenf18bd892003-12-19 11:07:59 +0000327 return scan_dev_name_common(d, n, 4, ptr);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000328 if (d[0] == 's' && d[1] == 'b' && d[2] == 'p' && d[3] == '/')
Eric Andersenf18bd892003-12-19 11:07:59 +0000329 return 10;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000330 if (d[0] == 'v' && d[1] == 'c' && d[2] == 'c' && d[3] == '/')
Eric Andersenf18bd892003-12-19 11:07:59 +0000331 return 11;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000332 if (d[0] == 'p' && d[1] == 't' && d[2] == 'y' && d[3] == '/')
Eric Andersenf18bd892003-12-19 11:07:59 +0000333 return 12;
Eric Andersenf18bd892003-12-19 11:07:59 +0000334 return 0;
335}
336
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000337/* Public functions follow */
338
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000339int devfsd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000340int devfsd_main(int argc, char **argv)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000341{
342 int print_version = FALSE;
343 int do_daemon = TRUE;
344 int no_polling = FALSE;
Eric Andersenf18bd892003-12-19 11:07:59 +0000345 int do_scan;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000346 int fd, proto_rev, count;
347 unsigned long event_mask = 0;
348 struct sigaction new_action;
349 struct initial_symlink_struct *curr;
350
351 if (argc < 2)
352 bb_show_usage();
353
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000354 for (count = 2; count < argc; ++count) {
355 if (argv[count][0] == '-') {
356 if (argv[count][1] == 'v' && !argv[count][2]) /* -v */
Denis Vlasenko679b4122007-07-01 18:18:54 +0000357 print_version = TRUE;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000358 else if (ENABLE_DEVFSD_FG_NP && argv[count][1] == 'f'
Denis Vlasenko679b4122007-07-01 18:18:54 +0000359 && argv[count][2] == 'g' && !argv[count][3]) /* -fg */
360 do_daemon = FALSE;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000361 else if (ENABLE_DEVFSD_FG_NP && argv[count][1] == 'n'
Denis Vlasenko679b4122007-07-01 18:18:54 +0000362 && argv[count][2] == 'p' && !argv[count][3]) /* -np */
363 no_polling = TRUE;
Eric Andersenf18bd892003-12-19 11:07:59 +0000364 else
365 bb_show_usage();
366 }
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000367 }
368
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000369 mount_point = bb_simplify_path(argv[1]);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000370
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000371 xchdir(mount_point);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000372
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000373 fd = xopen(".devfsd", O_RDONLY);
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000374 close_on_exec_on(fd);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000375 xioctl(fd, DEVFSDIOC_GET_PROTO_REV, &proto_rev);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000376
377 /*setup initial entries */
Denis Vlasenko679b4122007-07-01 18:18:54 +0000378 for (curr = initial_symlinks; curr->dest != NULL; ++curr)
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000379 symlink(curr->dest, curr->name);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000380
381 /* NB: The check for CONFIG_FILE is done in read_config_file() */
382
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000383 if (print_version || (DEVFSD_PROTOCOL_REVISION_DAEMON != proto_rev)) {
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000384 printf("%s v%s\nDaemon %s:\t%d\nKernel-side %s:\t%d\n",
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000385 applet_name, DEVFSD_VERSION, bb_msg_proto_rev,
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000386 DEVFSD_PROTOCOL_REVISION_DAEMON, bb_msg_proto_rev, proto_rev);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000387 if (DEVFSD_PROTOCOL_REVISION_DAEMON != proto_rev)
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000388 bb_error_msg_and_die("%s mismatch!", bb_msg_proto_rev);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000389 exit(EXIT_SUCCESS); /* -v */
390 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000391 /* Tell kernel we are special(i.e. we get to see hidden entries) */
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000392 xioctl(fd, DEVFSDIOC_SET_EVENT_MASK, 0);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000393
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000394 sigemptyset(&new_action.sa_mask);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000395 new_action.sa_flags = 0;
396
397 /* Set up SIGHUP and SIGUSR1 handlers */
398 new_action.sa_handler = signal_handler;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000399 if (sigaction(SIGHUP, &new_action, NULL) != 0 || sigaction(SIGUSR1, &new_action, NULL) != 0)
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000400 bb_error_msg_and_die("sigaction");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000401
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000402 printf("%s v%s started for %s\n",applet_name, DEVFSD_VERSION, mount_point);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000403
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000404 /* Set umask so that mknod(2), open(2) and mkdir(2) have complete control over permissions */
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000405 umask(0);
406 read_config_file((char*)CONFIG_FILE, FALSE, &event_mask);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000407 /* Do the scan before forking, so that boot scripts see the finished product */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000408 dir_operation(SERVICE, mount_point, 0, NULL);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000409
Rob Landley1ba19d62005-10-08 17:42:35 +0000410 if (ENABLE_DEVFSD_FG_NP && no_polling)
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000411 exit(0);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000412
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000413 if (ENABLE_DEVFSD_VERBOSE || ENABLE_DEBUG)
414 logmode = LOGMODE_BOTH;
415 else if (do_daemon == TRUE)
416 logmode = LOGMODE_SYSLOG;
417 /* This is the default */
418 /*else
419 logmode = LOGMODE_STDIO; */
420
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000421 if (do_daemon) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000422 /* Release so that the child can grab it */
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000423 xioctl(fd, DEVFSDIOC_RELEASE_EVENT_QUEUE, 0);
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000424 bb_daemonize_or_rexec(0, argv);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000425 } else if (ENABLE_DEVFSD_FG_NP) {
426 setpgid(0, 0); /* Become process group leader */
Rob Landley1ba19d62005-10-08 17:42:35 +0000427 }
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000428
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000429 while (TRUE) {
430 do_scan = do_servicing(fd, event_mask);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000431
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000432 free_config();
433 read_config_file((char*)CONFIG_FILE, FALSE, &event_mask);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000434 if (do_scan)
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000435 dir_operation(SERVICE, mount_point, 0, NULL);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000436 }
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000437 if (ENABLE_FEATURE_CLEAN_UP) free(mount_point);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000438} /* End Function main */
439
440
441/* Private functions follow */
442
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000443static void read_config_file(char *path, int optional, unsigned long *event_mask)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000444/* [SUMMARY] Read a configuration database.
445 <path> The path to read the database from. If this is a directory, all
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000446 entries in that directory will be read(except hidden entries).
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000447 <optional> If TRUE, the routine will silently ignore a missing config file.
448 <event_mask> The event mask is written here. This is not initialised.
449 [RETURNS] Nothing.
450*/
451{
452 struct stat statbuf;
453 FILE *fp;
454 char buf[STRING_LENGTH];
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000455 char *line = NULL;
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000456 char *p;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000457
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000458 if (stat(path, &statbuf) == 0) {
Rob Landley06813d02005-06-07 03:47:00 +0000459 /* Don't read 0 length files: ignored */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000460 /*if (statbuf.st_size == 0)
Rob Landley06813d02005-06-07 03:47:00 +0000461 return;*/
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000462 if (S_ISDIR(statbuf.st_mode)) {
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000463 p = bb_simplify_path(path);
464 dir_operation(READ_CONFIG, p, 0, event_mask);
465 free(p);
Rob Landley06813d02005-06-07 03:47:00 +0000466 return;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000467 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000468 if ((fp = fopen(path, "r")) != NULL) {
469 while (fgets(buf, STRING_LENGTH, fp) != NULL) {
Rob Landley06813d02005-06-07 03:47:00 +0000470 /* Skip whitespace */
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000471 line = buf;
472 line = skip_whitespace(line);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000473 if (line[0] == '\0' || line[0] == '#')
Rob Landley06813d02005-06-07 03:47:00 +0000474 continue;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000475 process_config_line(line, event_mask);
Rob Landley06813d02005-06-07 03:47:00 +0000476 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000477 fclose(fp);
Rob Landley06813d02005-06-07 03:47:00 +0000478 } else {
479 goto read_config_file_err;
480 }
481 } else {
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000482read_config_file_err:
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000483 if (optional == 0 && errno == ENOENT)
484 error_logger_and_die(LOG_ERR, "read config file: %s", path);
Rob Landley06813d02005-06-07 03:47:00 +0000485 }
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000486} /* End Function read_config_file */
487
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000488static void process_config_line(const char *line, unsigned long *event_mask)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000489/* [SUMMARY] Process a line from a configuration file.
490 <line> The configuration line.
491 <event_mask> The event mask is written here. This is not initialised.
492 [RETURNS] Nothing.
493*/
494{
495 int num_args, count;
496 struct config_entry_struct *new;
497 char p[MAX_ARGS][STRING_LENGTH];
498 char when[STRING_LENGTH], what[STRING_LENGTH];
499 char name[STRING_LENGTH];
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000500 const char *msg = "";
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000501 char *ptr;
"Vladimir N. Oleynik"2f0a5f92005-12-06 12:00:39 +0000502 int i;
Eric Andersenf18bd892003-12-19 11:07:59 +0000503
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000504 /* !!!! Only Uppercase Keywords in devsfd.conf */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000505 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000506 "CLEAR_CONFIG\0""INCLUDE\0""OPTIONAL_INCLUDE\0"
507 "RESTORE\0""PERMISSIONS\0""MODLOAD\0""EXECUTE\0"
508 "COPY\0""IGNORE\0""MKOLDCOMPAT\0""MKNEWCOMPAT\0"
509 "RMOLDCOMPAT\0""RMNEWCOMPAT\0";
Rob Landley1ba19d62005-10-08 17:42:35 +0000510
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000511 for (count = 0; count < MAX_ARGS; ++count)
512 p[count][0] = '\0';
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000513 num_args = sscanf(line, "%s %s %s %s %s %s %s %s %s %s",
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000514 when, name, what,
515 p[0], p[1], p[2], p[3], p[4], p[5], p[6]);
Eric Andersenf18bd892003-12-19 11:07:59 +0000516
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000517 i = index_in_strings(options, when);
Eric Andersenf18bd892003-12-19 11:07:59 +0000518
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000519 /* "CLEAR_CONFIG" */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000520 if (i == 0) {
521 free_config();
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000522 *event_mask = 0;
523 return;
524 }
Eric Andersenf18bd892003-12-19 11:07:59 +0000525
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000526 if (num_args < 2)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000527 goto process_config_line_err;
528
Eric Andersenf18bd892003-12-19 11:07:59 +0000529 /* "INCLUDE" & "OPTIONAL_INCLUDE" */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000530 if (i == 1 || i == 2) {
531 st_expr_expand(name, STRING_LENGTH, name, get_variable, NULL);
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000532 info_logger(LOG_INFO, "%sinclude: %s", (toupper(when[0]) == 'I') ? "": "optional_", name);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000533 read_config_file(name, (toupper(when[0]) == 'I') ? FALSE : TRUE, event_mask);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000534 return;
535 }
Eric Andersenf18bd892003-12-19 11:07:59 +0000536 /* "RESTORE" */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000537 if (i == 3) {
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000538 dir_operation(RESTORE, name, strlen(name),NULL);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000539 return;
540 }
541 if (num_args < 3)
542 goto process_config_line_err;
543
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000544 new = xzalloc(sizeof *new);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000545
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000546 for (count = 0; event_types[count].config_name != NULL; ++count) {
547 if (strcasecmp(when, event_types[count].config_name) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000548 continue;
549 new->action.when = event_types[count].type;
550 break;
551 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000552 if (event_types[count].config_name == NULL) {
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000553 msg = "WHEN in";
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000554 goto process_config_line_err;
555 }
556
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000557 i = index_in_strings(options, what);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000558
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000559 switch (i) {
Eric Andersenf18bd892003-12-19 11:07:59 +0000560 case 4: /* "PERMISSIONS" */
561 new->action.what = AC_PERMISSIONS;
562 /* Get user and group */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000563 if ((ptr = strchr(p[0], '.')) == NULL) {
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000564 msg = "UID.GID";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000565 goto process_config_line_err; /*"missing '.' in UID.GID"*/
Eric Andersenf18bd892003-12-19 11:07:59 +0000566 }
567
568 *ptr++ = '\0';
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000569 new->u.permissions.uid = get_uid_gid(UID, p[0]);
570 new->u.permissions.gid = get_uid_gid(GID, ptr);
Eric Andersenf18bd892003-12-19 11:07:59 +0000571 /* Get mode */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000572 new->u.permissions.mode = get_mode(p[1]);
Eric Andersenf18bd892003-12-19 11:07:59 +0000573 break;
Eric Andersenf18bd892003-12-19 11:07:59 +0000574 case 5: /* MODLOAD */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000575 /*This action will pass "/dev/$devname"(i.e. "/dev/" prefixed to
Eric Andersenf18bd892003-12-19 11:07:59 +0000576 the device name) to the module loading facility. In addition,
577 the /etc/modules.devfs configuration file is used.*/
Rob Landley1ba19d62005-10-08 17:42:35 +0000578 if (ENABLE_DEVFSD_MODLOAD)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000579 new->action.what = AC_MODLOAD;
Eric Andersenf18bd892003-12-19 11:07:59 +0000580 break;
Eric Andersenf18bd892003-12-19 11:07:59 +0000581 case 6: /* EXECUTE */
582 new->action.what = AC_EXECUTE;
583 num_args -= 3;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000584
Eric Andersenf18bd892003-12-19 11:07:59 +0000585 for (count = 0; count < num_args; ++count)
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000586 new->u.execute.argv[count] = xstrdup(p[count]);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000587
Eric Andersenf18bd892003-12-19 11:07:59 +0000588 new->u.execute.argv[num_args] = NULL;
589 break;
590 case 7: /* COPY */
591 new->action.what = AC_COPY;
592 num_args -= 3;
593 if (num_args != 2)
594 goto process_config_line_err; /* missing path and function in line */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000595
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000596 new->u.copy.source = xstrdup(p[0]);
597 new->u.copy.destination = xstrdup(p[1]);
Eric Andersenf18bd892003-12-19 11:07:59 +0000598 break;
599 case 8: /* IGNORE */
600 /* FALLTROUGH */
601 case 9: /* MKOLDCOMPAT */
602 /* FALLTROUGH */
603 case 10: /* MKNEWCOMPAT */
604 /* FALLTROUGH */
605 case 11:/* RMOLDCOMPAT */
606 /* FALLTROUGH */
607 case 12: /* RMNEWCOMPAT */
608 /* AC_IGNORE 6
609 AC_MKOLDCOMPAT 7
610 AC_MKNEWCOMPAT 8
611 AC_RMOLDCOMPAT 9
612 AC_RMNEWCOMPAT 10*/
613 new->action.what = i - 2;
614 break;
615 default:
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000616 msg = "WHAT in";
Eric Andersenf18bd892003-12-19 11:07:59 +0000617 goto process_config_line_err;
618 /*esac*/
619 } /* switch (i) */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000620
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000621 xregcomp(&new->preg, name, REG_EXTENDED);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000622
623 *event_mask |= 1 << new->action.when;
624 new->next = NULL;
625 if (first_config == NULL)
626 first_config = new;
627 else
628 last_config->next = new;
629 last_config = new;
630 return;
Denis Vlasenko856be772007-08-17 08:29:48 +0000631
632 process_config_line_err:
Rob Landley1ba19d62005-10-08 17:42:35 +0000633 msg_logger_and_die(LOG_ERR, bb_msg_bad_config, msg , line);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000634} /* End Function process_config_line */
635
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000636static int do_servicing(int fd, unsigned long event_mask)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000637/* [SUMMARY] Service devfs changes until a signal is received.
638 <fd> The open control file.
639 <event_mask> The event mask.
640 [RETURNS] TRUE if SIGHUP was caught, else FALSE.
641*/
642{
643 ssize_t bytes;
644 struct devfsd_notify_struct info;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000645
Denis Vlasenko856be772007-08-17 08:29:48 +0000646 /* (void*) cast is only in order to match prototype */
647 xioctl(fd, DEVFSDIOC_SET_EVENT_MASK, (void*)event_mask);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000648 while (!caught_signal) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000649 errno = 0;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000650 bytes = read(fd,(char *) &info, sizeof info);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000651 if (caught_signal)
652 break; /* Must test for this first */
653 if (errno == EINTR)
654 continue; /* Yes, the order is important */
655 if (bytes < 1)
656 break;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000657 service_name(&info);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000658 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000659 if (caught_signal) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000660 int c_sighup = caught_sighup;
661
662 caught_signal = FALSE;
663 caught_sighup = FALSE;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000664 return c_sighup;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000665 }
Rob Landley1ba19d62005-10-08 17:42:35 +0000666 msg_logger_and_die(LOG_ERR, "read error on control file");
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000667} /* End Function do_servicing */
668
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000669static void service_name(const struct devfsd_notify_struct *info)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000670/* [SUMMARY] Service a single devfs change.
671 <info> The devfs change.
672 [RETURNS] Nothing.
673*/
674{
675 unsigned int n;
676 regmatch_t mbuf[MAX_SUBEXPR];
677 struct config_entry_struct *entry;
678
Rob Landley1ba19d62005-10-08 17:42:35 +0000679 if (ENABLE_DEBUG && info->overrun_count > 0)
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000680 msg_logger(LOG_ERR, "lost %u events", info->overrun_count);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000681
682 /* Discard lookups on "/dev/log" and "/dev/initctl" */
Denis Vlasenko49a128a2007-07-17 21:42:59 +0000683 if (info->type == DEVFSD_NOTIFY_LOOKUP
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000684 && ((info->devname[0] == 'l' && info->devname[1] == 'o'
Denis Vlasenko49a128a2007-07-17 21:42:59 +0000685 && info->devname[2] == 'g' && !info->devname[3])
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000686 || (info->devname[0] == 'i' && info->devname[1] == 'n'
687 && info->devname[2] == 'i' && info->devname[3] == 't'
688 && info->devname[4] == 'c' && info->devname[5] == 't'
689 && info->devname[6] == 'l' && !info->devname[7]))
690 )
691 return;
692
693 for (entry = first_config; entry != NULL; entry = entry->next) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000694 /* First check if action matches the type, then check if name matches */
Denis Vlasenko49a128a2007-07-17 21:42:59 +0000695 if (info->type != entry->action.when
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000696 || regexec(&entry->preg, info->devname, MAX_SUBEXPR, mbuf, 0) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000697 continue;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000698 for (n = 0;(n < MAX_SUBEXPR) && (mbuf[n].rm_so != -1); ++n)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000699 /* VOID */;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000700
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000701 switch (entry->action.what) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000702 case AC_PERMISSIONS:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000703 action_permissions(info, entry);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000704 break;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000705 case AC_MODLOAD:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000706 if (ENABLE_DEVFSD_MODLOAD)
707 action_modload(info, entry);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000708 break;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000709 case AC_EXECUTE:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000710 action_execute(info, entry, mbuf, n);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000711 break;
712 case AC_COPY:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000713 action_copy(info, entry, mbuf, n);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000714 break;
715 case AC_IGNORE:
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000716 return;
717 /*break;*/
718 case AC_MKOLDCOMPAT:
719 case AC_MKNEWCOMPAT:
720 case AC_RMOLDCOMPAT:
721 case AC_RMNEWCOMPAT:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000722 action_compat(info, entry->action.what);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000723 break;
724 default:
Rob Landley1ba19d62005-10-08 17:42:35 +0000725 msg_logger_and_die(LOG_ERR, "Unknown action");
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000726 }
727 }
728} /* End Function service_name */
729
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000730static void action_permissions(const struct devfsd_notify_struct *info,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000731 const struct config_entry_struct *entry)
732/* [SUMMARY] Update permissions for a device entry.
733 <info> The devfs change.
734 <entry> The config file entry.
735 [RETURNS] Nothing.
736*/
737{
738 struct stat statbuf;
739
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000740 if (stat(info->devname, &statbuf) != 0
741 || chmod(info->devname, (statbuf.st_mode & S_IFMT) | (entry->u.permissions.mode & ~S_IFMT)) != 0
742 || chown(info->devname, entry->u.permissions.uid, entry->u.permissions.gid) != 0
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000743 )
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000744 error_logger(LOG_ERR, "Can't chmod or chown: %s", info->devname);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000745} /* End Function action_permissions */
746
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000747static void action_modload(const struct devfsd_notify_struct *info,
"Vladimir N. Oleynik"73ffd762006-02-01 12:56:19 +0000748 const struct config_entry_struct *entry ATTRIBUTE_UNUSED)
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000749/* [SUMMARY] Load a module.
750 <info> The devfs change.
751 <entry> The config file entry.
752 [RETURNS] Nothing.
753*/
754{
755 char *argv[6];
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000756
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000757 argv[0] = (char*)MODPROBE;
758 argv[1] = (char*)MODPROBE_SWITCH_1; /* "-k" */
759 argv[2] = (char*)MODPROBE_SWITCH_2; /* "-C" */
760 argv[3] = (char*)CONFIG_MODULES_DEVFS;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000761 argv[4] = concat_path_file("/dev", info->devname); /* device */
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000762 argv[5] = NULL;
Eric Andersenf18bd892003-12-19 11:07:59 +0000763
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000764 wait4pid(xspawn(argv));
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000765 free(argv[4]);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000766} /* End Function action_modload */
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000767
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000768static void action_execute(const struct devfsd_notify_struct *info,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000769 const struct config_entry_struct *entry,
770 const regmatch_t *regexpr, unsigned int numexpr)
771/* [SUMMARY] Execute a programme.
772 <info> The devfs change.
773 <entry> The config file entry.
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000774 <regexpr> The number of subexpression(start, end) offsets within the
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000775 device name.
776 <numexpr> The number of elements within <<regexpr>>.
777 [RETURNS] Nothing.
778*/
779{
780 unsigned int count;
781 struct get_variable_info gv_info;
782 char *argv[MAX_ARGS + 1];
783 char largv[MAX_ARGS + 1][STRING_LENGTH];
784
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000785 gv_info.info = info;
786 gv_info.devname = info->devname;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000787 snprintf(gv_info.devpath, sizeof(gv_info.devpath), "%s/%s", mount_point, info->devname);
788 for (count = 0; entry->u.execute.argv[count] != NULL; ++count) {
789 expand_expression(largv[count], STRING_LENGTH,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000790 entry->u.execute.argv[count],
791 get_variable, &gv_info,
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000792 gv_info.devname, regexpr, numexpr);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000793 argv[count] = largv[count];
794 }
795 argv[count] = NULL;
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000796 wait4pid(spawn(argv));
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000797} /* End Function action_execute */
798
799
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000800static void action_copy(const struct devfsd_notify_struct *info,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000801 const struct config_entry_struct *entry,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000802 const regmatch_t *regexpr, unsigned int numexpr)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000803/* [SUMMARY] Copy permissions.
804 <info> The devfs change.
805 <entry> The config file entry.
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000806 <regexpr> This list of subexpression(start, end) offsets within the
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000807 device name.
808 <numexpr> The number of elements in <<regexpr>>.
809 [RETURNS] Nothing.
810*/
811{
812 mode_t new_mode;
813 struct get_variable_info gv_info;
814 struct stat source_stat, dest_stat;
815 char source[STRING_LENGTH], destination[STRING_LENGTH];
Rob Landley1ba19d62005-10-08 17:42:35 +0000816 int ret = 0;
817
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000818 dest_stat.st_mode = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000819
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000820 if ((info->type == DEVFSD_NOTIFY_CHANGE) && S_ISLNK(info->mode))
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000821 return;
822 gv_info.info = info;
823 gv_info.devname = info->devname;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000824
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000825 snprintf(gv_info.devpath, sizeof(gv_info.devpath), "%s/%s", mount_point, info->devname);
826 expand_expression(source, STRING_LENGTH, entry->u.copy.source,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000827 get_variable, &gv_info, gv_info.devname,
828 regexpr, numexpr);
829
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000830 expand_expression(destination, STRING_LENGTH, entry->u.copy.destination,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000831 get_variable, &gv_info, gv_info.devname,
832 regexpr, numexpr);
833
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000834 if (!make_dir_tree(destination) || lstat(source, &source_stat) != 0)
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000835 return;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000836 lstat(destination, &dest_stat);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000837 new_mode = source_stat.st_mode & ~S_ISVTX;
838 if (info->type == DEVFSD_NOTIFY_CREATE)
839 new_mode |= S_ISVTX;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000840 else if ((info->type == DEVFSD_NOTIFY_CHANGE) &&(dest_stat.st_mode & S_ISVTX))
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000841 new_mode |= S_ISVTX;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000842 ret = copy_inode(destination, &dest_stat, new_mode, source, &source_stat);
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000843 if (ENABLE_DEBUG && ret && (errno != EEXIST))
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000844 error_logger(LOG_ERR, "copy_inode: %s to %s", source, destination);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000845} /* End Function action_copy */
846
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000847static void action_compat(const struct devfsd_notify_struct *info, unsigned int action)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000848/* [SUMMARY] Process a compatibility request.
849 <info> The devfs change.
850 <action> The action to take.
851 [RETURNS] Nothing.
852*/
853{
Rob Landley1ba19d62005-10-08 17:42:35 +0000854 int ret;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000855 const char *compat_name = NULL;
856 const char *dest_name = info->devname;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000857 const char *ptr;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000858 char compat_buf[STRING_LENGTH], dest_buf[STRING_LENGTH];
Eric Andersenf18bd892003-12-19 11:07:59 +0000859 int mode, host, bus, target, lun;
860 unsigned int i;
861 char rewind_;
862 /* 1 to 5 "scsi/" , 6 to 9 "ide/host" */
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000863 static const char *const fmt[] = {
864 NULL ,
865 "sg/c%db%dt%du%d", /* scsi/generic */
866 "sd/c%db%dt%du%d", /* scsi/disc */
867 "sr/c%db%dt%du%d", /* scsi/cd */
868 "sd/c%db%dt%du%dp%d", /* scsi/part */
869 "st/c%db%dt%du%dm%d%c", /* scsi/mt */
870 "ide/hd/c%db%dt%du%d", /* ide/host/disc */
871 "ide/cd/c%db%dt%du%d", /* ide/host/cd */
872 "ide/hd/c%db%dt%du%dp%d", /* ide/host/part */
873 "ide/mt/c%db%dt%du%d%s", /* ide/host/mt */
874 NULL
875 };
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000876
877 /* First construct compatibility name */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000878 switch (action) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000879 case AC_MKOLDCOMPAT:
880 case AC_RMOLDCOMPAT:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000881 compat_name = get_old_name(info->devname, info->namelen, compat_buf, info->major, info->minor);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000882 break;
883 case AC_MKNEWCOMPAT:
884 case AC_RMNEWCOMPAT:
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000885 ptr = bb_basename(info->devname);
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000886 i = scan_dev_name(info->devname, info->namelen, ptr);
Eric Andersenf18bd892003-12-19 11:07:59 +0000887
888 /* nothing found */
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000889 if (i == 0 || i > 9)
Eric Andersenf18bd892003-12-19 11:07:59 +0000890 return;
891
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000892 sscanf(info->devname + ((i < 6) ? 5 : 4), "host%d/bus%d/target%d/lun%d/", &host, &bus, &target, &lun);
893 snprintf(dest_buf, sizeof(dest_buf), "../%s", info->devname + (( i > 5) ? 4 : 0));
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000894 dest_name = dest_buf;
Eric Andersenf18bd892003-12-19 11:07:59 +0000895 compat_name = compat_buf;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000896
Eric Andersenf18bd892003-12-19 11:07:59 +0000897
898 /* 1 == scsi/generic 2 == scsi/disc 3 == scsi/cd 6 == ide/host/disc 7 == ide/host/cd */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000899 if (i == 1 || i == 2 || i == 3 || i == 6 || i ==7)
900 sprintf(compat_buf, fmt[i], host, bus, target, lun);
Eric Andersenf18bd892003-12-19 11:07:59 +0000901
902 /* 4 == scsi/part 8 == ide/host/part */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000903 if (i == 4 || i == 8)
904 sprintf(compat_buf, fmt[i], host, bus, target, lun, atoi(ptr + 4));
Eric Andersenf18bd892003-12-19 11:07:59 +0000905
906 /* 5 == scsi/mt */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000907 if (i == 5) {
Eric Andersenf18bd892003-12-19 11:07:59 +0000908 rewind_ = info->devname[info->namelen - 1];
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000909 if (rewind_ != 'n')
910 rewind_ = '\0';
Eric Andersenf18bd892003-12-19 11:07:59 +0000911 mode=0;
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000912 if (ptr[2] == 'l' /*108*/ || ptr[2] == 'm'/*109*/)
Eric Andersenf18bd892003-12-19 11:07:59 +0000913 mode = ptr[2] - 107; /* 1 or 2 */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000914 if (ptr[2] == 'a')
Eric Andersenf18bd892003-12-19 11:07:59 +0000915 mode = 3;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000916 sprintf(compat_buf, fmt[i], host, bus, target, lun, mode, rewind_);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000917 }
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000918
Eric Andersenf18bd892003-12-19 11:07:59 +0000919 /* 9 == ide/host/mt */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000920 if (i == 9)
921 snprintf(compat_buf, sizeof(compat_buf), fmt[i], host, bus, target, lun, ptr + 2);
Eric Andersenf18bd892003-12-19 11:07:59 +0000922 /* esac */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000923 } /* switch (action) */
Eric Andersenf18bd892003-12-19 11:07:59 +0000924
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000925 if (compat_name == NULL)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000926 return;
Eric Andersenf18bd892003-12-19 11:07:59 +0000927
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000928 /* Now decide what to do with it */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000929 switch (action) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000930 case AC_MKOLDCOMPAT:
931 case AC_MKNEWCOMPAT:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000932 mksymlink(dest_name, compat_name);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000933 break;
934 case AC_RMOLDCOMPAT:
935 case AC_RMNEWCOMPAT:
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000936 ret = unlink(compat_name);
Rob Landley1ba19d62005-10-08 17:42:35 +0000937 if (ENABLE_DEBUG && ret)
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000938 error_logger(LOG_ERR, "unlink: %s", compat_name);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000939 break;
Eric Andersenf18bd892003-12-19 11:07:59 +0000940 /*esac*/
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000941 } /* switch (action) */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000942} /* End Function action_compat */
943
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000944static void restore(char *spath, struct stat source_stat, int rootlen)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000945{
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000946 char *dpath;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000947 struct stat dest_stat;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000948
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000949 dest_stat.st_mode = 0;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000950 dpath = concat_path_file(mount_point, spath + rootlen);
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000951 lstat(dpath, &dest_stat);
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000952 free(dpath);
Denis Vlasenko10aea3e2007-07-01 22:25:33 +0000953 if (S_ISLNK(source_stat.st_mode) || (source_stat.st_mode & S_ISVTX))
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000954 copy_inode(dpath, &dest_stat,(source_stat.st_mode & ~S_ISVTX) , spath, &source_stat);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000955
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000956 if (S_ISDIR(source_stat.st_mode))
Glenn L McGrath3860b2e2003-11-30 23:46:06 +0000957 dir_operation(RESTORE, spath, rootlen,NULL);
958}
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000959
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000960
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000961static int copy_inode(const char *destpath, const struct stat *dest_stat,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000962 mode_t new_mode,
963 const char *sourcepath, const struct stat *source_stat)
964/* [SUMMARY] Copy an inode.
965 <destpath> The destination path. An existing inode may be deleted.
966 <dest_stat> The destination stat(2) information.
967 <new_mode> The desired new mode for the destination.
968 <sourcepath> The source path.
969 <source_stat> The source stat(2) information.
970 [RETURNS] TRUE on success, else FALSE.
971*/
972{
Eric Andersenf18bd892003-12-19 11:07:59 +0000973 int source_len, dest_len;
974 char source_link[STRING_LENGTH], dest_link[STRING_LENGTH];
975 int fd, val;
976 struct sockaddr_un un_addr;
977 char symlink_val[STRING_LENGTH];
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000978
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000979 if ((source_stat->st_mode & S_IFMT) ==(dest_stat->st_mode & S_IFMT)) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000980 /* Same type */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000981 if (S_ISLNK(source_stat->st_mode)) {
982 if ((source_len = readlink(sourcepath, source_link, STRING_LENGTH - 1)) < 0
983 || (dest_len = readlink(destpath , dest_link , STRING_LENGTH - 1)) < 0
984 )
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000985 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000986 source_link[source_len] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000987 dest_link[dest_len] = '\0';
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000988 if ((source_len != dest_len) || (strcmp(source_link, dest_link) != 0)) {
989 unlink(destpath);
990 symlink(source_link, destpath);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000991 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000992 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000993 } /* Else not a symlink */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000994 chmod(destpath, new_mode & ~S_IFMT);
995 chown(destpath, source_stat->st_uid, source_stat->st_gid);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000996 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +0000997 }
998 /* Different types: unlink and create */
Denis Vlasenko1fc62382007-06-25 22:55:34 +0000999 unlink(destpath);
1000 switch (source_stat->st_mode & S_IFMT) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001001 case S_IFSOCK:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001002 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001003 break;
1004 un_addr.sun_family = AF_UNIX;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001005 snprintf(un_addr.sun_path, sizeof(un_addr.sun_path), "%s", destpath);
1006 val = bind(fd,(struct sockaddr *) &un_addr,(int) sizeof un_addr);
1007 close(fd);
1008 if (val != 0 || chmod(destpath, new_mode & ~S_IFMT) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001009 break;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001010 goto do_chown;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001011 case S_IFLNK:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001012 if ((val = readlink(sourcepath, symlink_val, STRING_LENGTH - 1)) < 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001013 break;
1014 symlink_val[val] = '\0';
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001015 if (symlink(symlink_val, destpath) == 0)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001016 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001017 break;
1018 case S_IFREG:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001019 if ((fd = open(destpath, O_RDONLY | O_CREAT, new_mode & ~S_IFMT)) < 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001020 break;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001021 close(fd);
1022 if (chmod(destpath, new_mode & ~S_IFMT) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001023 break;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001024 goto do_chown;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001025 case S_IFBLK:
1026 case S_IFCHR:
1027 case S_IFIFO:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001028 if (mknod(destpath, new_mode, source_stat->st_rdev) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001029 break;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001030 goto do_chown;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001031 case S_IFDIR:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001032 if (mkdir(destpath, new_mode & ~S_IFMT) != 0)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001033 break;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001034do_chown:
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001035 if (chown(destpath, source_stat->st_uid, source_stat->st_gid) == 0)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001036 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001037 /*break;*/
1038 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001039 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001040} /* End Function copy_inode */
1041
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001042static void free_config(void)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001043/* [SUMMARY] Free the configuration information.
1044 [RETURNS] Nothing.
1045*/
1046{
1047 struct config_entry_struct *c_entry;
1048 void *next;
1049
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001050 for (c_entry = first_config; c_entry != NULL; c_entry = next) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001051 unsigned int count;
1052
1053 next = c_entry->next;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001054 regfree(&c_entry->preg);
1055 if (c_entry->action.what == AC_EXECUTE) {
1056 for (count = 0; count < MAX_ARGS; ++count) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001057 if (c_entry->u.execute.argv[count] == NULL)
1058 break;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001059 free(c_entry->u.execute.argv[count]);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001060 }
1061 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001062 free(c_entry);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001063 }
1064 first_config = NULL;
1065 last_config = NULL;
1066} /* End Function free_config */
1067
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001068static int get_uid_gid(int flag, const char *string)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001069/* [SUMMARY] Convert a string to a UID or GID value.
1070 <flag> "UID" or "GID".
1071 <string> The string.
1072 [RETURNS] The UID or GID value.
1073*/
1074{
1075 struct passwd *pw_ent;
1076 struct group *grp_ent;
Denis Vlasenko89ef65f2007-01-29 23:43:18 +00001077 static const char *msg;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001078
Rob Landley1ba19d62005-10-08 17:42:35 +00001079 if (ENABLE_DEVFSD_VERBOSE)
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001080 msg = "user";
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001081
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001082 if (isdigit(string[0]) ||((string[0] == '-') && isdigit(string[1])))
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001083 return atoi(string);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001084
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001085 if (flag == UID && (pw_ent = getpwnam(string)) != NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001086 return pw_ent->pw_uid;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001087
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001088 if (flag == GID && (grp_ent = getgrnam(string)) != NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001089 return grp_ent->gr_gid;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001090 else if (ENABLE_DEVFSD_VERBOSE)
1091 msg = "group";
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001092
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001093 if (ENABLE_DEVFSD_VERBOSE)
Rob Landley1ba19d62005-10-08 17:42:35 +00001094 msg_logger(LOG_ERR,"unknown %s: %s, defaulting to %cid=0", msg, string, msg[0]);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001095 return 0;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001096}/* End Function get_uid_gid */
1097
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001098static mode_t get_mode(const char *string)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001099/* [SUMMARY] Convert a string to a mode value.
1100 <string> The string.
1101 [RETURNS] The mode value.
1102*/
1103{
1104 mode_t mode;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001105 int i;
Rob Landley1ba19d62005-10-08 17:42:35 +00001106
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001107 if (isdigit(string[0]))
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001108 return strtoul(string, NULL, 8);
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001109 if (strlen(string) != 9)
Rob Landley1ba19d62005-10-08 17:42:35 +00001110 msg_logger_and_die(LOG_ERR, "bad mode: %s", string);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001111
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001112 mode = 0;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001113 i = S_IRUSR;
1114 while (i > 0) {
1115 if (string[0] == 'r' || string[0] == 'w' || string[0] == 'x')
1116 mode += i;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001117 i = i / 2;
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001118 string++;
1119 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001120 return mode;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001121} /* End Function get_mode */
1122
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001123static void signal_handler(int sig)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001124{
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001125 caught_signal = TRUE;
1126 if (sig == SIGHUP)
1127 caught_sighup = TRUE;
Rob Landley1ba19d62005-10-08 17:42:35 +00001128
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001129 info_logger(LOG_INFO, "Caught signal %d", sig);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001130} /* End Function signal_handler */
1131
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001132static const char *get_variable(const char *variable, void *info)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001133{
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001134 static char sbuf[sizeof(int)*3 + 2]; /* sign and NUL */
1135
1136 char hostname[STRING_LENGTH];
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001137 struct get_variable_info *gv_info = info;
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001138 const char *field_names[] = {
1139 "hostname", "mntpt", "devpath", "devname",
1140 "uid", "gid", "mode", hostname, mount_point,
1141 gv_info->devpath, gv_info->devname, NULL
1142 };
"Vladimir N. Oleynik"2f0a5f92005-12-06 12:00:39 +00001143 int i;
Rob Landley1ba19d62005-10-08 17:42:35 +00001144
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001145 if (gethostname(hostname, STRING_LENGTH - 1) != 0)
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001146 /* Here on error we should do exit(RV_SYS_ERROR), instead we do exit(EXIT_FAILURE) */
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001147 error_logger_and_die(LOG_ERR, "gethostname");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001148
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001149 hostname[STRING_LENGTH - 1] = '\0';
Eric Andersenf18bd892003-12-19 11:07:59 +00001150
Denis Vlasenko5af906e2006-11-05 18:05:09 +00001151 /* index_in_str_array returns i>=0 */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001152 i = index_in_str_array(field_names, variable);
Eric Andersenf18bd892003-12-19 11:07:59 +00001153
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001154 if (i > 6 || i < 0 || (i > 1 && gv_info == NULL))
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001155 return NULL;
1156 if (i >= 0 && i <= 3)
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001157 return field_names[i + 7];
Eric Andersenf18bd892003-12-19 11:07:59 +00001158
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001159 if (i == 4)
1160 sprintf(sbuf, "%u", gv_info->info->uid);
1161 else if (i == 5)
1162 sprintf(sbuf, "%u", gv_info->info->gid);
1163 else if (i == 6)
1164 sprintf(sbuf, "%o", gv_info->info->mode);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001165 return sbuf;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001166} /* End Function get_variable */
1167
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001168static void service(struct stat statbuf, char *path)
1169{
1170 struct devfsd_notify_struct info;
1171
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001172 memset(&info, 0, sizeof info);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001173 info.type = DEVFSD_NOTIFY_REGISTERED;
1174 info.mode = statbuf.st_mode;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001175 info.major = major(statbuf.st_rdev);
1176 info.minor = minor(statbuf.st_rdev);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001177 info.uid = statbuf.st_uid;
1178 info.gid = statbuf.st_gid;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001179 snprintf(info.devname, sizeof(info.devname), "%s", path + strlen(mount_point) + 1);
1180 info.namelen = strlen(info.devname);
1181 service_name(&info);
1182 if (S_ISDIR(statbuf.st_mode))
1183 dir_operation(SERVICE, path, 0, NULL);
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001184}
1185
1186static void dir_operation(int type, const char * dir_name, int var, unsigned long *event_mask)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001187/* [SUMMARY] Scan a directory tree and generate register events on leaf nodes.
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001188 <flag> To choose which function to perform
1189 <dp> The directory pointer. This is closed upon completion.
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001190 <dir_name> The name of the directory.
Glenn L McGrath3860b2e2003-11-30 23:46:06 +00001191 <rootlen> string length parameter.
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001192 [RETURNS] Nothing.
1193*/
1194{
1195 struct stat statbuf;
1196 DIR *dp;
1197 struct dirent *de;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001198 char *path;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001199
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001200 if ((dp = warn_opendir(dir_name)) == NULL)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001201 return;
1202
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001203 while ((de = readdir(dp)) != NULL) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001204
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001205 if (de->d_name && DOT_OR_DOTDOT(de->d_name))
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001206 continue;
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001207 path = concat_path_file(dir_name, de->d_name);
1208 if (lstat(path, &statbuf) == 0) {
1209 switch (type) {
1210 case SERVICE:
1211 service(statbuf, path);
1212 break;
1213 case RESTORE:
1214 restore(path, statbuf, var);
1215 break;
1216 case READ_CONFIG:
1217 read_config_file(path, var, event_mask);
1218 break;
1219 }
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001220 }
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001221 free(path);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001222 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001223 closedir(dp);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001224} /* End Function do_scan_and_service */
1225
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001226static int mksymlink(const char *oldpath, const char *newpath)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001227/* [SUMMARY] Create a symlink, creating intervening directories as required.
1228 <oldpath> The string contained in the symlink.
1229 <newpath> The name of the new symlink.
1230 [RETURNS] 0 on success, else -1.
1231*/
1232{
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001233 if (!make_dir_tree(newpath))
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001234 return -1;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001235
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001236 if (symlink(oldpath, newpath) != 0) {
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001237 if (errno != EEXIST)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001238 return -1;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001239 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001240 return 0;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001241} /* End Function mksymlink */
1242
1243
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001244static int make_dir_tree(const char *path)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001245/* [SUMMARY] Creating intervening directories for a path as required.
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001246 <path> The full pathname(including the leaf node).
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001247 [RETURNS] TRUE on success, else FALSE.
1248*/
1249{
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001250 if (bb_make_directory(dirname((char *)path), -1, FILEUTILS_RECUR) == -1)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001251 return FALSE;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001252 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001253} /* End Function make_dir_tree */
1254
1255static int expand_expression(char *output, unsigned int outsize,
1256 const char *input,
1257 const char *(*get_variable_func)(const char *variable, void *info),
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001258 void *info,
1259 const char *devname,
1260 const regmatch_t *ex, unsigned int numexp)
Eric Andersenaff114c2004-04-14 17:51:38 +00001261/* [SUMMARY] Expand environment variables and regular subexpressions in string.
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001262 <output> The output expanded expression is written here.
1263 <length> The size of the output buffer.
1264 <input> The input expression. This may equal <<output>>.
1265 <get_variable> A function which will be used to get variable values. If
1266 this returns NULL, the environment is searched instead. If this is NULL,
1267 only the environment is searched.
1268 <info> An arbitrary pointer passed to <<get_variable>>.
1269 <devname> Device name; specifically, this is the string that contains all
1270 of the regular subexpressions.
1271 <ex> Array of start / end offsets into info->devname for each subexpression
1272 <numexp> Number of regular subexpressions found in <<devname>>.
1273 [RETURNS] TRUE on success, else FALSE.
1274*/
1275{
1276 char temp[STRING_LENGTH];
1277
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001278 if (!st_expr_expand(temp, STRING_LENGTH, input, get_variable_func, info))
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001279 return FALSE;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001280 expand_regexp(output, outsize, temp, devname, ex, numexp);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001281 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001282} /* End Function expand_expression */
1283
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001284static void expand_regexp(char *output, size_t outsize, const char *input,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001285 const char *devname,
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001286 const regmatch_t *ex, unsigned int numex)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001287/* [SUMMARY] Expand all occurrences of the regular subexpressions \0 to \9.
1288 <output> The output expanded expression is written here.
1289 <outsize> The size of the output buffer.
1290 <input> The input expression. This may NOT equal <<output>>, because
1291 supporting that would require yet another string-copy. However, it's not
1292 hard to write a simple wrapper function to add this functionality for those
1293 few cases that need it.
1294 <devname> Device name; specifically, this is the string that contains all
1295 of the regular subexpressions.
1296 <ex> An array of start and end offsets into <<devname>>, one for each
1297 subexpression
1298 <numex> Number of subexpressions in the offset-array <<ex>>.
1299 [RETURNS] Nothing.
1300*/
1301{
1302 const char last_exp = '0' - 1 + numex;
1303 int c = -1;
1304
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001305 /* Guarantee NULL termination by writing an explicit '\0' character into
1306 the very last byte */
1307 if (outsize)
1308 output[--outsize] = '\0';
1309 /* Copy the input string into the output buffer, replacing '\\' with '\'
1310 and '\0' .. '\9' with subexpressions 0 .. 9, if they exist. Other \x
1311 codes are deleted */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001312 while ((c != '\0') && (outsize != 0)) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001313 c = *input;
1314 ++input;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001315 if (c == '\\') {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001316 c = *input;
1317 ++input;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001318 if (c != '\\') {
1319 if ((c >= '0') && (c <= last_exp)) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001320 const regmatch_t *subexp = ex + (c - '0');
1321 unsigned int sublen = subexp->rm_eo - subexp->rm_so;
1322
1323 /* Range checking */
1324 if (sublen > outsize)
1325 sublen = outsize;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001326 strncpy(output, devname + subexp->rm_so, sublen);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001327 output += sublen;
1328 outsize -= sublen;
1329 }
1330 continue;
1331 }
1332 }
1333 *output = c;
1334 ++output;
1335 --outsize;
1336 } /* while */
1337} /* End Function expand_regexp */
1338
1339
1340/* from compat_name.c */
1341
1342struct translate_struct
1343{
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001344 const char *match; /* The string to match to(up to length) */
Denis Vlasenko89ef65f2007-01-29 23:43:18 +00001345 const char *format; /* Format of output, "%s" takes data past match string,
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001346 NULL is effectively "%s"(just more efficient) */
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001347};
1348
1349static struct translate_struct translate_table[] =
1350{
1351 {"sound/", NULL},
1352 {"printers/", "lp%s"},
1353 {"v4l/", NULL},
1354 {"parports/", "parport%s"},
1355 {"fb/", "fb%s"},
1356 {"netlink/", NULL},
1357 {"loop/", "loop%s"},
1358 {"floppy/", "fd%s"},
1359 {"rd/", "ram%s"},
1360 {"md/", "md%s"}, /* Meta-devices */
1361 {"vc/", "tty%s"},
1362 {"misc/", NULL},
1363 {"isdn/", NULL},
1364 {"pg/", "pg%s"}, /* Parallel port generic ATAPI interface*/
1365 {"i2c/", "i2c-%s"},
1366 {"staliomem/", "staliomem%s"}, /* Stallion serial driver control */
1367 {"tts/E", "ttyE%s"}, /* Stallion serial driver */
1368 {"cua/E", "cue%s"}, /* Stallion serial driver callout */
1369 {"tts/R", "ttyR%s"}, /* Rocketport serial driver */
1370 {"cua/R", "cur%s"}, /* Rocketport serial driver callout */
1371 {"ip2/", "ip2%s"}, /* Computone serial driver control */
1372 {"tts/F", "ttyF%s"}, /* Computone serial driver */
1373 {"cua/F", "cuf%s"}, /* Computone serial driver callout */
1374 {"tts/C", "ttyC%s"}, /* Cyclades serial driver */
1375 {"cua/C", "cub%s"}, /* Cyclades serial driver callout */
1376 {"tts/", "ttyS%s"}, /* Generic serial: must be after others */
1377 {"cua/", "cua%s"}, /* Generic serial: must be after others */
1378 {"input/js", "js%s"}, /* Joystick driver */
1379 {NULL, NULL}
1380};
1381
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001382const char *get_old_name(const char *devname, unsigned int namelen,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001383 char *buffer, unsigned int major, unsigned int minor)
1384/* [SUMMARY] Translate a kernel-supplied name into an old name.
1385 <devname> The device name provided by the kernel.
1386 <namelen> The length of the name.
1387 <buffer> A buffer that may be used. This should be at least 128 bytes long.
1388 <major> The major number for the device.
1389 <minor> The minor number for the device.
1390 [RETURNS] A pointer to the old name if known, else NULL.
1391*/
1392{
1393 const char *compat_name = NULL;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001394 const char *ptr;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001395 struct translate_struct *trans;
Eric Andersenf18bd892003-12-19 11:07:59 +00001396 unsigned int i;
1397 char mode;
1398 int indexx;
1399 const char *pty1;
1400 const char *pty2;
1401 size_t len;
1402 /* 1 to 5 "scsi/" , 6 to 9 "ide/host", 10 sbp/, 11 vcc/, 12 pty/ */
Rob Landley0a7c8ef2006-02-22 17:01:00 +00001403 static const char *const fmt[] = {
1404 NULL ,
1405 "sg%u", /* scsi/generic */
1406 NULL, /* scsi/disc */
1407 "sr%u", /* scsi/cd */
1408 NULL, /* scsi/part */
1409 "nst%u%c", /* scsi/mt */
1410 "hd%c" , /* ide/host/disc */
1411 "hd%c" , /* ide/host/cd */
1412 "hd%c%s", /* ide/host/part */
1413 "%sht%d", /* ide/host/mt */
1414 "sbpcd%u", /* sbp/ */
1415 "vcs%s", /* vcc/ */
1416 "%cty%c%c", /* pty/ */
1417 NULL
1418 };
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001419
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001420 for (trans = translate_table; trans->match != NULL; ++trans) {
1421 len = strlen(trans->match);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001422
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001423 if (strncmp(devname, trans->match, len) == 0) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001424 if (trans->format == NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001425 return devname + len;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001426 sprintf(buffer, trans->format, devname + len);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001427 return buffer;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001428 }
1429 }
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001430
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001431 ptr = bb_basename(devname);
Eric Andersenf18bd892003-12-19 11:07:59 +00001432 i = scan_dev_name(devname, namelen, ptr);
1433
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001434 if (i > 0 && i < 13)
Eric Andersenf18bd892003-12-19 11:07:59 +00001435 compat_name = buffer;
1436 else
1437 return NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001438
Eric Andersenf18bd892003-12-19 11:07:59 +00001439 /* 1 == scsi/generic, 3 == scsi/cd, 10 == sbp/ */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001440 if (i == 1 || i == 3 || i == 10)
1441 sprintf(buffer, fmt[i], minor);
Eric Andersenf18bd892003-12-19 11:07:59 +00001442
1443 /* 2 ==scsi/disc, 4 == scsi/part */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001444 if (i == 2 || i == 4)
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +00001445 compat_name = write_old_sd_name(buffer, major, minor,((i == 2) ? "" : (ptr + 4)));
Eric Andersenf18bd892003-12-19 11:07:59 +00001446
1447 /* 5 == scsi/mt */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001448 if (i == 5) {
Eric Andersenf18bd892003-12-19 11:07:59 +00001449 mode = ptr[2];
1450 if (mode == 'n')
1451 mode = '\0';
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001452 sprintf(buffer, fmt[i], minor & 0x1f, mode);
Eric Andersenf18bd892003-12-19 11:07:59 +00001453 if (devname[namelen - 1] != 'n')
1454 ++compat_name;
1455 }
1456 /* 6 == ide/host/disc, 7 == ide/host/cd, 8 == ide/host/part */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001457 if (i == 6 || i == 7 || i == 8)
Rob Landley1ba19d62005-10-08 17:42:35 +00001458 /* last arg should be ignored for i == 6 or i== 7 */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001459 sprintf(buffer, fmt[i] , get_old_ide_name(major, minor), ptr + 4);
Eric Andersenf18bd892003-12-19 11:07:59 +00001460
1461 /* 9 == ide/host/mt */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001462 if (i == 9)
1463 sprintf(buffer, fmt[i], ptr + 2, minor & 0x7f);
Eric Andersenf18bd892003-12-19 11:07:59 +00001464
1465 /* 11 == vcc/ */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001466 if (i == 11) {
1467 sprintf(buffer, fmt[i], devname + 4);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001468 if (buffer[3] == '0')
1469 buffer[3] = '\0';
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001470 }
Eric Andersenf18bd892003-12-19 11:07:59 +00001471 /* 12 == pty/ */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001472 if (i == 12) {
Eric Andersenf18bd892003-12-19 11:07:59 +00001473 pty1 = "pqrstuvwxyzabcde";
1474 pty2 = "0123456789abcdef";
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001475 indexx = atoi(devname + 5);
1476 sprintf(buffer, fmt[i], (devname[4] == 'm') ? 'p' : 't', pty1[indexx >> 4], pty2[indexx & 0x0f]);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001477 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001478 return compat_name;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001479} /* End Function get_old_name */
1480
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001481static char get_old_ide_name(unsigned int major, unsigned int minor)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001482/* [SUMMARY] Get the old IDE name for a device.
1483 <major> The major number for the device.
1484 <minor> The minor number for the device.
1485 [RETURNS] The drive letter.
1486*/
1487{
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001488 char letter = 'y'; /* 121 */
1489 char c = 'a'; /* 97 */
1490 int i = IDE0_MAJOR;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001491
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001492 /* I hope it works like the previous code as it saves a few bytes. Tito ;P */
1493 do {
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001494 if (i == IDE0_MAJOR || i == IDE1_MAJOR || i == IDE2_MAJOR
1495 || i == IDE3_MAJOR || i == IDE4_MAJOR || i == IDE5_MAJOR
1496 || i == IDE6_MAJOR || i == IDE7_MAJOR || i == IDE8_MAJOR
1497 || i == IDE9_MAJOR
1498 ) {
1499 if ((unsigned int)i == major) {
1500 letter = c;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001501 break;
1502 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001503 c += 2;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001504 }
1505 i++;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001506 } while (i <= IDE9_MAJOR);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001507
1508 if (minor > 63)
1509 ++letter;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001510 return letter;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001511} /* End Function get_old_ide_name */
1512
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001513static char *write_old_sd_name(char *buffer,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001514 unsigned int major, unsigned int minor,
Denis Vlasenko89ef65f2007-01-29 23:43:18 +00001515 const char *part)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001516/* [SUMMARY] Write the old SCSI disc name to a buffer.
1517 <buffer> The buffer to write to.
1518 <major> The major number for the device.
1519 <minor> The minor number for the device.
1520 <part> The partition string. Must be "" for a whole-disc entry.
1521 [RETURNS] A pointer to the buffer on success, else NULL.
1522*/
1523{
1524 unsigned int disc_index;
1525
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001526 if (major == 8) {
1527 sprintf(buffer, "sd%c%s", 'a' + (minor >> 4), part);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001528 return buffer;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001529 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001530 if ((major > 64) && (major < 72)) {
1531 disc_index = ((major - 64) << 4) +(minor >> 4);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001532 if (disc_index < 26)
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001533 sprintf(buffer, "sd%c%s", 'a' + disc_index, part);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001534 else
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001535 sprintf(buffer, "sd%c%c%s", 'a' +(disc_index / 26) - 1, 'a' + disc_index % 26, part);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001536 return buffer;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001537 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001538 return NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001539} /* End Function write_old_sd_name */
1540
1541
1542/* expression.c */
1543
1544/*EXPERIMENTAL_FUNCTION*/
1545
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001546int st_expr_expand(char *output, unsigned int length, const char *input,
1547 const char *(*get_variable_func)(const char *variable,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001548 void *info),
1549 void *info)
1550/* [SUMMARY] Expand an expression using Borne Shell-like unquoted rules.
1551 <output> The output expanded expression is written here.
1552 <length> The size of the output buffer.
1553 <input> The input expression. This may equal <<output>>.
1554 <get_variable> A function which will be used to get variable values. If
1555 this returns NULL, the environment is searched instead. If this is NULL,
1556 only the environment is searched.
1557 <info> An arbitrary pointer passed to <<get_variable>>.
1558 [RETURNS] TRUE on success, else FALSE.
1559*/
1560{
1561 char ch;
1562 unsigned int len;
1563 unsigned int out_pos = 0;
1564 const char *env;
1565 const char *ptr;
1566 struct passwd *pwent;
1567 char buffer[BUFFER_SIZE], tmp[STRING_LENGTH];
1568
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001569 if (length > BUFFER_SIZE)
1570 length = BUFFER_SIZE;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001571 for (; TRUE; ++input) {
1572 switch (ch = *input) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001573 case '$':
1574 /* Variable expansion */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001575 input = expand_variable(buffer, length, &out_pos, ++input, get_variable_func, info);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001576 if (input == NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001577 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001578 break;
1579 case '~':
1580 /* Home directory expansion */
1581 ch = input[1];
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001582 if (isspace(ch) ||(ch == '/') ||(ch == '\0')) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001583 /* User's own home directory: leave separator for next time */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001584 if ((env = getenv("HOME")) == NULL) {
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001585 info_logger(LOG_INFO, bb_msg_variable_not_found, "HOME");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001586 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001587 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001588 len = strlen(env);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001589 if (len + out_pos >= length)
1590 goto st_expr_expand_out;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001591 memcpy(buffer + out_pos, env, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001592 out_pos += len;
1593 continue;
1594 }
1595 /* Someone else's home directory */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001596 for (ptr = ++input; !isspace(ch) && (ch != '/') && (ch != '\0'); ch = *++ptr)
Denis Vlasenkob71c6682007-07-21 15:08:09 +00001597 /* VOID */;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001598 len = ptr - input;
1599 if (len >= sizeof tmp)
1600 goto st_expr_expand_out;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001601 safe_memcpy(tmp, input, len);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001602 input = ptr - 1;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001603 if ((pwent = getpwnam(tmp)) == NULL) {
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001604 info_logger(LOG_INFO, "no pwent for: %s", tmp);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001605 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001606 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001607 len = strlen(pwent->pw_dir);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001608 if (len + out_pos >= length)
1609 goto st_expr_expand_out;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001610 memcpy(buffer + out_pos, pwent->pw_dir, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001611 out_pos += len;
1612 break;
1613 case '\0':
1614 /* Falltrough */
1615 default:
1616 if (out_pos >= length)
1617 goto st_expr_expand_out;
1618 buffer[out_pos++] = ch;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001619 if (ch == '\0') {
1620 memcpy(output, buffer, out_pos);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001621 return TRUE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001622 }
1623 break;
1624 /* esac */
1625 }
1626 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001627 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001628st_expr_expand_out:
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001629 info_logger(LOG_INFO, bb_msg_small_buffer);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001630 return FALSE;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001631} /* End Function st_expr_expand */
1632
1633
1634/* Private functions follow */
1635
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001636static const char *expand_variable(char *buffer, unsigned int length,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001637 unsigned int *out_pos, const char *input,
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001638 const char *(*func)(const char *variable,
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001639 void *info),
1640 void *info)
1641/* [SUMMARY] Expand a variable.
1642 <buffer> The buffer to write to.
1643 <length> The length of the output buffer.
1644 <out_pos> The current output position. This is updated.
1645 <input> A pointer to the input character pointer.
1646 <func> A function which will be used to get variable values. If this
1647 returns NULL, the environment is searched instead. If this is NULL, only
1648 the environment is searched.
1649 <info> An arbitrary pointer passed to <<func>>.
1650 <errfp> Diagnostic messages are written here.
1651 [RETURNS] A pointer to the end of this subexpression on success, else NULL.
1652*/
1653{
1654 char ch;
1655 int len;
1656 unsigned int open_braces;
1657 const char *env, *ptr;
1658 char tmp[STRING_LENGTH];
1659
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001660 ch = input[0];
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001661 if (ch == '$') {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001662 /* Special case for "$$": PID */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001663 sprintf(tmp, "%d",(int) getpid());
1664 len = strlen(tmp);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001665 if (len + *out_pos >= length)
1666 goto expand_variable_out;
1667
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001668 memcpy(buffer + *out_pos, tmp, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001669 out_pos += len;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001670 return input;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001671 }
1672 /* Ordinary variable expansion, possibly in braces */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001673 if (ch != '{') {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001674 /* Simple variable expansion */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001675 for (ptr = input; isalnum(ch) || (ch == '_') || (ch == ':'); ch = *++ptr)
Denis Vlasenkob71c6682007-07-21 15:08:09 +00001676 /* VOID */;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001677 len = ptr - input;
"Vladimir N. Oleynik"73ffd762006-02-01 12:56:19 +00001678 if ((size_t)len >= sizeof tmp)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001679 goto expand_variable_out;
1680
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001681 safe_memcpy(tmp, input, len);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001682 input = ptr - 1;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001683 if ((env = get_variable_v2(tmp, func, info)) == NULL) {
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001684 info_logger(LOG_INFO, bb_msg_variable_not_found, tmp);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001685 return NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001686 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001687 len = strlen(env);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001688 if (len + *out_pos >= length)
1689 goto expand_variable_out;
1690
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001691 memcpy(buffer + *out_pos, env, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001692 *out_pos += len;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001693 return input;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001694 }
1695 /* Variable in braces: check for ':' tricks */
1696 ch = *++input;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001697 for (ptr = input; isalnum(ch) || (ch == '_'); ch = *++ptr)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001698 /* VOID */;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001699 if (ch == '}') {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001700 /* Must be simple variable expansion with "${var}" */
1701 len = ptr - input;
"Vladimir N. Oleynik"73ffd762006-02-01 12:56:19 +00001702 if ((size_t)len >= sizeof tmp)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001703 goto expand_variable_out;
1704
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001705 safe_memcpy(tmp, input, len);
1706 ptr = expand_variable(buffer, length, out_pos, tmp, func, info);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001707 if (ptr == NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001708 return NULL;
1709 return input + len;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001710 }
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001711 if (ch != ':' || ptr[1] != '-') {
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001712 info_logger(LOG_INFO, "illegal char in var name");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001713 return NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001714 }
1715 /* It's that handy "${var:-word}" expression. Check if var is defined */
1716 len = ptr - input;
"Vladimir N. Oleynik"73ffd762006-02-01 12:56:19 +00001717 if ((size_t)len >= sizeof tmp)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001718 goto expand_variable_out;
1719
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001720 safe_memcpy(tmp, input, len);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001721 /* Move input pointer to ':' */
1722 input = ptr;
1723 /* First skip to closing brace, taking note of nested expressions */
1724 ptr += 2;
1725 ch = ptr[0];
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001726 for (open_braces = 1; open_braces > 0; ch = *++ptr) {
1727 switch (ch) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001728 case '{':
1729 ++open_braces;
1730 break;
1731 case '}':
1732 --open_braces;
1733 break;
1734 case '\0':
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001735 info_logger(LOG_INFO,"\"}\" not found in: %s", input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001736 return NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001737 default:
1738 break;
1739 }
1740 }
1741 --ptr;
1742 /* At this point ptr should point to closing brace of "${var:-word}" */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001743 if ((env = get_variable_v2(tmp, func, info)) != NULL) {
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001744 /* Found environment variable, so skip the input to the closing brace
1745 and return the variable */
1746 input = ptr;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001747 len = strlen(env);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001748 if (len + *out_pos >= length)
1749 goto expand_variable_out;
1750
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001751 memcpy(buffer + *out_pos, env, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001752 *out_pos += len;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001753 return input;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001754 }
1755 /* Environment variable was not found, so process word. Advance input
1756 pointer to start of word in "${var:-word}" */
1757 input += 2;
1758 len = ptr - input;
"Vladimir N. Oleynik"73ffd762006-02-01 12:56:19 +00001759 if ((size_t)len >= sizeof tmp)
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001760 goto expand_variable_out;
1761
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001762 safe_memcpy(tmp, input, len);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001763 input = ptr;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001764 if (!st_expr_expand(tmp, STRING_LENGTH, tmp, func, info))
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001765 return NULL;
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001766 len = strlen(tmp);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001767 if (len + *out_pos >= length)
1768 goto expand_variable_out;
1769
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001770 memcpy(buffer + *out_pos, tmp, len + 1);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001771 *out_pos += len;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001772 return input;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001773expand_variable_out:
Denis Vlasenko10aea3e2007-07-01 22:25:33 +00001774 info_logger(LOG_INFO, bb_msg_small_buffer);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001775 return NULL;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001776} /* End Function expand_variable */
1777
1778
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001779static const char *get_variable_v2(const char *variable,
1780 const char *(*func)(const char *variable, void *info),
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001781 void *info)
1782/* [SUMMARY] Get a variable from the environment or .
1783 <variable> The variable name.
1784 <func> A function which will be used to get the variable. If this returns
1785 NULL, the environment is searched instead. If this is NULL, only the
1786 environment is searched.
1787 [RETURNS] The value of the variable on success, else NULL.
1788*/
1789{
1790 const char *value;
1791
Denis Vlasenko1fc62382007-06-25 22:55:34 +00001792 if (func != NULL) {
1793 value = (*func)(variable, info);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001794 if (value != NULL)
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001795 return value;
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001796 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001797 return getenv(variable);
Glenn L McGrath17d21fa2003-10-09 11:46:23 +00001798} /* End Function get_variable */
1799
1800/* END OF CODE */