blob: 194fd8220c0c1368a689482497c9e361bfd64fed [file] [log] [blame]
Eric Andersenf6b71392000-09-26 01:09:18 +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 _BB_INTERNAL_H_
25#define _BB_INTERNAL_H_ 1
26
27#include "Config.h"
28
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <stdio.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000030#include <stdarg.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000031#include <sys/stat.h>
Eric Andersen01bda5d2001-01-02 01:16:38 +000032#include <sys/types.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000033
Eric Andersen01bda5d2001-01-02 01:16:38 +000034#ifdef DMALLOC
35#include "dmalloc.h"
36#endif
Eric Andersenf6b71392000-09-26 01:09:18 +000037
Eric Andersen2b1c3672001-03-14 01:36:52 +000038#include <features.h>
Eric Andersenc3196012001-03-14 01:15:06 +000039/* Stupid libc doesn't have a reliable way for use to know
40 * that libc5 is being used. Assume this is good enough */
Eric Andersen2b1c3672001-03-14 01:36:52 +000041#if ! defined __GLIBC__ && ! defined __UCLIBC__
Eric Andersenc3196012001-03-14 01:15:06 +000042/* libc5 doesn't define socklen_t */
43typedef unsigned int socklen_t;
44#endif
45
46
Eric Andersenf6b71392000-09-26 01:09:18 +000047/* Some useful definitions */
Eric Andersen2187adc2000-12-04 20:31:45 +000048#define FALSE ((int) 0)
49#define TRUE ((int) 1)
Matt Kraaia1f97752000-12-19 06:24:08 +000050#define SKIP ((int) 2)
Eric Andersenf6b71392000-09-26 01:09:18 +000051
52/* for mtab.c */
53#define MTAB_GETMOUNTPT '1'
54#define MTAB_GETDEVICE '2'
55
56#define BUF_SIZE 8192
57#define EXPAND_ALLOC 1024
58
Mark Whitleyf57c9442000-12-07 19:56:48 +000059static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
60static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); }
Eric Andersenf6b71392000-09-26 01:09:18 +000061
62/* Macros for min/max. */
63#ifndef MIN
64#define MIN(a,b) (((a)<(b))?(a):(b))
65#endif
66
67#ifndef MAX
68#define MAX(a,b) (((a)>(b))?(a):(b))
69#endif
70
71
Eric Andersenf6b71392000-09-26 01:09:18 +000072enum Location {
73 _BB_DIR_ROOT = 0,
74 _BB_DIR_BIN,
75 _BB_DIR_SBIN,
76 _BB_DIR_USR_BIN,
77 _BB_DIR_USR_SBIN
78};
79
80struct BB_applet {
81 const char* name;
82 int (*main)(int argc, char** argv);
83 enum Location location;
Eric Andersenf6b71392000-09-26 01:09:18 +000084};
85/* From busybox.c */
86extern const struct BB_applet applets[];
87
Eric Andersen8c725e62000-11-30 00:27:06 +000088/* Automagically pull in all the applet function prototypes and
Eric Andersen87559822000-12-01 19:02:24 +000089 * applet usage strings. These are all of the form:
Eric Andersen8c725e62000-11-30 00:27:06 +000090 * extern int foo_main(int argc, char **argv);
91 * extern const char foo_usage[];
92 * These are all autogenerated from the set of currently defined applets.
93 */
94#define PROTOTYPES
95#include "applets.h"
96#undef PROTOTYPES
Eric Andersenf6b71392000-09-26 01:09:18 +000097
98extern const char *applet_name;
99
Eric Andersen67991cf2001-02-14 21:23:06 +0000100extern void show_usage(void) __attribute__ ((noreturn));
Eric Andersenc163e512001-02-22 23:38:48 +0000101extern void error_msg(const char *s, ...);
102extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
103extern void perror_msg(const char *s, ...);
104extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
Eric Andersenf6b71392000-09-26 01:09:18 +0000105
Mark Whitleyf57c9442000-12-07 19:56:48 +0000106const char *mode_string(int mode);
107const char *time_string(time_t timeVal);
108int is_directory(const char *name, const int followLinks, struct stat *statBuf);
Eric Andersenf6b71392000-09-26 01:09:18 +0000109int isDevice(const char *name);
110
111typedef struct ino_dev_hash_bucket_struct {
112 struct ino_dev_hash_bucket_struct *next;
113 ino_t ino;
114 dev_t dev;
115 char name[1];
116} ino_dev_hashtable_bucket_t;
117int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
118void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
119void reset_ino_dev_hashtable(void);
120
Mark Whitleyf57c9442000-12-07 19:56:48 +0000121int copy_file(const char *srcName, const char *destName,
Eric Andersenf6b71392000-09-26 01:09:18 +0000122 int setModes, int followLinks, int forceFlag);
Mark Whitley47583682000-12-05 20:03:17 +0000123int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
Eric Andersenf6b71392000-09-26 01:09:18 +0000124char *buildName(const char *dirName, const char *fileName);
125int makeString(int argc, const char **argv, char *buf, int bufLen);
126char *getChunk(int size);
127char *chunkstrdup(const char *str);
128void freeChunks(void);
Matt Kraaibfa79672000-12-15 22:34:34 +0000129ssize_t safe_read(int fd, void *buf, size_t count);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000130int full_write(int fd, const char *buf, int len);
131int full_read(int fd, char *buf, int len);
132int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
Eric Andersenf6b71392000-09-26 01:09:18 +0000133 int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
134 int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
135 void* userData);
136
Mark Whitleyf57c9442000-12-07 19:56:48 +0000137extern int create_path (const char *name, int mode);
Eric Andersenf6b71392000-09-26 01:09:18 +0000138extern int parse_mode( const char* s, mode_t* theMode);
139
140extern int get_kernel_revision(void);
141
142extern int get_console_fd(char* tty_name);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000143extern struct mntent *find_mount_point(const char *name, const char *table);
Eric Andersenf6b71392000-09-26 01:09:18 +0000144extern void write_mtab(char* blockDevice, char* directory,
145 char* filesystemType, long flags, char* string_flags);
146extern void erase_mtab(const char * name);
147extern void mtab_read(void);
148extern char *mtab_first(void **iter);
149extern char *mtab_next(void **iter);
150extern char *mtab_getinfo(const char *match, const char which);
151extern int check_wildcard_match(const char* text, const char* pattern);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000152extern long atoi_w_units (const char *cp);
153extern pid_t* find_pid_by_name( char* pidName);
Eric Andersenf6b71392000-09-26 01:09:18 +0000154extern int find_real_root_device_name(char* name);
155extern char *get_line_from_file(FILE *file);
156extern void print_file(FILE *file);
157extern int print_file_by_name(char *filename);
158extern char process_escape_sequence(char **ptr);
159extern char *get_last_path_component(char *path);
Matt Kraaic0321f92000-09-27 04:09:22 +0000160extern FILE *wfopen(const char *path, const char *mode);
Matt Kraaie0bcce02000-09-27 02:29:39 +0000161extern FILE *xfopen(const char *path, const char *mode);
Matt Kraai05e782d2001-02-01 16:49:30 +0000162extern void chomp(char *s);
Eric Andersen13d1fa12001-03-08 23:59:45 +0000163extern void trim(char *s);
Matt Kraaif2cc2762001-02-01 19:21:20 +0000164extern struct BB_applet *find_applet_by_name(const char *name);
Eric Andersen67991cf2001-02-14 21:23:06 +0000165void run_applet_by_name(const char *name, int argc, char **argv);
Eric Andersenf6b71392000-09-26 01:09:18 +0000166
Eric Andersen01bda5d2001-01-02 01:16:38 +0000167#ifndef DMALLOC
Eric Andersenf6b71392000-09-26 01:09:18 +0000168extern void *xmalloc (size_t size);
169extern void *xrealloc(void *old, size_t size);
170extern void *xcalloc(size_t nmemb, size_t size);
171extern char *xstrdup (const char *s);
172#endif
173extern char *xstrndup (const char *s, int n);
Eric Andersenec455952001-02-14 08:11:27 +0000174extern char * safe_strncpy(char *dst, const char *src, size_t size);
Eric Andersenf6b71392000-09-26 01:09:18 +0000175
Matt Kraai24ac0172000-12-18 21:38:57 +0000176struct suffix_mult {
177 char *suffix;
178 int mult;
179};
180
Matt Kraaia164c642001-02-05 17:50:03 +0000181extern unsigned long parse_number(const char *numstr,
182 const struct suffix_mult *suffixes);
Matt Kraai24ac0172000-12-18 21:38:57 +0000183
Eric Andersenf6b71392000-09-26 01:09:18 +0000184
185/* These parse entries in /etc/passwd and /etc/group. This is desirable
186 * for BusyBox since we want to avoid using the glibc NSS stuff, which
187 * increases target size and is often not needed embedded systems. */
Eric Andersen4142d4d2001-02-27 18:22:03 +0000188extern long my_getpwnam(const char *name);
189extern long my_getgrnam(const char *name);
Eric Andersenf6b71392000-09-26 01:09:18 +0000190extern void my_getpwuid(char *name, long uid);
191extern void my_getgrgid(char *group, long gid);
Eric Andersen4142d4d2001-02-27 18:22:03 +0000192extern long my_getpwnamegid(const char *name);
Eric Andersenf6b71392000-09-26 01:09:18 +0000193
194extern int device_open(char *device, int mode);
195
196#if defined BB_FEATURE_MOUNT_LOOP
197extern int del_loop(const char *device);
198extern int set_loop(const char *device, const char *file, int offset, int *loopro);
199extern char *find_unused_loop_device (void);
200#endif
201
202
203#if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
204extern int vdprintf(int d, const char *format, va_list ap);
205#endif
206
207#if defined BB_NFSMOUNT
208int nfsmount(const char *spec, const char *node, int *flags,
209 char **extra_opts, char **mount_opts, int running_bg);
210#endif
211
212#ifndef RB_POWER_OFF
213/* Stop system and switch power off if possible. */
214#define RB_POWER_OFF 0x4321fedc
215#endif
216
Mark Whitley6317c4b2001-03-12 22:51:50 +0000217#if defined(BB_KLOGD) || defined(BB_LOGGER)
218void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg);
219void syslog_msg(int facility, int pri, const char *msg);
220#endif
221
Eric Andersenf6b71392000-09-26 01:09:18 +0000222/* Include our own copy of struct sysinfo to avoid binary compatability
223 * problems with Linux 2.4, which changed things. Grumble, grumble. */
224struct sysinfo {
225 long uptime; /* Seconds since boot */
226 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
227 unsigned long totalram; /* Total usable main memory size */
228 unsigned long freeram; /* Available memory size */
229 unsigned long sharedram; /* Amount of shared memory */
230 unsigned long bufferram; /* Memory used by buffers */
231 unsigned long totalswap; /* Total swap space size */
232 unsigned long freeswap; /* swap space still available */
233 unsigned short procs; /* Number of current processes */
234 unsigned long totalhigh; /* Total high memory size */
235 unsigned long freehigh; /* Available high memory size */
236 unsigned int mem_unit; /* Memory unit size in bytes */
237 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
238};
239extern int sysinfo (struct sysinfo* info);
240
241/* Bit map related macros -- libc5 doens't provide these... sigh. */
242#ifndef setbit
243#define NBBY CHAR_BIT
244#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
245#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
246#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
247#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
248#endif
249
Richard June6d0921c2001-01-22 22:35:38 +0000250#ifdef BB_FEATURE_HUMAN_READABLE
Mark Whitleyae5612c2001-03-07 17:42:07 +0000251const char *make_human_readable_str(unsigned long val, unsigned long hr);
Mark Whitley39842de2001-03-01 18:51:33 +0000252#endif
Mark Whitley4cc8f312001-03-07 18:00:44 +0000253enum {
254 KILOBYTE = 1024,
255 MEGABYTE = (KILOBYTE*1024),
256 GIGABYTE = (MEGABYTE*1024)
257};
Richard June6d0921c2001-01-22 22:35:38 +0000258
Eric Andersend35c2152001-01-25 23:49:09 +0000259#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
260#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
261#define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len]
262#else
263#define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len)
264#define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
265#endif
266
Mark Whitleye0bf91d2001-03-13 00:40:19 +0000267#if defined(BB_FEATURE_RM_INTERACTIVE) && defined(BB_RM)
268int ask_confirmation(void);
269#endif
270
Eric Andersenf6b71392000-09-26 01:09:18 +0000271#endif /* _BB_INTERNAL_H_ */