This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Untie STDERR in IPC::Open3.
[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     dVAR;
83     SV** svp;
84     MAGIC* mg;
85     const char* const *e;
86     static const char* const misc_env[] = {
87         "IFS",          /* most shells' inter-field separators */
88         "CDPATH",       /* ksh dain bramage #1 */
89         "ENV",          /* ksh dain bramage #2 */
90         "BASH_ENV",     /* bash dain bramage -- I guess it's contagious */
91 #ifdef WIN32
92         "PERL5SHELL",   /* used for system() on Windows */
93 #endif
94         NULL
95     };
96
97     /* Don't bother if there's no *ENV glob */
98     if (!PL_envgv)
99         return;
100     /* If there's no %ENV hash or if it's not magical, croak, because
101      * it probably doesn't reflect the actual environment */
102     if (!GvHV(PL_envgv) || !(SvRMAGICAL(GvHV(PL_envgv))
103             && mg_find((const SV *)GvHV(PL_envgv), PERL_MAGIC_env))) {
104         const bool was_tainted = TAINT_get;
105         const char * const name = GvENAME(PL_envgv);
106         TAINT;
107         if (strEQ(name,"ENV"))
108             /* hash alias */
109             taint_proper("%%ENV is aliased to %s%s", "another variable");
110         else
111             /* glob alias: report it in the error message */
112             taint_proper("%%ENV is aliased to %%%s%s", name);
113         /* this statement is reached under -t or -U */
114         TAINT_set(was_tainted);
115 #ifdef NO_TAINT_SUPPORT
116         PERL_UNUSED_VAR(was_tainted);
117 #endif
118     }
119
120 #ifdef VMS
121     {
122     int i = 0;
123     char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
124     STRLEN len = 8; /* strlen(name)  */
125
126     while (1) {
127         if (i)
128             len = my_sprintf(name,"DCL$PATH;%d", i);
129         svp = hv_fetch(GvHVn(PL_envgv), name, len, FALSE);
130         if (!svp || *svp == &PL_sv_undef)
131             break;
132         if (SvTAINTED(*svp)) {
133             TAINT;
134             taint_proper("Insecure %s%s", "$ENV{DCL$PATH}");
135         }
136         if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
137             TAINT;
138             taint_proper("Insecure directory in %s%s", "$ENV{DCL$PATH}");
139         }
140         i++;
141     }
142   }
143 #endif /* VMS */
144
145     svp = hv_fetchs(GvHVn(PL_envgv),"PATH",FALSE);
146     if (svp && *svp) {
147         if (SvTAINTED(*svp)) {
148             TAINT;
149             taint_proper("Insecure %s%s", "$ENV{PATH}");
150         }
151         if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
152             TAINT;
153             taint_proper("Insecure directory in %s%s", "$ENV{PATH}");
154         }
155     }
156
157 #ifndef VMS
158     /* tainted $TERM is okay if it contains no metachars */
159     svp = hv_fetchs(GvHVn(PL_envgv),"TERM",FALSE);
160     if (svp && *svp && SvTAINTED(*svp)) {
161         STRLEN len;
162         const bool was_tainted = TAINT_get;
163         const char *t = SvPV_const(*svp, len);
164         const char * const e = t + len;
165
166         TAINT_set(was_tainted);
167 #ifdef NO_TAINT_SUPPORT
168         PERL_UNUSED_VAR(was_tainted);
169 #endif
170         if (t < e && isWORDCHAR(*t))
171             t++;
172         while (t < e && (isWORDCHAR(*t) || strchr("-_.+", *t)))
173             t++;
174         if (t < e) {
175             TAINT;
176             taint_proper("Insecure $ENV{%s}%s", "TERM");
177         }
178     }
179 #endif /* !VMS */
180
181     for (e = misc_env; *e; e++) {
182         SV * const * const svp = hv_fetch(GvHVn(PL_envgv), *e, strlen(*e), FALSE);
183         if (svp && *svp != &PL_sv_undef && SvTAINTED(*svp)) {
184             TAINT;
185             taint_proper("Insecure $ENV{%s}%s", *e);
186         }
187     }
188 }
189
190 /*
191  * Local variables:
192  * c-indentation-style: bsd
193  * c-basic-offset: 4
194  * indent-tabs-mode: nil
195  * End:
196  *
197  * ex: set ts=8 sts=4 sw=4 et:
198  */