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