This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Two more TODOs for those with C knowledge.
[perl5.git] / taint.c
... / ...
CommitLineData
1/* taint.c
2 *
3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 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." --Theoden
15 */
16
17/* This file contains a few functions for handling data tainting in Perl
18 */
19
20#include "EXTERN.h"
21#define PERL_IN_TAINT_C
22#include "perl.h"
23
24void
25Perl_taint_proper(pTHX_ const char *f, const char *s)
26{
27#if defined(HAS_SETEUID) && defined(DEBUGGING)
28 dVAR;
29# if Uid_t_size == 1
30 {
31 const UV uid = PL_uid;
32 const UV euid = PL_euid;
33
34 DEBUG_u(PerlIO_printf(Perl_debug_log,
35 "%s %d %"UVuf" %"UVuf"\n",
36 s, PL_tainted, uid, euid));
37 }
38# else
39 {
40 const IV uid = PL_uid;
41 const IV euid = PL_euid;
42
43 DEBUG_u(PerlIO_printf(Perl_debug_log,
44 "%s %d %"IVdf" %"IVdf"\n",
45 s, PL_tainted, uid, euid));
46 }
47# endif
48#endif
49
50 if (PL_tainted) {
51 const char *ug;
52
53 if (!f)
54 f = PL_no_security;
55 if (PL_euid != PL_uid)
56 ug = " while running setuid";
57 else if (PL_egid != PL_gid)
58 ug = " while running setgid";
59 else if (PL_taint_warn)
60 ug = " while running with -t switch";
61 else
62 ug = " while running with -T switch";
63 if (PL_unsafe || PL_taint_warn) {
64 if(ckWARN(WARN_TAINT))
65 Perl_warner(aTHX_ packWARN(WARN_TAINT), f, s, ug);
66 }
67 else {
68 Perl_croak(aTHX_ f, s, ug);
69 }
70 }
71}
72
73void
74Perl_taint_env(pTHX)
75{
76 dVAR;
77 SV** svp;
78 MAGIC* mg;
79 const char* const *e;
80 static const char* const misc_env[] = {
81 "IFS", /* most shells' inter-field separators */
82 "CDPATH", /* ksh dain bramage #1 */
83 "ENV", /* ksh dain bramage #2 */
84 "BASH_ENV", /* bash dain bramage -- I guess it's contagious */
85 NULL
86 };
87
88 /* Don't bother if there's no *ENV glob */
89 if (!PL_envgv)
90 return;
91 /* If there's no %ENV hash of 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((SV*)GvHV(PL_envgv), PERL_MAGIC_env))) {
95 const bool was_tainted = PL_tainted;
96 const char * const name = GvENAME(PL_envgv);
97 PL_tainted = TRUE;
98 if (strEQ(name,"ENV"))
99 /* hash alias */
100 taint_proper("%%ENV is aliased to %s%s", "another variable");
101 else
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 PL_tainted = was_tainted;
106 }
107
108#ifdef VMS
109 {
110 int i = 0;
111 char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
112 STRLEN len = 8; /* strlen(name) */
113
114 while (1) {
115 if (i)
116 len = my_sprintf(name,"DCL$PATH;%d", i);
117 svp = hv_fetch(GvHVn(PL_envgv), name, len, FALSE);
118 if (!svp || *svp == &PL_sv_undef)
119 break;
120 if (SvTAINTED(*svp)) {
121 TAINT;
122 taint_proper("Insecure %s%s", "$ENV{DCL$PATH}");
123 }
124 if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
125 TAINT;
126 taint_proper("Insecure directory in %s%s", "$ENV{DCL$PATH}");
127 }
128 i++;
129 }
130 }
131#endif /* VMS */
132
133 svp = hv_fetchs(GvHVn(PL_envgv),"PATH",FALSE);
134 if (svp && *svp) {
135 if (SvTAINTED(*svp)) {
136 TAINT;
137 taint_proper("Insecure %s%s", "$ENV{PATH}");
138 }
139 if ((mg = mg_find(*svp, PERL_MAGIC_envelem)) && MgTAINTEDDIR(mg)) {
140 TAINT;
141 taint_proper("Insecure directory in %s%s", "$ENV{PATH}");
142 }
143 }
144
145#ifndef VMS
146 /* tainted $TERM is okay if it contains no metachars */
147 svp = hv_fetchs(GvHVn(PL_envgv),"TERM",FALSE);
148 if (svp && *svp && SvTAINTED(*svp)) {
149 STRLEN len;
150 const bool was_tainted = PL_tainted;
151 const char *t = SvPV_const(*svp, len);
152 const char * const e = t + len;
153 PL_tainted = was_tainted;
154 if (t < e && isALNUM(*t))
155 t++;
156 while (t < e && (isALNUM(*t) || strchr("-_.+", *t)))
157 t++;
158 if (t < e) {
159 TAINT;
160 taint_proper("Insecure $ENV{%s}%s", "TERM");
161 }
162 }
163#endif /* !VMS */
164
165 for (e = misc_env; *e; e++) {
166 SV * const * const svp = hv_fetch(GvHVn(PL_envgv), *e, strlen(*e), FALSE);
167 if (svp && *svp != &PL_sv_undef && SvTAINTED(*svp)) {
168 TAINT;
169 taint_proper("Insecure $ENV{%s}%s", *e);
170 }
171 }
172}
173
174/*
175 * Local variables:
176 * c-indentation-style: bsd
177 * c-basic-offset: 4
178 * indent-tabs-mode: t
179 * End:
180 *
181 * ex: set ts=8 sts=4 sw=4 noet:
182 */