Change 20135 by [EMAIL PROTECTED] on 2003/07/11 00:03:33
Chicken out: the hash randomisation is not on by default.
We switch over to the explicit mode: in other words, if
the $ENV{PERL_HASH_SEED} is on, we randomise. Also, we
randomise only if PL_hash_seed_set is FALSE (this means
one can use PERL_HASH() before perl_run.) Also, since
now PERL_HASH_SEED is okay even under -T, all should be fine.
(Ha!)
Affected files ...
... //depot/perl/embed.fnc#98 edit
... //depot/perl/embed.h#411 edit
... //depot/perl/embedvar.h#177 edit
... //depot/perl/intrpvar.h#131 edit
... //depot/perl/perl.c#510 edit
... //depot/perl/perl.h#524 edit
... //depot/perl/perlapi.h#99 edit
... //depot/perl/pod/perldiag.pod#352 edit
... //depot/perl/pod/perlrun.pod#99 edit
... //depot/perl/proto.h#450 edit
... //depot/perl/util.c#395 edit
Differences ...
==== //depot/perl/embed.fnc#98 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#97~20116~ Thu Jul 10 10:28:00 2003
+++ perl/embed.fnc Thu Jul 10 17:03:33 2003
@@ -839,6 +839,7 @@
p |I32 |wait4pid |Pid_t pid|int* statusp|int flags
p |U32 |parse_unicode_opts|char **popt
p |U32 |seed
+p |UV |get_seed
p |void |report_evil_fh |GV *gv|IO *io|I32 op
pd |void |report_uninit
Afpd |void |warn |const char* pat|...
==== //depot/perl/embed.h#411 (text+w) ====
Index: perl/embed.h
--- perl/embed.h#410~20116~ Thu Jul 10 10:28:00 2003
+++ perl/embed.h Thu Jul 10 17:03:33 2003
@@ -1115,6 +1115,9 @@
#define seed Perl_seed
#endif
#ifdef PERL_CORE
+#define get_seed Perl_get_seed
+#endif
+#ifdef PERL_CORE
#define report_evil_fh Perl_report_evil_fh
#endif
#ifdef PERL_CORE
@@ -3601,6 +3604,9 @@
#endif
#ifdef PERL_CORE
#define seed() Perl_seed(aTHX)
+#endif
+#ifdef PERL_CORE
+#define get_seed() Perl_get_seed(aTHX)
#endif
#ifdef PERL_CORE
#define report_evil_fh(a,b,c) Perl_report_evil_fh(aTHX_ a,b,c)
==== //depot/perl/embedvar.h#177 (text+w) ====
Index: perl/embedvar.h
--- perl/embedvar.h#176~20125~ Thu Jul 10 12:28:48 2003
+++ perl/embedvar.h Thu Jul 10 17:03:33 2003
@@ -255,6 +255,7 @@
#define PL_glob_index (vTHX->Iglob_index)
#define PL_globalstash (vTHX->Iglobalstash)
#define PL_hash_seed (vTHX->Ihash_seed)
+#define PL_hash_seed_set (vTHX->Ihash_seed_set)
#define PL_he_arenaroot (vTHX->Ihe_arenaroot)
#define PL_he_root (vTHX->Ihe_root)
#define PL_hintgv (vTHX->Ihintgv)
@@ -558,6 +559,7 @@
#define PL_Iglob_index PL_glob_index
#define PL_Iglobalstash PL_globalstash
#define PL_Ihash_seed PL_hash_seed
+#define PL_Ihash_seed_set PL_hash_seed_set
#define PL_Ihe_arenaroot PL_he_arenaroot
#define PL_Ihe_root PL_he_root
#define PL_Ihintgv PL_hintgv
==== //depot/perl/intrpvar.h#131 (text) ====
Index: perl/intrpvar.h
--- perl/intrpvar.h#130~20114~ Thu Jul 10 08:06:41 2003
+++ perl/intrpvar.h Thu Jul 10 17:03:33 2003
@@ -525,6 +525,8 @@
PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */
+PERLVARI(Ihash_seed_set, bool, FALSE) /* Hash initialized? */
+
PERLVAR(IDBassertion, SV *)
PERLVARI(Icv_has_eval, I32, 0) /* PL_compcv includes an entereval or similar */
==== //depot/perl/perl.c#510 (text) ====
Index: perl/perl.c
--- perl/perl.c#509~20134~ Thu Jul 10 16:23:38 2003
+++ perl/perl.c Thu Jul 10 17:03:33 2003
@@ -900,31 +900,18 @@
#if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT)
/* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
* This MUST be done before any hash stores or fetches take place. */
+ if (!PL_hash_seed_set)
+ PL_hash_seed = get_seed();
{
- char *s = PerlEnv_getenv("PERL_HASH_SEED");
- if (s)
- while (isSPACE(*s)) s++;
- if (s && isDIGIT(*s))
- PL_hash_seed = (UV)Atoul(s);
-#ifndef USE_HASH_SEED_EXPLICIT
- else {
- /* Compute a random seed */
- (void)seedDrand01((Rand_seed_t)seed());
- PL_srand_called = TRUE;
- PL_hash_seed = (UV)(Drand01() * (NV)UV_MAX);
-#if RANDBITS < (UVSIZE * 8)
- /* Since there are not enough randbits to to reach all
- * the bits of a UV, the low bits might need extra
- * help. Sum in another random number that will
- * fill in the low bits. */
- PL_hash_seed +=
- (UV)(Drand01() * (NV)((1 << ((UVSIZE * 8 - RANDBITS))) - 1));
-#endif /* RANDBITS < (UVSIZE * 8) */
- }
-#endif /* #ifndef USE_HASH_SEED_EXPLICIT */
- if ((s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG")))
- PerlIO_printf(Perl_debug_log, "HASH_SEED = %"UVuf"\n",
- PL_hash_seed);
+ char *s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG");
+
+ if (s) {
+ int i = atoi(s);
+
+ if (i == 1)
+ PerlIO_printf(Perl_debug_log, "HASH_SEED = %"UVuf"\n",
+ PL_hash_seed);
+ }
}
#endif /* #if defined(USE_HASH_SEED) || defined(USE_HASH_SEED_EXPLICIT) */
==== //depot/perl/perl.h#524 (text) ====
Index: perl/perl.h
--- perl/perl.h#523~20117~ Thu Jul 10 10:33:53 2003
+++ perl/perl.h Thu Jul 10 17:03:33 2003
@@ -2258,7 +2258,7 @@
/* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0 */
#if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED) &&
!defined(USE_HASH_SEED_EXPLICIT)
-# define USE_HASH_SEED
+# define USE_HASH_SEED_EXPLICIT
#endif
#include "regexp.h"
==== //depot/perl/perlapi.h#99 (text+w) ====
Index: perl/perlapi.h
--- perl/perlapi.h#98~20117~ Thu Jul 10 10:33:53 2003
+++ perl/perlapi.h Thu Jul 10 17:03:33 2003
@@ -268,6 +268,8 @@
#define PL_globalstash (*Perl_Iglobalstash_ptr(aTHX))
#undef PL_hash_seed
#define PL_hash_seed (*Perl_Ihash_seed_ptr(aTHX))
+#undef PL_hash_seed_set
+#define PL_hash_seed_set (*Perl_Ihash_seed_set_ptr(aTHX))
#undef PL_he_arenaroot
#define PL_he_arenaroot (*Perl_Ihe_arenaroot_ptr(aTHX))
#undef PL_he_root
==== //depot/perl/pod/perlrun.pod#99 (text) ====
Index: perl/pod/perlrun.pod
--- perl/pod/perlrun.pod#98~20134~ Thu Jul 10 16:23:38 2003
+++ perl/pod/perlrun.pod Thu Jul 10 17:03:33 2003
@@ -1127,8 +1127,8 @@
=item PERL_HASH_SEED_DEBUG
-(Since Perl 5.8.1.) Set to (anything) to display (to STDERR)
-the value of the hash seed at the beginning of execution.
+(Since Perl 5.8.1.) Set to "1" to display (to STDERR) the value of
+the hash seed at the beginning of execution.
=item PERL_ROOT (specific to the VMS port)
==== //depot/perl/proto.h#450 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#449~20081~ Tue Jul 8 22:53:56 2003
+++ perl/proto.h Thu Jul 10 17:03:33 2003
@@ -799,6 +799,7 @@
PERL_CALLCONV I32 Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags);
PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ char **popt);
PERL_CALLCONV U32 Perl_seed(pTHX);
+PERL_CALLCONV UV Perl_get_seed(pTHX);
PERL_CALLCONV void Perl_report_evil_fh(pTHX_ GV *gv, IO *io, I32 op);
PERL_CALLCONV void Perl_report_uninit(pTHX);
PERL_CALLCONV void Perl_warn(pTHX_ const char* pat, ...)
==== //depot/perl/util.c#395 (text) ====
Index: perl/util.c
--- perl/util.c#394~20084~ Tue Jul 8 23:58:39 2003
+++ perl/util.c Thu Jul 10 17:03:33 2003
@@ -4377,3 +4377,35 @@
return u;
}
+UV
+Perl_get_seed(void)
+{
+ char *s = PerlEnv_getenv("PERL_HASH_SEED");
+ UV myseed = 0;
+
+ if (s)
+ while (isSPACE(*s)) s++;
+ if (s && isDIGIT(*s))
+ myseed = (UV)Atoul(s);
+ else
+#ifdef USE_HASH_SEED_EXPLICIT
+ if (s)
+#endif
+ {
+ /* Compute a random seed */
+ (void)seedDrand01((Rand_seed_t)seed());
+ PL_srand_called = TRUE;
+ myseed = (UV)(Drand01() * (NV)UV_MAX);
+#if RANDBITS < (UVSIZE * 8)
+ /* Since there are not enough randbits to to reach all
+ * the bits of a UV, the low bits might need extra
+ * help. Sum in another random number that will
+ * fill in the low bits. */
+ myseed +=
+ (UV)(Drand01() * (NV)((1 << ((UVSIZE * 8 - RANDBITS))) - 1));
+#endif /* RANDBITS < (UVSIZE * 8) */
+ }
+ PL_hash_seed_set = TRUE;
+
+ return myseed;
+}
End of Patch.