Re: [perl #34195] Regex: Alternations within negative lookahead assertions
[p5sagit/p5-mst-13.2.git] / doio.c
CommitLineData
a0d0e21e 1/* doio.c
a687059c 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
770526c1 4 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
a687059c 5 *
6e21c824 6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
a687059c 8 *
a0d0e21e 9 */
10
11/*
12 * "Far below them they saw the white waters pour into a foaming bowl, and
13 * then swirl darkly about a deep oval basin in the rocks, until they found
14 * their way out again through a narrow gate, and flowed away, fuming and
15 * chattering, into calmer and more level reaches."
a687059c 16 */
17
166f8a29 18/* This file contains functions that do the actual I/O on behalf of ops.
19 * For example, pp_print() calls the do_print() function in this file for
20 * each argument needing printing.
21 */
22
a687059c 23#include "EXTERN.h"
864dbfa3 24#define PERL_IN_DOIO_C
a687059c 25#include "perl.h"
26
fe14fcc3 27#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
aec308ec 28#ifndef HAS_SEM
c2ab57d4 29#include <sys/ipc.h>
aec308ec 30#endif
fe14fcc3 31#ifdef HAS_MSG
c2ab57d4 32#include <sys/msg.h>
e5d73d77 33#endif
fe14fcc3 34#ifdef HAS_SHM
c2ab57d4 35#include <sys/shm.h>
a0d0e21e 36# ifndef HAS_SHMAT_PROTOTYPE
20ce7b12 37 extern Shmat_t shmat (int, char *, int);
a0d0e21e 38# endif
c2ab57d4 39#endif
e5d73d77 40#endif
c2ab57d4 41
663a0e37 42#ifdef I_UTIME
3730b96e 43# if defined(_MSC_VER) || defined(__MINGW32__)
3fe9a6f1 44# include <sys/utime.h>
45# else
46# include <utime.h>
47# endif
663a0e37 48#endif
85aff577 49
85aff577 50#ifdef O_EXCL
51# define OPEN_EXCL O_EXCL
52#else
53# define OPEN_EXCL 0
54#endif
a687059c 55
0c19750d 56#define PERL_MODE_MAX 8
57#define PERL_FLAGS_MAX 10
58
76121258 59#include <signal.h>
76121258 60
a687059c 61bool
6170680b 62Perl_do_open(pTHX_ GV *gv, register char *name, I32 len, int as_raw,
63 int rawmode, int rawperm, PerlIO *supplied_fp)
64{
a567e93b 65 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
66 supplied_fp, (SV **) NULL, 0);
6170680b 67}
68
69bool
70Perl_do_open9(pTHX_ GV *gv, register char *name, I32 len, int as_raw,
71 int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
72 I32 num_svs)
a687059c 73{
a567e93b 74 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
75 supplied_fp, &svs, 1);
76}
77
78bool
79Perl_do_openn(pTHX_ GV *gv, register char *name, I32 len, int as_raw,
80 int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp,
81 I32 num_svs)
82{
a0d0e21e 83 register IO *io = GvIOn(gv);
760ac839 84 PerlIO *saveifp = Nullfp;
85 PerlIO *saveofp = Nullfp;
ee518936 86 int savefd = -1;
9f37169a 87 char savetype = IoTYPE_CLOSED;
c07a80fd 88 int writing = 0;
760ac839 89 PerlIO *fp;
c07a80fd 90 int fd;
91 int result;
3500f679 92 bool was_fdopen = FALSE;
16fe6d59 93 bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0;
b931b1d9 94 char *type = NULL;
0c19750d 95 char mode[PERL_MODE_MAX]; /* stdio file mode ("r\0", "rb\0", "r+b\0" etc.) */
ee518936 96 SV *namesv;
a687059c 97
b931b1d9 98 Zero(mode,sizeof(mode),char);
3280af22 99 PL_forkprocess = 1; /* assume true if no fork */
c07a80fd 100
b931b1d9 101 /* Collect default raw/crlf info from the op */
16fe6d59 102 if (PL_op && PL_op->op_type == OP_OPEN) {
c2be40b1 103 /* set up IO layers */
16fe6d59 104 U8 flags = PL_op->op_private;
105 in_raw = (flags & OPpOPEN_IN_RAW);
106 in_crlf = (flags & OPpOPEN_IN_CRLF);
107 out_raw = (flags & OPpOPEN_OUT_RAW);
108 out_crlf = (flags & OPpOPEN_OUT_CRLF);
109 }
110
b931b1d9 111 /* If currently open - close before we re-open */
a0d0e21e 112 if (IoIFP(io)) {
760ac839 113 fd = PerlIO_fileno(IoIFP(io));
ee518936 114 if (IoTYPE(io) == IoTYPE_STD) {
115 /* This is a clone of one of STD* handles */
c2ab57d4 116 result = 0;
ee518936 117 }
118 else if (fd >= 0 && fd <= PL_maxsysfd) {
119 /* This is one of the original STD* handles */
120 saveifp = IoIFP(io);
121 saveofp = IoOFP(io);
8990e307 122 savetype = IoTYPE(io);
ee518936 123 savefd = fd;
124 result = 0;
6e21c824 125 }
50952442 126 else if (IoTYPE(io) == IoTYPE_PIPE)
3028581b 127 result = PerlProc_pclose(IoIFP(io));
8990e307 128 else if (IoIFP(io) != IoOFP(io)) {
129 if (IoOFP(io)) {
760ac839 130 result = PerlIO_close(IoOFP(io));
6170680b 131 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
c2ab57d4 132 }
133 else
760ac839 134 result = PerlIO_close(IoIFP(io));
a687059c 135 }
a687059c 136 else
760ac839 137 result = PerlIO_close(IoIFP(io));
ee518936 138 if (result == EOF && fd > PL_maxsysfd) {
139 /* Why is this not Perl_warn*() call ? */
bf49b057 140 PerlIO_printf(Perl_error_log,
6170680b 141 "Warning: unable to close filehandle %s properly.\n",
142 GvENAME(gv));
ee518936 143 }
8990e307 144 IoOFP(io) = IoIFP(io) = Nullfp;
a687059c 145 }
c07a80fd 146
147 if (as_raw) {
b931b1d9 148 /* sysopen style args, i.e. integer mode and permissions */
ee518936 149 STRLEN ix = 0;
e1ec3a88 150 const int appendtrunc =
3dccc55c 151 0
d1da7611 152#ifdef O_APPEND /* Not fully portable. */
3dccc55c 153 |O_APPEND
d1da7611 154#endif
155#ifdef O_TRUNC /* Not fully portable. */
3dccc55c 156 |O_TRUNC
d1da7611 157#endif
3dccc55c 158 ;
e1ec3a88 159 int modifyingmode = O_WRONLY|O_RDWR|O_CREAT|appendtrunc;
3dccc55c 160 int ismodifying;
161
162 if (num_svs != 0) {
163 Perl_croak(aTHX_ "panic: sysopen with multiple args");
164 }
165 /* It's not always
166
167 O_RDONLY 0
168 O_WRONLY 1
169 O_RDWR 2
170
171 It might be (in OS/390 and Mac OS Classic it is)
172
173 O_WRONLY 1
174 O_RDONLY 2
175 O_RDWR 3
176
177 This means that simple & with O_RDWR would look
178 like O_RDONLY is present. Therefore we have to
179 be more careful.
180 */
181 if ((ismodifying = (rawmode & modifyingmode))) {
182 if ((ismodifying & O_WRONLY) == O_WRONLY ||
183 (ismodifying & O_RDWR) == O_RDWR ||
184 (ismodifying & (O_CREAT|appendtrunc)))
185 TAINT_PROPER("sysopen");
186 }
3b6c1aba 187 mode[ix++] = IoTYPE_NUMERIC; /* Marker to openn to use numeric "sysopen" */
b931b1d9 188
09458382 189#if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE)
b94c04ac 190 rawmode |= O_LARGEFILE; /* Transparently largefiley. */
5ff3f7a4 191#endif
192
06c7082d 193 IoTYPE(io) = PerlIO_intmode2str(rawmode, &mode[ix], &writing);
ee518936 194
195 namesv = sv_2mortal(newSVpvn(name,strlen(name)));
196 num_svs = 1;
197 svp = &namesv;
1141d9f8 198 type = Nullch;
b94c04ac 199 fp = PerlIO_openn(aTHX_ type, mode, -1, rawmode, rawperm, NULL, num_svs, svp);
a687059c 200 }
c07a80fd 201 else {
b931b1d9 202 /* Regular (non-sys) open */
faecd977 203 char *oname = name;
faecd977 204 STRLEN olen = len;
b931b1d9 205 char *tend;
206 int dodup = 0;
ecdeb87c 207 PerlIO *that_fp = NULL;
c07a80fd 208
faecd977 209 type = savepvn(name, len);
b931b1d9 210 tend = type+len;
faecd977 211 SAVEFREEPV(type);
eb649f83 212
213 /* Lose leading and trailing white space */
214 /*SUPPRESS 530*/
215 for (; isSPACE(*type); type++) ;
216 while (tend > type && isSPACE(tend[-1]))
217 *--tend = '\0';
218
6170680b 219 if (num_svs) {
c2be40b1 220 /* New style explicit name, type is just mode and layer info */
fe9745bf 221 STRLEN l = 0;
9a869a14 222#ifdef USE_STDIO
223 if (SvROK(*svp) && !strchr(name,'&')) {
224 if (ckWARN(WARN_IO))
225 Perl_warner(aTHX_ packWARN(WARN_IO),
226 "Can't open a reference");
93189314 227 SETERRNO(EINVAL, LIB_INVARG);
9a869a14 228 goto say_false;
229 }
230#endif /* USE_STDIO */
f6c77cf1 231 name = SvOK(*svp) ? SvPV(*svp, l) : "";
faecd977 232 len = (I32)l;
233 name = savepvn(name, len);
234 SAVEFREEPV(name);
6170680b 235 }
faecd977 236 else {
faecd977 237 name = type;
b931b1d9 238 len = tend-type;
faecd977 239 }
6170680b 240 IoTYPE(io) = *type;
516a5887 241 if ((*type == IoTYPE_RDWR) && /* scary */
01a8ea99 242 (*(type+1) == IoTYPE_RDONLY || *(type+1) == IoTYPE_WRONLY) &&
516a5887 243 ((!num_svs || (tend > type+1 && tend[-1] != IoTYPE_PIPE)))) {
c2be40b1 244 TAINT_PROPER("open");
6170680b 245 mode[1] = *type++;
c07a80fd 246 writing = 1;
a687059c 247 }
c07a80fd 248
9f37169a 249 if (*type == IoTYPE_PIPE) {
b931b1d9 250 if (num_svs) {
251 if (type[1] != IoTYPE_STD) {
c2be40b1 252 unknown_open_mode:
b931b1d9 253 Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname);
254 }
255 type++;
6170680b 256 }
c07a80fd 257 /*SUPPRESS 530*/
b931b1d9 258 for (type++; isSPACE(*type); type++) ;
faecd977 259 if (!num_svs) {
6170680b 260 name = type;
b931b1d9 261 len = tend-type;
faecd977 262 }
4a7d1889 263 if (*name == '\0') {
264 /* command is missing 19990114 */
06eaf0bc 265 if (ckWARN(WARN_PIPE))
9014280d 266 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
06eaf0bc 267 errno = EPIPE;
268 goto say_false;
269 }
770526c1 270 if ((*name == '-' && name[1] == '\0') || num_svs)
c07a80fd 271 TAINT_ENV();
272 TAINT_PROPER("piped open");
b931b1d9 273 if (!num_svs && name[len-1] == '|') {
faecd977 274 name[--len] = '\0' ;
599cee73 275 if (ckWARN(WARN_PIPE))
9014280d 276 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Can't open bidirectional pipe");
7b8d334a 277 }
a1d180c4 278 mode[0] = 'w';
c07a80fd 279 writing = 1;
0c19750d 280#ifdef HAS_STRLCAT
281 if (out_raw)
282 strlcat(mode, "b", PERL_MODE_MAX);
283 else if (out_crlf)
284 strlcat(mode, "t", PERL_MODE_MAX);
285#else
a1d180c4 286 if (out_raw)
287 strcat(mode, "b");
288 else if (out_crlf)
289 strcat(mode, "t");
0c19750d 290#endif
4a7d1889 291 if (num_svs > 1) {
292 fp = PerlProc_popen_list(mode, num_svs, svp);
293 }
294 else {
295 fp = PerlProc_popen(name,mode);
296 }
1771866f 297 if (num_svs) {
298 if (*type) {
299 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
300 goto say_false;
301 }
302 }
303 }
c2be40b1 304 } /* IoTYPE_PIPE */
9f37169a 305 else if (*type == IoTYPE_WRONLY) {
c07a80fd 306 TAINT_PROPER("open");
6170680b 307 type++;
9f37169a 308 if (*type == IoTYPE_WRONLY) {
309 /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */
50952442 310 mode[0] = IoTYPE(io) = IoTYPE_APPEND;
6170680b 311 type++;
a0d0e21e 312 }
ee518936 313 else {
c07a80fd 314 mode[0] = 'w';
ee518936 315 }
c07a80fd 316 writing = 1;
317
0c19750d 318#ifdef HAS_STRLCAT
319 if (out_raw)
320 strlcat(mode, "b", PERL_MODE_MAX);
321 else if (out_crlf)
322 strlcat(mode, "t", PERL_MODE_MAX);
323#else
16fe6d59 324 if (out_raw)
325 strcat(mode, "b");
326 else if (out_crlf)
327 strcat(mode, "t");
0c19750d 328#endif
6170680b 329 if (*type == '&') {
c07a80fd 330 duplicity:
ecdeb87c 331 dodup = PERLIO_DUP_FD;
e620cd72 332 type++;
333 if (*type == '=') {
c07a80fd 334 dodup = 0;
e620cd72 335 type++;
4a7d1889 336 }
ee518936 337 if (!num_svs && !*type && supplied_fp) {
4a7d1889 338 /* "<+&" etc. is used by typemaps */
c07a80fd 339 fp = supplied_fp;
ee518936 340 }
a0d0e21e 341 else {
e620cd72 342 if (num_svs > 1) {
343 Perl_croak(aTHX_ "More than one argument to '%c&' open",IoTYPE(io));
344 }
54edfe98 345 /*SUPPRESS 530*/
346 for (; isSPACE(*type); type++) ;
1771866f 347 if (num_svs && (SvIOK(*svp) || (SvPOK(*svp) && looks_like_number(*svp)))) {
e620cd72 348 fd = SvUV(*svp);
24a7a40d 349 num_svs = 0;
ee518936 350 }
e620cd72 351 else if (isDIGIT(*type)) {
e620cd72 352 fd = atoi(type);
353 }
c07a80fd 354 else {
e1ec3a88 355 const IO* thatio;
e620cd72 356 if (num_svs) {
357 thatio = sv_2io(*svp);
358 }
359 else {
360 GV *thatgv;
e620cd72 361 thatgv = gv_fetchpv(type,FALSE,SVt_PVIO);
362 thatio = GvIO(thatgv);
363 }
c07a80fd 364 if (!thatio) {
6e21c824 365#ifdef EINVAL
93189314 366 SETERRNO(EINVAL,SS_IVCHAN);
6e21c824 367#endif
c07a80fd 368 goto say_false;
369 }
f4e789af 370 if ((that_fp = IoIFP(thatio))) {
7211d486 371 /* Flush stdio buffer before dup. --mjd
372 * Unfortunately SEEK_CURing 0 seems to
373 * be optimized away on most platforms;
374 * only Solaris and Linux seem to flush
375 * on that. --jhi */
2c534a3f 376#ifdef USE_SFIO
377 /* sfio fails to clear error on next
378 sfwrite, contrary to documentation.
379 -- Nick Clark */
ecdeb87c 380 if (PerlIO_seek(that_fp, 0, SEEK_CUR) == -1)
381 PerlIO_clearerr(that_fp);
2c534a3f 382#endif
7211d486 383 /* On the other hand, do all platforms
384 * take gracefully to flushing a read-only
385 * filehandle? Perhaps we should do
386 * fsetpos(src)+fgetpos(dst)? --nik */
ecdeb87c 387 PerlIO_flush(that_fp);
388 fd = PerlIO_fileno(that_fp);
0759c907 389 /* When dup()ing STDIN, STDOUT or STDERR
390 * explicitly set appropriate access mode */
f4e789af 391 if (that_fp == PerlIO_stdout()
392 || that_fp == PerlIO_stderr())
0759c907 393 IoTYPE(io) = IoTYPE_WRONLY;
f4e789af 394 else if (that_fp == PerlIO_stdin())
0759c907 395 IoTYPE(io) = IoTYPE_RDONLY;
396 /* When dup()ing a socket, say result is
397 * one as well */
398 else if (IoTYPE(thatio) == IoTYPE_SOCKET)
50952442 399 IoTYPE(io) = IoTYPE_SOCKET;
c07a80fd 400 }
401 else
402 fd = -1;
a0d0e21e 403 }
ee518936 404 if (!num_svs)
1141d9f8 405 type = Nullch;
ecdeb87c 406 if (that_fp) {
407 fp = PerlIO_fdupopen(aTHX_ that_fp, NULL, dodup);
408 }
409 else {
c07a80fd 410 if (dodup)
ecdeb87c 411 fd = PerlLIO_dup(fd);
412 else
413 was_fdopen = TRUE;
414 if (!(fp = PerlIO_openn(aTHX_ type,mode,fd,0,0,NULL,num_svs,svp))) {
415 if (dodup)
416 PerlLIO_close(fd);
417 }
faecd977 418 }
c07a80fd 419 }
ee518936 420 } /* & */
c07a80fd 421 else {
422 /*SUPPRESS 530*/
6170680b 423 for (; isSPACE(*type); type++) ;
b931b1d9 424 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
425 /*SUPPRESS 530*/
426 type++;
760ac839 427 fp = PerlIO_stdout();
50952442 428 IoTYPE(io) = IoTYPE_STD;
7cf31beb 429 if (num_svs > 1) {
430 Perl_croak(aTHX_ "More than one argument to '>%c' open",IoTYPE_STD);
431 }
c07a80fd 432 }
433 else {
ee518936 434 if (!num_svs) {
435 namesv = sv_2mortal(newSVpvn(type,strlen(type)));
436 num_svs = 1;
437 svp = &namesv;
1141d9f8 438 type = Nullch;
ee518936 439 }
6e60e805 440 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
c07a80fd 441 }
ee518936 442 } /* !& */
7e72d509 443 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
444 goto unknown_open_mode;
c2be40b1 445 } /* IoTYPE_WRONLY */
9f37169a 446 else if (*type == IoTYPE_RDONLY) {
c07a80fd 447 /*SUPPRESS 530*/
6170680b 448 for (type++; isSPACE(*type); type++) ;
bf38876a 449 mode[0] = 'r';
0c19750d 450#ifdef HAS_STRLCAT
451 if (in_raw)
452 strlcat(mode, "b", PERL_MODE_MAX);
453 else if (in_crlf)
454 strlcat(mode, "t", PERL_MODE_MAX);
455#else
16fe6d59 456 if (in_raw)
457 strcat(mode, "b");
458 else if (in_crlf)
459 strcat(mode, "t");
0c19750d 460#endif
6170680b 461 if (*type == '&') {
bf38876a 462 goto duplicity;
6170680b 463 }
b931b1d9 464 if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) {
465 /*SUPPRESS 530*/
466 type++;
760ac839 467 fp = PerlIO_stdin();
50952442 468 IoTYPE(io) = IoTYPE_STD;
7cf31beb 469 if (num_svs > 1) {
470 Perl_croak(aTHX_ "More than one argument to '<%c' open",IoTYPE_STD);
471 }
a687059c 472 }
ee518936 473 else {
474 if (!num_svs) {
475 namesv = sv_2mortal(newSVpvn(type,strlen(type)));
476 num_svs = 1;
477 svp = &namesv;
1141d9f8 478 type = Nullch;
ee518936 479 }
6e60e805 480 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
ee518936 481 }
7e72d509 482 if (!fp && type && *type && *type != ':' && !isIDFIRST(*type))
483 goto unknown_open_mode;
c2be40b1 484 } /* IoTYPE_RDONLY */
485 else if ((num_svs && /* '-|...' or '...|' */
486 type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) ||
b931b1d9 487 (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) {
6170680b 488 if (num_svs) {
b931b1d9 489 type += 2; /* skip over '-|' */
6170680b 490 }
491 else {
b931b1d9 492 *--tend = '\0';
493 while (tend > type && isSPACE(tend[-1]))
494 *--tend = '\0';
6170680b 495 /*SUPPRESS 530*/
496 for (; isSPACE(*type); type++) ;
497 name = type;
b931b1d9 498 len = tend-type;
6170680b 499 }
4a7d1889 500 if (*name == '\0') {
501 /* command is missing 19990114 */
06eaf0bc 502 if (ckWARN(WARN_PIPE))
9014280d 503 Perl_warner(aTHX_ packWARN(WARN_PIPE), "Missing command in piped open");
06eaf0bc 504 errno = EPIPE;
505 goto say_false;
506 }
770526c1 507 if (!(*name == '-' && name[1] == '\0') || num_svs)
79072805 508 TAINT_ENV();
509 TAINT_PROPER("piped open");
a1d180c4 510 mode[0] = 'r';
0c19750d 511
512#ifdef HAS_STRLCAT
513 if (in_raw)
514 strlcat(mode, "b", PERL_MODE_MAX);
515 else if (in_crlf)
516 strlcat(mode, "t", PERL_MODE_MAX);
517#else
a1d180c4 518 if (in_raw)
519 strcat(mode, "b");
520 else if (in_crlf)
521 strcat(mode, "t");
0c19750d 522#endif
523
4a7d1889 524 if (num_svs > 1) {
525 fp = PerlProc_popen_list(mode,num_svs,svp);
526 }
e620cd72 527 else {
4a7d1889 528 fp = PerlProc_popen(name,mode);
529 }
50952442 530 IoTYPE(io) = IoTYPE_PIPE;
1771866f 531 if (num_svs) {
532 for (; isSPACE(*type); type++) ;
533 if (*type) {
534 if (PerlIO_apply_layers(aTHX_ fp, mode, type) != 0) {
535 goto say_false;
536 }
537 }
538 }
a687059c 539 }
c2be40b1 540 else { /* layer(Args) */
6170680b 541 if (num_svs)
c2be40b1 542 goto unknown_open_mode;
6170680b 543 name = type;
50952442 544 IoTYPE(io) = IoTYPE_RDONLY;
99b89507 545 /*SUPPRESS 530*/
546 for (; isSPACE(*name); name++) ;
88b61e10 547 mode[0] = 'r';
0c19750d 548
549#ifdef HAS_STRLCAT
550 if (in_raw)
551 strlcat(mode, "b", PERL_MODE_MAX);
552 else if (in_crlf)
553 strlcat(mode, "t", PERL_MODE_MAX);
554#else
88b61e10 555 if (in_raw)
556 strcat(mode, "b");
557 else if (in_crlf)
558 strcat(mode, "t");
0c19750d 559#endif
560
770526c1 561 if (*name == '-' && name[1] == '\0') {
760ac839 562 fp = PerlIO_stdin();
50952442 563 IoTYPE(io) = IoTYPE_STD;
a687059c 564 }
16fe6d59 565 else {
ee518936 566 if (!num_svs) {
567 namesv = sv_2mortal(newSVpvn(type,strlen(type)));
568 num_svs = 1;
569 svp = &namesv;
1141d9f8 570 type = Nullch;
ee518936 571 }
6e60e805 572 fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,svp);
16fe6d59 573 }
a687059c 574 }
575 }
bee1dbe2 576 if (!fp) {
50952442 577 if (ckWARN(WARN_NEWLINE) && IoTYPE(io) == IoTYPE_RDONLY && strchr(name, '\n'))
9014280d 578 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "open");
6e21c824 579 goto say_false;
bee1dbe2 580 }
a00b5bd3 581
582 if (ckWARN(WARN_IO)) {
583 if ((IoTYPE(io) == IoTYPE_RDONLY) &&
584 (fp == PerlIO_stdout() || fp == PerlIO_stderr())) {
9014280d 585 Perl_warner(aTHX_ packWARN(WARN_IO),
97828cef 586 "Filehandle STD%s reopened as %s only for input",
587 ((fp == PerlIO_stdout()) ? "OUT" : "ERR"),
588 GvENAME(gv));
a00b5bd3 589 }
ee518936 590 else if ((IoTYPE(io) == IoTYPE_WRONLY) && fp == PerlIO_stdin()) {
9014280d 591 Perl_warner(aTHX_ packWARN(WARN_IO),
97828cef 592 "Filehandle STDIN reopened as %s only for output",
593 GvENAME(gv));
a00b5bd3 594 }
595 }
596
e99cca91 597 fd = PerlIO_fileno(fp);
e934609f 598 /* If there is no fd (e.g. PerlIO::scalar) assume it isn't a
599 * socket - this covers PerlIO::scalar - otherwise unless we "know" the
e99cca91 600 * type probe for socket-ness.
601 */
602 if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD && fd >= 0) {
603 if (PerlLIO_fstat(fd,&PL_statbuf) < 0) {
604 /* If PerlIO claims to have fd we had better be able to fstat() it. */
605 (void) PerlIO_close(fp);
6e21c824 606 goto say_false;
a687059c 607 }
7114a2d2 608#ifndef PERL_MICRO
3280af22 609 if (S_ISSOCK(PL_statbuf.st_mode))
50952442 610 IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */
99b89507 611#ifdef HAS_SOCKET
612 else if (
c623bd54 613#ifdef S_IFMT
3280af22 614 !(PL_statbuf.st_mode & S_IFMT)
99b89507 615#else
b28d0864 616 !PL_statbuf.st_mode
99b89507 617#endif
0759c907 618 && IoTYPE(io) != IoTYPE_WRONLY /* Dups of STD* filehandles already have */
619 && IoTYPE(io) != IoTYPE_RDONLY /* type so they aren't marked as sockets */
620 ) { /* on OS's that return 0 on fstat()ed pipe */
e99cca91 621 char tmpbuf[256];
622 Sock_size_t buflen = sizeof tmpbuf;
623 if (PerlSock_getsockname(fd, (struct sockaddr *)tmpbuf, &buflen) >= 0
624 || errno != ENOTSOCK)
625 IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */
626 /* but some return 0 for streams too, sigh */
99b89507 627 }
e99cca91 628#endif /* HAS_SOCKET */
7114a2d2 629#endif /* !PERL_MICRO */
a687059c 630 }
e99cca91 631
632 /* Eeek - FIXME !!!
633 * If this is a standard handle we discard all the layer stuff
634 * and just dup the fd into whatever was on the handle before !
635 */
636
6e21c824 637 if (saveifp) { /* must use old fp? */
f5b9d040 638 /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR
24c23ab4 639 then dup the new fileno down
f5b9d040 640 */
6e21c824 641 if (saveofp) {
f5b9d040 642 PerlIO_flush(saveofp); /* emulate PerlIO_close() */
6e21c824 643 if (saveofp != saveifp) { /* was a socket? */
760ac839 644 PerlIO_close(saveofp);
6e21c824 645 }
646 }
6e60e805 647 if (savefd != fd) {
e934609f 648 /* Still a small can-of-worms here if (say) PerlIO::scalar
ecdeb87c 649 is assigned to (say) STDOUT - for now let dup2() fail
650 and provide the error
651 */
bd4a5668 652 if (PerlLIO_dup2(fd, savefd) < 0) {
653 (void)PerlIO_close(fp);
654 goto say_false;
655 }
d082dcd6 656#ifdef VMS
6e60e805 657 if (savefd != PerlIO_fileno(PerlIO_stdin())) {
d0e2cf63 658 char newname[FILENAME_MAX+1];
659 if (PerlIO_getname(fp, newname)) {
660 if (fd == PerlIO_fileno(PerlIO_stdout()))
661 Perl_vmssetuserlnm(aTHX_ "SYS$OUTPUT", newname);
662 if (fd == PerlIO_fileno(PerlIO_stderr()))
663 Perl_vmssetuserlnm(aTHX_ "SYS$ERROR", newname);
664 }
d082dcd6 665 }
666#endif
d0e2cf63 667
668#if !defined(WIN32)
669 /* PL_fdpid isn't used on Windows, so avoid this useless work.
670 * XXX Probably the same for a lot of other places. */
671 {
672 Pid_t pid;
673 SV *sv;
674
675 LOCK_FDPID_MUTEX;
676 sv = *av_fetch(PL_fdpid,fd,TRUE);
677 (void)SvUPGRADE(sv, SVt_IV);
678 pid = SvIVX(sv);
679 SvIVX(sv) = 0;
680 sv = *av_fetch(PL_fdpid,savefd,TRUE);
681 (void)SvUPGRADE(sv, SVt_IV);
682 SvIVX(sv) = pid;
683 UNLOCK_FDPID_MUTEX;
684 }
685#endif
686
e212fc47 687 if (was_fdopen) {
688 /* need to close fp without closing underlying fd */
689 int ofd = PerlIO_fileno(fp);
690 int dupfd = PerlLIO_dup(ofd);
03e631df 691#if defined(HAS_FCNTL) && defined(F_SETFD)
692 /* Assume if we have F_SETFD we have F_GETFD */
693 int coe = fcntl(ofd,F_GETFD);
694#endif
e212fc47 695 PerlIO_close(fp);
696 PerlLIO_dup2(dupfd,ofd);
03e631df 697#if defined(HAS_FCNTL) && defined(F_SETFD)
698 /* The dup trick has lost close-on-exec on ofd */
699 fcntl(ofd,F_SETFD, coe);
700#endif
e212fc47 701 PerlLIO_close(dupfd);
ecdeb87c 702 }
e212fc47 703 else
704 PerlIO_close(fp);
6e21c824 705 }
706 fp = saveifp;
760ac839 707 PerlIO_clearerr(fp);
e99cca91 708 fd = PerlIO_fileno(fp);
6e21c824 709 }
a0d0e21e 710#if defined(HAS_FCNTL) && defined(F_SETFD)
e99cca91 711 if (fd >= 0) {
a8710ca1 712 int save_errno = errno;
a8710ca1 713 fcntl(fd,F_SETFD,fd > PL_maxsysfd); /* can change errno */
714 errno = save_errno;
715 }
1462b684 716#endif
8990e307 717 IoIFP(io) = fp;
b931b1d9 718
684bef36 719 IoFLAGS(io) &= ~IOf_NOLINE;
bf38876a 720 if (writing) {
50952442 721 if (IoTYPE(io) == IoTYPE_SOCKET
e99cca91 722 || (IoTYPE(io) == IoTYPE_WRONLY && fd >= 0 && S_ISCHR(PL_statbuf.st_mode)) ) {
a33cf58c 723 char *s = mode;
3b6c1aba 724 if (*s == IoTYPE_IMPLICIT || *s == IoTYPE_NUMERIC)
725 s++;
a33cf58c 726 *s = 'w';
1feb1812 727 if (!(IoOFP(io) = PerlIO_openn(aTHX_ type,s,fd,0,0,NULL,0,svp))) {
760ac839 728 PerlIO_close(fp);
8990e307 729 IoIFP(io) = Nullfp;
6e21c824 730 goto say_false;
fe14fcc3 731 }
1462b684 732 }
733 else
8990e307 734 IoOFP(io) = fp;
bf38876a 735 }
a687059c 736 return TRUE;
6e21c824 737
738say_false:
8990e307 739 IoIFP(io) = saveifp;
740 IoOFP(io) = saveofp;
741 IoTYPE(io) = savetype;
6e21c824 742 return FALSE;
a687059c 743}
744
760ac839 745PerlIO *
864dbfa3 746Perl_nextargv(pTHX_ register GV *gv)
a687059c 747{
79072805 748 register SV *sv;
99b89507 749#ifndef FLEXFILENAMES
c623bd54 750 int filedev;
751 int fileino;
99b89507 752#endif
761237fe 753 Uid_t fileuid;
754 Gid_t filegid;
18708f5a 755 IO *io = GvIOp(gv);
fe14fcc3 756
3280af22 757 if (!PL_argvoutgv)
758 PL_argvoutgv = gv_fetchpv("ARGVOUT",TRUE,SVt_PVIO);
18708f5a 759 if (io && (IoFLAGS(io) & IOf_ARGV) && (IoFLAGS(io) & IOf_START)) {
760 IoFLAGS(io) &= ~IOf_START;
7a1c5554 761 if (PL_inplace) {
762 if (!PL_argvout_stack)
763 PL_argvout_stack = newAV();
18708f5a 764 av_push(PL_argvout_stack, SvREFCNT_inc(PL_defoutgv));
7a1c5554 765 }
18708f5a 766 }
3280af22 767 if (PL_filemode & (S_ISUID|S_ISGID)) {
768 PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv))); /* chmod must follow last write */
fe14fcc3 769#ifdef HAS_FCHMOD
c797f2d8 770 if (PL_lastfd != -1)
771 (void)fchmod(PL_lastfd,PL_filemode);
fe14fcc3 772#else
b28d0864 773 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
fe14fcc3 774#endif
775 }
c797f2d8 776 PL_lastfd = -1;
3280af22 777 PL_filemode = 0;
5c501b37 778 if (!GvAV(gv))
779 return Nullfp;
79072805 780 while (av_len(GvAV(gv)) >= 0) {
85aff577 781 STRLEN oldlen;
79072805 782 sv = av_shift(GvAV(gv));
8990e307 783 SAVEFREESV(sv);
79072805 784 sv_setsv(GvSV(gv),sv);
785 SvSETMAGIC(GvSV(gv));
3280af22 786 PL_oldname = SvPVx(GvSV(gv), oldlen);
9d116dd7 787 if (do_open(gv,PL_oldname,oldlen,PL_inplace!=0,O_RDONLY,0,Nullfp)) {
3280af22 788 if (PL_inplace) {
79072805 789 TAINT_PROPER("inplace open");
3280af22 790 if (oldlen == 1 && *PL_oldname == '-') {
4633a7c4 791 setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO));
a0d0e21e 792 return IoIFP(GvIOp(gv));
c623bd54 793 }
99b89507 794#ifndef FLEXFILENAMES
b28d0864 795 filedev = PL_statbuf.st_dev;
796 fileino = PL_statbuf.st_ino;
99b89507 797#endif
3280af22 798 PL_filemode = PL_statbuf.st_mode;
799 fileuid = PL_statbuf.st_uid;
800 filegid = PL_statbuf.st_gid;
801 if (!S_ISREG(PL_filemode)) {
0453d815 802 if (ckWARN_d(WARN_INPLACE))
9014280d 803 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
0453d815 804 "Can't do inplace edit: %s is not a regular file",
805 PL_oldname );
79072805 806 do_close(gv,FALSE);
c623bd54 807 continue;
808 }
3280af22 809 if (*PL_inplace) {
810 char *star = strchr(PL_inplace, '*');
2d259d92 811 if (star) {
3280af22 812 char *begin = PL_inplace;
2d259d92 813 sv_setpvn(sv, "", 0);
814 do {
815 sv_catpvn(sv, begin, star - begin);
3280af22 816 sv_catpvn(sv, PL_oldname, oldlen);
2d259d92 817 begin = ++star;
818 } while ((star = strchr(begin, '*')));
3d66d7bb 819 if (*begin)
820 sv_catpv(sv,begin);
2d259d92 821 }
822 else {
3280af22 823 sv_catpv(sv,PL_inplace);
2d259d92 824 }
c623bd54 825#ifndef FLEXFILENAMES
5f74f29c 826 if ((PerlLIO_stat(SvPVX(sv),&PL_statbuf) >= 0
827 && PL_statbuf.st_dev == filedev
828 && PL_statbuf.st_ino == fileino)
39e571d4 829#ifdef DJGPP
5f74f29c 830 || ((_djstat_fail_bits & _STFAIL_TRUENAME)!=0)
39e571d4 831#endif
f248d071 832 )
833 {
834 if (ckWARN_d(WARN_INPLACE))
9014280d 835 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
35c1215d 836 "Can't do inplace edit: %"SVf" would not be unique",
837 sv);
79072805 838 do_close(gv,FALSE);
c623bd54 839 continue;
840 }
841#endif
fe14fcc3 842#ifdef HAS_RENAME
2585f9a3 843#if !defined(DOSISH) && !defined(__CYGWIN__) && !defined(EPOC)
3280af22 844 if (PerlLIO_rename(PL_oldname,SvPVX(sv)) < 0) {
0453d815 845 if (ckWARN_d(WARN_INPLACE))
9014280d 846 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
35c1215d 847 "Can't rename %s to %"SVf": %s, skipping file",
848 PL_oldname, sv, Strerror(errno) );
79072805 849 do_close(gv,FALSE);
c623bd54 850 continue;
851 }
a687059c 852#else
79072805 853 do_close(gv,FALSE);
3028581b 854 (void)PerlLIO_unlink(SvPVX(sv));
b28d0864 855 (void)PerlLIO_rename(PL_oldname,SvPVX(sv));
9d116dd7 856 do_open(gv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,O_RDONLY,0,Nullfp);
55497cff 857#endif /* DOSISH */
ff8e2863 858#else
463ee0b2 859 (void)UNLINK(SvPVX(sv));
b28d0864 860 if (link(PL_oldname,SvPVX(sv)) < 0) {
0453d815 861 if (ckWARN_d(WARN_INPLACE))
9014280d 862 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
35c1215d 863 "Can't rename %s to %"SVf": %s, skipping file",
864 PL_oldname, sv, Strerror(errno) );
79072805 865 do_close(gv,FALSE);
c623bd54 866 continue;
867 }
b28d0864 868 (void)UNLINK(PL_oldname);
a687059c 869#endif
870 }
871 else {
c030f24b 872#if !defined(DOSISH) && !defined(AMIGAOS)
edc7bc49 873# ifndef VMS /* Don't delete; use automatic file versioning */
3280af22 874 if (UNLINK(PL_oldname) < 0) {
0453d815 875 if (ckWARN_d(WARN_INPLACE))
9014280d 876 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
0453d815 877 "Can't remove %s: %s, skipping file",
878 PL_oldname, Strerror(errno) );
79072805 879 do_close(gv,FALSE);
fe14fcc3 880 continue;
881 }
edc7bc49 882# endif
ff8e2863 883#else
cea2e8a9 884 Perl_croak(aTHX_ "Can't do inplace edit without backup");
ff8e2863 885#endif
a687059c 886 }
887
3280af22 888 sv_setpvn(sv,">",!PL_inplace);
889 sv_catpvn(sv,PL_oldname,oldlen);
748a9306 890 SETERRNO(0,0); /* in case sprintf set errno */
4119ab01 891#ifdef VMS
892 if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,
18708f5a 893 O_WRONLY|O_CREAT|O_TRUNC,0,Nullfp))
4119ab01 894#else
3280af22 895 if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,
18708f5a 896 O_WRONLY|O_CREAT|OPEN_EXCL,0666,Nullfp))
4119ab01 897#endif
18708f5a 898 {
0453d815 899 if (ckWARN_d(WARN_INPLACE))
9014280d 900 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't do inplace edit on %s: %s",
0453d815 901 PL_oldname, Strerror(errno) );
79072805 902 do_close(gv,FALSE);
fe14fcc3 903 continue;
904 }
3280af22 905 setdefout(PL_argvoutgv);
906 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
907 (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf);
fe14fcc3 908#ifdef HAS_FCHMOD
3280af22 909 (void)fchmod(PL_lastfd,PL_filemode);
a687059c 910#else
3e3baf6d 911# if !(defined(WIN32) && defined(__BORLANDC__))
912 /* Borland runtime creates a readonly file! */
b28d0864 913 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
3e3baf6d 914# endif
a687059c 915#endif
3280af22 916 if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) {
fe14fcc3 917#ifdef HAS_FCHOWN
3280af22 918 (void)fchown(PL_lastfd,fileuid,filegid);
a687059c 919#else
fe14fcc3 920#ifdef HAS_CHOWN
b28d0864 921 (void)PerlLIO_chown(PL_oldname,fileuid,filegid);
a687059c 922#endif
b1248f16 923#endif
fe14fcc3 924 }
a687059c 925 }
a0d0e21e 926 return IoIFP(GvIOp(gv));
a687059c 927 }
4d61ec05 928 else {
4d61ec05 929 if (ckWARN_d(WARN_INPLACE)) {
6af84f9f 930 int eno = errno;
931 if (PerlLIO_stat(PL_oldname, &PL_statbuf) >= 0
932 && !S_ISREG(PL_statbuf.st_mode))
933 {
9014280d 934 Perl_warner(aTHX_ packWARN(WARN_INPLACE),
4d61ec05 935 "Can't do inplace edit: %s is not a regular file",
9a7dcd9c 936 PL_oldname);
6af84f9f 937 }
4d61ec05 938 else
9014280d 939 Perl_warner(aTHX_ packWARN(WARN_INPLACE), "Can't open %s: %s",
6af84f9f 940 PL_oldname, Strerror(eno));
4d61ec05 941 }
942 }
a687059c 943 }
18708f5a 944 if (io && (IoFLAGS(io) & IOf_ARGV))
945 IoFLAGS(io) |= IOf_START;
3280af22 946 if (PL_inplace) {
947 (void)do_close(PL_argvoutgv,FALSE);
7a1c5554 948 if (io && (IoFLAGS(io) & IOf_ARGV)
949 && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0)
950 {
18708f5a 951 GV *oldout = (GV*)av_pop(PL_argvout_stack);
952 setdefout(oldout);
953 SvREFCNT_dec(oldout);
954 return Nullfp;
955 }
4633a7c4 956 setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO));
a687059c 957 }
958 return Nullfp;
959}
960
fe14fcc3 961#ifdef HAS_PIPE
afd9f252 962void
864dbfa3 963Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv)
afd9f252 964{
79072805 965 register IO *rstio;
966 register IO *wstio;
afd9f252 967 int fd[2];
968
79072805 969 if (!rgv)
afd9f252 970 goto badexit;
79072805 971 if (!wgv)
afd9f252 972 goto badexit;
973
a0d0e21e 974 rstio = GvIOn(rgv);
975 wstio = GvIOn(wgv);
afd9f252 976
a0d0e21e 977 if (IoIFP(rstio))
79072805 978 do_close(rgv,FALSE);
a0d0e21e 979 if (IoIFP(wstio))
79072805 980 do_close(wgv,FALSE);
afd9f252 981
3028581b 982 if (PerlProc_pipe(fd) < 0)
afd9f252 983 goto badexit;
460c8493 984 IoIFP(rstio) = PerlIO_fdopen(fd[0], "r"PIPE_OPEN_MODE);
985 IoOFP(wstio) = PerlIO_fdopen(fd[1], "w"PIPE_OPEN_MODE);
b5ac89c3 986 IoOFP(rstio) = IoIFP(rstio);
8990e307 987 IoIFP(wstio) = IoOFP(wstio);
50952442 988 IoTYPE(rstio) = IoTYPE_RDONLY;
989 IoTYPE(wstio) = IoTYPE_WRONLY;
8990e307 990 if (!IoIFP(rstio) || !IoOFP(wstio)) {
760ac839 991 if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
3028581b 992 else PerlLIO_close(fd[0]);
760ac839 993 if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
3028581b 994 else PerlLIO_close(fd[1]);
fe14fcc3 995 goto badexit;
996 }
afd9f252 997
3280af22 998 sv_setsv(sv,&PL_sv_yes);
afd9f252 999 return;
1000
1001badexit:
3280af22 1002 sv_setsv(sv,&PL_sv_undef);
afd9f252 1003 return;
1004}
b1248f16 1005#endif
afd9f252 1006
517844ec 1007/* explicit renamed to avoid C++ conflict -- kja */
a687059c 1008bool
864dbfa3 1009Perl_do_close(pTHX_ GV *gv, bool not_implicit)
a687059c 1010{
1193dd27 1011 bool retval;
1012 IO *io;
a687059c 1013
79072805 1014 if (!gv)
3280af22 1015 gv = PL_argvgv;
a0d0e21e 1016 if (!gv || SvTYPE(gv) != SVt_PVGV) {
1d2dff63 1017 if (not_implicit)
93189314 1018 SETERRNO(EBADF,SS_IVCHAN);
c2ab57d4 1019 return FALSE;
99b89507 1020 }
79072805 1021 io = GvIO(gv);
1022 if (!io) { /* never opened */
1d2dff63 1023 if (not_implicit) {
2dd78f96 1024 if (ckWARN(WARN_UNOPENED)) /* no check for closed here */
1025 report_evil_fh(gv, io, PL_op->op_type);
93189314 1026 SETERRNO(EBADF,SS_IVCHAN);
1d2dff63 1027 }
a687059c 1028 return FALSE;
1029 }
f2b5be74 1030 retval = io_close(io, not_implicit);
517844ec 1031 if (not_implicit) {
1193dd27 1032 IoLINES(io) = 0;
1033 IoPAGE(io) = 0;
1034 IoLINES_LEFT(io) = IoPAGE_LEN(io);
1035 }
50952442 1036 IoTYPE(io) = IoTYPE_CLOSED;
1193dd27 1037 return retval;
1038}
1039
1040bool
f2b5be74 1041Perl_io_close(pTHX_ IO *io, bool not_implicit)
1193dd27 1042{
1043 bool retval = FALSE;
1044 int status;
1045
8990e307 1046 if (IoIFP(io)) {
50952442 1047 if (IoTYPE(io) == IoTYPE_PIPE) {
3028581b 1048 status = PerlProc_pclose(IoIFP(io));
f2b5be74 1049 if (not_implicit) {
1050 STATUS_NATIVE_SET(status);
1051 retval = (STATUS_POSIX == 0);
1052 }
1053 else {
1054 retval = (status != -1);
1055 }
a687059c 1056 }
50952442 1057 else if (IoTYPE(io) == IoTYPE_STD)
a687059c 1058 retval = TRUE;
1059 else {
8990e307 1060 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
e199e3be 1061 bool prev_err = PerlIO_error(IoOFP(io));
1062 retval = (PerlIO_close(IoOFP(io)) != EOF && !prev_err);
760ac839 1063 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
c2ab57d4 1064 }
e199e3be 1065 else {
1066 bool prev_err = PerlIO_error(IoIFP(io));
1067 retval = (PerlIO_close(IoIFP(io)) != EOF && !prev_err);
1068 }
a687059c 1069 }
8990e307 1070 IoOFP(io) = IoIFP(io) = Nullfp;
79072805 1071 }
f2b5be74 1072 else if (not_implicit) {
93189314 1073 SETERRNO(EBADF,SS_IVCHAN);
20408e3c 1074 }
1193dd27 1075
a687059c 1076 return retval;
1077}
1078
1079bool
864dbfa3 1080Perl_do_eof(pTHX_ GV *gv)
a687059c 1081{
79072805 1082 register IO *io;
a687059c 1083 int ch;
1084
79072805 1085 io = GvIO(gv);
a687059c 1086
79072805 1087 if (!io)
a687059c 1088 return TRUE;
a00b5bd3 1089 else if (ckWARN(WARN_IO) && (IoTYPE(io) == IoTYPE_WRONLY))
06bcfee8 1090 report_evil_fh(gv, io, OP_phoney_OUTPUT_ONLY);
a687059c 1091
8990e307 1092 while (IoIFP(io)) {
505fdf5d 1093 int saverrno;
a687059c 1094
760ac839 1095 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
a20bf0c3 1096 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
760ac839 1097 return FALSE; /* this is the most usual case */
1098 }
a687059c 1099
505fdf5d 1100 saverrno = errno; /* getc and ungetc can stomp on errno */
760ac839 1101 ch = PerlIO_getc(IoIFP(io));
a687059c 1102 if (ch != EOF) {
760ac839 1103 (void)PerlIO_ungetc(IoIFP(io),ch);
505fdf5d 1104 errno = saverrno;
a687059c 1105 return FALSE;
1106 }
505fdf5d 1107 errno = saverrno;
fab3f3a7 1108
760ac839 1109 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
a20bf0c3 1110 if (PerlIO_get_cnt(IoIFP(io)) < -1)
1111 PerlIO_set_cnt(IoIFP(io),-1);
760ac839 1112 }
533c011a 1113 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
ed2c6b9b 1114 if (gv != PL_argvgv || !nextargv(gv)) /* get another fp handy */
a687059c 1115 return TRUE;
1116 }
1117 else
1118 return TRUE; /* normal fp, definitely end of file */
1119 }
1120 return TRUE;
1121}
1122
5ff3f7a4 1123Off_t
864dbfa3 1124Perl_do_tell(pTHX_ GV *gv)
a687059c 1125{
9c5ffd7c 1126 register IO *io = 0;
96e4d5b1 1127 register PerlIO *fp;
a687059c 1128
96e4d5b1 1129 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 1130#ifdef ULTRIX_STDIO_BOTCH
96e4d5b1 1131 if (PerlIO_eof(fp))
1132 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 1133#endif
8903cb82 1134 return PerlIO_tell(fp);
96e4d5b1 1135 }
411caa50 1136 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1137 report_evil_fh(gv, io, PL_op->op_type);
93189314 1138 SETERRNO(EBADF,RMS_IFI);
5ff3f7a4 1139 return (Off_t)-1;
a687059c 1140}
1141
1142bool
864dbfa3 1143Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
a687059c 1144{
9c5ffd7c 1145 register IO *io = 0;
137443ea 1146 register PerlIO *fp;
a687059c 1147
137443ea 1148 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 1149#ifdef ULTRIX_STDIO_BOTCH
137443ea 1150 if (PerlIO_eof(fp))
1151 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 1152#endif
8903cb82 1153 return PerlIO_seek(fp, pos, whence) >= 0;
137443ea 1154 }
411caa50 1155 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1156 report_evil_fh(gv, io, PL_op->op_type);
93189314 1157 SETERRNO(EBADF,RMS_IFI);
a687059c 1158 return FALSE;
1159}
1160
97cc44eb 1161Off_t
864dbfa3 1162Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
8903cb82 1163{
9c5ffd7c 1164 register IO *io = 0;
8903cb82 1165 register PerlIO *fp;
1166
1167 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io)))
3028581b 1168 return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence);
411caa50 1169 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1170 report_evil_fh(gv, io, PL_op->op_type);
93189314 1171 SETERRNO(EBADF,RMS_IFI);
d9b3e12d 1172 return (Off_t)-1;
8903cb82 1173}
1174
6ff81951 1175int
16fe6d59 1176Perl_mode_from_discipline(pTHX_ SV *discp)
1177{
1178 int mode = O_BINARY;
1179 if (discp) {
1180 STRLEN len;
1181 char *s = SvPV(discp,len);
1182 while (*s) {
1183 if (*s == ':') {
1184 switch (s[1]) {
1185 case 'r':
e963d6d2 1186 if (s[2] == 'a' && s[3] == 'w'
16fe6d59 1187 && (!s[4] || s[4] == ':' || isSPACE(s[4])))
1188 {
1189 mode = O_BINARY;
1190 s += 4;
1191 len -= 4;
1192 break;
1193 }
1194 /* FALL THROUGH */
1195 case 'c':
e963d6d2 1196 if (s[2] == 'r' && s[3] == 'l' && s[4] == 'f'
16fe6d59 1197 && (!s[5] || s[5] == ':' || isSPACE(s[5])))
1198 {
1199 mode = O_TEXT;
1200 s += 5;
1201 len -= 5;
1202 break;
1203 }
1204 /* FALL THROUGH */
1205 default:
1206 goto fail_discipline;
1207 }
1208 }
1209 else if (isSPACE(*s)) {
1210 ++s;
1211 --len;
1212 }
1213 else {
1214 char *end;
1215fail_discipline:
1216 end = strchr(s+1, ':');
1217 if (!end)
1218 end = s+len;
60382766 1219#ifndef PERLIO_LAYERS
363c40c4 1220 Perl_croak(aTHX_ "IO layers (like '%.*s') unavailable", end-s, s);
60382766 1221#else
18a33fb5 1222 len -= end-s;
60382766 1223 s = end;
1224#endif
16fe6d59 1225 }
1226 }
1227 }
1228 return mode;
1229}
1230
1231int
1232Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
6ff81951 1233{
60382766 1234 /* The old body of this is now in non-LAYER part of perlio.c
1235 * This is a stub for any XS code which might have been calling it.
1236 */
e1ec3a88 1237 const char *name = ":raw";
35990314 1238#ifdef PERLIO_USING_CRLF
8b24e160 1239 if (!(mode & O_BINARY))
6ce75a77 1240 name = ":crlf";
1241#endif
60382766 1242 return PerlIO_binmode(aTHX_ fp, iotype, mode, name);
6ff81951 1243}
1244
a0d0e21e 1245#if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
c2ab57d4 1246 /* code courtesy of William Kucharski */
fe14fcc3 1247#define HAS_CHSIZE
6eb13c3b 1248
517844ec 1249I32 my_chsize(fd, length)
79072805 1250I32 fd; /* file descriptor */
85e6fe83 1251Off_t length; /* length to set file to */
6eb13c3b 1252{
6eb13c3b 1253 struct flock fl;
c623ac67 1254 Stat_t filebuf;
6eb13c3b 1255
3028581b 1256 if (PerlLIO_fstat(fd, &filebuf) < 0)
6eb13c3b 1257 return -1;
1258
1259 if (filebuf.st_size < length) {
1260
1261 /* extend file length */
1262
3028581b 1263 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
6eb13c3b 1264 return -1;
1265
1266 /* write a "0" byte */
1267
3028581b 1268 if ((PerlLIO_write(fd, "", 1)) != 1)
6eb13c3b 1269 return -1;
1270 }
1271 else {
1272 /* truncate length */
1273
1274 fl.l_whence = 0;
1275 fl.l_len = 0;
1276 fl.l_start = length;
a0d0e21e 1277 fl.l_type = F_WRLCK; /* write lock on file space */
6eb13c3b 1278
1279 /*
a0d0e21e 1280 * This relies on the UNDOCUMENTED F_FREESP argument to
6eb13c3b 1281 * fcntl(2), which truncates the file so that it ends at the
1282 * position indicated by fl.l_start.
1283 *
1284 * Will minor miracles never cease?
1285 */
1286
a0d0e21e 1287 if (fcntl(fd, F_FREESP, &fl) < 0)
6eb13c3b 1288 return -1;
1289
1290 }
1291
1292 return 0;
1293}
a0d0e21e 1294#endif /* F_FREESP */
ff8e2863 1295
a687059c 1296bool
864dbfa3 1297Perl_do_print(pTHX_ register SV *sv, PerlIO *fp)
a687059c 1298{
e1ec3a88 1299 register const char *tmps;
463ee0b2 1300 STRLEN len;
a687059c 1301
79072805 1302 /* assuming fp is checked earlier */
1303 if (!sv)
1304 return TRUE;
3280af22 1305 if (PL_ofmt) {
8990e307 1306 if (SvGMAGICAL(sv))
79072805 1307 mg_get(sv);
463ee0b2 1308 if (SvIOK(sv) && SvIVX(sv) != 0) {
65202027 1309 PerlIO_printf(fp, PL_ofmt, (NV)SvIVX(sv));
760ac839 1310 return !PerlIO_error(fp);
79072805 1311 }
463ee0b2 1312 if ( (SvNOK(sv) && SvNVX(sv) != 0.0)
79072805 1313 || (looks_like_number(sv) && sv_2nv(sv) != 0.0) ) {
3280af22 1314 PerlIO_printf(fp, PL_ofmt, SvNVX(sv));
760ac839 1315 return !PerlIO_error(fp);
79072805 1316 }
a687059c 1317 }
79072805 1318 switch (SvTYPE(sv)) {
1319 case SVt_NULL:
411caa50 1320 if (ckWARN(WARN_UNINITIALIZED))
29489e7c 1321 report_uninit(sv);
ff8e2863 1322 return TRUE;
79072805 1323 case SVt_IV:
a0d0e21e 1324 if (SvIOK(sv)) {
1325 if (SvGMAGICAL(sv))
1326 mg_get(sv);
cf2093f6 1327 if (SvIsUV(sv))
57def98f 1328 PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv));
cf2093f6 1329 else
57def98f 1330 PerlIO_printf(fp, "%"IVdf, (IV)SvIVX(sv));
760ac839 1331 return !PerlIO_error(fp);
a0d0e21e 1332 }
1333 /* FALL THROUGH */
79072805 1334 default:
7d59b7e4 1335 if (PerlIO_isutf8(fp)) {
f9a63242 1336 if (!SvUTF8(sv))
88632417 1337 sv_utf8_upgrade_flags(sv = sv_mortalcopy(sv),
1338 SV_GMAGIC|SV_UTF8_NO_ENCODING);
7d59b7e4 1339 }
ae798467 1340 else if (DO_UTF8(sv)) {
2da16753 1341 if (!sv_utf8_downgrade((sv = sv_mortalcopy(sv)), TRUE)
62961d2e 1342 && ckWARN_d(WARN_UTF8))
2da16753 1343 {
9014280d 1344 Perl_warner(aTHX_ packWARN(WARN_UTF8), "Wide character in print");
ae798467 1345 }
1346 }
f9a63242 1347 tmps = SvPV(sv, len);
79072805 1348 break;
ff8e2863 1349 }
94e4c244 1350 /* To detect whether the process is about to overstep its
1351 * filesize limit we would need getrlimit(). We could then
1352 * also transparently raise the limit with setrlimit() --
1353 * but only until the system hard limit/the filesystem limit,
c5dd3cdd 1354 * at which we would get EPERM. Note that when using buffered
1355 * io the write failure can be delayed until the flush/close. --jhi */
a21ac455 1356 if (len && (PerlIO_write(fp,tmps,len) == 0))
a687059c 1357 return FALSE;
760ac839 1358 return !PerlIO_error(fp);
a687059c 1359}
1360
79072805 1361I32
cea2e8a9 1362Perl_my_stat(pTHX)
a687059c 1363{
39644a26 1364 dSP;
79072805 1365 IO *io;
2dd78f96 1366 GV* gv;
79072805 1367
533c011a 1368 if (PL_op->op_flags & OPf_REF) {
924508f0 1369 EXTEND(SP,1);
2dd78f96 1370 gv = cGVOP_gv;
748a9306 1371 do_fstat:
2dd78f96 1372 io = GvIO(gv);
8990e307 1373 if (io && IoIFP(io)) {
2dd78f96 1374 PL_statgv = gv;
3280af22 1375 sv_setpv(PL_statname,"");
1376 PL_laststype = OP_STAT;
1377 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
a687059c 1378 }
1379 else {
2dd78f96 1380 if (gv == PL_defgv)
3280af22 1381 return PL_laststatval;
2dd78f96 1382 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1383 report_evil_fh(gv, io, PL_op->op_type);
3280af22 1384 PL_statgv = Nullgv;
1385 sv_setpv(PL_statname,"");
1386 return (PL_laststatval = -1);
a687059c 1387 }
1388 }
fbb0b3b3 1389 else if (PL_op->op_private & OPpFT_STACKED) {
1390 return PL_laststatval;
1391 }
a687059c 1392 else {
748a9306 1393 SV* sv = POPs;
4b74e3fb 1394 char *s;
4ecd490c 1395 STRLEN len;
79072805 1396 PUTBACK;
748a9306 1397 if (SvTYPE(sv) == SVt_PVGV) {
2dd78f96 1398 gv = (GV*)sv;
748a9306 1399 goto do_fstat;
1400 }
1401 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
2dd78f96 1402 gv = (GV*)SvRV(sv);
748a9306 1403 goto do_fstat;
1404 }
1405
4ecd490c 1406 s = SvPV(sv, len);
3280af22 1407 PL_statgv = Nullgv;
4ecd490c 1408 sv_setpvn(PL_statname, s, len);
1409 s = SvPVX(PL_statname); /* s now NUL-terminated */
3280af22 1410 PL_laststype = OP_STAT;
1411 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
599cee73 1412 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
9014280d 1413 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
3280af22 1414 return PL_laststatval;
a687059c 1415 }
1416}
1417
fbb0b3b3 1418static char no_prev_lstat[] = "The stat preceding -l _ wasn't an lstat";
1419
79072805 1420I32
cea2e8a9 1421Perl_my_lstat(pTHX)
c623bd54 1422{
39644a26 1423 dSP;
79072805 1424 SV *sv;
2d8e6c8d 1425 STRLEN n_a;
533c011a 1426 if (PL_op->op_flags & OPf_REF) {
924508f0 1427 EXTEND(SP,1);
638eceb6 1428 if (cGVOP_gv == PL_defgv) {
3280af22 1429 if (PL_laststype != OP_LSTAT)
fbb0b3b3 1430 Perl_croak(aTHX_ no_prev_lstat);
3280af22 1431 return PL_laststatval;
fe14fcc3 1432 }
5d3e98de 1433 if (ckWARN(WARN_IO)) {
9014280d 1434 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
5d3e98de 1435 GvENAME(cGVOP_gv));
1436 return (PL_laststatval = -1);
1437 }
fe14fcc3 1438 }
fbb0b3b3 1439 else if (ckWARN(WARN_IO) && PL_laststype != OP_LSTAT
1440 && (PL_op->op_private & OPpFT_STACKED))
1441 Perl_croak(aTHX_ no_prev_lstat);
c623bd54 1442
3280af22 1443 PL_laststype = OP_LSTAT;
1444 PL_statgv = Nullgv;
79072805 1445 sv = POPs;
1446 PUTBACK;
5d3e98de 1447 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV && ckWARN(WARN_IO)) {
9014280d 1448 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
5d3e98de 1449 GvENAME((GV*) SvRV(sv)));
1450 return (PL_laststatval = -1);
1451 }
2d8e6c8d 1452 sv_setpv(PL_statname,SvPV(sv, n_a));
2d8e6c8d 1453 PL_laststatval = PerlLIO_lstat(SvPV(sv, n_a),&PL_statcache);
2d8e6c8d 1454 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(SvPV(sv, n_a), '\n'))
9014280d 1455 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
3280af22 1456 return PL_laststatval;
c623bd54 1457}
1458
622913ab 1459#ifndef OS2
a687059c 1460bool
864dbfa3 1461Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
a687059c 1462{
d5a9bfb0 1463 return do_aexec5(really, mark, sp, 0, 0);
1464}
622913ab 1465#endif
d5a9bfb0 1466
1467bool
2aa1486d 1468Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp,
1469 int fd, int do_report)
d5a9bfb0 1470{
cd39f2b6 1471#ifdef MACOS_TRADITIONAL
1472 Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
1473#else
a687059c 1474 register char **a;
e1ec3a88 1475 const char *tmps = Nullch;
2d8e6c8d 1476 STRLEN n_a;
a687059c 1477
79072805 1478 if (sp > mark) {
3280af22 1479 New(401,PL_Argv, sp - mark + 1, char*);
1480 a = PL_Argv;
79072805 1481 while (++mark <= sp) {
1482 if (*mark)
2d8e6c8d 1483 *a++ = SvPVx(*mark, n_a);
a687059c 1484 else
1485 *a++ = "";
1486 }
1487 *a = Nullch;
91b2752f 1488 if (really)
1489 tmps = SvPV(really, n_a);
1490 if ((!really && *PL_Argv[0] != '/') ||
1491 (really && *tmps != '/')) /* will execvp use PATH? */
79072805 1492 TAINT_ENV(); /* testing IFS here is overkill, probably */
b35112e7 1493 PERL_FPU_PRE_EXEC
91b2752f 1494 if (really && *tmps)
b4748376 1495 PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv));
a687059c 1496 else
b4748376 1497 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
b35112e7 1498 PERL_FPU_POST_EXEC
599cee73 1499 if (ckWARN(WARN_EXEC))
9014280d 1500 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
91b2752f 1501 (really ? tmps : PL_Argv[0]), Strerror(errno));
d5a9bfb0 1502 if (do_report) {
1503 int e = errno;
1504
1505 PerlLIO_write(fd, (void*)&e, sizeof(int));
1506 PerlLIO_close(fd);
1507 }
a687059c 1508 }
bee1dbe2 1509 do_execfree();
cd39f2b6 1510#endif
a687059c 1511 return FALSE;
1512}
1513
fe14fcc3 1514void
864dbfa3 1515Perl_do_execfree(pTHX)
ff8e2863 1516{
3280af22 1517 if (PL_Argv) {
1518 Safefree(PL_Argv);
1519 PL_Argv = Null(char **);
ff8e2863 1520 }
3280af22 1521 if (PL_Cmd) {
1522 Safefree(PL_Cmd);
1523 PL_Cmd = Nullch;
ff8e2863 1524 }
1525}
1526
cd39f2b6 1527#if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC) && !defined(MACOS_TRADITIONAL)
760ac839 1528
a687059c 1529bool
864dbfa3 1530Perl_do_exec(pTHX_ char *cmd)
a687059c 1531{
e446cec8 1532 return do_exec3(cmd,0,0);
1533}
1534
1535bool
864dbfa3 1536Perl_do_exec3(pTHX_ char *cmd, int fd, int do_report)
e446cec8 1537{
a687059c 1538 register char **a;
1539 register char *s;
a687059c 1540
748a9306 1541 while (*cmd && isSPACE(*cmd))
1542 cmd++;
1543
a687059c 1544 /* save an extra exec if possible */
1545
bf38876a 1546#ifdef CSH
d05c1ba0 1547 {
0c19750d 1548 char flags[PERL_FLAGS_MAX];
d05c1ba0 1549 if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
1550 strnEQ(cmd+PL_cshlen," -c",3)) {
0c19750d 1551#ifdef HAS_STRLCPY
1552 strlcpy(flags, "-c", PERL_FLAGS_MAX);
1553#else
d05c1ba0 1554 strcpy(flags,"-c");
0c19750d 1555#endif
d05c1ba0 1556 s = cmd+PL_cshlen+3;
1557 if (*s == 'f') {
1558 s++;
0c19750d 1559#ifdef HAS_STRLCPY
1560 strlcat(flags, "f", PERL_FLAGS_MAX);
1561#else
d05c1ba0 1562 strcat(flags,"f");
0c19750d 1563#endif
d05c1ba0 1564 }
1565 if (*s == ' ')
1566 s++;
1567 if (*s++ == '\'') {
1568 char *ncmd = s;
1569
1570 while (*s)
1571 s++;
1572 if (s[-1] == '\n')
1573 *--s = '\0';
1574 if (s[-1] == '\'') {
1575 *--s = '\0';
b35112e7 1576 PERL_FPU_PRE_EXEC
d05c1ba0 1577 PerlProc_execl(PL_cshname,"csh", flags, ncmd, (char*)0);
b35112e7 1578 PERL_FPU_POST_EXEC
d05c1ba0 1579 *s = '\'';
1580 return FALSE;
1581 }
1582 }
a687059c 1583 }
1584 }
bf38876a 1585#endif /* CSH */
a687059c 1586
1587 /* see if there are shell metacharacters in it */
1588
748a9306 1589 if (*cmd == '.' && isSPACE(cmd[1]))
1590 goto doshell;
1591
1592 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1593 goto doshell;
1594
c170e444 1595 for (s = cmd; *s && isALNUM(*s); s++) ; /* catch VAR=val gizmo */
63f2c1e1 1596 if (*s == '=')
1597 goto doshell;
748a9306 1598
a687059c 1599 for (s = cmd; *s; s++) {
d05c1ba0 1600 if (*s != ' ' && !isALPHA(*s) &&
1601 strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
a687059c 1602 if (*s == '\n' && !s[1]) {
1603 *s = '\0';
1604 break;
1605 }
603a98b0 1606 /* handle the 2>&1 construct at the end */
1607 if (*s == '>' && s[1] == '&' && s[2] == '1'
1608 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1609 && (!s[3] || isSPACE(s[3])))
1610 {
1611 char *t = s + 3;
1612
1613 while (*t && isSPACE(*t))
1614 ++t;
943bbd07 1615 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
603a98b0 1616 s[-2] = '\0';
1617 break;
1618 }
1619 }
a687059c 1620 doshell:
b35112e7 1621 PERL_FPU_PRE_EXEC
3280af22 1622 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char*)0);
b35112e7 1623 PERL_FPU_POST_EXEC
a687059c 1624 return FALSE;
1625 }
1626 }
748a9306 1627
3280af22 1628 New(402,PL_Argv, (s - cmd) / 2 + 2, char*);
1629 PL_Cmd = savepvn(cmd, s-cmd);
1630 a = PL_Argv;
1631 for (s = PL_Cmd; *s;) {
99b89507 1632 while (*s && isSPACE(*s)) s++;
a687059c 1633 if (*s)
1634 *(a++) = s;
99b89507 1635 while (*s && !isSPACE(*s)) s++;
a687059c 1636 if (*s)
1637 *s++ = '\0';
1638 }
1639 *a = Nullch;
3280af22 1640 if (PL_Argv[0]) {
b35112e7 1641 PERL_FPU_PRE_EXEC
3280af22 1642 PerlProc_execvp(PL_Argv[0],PL_Argv);
b35112e7 1643 PERL_FPU_POST_EXEC
b1248f16 1644 if (errno == ENOEXEC) { /* for system V NIH syndrome */
ff8e2863 1645 do_execfree();
a687059c 1646 goto doshell;
b1248f16 1647 }
d008e5eb 1648 {
e446cec8 1649 int e = errno;
1650
d008e5eb 1651 if (ckWARN(WARN_EXEC))
9014280d 1652 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
d008e5eb 1653 PL_Argv[0], Strerror(errno));
e446cec8 1654 if (do_report) {
1655 PerlLIO_write(fd, (void*)&e, sizeof(int));
1656 PerlLIO_close(fd);
1657 }
d008e5eb 1658 }
a687059c 1659 }
ff8e2863 1660 do_execfree();
a687059c 1661 return FALSE;
1662}
1663
6890e559 1664#endif /* OS2 || WIN32 */
760ac839 1665
79072805 1666I32
864dbfa3 1667Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
a687059c 1668{
79072805 1669 register I32 val;
1670 register I32 val2;
1671 register I32 tot = 0;
e1ec3a88 1672 const char *what;
a687059c 1673 char *s;
79072805 1674 SV **oldmark = mark;
2d8e6c8d 1675 STRLEN n_a;
a687059c 1676
20408e3c 1677#define APPLY_TAINT_PROPER() \
3280af22 1678 STMT_START { \
17406bd6 1679 if (PL_tainted) { TAINT_PROPER(what); } \
873ef191 1680 } STMT_END
20408e3c 1681
1682 /* This is a first heuristic; it doesn't catch tainting magic. */
3280af22 1683 if (PL_tainting) {
463ee0b2 1684 while (++mark <= sp) {
bbce6d69 1685 if (SvTAINTED(*mark)) {
1686 TAINT;
1687 break;
1688 }
463ee0b2 1689 }
1690 mark = oldmark;
1691 }
a687059c 1692 switch (type) {
79072805 1693 case OP_CHMOD:
20408e3c 1694 what = "chmod";
1695 APPLY_TAINT_PROPER();
79072805 1696 if (++mark <= sp) {
463ee0b2 1697 val = SvIVx(*mark);
20408e3c 1698 APPLY_TAINT_PROPER();
1699 tot = sp - mark;
79072805 1700 while (++mark <= sp) {
2d8e6c8d 1701 char *name = SvPVx(*mark, n_a);
20408e3c 1702 APPLY_TAINT_PROPER();
1703 if (PerlLIO_chmod(name, val))
a687059c 1704 tot--;
1705 }
1706 }
1707 break;
fe14fcc3 1708#ifdef HAS_CHOWN
79072805 1709 case OP_CHOWN:
20408e3c 1710 what = "chown";
1711 APPLY_TAINT_PROPER();
79072805 1712 if (sp - mark > 2) {
463ee0b2 1713 val = SvIVx(*++mark);
1714 val2 = SvIVx(*++mark);
20408e3c 1715 APPLY_TAINT_PROPER();
a0d0e21e 1716 tot = sp - mark;
79072805 1717 while (++mark <= sp) {
2d8e6c8d 1718 char *name = SvPVx(*mark, n_a);
20408e3c 1719 APPLY_TAINT_PROPER();
36660982 1720 if (PerlLIO_chown(name, val, val2))
a687059c 1721 tot--;
1722 }
1723 }
1724 break;
b1248f16 1725#endif
a1d180c4 1726/*
dd64f1c3 1727XXX Should we make lchown() directly available from perl?
1728For now, we'll let Configure test for HAS_LCHOWN, but do
1729nothing in the core.
1730 --AD 5/1998
1731*/
fe14fcc3 1732#ifdef HAS_KILL
79072805 1733 case OP_KILL:
20408e3c 1734 what = "kill";
1735 APPLY_TAINT_PROPER();
55497cff 1736 if (mark == sp)
1737 break;
2d8e6c8d 1738 s = SvPVx(*++mark, n_a);
e02bfb16 1739 if (isALPHA(*s)) {
79072805 1740 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1741 s += 3;
e02bfb16 1742 if ((val = whichsig(s)) < 0)
cea2e8a9 1743 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
79072805 1744 }
1745 else
463ee0b2 1746 val = SvIVx(*mark);
20408e3c 1747 APPLY_TAINT_PROPER();
1748 tot = sp - mark;
3595fcef 1749#ifdef VMS
1750 /* kill() doesn't do process groups (job trees?) under VMS */
1751 if (val < 0) val = -val;
1752 if (val == SIGKILL) {
1753# include <starlet.h>
1754 /* Use native sys$delprc() to insure that target process is
1755 * deleted; supervisor-mode images don't pay attention to
1756 * CRTL's emulation of Unix-style signals and kill()
1757 */
1758 while (++mark <= sp) {
1759 I32 proc = SvIVx(*mark);
1760 register unsigned long int __vmssts;
20408e3c 1761 APPLY_TAINT_PROPER();
3595fcef 1762 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1763 tot--;
1764 switch (__vmssts) {
1765 case SS$_NONEXPR:
1766 case SS$_NOSUCHNODE:
1767 SETERRNO(ESRCH,__vmssts);
1768 break;
1769 case SS$_NOPRIV:
1770 SETERRNO(EPERM,__vmssts);
1771 break;
1772 default:
1773 SETERRNO(EVMSERR,__vmssts);
1774 }
1775 }
1776 }
1777 break;
1778 }
1779#endif
79072805 1780 if (val < 0) {
1781 val = -val;
1782 while (++mark <= sp) {
463ee0b2 1783 I32 proc = SvIVx(*mark);
20408e3c 1784 APPLY_TAINT_PROPER();
fe14fcc3 1785#ifdef HAS_KILLPG
3028581b 1786 if (PerlProc_killpg(proc,val)) /* BSD */
a687059c 1787#else
3028581b 1788 if (PerlProc_kill(-proc,val)) /* SYSV */
a687059c 1789#endif
79072805 1790 tot--;
a687059c 1791 }
79072805 1792 }
1793 else {
1794 while (++mark <= sp) {
20408e3c 1795 I32 proc = SvIVx(*mark);
1796 APPLY_TAINT_PROPER();
1797 if (PerlProc_kill(proc, val))
79072805 1798 tot--;
a687059c 1799 }
1800 }
1801 break;
b1248f16 1802#endif
79072805 1803 case OP_UNLINK:
20408e3c 1804 what = "unlink";
1805 APPLY_TAINT_PROPER();
79072805 1806 tot = sp - mark;
1807 while (++mark <= sp) {
2d8e6c8d 1808 s = SvPVx(*mark, n_a);
20408e3c 1809 APPLY_TAINT_PROPER();
3280af22 1810 if (PL_euid || PL_unsafe) {
a687059c 1811 if (UNLINK(s))
1812 tot--;
1813 }
1814 else { /* don't let root wipe out directories without -U */
3280af22 1815 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
a687059c 1816 tot--;
1817 else {
1818 if (UNLINK(s))
1819 tot--;
1820 }
1821 }
1822 }
1823 break;
a0d0e21e 1824#ifdef HAS_UTIME
79072805 1825 case OP_UTIME:
20408e3c 1826 what = "utime";
1827 APPLY_TAINT_PROPER();
79072805 1828 if (sp - mark > 2) {
748a9306 1829#if defined(I_UTIME) || defined(VMS)
663a0e37 1830 struct utimbuf utbuf;
1831#else
a687059c 1832 struct {
dd2821f6 1833 Time_t actime;
1834 Time_t modtime;
a687059c 1835 } utbuf;
663a0e37 1836#endif
a687059c 1837
c6f7b413 1838 SV* accessed = *++mark;
1839 SV* modified = *++mark;
1840 void * utbufp = &utbuf;
1841
6ec06612 1842 /* Be like C, and if both times are undefined, let the C
1843 * library figure out what to do. This usually means
1844 * "current time". */
c6f7b413 1845
1846 if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
6ec06612 1847 utbufp = NULL;
1848 else {
1849 Zero(&utbuf, sizeof utbuf, char);
517844ec 1850#ifdef BIG_TIME
6ec06612 1851 utbuf.actime = (Time_t)SvNVx(accessed); /* time accessed */
1852 utbuf.modtime = (Time_t)SvNVx(modified); /* time modified */
517844ec 1853#else
6ec06612 1854 utbuf.actime = (Time_t)SvIVx(accessed); /* time accessed */
1855 utbuf.modtime = (Time_t)SvIVx(modified); /* time modified */
517844ec 1856#endif
6ec06612 1857 }
1858 APPLY_TAINT_PROPER();
79072805 1859 tot = sp - mark;
1860 while (++mark <= sp) {
2d8e6c8d 1861 char *name = SvPVx(*mark, n_a);
20408e3c 1862 APPLY_TAINT_PROPER();
c6f7b413 1863 if (PerlLIO_utime(name, utbufp))
a687059c 1864 tot--;
1865 }
a687059c 1866 }
1867 else
79072805 1868 tot = 0;
a687059c 1869 break;
a0d0e21e 1870#endif
a687059c 1871 }
1872 return tot;
20408e3c 1873
20408e3c 1874#undef APPLY_TAINT_PROPER
a687059c 1875}
1876
1877/* Do the permissions allow some operation? Assumes statcache already set. */
a0d0e21e 1878#ifndef VMS /* VMS' cando is in vms.c */
7f4774ae 1879bool
1880Perl_cando(pTHX_ Mode_t mode, Uid_t effective, register Stat_t *statbufp)
1881/* Note: we use `effective' both for uids and gids.
1882 * Here we are betting on Uid_t being equal or wider than Gid_t. */
a687059c 1883{
bee1dbe2 1884#ifdef DOSISH
fe14fcc3 1885 /* [Comments and code from Len Reed]
1886 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1887 * to write-protected files. The execute permission bit is set
1888 * by the Miscrosoft C library stat() function for the following:
1889 * .exe files
1890 * .com files
1891 * .bat files
1892 * directories
1893 * All files and directories are readable.
1894 * Directories and special files, e.g. "CON", cannot be
1895 * write-protected.
1896 * [Comment by Tom Dinger -- a directory can have the write-protect
1897 * bit set in the file system, but DOS permits changes to
1898 * the directory anyway. In addition, all bets are off
1899 * here for networked software, such as Novell and
1900 * Sun's PC-NFS.]
1901 */
1902
bee1dbe2 1903 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1904 * too so it will actually look into the files for magic numbers
1905 */
7f4774ae 1906 return (mode & statbufp->st_mode) ? TRUE : FALSE;
fe14fcc3 1907
55497cff 1908#else /* ! DOSISH */
3280af22 1909 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
7f4774ae 1910 if (mode == S_IXUSR) {
c623bd54 1911 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
a687059c 1912 return TRUE;
1913 }
1914 else
1915 return TRUE; /* root reads and writes anything */
1916 return FALSE;
1917 }
3280af22 1918 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
7f4774ae 1919 if (statbufp->st_mode & mode)
a687059c 1920 return TRUE; /* ok as "user" */
1921 }
d8eceb89 1922 else if (ingroup(statbufp->st_gid,effective)) {
7f4774ae 1923 if (statbufp->st_mode & mode >> 3)
a687059c 1924 return TRUE; /* ok as "group" */
1925 }
7f4774ae 1926 else if (statbufp->st_mode & mode >> 6)
a687059c 1927 return TRUE; /* ok as "other" */
1928 return FALSE;
55497cff 1929#endif /* ! DOSISH */
a687059c 1930}
a0d0e21e 1931#endif /* ! VMS */
a687059c 1932
d8eceb89 1933bool
1934Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective)
a687059c 1935{
cd39f2b6 1936#ifdef MACOS_TRADITIONAL
1937 /* This is simply not correct for AppleShare, but fix it yerself. */
1938 return TRUE;
1939#else
3280af22 1940 if (testgid == (effective ? PL_egid : PL_gid))
a687059c 1941 return TRUE;
fe14fcc3 1942#ifdef HAS_GETGROUPS
a687059c 1943#ifndef NGROUPS
1944#define NGROUPS 32
1945#endif
1946 {
a0d0e21e 1947 Groups_t gary[NGROUPS];
79072805 1948 I32 anum;
a687059c 1949
1950 anum = getgroups(NGROUPS,gary);
1951 while (--anum >= 0)
1952 if (gary[anum] == testgid)
1953 return TRUE;
1954 }
1955#endif
1956 return FALSE;
cd39f2b6 1957#endif
a687059c 1958}
c2ab57d4 1959
fe14fcc3 1960#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 1961
79072805 1962I32
864dbfa3 1963Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1964{
c2ab57d4 1965 key_t key;
79072805 1966 I32 n, flags;
c2ab57d4 1967
463ee0b2 1968 key = (key_t)SvNVx(*++mark);
1969 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark);
1970 flags = SvIVx(*++mark);
748a9306 1971 SETERRNO(0,0);
c2ab57d4 1972 switch (optype)
1973 {
fe14fcc3 1974#ifdef HAS_MSG
79072805 1975 case OP_MSGGET:
c2ab57d4 1976 return msgget(key, flags);
e5d73d77 1977#endif
fe14fcc3 1978#ifdef HAS_SEM
79072805 1979 case OP_SEMGET:
c2ab57d4 1980 return semget(key, n, flags);
e5d73d77 1981#endif
fe14fcc3 1982#ifdef HAS_SHM
79072805 1983 case OP_SHMGET:
c2ab57d4 1984 return shmget(key, n, flags);
e5d73d77 1985#endif
fe14fcc3 1986#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1987 default:
cea2e8a9 1988 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1989#endif
c2ab57d4 1990 }
1991 return -1; /* should never happen */
1992}
1993
79072805 1994I32
864dbfa3 1995Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1996{
79072805 1997 SV *astr;
c2ab57d4 1998 char *a;
a0d0e21e 1999 I32 id, n, cmd, infosize, getinfo;
2000 I32 ret = -1;
c2ab57d4 2001
463ee0b2 2002 id = SvIVx(*++mark);
2003 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
2004 cmd = SvIVx(*++mark);
79072805 2005 astr = *++mark;
c2ab57d4 2006 infosize = 0;
2007 getinfo = (cmd == IPC_STAT);
2008
2009 switch (optype)
2010 {
fe14fcc3 2011#ifdef HAS_MSG
79072805 2012 case OP_MSGCTL:
c2ab57d4 2013 if (cmd == IPC_STAT || cmd == IPC_SET)
2014 infosize = sizeof(struct msqid_ds);
2015 break;
e5d73d77 2016#endif
fe14fcc3 2017#ifdef HAS_SHM
79072805 2018 case OP_SHMCTL:
c2ab57d4 2019 if (cmd == IPC_STAT || cmd == IPC_SET)
2020 infosize = sizeof(struct shmid_ds);
2021 break;
e5d73d77 2022#endif
fe14fcc3 2023#ifdef HAS_SEM
79072805 2024 case OP_SEMCTL:
39398f3f 2025#ifdef Semctl
c2ab57d4 2026 if (cmd == IPC_STAT || cmd == IPC_SET)
2027 infosize = sizeof(struct semid_ds);
2028 else if (cmd == GETALL || cmd == SETALL)
2029 {
8e591e46 2030 struct semid_ds semds;
bd89102f 2031 union semun semun;
e6f0bdd6 2032#ifdef EXTRA_F_IN_SEMUN_BUF
2033 semun.buff = &semds;
2034#else
84902520 2035 semun.buf = &semds;
e6f0bdd6 2036#endif
c2ab57d4 2037 getinfo = (cmd == GETALL);
9b89d93d 2038 if (Semctl(id, 0, IPC_STAT, semun) == -1)
2039 return -1;
6e21c824 2040 infosize = semds.sem_nsems * sizeof(short);
2041 /* "short" is technically wrong but much more portable
2042 than guessing about u_?short(_t)? */
c2ab57d4 2043 }
39398f3f 2044#else
cea2e8a9 2045 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 2046#endif
c2ab57d4 2047 break;
e5d73d77 2048#endif
fe14fcc3 2049#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 2050 default:
cea2e8a9 2051 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 2052#endif
c2ab57d4 2053 }
2054
2055 if (infosize)
2056 {
a0d0e21e 2057 STRLEN len;
c2ab57d4 2058 if (getinfo)
2059 {
a0d0e21e 2060 SvPV_force(astr, len);
2061 a = SvGROW(astr, infosize+1);
c2ab57d4 2062 }
2063 else
2064 {
463ee0b2 2065 a = SvPV(astr, len);
2066 if (len != infosize)
cea2e8a9 2067 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
4ec43091 2068 PL_op_desc[optype],
2069 (unsigned long)len,
2070 (long)infosize);
c2ab57d4 2071 }
2072 }
2073 else
2074 {
c030ccd9 2075 IV i = SvIV(astr);
56431972 2076 a = INT2PTR(char *,i); /* ouch */
c2ab57d4 2077 }
748a9306 2078 SETERRNO(0,0);
c2ab57d4 2079 switch (optype)
2080 {
fe14fcc3 2081#ifdef HAS_MSG
79072805 2082 case OP_MSGCTL:
bee1dbe2 2083 ret = msgctl(id, cmd, (struct msqid_ds *)a);
c2ab57d4 2084 break;
e5d73d77 2085#endif
fe14fcc3 2086#ifdef HAS_SEM
bd89102f 2087 case OP_SEMCTL: {
39398f3f 2088#ifdef Semctl
bd89102f 2089 union semun unsemds;
2090
e6f0bdd6 2091#ifdef EXTRA_F_IN_SEMUN_BUF
2092 unsemds.buff = (struct semid_ds *)a;
2093#else
bd89102f 2094 unsemds.buf = (struct semid_ds *)a;
e6f0bdd6 2095#endif
bd89102f 2096 ret = Semctl(id, n, cmd, unsemds);
39398f3f 2097#else
cea2e8a9 2098 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 2099#endif
bd89102f 2100 }
c2ab57d4 2101 break;
e5d73d77 2102#endif
fe14fcc3 2103#ifdef HAS_SHM
79072805 2104 case OP_SHMCTL:
bee1dbe2 2105 ret = shmctl(id, cmd, (struct shmid_ds *)a);
c2ab57d4 2106 break;
e5d73d77 2107#endif
c2ab57d4 2108 }
2109 if (getinfo && ret >= 0) {
79072805 2110 SvCUR_set(astr, infosize);
2111 *SvEND(astr) = '\0';
a0d0e21e 2112 SvSETMAGIC(astr);
c2ab57d4 2113 }
2114 return ret;
2115}
2116
79072805 2117I32
864dbfa3 2118Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 2119{
fe14fcc3 2120#ifdef HAS_MSG
79072805 2121 SV *mstr;
c2ab57d4 2122 char *mbuf;
79072805 2123 I32 id, msize, flags;
463ee0b2 2124 STRLEN len;
c2ab57d4 2125
463ee0b2 2126 id = SvIVx(*++mark);
79072805 2127 mstr = *++mark;
463ee0b2 2128 flags = SvIVx(*++mark);
2129 mbuf = SvPV(mstr, len);
2130 if ((msize = len - sizeof(long)) < 0)
cea2e8a9 2131 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 2132 SETERRNO(0,0);
bee1dbe2 2133 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
e5d73d77 2134#else
cea2e8a9 2135 Perl_croak(aTHX_ "msgsnd not implemented");
e5d73d77 2136#endif
c2ab57d4 2137}
2138
79072805 2139I32
864dbfa3 2140Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 2141{
fe14fcc3 2142#ifdef HAS_MSG
79072805 2143 SV *mstr;
c2ab57d4 2144 char *mbuf;
2145 long mtype;
79072805 2146 I32 id, msize, flags, ret;
463ee0b2 2147 STRLEN len;
79072805 2148
463ee0b2 2149 id = SvIVx(*++mark);
79072805 2150 mstr = *++mark;
c2e66d9e 2151 /* suppress warning when reading into undef var --jhi */
2152 if (! SvOK(mstr))
2153 sv_setpvn(mstr, "", 0);
463ee0b2 2154 msize = SvIVx(*++mark);
2155 mtype = (long)SvIVx(*++mark);
2156 flags = SvIVx(*++mark);
a0d0e21e 2157 SvPV_force(mstr, len);
2158 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
a1d180c4 2159
748a9306 2160 SETERRNO(0,0);
bee1dbe2 2161 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
c2ab57d4 2162 if (ret >= 0) {
79072805 2163 SvCUR_set(mstr, sizeof(long)+ret);
2164 *SvEND(mstr) = '\0';
41d6edb2 2165#ifndef INCOMPLETE_TAINTS
2166 /* who knows who has been playing with this message? */
2167 SvTAINTED_on(mstr);
2168#endif
c2ab57d4 2169 }
2170 return ret;
e5d73d77 2171#else
cea2e8a9 2172 Perl_croak(aTHX_ "msgrcv not implemented");
e5d73d77 2173#endif
c2ab57d4 2174}
2175
79072805 2176I32
864dbfa3 2177Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 2178{
fe14fcc3 2179#ifdef HAS_SEM
79072805 2180 SV *opstr;
c2ab57d4 2181 char *opbuf;
463ee0b2 2182 I32 id;
2183 STRLEN opsize;
c2ab57d4 2184
463ee0b2 2185 id = SvIVx(*++mark);
79072805 2186 opstr = *++mark;
463ee0b2 2187 opbuf = SvPV(opstr, opsize);
248ff010 2188 if (opsize < 3 * SHORTSIZE
2189 || (opsize % (3 * SHORTSIZE))) {
93189314 2190 SETERRNO(EINVAL,LIB_INVARG);
c2ab57d4 2191 return -1;
2192 }
748a9306 2193 SETERRNO(0,0);
248ff010 2194 /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
2195 {
2196 int nsops = opsize / (3 * sizeof (short));
2197 int i = nsops;
2198 short *ops = (short *) opbuf;
2199 short *o = ops;
2200 struct sembuf *temps, *t;
2201 I32 result;
2202
2203 New (0, temps, nsops, struct sembuf);
2204 t = temps;
2205 while (i--) {
2206 t->sem_num = *o++;
2207 t->sem_op = *o++;
2208 t->sem_flg = *o++;
2209 t++;
2210 }
2211 result = semop(id, temps, nsops);
2212 t = temps;
2213 o = ops;
2214 i = nsops;
2215 while (i--) {
2216 *o++ = t->sem_num;
2217 *o++ = t->sem_op;
2218 *o++ = t->sem_flg;
2219 t++;
2220 }
2221 Safefree(temps);
2222 return result;
2223 }
e5d73d77 2224#else
cea2e8a9 2225 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 2226#endif
c2ab57d4 2227}
2228
79072805 2229I32
864dbfa3 2230Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 2231{
fe14fcc3 2232#ifdef HAS_SHM
79072805 2233 SV *mstr;
c2ab57d4 2234 char *mbuf, *shm;
79072805 2235 I32 id, mpos, msize;
463ee0b2 2236 STRLEN len;
c2ab57d4 2237 struct shmid_ds shmds;
c2ab57d4 2238
463ee0b2 2239 id = SvIVx(*++mark);
79072805 2240 mstr = *++mark;
463ee0b2 2241 mpos = SvIVx(*++mark);
2242 msize = SvIVx(*++mark);
748a9306 2243 SETERRNO(0,0);
c2ab57d4 2244 if (shmctl(id, IPC_STAT, &shmds) == -1)
2245 return -1;
2246 if (mpos < 0 || msize < 0 || mpos + msize > shmds.shm_segsz) {
93189314 2247 SETERRNO(EFAULT,SS_ACCVIO); /* can't do as caller requested */
c2ab57d4 2248 return -1;
2249 }
8ac85365 2250 shm = (char *)shmat(id, (char*)NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
c2ab57d4 2251 if (shm == (char *)-1) /* I hate System V IPC, I really do */
2252 return -1;
79072805 2253 if (optype == OP_SHMREAD) {
9f538c04 2254 /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
2255 if (! SvOK(mstr))
2256 sv_setpvn(mstr, "", 0);
a0d0e21e 2257 SvPV_force(mstr, len);
2258 mbuf = SvGROW(mstr, msize+1);
2259
bee1dbe2 2260 Copy(shm + mpos, mbuf, msize, char);
79072805 2261 SvCUR_set(mstr, msize);
2262 *SvEND(mstr) = '\0';
a0d0e21e 2263 SvSETMAGIC(mstr);
d929ce6f 2264#ifndef INCOMPLETE_TAINTS
2265 /* who knows who has been playing with this shared memory? */
2266 SvTAINTED_on(mstr);
2267#endif
c2ab57d4 2268 }
2269 else {
79072805 2270 I32 n;
c2ab57d4 2271
a0d0e21e 2272 mbuf = SvPV(mstr, len);
463ee0b2 2273 if ((n = len) > msize)
c2ab57d4 2274 n = msize;
bee1dbe2 2275 Copy(mbuf, shm + mpos, n, char);
c2ab57d4 2276 if (n < msize)
bee1dbe2 2277 memzero(shm + mpos + n, msize - n);
c2ab57d4 2278 }
2279 return shmdt(shm);
e5d73d77 2280#else
cea2e8a9 2281 Perl_croak(aTHX_ "shm I/O not implemented");
e5d73d77 2282#endif
c2ab57d4 2283}
2284
fe14fcc3 2285#endif /* SYSV IPC */
4e35701f 2286
0d44d22b 2287/*
ccfc67b7 2288=head1 IO Functions
2289
0d44d22b 2290=for apidoc start_glob
2291
2292Function called by C<do_readline> to spawn a glob (or do the glob inside
2293perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
210b36aa 2294this glob starter is only used by miniperl during the build process.
0d44d22b 2295Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
fab3f3a7 2296
0d44d22b 2297=cut
2298*/
2299
2300PerlIO *
2301Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
2302{
2303 SV *tmpcmd = NEWSV(55, 0);
2304 PerlIO *fp;
2305 ENTER;
2306 SAVEFREESV(tmpcmd);
2307#ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
2308 /* since spawning off a process is a real performance hit */
2309 {
2310#include <descrip.h>
2311#include <lib$routines.h>
2312#include <nam.h>
2313#include <rmsdef.h>
2314 char rslt[NAM$C_MAXRSS+1+sizeof(unsigned short int)] = {'\0','\0'};
2315 char vmsspec[NAM$C_MAXRSS+1];
2316 char *rstr = rslt + sizeof(unsigned short int), *begin, *end, *cp;
0d44d22b 2317 $DESCRIPTOR(dfltdsc,"SYS$DISK:[]*.*;");
2318 PerlIO *tmpfp;
2319 STRLEN i;
2320 struct dsc$descriptor_s wilddsc
2321 = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
2322 struct dsc$descriptor_vs rsdsc
2323 = {sizeof rslt, DSC$K_DTYPE_VT, DSC$K_CLASS_VS, rslt};
2324 unsigned long int cxt = 0, sts = 0, ok = 1, hasdir = 0, hasver = 0, isunix = 0;
2325
2326 /* We could find out if there's an explicit dev/dir or version
2327 by peeking into lib$find_file's internal context at
2328 ((struct NAM *)((struct FAB *)cxt)->fab$l_nam)->nam$l_fnb
2329 but that's unsupported, so I don't want to do it now and
2330 have it bite someone in the future. */
0d44d22b 2331 cp = SvPV(tmpglob,i);
2332 for (; i; i--) {
2333 if (cp[i] == ';') hasver = 1;
2334 if (cp[i] == '.') {
2335 if (sts) hasver = 1;
2336 else sts = 1;
2337 }
2338 if (cp[i] == '/') {
2339 hasdir = isunix = 1;
2340 break;
2341 }
2342 if (cp[i] == ']' || cp[i] == '>' || cp[i] == ':') {
2343 hasdir = 1;
2344 break;
2345 }
2346 }
a15cef0c 2347 if ((tmpfp = PerlIO_tmpfile()) != NULL) {
0d44d22b 2348 Stat_t st;
2349 if (!PerlLIO_stat(SvPVX(tmpglob),&st) && S_ISDIR(st.st_mode))
2350 ok = ((wilddsc.dsc$a_pointer = tovmspath(SvPVX(tmpglob),vmsspec)) != NULL);
2351 else ok = ((wilddsc.dsc$a_pointer = tovmsspec(SvPVX(tmpglob),vmsspec)) != NULL);
2352 if (ok) wilddsc.dsc$w_length = (unsigned short int) strlen(wilddsc.dsc$a_pointer);
a3987cb8 2353 for (cp=wilddsc.dsc$a_pointer; ok && cp && *cp; cp++)
2354 if (*cp == '?') *cp = '%'; /* VMS style single-char wildcard */
0d44d22b 2355 while (ok && ((sts = lib$find_file(&wilddsc,&rsdsc,&cxt,
2356 &dfltdsc,NULL,NULL,NULL))&1)) {
3ce6b0cb 2357 /* with varying string, 1st word of buffer contains result length */
2358 end = rstr + *((unsigned short int*)rslt);
2359 if (!hasver) while (*end != ';' && end > rstr) end--;
0d44d22b 2360 *(end++) = '\n'; *end = '\0';
2361 for (cp = rstr; *cp; cp++) *cp = _tolower(*cp);
2362 if (hasdir) {
2363 if (isunix) trim_unixpath(rstr,SvPVX(tmpglob),1);
2364 begin = rstr;
2365 }
2366 else {
2367 begin = end;
2368 while (*(--begin) != ']' && *begin != '>') ;
2369 ++begin;
2370 }
2371 ok = (PerlIO_puts(tmpfp,begin) != EOF);
2372 }
2373 if (cxt) (void)lib$find_file_end(&cxt);
2374 if (ok && sts != RMS$_NMF &&
93189314 2375 sts != RMS$_DNF && sts != RMS_FNF) ok = 0;
0d44d22b 2376 if (!ok) {
2377 if (!(sts & 1)) {
2378 SETERRNO((sts == RMS$_SYN ? EINVAL : EVMSERR),sts);
2379 }
2380 PerlIO_close(tmpfp);
2381 fp = NULL;
2382 }
2383 else {
2384 PerlIO_rewind(tmpfp);
2385 IoTYPE(io) = IoTYPE_RDONLY;
2386 IoIFP(io) = fp = tmpfp;
2387 IoFLAGS(io) &= ~IOf_UNTAINT; /* maybe redundant */
2388 }
2389 }
2390 }
2391#else /* !VMS */
2392#ifdef MACOS_TRADITIONAL
2393 sv_setpv(tmpcmd, "glob ");
2394 sv_catsv(tmpcmd, tmpglob);
2395 sv_catpv(tmpcmd, " |");
2396#else
2397#ifdef DOSISH
2398#ifdef OS2
2399 sv_setpv(tmpcmd, "for a in ");
2400 sv_catsv(tmpcmd, tmpglob);
2401 sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
2402#else
2403#ifdef DJGPP
2404 sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */
2405 sv_catsv(tmpcmd, tmpglob);
2406#else
2407 sv_setpv(tmpcmd, "perlglob ");
2408 sv_catsv(tmpcmd, tmpglob);
2409 sv_catpv(tmpcmd, " |");
2410#endif /* !DJGPP */
2411#endif /* !OS2 */
2412#else /* !DOSISH */
2413#if defined(CSH)
2414 sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
2415 sv_catpv(tmpcmd, " -cf 'set nonomatch; glob ");
2416 sv_catsv(tmpcmd, tmpglob);
2417 sv_catpv(tmpcmd, "' 2>/dev/null |");
2418#else
2419 sv_setpv(tmpcmd, "echo ");
2420 sv_catsv(tmpcmd, tmpglob);
2421#if 'z' - 'a' == 25
2422 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\012\\012\\012\\012'|");
2423#else
2424 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
2425#endif
2426#endif /* !CSH */
2427#endif /* !DOSISH */
2428#endif /* MACOS_TRADITIONAL */
2429 (void)do_open(PL_last_in_gv, SvPVX(tmpcmd), SvCUR(tmpcmd),
2430 FALSE, O_RDONLY, 0, Nullfp);
2431 fp = IoIFP(io);
2432#endif /* !VMS */
2433 LEAVE;
2434 return fp;
2435}