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