This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
integrate changes#2978,2979 from mainline
[perl5.git] / perl.c
CommitLineData
a0d0e21e
LW
1/* perl.c
2 *
a411490c 3 * Copyright (c) 1987-1998 Larry Wall
a687059c 4 *
352d5a3a
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
a687059c 7 *
8d063cd8
LW
8 */
9
a0d0e21e
LW
10/*
11 * "A ship then new they built for him/of mithril and of elven glass" --Bilbo
12 */
45d8adaa 13
378cc40b
LW
14#include "EXTERN.h"
15#include "perl.h"
a687059c 16#include "patchlevel.h"
378cc40b 17
df5cef82 18/* XXX If this causes problems, set i_unistd=undef in the hint file. */
a0d0e21e
LW
19#ifdef I_UNISTD
20#include <unistd.h>
21#endif
a0d0e21e 22
54310121 23#if !defined(STANDARD_C) && !defined(HAS_GETENV_PROTOTYPE)
24char *getenv _((char *)); /* Usually in <stdlib.h> */
25#endif
26
51fa4eea
JH
27#ifdef I_FCNTL
28#include <fcntl.h>
29#endif
30#ifdef I_SYS_FILE
31#include <sys/file.h>
32#endif
33
a687059c
LW
34#ifdef IAMSUID
35#ifndef DOSUID
36#define DOSUID
37#endif
38#endif
378cc40b 39
a687059c
LW
40#ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
41#ifdef DOSUID
42#undef DOSUID
43#endif
44#endif
8d063cd8 45
873ef191
GS
46#ifdef PERL_OBJECT
47static I32 read_e_script _((CPerlObj* pPerl, int idx, SV *buf_sv, int maxlen));
48#else
a0d0e21e 49static void find_beginning _((void));
bbce6d69 50static void forbid_setid _((char *));
774d564b 51static void incpush _((char *, int));
cb68f92d 52static void init_interp _((void));
748a9306 53static void init_ids _((void));
a0d0e21e
LW
54static void init_debugger _((void));
55static void init_lexer _((void));
56static void init_main_stash _((void));
199100c8 57#ifdef USE_THREADS
52e1cb5e 58static struct perl_thread * init_main_thread _((void));
199100c8 59#endif /* USE_THREADS */
a0d0e21e
LW
60static void init_perllib _((void));
61static void init_postdump_symbols _((int, char **, char **));
62static void init_predump_symbols _((void));
f86702cc 63static void my_exit_jump _((void)) __attribute__((noreturn));
6e72f9df 64static void nuke_stacks _((void));
01f988be 65static void open_script _((char *, bool, SV *, int *fd));
ab821d7f 66static void usage _((char *));
465fbd0a
JH
67#ifdef IAMSUID
68static int fd_on_nosuid_fs _((int));
69#endif
01f988be 70static void validate_suid _((char *, char*, int));
afe37c7d 71static I32 read_e_script _((int idx, SV *buf_sv, int maxlen));
76e3520e 72#endif
96436eeb 73
01f988be
GS
74#ifdef PERL_OBJECT
75CPerlObj* perl_alloc(IPerlMem* ipM, IPerlEnv* ipE, IPerlStdIO* ipStd,
76 IPerlLIO* ipLIO, IPerlDir* ipD, IPerlSock* ipS, IPerlProc* ipP)
77{
78 CPerlObj* pPerl = new(ipM) CPerlObj(ipM, ipE, ipStd, ipLIO, ipD, ipS, ipP);
79 if(pPerl != NULL)
80 pPerl->Init();
79072805 81
01f988be
GS
82 return pPerl;
83}
84#else
93a17b20 85PerlInterpreter *
8ac85365 86perl_alloc(void)
79072805 87{
93a17b20 88 PerlInterpreter *sv_interp;
79072805 89
3280af22 90 PL_curinterp = 0;
93a17b20 91 New(53, sv_interp, 1, PerlInterpreter);
79072805
LW
92 return sv_interp;
93}
01f988be 94#endif /* PERL_OBJECT */
79072805
LW
95
96void
76e3520e
GS
97#ifdef PERL_OBJECT
98CPerlObj::perl_construct(void)
99#else
8ac85365 100perl_construct(register PerlInterpreter *sv_interp)
76e3520e 101#endif
79072805 102{
a863c7d1
MB
103#ifdef USE_THREADS
104 int i;
105#ifndef FAKE_THREADS
52e1cb5e 106 struct perl_thread *thr;
a863c7d1
MB
107#endif /* FAKE_THREADS */
108#endif /* USE_THREADS */
11343788 109
76e3520e 110#ifndef PERL_OBJECT
3280af22 111 if (!(PL_curinterp = sv_interp))
79072805 112 return;
76e3520e 113#endif
79072805 114
8990e307 115#ifdef MULTIPLICITY
8f872242 116 ++PL_ninterps;
93a17b20 117 Zero(sv_interp, 1, PerlInterpreter);
8990e307 118#endif
79072805 119
33f46ff6 120 /* Init the real globals (and main thread)? */
3280af22 121 if (!PL_linestr) {
11343788 122#ifdef USE_THREADS
8023c3ce 123
33f46ff6 124 INIT_THREADS;
d55594ae
GS
125#ifdef ALLOC_THREAD_KEY
126 ALLOC_THREAD_KEY;
127#else
533c011a 128 if (pthread_key_create(&PL_thr_key, 0))
a863c7d1 129 croak("panic: pthread_key_create");
d55594ae 130#endif
533c011a 131 MUTEX_INIT(&PL_sv_mutex);
ea049af1 132 MUTEX_INIT(&PL_cred_mutex);
a863c7d1
MB
133 /*
134 * Safe to use basic SV functions from now on (though
135 * not things like mortals or tainting yet).
136 */
533c011a
NIS
137 MUTEX_INIT(&PL_eval_mutex);
138 COND_INIT(&PL_eval_cond);
139 MUTEX_INIT(&PL_threads_mutex);
140 COND_INIT(&PL_nthreads_cond);
dce16143 141#ifdef EMULATE_ATOMIC_REFCOUNTS
533c011a 142 MUTEX_INIT(&PL_svref_mutex);
dce16143 143#endif /* EMULATE_ATOMIC_REFCOUNTS */
a863c7d1 144
199100c8 145 thr = init_main_thread();
11343788
MB
146#endif /* USE_THREADS */
147
3280af22
NIS
148 PL_linestr = NEWSV(65,79);
149 sv_upgrade(PL_linestr,SVt_PVIV);
79072805 150
3280af22 151 if (!SvREADONLY(&PL_sv_undef)) {
d689ffdd
JP
152 /* set read-only and try to insure than we wont see REFCNT==0
153 very often */
154
3280af22
NIS
155 SvREADONLY_on(&PL_sv_undef);
156 SvREFCNT(&PL_sv_undef) = (~(U32)0)/2;
79072805 157
3280af22
NIS
158 sv_setpv(&PL_sv_no,PL_No);
159 SvNV(&PL_sv_no);
160 SvREADONLY_on(&PL_sv_no);
161 SvREFCNT(&PL_sv_no) = (~(U32)0)/2;
79072805 162
3280af22
NIS
163 sv_setpv(&PL_sv_yes,PL_Yes);
164 SvNV(&PL_sv_yes);
165 SvREADONLY_on(&PL_sv_yes);
166 SvREFCNT(&PL_sv_yes) = (~(U32)0)/2;
6e72f9df 167 }
79072805 168
76e3520e
GS
169#ifdef PERL_OBJECT
170 /* TODO: */
6b88bc9c 171 /* PL_sighandlerp = sighandler; */
76e3520e 172#else
3280af22 173 PL_sighandlerp = sighandler;
76e3520e 174#endif
3280af22 175 PL_pidstatus = newHV();
44a8e56a 176
79072805
LW
177#ifdef MSDOS
178 /*
179 * There is no way we can refer to them from Perl so close them to save
180 * space. The other alternative would be to provide STDAUX and STDPRN
181 * filehandles.
182 */
183 (void)fclose(stdaux);
184 (void)fclose(stdprn);
185#endif
186 }
187
3280af22
NIS
188 PL_nrs = newSVpv("\n", 1);
189 PL_rs = SvREFCNT_inc(PL_nrs);
dc92893f 190
1a441de9 191 init_stacks(ARGS);
8990e307 192#ifdef MULTIPLICITY
cb68f92d 193 init_interp();
8f872242 194 PL_perl_destruct_level = 1;
8ebc5c01 195#else
3280af22 196 if (PL_perl_destruct_level > 0)
cb68f92d 197 init_interp();
79072805
LW
198#endif
199
748a9306 200 init_ids();
3280af22 201 PL_lex_state = LEX_NOTPARSING;
a5f75d66 202
3280af22
NIS
203 PL_start_env.je_prev = NULL;
204 PL_start_env.je_ret = -1;
205 PL_start_env.je_mustcatch = TRUE;
206 PL_top_env = &PL_start_env;
f86702cc 207 STATUS_ALL_SUCCESS;
208
36477c24 209 SET_NUMERIC_STANDARD();
a5f75d66 210#if defined(SUBVERSION) && SUBVERSION > 0
3280af22 211 sprintf(PL_patchlevel, "%7.5f", (double) 5
e2666263 212 + ((double) PATCHLEVEL / (double) 1000)
213 + ((double) SUBVERSION / (double) 100000));
a5f75d66 214#else
6b88bc9c 215 sprintf(PL_patchlevel, "%5.3f", (double) 5 +
e2666263 216 ((double) PATCHLEVEL / (double) 1000));
a5f75d66 217#endif
79072805 218
ab821d7f 219#if defined(LOCAL_PATCH_COUNT)
3280af22 220 PL_localpatches = local_patches; /* For possible -v */
ab821d7f 221#endif
222
4b556e6c 223 PerlIO_init(); /* Hook to IO system */
760ac839 224
3280af22
NIS
225 PL_fdpid = newAV(); /* for remembering popen pids by fd */
226 PL_modglobal = newHV(); /* pointers to per-interpreter module globals */
8990e307 227
11343788 228 DEBUG( {
3280af22
NIS
229 New(51,PL_debname,128,char);
230 New(52,PL_debdelim,128,char);
11343788
MB
231 } )
232
8990e307 233 ENTER;
79072805
LW
234}
235
236void
76e3520e
GS
237#ifdef PERL_OBJECT
238CPerlObj::perl_destruct(void)
239#else
8ac85365 240perl_destruct(register PerlInterpreter *sv_interp)
76e3520e 241#endif
79072805 242{
11343788 243 dTHR;
748a9306 244 int destruct_level; /* 0=none, 1=full, 2=full with checks */
8990e307 245 I32 last_sv_count;
a0d0e21e 246 HV *hv;
1f2bfc8a 247#ifdef USE_THREADS
33f46ff6 248 Thread t;
1f2bfc8a 249#endif /* USE_THREADS */
8990e307 250
76e3520e 251#ifndef PERL_OBJECT
3280af22 252 if (!(PL_curinterp = sv_interp))
79072805 253 return;
76e3520e 254#endif
748a9306 255
11343788 256#ifdef USE_THREADS
0f15f207 257#ifndef FAKE_THREADS
8023c3ce
MB
258 /* Pass 1 on any remaining threads: detach joinables, join zombies */
259 retry_cleanup:
533c011a 260 MUTEX_LOCK(&PL_threads_mutex);
8b73bbec 261 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1 262 "perl_destruct: waiting for %d threads...\n",
533c011a 263 PL_nthreads - 1));
33f46ff6 264 for (t = thr->next; t != thr; t = t->next) {
605e5515
MB
265 MUTEX_LOCK(&t->mutex);
266 switch (ThrSTATE(t)) {
267 AV *av;
c7848ba1 268 case THRf_ZOMBIE:
8b73bbec 269 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1 270 "perl_destruct: joining zombie %p\n", t));
605e5515
MB
271 ThrSETSTATE(t, THRf_DEAD);
272 MUTEX_UNLOCK(&t->mutex);
533c011a 273 PL_nthreads--;
8023c3ce
MB
274 /*
275 * The SvREFCNT_dec below may take a long time (e.g. av
276 * may contain an object scalar whose destructor gets
277 * called) so we have to unlock threads_mutex and start
278 * all over again.
279 */
533c011a 280 MUTEX_UNLOCK(&PL_threads_mutex);
ea0efc06 281 JOIN(t, &av);
605e5515 282 SvREFCNT_dec((SV*)av);
8b73bbec 283 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1 284 "perl_destruct: joined zombie %p OK\n", t));
8023c3ce 285 goto retry_cleanup;
c7848ba1 286 case THRf_R_JOINABLE:
8b73bbec 287 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1
MB
288 "perl_destruct: detaching thread %p\n", t));
289 ThrSETSTATE(t, THRf_R_DETACHED);
290 /*
291 * We unlock threads_mutex and t->mutex in the opposite order
292 * from which we locked them just so that DETACH won't
293 * deadlock if it panics. It's only a breach of good style
294 * not a bug since they are unlocks not locks.
295 */
533c011a 296 MUTEX_UNLOCK(&PL_threads_mutex);
c7848ba1
MB
297 DETACH(t);
298 MUTEX_UNLOCK(&t->mutex);
8023c3ce 299 goto retry_cleanup;
c7848ba1 300 default:
8b73bbec 301 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1
MB
302 "perl_destruct: ignoring %p (state %u)\n",
303 t, ThrSTATE(t)));
304 MUTEX_UNLOCK(&t->mutex);
c7848ba1 305 /* fall through and out */
33f46ff6
MB
306 }
307 }
8023c3ce
MB
308 /* We leave the above "Pass 1" loop with threads_mutex still locked */
309
310 /* Pass 2 on remaining threads: wait for the thread count to drop to one */
533c011a 311 while (PL_nthreads > 1)
11343788 312 {
8b73bbec 313 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
c7848ba1 314 "perl_destruct: final wait for %d threads\n",
533c011a
NIS
315 PL_nthreads - 1));
316 COND_WAIT(&PL_nthreads_cond, &PL_threads_mutex);
11343788
MB
317 }
318 /* At this point, we're the last thread */
533c011a 319 MUTEX_UNLOCK(&PL_threads_mutex);
8b73bbec 320 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "perl_destruct: armageddon has arrived\n"));
533c011a
NIS
321 MUTEX_DESTROY(&PL_threads_mutex);
322 COND_DESTROY(&PL_nthreads_cond);
0f15f207 323#endif /* !defined(FAKE_THREADS) */
11343788
MB
324#endif /* USE_THREADS */
325
3280af22 326 destruct_level = PL_perl_destruct_level;
4633a7c4
LW
327#ifdef DEBUGGING
328 {
329 char *s;
76e3520e 330 if (s = PerlEnv_getenv("PERL_DESTRUCT_LEVEL")) {
5f05dabc 331 int i = atoi(s);
332 if (destruct_level < i)
333 destruct_level = i;
334 }
4633a7c4
LW
335 }
336#endif
337
8990e307 338 LEAVE;
a0d0e21e
LW
339 FREETMPS;
340
cb68f92d 341#ifdef MULTIPLICITY
8f872242 342 --PL_ninterps;
cb68f92d
GS
343#endif
344
ff0cee69 345 /* We must account for everything. */
346
347 /* Destroy the main CV and syntax tree */
3280af22
NIS
348 if (PL_main_root) {
349 PL_curpad = AvARRAY(PL_comppad);
350 op_free(PL_main_root);
351 PL_main_root = Nullop;
a0d0e21e 352 }
3280af22
NIS
353 PL_curcop = &PL_compiling;
354 PL_main_start = Nullop;
355 SvREFCNT_dec(PL_main_cv);
356 PL_main_cv = Nullcv;
ff0cee69 357
3280af22 358 if (PL_sv_objcount) {
a0d0e21e
LW
359 /*
360 * Try to destruct global references. We do this first so that the
361 * destructors and destructees still exist. Some sv's might remain.
362 * Non-referenced objects are on their own.
363 */
364
3280af22 365 PL_dirty = TRUE;
a0d0e21e 366 sv_clean_objs();
8990e307
LW
367 }
368
5cd24f17 369 /* unhook hooks which will soon be, or use, destroyed data */
3280af22
NIS
370 SvREFCNT_dec(PL_warnhook);
371 PL_warnhook = Nullsv;
372 SvREFCNT_dec(PL_diehook);
373 PL_diehook = Nullsv;
374 SvREFCNT_dec(PL_parsehook);
375 PL_parsehook = Nullsv;
5cd24f17 376
4b556e6c 377 /* call exit list functions */
3280af22
NIS
378 while (PL_exitlistlen-- > 0)
379 PL_exitlist[PL_exitlistlen].fn(PERL_OBJECT_THIS_ PL_exitlist[PL_exitlistlen].ptr);
4b556e6c 380
3280af22 381 Safefree(PL_exitlist);
4b556e6c 382
a0d0e21e 383 if (destruct_level == 0){
8990e307 384
a0d0e21e
LW
385 DEBUG_P(debprofdump());
386
387 /* The exit() function will do everything that needs doing. */
388 return;
389 }
5dd60ef7 390
5f05dabc 391 /* loosen bonds of global variables */
392
3280af22
NIS
393 if(PL_rsfp) {
394 (void)PerlIO_close(PL_rsfp);
395 PL_rsfp = Nullfp;
8ebc5c01 396 }
397
398 /* Filters for program text */
3280af22
NIS
399 SvREFCNT_dec(PL_rsfp_filters);
400 PL_rsfp_filters = Nullav;
8ebc5c01 401
402 /* switches */
3280af22
NIS
403 PL_preprocess = FALSE;
404 PL_minus_n = FALSE;
405 PL_minus_p = FALSE;
406 PL_minus_l = FALSE;
407 PL_minus_a = FALSE;
408 PL_minus_F = FALSE;
409 PL_doswitches = FALSE;
410 PL_dowarn = FALSE;
411 PL_doextract = FALSE;
412 PL_sawampersand = FALSE; /* must save all match strings */
413 PL_sawstudy = FALSE; /* do fbm_instr on all strings */
414 PL_sawvec = FALSE;
415 PL_unsafe = FALSE;
416
417 Safefree(PL_inplace);
418 PL_inplace = Nullch;
419
420 if (PL_e_script) {
421 SvREFCNT_dec(PL_e_script);
422 PL_e_script = Nullsv;
8ebc5c01 423 }
424
425 /* magical thingies */
426
3280af22
NIS
427 Safefree(PL_ofs); /* $, */
428 PL_ofs = Nullch;
5f05dabc 429
3280af22
NIS
430 Safefree(PL_ors); /* $\ */
431 PL_ors = Nullch;
8ebc5c01 432
3280af22
NIS
433 SvREFCNT_dec(PL_rs); /* $/ */
434 PL_rs = Nullsv;
dc92893f 435
3280af22
NIS
436 SvREFCNT_dec(PL_nrs); /* $/ helper */
437 PL_nrs = Nullsv;
5f05dabc 438
3280af22 439 PL_multiline = 0; /* $* */
5f05dabc 440
3280af22
NIS
441 SvREFCNT_dec(PL_statname);
442 PL_statname = Nullsv;
443 PL_statgv = Nullgv;
5f05dabc 444
8ebc5c01 445 /* defgv, aka *_ should be taken care of elsewhere */
446
8ebc5c01 447 /* clean up after study() */
3280af22
NIS
448 SvREFCNT_dec(PL_lastscream);
449 PL_lastscream = Nullsv;
450 Safefree(PL_screamfirst);
451 PL_screamfirst = 0;
452 Safefree(PL_screamnext);
453 PL_screamnext = 0;
8ebc5c01 454
455 /* startup and shutdown function lists */
3280af22
NIS
456 SvREFCNT_dec(PL_beginav);
457 SvREFCNT_dec(PL_endav);
458 SvREFCNT_dec(PL_initav);
459 PL_beginav = Nullav;
460 PL_endav = Nullav;
461 PL_initav = Nullav;
5618dfe8 462
8ebc5c01 463 /* shortcuts just get cleared */
3280af22
NIS
464 PL_envgv = Nullgv;
465 PL_siggv = Nullgv;
466 PL_incgv = Nullgv;
467 PL_hintgv = Nullgv;
468 PL_errgv = Nullgv;
469 PL_argvgv = Nullgv;
470 PL_argvoutgv = Nullgv;
471 PL_stdingv = Nullgv;
472 PL_last_in_gv = Nullgv;
473 PL_replgv = Nullgv;
8ebc5c01 474
475 /* reset so print() ends up where we expect */
476 setdefout(Nullgv);
477
a0d0e21e 478 /* Prepare to destruct main symbol table. */
5f05dabc 479
3280af22
NIS
480 hv = PL_defstash;
481 PL_defstash = 0;
a0d0e21e
LW
482 SvREFCNT_dec(hv);
483
484 FREETMPS;
485 if (destruct_level >= 2) {
3280af22 486 if (PL_scopestack_ix != 0)
ff0cee69 487 warn("Unbalanced scopes: %ld more ENTERs than LEAVEs\n",
3280af22
NIS
488 (long)PL_scopestack_ix);
489 if (PL_savestack_ix != 0)
ff0cee69 490 warn("Unbalanced saves: %ld more saves than restores\n",
3280af22
NIS
491 (long)PL_savestack_ix);
492 if (PL_tmps_floor != -1)
ff0cee69 493 warn("Unbalanced tmps: %ld more allocs than frees\n",
3280af22 494 (long)PL_tmps_floor + 1);
a0d0e21e 495 if (cxstack_ix != -1)
ff0cee69 496 warn("Unbalanced context: %ld more PUSHes than POPs\n",
497 (long)cxstack_ix + 1);
a0d0e21e 498 }
8990e307
LW
499
500 /* Now absolutely destruct everything, somehow or other, loops or no. */
8990e307 501 last_sv_count = 0;
3280af22
NIS
502 SvFLAGS(PL_strtab) |= SVTYPEMASK; /* don't clean out strtab now */
503 while (PL_sv_count != 0 && PL_sv_count != last_sv_count) {
504 last_sv_count = PL_sv_count;
8990e307
LW
505 sv_clean_all();
506 }
3280af22
NIS
507 SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
508 SvFLAGS(PL_strtab) |= SVt_PVHV;
6e72f9df 509
510 /* Destruct the global string table. */
511 {
512 /* Yell and reset the HeVAL() slots that are still holding refcounts,
513 * so that sv_free() won't fail on them.
514 */
515 I32 riter;
516 I32 max;
517 HE *hent;
518 HE **array;
519
520 riter = 0;
3280af22
NIS
521 max = HvMAX(PL_strtab);
522 array = HvARRAY(PL_strtab);
6e72f9df 523 hent = array[0];
524 for (;;) {
525 if (hent) {
526 warn("Unbalanced string table refcount: (%d) for \"%s\"",
527 HeVAL(hent) - Nullsv, HeKEY(hent));
528 HeVAL(hent) = Nullsv;
529 hent = HeNEXT(hent);
530 }
531 if (!hent) {
532 if (++riter > max)
533 break;
534 hent = array[riter];
535 }
536 }
537 }
3280af22 538 SvREFCNT_dec(PL_strtab);
6e72f9df 539
3280af22
NIS
540 if (PL_sv_count != 0)
541 warn("Scalars leaked: %ld\n", (long)PL_sv_count);
6e72f9df 542
4633a7c4 543 sv_free_arenas();
44a8e56a 544
545 /* No SVs have survived, need to clean out */
3280af22
NIS
546 PL_linestr = NULL;
547 PL_pidstatus = Nullhv;
548 Safefree(PL_origfilename);
549 Safefree(PL_archpat_auto);
550 Safefree(PL_reg_start_tmp);
551 Safefree(HeKEY_hek(&PL_hv_fetch_ent_mh));
552 Safefree(PL_op_mask);
6e72f9df 553 nuke_stacks();
3280af22 554 PL_hints = 0; /* Reset hints. Should hints be per-interpreter ? */
a0d0e21e
LW
555
556 DEBUG_P(debprofdump());
11343788 557#ifdef USE_THREADS
31e3abc2 558 MUTEX_DESTROY(&PL_strtab_mutex);
533c011a 559 MUTEX_DESTROY(&PL_sv_mutex);
ea049af1 560 MUTEX_DESTROY(&PL_cred_mutex);
533c011a
NIS
561 MUTEX_DESTROY(&PL_eval_mutex);
562 COND_DESTROY(&PL_eval_cond);
fc36a67e 563
8023c3ce 564 /* As the penultimate thing, free the non-arena SV for thrsv */
533c011a
NIS
565 Safefree(SvPVX(PL_thrsv));
566 Safefree(SvANY(PL_thrsv));
567 Safefree(PL_thrsv);
568 PL_thrsv = Nullsv;
8023c3ce
MB
569#endif /* USE_THREADS */
570
fc36a67e 571 /* As the absolutely last thing, free the non-arena SV for mess() */
572
3280af22 573 if (PL_mess_sv) {
9c63abab
GS
574 /* it could have accumulated taint magic */
575 if (SvTYPE(PL_mess_sv) >= SVt_PVMG) {
576 MAGIC* mg;
577 MAGIC* moremagic;
578 for (mg = SvMAGIC(PL_mess_sv); mg; mg = moremagic) {
579 moremagic = mg->mg_moremagic;
580 if (mg->mg_ptr && mg->mg_type != 'g' && mg->mg_len >= 0)
581 Safefree(mg->mg_ptr);
582 Safefree(mg);
583 }
584 }
fc36a67e 585 /* we know that type >= SVt_PV */
3280af22
NIS
586 SvOOK_off(PL_mess_sv);
587 Safefree(SvPVX(PL_mess_sv));
588 Safefree(SvANY(PL_mess_sv));
589 Safefree(PL_mess_sv);
590 PL_mess_sv = Nullsv;
fc36a67e 591 }
79072805
LW
592}
593
594void
76e3520e
GS
595#ifdef PERL_OBJECT
596CPerlObj::perl_free(void)
597#else
8ac85365 598perl_free(PerlInterpreter *sv_interp)
76e3520e 599#endif
79072805 600{
76e3520e 601#ifdef PERL_OBJECT
565764a8 602 Safefree(this);
76e3520e 603#else
3280af22 604 if (!(PL_curinterp = sv_interp))
79072805
LW
605 return;
606 Safefree(sv_interp);
76e3520e 607#endif
79072805
LW
608}
609
4b556e6c 610void
873ef191
GS
611#ifdef PERL_OBJECT
612CPerlObj::perl_atexit(void (*fn) (CPerlObj*,void *), void *ptr)
613#else
4b556e6c 614perl_atexit(void (*fn) (void *), void *ptr)
873ef191 615#endif
4b556e6c 616{
3280af22
NIS
617 Renew(PL_exitlist, PL_exitlistlen+1, PerlExitListEntry);
618 PL_exitlist[PL_exitlistlen].fn = fn;
619 PL_exitlist[PL_exitlistlen].ptr = ptr;
620 ++PL_exitlistlen;
4b556e6c
JD
621}
622
79072805 623int
76e3520e
GS
624#ifdef PERL_OBJECT
625CPerlObj::perl_parse(void (*xsinit) (CPerlObj*), int argc, char **argv, char **env)
626#else
8ac85365 627perl_parse(PerlInterpreter *sv_interp, void (*xsinit) (void), int argc, char **argv, char **env)
76e3520e 628#endif
8d063cd8 629{
11343788 630 dTHR;
6224f72b
GS
631 register SV *sv;
632 register char *s;
633 char *scriptname = NULL;
634 VOL bool dosearch = FALSE;
635 char *validarg = "";
636 I32 oldscope;
637 AV* comppadlist;
638 dJMPENV;
639 int ret;
640 int fdscript = -1;
8d063cd8 641
a687059c
LW
642#ifdef SETUID_SCRIPTS_ARE_SECURE_NOW
643#ifdef IAMSUID
644#undef IAMSUID
463ee0b2 645 croak("suidperl is no longer needed since the kernel can now execute\n\
a687059c
LW
646setuid perl scripts securely.\n");
647#endif
648#endif
649
76e3520e 650#ifndef PERL_OBJECT
3280af22 651 if (!(PL_curinterp = sv_interp))
79072805 652 return 255;
76e3520e 653#endif
79072805 654
6e72f9df 655#if defined(NeXT) && defined(__DYNAMIC__)
656 _dyld_lookup_and_bind
657 ("__environ", (unsigned long *) &environ_pointer, NULL);
658#endif /* environ */
659
3280af22
NIS
660 PL_origargv = argv;
661 PL_origargc = argc;
a0d0e21e 662#ifndef VMS /* VMS doesn't have environ array */
3280af22 663 PL_origenviron = environ;
a0d0e21e
LW
664#endif
665
3280af22 666 if (PL_do_undump) {
a0d0e21e
LW
667
668 /* Come here if running an undumped a.out. */
669
3280af22
NIS
670 PL_origfilename = savepv(argv[0]);
671 PL_do_undump = FALSE;
a0d0e21e 672 cxstack_ix = -1; /* start label stack again */
748a9306 673 init_ids();
a0d0e21e
LW
674 init_postdump_symbols(argc,argv,env);
675 return 0;
676 }
677
3280af22
NIS
678 if (PL_main_root) {
679 PL_curpad = AvARRAY(PL_comppad);
680 op_free(PL_main_root);
681 PL_main_root = Nullop;
ff0cee69 682 }
3280af22
NIS
683 PL_main_start = Nullop;
684 SvREFCNT_dec(PL_main_cv);
685 PL_main_cv = Nullcv;
79072805 686
3280af22
NIS
687 time(&PL_basetime);
688 oldscope = PL_scopestack_ix;
f86702cc 689
6224f72b
GS
690 JMPENV_PUSH(ret);
691 switch (ret) {
692 case 1:
693 STATUS_ALL_FAILURE;
694 /* FALL THROUGH */
695 case 2:
696 /* my_exit() was called */
3280af22 697 while (PL_scopestack_ix > oldscope)
6224f72b
GS
698 LEAVE;
699 FREETMPS;
3280af22
NIS
700 PL_curstash = PL_defstash;
701 if (PL_endav)
702 call_list(oldscope, PL_endav);
6224f72b
GS
703 JMPENV_POP;
704 return STATUS_NATIVE_EXPORT;
705 case 3:
706 JMPENV_POP;
707 PerlIO_printf(PerlIO_stderr(), "panic: top_env\n");
708 return 1;
709 }
79072805 710
3280af22 711 sv_setpvn(PL_linestr,"",0);
6224f72b
GS
712 sv = newSVpv("",0); /* first used for -I flags */
713 SAVEFREESV(sv);
714 init_main_stash();
54310121 715
6224f72b
GS
716 for (argc--,argv++; argc > 0; argc--,argv++) {
717 if (argv[0][0] != '-' || !argv[0][1])
718 break;
719#ifdef DOSUID
720 if (*validarg)
721 validarg = " PHOOEY ";
722 else
723 validarg = argv[0];
13281fa4 724#endif
6224f72b
GS
725 s = argv[0]+1;
726 reswitch:
727 switch (*s) {
728 case ' ':
729 case '0':
730 case 'F':
731 case 'a':
732 case 'c':
733 case 'd':
734 case 'D':
735 case 'h':
736 case 'i':
737 case 'l':
738 case 'M':
739 case 'm':
740 case 'n':
741 case 'p':
742 case 's':
743 case 'u':
744 case 'U':
745 case 'v':
746 case 'w':
747 if (s = moreswitches(s))
748 goto reswitch;
749 break;
33b78306 750
6224f72b 751 case 'T':
3280af22 752 PL_tainting = TRUE;
6224f72b
GS
753 s++;
754 goto reswitch;
f86702cc 755
6224f72b 756 case 'e':
3280af22 757 if (PL_euid != PL_uid || PL_egid != PL_gid)
6224f72b 758 croak("No -e allowed in setuid scripts");
3280af22
NIS
759 if (!PL_e_script) {
760 PL_e_script = newSVpv("",0);
6224f72b
GS
761 filter_add(read_e_script, NULL);
762 }
763 if (*++s)
3280af22 764 sv_catpv(PL_e_script, s);
6224f72b 765 else if (argv[1]) {
3280af22 766 sv_catpv(PL_e_script, argv[1]);
6224f72b
GS
767 argc--,argv++;
768 }
769 else
770 croak("No code specified for -e");
3280af22 771 sv_catpv(PL_e_script, "\n");
6224f72b 772 break;
afe37c7d 773
6224f72b
GS
774 case 'I': /* -I handled both here and in moreswitches() */
775 forbid_setid("-I");
776 if (!*++s && (s=argv[1]) != Nullch) {
777 argc--,argv++;
778 }
779 while (s && isSPACE(*s))
780 ++s;
781 if (s && *s) {
782 char *e, *p;
783 for (e = s; *e && !isSPACE(*e); e++) ;
784 p = savepvn(s, e-s);
785 incpush(p, TRUE);
786 sv_catpv(sv,"-I");
787 sv_catpv(sv,p);
788 sv_catpv(sv," ");
789 Safefree(p);
790 } /* XXX else croak? */
791 break;
792 case 'P':
793 forbid_setid("-P");
3280af22 794 PL_preprocess = TRUE;
6224f72b
GS
795 s++;
796 goto reswitch;
797 case 'S':
798 forbid_setid("-S");
799 dosearch = TRUE;
800 s++;
801 goto reswitch;
802 case 'V':
3280af22
NIS
803 if (!PL_preambleav)
804 PL_preambleav = newAV();
805 av_push(PL_preambleav, newSVpv("use Config qw(myconfig config_vars)",0));
6224f72b 806 if (*++s != ':') {
3280af22 807 PL_Sv = newSVpv("print myconfig();",0);
6224f72b 808#ifdef VMS
6b88bc9c 809 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this PERLSHR image: \\n\",");
6224f72b 810#else
3280af22 811 sv_catpv(PL_Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\",");
6224f72b
GS
812#endif
813#if defined(DEBUGGING) || defined(NO_EMBED) || defined(MULTIPLICITY)
3280af22 814 sv_catpv(PL_Sv,"\" Compile-time options:");
6224f72b 815# ifdef DEBUGGING
3280af22 816 sv_catpv(PL_Sv," DEBUGGING");
6224f72b
GS
817# endif
818# ifdef NO_EMBED
6b88bc9c 819 sv_catpv(PL_Sv," NO_EMBED");
6224f72b
GS
820# endif
821# ifdef MULTIPLICITY
8f872242 822 sv_catpv(PL_Sv," MULTIPLICITY");
6224f72b 823# endif
3280af22 824 sv_catpv(PL_Sv,"\\n\",");
6224f72b
GS
825#endif
826#if defined(LOCAL_PATCH_COUNT)
827 if (LOCAL_PATCH_COUNT > 0) {
828 int i;
3280af22 829 sv_catpv(PL_Sv,"\" Locally applied patches:\\n\",");
6224f72b 830 for (i = 1; i <= LOCAL_PATCH_COUNT; i++) {
3280af22
NIS
831 if (PL_localpatches[i])
832 sv_catpvf(PL_Sv,"\" \\t%s\\n\",",PL_localpatches[i]);
6224f72b
GS
833 }
834 }
835#endif
3280af22 836 sv_catpvf(PL_Sv,"\" Built under %s\\n\"",OSNAME);
6224f72b
GS
837#ifdef __DATE__
838# ifdef __TIME__
3280af22 839 sv_catpvf(PL_Sv,",\" Compiled at %s %s\\n\"",__DATE__,__TIME__);
6224f72b 840# else
6b88bc9c 841 sv_catpvf(PL_Sv,",\" Compiled on %s\\n\"",__DATE__);
6224f72b
GS
842# endif
843#endif
3280af22 844 sv_catpv(PL_Sv, "; \
6224f72b
GS
845$\"=\"\\n \"; \
846@env = map { \"$_=\\\"$ENV{$_}\\\"\" } sort grep {/^PERL/} keys %ENV; \
847print \" \\%ENV:\\n @env\\n\" if @env; \
848print \" \\@INC:\\n @INC\\n\";");
849 }
850 else {
3280af22
NIS
851 PL_Sv = newSVpv("config_vars(qw(",0);
852 sv_catpv(PL_Sv, ++s);
853 sv_catpv(PL_Sv, "))");
6224f72b
GS
854 s += strlen(s);
855 }
3280af22 856 av_push(PL_preambleav, PL_Sv);
6224f72b
GS
857 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
858 goto reswitch;
859 case 'x':
3280af22 860 PL_doextract = TRUE;
6224f72b
GS
861 s++;
862 if (*s)
3280af22 863 PL_cddir = savepv(s);
6224f72b
GS
864 break;
865 case 0:
866 break;
867 case '-':
868 if (!*++s || isSPACE(*s)) {
869 argc--,argv++;
870 goto switch_end;
871 }
872 /* catch use of gnu style long options */
873 if (strEQ(s, "version")) {
874 s = "v";
875 goto reswitch;
876 }
877 if (strEQ(s, "help")) {
878 s = "h";
879 goto reswitch;
880 }
881 s--;
882 /* FALL THROUGH */
883 default:
884 croak("Unrecognized switch: -%s (-h will show valid options)",s);
8d063cd8
LW
885 }
886 }
6224f72b 887 switch_end:
54310121 888
3280af22 889 if (!PL_tainting && (s = PerlEnv_getenv("PERL5OPT"))) {
6224f72b
GS
890 while (s && *s) {
891 while (isSPACE(*s))
892 s++;
893 if (*s == '-') {
894 s++;
895 if (isSPACE(*s))
896 continue;
897 }
898 if (!*s)
899 break;
900 if (!strchr("DIMUdmw", *s))
901 croak("Illegal switch in PERL5OPT: -%c", *s);
902 s = moreswitches(s);
903 }
904 }
a0d0e21e 905
6224f72b
GS
906 if (!scriptname)
907 scriptname = argv[0];
3280af22 908 if (PL_e_script) {
6224f72b
GS
909 argc++,argv--;
910 scriptname = BIT_BUCKET; /* don't look for script or read stdin */
911 }
912 else if (scriptname == Nullch) {
913#ifdef MSDOS
914 if ( PerlLIO_isatty(PerlIO_fileno(PerlIO_stdin())) )
915 moreswitches("h");
916#endif
917 scriptname = "-";
918 }
919
920 init_perllib();
921
922 open_script(scriptname,dosearch,sv,&fdscript);
923
924 validate_suid(validarg, scriptname,fdscript);
925
3280af22 926 if (PL_doextract)
6224f72b
GS
927 find_beginning();
928
3280af22
NIS
929 PL_main_cv = PL_compcv = (CV*)NEWSV(1104,0);
930 sv_upgrade((SV *)PL_compcv, SVt_PVCV);
931 CvUNIQUE_on(PL_compcv);
932
933 PL_comppad = newAV();
934 av_push(PL_comppad, Nullsv);
935 PL_curpad = AvARRAY(PL_comppad);
936 PL_comppad_name = newAV();
937 PL_comppad_name_fill = 0;
938 PL_min_intro_pending = 0;
939 PL_padix = 0;
6224f72b 940#ifdef USE_THREADS
533c011a
NIS
941 av_store(PL_comppad_name, 0, newSVpv("@_", 2));
942 PL_curpad[0] = (SV*)newAV();
943 SvPADMY_on(PL_curpad[0]); /* XXX Needed? */
944 CvOWNER(PL_compcv) = 0;
945 New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
946 MUTEX_INIT(CvMUTEXP(PL_compcv));
6224f72b
GS
947#endif /* USE_THREADS */
948
949 comppadlist = newAV();
950 AvREAL_off(comppadlist);
3280af22
NIS
951 av_store(comppadlist, 0, (SV*)PL_comppad_name);
952 av_store(comppadlist, 1, (SV*)PL_comppad);
953 CvPADLIST(PL_compcv) = comppadlist;
6224f72b
GS
954
955 boot_core_UNIVERSAL();
956
957 if (xsinit)
958 (*xsinit)(PERL_OBJECT_THIS); /* in case linked C routines want magical variables */
959#if defined(VMS) || defined(WIN32) || defined(DJGPP)
960 init_os_extras();
961#endif
962
963 init_predump_symbols();
964 /* init_postdump_symbols not currently designed to be called */
965 /* more than once (ENV isn't cleared first, for example) */
966 /* But running with -u leaves %ENV & @ARGV undefined! XXX */
3280af22 967 if (!PL_do_undump)
6224f72b
GS
968 init_postdump_symbols(argc,argv,env);
969
970 init_lexer();
971
972 /* now parse the script */
973
974 SETERRNO(0,SS$_NORMAL);
3280af22
NIS
975 PL_error_count = 0;
976 if (yyparse() || PL_error_count) {
977 if (PL_minus_c)
978 croak("%s had compilation errors.\n", PL_origfilename);
6224f72b
GS
979 else {
980 croak("Execution of %s aborted due to compilation errors.\n",
3280af22 981 PL_origfilename);
6224f72b
GS
982 }
983 }
3280af22
NIS
984 PL_curcop->cop_line = 0;
985 PL_curstash = PL_defstash;
986 PL_preprocess = FALSE;
987 if (PL_e_script) {
988 SvREFCNT_dec(PL_e_script);
989 PL_e_script = Nullsv;
6224f72b
GS
990 }
991
992 /* now that script is parsed, we can modify record separator */
3280af22
NIS
993 SvREFCNT_dec(PL_rs);
994 PL_rs = SvREFCNT_inc(PL_nrs);
995 sv_setsv(perl_get_sv("/", TRUE), PL_rs);
996 if (PL_do_undump)
6224f72b
GS
997 my_unexec();
998
3280af22
NIS
999 if (PL_dowarn)
1000 gv_check(PL_defstash);
6224f72b
GS
1001
1002 LEAVE;
1003 FREETMPS;
1004
1005#ifdef MYMALLOC
1006 if ((s=PerlEnv_getenv("PERL_DEBUG_MSTATS")) && atoi(s) >= 2)
1007 dump_mstats("after compilation:");
1008#endif
1009
1010 ENTER;
3280af22 1011 PL_restartop = 0;
6224f72b
GS
1012 JMPENV_POP;
1013 return 0;
1014}
1015
1016int
1017#ifdef PERL_OBJECT
1018CPerlObj::perl_run(void)
1019#else
1020perl_run(PerlInterpreter *sv_interp)
1021#endif
1022{
1023 dSP;
1024 I32 oldscope;
1025 dJMPENV;
1026 int ret;
1027
1028#ifndef PERL_OBJECT
3280af22 1029 if (!(PL_curinterp = sv_interp))
6224f72b
GS
1030 return 255;
1031#endif
1032
3280af22 1033 oldscope = PL_scopestack_ix;
6224f72b
GS
1034
1035 JMPENV_PUSH(ret);
1036 switch (ret) {
1037 case 1:
1038 cxstack_ix = -1; /* start context stack again */
1039 break;
1040 case 2:
1041 /* my_exit() was called */
3280af22 1042 while (PL_scopestack_ix > oldscope)
6224f72b
GS
1043 LEAVE;
1044 FREETMPS;
3280af22
NIS
1045 PL_curstash = PL_defstash;
1046 if (PL_endav)
1047 call_list(oldscope, PL_endav);
6224f72b
GS
1048#ifdef MYMALLOC
1049 if (PerlEnv_getenv("PERL_DEBUG_MSTATS"))
1050 dump_mstats("after execution: ");
1051#endif
1052 JMPENV_POP;
1053 return STATUS_NATIVE_EXPORT;
1054 case 3:
3280af22 1055 if (!PL_restartop) {
6224f72b
GS
1056 PerlIO_printf(PerlIO_stderr(), "panic: restartop\n");
1057 FREETMPS;
1058 JMPENV_POP;
1059 return 1;
1060 }
3280af22 1061 POPSTACK_TO(PL_mainstack);
6224f72b
GS
1062 break;
1063 }
1064
1065 DEBUG_r(PerlIO_printf(Perl_debug_log, "%s $` $& $' support.\n",
3280af22 1066 PL_sawampersand ? "Enabling" : "Omitting"));
6224f72b 1067
3280af22 1068 if (!PL_restartop) {
6224f72b
GS
1069 DEBUG_x(dump_all());
1070 DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n"));
8b73bbec 1071 DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%lx\n",
6224f72b 1072 (unsigned long) thr));
6224f72b 1073
3280af22
NIS
1074 if (PL_minus_c) {
1075 PerlIO_printf(PerlIO_stderr(), "%s syntax OK\n", PL_origfilename);
6224f72b
GS
1076 my_exit(0);
1077 }
3280af22
NIS
1078 if (PERLDB_SINGLE && PL_DBsingle)
1079 sv_setiv(PL_DBsingle, 1);
1080 if (PL_initav)
1081 call_list(oldscope, PL_initav);
6224f72b
GS
1082 }
1083
1084 /* do it */
1085
3280af22 1086 if (PL_restartop) {
533c011a 1087 PL_op = PL_restartop;
3280af22 1088 PL_restartop = 0;
6224f72b
GS
1089 CALLRUNOPS();
1090 }
3280af22
NIS
1091 else if (PL_main_start) {
1092 CvDEPTH(PL_main_cv) = 1;
533c011a 1093 PL_op = PL_main_start;
6224f72b
GS
1094 CALLRUNOPS();
1095 }
1096
1097 my_exit(0);
1098 /* NOTREACHED */
1099 return 0;
1100}
1101
1102SV*
1103perl_get_sv(char *name, I32 create)
1104{
1105 GV *gv;
1106#ifdef USE_THREADS
1107 if (name[1] == '\0' && !isALPHA(name[0])) {
1108 PADOFFSET tmp = find_threadsv(name);
1109 if (tmp != NOT_IN_PAD) {
1110 dTHR;
1111 return THREADSV(tmp);
1112 }
1113 }
1114#endif /* USE_THREADS */
1115 gv = gv_fetchpv(name, create, SVt_PV);
1116 if (gv)
1117 return GvSV(gv);
1118 return Nullsv;
1119}
1120
1121AV*
1122perl_get_av(char *name, I32 create)
1123{
1124 GV* gv = gv_fetchpv(name, create, SVt_PVAV);
1125 if (create)
1126 return GvAVn(gv);
1127 if (gv)
1128 return GvAV(gv);
1129 return Nullav;
1130}
1131
1132HV*
1133perl_get_hv(char *name, I32 create)
1134{
a0d0e21e
LW
1135 GV* gv = gv_fetchpv(name, create, SVt_PVHV);
1136 if (create)
1137 return GvHVn(gv);
1138 if (gv)
1139 return GvHV(gv);
1140 return Nullhv;
1141}
1142
1143CV*
8ac85365 1144perl_get_cv(char *name, I32 create)
a0d0e21e
LW
1145{
1146 GV* gv = gv_fetchpv(name, create, SVt_PVCV);
36596149 1147 /* XXX unsafe for threads if eval_owner isn't held */
8ebc5c01 1148 if (create && !GvCVu(gv))
774d564b 1149 return newSUB(start_subparse(FALSE, 0),
a0d0e21e 1150 newSVOP(OP_CONST, 0, newSVpv(name,0)),
4633a7c4 1151 Nullop,
a0d0e21e
LW
1152 Nullop);
1153 if (gv)
8ebc5c01 1154 return GvCVu(gv);
a0d0e21e
LW
1155 return Nullcv;
1156}
1157
79072805
LW
1158/* Be sure to refetch the stack pointer after calling these routines. */
1159
a0d0e21e 1160I32
22239a37 1161perl_call_argv(char *sub_name, I32 flags, register char **argv)
8ac85365
NIS
1162
1163 /* See G_* flags in cop.h */
1164 /* null terminated arg list */
8990e307 1165{
a0d0e21e 1166 dSP;
8990e307 1167
924508f0 1168 PUSHMARK(SP);
a0d0e21e 1169 if (argv) {
8990e307 1170 while (*argv) {
a0d0e21e 1171 XPUSHs(sv_2mortal(newSVpv(*argv,0)));
8990e307
LW
1172 argv++;
1173 }
a0d0e21e 1174 PUTBACK;
8990e307 1175 }
22239a37 1176 return perl_call_pv(sub_name, flags);
8990e307
LW
1177}
1178
a0d0e21e 1179I32
22239a37 1180perl_call_pv(char *sub_name, I32 flags)
8ac85365
NIS
1181 /* name of the subroutine */
1182 /* See G_* flags in cop.h */
a0d0e21e 1183{
22239a37 1184 return perl_call_sv((SV*)perl_get_cv(sub_name, TRUE), flags);
a0d0e21e
LW
1185}
1186
1187I32
8ac85365
NIS
1188perl_call_method(char *methname, I32 flags)
1189 /* name of the subroutine */
1190 /* See G_* flags in cop.h */
a0d0e21e
LW
1191{
1192 dSP;
1193 OP myop;
533c011a
NIS
1194 if (!PL_op)
1195 PL_op = &myop;
a0d0e21e
LW
1196 XPUSHs(sv_2mortal(newSVpv(methname,0)));
1197 PUTBACK;
11343788 1198 pp_method(ARGS);
533c011a
NIS
1199 if(PL_op == &myop)
1200 PL_op = Nullop;
3280af22 1201 return perl_call_sv(*PL_stack_sp--, flags);
a0d0e21e
LW
1202}
1203
1204/* May be called with any of a CV, a GV, or an SV containing the name. */
1205I32
8ac85365
NIS
1206perl_call_sv(SV *sv, I32 flags)
1207
1208 /* See G_* flags in cop.h */
a0d0e21e 1209{
924508f0 1210 dSP;
a0d0e21e 1211 LOGOP myop; /* fake syntax tree node */
aa689395 1212 I32 oldmark;
a0d0e21e 1213 I32 retval;
a0d0e21e 1214 I32 oldscope;
54310121 1215 bool oldcatch = CATCH_GET;
1216 dJMPENV;
6224f72b 1217 int ret;
533c011a 1218 OP* oldop = PL_op;
1e422769 1219
a0d0e21e
LW
1220 if (flags & G_DISCARD) {
1221 ENTER;
1222 SAVETMPS;
1223 }
1224
aa689395 1225 Zero(&myop, 1, LOGOP);
54310121 1226 myop.op_next = Nullop;
f51d4af5 1227 if (!(flags & G_NOARGS))
aa689395 1228 myop.op_flags |= OPf_STACKED;
54310121 1229 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1230 (flags & G_ARRAY) ? OPf_WANT_LIST :
1231 OPf_WANT_SCALAR);
462e5cf6 1232 SAVEOP();
533c011a 1233 PL_op = (OP*)&myop;
aa689395 1234
3280af22
NIS
1235 EXTEND(PL_stack_sp, 1);
1236 *++PL_stack_sp = sv;
aa689395 1237 oldmark = TOPMARK;
3280af22 1238 oldscope = PL_scopestack_ix;
a0d0e21e 1239
3280af22 1240 if (PERLDB_SUB && PL_curstash != PL_debstash
36477c24 1241 /* Handle first BEGIN of -d. */
3280af22 1242 && (PL_DBcv || (PL_DBcv = GvCV(PL_DBsub)))
36477c24 1243 /* Try harder, since this may have been a sighandler, thus
1244 * curstash may be meaningless. */
3280af22 1245 && (SvTYPE(sv) != SVt_PVCV || CvSTASH((CV*)sv) != PL_debstash)
491527d0 1246 && !(flags & G_NODEBUG))
533c011a 1247 PL_op->op_private |= OPpENTERSUB_DB;
a0d0e21e
LW
1248
1249 if (flags & G_EVAL) {
533c011a 1250 cLOGOP->op_other = PL_op;
3280af22 1251 PL_markstack_ptr--;
4633a7c4
LW
1252 /* we're trying to emulate pp_entertry() here */
1253 {
c09156bb 1254 register PERL_CONTEXT *cx;
54310121 1255 I32 gimme = GIMME_V;
4633a7c4
LW
1256
1257 ENTER;
1258 SAVETMPS;
1259
533c011a 1260 push_return(PL_op->op_next);
3280af22 1261 PUSHBLOCK(cx, CXt_EVAL, PL_stack_sp);
4633a7c4 1262 PUSHEVAL(cx, 0, 0);
533c011a 1263 PL_eval_root = PL_op; /* Only needed so that goto works right. */
4633a7c4 1264
3280af22 1265 PL_in_eval = 1;
4633a7c4 1266 if (flags & G_KEEPERR)
3280af22 1267 PL_in_eval |= 4;
4633a7c4 1268 else
38a03e6e 1269 sv_setpv(ERRSV,"");
4633a7c4 1270 }
3280af22 1271 PL_markstack_ptr++;
a0d0e21e 1272
6224f72b
GS
1273 JMPENV_PUSH(ret);
1274 switch (ret) {
1275 case 0:
a0d0e21e 1276 break;
6224f72b 1277 case 1:
f86702cc 1278 STATUS_ALL_FAILURE;
a0d0e21e 1279 /* FALL THROUGH */
6224f72b 1280 case 2:
a0d0e21e 1281 /* my_exit() was called */
3280af22 1282 PL_curstash = PL_defstash;
a0d0e21e 1283 FREETMPS;
54310121 1284 JMPENV_POP;
3280af22 1285 if (PL_statusvalue)
a0d0e21e 1286 croak("Callback called exit");
f86702cc 1287 my_exit_jump();
a0d0e21e 1288 /* NOTREACHED */
6224f72b 1289 case 3:
3280af22 1290 if (PL_restartop) {
533c011a 1291 PL_op = PL_restartop;
3280af22 1292 PL_restartop = 0;
54310121 1293 break;
a0d0e21e 1294 }
3280af22 1295 PL_stack_sp = PL_stack_base + oldmark;
a0d0e21e
LW
1296 if (flags & G_ARRAY)
1297 retval = 0;
1298 else {
1299 retval = 1;
3280af22 1300 *++PL_stack_sp = &PL_sv_undef;
a0d0e21e
LW
1301 }
1302 goto cleanup;
1303 }
1304 }
1e422769 1305 else
54310121 1306 CATCH_SET(TRUE);
a0d0e21e 1307
533c011a
NIS
1308 if (PL_op == (OP*)&myop)
1309 PL_op = pp_entersub(ARGS);
1310 if (PL_op)
76e3520e 1311 CALLRUNOPS();
3280af22 1312 retval = PL_stack_sp - (PL_stack_base + oldmark);
4633a7c4 1313 if ((flags & G_EVAL) && !(flags & G_KEEPERR))
38a03e6e 1314 sv_setpv(ERRSV,"");
a0d0e21e
LW
1315
1316 cleanup:
1317 if (flags & G_EVAL) {
3280af22 1318 if (PL_scopestack_ix > oldscope) {
a0a2876f
LW
1319 SV **newsp;
1320 PMOP *newpm;
1321 I32 gimme;
c09156bb 1322 register PERL_CONTEXT *cx;
a0a2876f
LW
1323 I32 optype;
1324
1325 POPBLOCK(cx,newpm);
1326 POPEVAL(cx);
1327 pop_return();
3280af22 1328 PL_curpm = newpm;
a0a2876f 1329 LEAVE;
a0d0e21e 1330 }
54310121 1331 JMPENV_POP;
a0d0e21e 1332 }
1e422769 1333 else
54310121 1334 CATCH_SET(oldcatch);
1e422769 1335
a0d0e21e 1336 if (flags & G_DISCARD) {
3280af22 1337 PL_stack_sp = PL_stack_base + oldmark;
a0d0e21e
LW
1338 retval = 0;
1339 FREETMPS;
1340 LEAVE;
1341 }
533c011a 1342 PL_op = oldop;
a0d0e21e
LW
1343 return retval;
1344}
1345
6e72f9df 1346/* Eval a string. The G_EVAL flag is always assumed. */
8990e307 1347
a0d0e21e 1348I32
8ac85365
NIS
1349perl_eval_sv(SV *sv, I32 flags)
1350
1351 /* See G_* flags in cop.h */
a0d0e21e 1352{
924508f0 1353 dSP;
a0d0e21e 1354 UNOP myop; /* fake syntax tree node */
3280af22 1355 I32 oldmark = SP - PL_stack_base;
4633a7c4 1356 I32 retval;
4633a7c4 1357 I32 oldscope;
54310121 1358 dJMPENV;
6224f72b 1359 int ret;
533c011a 1360 OP* oldop = PL_op;
84902520 1361
4633a7c4
LW
1362 if (flags & G_DISCARD) {
1363 ENTER;
1364 SAVETMPS;
1365 }
1366
462e5cf6 1367 SAVEOP();
533c011a
NIS
1368 PL_op = (OP*)&myop;
1369 Zero(PL_op, 1, UNOP);
3280af22
NIS
1370 EXTEND(PL_stack_sp, 1);
1371 *++PL_stack_sp = sv;
1372 oldscope = PL_scopestack_ix;
79072805 1373
4633a7c4
LW
1374 if (!(flags & G_NOARGS))
1375 myop.op_flags = OPf_STACKED;
79072805 1376 myop.op_next = Nullop;
6e72f9df 1377 myop.op_type = OP_ENTEREVAL;
54310121 1378 myop.op_flags |= ((flags & G_VOID) ? OPf_WANT_VOID :
1379 (flags & G_ARRAY) ? OPf_WANT_LIST :
1380 OPf_WANT_SCALAR);
6e72f9df 1381 if (flags & G_KEEPERR)
1382 myop.op_flags |= OPf_SPECIAL;
4633a7c4 1383
6224f72b
GS
1384 JMPENV_PUSH(ret);
1385 switch (ret) {
1386 case 0:
4633a7c4 1387 break;
6224f72b 1388 case 1:
f86702cc 1389 STATUS_ALL_FAILURE;
4633a7c4 1390 /* FALL THROUGH */
6224f72b 1391 case 2:
4633a7c4 1392 /* my_exit() was called */
3280af22 1393 PL_curstash = PL_defstash;
4633a7c4 1394 FREETMPS;
54310121 1395 JMPENV_POP;
3280af22 1396 if (PL_statusvalue)
4633a7c4 1397 croak("Callback called exit");
f86702cc 1398 my_exit_jump();
4633a7c4 1399 /* NOTREACHED */
6224f72b 1400 case 3:
3280af22 1401 if (PL_restartop) {
533c011a 1402 PL_op = PL_restartop;
3280af22 1403 PL_restartop = 0;
54310121 1404 break;
4633a7c4 1405 }
3280af22 1406 PL_stack_sp = PL_stack_base + oldmark;
4633a7c4
LW
1407 if (flags & G_ARRAY)
1408 retval = 0;
1409 else {
1410 retval = 1;
3280af22 1411 *++PL_stack_sp = &PL_sv_undef;
4633a7c4
LW
1412 }
1413 goto cleanup;
1414 }
1415
533c011a
NIS
1416 if (PL_op == (OP*)&myop)
1417 PL_op = pp_entereval(ARGS);
1418 if (PL_op)
76e3520e 1419 CALLRUNOPS();
3280af22 1420 retval = PL_stack_sp - (PL_stack_base + oldmark);
6e72f9df 1421 if (!(flags & G_KEEPERR))
38a03e6e 1422 sv_setpv(ERRSV,"");
4633a7c4
LW
1423
1424 cleanup:
54310121 1425 JMPENV_POP;
4633a7c4 1426 if (flags & G_DISCARD) {
3280af22 1427 PL_stack_sp = PL_stack_base + oldmark;
4633a7c4
LW
1428 retval = 0;
1429 FREETMPS;
1430 LEAVE;
1431 }
533c011a 1432 PL_op = oldop;
4633a7c4
LW
1433 return retval;
1434}
1435
137443ea 1436SV*
8ac85365 1437perl_eval_pv(char *p, I32 croak_on_error)
137443ea 1438{
1439 dSP;
1440 SV* sv = newSVpv(p, 0);
1441
924508f0 1442 PUSHMARK(SP);
137443ea 1443 perl_eval_sv(sv, G_SCALAR);
1444 SvREFCNT_dec(sv);
1445
1446 SPAGAIN;
1447 sv = POPs;
1448 PUTBACK;
1449
36596149
GB
1450 if (croak_on_error && SvTRUE(ERRSV)) {
1451 STRLEN n_a;
1452 croak(SvPVx(ERRSV, n_a));
1453 }
137443ea 1454
1455 return sv;
1456}
1457
4633a7c4
LW
1458/* Require a module. */
1459
1460void
8ac85365 1461perl_require_pv(char *pv)
4633a7c4 1462{
d3acc0f7
JP
1463 SV* sv;
1464 dSP;
e788e7d3 1465 PUSHSTACKi(PERLSI_REQUIRE);
d3acc0f7
JP
1466 PUTBACK;
1467 sv = sv_newmortal();
4633a7c4
LW
1468 sv_setpv(sv, "require '");
1469 sv_catpv(sv, pv);
1470 sv_catpv(sv, "'");
1471 perl_eval_sv(sv, G_DISCARD);
d3acc0f7
JP
1472 SPAGAIN;
1473 POPSTACK;
79072805
LW
1474}
1475
79072805 1476void
8ac85365 1477magicname(char *sym, char *name, I32 namlen)
79072805
LW
1478{
1479 register GV *gv;
1480
85e6fe83 1481 if (gv = gv_fetchpv(sym,TRUE, SVt_PV))
79072805
LW
1482 sv_magic(GvSV(gv), (SV*)gv, 0, name, namlen);
1483}
1484
76e3520e 1485STATIC void
8ac85365
NIS
1486usage(char *name) /* XXX move this out into a module ? */
1487
4633a7c4 1488{
ab821d7f 1489 /* This message really ought to be max 23 lines.
1490 * Removed -h because the user already knows that opton. Others? */
fb73857a 1491
76e3520e 1492 static char *usage_msg[] = {
fb73857a 1493"-0[octal] specify record separator (\\0, if no argument)",
1494"-a autosplit mode with -n or -p (splits $_ into @F)",
1495"-c check syntax only (runs BEGIN and END blocks)",
1496"-d[:debugger] run scripts under debugger",
1497"-D[number/list] set debugging flags (argument is a bit mask or flags)",
1498"-e 'command' one line of script. Several -e's allowed. Omit [programfile].",
1499"-F/pattern/ split() pattern for autosplit (-a). The //'s are optional.",
1500"-i[extension] edit <> files in place (make backup if extension supplied)",
1501"-Idirectory specify @INC/#include directory (may be used more than once)",
1502"-l[octal] enable line ending processing, specifies line terminator",
1503"-[mM][-]module.. executes `use/no module...' before executing your script.",
1504"-n assume 'while (<>) { ... }' loop around your script",
1505"-p assume loop like -n but print line also like sed",
1506"-P run script through C preprocessor before compilation",
1507"-s enable some switch parsing for switches after script name",
1508"-S look for the script using PATH environment variable",
1509"-T turn on tainting checks",
1510"-u dump core after parsing script",
1511"-U allow unsafe operations",
95103687 1512"-v print version number, patchlevel plus VERY IMPORTANT perl info",
fb73857a 1513"-V[:variable] print perl configuration information",
1514"-w TURN WARNINGS ON FOR COMPILATION OF YOUR SCRIPT. Recommended.",
1515"-x[directory] strip off text before #!perl line and perhaps cd to directory",
1516"\n",
1517NULL
1518};
76e3520e 1519 char **p = usage_msg;
fb73857a 1520
ab821d7f 1521 printf("\nUsage: %s [switches] [--] [programfile] [arguments]", name);
fb73857a 1522 while (*p)
1523 printf("\n %s", *p++);
4633a7c4
LW
1524}
1525
79072805
LW
1526/* This routine handles any switches that can be given during run */
1527
1528char *
8ac85365 1529moreswitches(char *s)
79072805
LW
1530{
1531 I32 numlen;
c07a80fd 1532 U32 rschar;
79072805
LW
1533
1534 switch (*s) {
1535 case '0':
a863c7d1
MB
1536 {
1537 dTHR;
c07a80fd 1538 rschar = scan_oct(s, 4, &numlen);
3280af22 1539 SvREFCNT_dec(PL_nrs);
c07a80fd 1540 if (rschar & ~((U8)~0))
3280af22 1541 PL_nrs = &PL_sv_undef;
c07a80fd 1542 else if (!rschar && numlen >= 2)
3280af22 1543 PL_nrs = newSVpv("", 0);
c07a80fd 1544 else {
1545 char ch = rschar;
3280af22 1546 PL_nrs = newSVpv(&ch, 1);
79072805
LW
1547 }
1548 return s + numlen;
a863c7d1 1549 }
2304df62 1550 case 'F':
3280af22
NIS
1551 PL_minus_F = TRUE;
1552 PL_splitstr = savepv(s + 1);
2304df62
AD
1553 s += strlen(s);
1554 return s;
79072805 1555 case 'a':
3280af22 1556 PL_minus_a = TRUE;
79072805
LW
1557 s++;
1558 return s;
1559 case 'c':
3280af22 1560 PL_minus_c = TRUE;
79072805
LW
1561 s++;
1562 return s;
1563 case 'd':
bbce6d69 1564 forbid_setid("-d");
4633a7c4 1565 s++;
c07a80fd 1566 if (*s == ':' || *s == '=') {
46fc3d4c 1567 my_setenv("PERL5DB", form("use Devel::%s;", ++s));
4633a7c4 1568 s += strlen(s);
4633a7c4 1569 }
3280af22
NIS
1570 if (!PL_perldb) {
1571 PL_perldb = PERLDB_ALL;
a0d0e21e
LW
1572 init_debugger();
1573 }
79072805
LW
1574 return s;
1575 case 'D':
1576#ifdef DEBUGGING
bbce6d69 1577 forbid_setid("-D");
79072805 1578 if (isALPHA(s[1])) {
8b73bbec 1579 static char debopts[] = "psltocPmfrxuLHXDS";
79072805
LW
1580 char *d;
1581
93a17b20 1582 for (s++; *s && (d = strchr(debopts,*s)); s++)
3280af22 1583 PL_debug |= 1 << (d - debopts);
79072805
LW
1584 }
1585 else {
3280af22 1586 PL_debug = atoi(s+1);
79072805
LW
1587 for (s++; isDIGIT(*s); s++) ;
1588 }
3280af22 1589 PL_debug |= 0x80000000;
79072805
LW
1590#else
1591 warn("Recompile perl with -DDEBUGGING to use -D switch\n");
a0d0e21e 1592 for (s++; isALNUM(*s); s++) ;
79072805
LW
1593#endif
1594 /*SUPPRESS 530*/
1595 return s;
4633a7c4 1596 case 'h':
3280af22 1597 usage(PL_origargv[0]);
6ad3d225 1598 PerlProc_exit(0);
79072805 1599 case 'i':
3280af22
NIS
1600 if (PL_inplace)
1601 Safefree(PL_inplace);
1602 PL_inplace = savepv(s+1);
79072805 1603 /*SUPPRESS 530*/
3280af22 1604 for (s = PL_inplace; *s && !isSPACE(*s); s++) ;
7b8d334a 1605 if (*s) {
fb73857a 1606 *s++ = '\0';
7b8d334a
GS
1607 if (*s == '-') /* Additional switches on #! line. */
1608 s++;
1609 }
fb73857a 1610 return s;
1611 case 'I': /* -I handled both here and in parse_perl() */
bbce6d69 1612 forbid_setid("-I");
fb73857a 1613 ++s;
1614 while (*s && isSPACE(*s))
1615 ++s;
1616 if (*s) {
774d564b 1617 char *e, *p;
748a9306 1618 for (e = s; *e && !isSPACE(*e); e++) ;
774d564b 1619 p = savepvn(s, e-s);
1620 incpush(p, TRUE);
1621 Safefree(p);
fb73857a 1622 s = e;
79072805
LW
1623 }
1624 else
463ee0b2 1625 croak("No space allowed after -I");
fb73857a 1626 return s;
79072805 1627 case 'l':
3280af22 1628 PL_minus_l = TRUE;
79072805 1629 s++;
3280af22
NIS
1630 if (PL_ors)
1631 Safefree(PL_ors);
79072805 1632 if (isDIGIT(*s)) {
3280af22
NIS
1633 PL_ors = savepv("\n");
1634 PL_orslen = 1;
1635 *PL_ors = scan_oct(s, 3 + (*s == '0'), &numlen);
79072805
LW
1636 s += numlen;
1637 }
1638 else {
a863c7d1 1639 dTHR;
3280af22
NIS
1640 if (RsPARA(PL_nrs)) {
1641 PL_ors = "\n\n";
1642 PL_orslen = 2;
c07a80fd 1643 }
1644 else
3280af22
NIS
1645 PL_ors = SvPV(PL_nrs, PL_orslen);
1646 PL_ors = savepvn(PL_ors, PL_orslen);
79072805
LW
1647 }
1648 return s;
1a30305b 1649 case 'M':
bbce6d69 1650 forbid_setid("-M"); /* XXX ? */
1a30305b 1651 /* FALL THROUGH */
1652 case 'm':
bbce6d69 1653 forbid_setid("-m"); /* XXX ? */
1a30305b 1654 if (*++s) {
a5f75d66 1655 char *start;
11343788 1656 SV *sv;
a5f75d66
AD
1657 char *use = "use ";
1658 /* -M-foo == 'no foo' */
1659 if (*s == '-') { use = "no "; ++s; }
11343788 1660 sv = newSVpv(use,0);
a5f75d66 1661 start = s;
1a30305b 1662 /* We allow -M'Module qw(Foo Bar)' */
c07a80fd 1663 while(isALNUM(*s) || *s==':') ++s;
1664 if (*s != '=') {
11343788 1665 sv_catpv(sv, start);
c07a80fd 1666 if (*(start-1) == 'm') {
1667 if (*s != '\0')
1668 croak("Can't use '%c' after -mname", *s);
11343788 1669 sv_catpv( sv, " ()");
c07a80fd 1670 }
1671 } else {
11343788
MB
1672 sv_catpvn(sv, start, s-start);
1673 sv_catpv(sv, " split(/,/,q{");
1674 sv_catpv(sv, ++s);
1675 sv_catpv(sv, "})");
c07a80fd 1676 }
1a30305b 1677 s += strlen(s);
3280af22
NIS
1678 if (PL_preambleav == NULL)
1679 PL_preambleav = newAV();
1680 av_push(PL_preambleav, sv);
1a30305b 1681 }
1682 else
1683 croak("No space allowed after -%c", *(s-1));
1684 return s;
79072805 1685 case 'n':
3280af22 1686 PL_minus_n = TRUE;
79072805
LW
1687 s++;
1688 return s;
1689 case 'p':
3280af22 1690 PL_minus_p = TRUE;
79072805
LW
1691 s++;
1692 return s;
1693 case 's':
bbce6d69 1694 forbid_setid("-s");
3280af22 1695 PL_doswitches = TRUE;
79072805
LW
1696 s++;
1697 return s;
463ee0b2 1698 case 'T':
3280af22 1699 if (!PL_tainting)
9607fc9c 1700 croak("Too late for \"-T\" option");
463ee0b2
LW
1701 s++;
1702 return s;
79072805 1703 case 'u':
3280af22 1704 PL_do_undump = TRUE;
79072805
LW
1705 s++;
1706 return s;
1707 case 'U':
3280af22 1708 PL_unsafe = TRUE;
79072805
LW
1709 s++;
1710 return s;
1711 case 'v':
a5f75d66 1712#if defined(SUBVERSION) && SUBVERSION > 0
fb73857a 1713 printf("\nThis is perl, version 5.%03d_%02d built for %s",
1714 PATCHLEVEL, SUBVERSION, ARCHNAME);
a5f75d66 1715#else
fb73857a 1716 printf("\nThis is perl, version %s built for %s",
6b88bc9c 1717 PL_patchlevel, ARCHNAME);
fb73857a 1718#endif
1719#if defined(LOCAL_PATCH_COUNT)
1720 if (LOCAL_PATCH_COUNT > 0)
1721 printf("\n(with %d registered patch%s, see perl -V for more detail)",
1722 LOCAL_PATCH_COUNT, (LOCAL_PATCH_COUNT!=1) ? "es" : "");
a5f75d66 1723#endif
1a30305b 1724
a411490c 1725 printf("\n\nCopyright 1987-1998, Larry Wall\n");
79072805 1726#ifdef MSDOS
fb73857a 1727 printf("\nMS-DOS port Copyright (c) 1989, 1990, Diomidis Spinellis\n");
55497cff 1728#endif
1729#ifdef DJGPP
1730 printf("djgpp v2 port (jpl5003c) by Hirofumi Watanabe, 1996\n");
9731c6ca 1731 printf("djgpp v2 port (perl5004+) by Laszlo Molnar, 1997-1998\n");
4633a7c4 1732#endif
79072805 1733#ifdef OS2
5dd60ef7 1734 printf("\n\nOS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n"
a411490c 1735 "Version 5 port Copyright (c) 1994-1998, Andreas Kaiser, Ilya Zakharevich\n");
79072805 1736#endif
79072805 1737#ifdef atarist
760ac839 1738 printf("atariST series port, ++jrb bammi@cadence.com\n");
79072805 1739#endif
a3f9223b
GS
1740#ifdef __BEOS__
1741 printf("BeOS port Copyright Tom Spindler, 1997-1998\n");
1742#endif
1d84e8df
JH
1743#ifdef MPE
1744 printf("MPE/iX port Copyright by Mark Klein and Mark Bixby, 1996-1998\n");
1745#endif
9d116dd7
JH
1746#ifdef OEMVS
1747 printf("MVS (OS390) port by Mortice Kern Systems, 1997-1998\n");
1748#endif
f756a9d6 1749#ifdef __VOS__
95b535af 1750 printf("Stratus VOS port by Paul_Green@stratus.com, 1997-1999\n");
f756a9d6 1751#endif
f7eebaad
JH
1752#ifdef __MINT__
1753 printf("MiNT port by Guido Flohr, 1997\n");
1754#endif
baed7233
DL
1755#ifdef BINARY_BUILD_NOTICE
1756 BINARY_BUILD_NOTICE;
1757#endif
760ac839 1758 printf("\n\
79072805 1759Perl may be copied only under the terms of either the Artistic License or the\n\
95103687
GS
1760GNU General Public License, which may be found in the Perl 5.0 source kit.\n\n\
1761Complete documentation for Perl, including FAQ lists, should be found on\n\
1762this system using `man perl' or `perldoc perl'. If you have access to the\n\
1763Internet, point your browser at http://www.perl.com/, the Perl Home Page.\n\n");
6ad3d225 1764 PerlProc_exit(0);
79072805 1765 case 'w':
3280af22 1766 PL_dowarn = TRUE;
79072805
LW
1767 s++;
1768 return s;
a0d0e21e 1769 case '*':
79072805
LW
1770 case ' ':
1771 if (s[1] == '-') /* Additional switches on #! line. */
1772 return s+2;
1773 break;
a0d0e21e 1774 case '-':
79072805 1775 case 0:
507fc525 1776#if defined(WIN32) || !defined(PERL_STRICT_CR)
a868473f
NIS
1777 case '\r':
1778#endif
79072805
LW
1779 case '\n':
1780 case '\t':
1781 break;
aa689395 1782#ifdef ALTERNATE_SHEBANG
1783 case 'S': /* OS/2 needs -S on "extproc" line. */
1784 break;
1785#endif
a0d0e21e 1786 case 'P':
3280af22 1787 if (PL_preprocess)
a0d0e21e
LW
1788 return s+1;
1789 /* FALL THROUGH */
79072805 1790 default:
a0d0e21e 1791 croak("Can't emulate -%.1s on #! line",s);
79072805
LW
1792 }
1793 return Nullch;
1794}
1795
1796/* compliments of Tom Christiansen */
1797
1798/* unexec() can be found in the Gnu emacs distribution */
ee580363 1799/* Known to work with -DUNEXEC and using unexelf.c from GNU emacs-20.2 */
79072805
LW
1800
1801void
8ac85365 1802my_unexec(void)
79072805
LW
1803{
1804#ifdef UNEXEC
46fc3d4c 1805 SV* prog;
1806 SV* file;
ee580363 1807 int status = 1;
79072805
LW
1808 extern int etext;
1809
ee580363 1810 prog = newSVpv(BIN_EXP, 0);
46fc3d4c 1811 sv_catpv(prog, "/perl");
6b88bc9c 1812 file = newSVpv(PL_origfilename, 0);
46fc3d4c 1813 sv_catpv(file, ".perldump");
79072805 1814
ee580363
GS
1815 unexec(SvPVX(file), SvPVX(prog), &etext, sbrk(0), 0);
1816 /* unexec prints msg to stderr in case of failure */
6ad3d225 1817 PerlProc_exit(status);
79072805 1818#else
a5f75d66
AD
1819# ifdef VMS
1820# include <lib$routines.h>
1821 lib$signal(SS$_DEBUG); /* ssdef.h #included from vmsish.h */
aa689395 1822# else
79072805 1823 ABORT(); /* for use with undump */
aa689395 1824# endif
a5f75d66 1825#endif
79072805
LW
1826}
1827
cb68f92d
GS
1828/* initialize curinterp */
1829STATIC void
1830init_interp(void)
1831{
1832
066ef5b5 1833#ifdef PERL_OBJECT /* XXX kludge */
cb68f92d 1834#define I_REINIT \
6b88bc9c
GS
1835 STMT_START { \
1836 PL_chopset = " \n-"; \
1837 PL_copline = NOLINE; \
1838 PL_curcop = &PL_compiling;\
1839 PL_curcopdb = NULL; \
1840 PL_dbargs = 0; \
1841 PL_dlmax = 128; \
1842 PL_laststatval = -1; \
1843 PL_laststype = OP_STAT; \
1844 PL_maxscream = -1; \
1845 PL_maxsysfd = MAXSYSFD; \
1846 PL_statname = Nullsv; \
1847 PL_tmps_floor = -1; \
1848 PL_tmps_ix = -1; \
1849 PL_op_mask = NULL; \
1850 PL_dlmax = 128; \
1851 PL_laststatval = -1; \
1852 PL_laststype = OP_STAT; \
1853 PL_mess_sv = Nullsv; \
1854 PL_splitstr = " "; \
1855 PL_generation = 100; \
1856 PL_exitlist = NULL; \
1857 PL_exitlistlen = 0; \
1858 PL_regindent = 0; \
1859 PL_in_clean_objs = FALSE; \
1860 PL_in_clean_all = FALSE; \
1861 PL_profiledata = NULL; \
1862 PL_rsfp = Nullfp; \
1863 PL_rsfp_filters = Nullav; \
cb68f92d 1864 } STMT_END
9666903d 1865 I_REINIT;
066ef5b5
GS
1866#else
1867# ifdef MULTIPLICITY
1868# define PERLVAR(var,type)
8f872242
NIS
1869# define PERLVARI(var,type,init) PL_curinterp->var = init;
1870# define PERLVARIC(var,type,init) PL_curinterp->var = init;
066ef5b5
GS
1871# include "intrpvar.h"
1872# ifndef USE_THREADS
1873# include "thrdvar.h"
1874# endif
1875# undef PERLVAR
1876# undef PERLVARI
1877# undef PERLVARIC
1878# else
1879# define PERLVAR(var,type)
533c011a
NIS
1880# define PERLVARI(var,type,init) PL_##var = init;
1881# define PERLVARIC(var,type,init) PL_##var = init;
066ef5b5
GS
1882# include "intrpvar.h"
1883# ifndef USE_THREADS
1884# include "thrdvar.h"
1885# endif
1886# undef PERLVAR
1887# undef PERLVARI
1888# undef PERLVARIC
1889# endif
cb68f92d
GS
1890#endif
1891
cb68f92d
GS
1892}
1893
76e3520e 1894STATIC void
8ac85365 1895init_main_stash(void)
79072805 1896{
11343788 1897 dTHR;
463ee0b2 1898 GV *gv;
6e72f9df 1899
1900 /* Note that strtab is a rather special HV. Assumptions are made
1901 about not iterating on it, and not adding tie magic to it.
1902 It is properly deallocated in perl_destruct() */
3280af22 1903 PL_strtab = newHV();
31e3abc2
GB
1904#ifdef USE_THREADS
1905 MUTEX_INIT(&PL_strtab_mutex);
1906#endif
3280af22
NIS
1907 HvSHAREKEYS_off(PL_strtab); /* mandatory */
1908 hv_ksplit(PL_strtab, 512);
6e72f9df 1909
3280af22
NIS
1910 PL_curstash = PL_defstash = newHV();
1911 PL_curstname = newSVpv("main",4);
adbc6bb1
LW
1912 gv = gv_fetchpv("main::",TRUE, SVt_PVHV);
1913 SvREFCNT_dec(GvHV(gv));
3280af22 1914 GvHV(gv) = (HV*)SvREFCNT_inc(PL_defstash);
463ee0b2 1915 SvREADONLY_on(gv);
3280af22
NIS
1916 HvNAME(PL_defstash) = savepv("main");
1917 PL_incgv = gv_HVadd(gv_AVadd(gv_fetchpv("INC",TRUE, SVt_PVAV)));
1918 GvMULTI_on(PL_incgv);
1919 PL_hintgv = gv_fetchpv("\010",TRUE, SVt_PV); /* ^H */
1920 GvMULTI_on(PL_hintgv);
1921 PL_defgv = gv_fetchpv("_",TRUE, SVt_PVAV);
1922 PL_errgv = gv_HVadd(gv_fetchpv("@", TRUE, SVt_PV));
1923 GvMULTI_on(PL_errgv);
1924 PL_replgv = gv_fetchpv("\022", TRUE, SVt_PV); /* ^R */
1925 GvMULTI_on(PL_replgv);
84902520 1926 (void)form("%240s",""); /* Preallocate temp - for immediate signals. */
38a03e6e
MB
1927 sv_grow(ERRSV, 240); /* Preallocate - for immediate signals. */
1928 sv_setpvn(ERRSV, "", 0);
3280af22
NIS
1929 PL_curstash = PL_defstash;
1930 PL_compiling.cop_stash = PL_defstash;
1931 PL_debstash = GvHV(gv_fetchpv("DB::", GV_ADDMULTI, SVt_PVHV));
1932 PL_globalstash = GvHV(gv_fetchpv("CORE::GLOBAL::", GV_ADDMULTI, SVt_PVHV));
4633a7c4 1933 /* We must init $/ before switches are processed. */
32fb8610 1934 sv_setpvn(perl_get_sv("/", TRUE), "\n", 1);
79072805
LW
1935}
1936
76e3520e 1937STATIC void
01f988be 1938open_script(char *scriptname, bool dosearch, SV *sv, int *fdscript)
79072805 1939{
0f15f207 1940 dTHR;
79072805 1941 register char *s;
2a92aaa0 1942
6c4ab083 1943 *fdscript = -1;
79072805 1944
3280af22
NIS
1945 if (PL_e_script) {
1946 PL_origfilename = savepv("-e");
96436eeb 1947 }
6c4ab083
GS
1948 else {
1949 /* if find_script() returns, it returns a malloc()-ed value */
3280af22 1950 PL_origfilename = scriptname = find_script(scriptname, dosearch, NULL, 1);
6c4ab083
GS
1951
1952 if (strnEQ(scriptname, "/dev/fd/", 8) && isDIGIT(scriptname[8]) ) {
1953 char *s = scriptname + 8;
1954 *fdscript = atoi(s);
1955 while (isDIGIT(*s))
1956 s++;
1957 if (*s) {
1958 scriptname = savepv(s + 1);
3280af22
NIS
1959 Safefree(PL_origfilename);
1960 PL_origfilename = scriptname;
6c4ab083
GS
1961 }
1962 }
1963 }
1964
3280af22
NIS
1965 PL_curcop->cop_filegv = gv_fetchfile(PL_origfilename);
1966 if (strEQ(PL_origfilename,"-"))
79072805 1967 scriptname = "";
01f988be 1968 if (*fdscript >= 0) {
3280af22 1969 PL_rsfp = PerlIO_fdopen(*fdscript,PERL_SCRIPT_MODE);
96436eeb 1970#if defined(HAS_FCNTL) && defined(F_SETFD)
3280af22
NIS
1971 if (PL_rsfp)
1972 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
96436eeb 1973#endif
1974 }
3280af22 1975 else if (PL_preprocess) {
46fc3d4c 1976 char *cpp_cfg = CPPSTDIN;
63bfd3db 1977 SV *cpp = newSVpv("",0);
46fc3d4c 1978 SV *cmd = NEWSV(0,0);
1979
1980 if (strEQ(cpp_cfg, "cppstdin"))
1981 sv_catpvf(cpp, "%s/", BIN_EXP);
1982 sv_catpv(cpp, cpp_cfg);
79072805 1983
79072805 1984 sv_catpv(sv,"-I");
fed7345c 1985 sv_catpv(sv,PRIVLIB_EXP);
46fc3d4c 1986
79072805 1987#ifdef MSDOS
46fc3d4c 1988 sv_setpvf(cmd, "\
79072805
LW
1989sed %s -e \"/^[^#]/b\" \
1990 -e \"/^#[ ]*include[ ]/b\" \
1991 -e \"/^#[ ]*define[ ]/b\" \
1992 -e \"/^#[ ]*if[ ]/b\" \
1993 -e \"/^#[ ]*ifdef[ ]/b\" \
1994 -e \"/^#[ ]*ifndef[ ]/b\" \
1995 -e \"/^#[ ]*else/b\" \
1996 -e \"/^#[ ]*elif[ ]/b\" \
1997 -e \"/^#[ ]*undef[ ]/b\" \
1998 -e \"/^#[ ]*endif/b\" \
1999 -e \"s/^#.*//\" \
fc36a67e 2000 %s | %_ -C %_ %s",
6b88bc9c 2001 (PL_doextract ? "-e \"1,/^#/d\n\"" : ""),
79072805 2002#else
46fc3d4c 2003 sv_setpvf(cmd, "\
79072805
LW
2004%s %s -e '/^[^#]/b' \
2005 -e '/^#[ ]*include[ ]/b' \
2006 -e '/^#[ ]*define[ ]/b' \
2007 -e '/^#[ ]*if[ ]/b' \
2008 -e '/^#[ ]*ifdef[ ]/b' \
2009 -e '/^#[ ]*ifndef[ ]/b' \
2010 -e '/^#[ ]*else/b' \
2011 -e '/^#[ ]*elif[ ]/b' \
2012 -e '/^#[ ]*undef[ ]/b' \
2013 -e '/^#[ ]*endif/b' \
2014 -e 's/^[ ]*#.*//' \
fc36a67e 2015 %s | %_ -C %_ %s",
79072805
LW
2016#ifdef LOC_SED
2017 LOC_SED,
2018#else
2019 "sed",
2020#endif
3280af22 2021 (PL_doextract ? "-e '1,/^#/d\n'" : ""),
79072805 2022#endif
46fc3d4c 2023 scriptname, cpp, sv, CPPMINUS);
3280af22 2024 PL_doextract = FALSE;
79072805 2025#ifdef IAMSUID /* actually, this is caught earlier */
b28d0864 2026 if (PL_euid != PL_uid && !PL_euid) { /* if running suidperl */
79072805 2027#ifdef HAS_SETEUID
b28d0864 2028 (void)seteuid(PL_uid); /* musn't stay setuid root */
79072805
LW
2029#else
2030#ifdef HAS_SETREUID
b28d0864 2031 (void)setreuid((Uid_t)-1, PL_uid);
85e6fe83
LW
2032#else
2033#ifdef HAS_SETRESUID
b28d0864 2034 (void)setresuid((Uid_t)-1, PL_uid, (Uid_t)-1);
79072805 2035#else
b28d0864 2036 PerlProc_setuid(PL_uid);
79072805
LW
2037#endif
2038#endif
85e6fe83 2039#endif
b28d0864 2040 if (PerlProc_geteuid() != PL_uid)
463ee0b2 2041 croak("Can't do seteuid!\n");
79072805
LW
2042 }
2043#endif /* IAMSUID */
3280af22 2044 PL_rsfp = PerlProc_popen(SvPVX(cmd), "r");
46fc3d4c 2045 SvREFCNT_dec(cmd);
2046 SvREFCNT_dec(cpp);
79072805
LW
2047 }
2048 else if (!*scriptname) {
bbce6d69 2049 forbid_setid("program input from stdin");
3280af22 2050 PL_rsfp = PerlIO_stdin();
79072805 2051 }
96436eeb 2052 else {
3280af22 2053 PL_rsfp = PerlIO_open(scriptname,PERL_SCRIPT_MODE);
96436eeb 2054#if defined(HAS_FCNTL) && defined(F_SETFD)
3280af22
NIS
2055 if (PL_rsfp)
2056 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,1); /* ensure close-on-exec */
96436eeb 2057#endif
2058 }
3280af22 2059 if (!PL_rsfp) {
13281fa4 2060#ifdef DOSUID
a687059c 2061#ifndef IAMSUID /* in case script is not readable before setuid */
6b88bc9c
GS
2062 if (PL_euid &&
2063 PerlLIO_stat(SvPVX(GvSV(PL_curcop->cop_filegv)),&PL_statbuf) >= 0 &&
2064 PL_statbuf.st_mode & (S_ISUID|S_ISGID))
2065 {
46fc3d4c 2066 /* try again */
6b88bc9c 2067 PerlProc_execv(form("%s/sperl%s", BIN_EXP, PL_patchlevel), PL_origargv);
463ee0b2 2068 croak("Can't do setuid\n");
13281fa4
LW
2069 }
2070#endif
2071#endif
463ee0b2 2072 croak("Can't open perl script \"%s\": %s\n",
3280af22 2073 SvPVX(GvSV(PL_curcop->cop_filegv)), Strerror(errno));
13281fa4 2074 }
79072805 2075}
8d063cd8 2076
465fbd0a
JH
2077#ifdef IAMSUID
2078static int
2079fd_on_nosuid_fs(int fd)
2080{
2081 int on_nosuid = 0;
f82e96e5 2082 int check_okay = 0;
465fbd0a
JH
2083/*
2084 * Preferred order: fstatvfs(), fstatfs(), getmntent().
2085 * fstatvfs() is UNIX98.
2086 * fstatfs() is BSD.
2087 * getmntent() is O(number-of-mounted-filesystems) and can hang.
2088 */
2089
2090# ifdef HAS_FSTATVFS
2091 struct statvfs stfs;
2092 check_okay = fstatvfs(fd, &stfs) == 0;
2093 on_nosuid = check_okay && (stfs.f_flag & ST_NOSUID);
2094# else
2095# if defined(HAS_FSTATFS) && defined(HAS_STRUCT_STATFS_FLAGS)
2096 struct statfs stfs;
2097 check_okay = fstatfs(fd, &stfs) == 0;
2098# undef PERL_MOUNT_NOSUID
2099# if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
2100# define PERL_MOUNT_NOSUID MNT_NOSUID
2101# endif
2102# if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
2103# define PERL_MOUNT_NOSUID MS_NOSUID
2104# endif
2105# if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
2106# define PERL_MOUNT_NOSUID M_NOSUID
2107# endif
2108# ifdef PERL_MOUNT_NOSUID
2109 on_nosuid = check_okay && (stfs.f_flags & PERL_MOUNT_NOSUID);
2110# endif
2111# else
f82e96e5 2112# if defined(HAS_GETMNTENT) && defined(HAS_HASMNTOPT) && defined(MNTOPT_NOSUID)
465fbd0a
JH
2113 FILE *mtab = fopen("/etc/mtab", "r");
2114 struct mntent *entry;
2115 struct stat stb, fsb;
2116
f82e96e5 2117 if (mtab && (fstat(fd, &stb) == 0)) {
465fbd0a 2118 while (entry = getmntent(mtab)) {
f82e96e5
JH
2119 if (stat(entry->mnt_dir, &fsb) == 0
2120 && fsb.st_dev == stb.st_dev)
2121 {
2122 /* found the filesystem */
2123 check_okay = 1;
2124 if (hasmntopt(entry, MNTOPT_NOSUID))
2125 on_nosuid = 1;
465fbd0a
JH
2126 break;
2127 } /* A single fs may well fail its stat(). */
2128 }
f82e96e5 2129 }
465fbd0a
JH
2130 if (mtab)
2131 fclose(mtab);
2132# endif /* mntent */
2133# endif /* statfs */
2134# endif /* statvfs */
2135 if (!check_okay)
f82e96e5
JH
2136 croak("Can't check filesystem of script \"%s\" for nosuid",
2137 PL_origfilename);
465fbd0a
JH
2138 return on_nosuid;
2139}
2140#endif /* IAMSUID */
2141
76e3520e 2142STATIC void
01f988be 2143validate_suid(char *validarg, char *scriptname, int fdscript)
79072805 2144{
96436eeb 2145 int which;
2146
13281fa4
LW
2147 /* do we need to emulate setuid on scripts? */
2148
2149 /* This code is for those BSD systems that have setuid #! scripts disabled
2150 * in the kernel because of a security problem. Merely defining DOSUID
2151 * in perl will not fix that problem, but if you have disabled setuid
2152 * scripts in the kernel, this will attempt to emulate setuid and setgid
2153 * on scripts that have those now-otherwise-useless bits set. The setuid
27e2fb84
LW
2154 * root version must be called suidperl or sperlN.NNN. If regular perl
2155 * discovers that it has opened a setuid script, it calls suidperl with
2156 * the same argv that it had. If suidperl finds that the script it has
2157 * just opened is NOT setuid root, it sets the effective uid back to the
2158 * uid. We don't just make perl setuid root because that loses the
2159 * effective uid we had before invoking perl, if it was different from the
2160 * uid.
13281fa4
LW
2161 *
2162 * DOSUID must be defined in both perl and suidperl, and IAMSUID must
2163 * be defined in suidperl only. suidperl must be setuid root. The
2164 * Configure script will set this up for you if you want it.
2165 */
a687059c 2166
13281fa4 2167#ifdef DOSUID
ea0efc06 2168 dTHR;
6e72f9df 2169 char *s, *s2;
a0d0e21e 2170
b28d0864 2171 if (PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf) < 0) /* normal stat is insecure */
6b88bc9c 2172 croak("Can't stat script \"%s\"",PL_origfilename);
b28d0864 2173 if (fdscript < 0 && PL_statbuf.st_mode & (S_ISUID|S_ISGID)) {
79072805 2174 I32 len;
36596149 2175 STRLEN n_a;
13281fa4 2176
a687059c 2177#ifdef IAMSUID
fe14fcc3 2178#ifndef HAS_SETREUID
a687059c
LW
2179 /* On this access check to make sure the directories are readable,
2180 * there is actually a small window that the user could use to make
2181 * filename point to an accessible directory. So there is a faint
2182 * chance that someone could execute a setuid script down in a
2183 * non-accessible directory. I don't know what to do about that.
2184 * But I don't think it's too important. The manual lies when
2185 * it says access() is useful in setuid programs.
2186 */
6b88bc9c 2187 if (PerlLIO_access(SvPVX(GvSV(PL_curcop->cop_filegv)),1)) /*double check*/
463ee0b2 2188 croak("Permission denied");
a687059c
LW
2189#else
2190 /* If we can swap euid and uid, then we can determine access rights
2191 * with a simple stat of the file, and then compare device and
2192 * inode to make sure we did stat() on the same file we opened.
2193 * Then we just have to make sure he or she can execute it.
2194 */
2195 {
2196 struct stat tmpstatbuf;
2197
85e6fe83
LW
2198 if (
2199#ifdef HAS_SETREUID
b28d0864 2200 setreuid(PL_euid,PL_uid) < 0
a0d0e21e
LW
2201#else
2202# if HAS_SETRESUID
b28d0864 2203 setresuid(PL_euid,PL_uid,(Uid_t)-1) < 0
a0d0e21e 2204# endif
85e6fe83 2205#endif
b28d0864 2206 || PerlProc_getuid() != PL_euid || PerlProc_geteuid() != PL_uid)
463ee0b2 2207 croak("Can't swap uid and euid"); /* really paranoid */
6b88bc9c 2208 if (PerlLIO_stat(SvPVX(GvSV(PL_curcop->cop_filegv)),&tmpstatbuf) < 0)
463ee0b2 2209 croak("Permission denied"); /* testing full pathname here */
f82e96e5
JH
2210#if defined(IAMSUID) && !defined(NO_NOSUID_CHECK)
2211 if (fd_on_nosuid_fs(PerlIO_fileno(PL_rsfp)))
465fbd0a
JH
2212 croak("Permission denied");
2213#endif
b28d0864
NIS
2214 if (tmpstatbuf.st_dev != PL_statbuf.st_dev ||
2215 tmpstatbuf.st_ino != PL_statbuf.st_ino) {
2216 (void)PerlIO_close(PL_rsfp);
2217 if (PL_rsfp = PerlProc_popen("/bin/mail root","w")) { /* heh, heh */
2218 PerlIO_printf(PL_rsfp,
ff0cee69 2219"User %ld tried to run dev %ld ino %ld in place of dev %ld ino %ld!\n\
2220(Filename of set-id script was %s, uid %ld gid %ld.)\n\nSincerely,\nperl\n",
b28d0864
NIS
2221 (long)PL_uid,(long)tmpstatbuf.st_dev, (long)tmpstatbuf.st_ino,
2222 (long)PL_statbuf.st_dev, (long)PL_statbuf.st_ino,
6b88bc9c 2223 SvPVX(GvSV(PL_curcop->cop_filegv)),
b28d0864
NIS
2224 (long)PL_statbuf.st_uid, (long)PL_statbuf.st_gid);
2225 (void)PerlProc_pclose(PL_rsfp);
a687059c 2226 }
463ee0b2 2227 croak("Permission denied\n");
a687059c 2228 }
85e6fe83
LW
2229 if (
2230#ifdef HAS_SETREUID
b28d0864 2231 setreuid(PL_uid,PL_euid) < 0
a0d0e21e
LW
2232#else
2233# if defined(HAS_SETRESUID)
b28d0864 2234 setresuid(PL_uid,PL_euid,(Uid_t)-1) < 0
a0d0e21e 2235# endif
85e6fe83 2236#endif
b28d0864 2237 || PerlProc_getuid() != PL_uid || PerlProc_geteuid() != PL_euid)
463ee0b2 2238 croak("Can't reswap uid and euid");
b28d0864 2239 if (!cando(S_IXUSR,FALSE,&PL_statbuf)) /* can real uid exec? */
463ee0b2 2240 croak("Permission denied\n");
a687059c 2241 }
fe14fcc3 2242#endif /* HAS_SETREUID */
a687059c
LW
2243#endif /* IAMSUID */
2244
b28d0864 2245 if (!S_ISREG(PL_statbuf.st_mode))
463ee0b2 2246 croak("Permission denied");
b28d0864 2247 if (PL_statbuf.st_mode & S_IWOTH)
463ee0b2 2248 croak("Setuid/gid script is writable by world");
6b88bc9c
GS
2249 PL_doswitches = FALSE; /* -s is insecure in suid */
2250 PL_curcop->cop_line++;
2251 if (sv_gets(PL_linestr, PL_rsfp, 0) == Nullch ||
36596149 2252 strnNE(SvPV(PL_linestr,n_a),"#!",2) ) /* required even on Sys V */
463ee0b2 2253 croak("No #! line");
36596149 2254 s = SvPV(PL_linestr,n_a)+2;
663a0e37 2255 if (*s == ' ') s++;
45d8adaa 2256 while (!isSPACE(*s)) s++;
36596149 2257 for (s2 = s; (s2 > SvPV(PL_linestr,n_a)+2 &&
6e72f9df 2258 (isDIGIT(s2[-1]) || strchr("._-", s2[-1]))); s2--) ;
2259 if (strnNE(s2-4,"perl",4) && strnNE(s-9,"perl",4)) /* sanity check */
463ee0b2 2260 croak("Not a perl script");
a687059c 2261 while (*s == ' ' || *s == '\t') s++;
13281fa4
LW
2262 /*
2263 * #! arg must be what we saw above. They can invoke it by
2264 * mentioning suidperl explicitly, but they may not add any strange
2265 * arguments beyond what #! says if they do invoke suidperl that way.
2266 */
2267 len = strlen(validarg);
2268 if (strEQ(validarg," PHOOEY ") ||
45d8adaa 2269 strnNE(s,validarg,len) || !isSPACE(s[len]))
463ee0b2 2270 croak("Args must match #! line");
a687059c
LW
2271
2272#ifndef IAMSUID
b28d0864
NIS
2273 if (PL_euid != PL_uid && (PL_statbuf.st_mode & S_ISUID) &&
2274 PL_euid == PL_statbuf.st_uid)
2275 if (!PL_do_undump)
463ee0b2 2276 croak("YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
a687059c
LW
2277FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
2278#endif /* IAMSUID */
13281fa4 2279
b28d0864
NIS
2280 if (PL_euid) { /* oops, we're not the setuid root perl */
2281 (void)PerlIO_close(PL_rsfp);
13281fa4 2282#ifndef IAMSUID
46fc3d4c 2283 /* try again */
6b88bc9c 2284 PerlProc_execv(form("%s/sperl%s", BIN_EXP, PL_patchlevel), PL_origargv);
13281fa4 2285#endif
463ee0b2 2286 croak("Can't do setuid\n");
13281fa4
LW
2287 }
2288
b28d0864 2289 if (PL_statbuf.st_mode & S_ISGID && PL_statbuf.st_gid != PL_egid) {
fe14fcc3 2290#ifdef HAS_SETEGID
b28d0864 2291 (void)setegid(PL_statbuf.st_gid);
a687059c 2292#else
fe14fcc3 2293#ifdef HAS_SETREGID
b28d0864 2294 (void)setregid((Gid_t)-1,PL_statbuf.st_gid);
85e6fe83
LW
2295#else
2296#ifdef HAS_SETRESGID
b28d0864 2297 (void)setresgid((Gid_t)-1,PL_statbuf.st_gid,(Gid_t)-1);
a687059c 2298#else
b28d0864 2299 PerlProc_setgid(PL_statbuf.st_gid);
a687059c
LW
2300#endif
2301#endif
85e6fe83 2302#endif
b28d0864 2303 if (PerlProc_getegid() != PL_statbuf.st_gid)
463ee0b2 2304 croak("Can't do setegid!\n");
83025b21 2305 }
b28d0864
NIS
2306 if (PL_statbuf.st_mode & S_ISUID) {
2307 if (PL_statbuf.st_uid != PL_euid)
fe14fcc3 2308#ifdef HAS_SETEUID
b28d0864 2309 (void)seteuid(PL_statbuf.st_uid); /* all that for this */
a687059c 2310#else
fe14fcc3 2311#ifdef HAS_SETREUID
b28d0864 2312 (void)setreuid((Uid_t)-1,PL_statbuf.st_uid);
85e6fe83
LW
2313#else
2314#ifdef HAS_SETRESUID
b28d0864 2315 (void)setresuid((Uid_t)-1,PL_statbuf.st_uid,(Uid_t)-1);
a687059c 2316#else
b28d0864 2317 PerlProc_setuid(PL_statbuf.st_uid);
a687059c
LW
2318#endif
2319#endif
85e6fe83 2320#endif
b28d0864 2321 if (PerlProc_geteuid() != PL_statbuf.st_uid)
463ee0b2 2322 croak("Can't do seteuid!\n");
a687059c 2323 }
b28d0864 2324 else if (PL_uid) { /* oops, mustn't run as root */
fe14fcc3 2325#ifdef HAS_SETEUID
b28d0864 2326 (void)seteuid((Uid_t)PL_uid);
a687059c 2327#else
fe14fcc3 2328#ifdef HAS_SETREUID
b28d0864 2329 (void)setreuid((Uid_t)-1,(Uid_t)PL_uid);
a687059c 2330#else
85e6fe83 2331#ifdef HAS_SETRESUID
b28d0864 2332 (void)setresuid((Uid_t)-1,(Uid_t)PL_uid,(Uid_t)-1);
85e6fe83 2333#else
b28d0864 2334 PerlProc_setuid((Uid_t)PL_uid);
85e6fe83 2335#endif
a687059c
LW
2336#endif
2337#endif
b28d0864 2338 if (PerlProc_geteuid() != PL_uid)
463ee0b2 2339 croak("Can't do seteuid!\n");
83025b21 2340 }
748a9306 2341 init_ids();
b28d0864 2342 if (!cando(S_IXUSR,TRUE,&PL_statbuf))
463ee0b2 2343 croak("Permission denied\n"); /* they can't do this */
13281fa4
LW
2344 }
2345#ifdef IAMSUID
6b88bc9c 2346 else if (PL_preprocess)
463ee0b2 2347 croak("-P not allowed for setuid/setgid script\n");
96436eeb 2348 else if (fdscript >= 0)
2349 croak("fd script not allowed in suidperl\n");
13281fa4 2350 else
463ee0b2 2351 croak("Script is not setuid/setgid in suidperl\n");
96436eeb 2352
2353 /* We absolutely must clear out any saved ids here, so we */
2354 /* exec the real perl, substituting fd script for scriptname. */
2355 /* (We pass script name as "subdir" of fd, which perl will grok.) */
b28d0864
NIS
2356 PerlIO_rewind(PL_rsfp);
2357 PerlLIO_lseek(PerlIO_fileno(PL_rsfp),(Off_t)0,0); /* just in case rewind didn't */
6b88bc9c
GS
2358 for (which = 1; PL_origargv[which] && PL_origargv[which] != scriptname; which++) ;
2359 if (!PL_origargv[which])
96436eeb 2360 croak("Permission denied");
6b88bc9c
GS
2361 PL_origargv[which] = savepv(form("/dev/fd/%d/%s",
2362 PerlIO_fileno(PL_rsfp), PL_origargv[which]));
96436eeb 2363#if defined(HAS_FCNTL) && defined(F_SETFD)
b28d0864 2364 fcntl(PerlIO_fileno(PL_rsfp),F_SETFD,0); /* ensure no close-on-exec */
96436eeb 2365#endif
6b88bc9c 2366 PerlProc_execv(form("%s/perl%s", BIN_EXP, PL_patchlevel), PL_origargv);/* try again */
96436eeb 2367 croak("Can't do setuid\n");
13281fa4 2368#endif /* IAMSUID */
a687059c 2369#else /* !DOSUID */
3280af22 2370 if (PL_euid != PL_uid || PL_egid != PL_gid) { /* (suidperl doesn't exist, in fact) */
a687059c 2371#ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
96827780 2372 dTHR;
b28d0864
NIS
2373 PerlLIO_fstat(PerlIO_fileno(PL_rsfp),&PL_statbuf); /* may be either wrapped or real suid */
2374 if ((PL_euid != PL_uid && PL_euid == PL_statbuf.st_uid && PL_statbuf.st_mode & S_ISUID)
a687059c 2375 ||
b28d0864 2376 (PL_egid != PL_gid && PL_egid == PL_statbuf.st_gid && PL_statbuf.st_mode & S_ISGID)
a687059c 2377 )
b28d0864 2378 if (!PL_do_undump)
463ee0b2 2379 croak("YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!\n\
a687059c
LW
2380FIX YOUR KERNEL, PUT A C WRAPPER AROUND THIS SCRIPT, OR USE -u AND UNDUMP!\n");
2381#endif /* SETUID_SCRIPTS_ARE_SECURE_NOW */
2382 /* not set-id, must be wrapped */
a687059c 2383 }
13281fa4 2384#endif /* DOSUID */
79072805 2385}
13281fa4 2386
76e3520e 2387STATIC void
8ac85365 2388find_beginning(void)
79072805 2389{
6e72f9df 2390 register char *s, *s2;
33b78306
LW
2391
2392 /* skip forward in input to the real script? */
2393
bbce6d69 2394 forbid_setid("-x");
3280af22
NIS
2395 while (PL_doextract) {
2396 if ((s = sv_gets(PL_linestr, PL_rsfp, 0)) == Nullch)
463ee0b2 2397 croak("No Perl script found in input\n");
6e72f9df 2398 if (*s == '#' && s[1] == '!' && (s = instr(s,"perl"))) {
3280af22
NIS
2399 PerlIO_ungetc(PL_rsfp, '\n'); /* to keep line count right */
2400 PL_doextract = FALSE;
6e72f9df 2401 while (*s && !(isSPACE (*s) || *s == '#')) s++;
2402 s2 = s;
2403 while (*s == ' ' || *s == '\t') s++;
2404 if (*s++ == '-') {
2405 while (isDIGIT(s2[-1]) || strchr("-._", s2[-1])) s2--;
2406 if (strnEQ(s2-4,"perl",4))
2407 /*SUPPRESS 530*/
2408 while (s = moreswitches(s)) ;
33b78306 2409 }
3280af22
NIS
2410 if (PL_cddir && PerlDir_chdir(PL_cddir) < 0)
2411 croak("Can't chdir to %s",PL_cddir);
83025b21
LW
2412 }
2413 }
2414}
2415
afe37c7d 2416
76e3520e 2417STATIC void
8ac85365 2418init_ids(void)
352d5a3a 2419{
3280af22
NIS
2420 PL_uid = (int)PerlProc_getuid();
2421 PL_euid = (int)PerlProc_geteuid();
2422 PL_gid = (int)PerlProc_getgid();
2423 PL_egid = (int)PerlProc_getegid();
748a9306 2424#ifdef VMS
b28d0864
NIS
2425 PL_uid |= PL_gid << 16;
2426 PL_euid |= PL_egid << 16;
748a9306 2427#endif
3280af22 2428 PL_tainting |= (PL_uid && (PL_euid != PL_uid || PL_egid != PL_gid));
748a9306 2429}
79072805 2430
76e3520e 2431STATIC void
8ac85365 2432forbid_setid(char *s)
bbce6d69 2433{
3280af22 2434 if (PL_euid != PL_uid)
bbce6d69 2435 croak("No %s allowed while running setuid", s);
3280af22 2436 if (PL_egid != PL_gid)
bbce6d69 2437 croak("No %s allowed while running setgid", s);
2438}
2439
76e3520e 2440STATIC void
8ac85365 2441init_debugger(void)
748a9306 2442{
11343788 2443 dTHR;
3280af22
NIS
2444 PL_curstash = PL_debstash;
2445 PL_dbargs = GvAV(gv_AVadd((gv_fetchpv("args", GV_ADDMULTI, SVt_PVAV))));
2446 AvREAL_off(PL_dbargs);
2447 PL_DBgv = gv_fetchpv("DB", GV_ADDMULTI, SVt_PVGV);
2448 PL_DBline = gv_fetchpv("dbline", GV_ADDMULTI, SVt_PVAV);
2449 PL_DBsub = gv_HVadd(gv_fetchpv("sub", GV_ADDMULTI, SVt_PVHV));
2450 PL_DBsingle = GvSV((gv_fetchpv("single", GV_ADDMULTI, SVt_PV)));
2451 sv_setiv(PL_DBsingle, 0);
2452 PL_DBtrace = GvSV((gv_fetchpv("trace", GV_ADDMULTI, SVt_PV)));
2453 sv_setiv(PL_DBtrace, 0);
2454 PL_DBsignal = GvSV((gv_fetchpv("signal", GV_ADDMULTI, SVt_PV)));
2455 sv_setiv(PL_DBsignal, 0);
2456 PL_curstash = PL_defstash;
352d5a3a
LW
2457}
2458
2ce36478
SM
2459#ifndef STRESS_REALLOC
2460#define REASONABLE(size) (size)
2461#else
2462#define REASONABLE(size) (1) /* unreasonable */
2463#endif
2464
11343788 2465void
8ac85365 2466init_stacks(ARGSproto)
79072805 2467{
e336de0d 2468 /* start with 128-item stack and 8K cxstack */
3280af22 2469 PL_curstackinfo = new_stackinfo(REASONABLE(128),
e336de0d 2470 REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
3280af22
NIS
2471 PL_curstackinfo->si_type = PERLSI_MAIN;
2472 PL_curstack = PL_curstackinfo->si_stack;
2473 PL_mainstack = PL_curstack; /* remember in case we switch stacks */
79072805 2474
3280af22
NIS
2475 PL_stack_base = AvARRAY(PL_curstack);
2476 PL_stack_sp = PL_stack_base;
2477 PL_stack_max = PL_stack_base + AvMAX(PL_curstack);
8990e307 2478
3280af22
NIS
2479 New(50,PL_tmps_stack,REASONABLE(128),SV*);
2480 PL_tmps_floor = -1;
2481 PL_tmps_ix = -1;
2482 PL_tmps_max = REASONABLE(128);
8990e307 2483
3280af22
NIS
2484 New(54,PL_markstack,REASONABLE(32),I32);
2485 PL_markstack_ptr = PL_markstack;
2486 PL_markstack_max = PL_markstack + REASONABLE(32);
79072805 2487
e336de0d
GS
2488 SET_MARKBASE;
2489
3280af22
NIS
2490 New(54,PL_scopestack,REASONABLE(32),I32);
2491 PL_scopestack_ix = 0;
2492 PL_scopestack_max = REASONABLE(32);
79072805 2493
3280af22
NIS
2494 New(54,PL_savestack,REASONABLE(128),ANY);
2495 PL_savestack_ix = 0;
2496 PL_savestack_max = REASONABLE(128);
79072805 2497
3280af22
NIS
2498 New(54,PL_retstack,REASONABLE(16),OP*);
2499 PL_retstack_ix = 0;
2500 PL_retstack_max = REASONABLE(16);
378cc40b 2501}
33b78306 2502
2ce36478
SM
2503#undef REASONABLE
2504
76e3520e 2505STATIC void
8ac85365 2506nuke_stacks(void)
6e72f9df 2507{
e858de61 2508 dTHR;
3280af22
NIS
2509 while (PL_curstackinfo->si_next)
2510 PL_curstackinfo = PL_curstackinfo->si_next;
2511 while (PL_curstackinfo) {
2512 PERL_SI *p = PL_curstackinfo->si_prev;
bac4b2ad 2513 /* curstackinfo->si_stack got nuked by sv_free_arenas() */
3280af22
NIS
2514 Safefree(PL_curstackinfo->si_cxstack);
2515 Safefree(PL_curstackinfo);
2516 PL_curstackinfo = p;
e336de0d 2517 }
3280af22
NIS
2518 Safefree(PL_tmps_stack);
2519 Safefree(PL_markstack);
2520 Safefree(PL_scopestack);
2521 Safefree(PL_savestack);
2522 Safefree(PL_retstack);
5f05dabc 2523 DEBUG( {
3280af22
NIS
2524 Safefree(PL_debname);
2525 Safefree(PL_debdelim);
5f05dabc 2526 } )
378cc40b 2527}
33b78306 2528
76e3520e 2529#ifndef PERL_OBJECT
760ac839 2530static PerlIO *tmpfp; /* moved outside init_lexer() because of UNICOS bug */
76e3520e 2531#endif
7aa04957 2532
76e3520e 2533STATIC void
8ac85365 2534init_lexer(void)
8990e307 2535{
76e3520e
GS
2536#ifdef PERL_OBJECT
2537 PerlIO *tmpfp;
2538#endif
3280af22
NIS
2539 tmpfp = PL_rsfp;
2540 PL_rsfp = Nullfp;
2541 lex_start(PL_linestr);
2542 PL_rsfp = tmpfp;
2543 PL_subname = newSVpv("main",4);
8990e307
LW
2544}
2545
76e3520e 2546STATIC void
8ac85365 2547init_predump_symbols(void)
45d8adaa 2548{
11343788 2549 dTHR;
93a17b20 2550 GV *tmpgv;
a0d0e21e 2551 GV *othergv;
79072805 2552
e1c148c2 2553 sv_setpvn(perl_get_sv("\"", TRUE), " ", 1);
3280af22
NIS
2554 PL_stdingv = gv_fetchpv("STDIN",TRUE, SVt_PVIO);
2555 GvMULTI_on(PL_stdingv);
2556 IoIFP(GvIOp(PL_stdingv)) = PerlIO_stdin();
adbc6bb1 2557 tmpgv = gv_fetchpv("stdin",TRUE, SVt_PV);
a5f75d66 2558 GvMULTI_on(tmpgv);
3280af22 2559 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(GvIOp(PL_stdingv));
79072805 2560
85e6fe83 2561 tmpgv = gv_fetchpv("STDOUT",TRUE, SVt_PVIO);
a5f75d66 2562 GvMULTI_on(tmpgv);
760ac839 2563 IoOFP(GvIOp(tmpgv)) = IoIFP(GvIOp(tmpgv)) = PerlIO_stdout();
4633a7c4 2564 setdefout(tmpgv);
adbc6bb1 2565 tmpgv = gv_fetchpv("stdout",TRUE, SVt_PV);
a5f75d66 2566 GvMULTI_on(tmpgv);
3280af22 2567 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(GvIOp(PL_defoutgv));
79072805 2568
a0d0e21e 2569 othergv = gv_fetchpv("STDERR",TRUE, SVt_PVIO);
a5f75d66 2570 GvMULTI_on(othergv);
760ac839 2571 IoOFP(GvIOp(othergv)) = IoIFP(GvIOp(othergv)) = PerlIO_stderr();
adbc6bb1 2572 tmpgv = gv_fetchpv("stderr",TRUE, SVt_PV);
a5f75d66 2573 GvMULTI_on(tmpgv);
a0d0e21e 2574 GvIOp(tmpgv) = (IO*)SvREFCNT_inc(GvIOp(othergv));
79072805 2575
3280af22 2576 PL_statname = NEWSV(66,0); /* last filename we did stat on */
ab821d7f 2577
3280af22
NIS
2578 if (!PL_osname)
2579 PL_osname = savepv(OSNAME);
79072805 2580}
33b78306 2581
76e3520e 2582STATIC void
8ac85365 2583init_postdump_symbols(register int argc, register char **argv, register char **env)
33b78306 2584{
a863c7d1 2585 dTHR;
79072805
LW
2586 char *s;
2587 SV *sv;
2588 GV* tmpgv;
fe14fcc3 2589
79072805 2590 argc--,argv++; /* skip name of script */
3280af22 2591 if (PL_doswitches) {
79072805
LW
2592 for (; argc > 0 && **argv == '-'; argc--,argv++) {
2593 if (!argv[0][1])
2594 break;
2595 if (argv[0][1] == '-') {
2596 argc--,argv++;
2597 break;
2598 }
93a17b20 2599 if (s = strchr(argv[0], '=')) {
79072805 2600 *s++ = '\0';
85e6fe83 2601 sv_setpv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),s);
79072805
LW
2602 }
2603 else
85e6fe83 2604 sv_setiv(GvSV(gv_fetchpv(argv[0]+1,TRUE, SVt_PV)),1);
fe14fcc3 2605 }
79072805 2606 }
3280af22
NIS
2607 PL_toptarget = NEWSV(0,0);
2608 sv_upgrade(PL_toptarget, SVt_PVFM);
2609 sv_setpvn(PL_toptarget, "", 0);
2610 PL_bodytarget = NEWSV(0,0);
2611 sv_upgrade(PL_bodytarget, SVt_PVFM);
2612 sv_setpvn(PL_bodytarget, "", 0);
2613 PL_formtarget = PL_bodytarget;
79072805 2614
bbce6d69 2615 TAINT;
85e6fe83 2616 if (tmpgv = gv_fetchpv("0",TRUE, SVt_PV)) {
3280af22 2617 sv_setpv(GvSV(tmpgv),PL_origfilename);
79072805
LW
2618 magicname("0", "0", 1);
2619 }
85e6fe83 2620 if (tmpgv = gv_fetchpv("\030",TRUE, SVt_PV))
3280af22
NIS
2621 sv_setpv(GvSV(tmpgv),PL_origargv[0]);
2622 if (PL_argvgv = gv_fetchpv("ARGV",TRUE, SVt_PVAV)) {
2623 GvMULTI_on(PL_argvgv);
2624 (void)gv_AVadd(PL_argvgv);
2625 av_clear(GvAVn(PL_argvgv));
79072805 2626 for (; argc > 0; argc--,argv++) {
3280af22 2627 av_push(GvAVn(PL_argvgv),newSVpv(argv[0],0));
79072805
LW
2628 }
2629 }
3280af22 2630 if (PL_envgv = gv_fetchpv("ENV",TRUE, SVt_PVHV)) {
79072805 2631 HV *hv;
3280af22
NIS
2632 GvMULTI_on(PL_envgv);
2633 hv = GvHVn(PL_envgv);
2634 hv_magic(hv, PL_envgv, 'E');
a0d0e21e 2635#ifndef VMS /* VMS doesn't have environ array */
4633a7c4
LW
2636 /* Note that if the supplied env parameter is actually a copy
2637 of the global environ then it may now point to free'd memory
2638 if the environment has been modified since. To avoid this
2639 problem we treat env==NULL as meaning 'use the default'
2640 */
2641 if (!env)
2642 env = environ;
5aabfad6 2643 if (env != environ)
79072805
LW
2644 environ[0] = Nullch;
2645 for (; *env; env++) {
93a17b20 2646 if (!(s = strchr(*env,'=')))
79072805
LW
2647 continue;
2648 *s++ = '\0';
60ce6247 2649#if defined(MSDOS)
137443ea 2650 (void)strupr(*env);
2651#endif
79072805
LW
2652 sv = newSVpv(s--,0);
2653 (void)hv_store(hv, *env, s - *env, sv, 0);
2654 *s = '=';
3e3baf6d
TB
2655#if defined(__BORLANDC__) && defined(USE_WIN32_RTL_ENV)
2656 /* Sins of the RTL. See note in my_setenv(). */
76e3520e 2657 (void)PerlEnv_putenv(savepv(*env));
3e3baf6d 2658#endif
fe14fcc3 2659 }
4550b24a 2660#endif
2661#ifdef DYNAMIC_ENV_FETCH
2662 HvNAME(hv) = savepv(ENV_HV_NAME);
2663#endif
79072805 2664 }
bbce6d69 2665 TAINT_NOT;
85e6fe83 2666 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1e422769 2667 sv_setiv(GvSV(tmpgv), (IV)getpid());
33b78306 2668}
34de22dd 2669
76e3520e 2670STATIC void
8ac85365 2671init_perllib(void)
34de22dd 2672{
85e6fe83 2673 char *s;
3280af22 2674 if (!PL_tainting) {
552a7a9b 2675#ifndef VMS
76e3520e 2676 s = PerlEnv_getenv("PERL5LIB");
85e6fe83 2677 if (s)
774d564b 2678 incpush(s, TRUE);
85e6fe83 2679 else
76e3520e 2680 incpush(PerlEnv_getenv("PERLLIB"), FALSE);
552a7a9b 2681#else /* VMS */
2682 /* Treat PERL5?LIB as a possible search list logical name -- the
2683 * "natural" VMS idiom for a Unix path string. We allow each
2684 * element to be a set of |-separated directories for compatibility.
2685 */
2686 char buf[256];
2687 int idx = 0;
2688 if (my_trnlnm("PERL5LIB",buf,0))
774d564b 2689 do { incpush(buf,TRUE); } while (my_trnlnm("PERL5LIB",buf,++idx));
552a7a9b 2690 else
774d564b 2691 while (my_trnlnm("PERLLIB",buf,idx++)) incpush(buf,FALSE);
552a7a9b 2692#endif /* VMS */
85e6fe83 2693 }
34de22dd 2694
c90c0ff4 2695/* Use the ~-expanded versions of APPLLIB (undocumented),
dfe9444c 2696 ARCHLIB PRIVLIB SITEARCH and SITELIB
df5cef82 2697*/
4633a7c4 2698#ifdef APPLLIB_EXP
43051805 2699 incpush(APPLLIB_EXP, TRUE);
16d20bd9 2700#endif
4633a7c4 2701
fed7345c 2702#ifdef ARCHLIB_EXP
774d564b 2703 incpush(ARCHLIB_EXP, FALSE);
a0d0e21e 2704#endif
fed7345c
AD
2705#ifndef PRIVLIB_EXP
2706#define PRIVLIB_EXP "/usr/local/lib/perl5:/usr/local/lib/perl"
34de22dd 2707#endif
00dc2f4f
GS
2708#if defined(WIN32)
2709 incpush(PRIVLIB_EXP, TRUE);
2710#else
774d564b 2711 incpush(PRIVLIB_EXP, FALSE);
00dc2f4f 2712#endif
4633a7c4
LW
2713
2714#ifdef SITEARCH_EXP
774d564b 2715 incpush(SITEARCH_EXP, FALSE);
4633a7c4
LW
2716#endif
2717#ifdef SITELIB_EXP
00dc2f4f
GS
2718#if defined(WIN32)
2719 incpush(SITELIB_EXP, TRUE);
2720#else
774d564b 2721 incpush(SITELIB_EXP, FALSE);
4633a7c4 2722#endif
00dc2f4f 2723#endif
3280af22 2724 if (!PL_tainting)
774d564b 2725 incpush(".", FALSE);
2726}
2727
2728#if defined(DOSISH)
2729# define PERLLIB_SEP ';'
2730#else
2731# if defined(VMS)
2732# define PERLLIB_SEP '|'
2733# else
2734# define PERLLIB_SEP ':'
2735# endif
2736#endif
2737#ifndef PERLLIB_MANGLE
2738# define PERLLIB_MANGLE(s,n) (s)
2739#endif
2740
76e3520e 2741STATIC void
8ac85365 2742incpush(char *p, int addsubdirs)
774d564b 2743{
2744 SV *subdir = Nullsv;
774d564b 2745
2746 if (!p)
2747 return;
2748
2749 if (addsubdirs) {
00db4c45 2750 subdir = sv_newmortal();
3280af22
NIS
2751 if (!PL_archpat_auto) {
2752 STRLEN len = (sizeof(ARCHNAME) + strlen(PL_patchlevel)
774d564b 2753 + sizeof("//auto"));
3280af22
NIS
2754 New(55, PL_archpat_auto, len, char);
2755 sprintf(PL_archpat_auto, "/%s/%s/auto", ARCHNAME, PL_patchlevel);
aa689395 2756#ifdef VMS
2757 for (len = sizeof(ARCHNAME) + 2;
6b88bc9c
GS
2758 PL_archpat_auto[len] != '\0' && PL_archpat_auto[len] != '/'; len++)
2759 if (PL_archpat_auto[len] == '.') PL_archpat_auto[len] = '_';
aa689395 2760#endif
774d564b 2761 }
2762 }
2763
2764 /* Break at all separators */
2765 while (p && *p) {
8c52afec 2766 SV *libdir = NEWSV(55,0);
774d564b 2767 char *s;
2768
2769 /* skip any consecutive separators */
2770 while ( *p == PERLLIB_SEP ) {
2771 /* Uncomment the next line for PATH semantics */
6b88bc9c 2772 /* av_push(GvAVn(PL_incgv), newSVpv(".", 1)); */
774d564b 2773 p++;
2774 }
2775
2776 if ( (s = strchr(p, PERLLIB_SEP)) != Nullch ) {
2777 sv_setpvn(libdir, PERLLIB_MANGLE(p, (STRLEN)(s - p)),
2778 (STRLEN)(s - p));
2779 p = s + 1;
2780 }
2781 else {
2782 sv_setpv(libdir, PERLLIB_MANGLE(p, 0));
2783 p = Nullch; /* break out */
2784 }
2785
2786 /*
2787 * BEFORE pushing libdir onto @INC we may first push version- and
2788 * archname-specific sub-directories.
2789 */
2790 if (addsubdirs) {
2791 struct stat tmpstatbuf;
aa689395 2792#ifdef VMS
2793 char *unix;
2794 STRLEN len;
774d564b 2795
36596149 2796 if ((unix = tounixspec_ts(SvPV(libdir,len),Nullch)) != Nullch) {
aa689395 2797 len = strlen(unix);
2798 while (unix[len-1] == '/') len--; /* Cosmetic */
2799 sv_usepvn(libdir,unix,len);
2800 }
2801 else
2802 PerlIO_printf(PerlIO_stderr(),
2803 "Failed to unixify @INC element \"%s\"\n",
36596149 2804 SvPV(libdir,len));
aa689395 2805#endif
4fdae800 2806 /* .../archname/version if -d .../archname/version/auto */
774d564b 2807 sv_setsv(subdir, libdir);
3280af22 2808 sv_catpv(subdir, PL_archpat_auto);
76e3520e 2809 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
774d564b 2810 S_ISDIR(tmpstatbuf.st_mode))
3280af22 2811 av_push(GvAVn(PL_incgv),
774d564b 2812 newSVpv(SvPVX(subdir), SvCUR(subdir) - sizeof "auto"));
2813
4fdae800 2814 /* .../archname if -d .../archname/auto */
774d564b 2815 sv_insert(subdir, SvCUR(libdir) + sizeof(ARCHNAME),
3280af22 2816 strlen(PL_patchlevel) + 1, "", 0);
76e3520e 2817 if (PerlLIO_stat(SvPVX(subdir), &tmpstatbuf) >= 0 &&
774d564b 2818 S_ISDIR(tmpstatbuf.st_mode))
3280af22 2819 av_push(GvAVn(PL_incgv),
774d564b 2820 newSVpv(SvPVX(subdir), SvCUR(subdir) - sizeof "auto"));
2821 }
2822
2823 /* finally push this lib directory on the end of @INC */
3280af22 2824 av_push(GvAVn(PL_incgv), libdir);
774d564b 2825 }
34de22dd 2826}
93a17b20 2827
199100c8 2828#ifdef USE_THREADS
76e3520e 2829STATIC struct perl_thread *
199100c8
MB
2830init_main_thread()
2831{
52e1cb5e 2832 struct perl_thread *thr;
199100c8
MB
2833 XPV *xpv;
2834
52e1cb5e 2835 Newz(53, thr, 1, struct perl_thread);
533c011a 2836 PL_curcop = &PL_compiling;
199100c8 2837 thr->cvcache = newHV();
54b9620d 2838 thr->threadsv = newAV();
940cb80d 2839 /* thr->threadsvp is set when find_threadsv is called */
199100c8 2840 thr->specific = newAV();
38a03e6e 2841 thr->errhv = newHV();
199100c8
MB
2842 thr->flags = THRf_R_JOINABLE;
2843 MUTEX_INIT(&thr->mutex);
2844 /* Handcraft thrsv similarly to mess_sv */
533c011a 2845 New(53, PL_thrsv, 1, SV);
199100c8 2846 Newz(53, xpv, 1, XPV);
533c011a
NIS
2847 SvFLAGS(PL_thrsv) = SVt_PV;
2848 SvANY(PL_thrsv) = (void*)xpv;
2849 SvREFCNT(PL_thrsv) = 1 << 30; /* practically infinite */
2850 SvPVX(PL_thrsv) = (char*)thr;
2851 SvCUR_set(PL_thrsv, sizeof(thr));
2852 SvLEN_set(PL_thrsv, sizeof(thr));
2853 *SvEND(PL_thrsv) = '\0'; /* in the trailing_nul field */
2854 thr->oursv = PL_thrsv;
2855 PL_chopset = " \n-";
2856
2857 MUTEX_LOCK(&PL_threads_mutex);
2858 PL_nthreads++;
199100c8
MB
2859 thr->tid = 0;
2860 thr->next = thr;
2861 thr->prev = thr;
533c011a 2862 MUTEX_UNLOCK(&PL_threads_mutex);
199100c8 2863
4b026b9e
GS
2864#ifdef HAVE_THREAD_INTERN
2865 init_thread_intern(thr);
235db74f
GS
2866#endif
2867
2868#ifdef SET_THREAD_SELF
2869 SET_THREAD_SELF(thr);
199100c8
MB
2870#else
2871 thr->self = pthread_self();
235db74f 2872#endif /* SET_THREAD_SELF */
199100c8
MB
2873 SET_THR(thr);
2874
2875 /*
2876 * These must come after the SET_THR because sv_setpvn does
2877 * SvTAINT and the taint fields require dTHR.
2878 */
533c011a
NIS
2879 PL_toptarget = NEWSV(0,0);
2880 sv_upgrade(PL_toptarget, SVt_PVFM);
2881 sv_setpvn(PL_toptarget, "", 0);
2882 PL_bodytarget = NEWSV(0,0);
2883 sv_upgrade(PL_bodytarget, SVt_PVFM);
2884 sv_setpvn(PL_bodytarget, "", 0);
2885 PL_formtarget = PL_bodytarget;
2faa37cc 2886 thr->errsv = newSVpv("", 0);
78857c3c 2887 (void) find_threadsv("@"); /* Ensure $@ is initialised early */
5c0ca799 2888
533c011a
NIS
2889 PL_maxscream = -1;
2890 PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
2891 PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
2892 PL_regindent = 0;
2893 PL_reginterp_cnt = 0;
5c0ca799 2894
199100c8
MB
2895 return thr;
2896}
2897#endif /* USE_THREADS */
2898
93a17b20 2899void
76e3520e 2900call_list(I32 oldscope, AV *paramList)
93a17b20 2901{
11343788 2902 dTHR;
3280af22 2903 line_t oldline = PL_curcop->cop_line;
22921e25
CS
2904 STRLEN len;
2905 dJMPENV;
6224f72b 2906 int ret;
93a17b20 2907
76e3520e
GS
2908 while (AvFILL(paramList) >= 0) {
2909 CV *cv = (CV*)av_shift(paramList);
93a17b20 2910
8990e307 2911 SAVEFREESV(cv);
a0d0e21e 2912
6224f72b
GS
2913 JMPENV_PUSH(ret);
2914 switch (ret) {
2915 case 0: {
38a03e6e 2916 SV* atsv = ERRSV;
3280af22 2917 PUSHMARK(PL_stack_sp);
748a9306 2918 perl_call_sv((SV*)cv, G_EVAL|G_DISCARD);
12f917ad 2919 (void)SvPV(atsv, len);
748a9306 2920 if (len) {
54310121 2921 JMPENV_POP;
3280af22
NIS
2922 PL_curcop = &PL_compiling;
2923 PL_curcop->cop_line = oldline;
2924 if (paramList == PL_beginav)
12f917ad 2925 sv_catpv(atsv, "BEGIN failed--compilation aborted");
748a9306 2926 else
12f917ad 2927 sv_catpv(atsv, "END failed--cleanup aborted");
3280af22 2928 while (PL_scopestack_ix > oldscope)
2ae324a7 2929 LEAVE;
12f917ad 2930 croak("%s", SvPVX(atsv));
748a9306 2931 }
a0d0e21e 2932 }
85e6fe83 2933 break;
6224f72b 2934 case 1:
f86702cc 2935 STATUS_ALL_FAILURE;
85e6fe83 2936 /* FALL THROUGH */
6224f72b 2937 case 2:
85e6fe83 2938 /* my_exit() was called */
3280af22 2939 while (PL_scopestack_ix > oldscope)
2ae324a7 2940 LEAVE;
84902520 2941 FREETMPS;
3280af22
NIS
2942 PL_curstash = PL_defstash;
2943 if (PL_endav)
2944 call_list(oldscope, PL_endav);
54310121 2945 JMPENV_POP;
3280af22
NIS
2946 PL_curcop = &PL_compiling;
2947 PL_curcop->cop_line = oldline;
2948 if (PL_statusvalue) {
2949 if (paramList == PL_beginav)
a0d0e21e 2950 croak("BEGIN failed--compilation aborted");
85e6fe83 2951 else
a0d0e21e 2952 croak("END failed--cleanup aborted");
85e6fe83 2953 }
f86702cc 2954 my_exit_jump();
85e6fe83 2955 /* NOTREACHED */
6224f72b 2956 case 3:
3280af22 2957 if (!PL_restartop) {
760ac839 2958 PerlIO_printf(PerlIO_stderr(), "panic: restartop\n");
a0d0e21e 2959 FREETMPS;
85e6fe83
LW
2960 break;
2961 }
54310121 2962 JMPENV_POP;
3280af22
NIS
2963 PL_curcop = &PL_compiling;
2964 PL_curcop->cop_line = oldline;
6224f72b 2965 JMPENV_JUMP(3);
8990e307 2966 }
54310121 2967 JMPENV_POP;
93a17b20 2968 }
93a17b20 2969}
93a17b20 2970
f86702cc 2971void
8ac85365 2972my_exit(U32 status)
f86702cc 2973{
5dc0d613
MB
2974 dTHR;
2975
8b73bbec 2976 DEBUG_S(PerlIO_printf(Perl_debug_log, "my_exit: thread %p, status %lu\n",
a863c7d1 2977 thr, (unsigned long) status));
f86702cc 2978 switch (status) {
2979 case 0:
2980 STATUS_ALL_SUCCESS;
2981 break;
2982 case 1:
2983 STATUS_ALL_FAILURE;
2984 break;
2985 default:
2986 STATUS_NATIVE_SET(status);
2987 break;
2988 }
2989 my_exit_jump();
2990}
2991
2992void
8ac85365 2993my_failure_exit(void)
f86702cc 2994{
2995#ifdef VMS
2996 if (vaxc$errno & 1) {
4fdae800 2997 if (STATUS_NATIVE & 1) /* fortuitiously includes "-1" */
2998 STATUS_NATIVE_SET(44);
f86702cc 2999 }
3000 else {
ff0cee69 3001 if (!vaxc$errno && errno) /* unlikely */
4fdae800 3002 STATUS_NATIVE_SET(44);
f86702cc 3003 else
4fdae800 3004 STATUS_NATIVE_SET(vaxc$errno);
f86702cc 3005 }
3006#else
9b599b2a 3007 int exitstatus;
f86702cc 3008 if (errno & 255)
3009 STATUS_POSIX_SET(errno);
9b599b2a
GS
3010 else {
3011 exitstatus = STATUS_POSIX >> 8;
3012 if (exitstatus & 255)
3013 STATUS_POSIX_SET(exitstatus);
3014 else
3015 STATUS_POSIX_SET(255);
3016 }
f86702cc 3017#endif
3018 my_exit_jump();
93a17b20
LW
3019}
3020
76e3520e 3021STATIC void
8ac85365 3022my_exit_jump(void)
f86702cc 3023{
bac4b2ad 3024 dSP;
c09156bb 3025 register PERL_CONTEXT *cx;
f86702cc 3026 I32 gimme;
3027 SV **newsp;
3028
3280af22
NIS
3029 if (PL_e_script) {
3030 SvREFCNT_dec(PL_e_script);
3031 PL_e_script = Nullsv;
f86702cc 3032 }
3033
3280af22 3034 POPSTACK_TO(PL_mainstack);
f86702cc 3035 if (cxstack_ix >= 0) {
3036 if (cxstack_ix > 0)
3037 dounwind(0);
3280af22 3038 POPBLOCK(cx,PL_curpm);
f86702cc 3039 LEAVE;
3040 }
ff0cee69 3041
6224f72b 3042 JMPENV_JUMP(2);
f86702cc 3043}
873ef191 3044
7a5f8e82
DL
3045#ifdef PERL_OBJECT
3046#define NO_XSLOCKS
3047#endif /* PERL_OBJECT */
873ef191
GS
3048
3049#include "XSUB.h"
3050
3051static I32
6224f72b
GS
3052#ifdef PERL_OBJECT
3053read_e_script(CPerlObj *pPerl, int idx, SV *buf_sv, int maxlen)
3054#else
3055read_e_script(int idx, SV *buf_sv, int maxlen)
3056#endif
873ef191
GS
3057{
3058 char *p, *nl;
3280af22 3059 p = SvPVX(PL_e_script);
873ef191 3060 nl = strchr(p, '\n');
3280af22 3061 nl = (nl) ? nl+1 : SvEND(PL_e_script);
7dfe3f66
PM
3062 if (nl-p == 0) {
3063 filter_del(read_e_script);
873ef191 3064 return 0;
7dfe3f66 3065 }
873ef191 3066 sv_catpvn(buf_sv, p, nl-p);
3280af22 3067 sv_chop(PL_e_script, nl);
873ef191
GS
3068 return 1;
3069}
3070
1163b5c4 3071