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