fix breakage found by randomconfig
This commit is contained in:
parent
211b59be43
commit
cc3f20b9bd
@ -293,10 +293,12 @@ config NOMMU
|
|||||||
|
|
||||||
Most people will leave this set to 'N'.
|
Most people will leave this set to 'N'.
|
||||||
|
|
||||||
|
# PIE can be made to work with BUILD_LIBBUSYBOX, but currently
|
||||||
|
# build system does not support that
|
||||||
config BUILD_LIBBUSYBOX
|
config BUILD_LIBBUSYBOX
|
||||||
bool "Build shared libbusybox"
|
bool "Build shared libbusybox"
|
||||||
default n
|
default n
|
||||||
depends on !FEATURE_PREFER_APPLETS
|
depends on !FEATURE_PREFER_APPLETS && !PIE
|
||||||
help
|
help
|
||||||
Build a shared library libbusybox.so.N.N.N which contains all
|
Build a shared library libbusybox.so.N.N.N which contains all
|
||||||
busybox code.
|
busybox code.
|
||||||
|
2
Makefile
2
Makefile
@ -698,6 +698,8 @@ ifeq ($(SKIP_STRIP),y)
|
|||||||
else
|
else
|
||||||
$(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \
|
$(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \
|
||||||
busybox_unstripped -o $@
|
busybox_unstripped -o $@
|
||||||
|
# strip is confused by PIE executable and does not set exec bits
|
||||||
|
$(Q)chmod a+x $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# The actual objects are generated when descending,
|
# The actual objects are generated when descending,
|
||||||
|
@ -171,8 +171,8 @@ enum {
|
|||||||
/* memset: we have to zero it out because of NOEXEC */
|
/* memset: we have to zero it out because of NOEXEC */
|
||||||
#define INIT_G() { \
|
#define INIT_G() { \
|
||||||
memset(&G, 0, sizeof(G)); \
|
memset(&G, 0, sizeof(G)); \
|
||||||
tabstops = COLUMN_GAP; \
|
USE_FEATURE_AUTOWIDTH(tabstops = COLUMN_GAP;) \
|
||||||
terminal_width = TERMINAL_WIDTH; \
|
USE_FEATURE_AUTOWIDTH(terminal_width = TERMINAL_WIDTH;) \
|
||||||
USE_FEATURE_LS_TIMESTAMPS(time(¤t_time_t);) \
|
USE_FEATURE_LS_TIMESTAMPS(time(¤t_time_t);) \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,14 +161,14 @@ struct globals {
|
|||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
|
||||||
/*static void print_only(const char *path, size_t dirlen, const char *entry)*/
|
#if ENABLE_FEATURE_DIFF_DIR
|
||||||
static void print_only(const char *path, const char *entry)
|
static void print_only(const char *path, const char *entry)
|
||||||
{
|
{
|
||||||
printf("Only in %s: %s\n", path, entry);
|
printf("Only in %s: %s\n", path, entry);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*static void print_status(int val, char *path1, char *path2, char *entry)*/
|
|
||||||
static void print_status(int val, char *_path1, char *_path2)
|
static void print_status(int val, char *_path1, char *_path2)
|
||||||
{
|
{
|
||||||
/*const char *const _entry = entry ? entry : "";*/
|
/*const char *const _entry = entry ? entry : "";*/
|
||||||
|
@ -119,9 +119,9 @@ lib-$(CONFIG_CHPASSWD) += pw_encrypt.o crypt_make_salt.o update_passwd.o
|
|||||||
lib-$(CONFIG_CRYPTPW) += pw_encrypt.o crypt_make_salt.o
|
lib-$(CONFIG_CRYPTPW) += pw_encrypt.o crypt_make_salt.o
|
||||||
lib-$(CONFIG_SULOGIN) += pw_encrypt.o
|
lib-$(CONFIG_SULOGIN) += pw_encrypt.o
|
||||||
lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
|
lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
|
||||||
lib-$(CONFIG_VLOCK) += correct_password.o
|
lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o
|
||||||
lib-$(CONFIG_SU) += correct_password.o
|
lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o
|
||||||
lib-$(CONFIG_LOGIN) += correct_password.o
|
lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o
|
||||||
lib-$(CONFIG_DF) += find_mount_point.o
|
lib-$(CONFIG_DF) += find_mount_point.o
|
||||||
lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
|
lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
|
||||||
lib-$(CONFIG_SELINUX) += selinux_common.o
|
lib-$(CONFIG_SELINUX) += selinux_common.o
|
||||||
|
@ -8983,7 +8983,7 @@ preadfd(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
nr = nonblock_safe_read(parsefile->fd, buf, BUFSIZ - 1);
|
nr = nonblock_safe_read(g_parsefile->fd, buf, BUFSIZ - 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
13
shell/hush.c
13
shell/hush.c
@ -399,11 +399,11 @@ struct globals {
|
|||||||
#if ENABLE_FEATURE_EDITING
|
#if ENABLE_FEATURE_EDITING
|
||||||
line_input_t *line_input_state;
|
line_input_t *line_input_state;
|
||||||
#endif
|
#endif
|
||||||
|
pid_t root_pid;
|
||||||
#if ENABLE_HUSH_JOB
|
#if ENABLE_HUSH_JOB
|
||||||
int run_list_level;
|
int run_list_level;
|
||||||
pid_t saved_task_pgrp;
|
pid_t saved_task_pgrp;
|
||||||
pid_t saved_tty_pgrp;
|
pid_t saved_tty_pgrp;
|
||||||
pid_t root_pid;
|
|
||||||
int last_jobid;
|
int last_jobid;
|
||||||
struct pipe *job_list;
|
struct pipe *job_list;
|
||||||
struct pipe *toplevel_list;
|
struct pipe *toplevel_list;
|
||||||
@ -446,11 +446,11 @@ enum { run_list_level = 0 };
|
|||||||
#if ENABLE_FEATURE_EDITING
|
#if ENABLE_FEATURE_EDITING
|
||||||
#define line_input_state (G.line_input_state)
|
#define line_input_state (G.line_input_state)
|
||||||
#endif
|
#endif
|
||||||
|
#define root_pid (G.root_pid )
|
||||||
#if ENABLE_HUSH_JOB
|
#if ENABLE_HUSH_JOB
|
||||||
#define run_list_level (G.run_list_level )
|
#define run_list_level (G.run_list_level )
|
||||||
#define saved_task_pgrp (G.saved_task_pgrp )
|
#define saved_task_pgrp (G.saved_task_pgrp )
|
||||||
#define saved_tty_pgrp (G.saved_tty_pgrp )
|
#define saved_tty_pgrp (G.saved_tty_pgrp )
|
||||||
#define root_pid (G.root_pid )
|
|
||||||
#define last_jobid (G.last_jobid )
|
#define last_jobid (G.last_jobid )
|
||||||
#define job_list (G.job_list )
|
#define job_list (G.job_list )
|
||||||
#define toplevel_list (G.toplevel_list )
|
#define toplevel_list (G.toplevel_list )
|
||||||
@ -1065,7 +1065,7 @@ static int o_save_ptr_helper(o_string *o, int n)
|
|||||||
debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", n, string_len, string_start);
|
debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", n, string_len, string_start);
|
||||||
o->has_empty_slot = 0;
|
o->has_empty_slot = 0;
|
||||||
}
|
}
|
||||||
list[n] = (char*)string_len;
|
list[n] = (char*)(ptrdiff_t)string_len;
|
||||||
return n + 1;
|
return n + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1075,7 +1075,7 @@ static int o_get_last_ptr(o_string *o, int n)
|
|||||||
char **list = (char**)o->data;
|
char **list = (char**)o->data;
|
||||||
int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
|
int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
|
||||||
|
|
||||||
return ((int)list[n-1]) + string_start;
|
return ((int)(ptrdiff_t)list[n-1]) + string_start;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* o_glob performs globbing on last list[], saving each result
|
/* o_glob performs globbing on last list[], saving each result
|
||||||
@ -1152,7 +1152,7 @@ static char **o_finalize_list(o_string *o, int n)
|
|||||||
list[--n] = NULL;
|
list[--n] = NULL;
|
||||||
while (n) {
|
while (n) {
|
||||||
n--;
|
n--;
|
||||||
list[n] = o->data + (int)list[n] + string_start;
|
list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
|
||||||
}
|
}
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
@ -2012,6 +2012,7 @@ static int run_list(struct pipe *pi)
|
|||||||
#else
|
#else
|
||||||
enum { if_code = 0, next_if_code = 0 };
|
enum { if_code = 0, next_if_code = 0 };
|
||||||
#endif
|
#endif
|
||||||
|
// TODO: rword and ->res_word are not needed if !LOOPS and !IF
|
||||||
reserved_style rword;
|
reserved_style rword;
|
||||||
reserved_style skip_more_for_this_rword = RES_XXXX;
|
reserved_style skip_more_for_this_rword = RES_XXXX;
|
||||||
|
|
||||||
@ -3009,7 +3010,7 @@ static void done_pipe(struct p_context *ctx, pipe_style type)
|
|||||||
* IOW: it is safe to do it unconditionally.
|
* IOW: it is safe to do it unconditionally.
|
||||||
* RES_IN case is for "for a in; do ..." (empty IN set)
|
* RES_IN case is for "for a in; do ..." (empty IN set)
|
||||||
* to work. */
|
* to work. */
|
||||||
if (not_null || ctx->pipe->res_word == RES_IN) {
|
if (not_null USE_HUSH_LOOPS(|| ctx->pipe->res_word == RES_IN)) {
|
||||||
struct pipe *new_p = new_pipe();
|
struct pipe *new_p = new_pipe();
|
||||||
ctx->pipe->next = new_p;
|
ctx->pipe->next = new_p;
|
||||||
ctx->pipe = new_p;
|
ctx->pipe = new_p;
|
||||||
|
Loading…
Reference in New Issue
Block a user