blob: cbc1436fce7055953d3daae457dde1aaac1a13d2 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* 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 */
24#ifndef __LIBBB_H__
25#define __LIBBB_H__ 1
26
27#include <stdio.h>
28#include <stdarg.h>
29#include <sys/stat.h>
30#include <sys/types.h>
31
32#ifdef DMALLOC
33#include "dmalloc.h"
34#endif
35
36#include <features.h>
Eric Andersenb6b519b2001-04-09 23:52:18 +000037
38#if __GNU_LIBRARY__ < 5
Eric Andersenaad1a882001-03-16 22:47:14 +000039/* libc5 doesn't define socklen_t */
40typedef unsigned int socklen_t;
Eric Andersenb2e3e9b2001-04-04 19:25:57 +000041/* libc5 doesn't implement BSD 4.4 daemon() */
42extern int daemon (int nochdir, int noclose);
Eric Andersenaad1a882001-03-16 22:47:14 +000043#endif
44
45/* Some useful definitions */
46#define FALSE ((int) 0)
47#define TRUE ((int) 1)
48#define SKIP ((int) 2)
49
50/* for mtab.c */
51#define MTAB_GETMOUNTPT '1'
52#define MTAB_GETDEVICE '2'
53
54#define BUF_SIZE 8192
55#define EXPAND_ALLOC 1024
56
Eric Andersenb5ec61e2001-04-18 20:17:05 +000057static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
58static inline int is_octal(int ch) { return ((ch >= '0') && (ch <= '7')); }
Eric Andersenaad1a882001-03-16 22:47:14 +000059
60/* Macros for min/max. */
61#ifndef MIN
62#define MIN(a,b) (((a)<(b))?(a):(b))
63#endif
64
65#ifndef MAX
66#define MAX(a,b) (((a)>(b))?(a):(b))
67#endif
68
69
70
71extern void show_usage(void) __attribute__ ((noreturn));
Eric Andersenb183dfa2001-03-19 19:24:06 +000072extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
73extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
Eric Andersenaad1a882001-03-16 22:47:14 +000074extern void perror_msg(const char *s, ...);
75extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
76
Eric Andersenb183dfa2001-03-19 19:24:06 +000077/* These two are used internally -- you shouldn't need to use them */
78extern void verror_msg(const char *s, va_list p);
79extern void vperror_msg(const char *s, va_list p);
80
Eric Andersenaad1a882001-03-16 22:47:14 +000081const char *mode_string(int mode);
82const char *time_string(time_t timeVal);
83int is_directory(const char *name, const int followLinks, struct stat *statBuf);
84int isDevice(const char *name);
85
86typedef struct ino_dev_hash_bucket_struct {
87 struct ino_dev_hash_bucket_struct *next;
88 ino_t ino;
89 dev_t dev;
90 char name[1];
91} ino_dev_hashtable_bucket_t;
92int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
93void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
94void reset_ino_dev_hashtable(void);
95
Matt Kraai8810bdb2001-04-24 20:04:18 +000096int remove_file(const char *path, int flags);
Matt Kraai91b28552001-04-23 18:53:07 +000097int copy_file(const char *source, const char *dest, int flags);
Glenn L McGrathc9cac5b2001-04-12 13:47:12 +000098int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize);
Eric Andersenaad1a882001-03-16 22:47:14 +000099char *buildName(const char *dirName, const char *fileName);
100int makeString(int argc, const char **argv, char *buf, int bufLen);
101char *getChunk(int size);
102char *chunkstrdup(const char *str);
103void freeChunks(void);
104ssize_t safe_read(int fd, void *buf, size_t count);
105int full_write(int fd, const char *buf, int len);
106int full_read(int fd, char *buf, int len);
107int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
108 int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
109 int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
110 void* userData);
111
112extern int create_path (const char *name, int mode);
113extern int parse_mode( const char* s, mode_t* theMode);
114
115extern int get_kernel_revision(void);
116
117extern int get_console_fd(char* tty_name);
118extern struct mntent *find_mount_point(const char *name, const char *table);
119extern void write_mtab(char* blockDevice, char* directory,
120 char* filesystemType, long flags, char* string_flags);
121extern void erase_mtab(const char * name);
122extern void mtab_read(void);
123extern char *mtab_first(void **iter);
124extern char *mtab_next(void **iter);
125extern char *mtab_getinfo(const char *match, const char which);
126extern int check_wildcard_match(const char* text, const char* pattern);
127extern long atoi_w_units (const char *cp);
128extern pid_t* find_pid_by_name( char* pidName);
129extern int find_real_root_device_name(char* name);
130extern char *get_line_from_file(FILE *file);
131extern void print_file(FILE *file);
132extern int print_file_by_name(char *filename);
Eric Andersene5dfced2001-04-09 22:48:12 +0000133extern char process_escape_sequence(const char **ptr);
Eric Andersenaad1a882001-03-16 22:47:14 +0000134extern char *get_last_path_component(char *path);
135extern FILE *wfopen(const char *path, const char *mode);
136extern FILE *xfopen(const char *path, const char *mode);
137extern void chomp(char *s);
138extern void trim(char *s);
139extern struct BB_applet *find_applet_by_name(const char *name);
140void run_applet_by_name(const char *name, int argc, char **argv);
141
142#ifndef DMALLOC
143extern void *xmalloc (size_t size);
144extern void *xrealloc(void *old, size_t size);
145extern void *xcalloc(size_t nmemb, size_t size);
146extern char *xstrdup (const char *s);
147#endif
148extern char *xstrndup (const char *s, int n);
149extern char * safe_strncpy(char *dst, const char *src, size_t size);
150
151struct suffix_mult {
Eric Andersene5dfced2001-04-09 22:48:12 +0000152 const char *suffix;
Eric Andersenaad1a882001-03-16 22:47:14 +0000153 int mult;
154};
155
156extern unsigned long parse_number(const char *numstr,
157 const struct suffix_mult *suffixes);
158
159
160/* These parse entries in /etc/passwd and /etc/group. This is desirable
161 * for BusyBox since we want to avoid using the glibc NSS stuff, which
162 * increases target size and is often not needed embedded systems. */
163extern long my_getpwnam(const char *name);
164extern long my_getgrnam(const char *name);
165extern void my_getpwuid(char *name, long uid);
166extern void my_getgrgid(char *group, long gid);
167extern long my_getpwnamegid(const char *name);
168
169extern int device_open(char *device, int mode);
170
171extern int del_loop(const char *device);
172extern int set_loop(const char *device, const char *file, int offset, int *loopro);
173extern char *find_unused_loop_device (void);
174
175
176#if (__GLIBC__ < 2)
177extern int vdprintf(int d, const char *format, va_list ap);
178#endif
179
180int nfsmount(const char *spec, const char *node, int *flags,
181 char **extra_opts, char **mount_opts, int running_bg);
182
183void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg);
184void syslog_msg(int facility, int pri, const char *msg);
185
186/* Include our own copy of struct sysinfo to avoid binary compatability
187 * problems with Linux 2.4, which changed things. Grumble, grumble. */
188struct sysinfo {
189 long uptime; /* Seconds since boot */
190 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
191 unsigned long totalram; /* Total usable main memory size */
192 unsigned long freeram; /* Available memory size */
193 unsigned long sharedram; /* Amount of shared memory */
194 unsigned long bufferram; /* Memory used by buffers */
195 unsigned long totalswap; /* Total swap space size */
196 unsigned long freeswap; /* swap space still available */
197 unsigned short procs; /* Number of current processes */
198 unsigned long totalhigh; /* Total high memory size */
199 unsigned long freehigh; /* Available high memory size */
200 unsigned int mem_unit; /* Memory unit size in bytes */
201 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
202};
203extern int sysinfo (struct sysinfo* info);
204
Matt Kraaid98e5742001-03-28 20:10:25 +0000205const char *make_human_readable_str(unsigned long val, unsigned long not_hr);
Eric Andersenaad1a882001-03-16 22:47:14 +0000206enum {
207 KILOBYTE = 1024,
208 MEGABYTE = (KILOBYTE*1024),
209 GIGABYTE = (MEGABYTE*1024)
210};
211
212int ask_confirmation(void);
Eric Andersene76c3b02001-04-05 03:14:39 +0000213int klogctl(int type, char * b, int len);
Eric Andersenaad1a882001-03-16 22:47:14 +0000214
Eric Andersene5dfced2001-04-09 22:48:12 +0000215char *xgetcwd(char *cwd);
216char *concat_path_file(const char *path, const char *filename);
217
Glenn L McGrath9d53c8a2001-04-11 01:37:03 +0000218typedef struct ar_headers_s {
219 char *name;
220 off_t size;
221 uid_t uid;
222 gid_t gid;
223 mode_t mode;
224 time_t mtime;
225 off_t offset;
226 struct ar_headers_s *next;
227} ar_headers_t;
Glenn L McGrath4949faf2001-04-11 16:23:35 +0000228extern ar_headers_t *get_ar_headers(FILE *in_file);
229extern int seek_ared_file(FILE *in_file, ar_headers_t *headers, const char *tar_gz_file);
Glenn L McGrath359c1062001-04-12 10:19:08 +0000230
231typedef enum extract_function_e {
232 extract_contents = 1,
233 extract_control = 2,
234 extract_info = 4,
235 extract_extract = 8,
236 extract_verbose_extract = 16,
Glenn L McGrathc9cac5b2001-04-12 13:47:12 +0000237 extract_list = 32,
Glenn L McGrath445fb952001-04-13 04:02:57 +0000238 extract_fsys_tarfile = 64,
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000239 extract_field = 128,
240 extract_contents_to_file = 256
Glenn L McGrath359c1062001-04-12 10:19:08 +0000241} extract_function_t;
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000242extern char *deb_extract(const char *package_filename, const int function,
243 const char *argument, const char *argument2);
244extern char *untar(FILE *src_tar_file, FILE *output, const int untar_function,
245 const char *argument, const char *file_prefix);
Glenn L McGrath685f5fd2001-04-15 12:51:59 +0000246extern char *read_text_file_to_buffer(FILE *src_file);
247extern char *read_package_field(const char *package_buffer);
Glenn L McGrath359c1062001-04-12 10:19:08 +0000248
Glenn L McGrath7fd92942001-04-11 03:11:33 +0000249extern int unzip(FILE *l_in_file, FILE *l_out_file);
250extern void gz_close(int gunzip_pid);
251extern int gz_open(FILE *compressed_file, int *pid);
Glenn L McGrath4949faf2001-04-11 16:23:35 +0000252
Glenn L McGratha2831572001-04-12 00:49:26 +0000253#define CT_AUTO 0
254#define CT_UNIX2DOS 1
255#define CT_DOS2UNIX 2
Matt Kraai1e04ea32001-04-12 21:38:06 +0000256/* extern int convert(char *fn, int ConvType); */
Glenn L McGratha2831572001-04-12 00:49:26 +0000257
Matt Kraai91b28552001-04-23 18:53:07 +0000258enum {
Matt Kraai01441032001-04-24 01:30:02 +0000259 FILEUTILS_PRESERVE_STATUS = 1,
260 FILEUTILS_PRESERVE_SYMLINKS = 2,
261 FILEUTILS_RECUR = 4,
262 FILEUTILS_FORCE = 8,
263 FILEUTILS_INTERACTIVE = 16
Matt Kraai91b28552001-04-23 18:53:07 +0000264};
265
Matt Kraai9ff93252001-04-24 01:12:33 +0000266extern const char *applet_name;
Eric Andersen04095e52001-04-25 05:39:18 +0000267extern const char *full_version;
268extern const char *name_too_long;
269extern const char *omitting_directory;
270extern const char *not_a_directory;
271extern const char *memory_exhausted;
272extern const char *invalid_date;
273extern const char *invalid_option;
274extern const char *io_error;
275extern const char *dash_dash_help;
276extern const char *write_error;
277extern const char *too_few_args;
278extern const char *name_longer_than_foo;
Matt Kraai9ff93252001-04-24 01:12:33 +0000279
Eric Andersenaad1a882001-03-16 22:47:14 +0000280#endif /* __LIBBB_H__ */