Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Busybox main internal header file |
| 4 | * |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
| 21 | * Permission has been granted to redistribute this code under the GPL. |
| 22 | * |
| 23 | */ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 24 | #ifndef __LIBCONFIG_H__ |
| 25 | #define __LIBCONFIG_H__ 1 |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 26 | |
| 27 | #include <stdio.h> |
| 28 | #include <stdarg.h> |
| 29 | #include <sys/stat.h> |
| 30 | #include <sys/types.h> |
| 31 | |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 32 | #include <netdb.h> |
| 33 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 34 | #ifdef DMALLOC |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 35 | #include <dmalloc.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 36 | #endif |
| 37 | |
| 38 | #include <features.h> |
Eric Andersen | b6b519b | 2001-04-09 23:52:18 +0000 | [diff] [blame] | 39 | |
Robert Griebl | c9aca45 | 2002-06-04 20:06:25 +0000 | [diff] [blame] | 40 | #include "config.h" |
| 41 | |
Eric Andersen | 887ca79 | 2002-07-03 23:19:26 +0000 | [diff] [blame] | 42 | #include "pwd_.h" |
| 43 | #include "grp_.h" |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 44 | #ifdef CONFIG_FEATURE_SHADOWPASSWDS |
| 45 | #include "shadow_.h" |
| 46 | #endif |
| 47 | #ifdef CONFIG_FEATURE_SHA1_PASSWORDS |
| 48 | # include "sha1.h" |
| 49 | #endif |
| 50 | |
Glenn L McGrath | 5a66b64 | 2002-09-25 06:08:19 +0000 | [diff] [blame] | 51 | /* Compatability with ANSI C */ |
| 52 | #ifndef inline |
| 53 | # define inline |
| 54 | #endif |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 55 | |
Eric Andersen | 8d79ce8 | 2001-07-22 23:00:15 +0000 | [diff] [blame] | 56 | #if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 57 | /* libc5 doesn't define socklen_t */ |
Glenn L McGrath | a88cb50 | 2003-02-08 23:36:16 +0000 | [diff] [blame] | 58 | #ifndef _SOCKLEN_T |
| 59 | #define _SOCKLEN_T |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 60 | typedef unsigned int socklen_t; |
Glenn L McGrath | a88cb50 | 2003-02-08 23:36:16 +0000 | [diff] [blame] | 61 | #endif |
Eric Andersen | b2e3e9b | 2001-04-04 19:25:57 +0000 | [diff] [blame] | 62 | /* libc5 doesn't implement BSD 4.4 daemon() */ |
| 63 | extern int daemon (int nochdir, int noclose); |
Eric Andersen | be0c360 | 2001-08-02 10:55:32 +0000 | [diff] [blame] | 64 | /* libc5 doesn't implement strtok_r */ |
| 65 | char *strtok_r(char *s, const char *delim, char **ptrptr); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 66 | #endif |
| 67 | |
| 68 | /* Some useful definitions */ |
| 69 | #define FALSE ((int) 0) |
| 70 | #define TRUE ((int) 1) |
| 71 | #define SKIP ((int) 2) |
| 72 | |
| 73 | /* for mtab.c */ |
| 74 | #define MTAB_GETMOUNTPT '1' |
| 75 | #define MTAB_GETDEVICE '2' |
| 76 | |
| 77 | #define BUF_SIZE 8192 |
| 78 | #define EXPAND_ALLOC 1024 |
| 79 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 80 | /* Macros for min/max. */ |
| 81 | #ifndef MIN |
| 82 | #define MIN(a,b) (((a)<(b))?(a):(b)) |
| 83 | #endif |
| 84 | |
| 85 | #ifndef MAX |
| 86 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
| 87 | #endif |
| 88 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 89 | extern void show_usage(void) __attribute__ ((noreturn)); |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 90 | extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 91 | extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
Glenn L McGrath | 2e51a14 | 2003-01-20 23:50:59 +0000 | [diff] [blame] | 92 | extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 93 | extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 94 | extern void vherror_msg(const char *s, va_list p); |
Glenn L McGrath | 2e51a14 | 2003-01-20 23:50:59 +0000 | [diff] [blame] | 95 | extern void herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 96 | extern void herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 97 | |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 98 | /* These two are used internally -- you shouldn't need to use them */ |
| 99 | extern void verror_msg(const char *s, va_list p); |
| 100 | extern void vperror_msg(const char *s, va_list p); |
| 101 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 102 | const char *mode_string(int mode); |
| 103 | const char *time_string(time_t timeVal); |
Eric Andersen | 8cd16d8 | 2001-05-07 23:11:23 +0000 | [diff] [blame] | 104 | int is_directory(const char *name, int followLinks, struct stat *statBuf); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 105 | int isDevice(const char *name); |
| 106 | |
Matt Kraai | 8810bdb | 2001-04-24 20:04:18 +0000 | [diff] [blame] | 107 | int remove_file(const char *path, int flags); |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 108 | int copy_file(const char *source, const char *dest, int flags); |
Glenn L McGrath | c9cac5b | 2001-04-12 13:47:12 +0000 | [diff] [blame] | 109 | int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 110 | char *buildName(const char *dirName, const char *fileName); |
| 111 | int makeString(int argc, const char **argv, char *buf, int bufLen); |
| 112 | char *getChunk(int size); |
| 113 | char *chunkstrdup(const char *str); |
| 114 | void freeChunks(void); |
| 115 | ssize_t safe_read(int fd, void *buf, size_t count); |
| 116 | int full_write(int fd, const char *buf, int len); |
| 117 | int full_read(int fd, char *buf, int len); |
| 118 | int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst, |
| 119 | int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 120 | int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 121 | void* userData); |
| 122 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 123 | extern int parse_mode( const char* s, mode_t* theMode); |
Eric Andersen | a9c6bc4 | 2003-03-07 17:29:12 +0000 | [diff] [blame] | 124 | extern long bb_xgetlarg(char *arg, int base, long lower, long upper); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 125 | |
| 126 | extern int get_kernel_revision(void); |
| 127 | |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 128 | extern int get_console_fd(void); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 129 | extern struct mntent *find_mount_point(const char *name, const char *table); |
| 130 | extern void write_mtab(char* blockDevice, char* directory, |
| 131 | char* filesystemType, long flags, char* string_flags); |
| 132 | extern void erase_mtab(const char * name); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 133 | extern long atoi_w_units (const char *cp); |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 134 | extern long* find_pid_by_name( const char* pidName); |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 135 | extern char *find_real_root_device_name(const char* name); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 136 | extern char *get_line_from_file(FILE *file); |
| 137 | extern void print_file(FILE *file); |
Glenn L McGrath | 25fe94f | 2002-12-13 08:20:44 +0000 | [diff] [blame] | 138 | extern int copyfd(int fd1, int fd2, const off_t chunksize); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 139 | extern int print_file_by_name(char *filename); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 140 | extern char process_escape_sequence(const char **ptr); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 141 | extern char *get_last_path_component(char *path); |
| 142 | extern FILE *wfopen(const char *path, const char *mode); |
| 143 | extern FILE *xfopen(const char *path, const char *mode); |
| 144 | extern void chomp(char *s); |
| 145 | extern void trim(char *s); |
| 146 | extern struct BB_applet *find_applet_by_name(const char *name); |
| 147 | void run_applet_by_name(const char *name, int argc, char **argv); |
| 148 | |
| 149 | #ifndef DMALLOC |
| 150 | extern void *xmalloc (size_t size); |
| 151 | extern void *xrealloc(void *old, size_t size); |
| 152 | extern void *xcalloc(size_t nmemb, size_t size); |
| 153 | extern char *xstrdup (const char *s); |
| 154 | #endif |
| 155 | extern char *xstrndup (const char *s, int n); |
| 156 | extern char * safe_strncpy(char *dst, const char *src, size_t size); |
| 157 | |
| 158 | struct suffix_mult { |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 159 | const char *suffix; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 160 | int mult; |
| 161 | }; |
| 162 | |
| 163 | extern unsigned long parse_number(const char *numstr, |
| 164 | const struct suffix_mult *suffixes); |
| 165 | |
| 166 | |
| 167 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
| 168 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |
| 169 | * increases target size and is often not needed embedded systems. */ |
| 170 | extern long my_getpwnam(const char *name); |
| 171 | extern long my_getgrnam(const char *name); |
Eric Andersen | 02e6ba9 | 2002-09-30 20:39:56 +0000 | [diff] [blame] | 172 | extern char * my_getpwuid(char *name, long uid); |
| 173 | extern char * my_getgrgid(char *group, long gid); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 174 | extern long my_getpwnamegid(const char *name); |
| 175 | |
Glenn L McGrath | b4a1baa | 2003-01-13 22:09:50 +0000 | [diff] [blame] | 176 | extern int device_open(const char *device, int mode); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 177 | |
| 178 | extern int del_loop(const char *device); |
| 179 | extern int set_loop(const char *device, const char *file, int offset, int *loopro); |
| 180 | extern char *find_unused_loop_device (void); |
| 181 | |
| 182 | |
| 183 | #if (__GLIBC__ < 2) |
| 184 | extern int vdprintf(int d, const char *format, va_list ap); |
| 185 | #endif |
| 186 | |
| 187 | int nfsmount(const char *spec, const char *node, int *flags, |
| 188 | char **extra_opts, char **mount_opts, int running_bg); |
| 189 | |
| 190 | void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg); |
| 191 | void syslog_msg(int facility, int pri, const char *msg); |
| 192 | |
| 193 | /* Include our own copy of struct sysinfo to avoid binary compatability |
| 194 | * problems with Linux 2.4, which changed things. Grumble, grumble. */ |
| 195 | struct sysinfo { |
| 196 | long uptime; /* Seconds since boot */ |
| 197 | unsigned long loads[3]; /* 1, 5, and 15 minute load averages */ |
| 198 | unsigned long totalram; /* Total usable main memory size */ |
| 199 | unsigned long freeram; /* Available memory size */ |
| 200 | unsigned long sharedram; /* Amount of shared memory */ |
| 201 | unsigned long bufferram; /* Memory used by buffers */ |
| 202 | unsigned long totalswap; /* Total swap space size */ |
| 203 | unsigned long freeswap; /* swap space still available */ |
| 204 | unsigned short procs; /* Number of current processes */ |
Matt Kraai | 5246225 | 2001-06-08 13:57:27 +0000 | [diff] [blame] | 205 | unsigned short pad; /* Padding needed for m68k */ |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 206 | unsigned long totalhigh; /* Total high memory size */ |
| 207 | unsigned long freehigh; /* Available high memory size */ |
| 208 | unsigned int mem_unit; /* Memory unit size in bytes */ |
| 209 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ |
| 210 | }; |
| 211 | extern int sysinfo (struct sysinfo* info); |
| 212 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 213 | enum { |
| 214 | KILOBYTE = 1024, |
| 215 | MEGABYTE = (KILOBYTE*1024), |
| 216 | GIGABYTE = (MEGABYTE*1024) |
| 217 | }; |
Eric Andersen | f429bac | 2001-06-13 08:02:45 +0000 | [diff] [blame] | 218 | const char *make_human_readable_str(unsigned long size, unsigned long block_size, unsigned long display_unit); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 219 | |
| 220 | int ask_confirmation(void); |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 221 | int klogctl(int type, char * b, int len); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 222 | |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 223 | char *xgetcwd(char *cwd); |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 224 | char *xreadlink(const char *path); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 225 | char *concat_path_file(const char *path, const char *filename); |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 226 | char *last_char_is(const char *s, int c); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 227 | |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 228 | extern long arith (const char *startbuf, int *errcode); |
Eric Andersen | 74bcd16 | 2001-07-30 21:41:37 +0000 | [diff] [blame] | 229 | |
Glenn L McGrath | c3fbec7 | 2001-07-18 15:47:21 +0000 | [diff] [blame] | 230 | int read_package_field(const char *package_buffer, char **field_name, char **field_value); |
Glenn L McGrath | 9aff903 | 2001-06-13 07:26:39 +0000 | [diff] [blame] | 231 | char *fgets_str(FILE *file, const char *terminating_string); |
Glenn L McGrath | 359c106 | 2001-04-12 10:19:08 +0000 | [diff] [blame] | 232 | |
Glenn L McGrath | 2e41d0c | 2002-09-27 06:46:02 +0000 | [diff] [blame] | 233 | extern int uncompress(int fd_in, int fd_out); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 234 | extern int inflate(int in, int out); |
Glenn L McGrath | 4949faf | 2001-04-11 16:23:35 +0000 | [diff] [blame] | 235 | |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 236 | extern struct hostent *xgethostbyname(const char *name); |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 237 | extern struct hostent *xgethostbyname2(const char *name, int af); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 238 | extern int create_icmp_socket(void); |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 239 | extern int create_icmp6_socket(void); |
| 240 | extern int xconnect(const char *host, const char *port); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 241 | |
Matt Kraai | 80f6d55 | 2001-08-24 20:35:45 +0000 | [diff] [blame] | 242 | char *dirname (char *path); |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 243 | |
Eric Andersen | 879d6c8 | 2001-08-02 09:58:19 +0000 | [diff] [blame] | 244 | int make_directory (char *path, long mode, int flags); |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 245 | |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 246 | const char *u_signal_names(const char *str_sig, int *signo, int startnum); |
Matt Kraai | a7cecbc | 2001-08-10 15:05:27 +0000 | [diff] [blame] | 247 | char *simplify_path(const char *path); |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 248 | |
Glenn L McGrath | a283157 | 2001-04-12 00:49:26 +0000 | [diff] [blame] | 249 | #define CT_AUTO 0 |
| 250 | #define CT_UNIX2DOS 1 |
| 251 | #define CT_DOS2UNIX 2 |
Matt Kraai | 1e04ea3 | 2001-04-12 21:38:06 +0000 | [diff] [blame] | 252 | /* extern int convert(char *fn, int ConvType); */ |
Glenn L McGrath | a283157 | 2001-04-12 00:49:26 +0000 | [diff] [blame] | 253 | |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 254 | enum { |
Matt Kraai | 0144103 | 2001-04-24 01:30:02 +0000 | [diff] [blame] | 255 | FILEUTILS_PRESERVE_STATUS = 1, |
Matt Kraai | 4c557bf | 2001-10-05 01:35:10 +0000 | [diff] [blame] | 256 | FILEUTILS_DEREFERENCE = 2, |
Matt Kraai | 0144103 | 2001-04-24 01:30:02 +0000 | [diff] [blame] | 257 | FILEUTILS_RECUR = 4, |
| 258 | FILEUTILS_FORCE = 8, |
| 259 | FILEUTILS_INTERACTIVE = 16 |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 260 | }; |
| 261 | |
Eric Andersen | 0e9aef3 | 2001-04-30 18:18:02 +0000 | [diff] [blame] | 262 | extern const char *applet_name; |
Eric Andersen | 6f34394 | 2001-04-30 18:08:03 +0000 | [diff] [blame] | 263 | extern const char * const full_version; |
| 264 | extern const char * const name_too_long; |
| 265 | extern const char * const omitting_directory; |
| 266 | extern const char * const not_a_directory; |
| 267 | extern const char * const memory_exhausted; |
| 268 | extern const char * const invalid_date; |
| 269 | extern const char * const invalid_option; |
| 270 | extern const char * const io_error; |
| 271 | extern const char * const dash_dash_help; |
| 272 | extern const char * const write_error; |
| 273 | extern const char * const too_few_args; |
| 274 | extern const char * const name_longer_than_foo; |
Eric Andersen | 5f265b7 | 2001-05-11 16:58:46 +0000 | [diff] [blame] | 275 | extern const char * const unknown; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 276 | extern const char * const can_not_create_raw_socket; |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 277 | extern const char * const nologin_file; |
| 278 | extern const char * const passwd_file; |
| 279 | extern const char * const shadow_file; |
| 280 | extern const char * const gshadow_file; |
| 281 | extern const char * const group_file; |
| 282 | extern const char * const securetty_file; |
| 283 | extern const char * const motd_file; |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 284 | extern const char * const _path_login; |
Matt Kraai | 9ff9325 | 2001-04-24 01:12:33 +0000 | [diff] [blame] | 285 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 286 | #ifdef CONFIG_FEATURE_DEVFS |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 287 | # define CURRENT_VC "/dev/vc/0" |
| 288 | # define VC_1 "/dev/vc/1" |
| 289 | # define VC_2 "/dev/vc/2" |
| 290 | # define VC_3 "/dev/vc/3" |
| 291 | # define VC_4 "/dev/vc/4" |
| 292 | # define VC_5 "/dev/vc/5" |
| 293 | # define SC_0 "/dev/tts/0" |
| 294 | # define SC_1 "/dev/tts/1" |
| 295 | # define VC_FORMAT "/dev/vc/%d" |
| 296 | # define SC_FORMAT "/dev/tts/%d" |
Eric Andersen | c7a3fb9 | 2002-03-20 15:25:25 +0000 | [diff] [blame] | 297 | # define LOOP_FORMAT "/dev/loop/%d" |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 298 | #else |
| 299 | # define CURRENT_VC "/dev/tty0" |
| 300 | # define VC_1 "/dev/tty1" |
| 301 | # define VC_2 "/dev/tty2" |
| 302 | # define VC_3 "/dev/tty3" |
| 303 | # define VC_4 "/dev/tty4" |
| 304 | # define VC_5 "/dev/tty5" |
| 305 | # define SC_0 "/dev/ttyS0" |
| 306 | # define SC_1 "/dev/ttyS1" |
| 307 | # define VC_FORMAT "/dev/tty%d" |
| 308 | # define SC_FORMAT "/dev/ttyS%d" |
Eric Andersen | c7a3fb9 | 2002-03-20 15:25:25 +0000 | [diff] [blame] | 309 | # define LOOP_FORMAT "/dev/loop%d" |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 310 | #endif |
| 311 | |
| 312 | /* The following devices are the same on devfs and non-devfs systems. */ |
| 313 | #define CURRENT_TTY "/dev/tty" |
| 314 | #define CONSOLE_DEV "/dev/console" |
| 315 | |
Matt Kraai | ace02dc | 2001-12-17 15:26:36 +0000 | [diff] [blame] | 316 | int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); |
| 317 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); |
| 318 | void reset_ino_dev_hashtable(void); |
| 319 | |
Eric Andersen | db7d5fc | 2002-04-13 13:02:03 +0000 | [diff] [blame] | 320 | /* Stupid gcc always includes its own builtin strlen()... */ |
| 321 | extern size_t xstrlen(const char *string); |
| 322 | #define strlen(x) xstrlen(x) |
| 323 | |
Robert Griebl | d378c31 | 2002-07-19 00:05:54 +0000 | [diff] [blame] | 324 | void bb_asprintf(char **string_ptr, const char *format, ...) __attribute__ ((format (printf, 2, 3))); |
| 325 | |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 326 | |
| 327 | #define FAIL_DELAY 3 |
| 328 | extern void change_identity ( const struct passwd *pw ); |
| 329 | extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args ); |
Glenn L McGrath | 545106f | 2002-11-11 06:21:00 +0000 | [diff] [blame] | 330 | extern int run_parts(char **args, const unsigned char test_mode); |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 331 | extern int restricted_shell ( const char *shell ); |
| 332 | extern void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw ); |
| 333 | extern int correct_password ( const struct passwd *pw ); |
| 334 | extern char *pw_encrypt(const char *clear, const char *salt); |
| 335 | extern struct spwd *pwd_to_spwd(const struct passwd *pw); |
| 336 | extern int obscure(const char *old, const char *newval, const struct passwd *pwdp); |
| 337 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 338 | extern int xopen(const char *pathname, int flags); |
| 339 | extern ssize_t xread(int fd, void *buf, size_t count); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 340 | extern void xread_all(int fd, void *buf, size_t count); |
| 341 | extern unsigned char xread_char(int fd); |
| 342 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 343 | typedef struct { |
| 344 | int pid; |
| 345 | char user[9]; |
| 346 | char state[4]; |
| 347 | unsigned long rss; |
| 348 | int ppid; |
| 349 | #ifdef FEATURE_CPU_USAGE_PERCENTAGE |
| 350 | unsigned pcpu; |
| 351 | unsigned long stime, utime; |
| 352 | #endif |
| 353 | char *cmd; |
| 354 | |
| 355 | /* basename of executable file in call to exec(2), |
| 356 | size from kernel headers */ |
| 357 | char short_cmd[16]; |
| 358 | } procps_status_t; |
| 359 | |
| 360 | extern procps_status_t * procps_scan(int save_user_arg0); |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 361 | extern unsigned short compare_string_array(const char *string_array[], const char *key); |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 362 | |
Tim Riker | cf93274 | 2002-12-14 01:58:59 +0000 | [diff] [blame] | 363 | extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret); |
| 364 | |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 365 | typedef struct llist_s { |
| 366 | char *data; |
| 367 | struct llist_s *link; |
| 368 | } llist_t; |
| 369 | extern llist_t *llist_add_to(llist_t *old_head, char *new_item); |
| 370 | |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 371 | void print_login_issue(const char *issue_file, const char *tty); |
| 372 | void print_login_prompt(void); |
| 373 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 374 | #endif /* __LIBCONFIG_H__ */ |