3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * '...we will have peace, when you and all your works have perished--and
13 * the works of your dark master to whom you would deliver us. You are a
14 * liar, Saruman, and a corrupter of men's hearts.' --Théoden
16 * [p.580 of _The Lord of the Rings_, III/x: "The Voice of Saruman"]
19 /* This file contains a few functions for handling data tainting in Perl
23 #define PERL_IN_TAINT_C
27 Perl_taint_proper(pTHX_ const char *f, const char *const s)
29 #if defined(HAS_SETEUID) && defined(DEBUGGING)
32 PERL_ARGS_ASSERT_TAINT_PROPER;
35 const Uid_t uid = PerlProc_getuid();
36 const Uid_t euid = PerlProc_geteuid();
38 DEBUG_u(PerlIO_printf(Perl_debug_log,
39 "%s %d %"Uid_t_f" %"Uid_t_f"\n",
40 s, TAINT_get, uid, euid));
49 if (PerlProc_getuid() != PerlProc_geteuid())
50 ug = " while running setuid";
51 else if (PerlProc_getgid() != PerlProc_getegid())
52 ug = " while running setgid";
53 else if (TAINT_WARN_get)
54 ug = " while running with -t switch";
56 ug = " while running with -T switch";
58 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
59 if (PL_unsafe || TAINT_WARN_get) {
60 Perl_ck_warner_d(aTHX_ packWARN(WARN_TAINT), f, s, ug);
63 Perl_croak(aTHX_ f, s, ug);
77 static const char* const misc_env[] = {
78 "IFS", /* most shells' inter-field separators */
79 "CDPATH", /* ksh dain bramage #1 */
80 "ENV", /* ksh dain bramage #2 */
81 "BASH_ENV", /* bash dain bramage -- I guess it's contagious */
83 "PERL5SHELL", /* used for system() on Windows */
88 /* Don't bother if there's no *ENV glob */
91 /* If there's no %ENV hash or if it's not magical, croak, because
92 * it probably doesn't reflect the actual environment */
93 if (!GvHV(PL_envgv) || !(SvRMAGICAL(GvHV(PL_envgv))
94 && mg_find((const SV *)GvHV(PL_envgv), PERL_MAGIC_env))) {
95 const bool was_tainted = TAINT_get;
96 const char * const name = GvENAME(PL_envgv);
98 if (strEQ(name,"ENV"))
100 taint_proper("%%ENV is aliased to %s%s", "another variable");
102 /* glob alias: report it in the error message */
103 taint_proper("%%ENV is aliased to %%%s%s", name);
104 /* this statement is reached under -t or -U */
105 TAINT_set(was_tainted);
106 #ifdef NO_TAINT_SUPPORT
107 PERL_UNUSED_VAR(was_tainted);
114 char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
115 STRLEN len = 8; /* strlen(name) */
119 len = my_sprintf(name,"DCL$PATH;%d", i);
120 svp = hv_fetch(GvHVn(PL_envgv), name, len, FALSE);
121 if (!svp || *svp == &PL_sv_undef)
123 if (SvTAINTED(*svp)) {
125 taint_proper("Insecure %s%s", "$ENV{DCL$PATH}");
127 if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
129 taint_proper("Insecure directory in %s%s", "$ENV{DCL$PATH}");
136 svp = hv_fetchs(GvHVn(PL_envgv),"PATH",FALSE);
138 if (SvTAINTED(*svp)) {
140 taint_proper("Insecure %s%s", "$ENV{PATH}");
142 if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
144 taint_proper("Insecure directory in %s%s", "$ENV{PATH}");
149 /* tainted $TERM is okay if it contains no metachars */
150 svp = hv_fetchs(GvHVn(PL_envgv),"TERM",FALSE);
151 if (svp && *svp && SvTAINTED(*svp)) {
153 const bool was_tainted = TAINT_get;
154 const char *t = SvPV_const(*svp, len);
155 const char * const e = t + len;
157 TAINT_set(was_tainted);
158 #ifdef NO_TAINT_SUPPORT
159 PERL_UNUSED_VAR(was_tainted);
161 if (t < e && isWORDCHAR(*t))
163 while (t < e && (isWORDCHAR(*t) || strchr("-_.+", *t)))
167 taint_proper("Insecure $ENV{%s}%s", "TERM");
172 for (e = misc_env; *e; e++) {
173 SV * const * const svp = hv_fetch(GvHVn(PL_envgv), *e, strlen(*e), FALSE);
174 if (svp && *svp != &PL_sv_undef && SvTAINTED(*svp)) {
176 taint_proper("Insecure $ENV{%s}%s", *e);
183 * c-indentation-style: bsd
185 * indent-tabs-mode: nil
188 * ex: set ts=8 sts=4 sw=4 et: