These should have been part of 15767 too.
This commit is contained in:
parent
7478804b78
commit
86b4d64aa3
@ -67,7 +67,7 @@ int cpio_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (cpio_filename) { /* CPIO_OPT_FILE */
|
if (cpio_filename) { /* CPIO_OPT_FILE */
|
||||||
archive_handle->src_fd = bb_xopen(cpio_filename, O_RDONLY);
|
archive_handle->src_fd = xopen(cpio_filename, O_RDONLY);
|
||||||
archive_handle->seek = seek_by_jump;
|
archive_handle->seek = seek_by_jump;
|
||||||
}
|
}
|
||||||
if (opt & CPIO_OPT_CREATE_LEADING_DIR) {
|
if (opt & CPIO_OPT_CREATE_LEADING_DIR) {
|
||||||
|
@ -1187,7 +1187,7 @@ int gzip_main(int argc, char **argv)
|
|||||||
ALLOC(ush, tab_prefix, 1L << BITS);
|
ALLOC(ush, tab_prefix, 1L << BITS);
|
||||||
|
|
||||||
/* Initialise the CRC32 table */
|
/* Initialise the CRC32 table */
|
||||||
crc_32_tab = bb_crc32_filltable(0);
|
crc_32_tab = crc32_filltable(0);
|
||||||
|
|
||||||
clear_bufs();
|
clear_bufs();
|
||||||
part_nb = 0;
|
part_nb = 0;
|
||||||
@ -1209,7 +1209,7 @@ int gzip_main(int argc, char **argv)
|
|||||||
inFileNum = STDIN_FILENO;
|
inFileNum = STDIN_FILENO;
|
||||||
outFileNum = STDOUT_FILENO;
|
outFileNum = STDOUT_FILENO;
|
||||||
} else {
|
} else {
|
||||||
inFileNum = bb_xopen3(argv[i], O_RDONLY, 0);
|
inFileNum = xopen3(argv[i], O_RDONLY, 0);
|
||||||
if (fstat(inFileNum, &statBuf) < 0)
|
if (fstat(inFileNum, &statBuf) < 0)
|
||||||
bb_perror_msg_and_die("%s", argv[i]);
|
bb_perror_msg_and_die("%s", argv[i]);
|
||||||
time_stamp = statBuf.st_ctime;
|
time_stamp = statBuf.st_ctime;
|
||||||
|
@ -541,7 +541,7 @@ static llist_t *append_file_list_to_list(llist_t *list)
|
|||||||
llist_t *newlist = NULL;
|
llist_t *newlist = NULL;
|
||||||
|
|
||||||
while (cur) {
|
while (cur) {
|
||||||
src_stream = bb_xfopen(cur->data, "r");
|
src_stream = xfopen(cur->data, "r");
|
||||||
tmp = cur;
|
tmp = cur;
|
||||||
cur = cur->link;
|
cur = cur->link;
|
||||||
free(tmp);
|
free(tmp);
|
||||||
@ -824,12 +824,12 @@ int tar_main(int argc, char **argv)
|
|||||||
tar_handle->src_fd = fileno(tar_stream);
|
tar_handle->src_fd = fileno(tar_stream);
|
||||||
tar_handle->seek = seek_by_char;
|
tar_handle->seek = seek_by_char;
|
||||||
} else {
|
} else {
|
||||||
tar_handle->src_fd = bb_xopen(tar_filename, flags);
|
tar_handle->src_fd = xopen(tar_filename, flags);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (base_dir)
|
if (base_dir)
|
||||||
bb_xchdir(base_dir);
|
xchdir(base_dir);
|
||||||
|
|
||||||
/* create an archive */
|
/* create an archive */
|
||||||
if (ENABLE_FEATURE_TAR_CREATE && (opt & CTX_CREATE)) {
|
if (ENABLE_FEATURE_TAR_CREATE && (opt & CTX_CREATE)) {
|
||||||
|
@ -121,7 +121,7 @@ static long du(char *filename)
|
|||||||
struct dirent *entry;
|
struct dirent *entry;
|
||||||
char *newfile;
|
char *newfile;
|
||||||
|
|
||||||
dir = bb_opendir(filename);
|
dir = warn_opendir(filename);
|
||||||
if (!dir) {
|
if (!dir) {
|
||||||
status = EXIT_FAILURE;
|
status = EXIT_FAILURE;
|
||||||
return sum;
|
return sum;
|
||||||
|
@ -1,30 +1,16 @@
|
|||||||
/* vi: set sw=4 ts=4: */
|
/* vi: set sw=4 ts=4: */
|
||||||
/*
|
/*
|
||||||
* Busybox xregcomp utility routine
|
* Busybox xregcomp utility routine. This isn't in libbb.h because the
|
||||||
*
|
* C library we're linking against may not support regex.h.
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
*
|
*
|
||||||
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
|
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
|
||||||
* Permission has been granted to redistribute this code under the GPL.
|
* Permission has been granted to redistribute this code under the GPL.
|
||||||
*
|
*
|
||||||
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
||||||
*/
|
*/
|
||||||
#ifndef __BB_REGEX__
|
#ifndef __BB_REGEX__
|
||||||
#define __BB_REGEX__
|
#define __BB_REGEX__
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
extern void xregcomp(regex_t *preg, const char *regex, int cflags);
|
extern void xregcomp(regex_t *preg, const char *regex, int cflags);
|
||||||
|
|
||||||
|
@ -14,9 +14,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <mntent.h>
|
#include <mntent.h>
|
||||||
|
|
||||||
/* various defines swiped from linux/cdrom.h */
|
/* various defines swiped from linux/cdrom.h */
|
||||||
@ -40,7 +37,7 @@ int eject_main(int argc, char **argv)
|
|||||||
erase_mtab(m->mnt_fsname);
|
erase_mtab(m->mnt_fsname);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ioctl(bb_xopen(device, (O_RDONLY | O_NONBLOCK)),
|
if (ioctl(xopen(device, (O_RDONLY | O_NONBLOCK)),
|
||||||
(flags ? CDROMCLOSETRAY : CDROMEJECT))) {
|
(flags ? CDROMCLOSETRAY : CDROMEJECT))) {
|
||||||
bb_perror_msg_and_die("%s", device);
|
bb_perror_msg_and_die("%s", device);
|
||||||
}
|
}
|
||||||
|
@ -12,18 +12,18 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
#include <stdlib.h>
|
//#include <stdlib.h>
|
||||||
#include <stdio.h>
|
//#include <stdio.h>
|
||||||
#include <string.h>
|
//#include <string.h>
|
||||||
#include <stddef.h>
|
//#include <stddef.h>
|
||||||
#include <errno.h>
|
//#include <errno.h>
|
||||||
#include <unistd.h>
|
//#include <unistd.h>
|
||||||
#include <dirent.h>
|
//#include <dirent.h>
|
||||||
#include <ctype.h>
|
//#include <ctype.h>
|
||||||
#include <assert.h>
|
//#include <assert.h>
|
||||||
#include <getopt.h>
|
//#include <getopt.h>
|
||||||
#include <sys/utsname.h>
|
//#include <sys/utsname.h>
|
||||||
#include <sys/file.h>
|
//#include <sys/file.h>
|
||||||
|
|
||||||
|
|
||||||
#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
|
#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
|
||||||
@ -151,15 +151,14 @@ int lsmod_main(int argc, char **argv)
|
|||||||
|
|
||||||
int lsmod_main(int argc, char **argv)
|
int lsmod_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
FILE *file = xfopen("/proc/modules", "r");
|
||||||
|
|
||||||
printf("Module Size Used by");
|
printf("Module Size Used by");
|
||||||
check_tainted();
|
check_tainted();
|
||||||
#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT)
|
#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT)
|
||||||
{
|
{
|
||||||
FILE *file;
|
|
||||||
char line[4096];
|
char line[4096];
|
||||||
|
|
||||||
file = bb_xfopen("/proc/modules", "r");
|
|
||||||
|
|
||||||
while (fgets(line, sizeof(line), file)) {
|
while (fgets(line, sizeof(line), file)) {
|
||||||
char *tok;
|
char *tok;
|
||||||
|
|
||||||
@ -190,13 +189,10 @@ int lsmod_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
fclose(file);
|
fclose(file);
|
||||||
}
|
}
|
||||||
return EXIT_SUCCESS;
|
|
||||||
#else
|
#else
|
||||||
if (bb_xprint_file_by_name("/proc/modules") == 0)
|
xprint_and_close_file(file);
|
||||||
return EXIT_SUCCESS;
|
|
||||||
#endif /* CONFIG_FEATURE_2_6_MODULES */
|
#endif /* CONFIG_FEATURE_2_6_MODULES */
|
||||||
|
return EXIT_SUCCESS;
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
|
#endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
|
||||||
|
@ -17,12 +17,6 @@
|
|||||||
* the first porting of oao' scdns to busybox also.
|
* the first porting of oao' scdns to busybox also.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
static char *fileconf = "/etc/dnsd.conf";
|
static char *fileconf = "/etc/dnsd.conf";
|
||||||
@ -170,7 +164,7 @@ static void dnsentryinit(int verb)
|
|||||||
struct dns_entry *m, *prev;
|
struct dns_entry *m, *prev;
|
||||||
prev = dnsentry = NULL;
|
prev = dnsentry = NULL;
|
||||||
|
|
||||||
fp = bb_xfopen(fileconf, "r");
|
fp = xfopen(fileconf, "r");
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
m = xmalloc(sizeof(struct dns_entry));
|
m = xmalloc(sizeof(struct dns_entry));
|
||||||
@ -198,7 +192,7 @@ static int listen_socket(char *iface_addr, int listen_port)
|
|||||||
char msg[100];
|
char msg[100];
|
||||||
int s;
|
int s;
|
||||||
int yes = 1;
|
int yes = 1;
|
||||||
s = bb_xsocket(PF_INET, SOCK_DGRAM, 0);
|
s = xsocket(PF_INET, SOCK_DGRAM, 0);
|
||||||
#ifdef SO_REUSEADDR
|
#ifdef SO_REUSEADDR
|
||||||
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&yes, sizeof(yes)) < 0)
|
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&yes, sizeof(yes)) < 0)
|
||||||
bb_perror_msg_and_die("setsockopt() failed");
|
bb_perror_msg_and_die("setsockopt() failed");
|
||||||
@ -208,8 +202,8 @@ static int listen_socket(char *iface_addr, int listen_port)
|
|||||||
a.sin_family = AF_INET;
|
a.sin_family = AF_INET;
|
||||||
if (!inet_aton(iface_addr, &a.sin_addr))
|
if (!inet_aton(iface_addr, &a.sin_addr))
|
||||||
bb_perror_msg_and_die("bad iface address");
|
bb_perror_msg_and_die("bad iface address");
|
||||||
bb_xbind(s, (struct sockaddr *)&a, sizeof(a));
|
xbind(s, (struct sockaddr *)&a, sizeof(a));
|
||||||
listen(s, 50); /* bb_xlisten? */
|
xlisten(s, 50); /* xlisten? */
|
||||||
sprintf(msg, "accepting UDP packets on addr:port %s:%d\n",
|
sprintf(msg, "accepting UDP packets on addr:port %s:%d\n",
|
||||||
iface_addr, (int)listen_port);
|
iface_addr, (int)listen_port);
|
||||||
log_message(LOG_FILE, msg);
|
log_message(LOG_FILE, msg);
|
||||||
@ -397,7 +391,7 @@ int dnsd_main(int argc, char **argv)
|
|||||||
/* reexec for vfork() do continue parent */
|
/* reexec for vfork() do continue parent */
|
||||||
vfork_daemon_rexec(1, 0, argc, argv, "-d");
|
vfork_daemon_rexec(1, 0, argc, argv, "-d");
|
||||||
#else
|
#else
|
||||||
bb_xdaemon(1, 0);
|
xdaemon(1, 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
dnsentryinit(is_verbose());
|
dnsentryinit(is_verbose());
|
||||||
|
@ -83,7 +83,7 @@ static int fuser_parse_net_arg(const char *filename,
|
|||||||
if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0;
|
if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0;
|
||||||
sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto);
|
sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto);
|
||||||
if((access(path, R_OK)) != 0) return 0;
|
if((access(path, R_OK)) != 0) return 0;
|
||||||
*proto = bb_xstrdup(tproto);
|
*proto = xstrdup(tproto);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user