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