This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
locale.c: Keep better track of C/non-C locale
[perl5.git] / taint.c
1 /*    taint.c
2  *
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
5  *
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.
8  *
9  */
10
11 /*
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
15  *
16  *     [p.580 of _The Lord of the Rings_, III/x: "The Voice of Saruman"]
17  */
18
19 /* This file contains a few functions for handling data tainting in Perl
20  */
21
22 #include "EXTERN.h"
23 #define PERL_IN_TAINT_C
24 #include "perl.h"
25
26 void
27 Perl_taint_proper(pTHX_ const char *f, const char *const s)
28 {
29 #if defined(HAS_SETEUID) && defined(DEBUGGING)
30     dVAR;
31
32     PERL_ARGS_ASSERT_TAINT_PROPER;
33
34     {
35         const Uid_t  uid = PerlProc_getuid();
36         const Uid_t euid = PerlProc_geteuid();
37
38 #if Uid_t_sign == 1 /* uid_t is unsigned. */
39         DEBUG_u(PerlIO_printf(Perl_debug_log,
40                               "%s %d %"UVuf" %"UVuf"\n",
41                               s, TAINT_get, (UV)uid, (UV)euid));
42 #else /* uid_t is signed (Uid_t_sign == -1), or don't know. */
43         DEBUG_u(PerlIO_printf(Perl_debug_log,
44                               "%s %d %"IVdf" %"IVdf"\n",
45                               s, TAINT_get, (IV)uid, (IV)euid));
46 #endif
47     }
48 #endif
49
50     if (TAINT_get) {
51         const char *ug;
52
53         if (!f)
54             f = PL_no_security;
55         if (PerlProc_getuid() != PerlProc_geteuid())
56             ug = " while running setuid";
57         else if (PerlProc_getgid() != PerlProc_getegid())
58             ug = " while running setgid";
59         else if (TAINT_WARN_get)
60             ug = " while running with -t switch";
61         else
62             ug = " while running with -T switch";
63
64         /* XXX because taint_proper adds extra format args, we can't
65          * get the caller to check properly; o we just silence the warning
66          * and hope the callers aren't naughty */
67         GCC_DIAG_IGNORE(-Wformat-nonliteral);
68         if (PL_unsafe || TAINT_WARN_get) {
69             Perl_ck_warner_d(aTHX_ packWARN(WARN_TAINT), f, s, ug);
70         }
71         else {
72             Perl_croak(aTHX_ f, s, ug);
73         }
74         GCC_DIAG_RESTORE;
75
76     }
77 }
78
79 void
80 Perl_taint_env(pTHX)
81 {
82     SV** svp;
83     MAGIC* mg;
84     const char* const *e;
85     static const char* const misc_env[] = {
86         "IFS",          /* most shells' inter-field separators */
87         "CDPATH",       /* ksh dain bramage #1 */
88         "ENV",          /* ksh dain bramage #2 */
89         "BASH_ENV",     /* bash dain bramage -- I guess it's contagious */
90 #ifdef WIN32
91         "PERL5SHELL",   /* used for system() on Windows */
92 #endif
93         NULL
94     };
95
96     /* Don't bother if there's no *ENV glob */
97     if (!PL_envgv)
98         return;
99     /* If there's no %ENV hash or if it's not magical, croak, because
100      * it probably doesn't reflect the actual environment */
101     if (!GvHV(PL_envgv) || !(SvRMAGICAL(GvHV(PL_envgv))
102             && mg_find((const SV *)GvHV(PL_envgv), PERL_MAGIC_env))) {
103         const bool was_tainted = TAINT_get;
104         const char * const name = GvENAME(PL_envgv);
105         TAINT;
106         if (strEQ(name,"ENV"))
107             /* hash alias */
108             taint_proper("%%ENV is aliased to %s%s", "another variable");
109         else
110             /* glob alias: report it in the error message */
111             taint_proper("%%ENV is aliased to %%%s%s", name);
112         /* this statement is reached under -t or -U */
113         TAINT_set(was_tainted);
114 #ifdef NO_TAINT_SUPPORT
115         PERL_UNUSED_VAR(was_tainted);
116 #endif
117     }
118
119 #ifdef VMS
120     {
121     int i = 0;
122     char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
123     STRLEN len = 8; /* strlen(name)  */
124
125     while (1) {
126         if (i)
127             len = my_sprintf(name,"DCL$PATH;%d", i);
128         svp = hv_fetch(GvHVn(PL_envgv), name, len, FALSE);
129         if (!svp || *svp == &PL_sv_undef)
130             break;
131         if (SvTAINTED(*svp)) {
132             TAINT;
133             taint_proper("Insecure %s%s", "$ENV{DCL$PATH}");
134         }
135         if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
136             TAINT;
137             taint_proper("Insecure directory in %s%s", "$ENV{DCL$PATH}");
138         }
139         i++;
140     }
141   }
142 #endif /* VMS */
143
144     svp = hv_fetchs(GvHVn(PL_envgv),"PATH",FALSE);
145     if (svp && *svp) {
146         if (SvTAINTED(*svp)) {
147             TAINT;
148             taint_proper("Insecure %s%s", "$ENV{PATH}");
149         }
150         if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
151             TAINT;
152             taint_proper("Insecure directory in %s%s", "$ENV{PATH}");
153         }
154     }
155
156 #ifndef VMS
157     /* tainted $TERM is okay if it contains no metachars */
158     svp = hv_fetchs(GvHVn(PL_envgv),"TERM",FALSE);
159     if (svp && *svp && SvTAINTED(*svp)) {
160         STRLEN len;
161         const bool was_tainted = TAINT_get;
162         const char *t = SvPV_const(*svp, len);
163         const char * const e = t + len;
164
165         TAINT_set(was_tainted);
166 #ifdef NO_TAINT_SUPPORT
167         PERL_UNUSED_VAR(was_tainted);
168 #endif
169         if (t < e && isWORDCHAR(*t))
170             t++;
171         while (t < e && (isWORDCHAR(*t) || strchr("-_.+", *t)))
172             t++;
173         if (t < e) {
174             TAINT;
175             taint_proper("Insecure $ENV{%s}%s", "TERM");
176         }
177     }
178 #endif /* !VMS */
179
180     for (e = misc_env; *e; e++) {
181         SV * const * const svp = hv_fetch(GvHVn(PL_envgv), *e, strlen(*e), FALSE);
182         if (svp && *svp != &PL_sv_undef && SvTAINTED(*svp)) {
183             TAINT;
184             taint_proper("Insecure $ENV{%s}%s", *e);
185         }
186     }
187 }
188
189 /*
190  * Local variables:
191  * c-indentation-style: bsd
192  * c-basic-offset: 4
193  * indent-tabs-mode: nil
194  * End:
195  *
196  * ex: set ts=8 sts=4 sw=4 et:
197  */