blob: 4c23b2b80178f4860d99dffc8ae509cfd0f8703a [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>
37/* Stupid libc doesn't have a reliable way for use to know
38 * that libc5 is being used. Assume this is good enough */
39#if ! defined __GLIBC__ && ! defined __UCLIBC__
40/* libc5 doesn't define socklen_t */
41typedef unsigned int socklen_t;
42#endif
43
44/* Some useful definitions */
45#define FALSE ((int) 0)
46#define TRUE ((int) 1)
47#define SKIP ((int) 2)
48
49/* for mtab.c */
50#define MTAB_GETMOUNTPT '1'
51#define MTAB_GETDEVICE '2'
52
53#define BUF_SIZE 8192
54#define EXPAND_ALLOC 1024
55
56static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
57static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); }
58
59/* Macros for min/max. */
60#ifndef MIN
61#define MIN(a,b) (((a)<(b))?(a):(b))
62#endif
63
64#ifndef MAX
65#define MAX(a,b) (((a)>(b))?(a):(b))
66#endif
67
68
69
70extern void show_usage(void) __attribute__ ((noreturn));
Eric Andersenb183dfa2001-03-19 19:24:06 +000071extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
72extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
Eric Andersenaad1a882001-03-16 22:47:14 +000073extern void perror_msg(const char *s, ...);
74extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
75
Eric Andersenb183dfa2001-03-19 19:24:06 +000076/* These two are used internally -- you shouldn't need to use them */
77extern void verror_msg(const char *s, va_list p);
78extern void vperror_msg(const char *s, va_list p);
79
Eric Andersenaad1a882001-03-16 22:47:14 +000080const char *mode_string(int mode);
81const char *time_string(time_t timeVal);
82int is_directory(const char *name, const int followLinks, struct stat *statBuf);
83int isDevice(const char *name);
84
85typedef struct ino_dev_hash_bucket_struct {
86 struct ino_dev_hash_bucket_struct *next;
87 ino_t ino;
88 dev_t dev;
89 char name[1];
90} ino_dev_hashtable_bucket_t;
91int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
92void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
93void reset_ino_dev_hashtable(void);
94
95int copy_file(const char *srcName, const char *destName,
96 int setModes, int followLinks, int forceFlag);
97int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
98char *buildName(const char *dirName, const char *fileName);
99int makeString(int argc, const char **argv, char *buf, int bufLen);
100char *getChunk(int size);
101char *chunkstrdup(const char *str);
102void freeChunks(void);
103ssize_t safe_read(int fd, void *buf, size_t count);
104int full_write(int fd, const char *buf, int len);
105int full_read(int fd, char *buf, int len);
106int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
107 int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
108 int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
109 void* userData);
110
111extern int create_path (const char *name, int mode);
112extern int parse_mode( const char* s, mode_t* theMode);
113
114extern int get_kernel_revision(void);
115
116extern int get_console_fd(char* tty_name);
117extern struct mntent *find_mount_point(const char *name, const char *table);
118extern void write_mtab(char* blockDevice, char* directory,
119 char* filesystemType, long flags, char* string_flags);
120extern void erase_mtab(const char * name);
121extern void mtab_read(void);
122extern char *mtab_first(void **iter);
123extern char *mtab_next(void **iter);
124extern char *mtab_getinfo(const char *match, const char which);
125extern int check_wildcard_match(const char* text, const char* pattern);
126extern long atoi_w_units (const char *cp);
127extern pid_t* find_pid_by_name( char* pidName);
128extern int find_real_root_device_name(char* name);
129extern char *get_line_from_file(FILE *file);
130extern void print_file(FILE *file);
131extern int print_file_by_name(char *filename);
132extern char process_escape_sequence(char **ptr);
133extern char *get_last_path_component(char *path);
134extern FILE *wfopen(const char *path, const char *mode);
135extern FILE *xfopen(const char *path, const char *mode);
136extern void chomp(char *s);
137extern void trim(char *s);
138extern struct BB_applet *find_applet_by_name(const char *name);
139void run_applet_by_name(const char *name, int argc, char **argv);
140
141#ifndef DMALLOC
142extern void *xmalloc (size_t size);
143extern void *xrealloc(void *old, size_t size);
144extern void *xcalloc(size_t nmemb, size_t size);
145extern char *xstrdup (const char *s);
146#endif
147extern char *xstrndup (const char *s, int n);
148extern char * safe_strncpy(char *dst, const char *src, size_t size);
149
150struct suffix_mult {
151 char *suffix;
152 int mult;
153};
154
155extern unsigned long parse_number(const char *numstr,
156 const struct suffix_mult *suffixes);
157
158
159/* These parse entries in /etc/passwd and /etc/group. This is desirable
160 * for BusyBox since we want to avoid using the glibc NSS stuff, which
161 * increases target size and is often not needed embedded systems. */
162extern long my_getpwnam(const char *name);
163extern long my_getgrnam(const char *name);
164extern void my_getpwuid(char *name, long uid);
165extern void my_getgrgid(char *group, long gid);
166extern long my_getpwnamegid(const char *name);
167
168extern int device_open(char *device, int mode);
169
170extern int del_loop(const char *device);
171extern int set_loop(const char *device, const char *file, int offset, int *loopro);
172extern char *find_unused_loop_device (void);
173
174
175#if (__GLIBC__ < 2)
176extern int vdprintf(int d, const char *format, va_list ap);
177#endif
178
179int nfsmount(const char *spec, const char *node, int *flags,
180 char **extra_opts, char **mount_opts, int running_bg);
181
182void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg);
183void syslog_msg(int facility, int pri, const char *msg);
184
185/* Include our own copy of struct sysinfo to avoid binary compatability
186 * problems with Linux 2.4, which changed things. Grumble, grumble. */
187struct sysinfo {
188 long uptime; /* Seconds since boot */
189 unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
190 unsigned long totalram; /* Total usable main memory size */
191 unsigned long freeram; /* Available memory size */
192 unsigned long sharedram; /* Amount of shared memory */
193 unsigned long bufferram; /* Memory used by buffers */
194 unsigned long totalswap; /* Total swap space size */
195 unsigned long freeswap; /* swap space still available */
196 unsigned short procs; /* Number of current processes */
197 unsigned long totalhigh; /* Total high memory size */
198 unsigned long freehigh; /* Available high memory size */
199 unsigned int mem_unit; /* Memory unit size in bytes */
200 char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
201};
202extern int sysinfo (struct sysinfo* info);
203
204const char *make_human_readable_str(unsigned long val, unsigned long hr);
205enum {
206 KILOBYTE = 1024,
207 MEGABYTE = (KILOBYTE*1024),
208 GIGABYTE = (MEGABYTE*1024)
209};
210
211int ask_confirmation(void);
212
213#endif /* __LIBBB_H__ */