aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-26 13:20:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-26 13:20:04 +0000
commitbb7fcb4229fd5ff583039f26ca1c06340e3f09ea (patch)
tree5e4a6cc92e42ff7694ffc8b6a91434640e953726 /include
parentf62c6fa1cae0f944243c57b0a776c29eb0c61f18 (diff)
downloadbusybox-w32-bb7fcb4229fd5ff583039f26ca1c06340e3f09ea.tar.gz
busybox-w32-bb7fcb4229fd5ff583039f26ca1c06340e3f09ea.tar.bz2
busybox-w32-bb7fcb4229fd5ff583039f26ca1c06340e3f09ea.zip
libbb: rework NOMMU helper API so that it makes more sense
and easier to use. Doesn't compile - need two more commits.
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h86
1 files changed, 58 insertions, 28 deletions
diff --git a/include/libbb.h b/include/libbb.h
index aba9316d1..ff7d3bf1a 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -263,17 +263,9 @@ char *xrealloc_getcwd_or_warn(char *cwd);
263char *xmalloc_readlink_or_warn(const char *path); 263char *xmalloc_readlink_or_warn(const char *path);
264char *xmalloc_realpath(const char *path); 264char *xmalloc_realpath(const char *path);
265extern void xstat(const char *filename, struct stat *buf); 265extern void xstat(const char *filename, struct stat *buf);
266extern pid_t spawn(char **argv);
267extern pid_t xspawn(char **argv);
268extern int wait4pid(int pid); 266extern int wait4pid(int pid);
269extern void xsetgid(gid_t gid); 267extern void xsetgid(gid_t gid);
270extern void xsetuid(uid_t uid); 268extern void xsetuid(uid_t uid);
271extern void xdaemon(int nochdir, int noclose);
272/* More clever/thorough xdaemon */
273extern void bb_sanitize_stdio_maybe_daemonize(int daemonize);
274extern void bb_sanitize_stdio(void);
275/* NB: be careful: dont open syslog/network sockets before bb_daemonize */
276extern void bb_daemonize(void);
277extern void xchdir(const char *path); 269extern void xchdir(const char *path);
278extern void xsetenv(const char *key, const char *value); 270extern void xsetenv(const char *key, const char *value);
279extern int xopen(const char *pathname, int flags); 271extern int xopen(const char *pathname, int flags);
@@ -460,6 +452,62 @@ void clear_username_cache(void);
460enum { USERNAME_MAX_SIZE = 16 - sizeof(int) }; 452enum { USERNAME_MAX_SIZE = 16 - sizeof(int) };
461 453
462 454
455int execable_file(const char *name);
456char *find_execable(const char *filename);
457int exists_execable(const char *filename);
458
459#if ENABLE_FEATURE_EXEC_PREFER_APPLETS
460int bb_execvp(const char *file, char *const argv[]);
461#define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
462#define BB_EXECLP(prog,cmd,...) \
463 execlp((find_applet_by_name(prog)) ? CONFIG_BUSYBOX_EXEC_PATH : prog, \
464 cmd, __VA_ARGS__)
465#else
466#define BB_EXECVP(prog,cmd) execvp(prog,cmd)
467#define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__)
468#endif
469
470/* NOMMU friendy fork+exec */
471pid_t spawn(char **argv);
472pid_t xspawn(char **argv);
473/* Helpers for daemonization.
474 * bb_daemonize(flags) = daemonize, does not compile on NOMMU
475 * bb_daemonize_or_rexec(flags, argv) = daemonizes on MMU (and ignores argv),
476 * rexec's itself on NOMMU with argv passed as command line.
477 * Thus bb_daemonize_or_rexec may cause your <applet>_main() to be re-executed
478 * from the start. (It will detect it and not reexec again second time).
479 * You have to audit carefully that you don't do something twice as a result
480 * (opening files/sockets, parsing config files etc...)!
481 *
482 * Both of the above will redirect fd 0,1,2 to /dev/null and drop ctty
483 * (will do setsid()).
484 *
485 * Helper for network daemons in foreground mode:
486 * bb_sanitize_stdio() = make sure that fd 0,1,2 are opened by opening them
487 * to /dev/null if they are not.
488 */
489enum {
490 DAEMON_CHDIR_ROOT = 1,
491 DAEMON_DEVNULL_STDIO = /* 2 */ 0, /* no users so far */
492 DAEMON_CLOSE_EXTRA_FDS = 4,
493 DAEMON_ONLY_SANITIZE = 8, /* internal use */
494};
495#ifndef BB_NOMMU
496#define bb_daemonize_or_rexec(flags, argv) bb_daemonize_or_rexec(flags)
497#define bb_daemonize(flags) bb_daemonize_or_rexec(flags, bogus)
498#else
499extern smallint re_execed;
500pid_t BUG_fork_is_unavailable_on_nommu(void);
501pid_t BUG_daemon_is_unavailable_on_nommu(void);
502pid_t BUG_bb_daemonize_is_unavailable_on_nommu(void);
503#define fork() BUG_fork_is_unavailable_on_nommu()
504#define daemon(a,b) BUG_daemon_is_unavailable_on_nommu()
505#define bb_daemonize(a) BUG_bb_daemonize_is_unavailable_on_nommu()
506#endif
507void bb_daemonize_or_rexec(int flags, char **argv);
508void bb_sanitize_stdio(void);
509
510
463enum { BB_GETOPT_ERROR = 0x80000000 }; 511enum { BB_GETOPT_ERROR = 0x80000000 };
464extern const char *opt_complementary; 512extern const char *opt_complementary;
465#if ENABLE_GETOPT_LONG 513#if ENABLE_GETOPT_LONG
@@ -569,20 +617,6 @@ char *concat_path_file(const char *path, const char *filename);
569char *concat_subpath_file(const char *path, const char *filename); 617char *concat_subpath_file(const char *path, const char *filename);
570char *last_char_is(const char *s, int c); 618char *last_char_is(const char *s, int c);
571 619
572int execable_file(const char *name);
573char *find_execable(const char *filename);
574int exists_execable(const char *filename);
575
576#if ENABLE_FEATURE_EXEC_PREFER_APPLETS
577int bb_execvp(const char *file, char *const argv[]);
578#define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
579#define BB_EXECLP(prog,cmd,...) \
580 execlp((find_applet_by_name(prog)) ? CONFIG_BUSYBOX_EXEC_PATH : prog, \
581 cmd, __VA_ARGS__)
582#else
583#define BB_EXECVP(prog,cmd) execvp(prog,cmd)
584#define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__)
585#endif
586 620
587USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); 621USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out);
588int inflate(int in, int out); 622int inflate(int in, int out);
@@ -617,12 +651,8 @@ extern int index_in_str_array(const char * const string_array[], const char *key
617extern int index_in_substr_array(const char * const string_array[], const char *key); 651extern int index_in_substr_array(const char * const string_array[], const char *key);
618extern void print_login_issue(const char *issue_file, const char *tty); 652extern void print_login_issue(const char *issue_file, const char *tty);
619extern void print_login_prompt(void); 653extern void print_login_prompt(void);
620#ifdef BB_NOMMU 654
621extern pid_t BUG_fork_is_unavailable_on_nommu(void); 655
622#define fork() BUG_fork_is_unavailable_on_nommu()
623extern void vfork_daemon_rexec(int nochdir, int noclose, char **argv);
624extern smallint re_execed;
625#endif
626extern int get_terminal_width_height(const int fd, int *width, int *height); 656extern int get_terminal_width_height(const int fd, int *width, int *height);
627 657
628char *is_in_ino_dev_hashtable(const struct stat *statbuf); 658char *is_in_ino_dev_hashtable(const struct stat *statbuf);