2 * "...we will have peace, when you and all your works have perished--and
3 * the works of your dark master to whom you would deliver us. You are a
4 * liar, Saruman, and a corrupter of men's hearts." --Theoden
8 #define PERL_IN_TAINT_C
12 Perl_taint_proper(pTHX_ const char *f, const char *s)
14 dTHR; /* just for taint */
18 DEBUG_u(PerlIO_printf(Perl_debug_log,
19 "%s %d %"Uid_t_f" %"Uid_t_f"\n", s, PL_tainted, PL_uid, PL_euid));
25 if (PL_euid != PL_uid)
26 ug = " while running setuid";
27 else if (PL_egid != PL_gid)
28 ug = " while running setgid";
30 ug = " while running with -T switch";
32 Perl_croak(aTHX_ f, s, ug);
33 else if (ckWARN(WARN_TAINT))
34 Perl_warner(aTHX_ WARN_TAINT, f, s, ug);
44 static char* misc_env[] = {
45 "IFS", /* most shells' inter-field separators */
46 "CDPATH", /* ksh dain bramage #1 */
47 "ENV", /* ksh dain bramage #2 */
48 "BASH_ENV", /* bash dain bramage -- I guess it's contagious */
58 char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
62 (void)sprintf(name,"DCL$PATH;%d", i);
63 svp = hv_fetch(GvHVn(PL_envgv), name, strlen(name), FALSE);
64 if (!svp || *svp == &PL_sv_undef)
66 if (SvTAINTED(*svp)) {
69 taint_proper("Insecure %s%s", "$ENV{DCL$PATH}");
71 if ((mg = mg_find(*svp, 'e')) && MgTAINTEDDIR(mg)) {
74 taint_proper("Insecure directory in %s%s", "$ENV{DCL$PATH}");
81 svp = hv_fetch(GvHVn(PL_envgv),"PATH",4,FALSE);
83 if (SvTAINTED(*svp)) {
86 taint_proper("Insecure %s%s", "$ENV{PATH}");
88 if ((mg = mg_find(*svp, 'e')) && MgTAINTEDDIR(mg)) {
91 taint_proper("Insecure directory in %s%s", "$ENV{PATH}");
96 /* tainted $TERM is okay if it contains no metachars */
97 svp = hv_fetch(GvHVn(PL_envgv),"TERM",4,FALSE);
98 if (svp && *svp && SvTAINTED(*svp)) {
99 dTHR; /* just for taint */
101 bool was_tainted = PL_tainted;
102 char *t = SvPV(*svp, n_a);
104 PL_tainted = was_tainted;
105 if (t < e && isALNUM(*t))
107 while (t < e && (isALNUM(*t) || *t == '-' || *t == ':'))
111 taint_proper("Insecure $ENV{%s}%s", "TERM");
116 for (e = misc_env; *e; e++) {
117 svp = hv_fetch(GvHVn(PL_envgv), *e, strlen(*e), FALSE);
118 if (svp && *svp != &PL_sv_undef && SvTAINTED(*svp)) {
119 dTHR; /* just for taint */
121 taint_proper("Insecure $ENV{%s}%s", *e);