aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index d105029ff..21f3edcac 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -88,6 +88,8 @@
88#include "match.h" 88#include "match.h"
89#if ENABLE_HUSH_RANDOM_SUPPORT 89#if ENABLE_HUSH_RANDOM_SUPPORT
90# include "random.h" 90# include "random.h"
91#else
92# define CLEAR_RANDOM_T(rnd) ((void)0)
91#endif 93#endif
92#ifndef PIPE_BUF 94#ifndef PIPE_BUF
93# define PIPE_BUF 4096 /* amount of buffering in a pipe */ 95# define PIPE_BUF 4096 /* amount of buffering in a pipe */
@@ -1319,8 +1321,6 @@ static const char *get_local_var_value(const char *name)
1319 // bash compat: UID? EUID? 1321 // bash compat: UID? EUID?
1320#if ENABLE_HUSH_RANDOM_SUPPORT 1322#if ENABLE_HUSH_RANDOM_SUPPORT
1321 if (strcmp(name, "RANDOM") == 0) { 1323 if (strcmp(name, "RANDOM") == 0) {
1322 if (G.random_gen.galois_LFSR == 0)
1323 INIT_RANDOM_T(&G.random_gen, G.root_pid, monotonic_us());
1324 return utoa(next_random(&G.random_gen)); 1324 return utoa(next_random(&G.random_gen));
1325 } 1325 }
1326#endif 1326#endif
@@ -4000,6 +4000,7 @@ static NOINLINE int run_pipe(struct pipe *pi)
4000 if (!command->pid) { /* child */ 4000 if (!command->pid) { /* child */
4001#if ENABLE_HUSH_JOB 4001#if ENABLE_HUSH_JOB
4002 disable_restore_tty_pgrp_on_exit(); 4002 disable_restore_tty_pgrp_on_exit();
4003 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
4003 4004
4004 /* Every child adds itself to new process group 4005 /* Every child adds itself to new process group
4005 * with pgid == pid_of_first_child_in_pipe */ 4006 * with pgid == pid_of_first_child_in_pipe */
@@ -5207,6 +5208,7 @@ static FILE *generate_stream_from_string(const char *s)
5207 + (1 << SIGTTIN) 5208 + (1 << SIGTTIN)
5208 + (1 << SIGTTOU) 5209 + (1 << SIGTTOU)
5209 , SIG_IGN); 5210 , SIG_IGN);
5211 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5210 close(channel[0]); /* NB: close _first_, then move fd! */ 5212 close(channel[0]); /* NB: close _first_, then move fd! */
5211 xmove_fd(channel[1], 1); 5213 xmove_fd(channel[1], 1);
5212 /* Prevent it from trying to handle ctrl-z etc */ 5214 /* Prevent it from trying to handle ctrl-z etc */