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