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