This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update MIME-Base64 to CPAN version 3.13
[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 1243 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
21630838
FC
1244 "Wide character in %s",
1245 PL_op ? OP_DESC(PL_op) : "print"
1246 );
ae798467
NIS
1247 }
1248 }
e9950d3b
NC
1249 /* To detect whether the process is about to overstep its
1250 * filesize limit we would need getrlimit(). We could then
1251 * also transparently raise the limit with setrlimit() --
1252 * but only until the system hard limit/the filesystem limit,
1253 * at which we would get EPERM. Note that when using buffered
1254 * io the write failure can be delayed until the flush/close. --jhi */
1255 if (len && (PerlIO_write(fp,tmps,len) == 0))
1256 happy = FALSE;
1257 Safefree(tmpbuf);
1258 return happy ? !PerlIO_error(fp) : FALSE;
ff8e2863 1259 }
a687059c
LW
1260}
1261
79072805 1262I32
0d7d409d 1263Perl_my_stat_flags(pTHX_ const U32 flags)
a687059c 1264{
97aff369 1265 dVAR;
39644a26 1266 dSP;
79072805 1267 IO *io;
2dd78f96 1268 GV* gv;
79072805 1269
533c011a 1270 if (PL_op->op_flags & OPf_REF) {
924508f0 1271 EXTEND(SP,1);
2dd78f96 1272 gv = cGVOP_gv;
748a9306 1273 do_fstat:
5228a96c
SP
1274 if (gv == PL_defgv)
1275 return PL_laststatval;
2dd78f96 1276 io = GvIO(gv);
ad02613c 1277 do_fstat_have_io:
5228a96c
SP
1278 PL_laststype = OP_STAT;
1279 PL_statgv = gv;
76f68e9b 1280 sv_setpvs(PL_statname, "");
5228a96c
SP
1281 if(io) {
1282 if (IoIFP(io)) {
1283 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
1284 } else if (IoDIRP(io)) {
3497a01f 1285 return (PL_laststatval = PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache));
5228a96c
SP
1286 } else {
1287 if (ckWARN2(WARN_UNOPENED,WARN_CLOSED))
1288 report_evil_fh(gv, io, PL_op->op_type);
1289 return (PL_laststatval = -1);
1290 }
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 }
a687059c 1296 }
fbb0b3b3
RGS
1297 else if (PL_op->op_private & OPpFT_STACKED) {
1298 return PL_laststatval;
1299 }
a687059c 1300 else {
0bcc34c2 1301 SV* const sv = POPs;
4373e329 1302 const char *s;
4ecd490c 1303 STRLEN len;
79072805 1304 PUTBACK;
6e592b3a 1305 if (isGV_with_GP(sv)) {
159b6efe 1306 gv = MUTABLE_GV(sv);
748a9306
LW
1307 goto do_fstat;
1308 }
6e592b3a 1309 else if (SvROK(sv) && isGV_with_GP(SvRV(sv))) {
159b6efe 1310 gv = MUTABLE_GV(SvRV(sv));
748a9306
LW
1311 goto do_fstat;
1312 }
ad02613c 1313 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) {
a45c7426 1314 io = MUTABLE_IO(SvRV(sv));
7f39519f 1315 gv = NULL;
ad02613c
SP
1316 goto do_fstat_have_io;
1317 }
748a9306 1318
0d7d409d 1319 s = SvPV_flags_const(sv, len, flags);
a0714e2c 1320 PL_statgv = NULL;
4ecd490c 1321 sv_setpvn(PL_statname, s, len);
95a20fc0 1322 s = SvPVX_const(PL_statname); /* s now NUL-terminated */
3280af22
NIS
1323 PL_laststype = OP_STAT;
1324 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
ce44635a 1325 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
9014280d 1326 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat");
3280af22 1327 return PL_laststatval;
a687059c
LW
1328 }
1329}
1330
fbb0b3b3 1331
79072805 1332I32
0d7d409d 1333Perl_my_lstat_flags(pTHX_ const U32 flags)
c623bd54 1334{
97aff369 1335 dVAR;
0bd48802 1336 static const char no_prev_lstat[] = "The stat preceding -l _ wasn't an lstat";
39644a26 1337 dSP;
79072805 1338 SV *sv;
b16276bb 1339 const char *file;
533c011a 1340 if (PL_op->op_flags & OPf_REF) {
924508f0 1341 EXTEND(SP,1);
638eceb6 1342 if (cGVOP_gv == PL_defgv) {
3280af22 1343 if (PL_laststype != OP_LSTAT)
fbb0b3b3 1344 Perl_croak(aTHX_ no_prev_lstat);
3280af22 1345 return PL_laststatval;
fe14fcc3 1346 }
5d3e98de 1347 if (ckWARN(WARN_IO)) {
9014280d 1348 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
5d3e98de
RGS
1349 GvENAME(cGVOP_gv));
1350 return (PL_laststatval = -1);
1351 }
fe14fcc3 1352 }
041457d9
DM
1353 else if (PL_laststype != OP_LSTAT
1354 && (PL_op->op_private & OPpFT_STACKED) && ckWARN(WARN_IO))
fbb0b3b3 1355 Perl_croak(aTHX_ no_prev_lstat);
c623bd54 1356
3280af22 1357 PL_laststype = OP_LSTAT;
a0714e2c 1358 PL_statgv = NULL;
79072805
LW
1359 sv = POPs;
1360 PUTBACK;
6e592b3a 1361 if (SvROK(sv) && isGV_with_GP(SvRV(sv)) && ckWARN(WARN_IO)) {
9014280d 1362 Perl_warner(aTHX_ packWARN(WARN_IO), "Use of -l on filehandle %s",
159b6efe 1363 GvENAME((const GV *)SvRV(sv)));
5d3e98de
RGS
1364 return (PL_laststatval = -1);
1365 }
0d7d409d 1366 file = SvPV_flags_const_nolen(sv, flags);
b16276bb
VP
1367 sv_setpv(PL_statname,file);
1368 PL_laststatval = PerlLIO_lstat(file,&PL_statcache);
1369 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(file, '\n'))
9014280d 1370 Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "lstat");
3280af22 1371 return PL_laststatval;
c623bd54
LW
1372}
1373
a0f2c8ec
JD
1374static void
1375S_exec_failed(pTHX_ const char *cmd, int fd, int do_report)
1376{
1377 const int e = errno;
7918f24d 1378 PERL_ARGS_ASSERT_EXEC_FAILED;
a0f2c8ec
JD
1379 if (ckWARN(WARN_EXEC))
1380 Perl_warner(aTHX_ packWARN(WARN_EXEC), "Can't exec \"%s\": %s",
1381 cmd, Strerror(e));
1382 if (do_report) {
1383 PerlLIO_write(fd, (void*)&e, sizeof(int));
1384 PerlLIO_close(fd);
1385 }
1386}
1387
d5a9bfb0 1388bool
2aa1486d
GS
1389Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp,
1390 int fd, int do_report)
d5a9bfb0 1391{
27da23d5 1392 dVAR;
7918f24d 1393 PERL_ARGS_ASSERT_DO_AEXEC5;
e37778c2 1394#if defined(__SYMBIAN32__) || defined(__LIBCATAMOUNT__)
cd39f2b6
JH
1395 Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
1396#else
79072805 1397 if (sp > mark) {
360ea906 1398 const char **a;
6136c704 1399 const char *tmps = NULL;
360ea906 1400 Newx(PL_Argv, sp - mark + 1, const char*);
c3c5fad7 1401 a = PL_Argv;
890ce7af 1402
79072805
LW
1403 while (++mark <= sp) {
1404 if (*mark)
360ea906 1405 *a++ = SvPV_nolen_const(*mark);
a687059c
LW
1406 else
1407 *a++ = "";
1408 }
6136c704 1409 *a = NULL;
91b2752f 1410 if (really)
e62f0680 1411 tmps = SvPV_nolen_const(really);
91b2752f
RG
1412 if ((!really && *PL_Argv[0] != '/') ||
1413 (really && *tmps != '/')) /* will execvp use PATH? */
79072805 1414 TAINT_ENV(); /* testing IFS here is overkill, probably */
b35112e7 1415 PERL_FPU_PRE_EXEC
91b2752f 1416 if (really && *tmps)
b4748376 1417 PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv));
a687059c 1418 else
b4748376 1419 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
b35112e7 1420 PERL_FPU_POST_EXEC
a0f2c8ec 1421 S_exec_failed(aTHX_ (really ? tmps : PL_Argv[0]), fd, do_report);
a687059c 1422 }
bee1dbe2 1423 do_execfree();
cd39f2b6 1424#endif
a687059c
LW
1425 return FALSE;
1426}
1427
fe14fcc3 1428void
864dbfa3 1429Perl_do_execfree(pTHX)
ff8e2863 1430{
97aff369 1431 dVAR;
43c5f42d 1432 Safefree(PL_Argv);
4608196e 1433 PL_Argv = NULL;
43c5f42d 1434 Safefree(PL_Cmd);
bd61b366 1435 PL_Cmd = NULL;
ff8e2863
LW
1436}
1437
9555a685 1438#ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
e446cec8
IZ
1439
1440bool
2fbb330f 1441Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
e446cec8 1442{
27da23d5 1443 dVAR;
360ea906 1444 register const char **a;
a687059c 1445 register char *s;
15db3ae2 1446 char *buf;
2fbb330f 1447 char *cmd;
2fbb330f 1448 /* Make a copy so we can change it */
6fca0082 1449 const Size_t cmdlen = strlen(incmd) + 1;
7918f24d
NC
1450
1451 PERL_ARGS_ASSERT_DO_EXEC3;
1452
15db3ae2
DM
1453 Newx(buf, cmdlen, char);
1454 cmd = buf;
cfff9797 1455 memcpy(cmd, incmd, cmdlen);
a687059c 1456
748a9306
LW
1457 while (*cmd && isSPACE(*cmd))
1458 cmd++;
1459
a687059c
LW
1460 /* save an extra exec if possible */
1461
bf38876a 1462#ifdef CSH
d05c1ba0 1463 {
0c19750d 1464 char flags[PERL_FLAGS_MAX];
d05c1ba0
JH
1465 if (strnEQ(cmd,PL_cshname,PL_cshlen) &&
1466 strnEQ(cmd+PL_cshlen," -c",3)) {
28f0d0ec 1467 my_strlcpy(flags, "-c", PERL_FLAGS_MAX);
d05c1ba0
JH
1468 s = cmd+PL_cshlen+3;
1469 if (*s == 'f') {
1470 s++;
28f0d0ec 1471 my_strlcat(flags, "f", PERL_FLAGS_MAX - 2);
d05c1ba0
JH
1472 }
1473 if (*s == ' ')
1474 s++;
1475 if (*s++ == '\'') {
0bcc34c2 1476 char * const ncmd = s;
d05c1ba0
JH
1477
1478 while (*s)
1479 s++;
1480 if (s[-1] == '\n')
1481 *--s = '\0';
1482 if (s[-1] == '\'') {
1483 *--s = '\0';
b35112e7 1484 PERL_FPU_PRE_EXEC
7c0dd7ca 1485 PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
b35112e7 1486 PERL_FPU_POST_EXEC
d05c1ba0 1487 *s = '\'';
a0f2c8ec 1488 S_exec_failed(aTHX_ PL_cshname, fd, do_report);
15db3ae2 1489 Safefree(buf);
d05c1ba0
JH
1490 return FALSE;
1491 }
1492 }
a687059c
LW
1493 }
1494 }
bf38876a 1495#endif /* CSH */
a687059c
LW
1496
1497 /* see if there are shell metacharacters in it */
1498
748a9306
LW
1499 if (*cmd == '.' && isSPACE(cmd[1]))
1500 goto doshell;
1501
1502 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1503 goto doshell;
1504
294b3b39
AL
1505 s = cmd;
1506 while (isALNUM(*s))
1507 s++; /* catch VAR=val gizmo */
63f2c1e1
LW
1508 if (*s == '=')
1509 goto doshell;
748a9306 1510
a687059c 1511 for (s = cmd; *s; s++) {
d05c1ba0
JH
1512 if (*s != ' ' && !isALPHA(*s) &&
1513 strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
a687059c
LW
1514 if (*s == '\n' && !s[1]) {
1515 *s = '\0';
1516 break;
1517 }
603a98b0
IZ
1518 /* handle the 2>&1 construct at the end */
1519 if (*s == '>' && s[1] == '&' && s[2] == '1'
1520 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1521 && (!s[3] || isSPACE(s[3])))
1522 {
6867be6d 1523 const char *t = s + 3;
603a98b0
IZ
1524
1525 while (*t && isSPACE(*t))
1526 ++t;
943bbd07 1527 if (!*t && (PerlLIO_dup2(1,2) != -1)) {
603a98b0
IZ
1528 s[-2] = '\0';
1529 break;
1530 }
1531 }
a687059c 1532 doshell:
b35112e7 1533 PERL_FPU_PRE_EXEC
7c0dd7ca 1534 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
b35112e7 1535 PERL_FPU_POST_EXEC
a0f2c8ec 1536 S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
15db3ae2 1537 Safefree(buf);
a687059c
LW
1538 return FALSE;
1539 }
1540 }
748a9306 1541
360ea906 1542 Newx(PL_Argv, (s - cmd) / 2 + 2, const char*);
3280af22
NIS
1543 PL_Cmd = savepvn(cmd, s-cmd);
1544 a = PL_Argv;
1545 for (s = PL_Cmd; *s;) {
294b3b39
AL
1546 while (isSPACE(*s))
1547 s++;
a687059c
LW
1548 if (*s)
1549 *(a++) = s;
294b3b39
AL
1550 while (*s && !isSPACE(*s))
1551 s++;
a687059c
LW
1552 if (*s)
1553 *s++ = '\0';
1554 }
6136c704 1555 *a = NULL;
3280af22 1556 if (PL_Argv[0]) {
b35112e7 1557 PERL_FPU_PRE_EXEC
360ea906 1558 PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv));
b35112e7 1559 PERL_FPU_POST_EXEC
b1248f16 1560 if (errno == ENOEXEC) { /* for system V NIH syndrome */
ff8e2863 1561 do_execfree();
a687059c 1562 goto doshell;
b1248f16 1563 }
a0f2c8ec 1564 S_exec_failed(aTHX_ PL_Argv[0], fd, do_report);
a687059c 1565 }
ff8e2863 1566 do_execfree();
15db3ae2 1567 Safefree(buf);
a687059c
LW
1568 return FALSE;
1569}
1570
6890e559 1571#endif /* OS2 || WIN32 */
760ac839 1572
79072805 1573I32
864dbfa3 1574Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
a687059c 1575{
97aff369 1576 dVAR;
79072805 1577 register I32 val;
79072805 1578 register I32 tot = 0;
4634a855 1579 const char *const what = PL_op_name[type];
5c144d81 1580 const char *s;
890ce7af 1581 SV ** const oldmark = mark;
a687059c 1582
7918f24d
NC
1583 PERL_ARGS_ASSERT_APPLY;
1584
1444765e
NC
1585 /* Doing this ahead of the switch statement preserves the old behaviour,
1586 where attempting to use kill as a taint test test would fail on
1587 platforms where kill was not defined. */
1588#ifndef HAS_KILL
1589 if (type == OP_KILL)
4634a855 1590 Perl_die(aTHX_ PL_no_func, what);
1444765e
NC
1591#endif
1592#ifndef HAS_CHOWN
1593 if (type == OP_CHOWN)
4634a855 1594 Perl_die(aTHX_ PL_no_func, what);
1444765e
NC
1595#endif
1596
1597
20408e3c 1598#define APPLY_TAINT_PROPER() \
3280af22 1599 STMT_START { \
17406bd6 1600 if (PL_tainted) { TAINT_PROPER(what); } \
873ef191 1601 } STMT_END
20408e3c
GS
1602
1603 /* This is a first heuristic; it doesn't catch tainting magic. */
3280af22 1604 if (PL_tainting) {
463ee0b2 1605 while (++mark <= sp) {
bbce6d69 1606 if (SvTAINTED(*mark)) {
1607 TAINT;
1608 break;
1609 }
463ee0b2
LW
1610 }
1611 mark = oldmark;
1612 }
a687059c 1613 switch (type) {
79072805 1614 case OP_CHMOD:
20408e3c 1615 APPLY_TAINT_PROPER();
79072805 1616 if (++mark <= sp) {
4ea561bc 1617 val = SvIV(*mark);
20408e3c
GS
1618 APPLY_TAINT_PROPER();
1619 tot = sp - mark;
79072805 1620 while (++mark <= sp) {
c4aca7d0 1621 GV* gv;
6e592b3a 1622 if (isGV_with_GP(*mark)) {
159b6efe 1623 gv = MUTABLE_GV(*mark);
c4aca7d0
GA
1624 do_fchmod:
1625 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1626#ifdef HAS_FCHMOD
1627 APPLY_TAINT_PROPER();
1628 if (fchmod(PerlIO_fileno(IoIFP(GvIOn(gv))), val))
1629 tot--;
1630#else
b9c6780e 1631 Perl_die(aTHX_ PL_no_func, "fchmod");
c4aca7d0
GA
1632#endif
1633 }
1634 else {
1635 tot--;
1636 }
1637 }
6e592b3a 1638 else if (SvROK(*mark) && isGV_with_GP(SvRV(*mark))) {
159b6efe 1639 gv = MUTABLE_GV(SvRV(*mark));
c4aca7d0
GA
1640 goto do_fchmod;
1641 }
1642 else {
1643 const char *name = SvPV_nolen_const(*mark);
1644 APPLY_TAINT_PROPER();
1645 if (PerlLIO_chmod(name, val))
1646 tot--;
1647 }
a687059c
LW
1648 }
1649 }
1650 break;
fe14fcc3 1651#ifdef HAS_CHOWN
79072805 1652 case OP_CHOWN:
20408e3c 1653 APPLY_TAINT_PROPER();
79072805 1654 if (sp - mark > 2) {
6867be6d 1655 register I32 val2;
463ee0b2
LW
1656 val = SvIVx(*++mark);
1657 val2 = SvIVx(*++mark);
20408e3c 1658 APPLY_TAINT_PROPER();
a0d0e21e 1659 tot = sp - mark;
79072805 1660 while (++mark <= sp) {
c4aca7d0 1661 GV* gv;
6e592b3a 1662 if (isGV_with_GP(*mark)) {
159b6efe 1663 gv = MUTABLE_GV(*mark);
c4aca7d0
GA
1664 do_fchown:
1665 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1666#ifdef HAS_FCHOWN
1667 APPLY_TAINT_PROPER();
1668 if (fchown(PerlIO_fileno(IoIFP(GvIOn(gv))), val, val2))
1669 tot--;
1670#else
b9c6780e 1671 Perl_die(aTHX_ PL_no_func, "fchown");
c4aca7d0
GA
1672#endif
1673 }
1674 else {
1675 tot--;
1676 }
1677 }
6e592b3a 1678 else if (SvROK(*mark) && isGV_with_GP(SvRV(*mark))) {
159b6efe 1679 gv = MUTABLE_GV(SvRV(*mark));
c4aca7d0
GA
1680 goto do_fchown;
1681 }
1682 else {
1683 const char *name = SvPV_nolen_const(*mark);
1684 APPLY_TAINT_PROPER();
1685 if (PerlLIO_chown(name, val, val2))
1686 tot--;
1687 }
a687059c
LW
1688 }
1689 }
1690 break;
b1248f16 1691#endif
a1d180c4 1692/*
dd64f1c3
AD
1693XXX Should we make lchown() directly available from perl?
1694For now, we'll let Configure test for HAS_LCHOWN, but do
1695nothing in the core.
1696 --AD 5/1998
1697*/
fe14fcc3 1698#ifdef HAS_KILL
79072805 1699 case OP_KILL:
20408e3c 1700 APPLY_TAINT_PROPER();
55497cff 1701 if (mark == sp)
1702 break;
e62f0680 1703 s = SvPVx_nolen_const(*++mark);
e02bfb16 1704 if (isALPHA(*s)) {
79072805
LW
1705 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1706 s += 3;
e02bfb16 1707 if ((val = whichsig(s)) < 0)
cea2e8a9 1708 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
79072805
LW
1709 }
1710 else
4ea561bc 1711 val = SvIV(*mark);
20408e3c
GS
1712 APPLY_TAINT_PROPER();
1713 tot = sp - mark;
3595fcef 1714#ifdef VMS
1715 /* kill() doesn't do process groups (job trees?) under VMS */
1716 if (val < 0) val = -val;
1717 if (val == SIGKILL) {
1718# include <starlet.h>
1719 /* Use native sys$delprc() to insure that target process is
1720 * deleted; supervisor-mode images don't pay attention to
1721 * CRTL's emulation of Unix-style signals and kill()
1722 */
1723 while (++mark <= sp) {
5f521955
JH
1724 I32 proc;
1725 register unsigned long int __vmssts;
8af710eb 1726 SvGETMAGIC(*mark);
e2c0f81f
DG
1727 if (!(SvIOK(*mark) || SvNOK(*mark) || looks_like_number(*mark)))
1728 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
8af710eb 1729 proc = SvIV_nomg(*mark);
20408e3c 1730 APPLY_TAINT_PROPER();
3595fcef 1731 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1732 tot--;
1733 switch (__vmssts) {
1734 case SS$_NONEXPR:
1735 case SS$_NOSUCHNODE:
1736 SETERRNO(ESRCH,__vmssts);
1737 break;
1738 case SS$_NOPRIV:
1739 SETERRNO(EPERM,__vmssts);
1740 break;
1741 default:
1742 SETERRNO(EVMSERR,__vmssts);
1743 }
1744 }
1745 }
8165faea 1746 PERL_ASYNC_CHECK();
3595fcef 1747 break;
1748 }
1749#endif
79072805
LW
1750 if (val < 0) {
1751 val = -val;
1752 while (++mark <= sp) {
5f521955 1753 I32 proc;
8af710eb 1754 SvGETMAGIC(*mark);
e2c0f81f
DG
1755 if (!(SvIOK(*mark) || SvNOK(*mark) || looks_like_number(*mark)))
1756 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
8af710eb 1757 proc = SvIV_nomg(*mark);
20408e3c 1758 APPLY_TAINT_PROPER();
fe14fcc3 1759#ifdef HAS_KILLPG
3028581b 1760 if (PerlProc_killpg(proc,val)) /* BSD */
a687059c 1761#else
3028581b 1762 if (PerlProc_kill(-proc,val)) /* SYSV */
a687059c 1763#endif
79072805 1764 tot--;
a687059c 1765 }
79072805
LW
1766 }
1767 else {
1768 while (++mark <= sp) {
5f521955 1769 I32 proc;
8af710eb 1770 SvGETMAGIC(*mark);
e2c0f81f
DG
1771 if (!(SvIOK(*mark) || SvNOK(*mark) || looks_like_number(*mark)))
1772 Perl_croak(aTHX_ "Can't kill a non-numeric process ID");
8af710eb 1773 proc = SvIV_nomg(*mark);
20408e3c
GS
1774 APPLY_TAINT_PROPER();
1775 if (PerlProc_kill(proc, val))
79072805 1776 tot--;
a687059c
LW
1777 }
1778 }
8165faea 1779 PERL_ASYNC_CHECK();
a687059c 1780 break;
b1248f16 1781#endif
79072805 1782 case OP_UNLINK:
20408e3c 1783 APPLY_TAINT_PROPER();
79072805
LW
1784 tot = sp - mark;
1785 while (++mark <= sp) {
e62f0680 1786 s = SvPV_nolen_const(*mark);
20408e3c 1787 APPLY_TAINT_PROPER();
3280af22 1788 if (PL_euid || PL_unsafe) {
b8ffc8df 1789 if (UNLINK(s))
a687059c
LW
1790 tot--;
1791 }
1792 else { /* don't let root wipe out directories without -U */
3280af22 1793 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
a687059c
LW
1794 tot--;
1795 else {
b8ffc8df 1796 if (UNLINK(s))
a687059c
LW
1797 tot--;
1798 }
1799 }
1800 }
1801 break;
e96b369d 1802#if defined(HAS_UTIME) || defined(HAS_FUTIMES)
79072805 1803 case OP_UTIME:
20408e3c 1804 APPLY_TAINT_PROPER();
79072805 1805 if (sp - mark > 2) {
e96b369d
GA
1806#if defined(HAS_FUTIMES)
1807 struct timeval utbuf[2];
1808 void *utbufp = utbuf;
1809#elif defined(I_UTIME) || defined(VMS)
663a0e37 1810 struct utimbuf utbuf;
07409e01 1811 struct utimbuf *utbufp = &utbuf;
663a0e37 1812#else
a687059c 1813 struct {
dd2821f6
GS
1814 Time_t actime;
1815 Time_t modtime;
a687059c 1816 } utbuf;
07409e01 1817 void *utbufp = &utbuf;
663a0e37 1818#endif
a687059c 1819
0bcc34c2
AL
1820 SV* const accessed = *++mark;
1821 SV* const modified = *++mark;
c6f7b413 1822
6ec06612
SB
1823 /* Be like C, and if both times are undefined, let the C
1824 * library figure out what to do. This usually means
1825 * "current time". */
c6f7b413
RS
1826
1827 if ( accessed == &PL_sv_undef && modified == &PL_sv_undef )
6ec06612
SB
1828 utbufp = NULL;
1829 else {
1830 Zero(&utbuf, sizeof utbuf, char);
e96b369d 1831#ifdef HAS_FUTIMES
4ea561bc 1832 utbuf[0].tv_sec = (long)SvIV(accessed); /* time accessed */
e96b369d 1833 utbuf[0].tv_usec = 0;
4ea561bc 1834 utbuf[1].tv_sec = (long)SvIV(modified); /* time modified */
e96b369d
GA
1835 utbuf[1].tv_usec = 0;
1836#elif defined(BIG_TIME)
4ea561bc
NC
1837 utbuf.actime = (Time_t)SvNV(accessed); /* time accessed */
1838 utbuf.modtime = (Time_t)SvNV(modified); /* time modified */
517844ec 1839#else
4ea561bc
NC
1840 utbuf.actime = (Time_t)SvIV(accessed); /* time accessed */
1841 utbuf.modtime = (Time_t)SvIV(modified); /* time modified */
517844ec 1842#endif
6ec06612 1843 }
4373e329 1844 APPLY_TAINT_PROPER();
79072805
LW
1845 tot = sp - mark;
1846 while (++mark <= sp) {
e96b369d 1847 GV* gv;
6e592b3a 1848 if (isGV_with_GP(*mark)) {
159b6efe 1849 gv = MUTABLE_GV(*mark);
e96b369d
GA
1850 do_futimes:
1851 if (GvIO(gv) && IoIFP(GvIOp(gv))) {
1852#ifdef HAS_FUTIMES
1853 APPLY_TAINT_PROPER();
8b7231d9
SP
1854 if (futimes(PerlIO_fileno(IoIFP(GvIOn(gv))),
1855 (struct timeval *) utbufp))
e96b369d
GA
1856 tot--;
1857#else
1858 Perl_die(aTHX_ PL_no_func, "futimes");
1859#endif
1860 }
1861 else {
1862 tot--;
1863 }
1864 }
6e592b3a 1865 else if (SvROK(*mark) && isGV_with_GP(SvRV(*mark))) {
159b6efe 1866 gv = MUTABLE_GV(SvRV(*mark));
e96b369d
GA
1867 goto do_futimes;
1868 }
1869 else {
0bcc34c2 1870 const char * const name = SvPV_nolen_const(*mark);
e96b369d
GA
1871 APPLY_TAINT_PROPER();
1872#ifdef HAS_FUTIMES
8b7231d9 1873 if (utimes(name, (struct timeval *)utbufp))
e96b369d
GA
1874#else
1875 if (PerlLIO_utime(name, utbufp))
1876#endif
1877 tot--;
1878 }
1879
a687059c 1880 }
a687059c
LW
1881 }
1882 else
79072805 1883 tot = 0;
a687059c 1884 break;
a0d0e21e 1885#endif
a687059c
LW
1886 }
1887 return tot;
20408e3c 1888
20408e3c 1889#undef APPLY_TAINT_PROPER
a687059c
LW
1890}
1891
1892/* Do the permissions allow some operation? Assumes statcache already set. */
a0d0e21e 1893#ifndef VMS /* VMS' cando is in vms.c */
7f4774ae 1894bool
ae1951c1
NC
1895Perl_cando(pTHX_ Mode_t mode, bool effective, register const Stat_t *statbufp)
1896/* effective is a flag, true for EUID, or for checking if the effective gid
1897 * is in the list of groups returned from getgroups().
1898 */
a687059c 1899{
97aff369 1900 dVAR;
7918f24d
NC
1901
1902 PERL_ARGS_ASSERT_CANDO;
1903
bee1dbe2 1904#ifdef DOSISH
fe14fcc3
LW
1905 /* [Comments and code from Len Reed]
1906 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1907 * to write-protected files. The execute permission bit is set
1908 * by the Miscrosoft C library stat() function for the following:
1909 * .exe files
1910 * .com files
1911 * .bat files
1912 * directories
1913 * All files and directories are readable.
1914 * Directories and special files, e.g. "CON", cannot be
1915 * write-protected.
1916 * [Comment by Tom Dinger -- a directory can have the write-protect
1917 * bit set in the file system, but DOS permits changes to
1918 * the directory anyway. In addition, all bets are off
1919 * here for networked software, such as Novell and
1920 * Sun's PC-NFS.]
1921 */
1922
bee1dbe2
LW
1923 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1924 * too so it will actually look into the files for magic numbers
1925 */
7f4774ae 1926 return (mode & statbufp->st_mode) ? TRUE : FALSE;
fe14fcc3 1927
55497cff 1928#else /* ! DOSISH */
b595cd4b
RU
1929# ifdef __CYGWIN__
1930 if (ingroup(544,effective)) { /* member of Administrators */
1931# else
3280af22 1932 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
b595cd4b 1933# endif
7f4774ae 1934 if (mode == S_IXUSR) {
c623bd54 1935 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
a687059c
LW
1936 return TRUE;
1937 }
1938 else
1939 return TRUE; /* root reads and writes anything */
1940 return FALSE;
1941 }
3280af22 1942 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
7f4774ae 1943 if (statbufp->st_mode & mode)
a687059c
LW
1944 return TRUE; /* ok as "user" */
1945 }
d8eceb89 1946 else if (ingroup(statbufp->st_gid,effective)) {
7f4774ae 1947 if (statbufp->st_mode & mode >> 3)
a687059c
LW
1948 return TRUE; /* ok as "group" */
1949 }
7f4774ae 1950 else if (statbufp->st_mode & mode >> 6)
a687059c
LW
1951 return TRUE; /* ok as "other" */
1952 return FALSE;
55497cff 1953#endif /* ! DOSISH */
a687059c 1954}
a0d0e21e 1955#endif /* ! VMS */
a687059c 1956
1f676739 1957static bool
0da8eb3a 1958S_ingroup(pTHX_ Gid_t testgid, bool effective)
a687059c 1959{
97aff369 1960 dVAR;
3280af22 1961 if (testgid == (effective ? PL_egid : PL_gid))
a687059c 1962 return TRUE;
fe14fcc3 1963#ifdef HAS_GETGROUPS
a687059c 1964 {
331b57bc 1965 Groups_t *gary = NULL;
79072805 1966 I32 anum;
331b57bc 1967 bool rc = FALSE;
a687059c 1968
331b57bc
SP
1969 anum = getgroups(0, gary);
1970 Newx(gary, anum, Groups_t);
1971 anum = getgroups(anum, gary);
a687059c 1972 while (--anum >= 0)
331b57bc
SP
1973 if (gary[anum] == testgid) {
1974 rc = TRUE;
1975 break;
1976 }
1977
1978 Safefree(gary);
1979 return rc;
a687059c 1980 }
c685562b 1981#else
a687059c 1982 return FALSE;
cd39f2b6 1983#endif
a687059c 1984}
c2ab57d4 1985
fe14fcc3 1986#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 1987
79072805 1988I32
864dbfa3 1989Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1990{
97aff369 1991 dVAR;
0bcc34c2 1992 const key_t key = (key_t)SvNVx(*++mark);
c3312966 1993 SV *nsv = optype == OP_MSGGET ? NULL : *++mark;
6867be6d 1994 const I32 flags = SvIVx(*++mark);
294a48e9 1995
7918f24d 1996 PERL_ARGS_ASSERT_DO_IPCGET;
294a48e9 1997 PERL_UNUSED_ARG(sp);
c2ab57d4 1998
748a9306 1999 SETERRNO(0,0);
c2ab57d4
LW
2000 switch (optype)
2001 {
fe14fcc3 2002#ifdef HAS_MSG
79072805 2003 case OP_MSGGET:
c2ab57d4 2004 return msgget(key, flags);
e5d73d77 2005#endif
fe14fcc3 2006#ifdef HAS_SEM
79072805 2007 case OP_SEMGET:
c3312966 2008 return semget(key, (int) SvIV(nsv), flags);
e5d73d77 2009#endif
fe14fcc3 2010#ifdef HAS_SHM
79072805 2011 case OP_SHMGET:
c3312966 2012 return shmget(key, (size_t) SvUV(nsv), flags);
e5d73d77 2013#endif
fe14fcc3 2014#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 2015 default:
fe13d51d 2016 /* diag_listed_as: msg%s not implemented */
cea2e8a9 2017 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 2018#endif
c2ab57d4
LW
2019 }
2020 return -1; /* should never happen */
2021}
2022
79072805 2023I32
864dbfa3 2024Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 2025{
97aff369 2026 dVAR;
c2ab57d4 2027 char *a;
a0d0e21e 2028 I32 ret = -1;
6867be6d 2029 const I32 id = SvIVx(*++mark);
95b63a38 2030#ifdef Semctl
6867be6d 2031 const I32 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
95b63a38 2032#endif
6867be6d 2033 const I32 cmd = SvIVx(*++mark);
0bcc34c2
AL
2034 SV * const astr = *++mark;
2035 STRLEN infosize = 0;
2036 I32 getinfo = (cmd == IPC_STAT);
c2ab57d4 2037
7918f24d 2038 PERL_ARGS_ASSERT_DO_IPCCTL;
0bcc34c2 2039 PERL_UNUSED_ARG(sp);
c2ab57d4
LW
2040
2041 switch (optype)
2042 {
fe14fcc3 2043#ifdef HAS_MSG
79072805 2044 case OP_MSGCTL:
c2ab57d4
LW
2045 if (cmd == IPC_STAT || cmd == IPC_SET)
2046 infosize = sizeof(struct msqid_ds);
2047 break;
e5d73d77 2048#endif
fe14fcc3 2049#ifdef HAS_SHM
79072805 2050 case OP_SHMCTL:
c2ab57d4
LW
2051 if (cmd == IPC_STAT || cmd == IPC_SET)
2052 infosize = sizeof(struct shmid_ds);
2053 break;
e5d73d77 2054#endif
fe14fcc3 2055#ifdef HAS_SEM
79072805 2056 case OP_SEMCTL:
39398f3f 2057#ifdef Semctl
c2ab57d4
LW
2058 if (cmd == IPC_STAT || cmd == IPC_SET)
2059 infosize = sizeof(struct semid_ds);
2060 else if (cmd == GETALL || cmd == SETALL)
2061 {
8e591e46 2062 struct semid_ds semds;
bd89102f 2063 union semun semun;
e6f0bdd6
GS
2064#ifdef EXTRA_F_IN_SEMUN_BUF
2065 semun.buff = &semds;
2066#else
84902520 2067 semun.buf = &semds;
e6f0bdd6 2068#endif
c2ab57d4 2069 getinfo = (cmd == GETALL);
9b89d93d
GB
2070 if (Semctl(id, 0, IPC_STAT, semun) == -1)
2071 return -1;
6e21c824
LW
2072 infosize = semds.sem_nsems * sizeof(short);
2073 /* "short" is technically wrong but much more portable
2074 than guessing about u_?short(_t)? */
c2ab57d4 2075 }
39398f3f 2076#else
fe13d51d 2077 /* diag_listed_as: sem%s not implemented */
cea2e8a9 2078 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 2079#endif
c2ab57d4 2080 break;
e5d73d77 2081#endif
fe14fcc3 2082#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 2083 default:
fe13d51d 2084 /* diag_listed_as: shm%s not implemented */
cea2e8a9 2085 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 2086#endif
c2ab57d4
LW
2087 }
2088
2089 if (infosize)
2090 {
2091 if (getinfo)
2092 {
93524f2b 2093 SvPV_force_nolen(astr);
a0d0e21e 2094 a = SvGROW(astr, infosize+1);
c2ab57d4
LW
2095 }
2096 else
2097 {
93524f2b 2098 STRLEN len;
463ee0b2
LW
2099 a = SvPV(astr, len);
2100 if (len != infosize)
cea2e8a9 2101 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
4ec43091
JH
2102 PL_op_desc[optype],
2103 (unsigned long)len,
2104 (long)infosize);
c2ab57d4
LW
2105 }
2106 }
2107 else
2108 {
0bcc34c2 2109 const IV i = SvIV(astr);
56431972 2110 a = INT2PTR(char *,i); /* ouch */
c2ab57d4 2111 }
748a9306 2112 SETERRNO(0,0);
c2ab57d4
LW
2113 switch (optype)
2114 {
fe14fcc3 2115#ifdef HAS_MSG
79072805 2116 case OP_MSGCTL:
bee1dbe2 2117 ret = msgctl(id, cmd, (struct msqid_ds *)a);
c2ab57d4 2118 break;
e5d73d77 2119#endif
fe14fcc3 2120#ifdef HAS_SEM
bd89102f 2121 case OP_SEMCTL: {
39398f3f 2122#ifdef Semctl
bd89102f
AD
2123 union semun unsemds;
2124
e6f0bdd6
GS
2125#ifdef EXTRA_F_IN_SEMUN_BUF
2126 unsemds.buff = (struct semid_ds *)a;
2127#else
bd89102f 2128 unsemds.buf = (struct semid_ds *)a;
e6f0bdd6 2129#endif
bd89102f 2130 ret = Semctl(id, n, cmd, unsemds);
39398f3f 2131#else
fe13d51d 2132 /* diag_listed_as: sem%s not implemented */
cea2e8a9 2133 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 2134#endif
bd89102f 2135 }
c2ab57d4 2136 break;
e5d73d77 2137#endif
fe14fcc3 2138#ifdef HAS_SHM
79072805 2139 case OP_SHMCTL:
bee1dbe2 2140 ret = shmctl(id, cmd, (struct shmid_ds *)a);
c2ab57d4 2141 break;
e5d73d77 2142#endif
c2ab57d4
LW
2143 }
2144 if (getinfo && ret >= 0) {
79072805
LW
2145 SvCUR_set(astr, infosize);
2146 *SvEND(astr) = '\0';
a0d0e21e 2147 SvSETMAGIC(astr);
c2ab57d4
LW
2148 }
2149 return ret;
2150}
2151
79072805 2152I32
864dbfa3 2153Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 2154{
97aff369 2155 dVAR;
fe14fcc3 2156#ifdef HAS_MSG
463ee0b2 2157 STRLEN len;
6867be6d 2158 const I32 id = SvIVx(*++mark);
0bcc34c2
AL
2159 SV * const mstr = *++mark;
2160 const I32 flags = SvIVx(*++mark);
2161 const char * const mbuf = SvPV_const(mstr, len);
2162 const I32 msize = len - sizeof(long);
2163
7918f24d 2164 PERL_ARGS_ASSERT_DO_MSGSND;
890ce7af 2165 PERL_UNUSED_ARG(sp);
c2ab57d4 2166
0bcc34c2 2167 if (msize < 0)
cea2e8a9 2168 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 2169 SETERRNO(0,0);
bee1dbe2 2170 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
e5d73d77 2171#else
2d51fa4d
RGS
2172 PERL_UNUSED_ARG(sp);
2173 PERL_UNUSED_ARG(mark);
fe13d51d 2174 /* diag_listed_as: msg%s not implemented */
cea2e8a9 2175 Perl_croak(aTHX_ "msgsnd not implemented");
e5d73d77 2176#endif
c2ab57d4
LW
2177}
2178
79072805 2179I32
864dbfa3 2180Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 2181{
fe14fcc3 2182#ifdef HAS_MSG
97aff369 2183 dVAR;
c2ab57d4
LW
2184 char *mbuf;
2185 long mtype;
6867be6d 2186 I32 msize, flags, ret;
6867be6d 2187 const I32 id = SvIVx(*++mark);
0bcc34c2 2188 SV * const mstr = *++mark;
7918f24d
NC
2189
2190 PERL_ARGS_ASSERT_DO_MSGRCV;
890ce7af 2191 PERL_UNUSED_ARG(sp);
79072805 2192
c2e66d9e
GS
2193 /* suppress warning when reading into undef var --jhi */
2194 if (! SvOK(mstr))
76f68e9b 2195 sv_setpvs(mstr, "");
463ee0b2
LW
2196 msize = SvIVx(*++mark);
2197 mtype = (long)SvIVx(*++mark);
2198 flags = SvIVx(*++mark);
93524f2b 2199 SvPV_force_nolen(mstr);
a0d0e21e 2200 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
a1d180c4 2201
748a9306 2202 SETERRNO(0,0);
bee1dbe2 2203 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
c2ab57d4 2204 if (ret >= 0) {
79072805
LW
2205 SvCUR_set(mstr, sizeof(long)+ret);
2206 *SvEND(mstr) = '\0';
41d6edb2
JH
2207#ifndef INCOMPLETE_TAINTS
2208 /* who knows who has been playing with this message? */
2209 SvTAINTED_on(mstr);
2210#endif
c2ab57d4
LW
2211 }
2212 return ret;
e5d73d77 2213#else
2d51fa4d
RGS
2214 PERL_UNUSED_ARG(sp);
2215 PERL_UNUSED_ARG(mark);
fe13d51d 2216 /* diag_listed_as: msg%s not implemented */
cea2e8a9 2217 Perl_croak(aTHX_ "msgrcv not implemented");
e5d73d77 2218#endif
c2ab57d4
LW
2219}
2220
79072805 2221I32
864dbfa3 2222Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 2223{
fe14fcc3 2224#ifdef HAS_SEM
97aff369 2225 dVAR;
463ee0b2 2226 STRLEN opsize;
6867be6d 2227 const I32 id = SvIVx(*++mark);
0bcc34c2
AL
2228 SV * const opstr = *++mark;
2229 const char * const opbuf = SvPV_const(opstr, opsize);
7918f24d
NC
2230
2231 PERL_ARGS_ASSERT_DO_SEMOP;
890ce7af 2232 PERL_UNUSED_ARG(sp);
c2ab57d4 2233
248ff010
NC
2234 if (opsize < 3 * SHORTSIZE
2235 || (opsize % (3 * SHORTSIZE))) {
93189314 2236 SETERRNO(EINVAL,LIB_INVARG);
c2ab57d4
LW
2237 return -1;
2238 }
748a9306 2239 SETERRNO(0,0);
248ff010
NC
2240 /* We can't assume that sizeof(struct sembuf) == 3 * sizeof(short). */
2241 {
6867be6d 2242 const int nsops = opsize / (3 * sizeof (short));
248ff010 2243 int i = nsops;
0bcc34c2 2244 short * const ops = (short *) opbuf;
248ff010
NC
2245 short *o = ops;
2246 struct sembuf *temps, *t;
2247 I32 result;
2248
a02a5408 2249 Newx (temps, nsops, struct sembuf);
248ff010
NC
2250 t = temps;
2251 while (i--) {
2252 t->sem_num = *o++;
2253 t->sem_op = *o++;
2254 t->sem_flg = *o++;
2255 t++;
2256 }
2257 result = semop(id, temps, nsops);
2258 t = temps;
2259 o = ops;
2260 i = nsops;
2261 while (i--) {
2262 *o++ = t->sem_num;
2263 *o++ = t->sem_op;
2264 *o++ = t->sem_flg;
2265 t++;
2266 }
2267 Safefree(temps);
2268 return result;
2269 }
e5d73d77 2270#else
fe13d51d 2271 /* diag_listed_as: sem%s not implemented */
cea2e8a9 2272 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 2273#endif
c2ab57d4
LW
2274}
2275
79072805 2276I32
864dbfa3 2277Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 2278{
fe14fcc3 2279#ifdef HAS_SHM
97aff369 2280 dVAR;
4373e329 2281 char *shm;
c2ab57d4 2282 struct shmid_ds shmds;
6867be6d 2283 const I32 id = SvIVx(*++mark);
0bcc34c2
AL
2284 SV * const mstr = *++mark;
2285 const I32 mpos = SvIVx(*++mark);
2286 const I32 msize = SvIVx(*++mark);
7918f24d
NC
2287
2288 PERL_ARGS_ASSERT_DO_SHMIO;
890ce7af 2289 PERL_UNUSED_ARG(sp);
c2ab57d4 2290
748a9306 2291 SETERRNO(0,0);
c2ab57d4
LW
2292 if (shmctl(id, IPC_STAT, &shmds) == -1)
2293 return -1;
7f39519f
NC
2294 if (mpos < 0 || msize < 0
2295 || (size_t)mpos + msize > (size_t)shmds.shm_segsz) {
93189314 2296 SETERRNO(EFAULT,SS_ACCVIO); /* can't do as caller requested */
c2ab57d4
LW
2297 return -1;
2298 }
d4c19fe8 2299 shm = (char *)shmat(id, NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
c2ab57d4
LW
2300 if (shm == (char *)-1) /* I hate System V IPC, I really do */
2301 return -1;
79072805 2302 if (optype == OP_SHMREAD) {
c8ae91a8 2303 char *mbuf;
9f538c04
GS
2304 /* suppress warning when reading into undef var (tchrist 3/Mar/00) */
2305 if (! SvOK(mstr))
76f68e9b 2306 sv_setpvs(mstr, "");
93524f2b 2307 SvPV_force_nolen(mstr);
bb7a0f54 2308 mbuf = SvGROW(mstr, (STRLEN)msize+1);
a0d0e21e 2309
bee1dbe2 2310 Copy(shm + mpos, mbuf, msize, char);
79072805
LW
2311 SvCUR_set(mstr, msize);
2312 *SvEND(mstr) = '\0';
a0d0e21e 2313 SvSETMAGIC(mstr);
d929ce6f
JH
2314#ifndef INCOMPLETE_TAINTS
2315 /* who knows who has been playing with this shared memory? */
2316 SvTAINTED_on(mstr);
2317#endif
c2ab57d4
LW
2318 }
2319 else {
93524f2b 2320 STRLEN len;
c2ab57d4 2321
93524f2b 2322 const char *mbuf = SvPV_const(mstr, len);
027aa12d 2323 const I32 n = ((I32)len > msize) ? msize : (I32)len;
bee1dbe2 2324 Copy(mbuf, shm + mpos, n, char);
c2ab57d4 2325 if (n < msize)
bee1dbe2 2326 memzero(shm + mpos + n, msize - n);
c2ab57d4
LW
2327 }
2328 return shmdt(shm);
e5d73d77 2329#else
fe13d51d 2330 /* diag_listed_as: shm%s not implemented */
cea2e8a9 2331 Perl_croak(aTHX_ "shm I/O not implemented");
e5d73d77 2332#endif
c2ab57d4
LW
2333}
2334
fe14fcc3 2335#endif /* SYSV IPC */
4e35701f 2336
0d44d22b 2337/*
ccfc67b7
JH
2338=head1 IO Functions
2339
0d44d22b
NC
2340=for apidoc start_glob
2341
2342Function called by C<do_readline> to spawn a glob (or do the glob inside
2343perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
210b36aa 2344this glob starter is only used by miniperl during the build process.
0d44d22b 2345Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
fab3f3a7 2346
0d44d22b
NC
2347=cut
2348*/
2349
2350PerlIO *
2351Perl_start_glob (pTHX_ SV *tmpglob, IO *io)
2352{
27da23d5 2353 dVAR;
561b68a9 2354 SV * const tmpcmd = newSV(0);
0d44d22b 2355 PerlIO *fp;
7918f24d
NC
2356
2357 PERL_ARGS_ASSERT_START_GLOB;
2358
0d44d22b
NC
2359 ENTER;
2360 SAVEFREESV(tmpcmd);
2361#ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */
2362 /* since spawning off a process is a real performance hit */
dca5a913
JM
2363
2364PerlIO *
2365Perl_vms_start_glob
2366 (pTHX_ SV *tmpglob,
2367 IO *io);
2368
49a7a762 2369 fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
dca5a913 2370
0d44d22b 2371#else /* !VMS */
0d44d22b
NC
2372#ifdef DOSISH
2373#ifdef OS2
2374 sv_setpv(tmpcmd, "for a in ");
2375 sv_catsv(tmpcmd, tmpglob);
2376 sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |");
2377#else
2378#ifdef DJGPP
2379 sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */
2380 sv_catsv(tmpcmd, tmpglob);
2381#else
2382 sv_setpv(tmpcmd, "perlglob ");
2383 sv_catsv(tmpcmd, tmpglob);
2384 sv_catpv(tmpcmd, " |");
2385#endif /* !DJGPP */
2386#endif /* !OS2 */
2387#else /* !DOSISH */
2388#if defined(CSH)
2389 sv_setpvn(tmpcmd, PL_cshname, PL_cshlen);
2390 sv_catpv(tmpcmd, " -cf 'set nonomatch; glob ");
2391 sv_catsv(tmpcmd, tmpglob);
2392 sv_catpv(tmpcmd, "' 2>/dev/null |");
2393#else
2394 sv_setpv(tmpcmd, "echo ");
2395 sv_catsv(tmpcmd, tmpglob);
2396#if 'z' - 'a' == 25
2397 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\012\\012\\012\\012'|");
2398#else
2399 sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|");
2400#endif
2401#endif /* !CSH */
2402#endif /* !DOSISH */
93524f2b 2403 (void)do_open(PL_last_in_gv, (char*)SvPVX_const(tmpcmd), SvCUR(tmpcmd),
4608196e 2404 FALSE, O_RDONLY, 0, NULL);
0d44d22b
NC
2405 fp = IoIFP(io);
2406#endif /* !VMS */
2407 LEAVE;
2408 return fp;
2409}
66610fdd
RGS
2410
2411/*
2412 * Local variables:
2413 * c-indentation-style: bsd
2414 * c-basic-offset: 4
2415 * indent-tabs-mode: t
2416 * End:
2417 *
37442d52
RGS
2418 * ex: set ts=8 sts=4 sw=4 noet:
2419 */