fixes for logical bugs in the lexwarn patch; other tweaks to avoid
[p5sagit/p5-mst-13.2.git] / doio.c
CommitLineData
a0d0e21e 1/* doio.c
a687059c 2 *
4eb8286e 3 * Copyright (c) 1991-1999, Larry Wall
a687059c 4 *
6e21c824 5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
a687059c 7 *
a0d0e21e 8 */
9
10/*
11 * "Far below them they saw the white waters pour into a foaming bowl, and
12 * then swirl darkly about a deep oval basin in the rocks, until they found
13 * their way out again through a narrow gate, and flowed away, fuming and
14 * chattering, into calmer and more level reaches."
a687059c 15 */
16
17#include "EXTERN.h"
864dbfa3 18#define PERL_IN_DOIO_C
a687059c 19#include "perl.h"
20
fe14fcc3 21#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
aec308ec 22#ifndef HAS_SEM
c2ab57d4 23#include <sys/ipc.h>
aec308ec 24#endif
fe14fcc3 25#ifdef HAS_MSG
c2ab57d4 26#include <sys/msg.h>
e5d73d77 27#endif
fe14fcc3 28#ifdef HAS_SHM
c2ab57d4 29#include <sys/shm.h>
a0d0e21e 30# ifndef HAS_SHMAT_PROTOTYPE
20ce7b12 31 extern Shmat_t shmat (int, char *, int);
a0d0e21e 32# endif
c2ab57d4 33#endif
e5d73d77 34#endif
c2ab57d4 35
663a0e37 36#ifdef I_UTIME
3730b96e 37# if defined(_MSC_VER) || defined(__MINGW32__)
3fe9a6f1 38# include <sys/utime.h>
39# else
40# include <utime.h>
41# endif
663a0e37 42#endif
85aff577 43
ff8e2863 44#ifdef I_FCNTL
45#include <fcntl.h>
46#endif
fe14fcc3 47#ifdef I_SYS_FILE
48#include <sys/file.h>
49#endif
85aff577 50#ifdef O_EXCL
51# define OPEN_EXCL O_EXCL
52#else
53# define OPEN_EXCL 0
54#endif
a687059c 55
76121258 56#if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
57#include <signal.h>
58#endif
59
60/* XXX If this causes problems, set i_unistd=undef in the hint file. */
61#ifdef I_UNISTD
62# include <unistd.h>
63#endif
64
232e078e 65#if defined(HAS_SOCKET) && !defined(VMS) /* VMS handles sockets via vmsish.h */
66# include <sys/socket.h>
29209bc5 67# if defined(USE_SOCKS) && defined(I_SOCKS)
86959918 68# include <socks.h>
69# endif
70# ifdef I_NETBSD
71# include <netdb.h>
72# endif
232e078e 73# ifndef ENOTSOCK
74# ifdef I_NET_ERRNO
75# include <net/errno.h>
76# endif
77# endif
78#endif
79
d574b85e 80/* Put this after #includes because <unistd.h> defines _XOPEN_*. */
81#ifndef Sock_size_t
137443ea 82# if _XOPEN_VERSION >= 5 || defined(_XOPEN_SOURCE_EXTENDED) || defined(__GLIBC__)
d574b85e 83# define Sock_size_t Size_t
84# else
85# define Sock_size_t int
86# endif
87#endif
88
a687059c 89bool
864dbfa3 90Perl_do_open(pTHX_ GV *gv, register char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp)
a687059c 91{
a0d0e21e 92 register IO *io = GvIOn(gv);
760ac839 93 PerlIO *saveifp = Nullfp;
94 PerlIO *saveofp = Nullfp;
6e21c824 95 char savetype = ' ';
c07a80fd 96 int writing = 0;
760ac839 97 PerlIO *fp;
c07a80fd 98 int fd;
99 int result;
3500f679 100 bool was_fdopen = FALSE;
a687059c 101
3280af22 102 PL_forkprocess = 1; /* assume true if no fork */
c07a80fd 103
a0d0e21e 104 if (IoIFP(io)) {
760ac839 105 fd = PerlIO_fileno(IoIFP(io));
8990e307 106 if (IoTYPE(io) == '-')
c2ab57d4 107 result = 0;
3280af22 108 else if (fd <= PL_maxsysfd) {
8990e307 109 saveifp = IoIFP(io);
110 saveofp = IoOFP(io);
111 savetype = IoTYPE(io);
6e21c824 112 result = 0;
113 }
8990e307 114 else if (IoTYPE(io) == '|')
3028581b 115 result = PerlProc_pclose(IoIFP(io));
8990e307 116 else if (IoIFP(io) != IoOFP(io)) {
117 if (IoOFP(io)) {
760ac839 118 result = PerlIO_close(IoOFP(io));
119 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
c2ab57d4 120 }
121 else
760ac839 122 result = PerlIO_close(IoIFP(io));
a687059c 123 }
a687059c 124 else
760ac839 125 result = PerlIO_close(IoIFP(io));
3280af22 126 if (result == EOF && fd > PL_maxsysfd)
760ac839 127 PerlIO_printf(PerlIO_stderr(), "Warning: unable to close filehandle %s properly.\n",
79072805 128 GvENAME(gv));
8990e307 129 IoOFP(io) = IoIFP(io) = Nullfp;
a687059c 130 }
c07a80fd 131
132 if (as_raw) {
5ff3f7a4 133#if defined(O_LARGEFILE)
134 rawmode |= O_LARGEFILE;
135#endif
136
9d116dd7 137#ifndef O_ACCMODE
138#define O_ACCMODE 3 /* Assume traditional implementation */
139#endif
5ff3f7a4 140
9d116dd7 141 switch (result = rawmode & O_ACCMODE) {
142 case O_RDONLY:
143 IoTYPE(io) = '<';
144 break;
145 case O_WRONLY:
146 IoTYPE(io) = '>';
147 break;
148 case O_RDWR:
149 default:
150 IoTYPE(io) = '+';
151 break;
152 }
153
c07a80fd 154 writing = (result > 0);
3028581b 155 fd = PerlLIO_open3(name, rawmode, rawperm);
9d116dd7 156
c07a80fd 157 if (fd == -1)
158 fp = NULL;
159 else {
360e5741 160 char *fpmode;
9d116dd7 161 if (result == O_RDONLY)
360e5741 162 fpmode = "r";
163#ifdef O_APPEND
164 else if (rawmode & O_APPEND)
9d116dd7 165 fpmode = (result == O_WRONLY) ? "a" : "a+";
360e5741 166#endif
167 else
9d116dd7 168 fpmode = (result == O_WRONLY) ? "w" : "r+";
360e5741 169 fp = PerlIO_fdopen(fd, fpmode);
c07a80fd 170 if (!fp)
3028581b 171 PerlLIO_close(fd);
c07a80fd 172 }
a687059c 173 }
c07a80fd 174 else {
175 char *myname;
176 char mode[3]; /* stdio file mode ("r\0" or "r+\0") */
177 int dodup;
178
179 myname = savepvn(name, len);
180 SAVEFREEPV(myname);
181 name = myname;
182 while (len && isSPACE(name[len-1]))
183 name[--len] = '\0';
184
185 mode[0] = mode[1] = mode[2] = '\0';
186 IoTYPE(io) = *name;
187 if (*name == '+' && len > 1 && name[len-1] != '|') { /* scary */
188 mode[1] = *name++;
189 --len;
190 writing = 1;
a687059c 191 }
c07a80fd 192
193 if (*name == '|') {
194 /*SUPPRESS 530*/
195 for (name++; isSPACE(*name); name++) ;
06eaf0bc 196 if (*name == '\0') { /* command is missing 19990114 */
197 dTHR;
198 if (ckWARN(WARN_PIPE))
cea2e8a9 199 Perl_warner(aTHX_ WARN_PIPE, "Missing command in piped open");
06eaf0bc 200 errno = EPIPE;
201 goto say_false;
202 }
c07a80fd 203 if (strNE(name,"-"))
204 TAINT_ENV();
205 TAINT_PROPER("piped open");
7b8d334a 206 if (name[strlen(name)-1] == '|') {
d008e5eb 207 dTHR;
7b8d334a 208 name[strlen(name)-1] = '\0' ;
599cee73 209 if (ckWARN(WARN_PIPE))
cea2e8a9 210 Perl_warner(aTHX_ WARN_PIPE, "Can't do bidirectional pipe");
7b8d334a 211 }
3028581b 212 fp = PerlProc_popen(name,"w");
c07a80fd 213 writing = 1;
214 }
215 else if (*name == '>') {
216 TAINT_PROPER("open");
bf38876a 217 name++;
c07a80fd 218 if (*name == '>') {
219 mode[0] = IoTYPE(io) = 'a';
bf38876a 220 name++;
a0d0e21e 221 }
c07a80fd 222 else
223 mode[0] = 'w';
224 writing = 1;
225
226 if (*name == '&') {
227 duplicity:
228 dodup = 1;
229 name++;
230 if (*name == '=') {
231 dodup = 0;
a0d0e21e 232 name++;
c07a80fd 233 }
234 if (!*name && supplied_fp)
235 fp = supplied_fp;
a0d0e21e 236 else {
c07a80fd 237 /*SUPPRESS 530*/
238 for (; isSPACE(*name); name++) ;
239 if (isDIGIT(*name))
240 fd = atoi(name);
241 else {
242 IO* thatio;
243 gv = gv_fetchpv(name,FALSE,SVt_PVIO);
244 thatio = GvIO(gv);
245 if (!thatio) {
6e21c824 246#ifdef EINVAL
c07a80fd 247 SETERRNO(EINVAL,SS$_IVCHAN);
6e21c824 248#endif
c07a80fd 249 goto say_false;
250 }
251 if (IoIFP(thatio)) {
760ac839 252 fd = PerlIO_fileno(IoIFP(thatio));
c07a80fd 253 if (IoTYPE(thatio) == 's')
254 IoTYPE(io) = 's';
255 }
256 else
257 fd = -1;
a0d0e21e 258 }
fec02dd3 259 if (dodup)
3028581b 260 fd = PerlLIO_dup(fd);
3500f679 261 else
262 was_fdopen = TRUE;
760ac839 263 if (!(fp = PerlIO_fdopen(fd,mode))) {
c07a80fd 264 if (dodup)
3028581b 265 PerlLIO_close(fd);
517844ec 266 }
c07a80fd 267 }
bf38876a 268 }
c07a80fd 269 else {
270 /*SUPPRESS 530*/
271 for (; isSPACE(*name); name++) ;
272 if (strEQ(name,"-")) {
760ac839 273 fp = PerlIO_stdout();
c07a80fd 274 IoTYPE(io) = '-';
275 }
276 else {
760ac839 277 fp = PerlIO_open(name,mode);
c07a80fd 278 }
bf38876a 279 }
280 }
c07a80fd 281 else if (*name == '<') {
282 /*SUPPRESS 530*/
283 for (name++; isSPACE(*name); name++) ;
bf38876a 284 mode[0] = 'r';
bf38876a 285 if (*name == '&')
286 goto duplicity;
a687059c 287 if (strEQ(name,"-")) {
760ac839 288 fp = PerlIO_stdin();
8990e307 289 IoTYPE(io) = '-';
a687059c 290 }
bf38876a 291 else
760ac839 292 fp = PerlIO_open(name,mode);
a687059c 293 }
00db4c45 294 else if (len > 1 && name[len-1] == '|') {
a687059c 295 name[--len] = '\0';
99b89507 296 while (len && isSPACE(name[len-1]))
a687059c 297 name[--len] = '\0';
99b89507 298 /*SUPPRESS 530*/
299 for (; isSPACE(*name); name++) ;
06eaf0bc 300 if (*name == '\0') { /* command is missing 19990114 */
301 dTHR;
302 if (ckWARN(WARN_PIPE))
cea2e8a9 303 Perl_warner(aTHX_ WARN_PIPE, "Missing command in piped open");
06eaf0bc 304 errno = EPIPE;
305 goto say_false;
306 }
79072805 307 if (strNE(name,"-"))
308 TAINT_ENV();
309 TAINT_PROPER("piped open");
3028581b 310 fp = PerlProc_popen(name,"r");
8990e307 311 IoTYPE(io) = '|';
a687059c 312 }
313 else {
8990e307 314 IoTYPE(io) = '<';
99b89507 315 /*SUPPRESS 530*/
316 for (; isSPACE(*name); name++) ;
a687059c 317 if (strEQ(name,"-")) {
760ac839 318 fp = PerlIO_stdin();
8990e307 319 IoTYPE(io) = '-';
a687059c 320 }
321 else
760ac839 322 fp = PerlIO_open(name,"r");
a687059c 323 }
324 }
bee1dbe2 325 if (!fp) {
d008e5eb 326 dTHR;
599cee73 327 if (ckWARN(WARN_NEWLINE) && IoTYPE(io) == '<' && strchr(name, '\n'))
cea2e8a9 328 Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "open");
6e21c824 329 goto say_false;
bee1dbe2 330 }
8990e307 331 if (IoTYPE(io) &&
332 IoTYPE(io) != '|' && IoTYPE(io) != '-') {
96827780 333 dTHR;
3280af22 334 if (PerlLIO_fstat(PerlIO_fileno(fp),&PL_statbuf) < 0) {
760ac839 335 (void)PerlIO_close(fp);
6e21c824 336 goto say_false;
a687059c 337 }
3280af22 338 if (S_ISSOCK(PL_statbuf.st_mode))
8990e307 339 IoTYPE(io) = 's'; /* in case a socket was passed in to us */
99b89507 340#ifdef HAS_SOCKET
341 else if (
c623bd54 342#ifdef S_IFMT
3280af22 343 !(PL_statbuf.st_mode & S_IFMT)
99b89507 344#else
b28d0864 345 !PL_statbuf.st_mode
99b89507 346#endif
347 ) {
96827780 348 char tmpbuf[256];
349 Sock_size_t buflen = sizeof tmpbuf;
3028581b 350 if (PerlSock_getsockname(PerlIO_fileno(fp), (struct sockaddr *)tmpbuf,
d574b85e 351 &buflen) >= 0
352 || errno != ENOTSOCK)
8990e307 353 IoTYPE(io) = 's'; /* some OS's return 0 on fstat()ed socket */
99b89507 354 /* but some return 0 for streams too, sigh */
355 }
bf38876a 356#endif
a687059c 357 }
6e21c824 358 if (saveifp) { /* must use old fp? */
760ac839 359 fd = PerlIO_fileno(saveifp);
6e21c824 360 if (saveofp) {
760ac839 361 PerlIO_flush(saveofp); /* emulate PerlIO_close() */
6e21c824 362 if (saveofp != saveifp) { /* was a socket? */
760ac839 363 PerlIO_close(saveofp);
99b89507 364 if (fd > 2)
365 Safefree(saveofp);
6e21c824 366 }
367 }
760ac839 368 if (fd != PerlIO_fileno(fp)) {
bee1dbe2 369 int pid;
79072805 370 SV *sv;
bee1dbe2 371
3028581b 372 PerlLIO_dup2(PerlIO_fileno(fp), fd);
3280af22 373 sv = *av_fetch(PL_fdpid,PerlIO_fileno(fp),TRUE);
a0d0e21e 374 (void)SvUPGRADE(sv, SVt_IV);
463ee0b2 375 pid = SvIVX(sv);
376 SvIVX(sv) = 0;
3280af22 377 sv = *av_fetch(PL_fdpid,fd,TRUE);
a0d0e21e 378 (void)SvUPGRADE(sv, SVt_IV);
463ee0b2 379 SvIVX(sv) = pid;
3500f679 380 if (!was_fdopen)
381 PerlIO_close(fp);
bee1dbe2 382
6e21c824 383 }
384 fp = saveifp;
760ac839 385 PerlIO_clearerr(fp);
6e21c824 386 }
a0d0e21e 387#if defined(HAS_FCNTL) && defined(F_SETFD)
a8710ca1 388 {
389 int save_errno = errno;
390 fd = PerlIO_fileno(fp);
391 fcntl(fd,F_SETFD,fd > PL_maxsysfd); /* can change errno */
392 errno = save_errno;
393 }
1462b684 394#endif
8990e307 395 IoIFP(io) = fp;
bf38876a 396 if (writing) {
96827780 397 dTHR;
8990e307 398 if (IoTYPE(io) == 's'
3280af22 399 || (IoTYPE(io) == '>' && S_ISCHR(PL_statbuf.st_mode)) ) {
760ac839 400 if (!(IoOFP(io) = PerlIO_fdopen(PerlIO_fileno(fp),"w"))) {
401 PerlIO_close(fp);
8990e307 402 IoIFP(io) = Nullfp;
6e21c824 403 goto say_false;
fe14fcc3 404 }
1462b684 405 }
406 else
8990e307 407 IoOFP(io) = fp;
bf38876a 408 }
a687059c 409 return TRUE;
6e21c824 410
411say_false:
8990e307 412 IoIFP(io) = saveifp;
413 IoOFP(io) = saveofp;
414 IoTYPE(io) = savetype;
6e21c824 415 return FALSE;
a687059c 416}
417
760ac839 418PerlIO *
864dbfa3 419Perl_nextargv(pTHX_ register GV *gv)
a687059c 420{
79072805 421 register SV *sv;
99b89507 422#ifndef FLEXFILENAMES
c623bd54 423 int filedev;
424 int fileino;
99b89507 425#endif
761237fe 426 Uid_t fileuid;
427 Gid_t filegid;
fe14fcc3 428
3280af22 429 if (!PL_argvoutgv)
430 PL_argvoutgv = gv_fetchpv("ARGVOUT",TRUE,SVt_PVIO);
431 if (PL_filemode & (S_ISUID|S_ISGID)) {
432 PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv))); /* chmod must follow last write */
fe14fcc3 433#ifdef HAS_FCHMOD
3280af22 434 (void)fchmod(PL_lastfd,PL_filemode);
fe14fcc3 435#else
b28d0864 436 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
fe14fcc3 437#endif
438 }
3280af22 439 PL_filemode = 0;
79072805 440 while (av_len(GvAV(gv)) >= 0) {
11343788 441 dTHR;
85aff577 442 STRLEN oldlen;
79072805 443 sv = av_shift(GvAV(gv));
8990e307 444 SAVEFREESV(sv);
79072805 445 sv_setsv(GvSV(gv),sv);
446 SvSETMAGIC(GvSV(gv));
3280af22 447 PL_oldname = SvPVx(GvSV(gv), oldlen);
9d116dd7 448 if (do_open(gv,PL_oldname,oldlen,PL_inplace!=0,O_RDONLY,0,Nullfp)) {
3280af22 449 if (PL_inplace) {
79072805 450 TAINT_PROPER("inplace open");
3280af22 451 if (oldlen == 1 && *PL_oldname == '-') {
4633a7c4 452 setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO));
a0d0e21e 453 return IoIFP(GvIOp(gv));
c623bd54 454 }
99b89507 455#ifndef FLEXFILENAMES
b28d0864 456 filedev = PL_statbuf.st_dev;
457 fileino = PL_statbuf.st_ino;
99b89507 458#endif
3280af22 459 PL_filemode = PL_statbuf.st_mode;
460 fileuid = PL_statbuf.st_uid;
461 filegid = PL_statbuf.st_gid;
462 if (!S_ISREG(PL_filemode)) {
0453d815 463 if (ckWARN_d(WARN_INPLACE))
464 Perl_warner(aTHX_ WARN_INPLACE,
465 "Can't do inplace edit: %s is not a regular file",
466 PL_oldname );
79072805 467 do_close(gv,FALSE);
c623bd54 468 continue;
469 }
3280af22 470 if (*PL_inplace) {
471 char *star = strchr(PL_inplace, '*');
2d259d92 472 if (star) {
3280af22 473 char *begin = PL_inplace;
2d259d92 474 sv_setpvn(sv, "", 0);
475 do {
476 sv_catpvn(sv, begin, star - begin);
3280af22 477 sv_catpvn(sv, PL_oldname, oldlen);
2d259d92 478 begin = ++star;
479 } while ((star = strchr(begin, '*')));
3d66d7bb 480 if (*begin)
481 sv_catpv(sv,begin);
2d259d92 482 }
483 else {
3280af22 484 sv_catpv(sv,PL_inplace);
2d259d92 485 }
c623bd54 486#ifndef FLEXFILENAMES
b28d0864 487 if (PerlLIO_stat(SvPVX(sv),&PL_statbuf) >= 0
488 && PL_statbuf.st_dev == filedev
489 && PL_statbuf.st_ino == fileino
39e571d4 490#ifdef DJGPP
491 || (_djstat_fail_bits & _STFAIL_TRUENAME)!=0
492#endif
f248d071 493 )
494 {
495 if (ckWARN_d(WARN_INPLACE))
496 Perl_warner(aTHX_ WARN_INPLACE,
497 "Can't do inplace edit: %s would not be unique",
498 SvPVX(sv));
79072805 499 do_close(gv,FALSE);
c623bd54 500 continue;
501 }
502#endif
fe14fcc3 503#ifdef HAS_RENAME
bee1dbe2 504#ifndef DOSISH
3280af22 505 if (PerlLIO_rename(PL_oldname,SvPVX(sv)) < 0) {
0453d815 506 if (ckWARN_d(WARN_INPLACE))
507 Perl_warner(aTHX_ WARN_INPLACE,
508 "Can't rename %s to %s: %s, skipping file",
509 PL_oldname, SvPVX(sv), Strerror(errno) );
79072805 510 do_close(gv,FALSE);
c623bd54 511 continue;
512 }
a687059c 513#else
79072805 514 do_close(gv,FALSE);
3028581b 515 (void)PerlLIO_unlink(SvPVX(sv));
b28d0864 516 (void)PerlLIO_rename(PL_oldname,SvPVX(sv));
9d116dd7 517 do_open(gv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,O_RDONLY,0,Nullfp);
55497cff 518#endif /* DOSISH */
ff8e2863 519#else
463ee0b2 520 (void)UNLINK(SvPVX(sv));
b28d0864 521 if (link(PL_oldname,SvPVX(sv)) < 0) {
0453d815 522 if (ckWARN_d(WARN_INPLACE))
523 Perl_warner(aTHX_ WARN_INPLACE,
524 "Can't rename %s to %s: %s, skipping file",
525 PL_oldname, SvPVX(sv), Strerror(errno) );
79072805 526 do_close(gv,FALSE);
c623bd54 527 continue;
528 }
b28d0864 529 (void)UNLINK(PL_oldname);
a687059c 530#endif
531 }
532 else {
a8c18271 533#if !defined(DOSISH) && !defined(AMIGAOS)
edc7bc49 534# ifndef VMS /* Don't delete; use automatic file versioning */
3280af22 535 if (UNLINK(PL_oldname) < 0) {
0453d815 536 if (ckWARN_d(WARN_INPLACE))
537 Perl_warner(aTHX_ WARN_INPLACE,
538 "Can't remove %s: %s, skipping file",
539 PL_oldname, Strerror(errno) );
79072805 540 do_close(gv,FALSE);
fe14fcc3 541 continue;
542 }
edc7bc49 543# endif
ff8e2863 544#else
cea2e8a9 545 Perl_croak(aTHX_ "Can't do inplace edit without backup");
ff8e2863 546#endif
a687059c 547 }
548
3280af22 549 sv_setpvn(sv,">",!PL_inplace);
550 sv_catpvn(sv,PL_oldname,oldlen);
748a9306 551 SETERRNO(0,0); /* in case sprintf set errno */
4119ab01 552#ifdef VMS
553 if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,
554 O_WRONLY|O_CREAT|O_TRUNC,0,Nullfp)) {
555#else
3280af22 556 if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,
85aff577 557 O_WRONLY|O_CREAT|OPEN_EXCL,0666,Nullfp)) {
4119ab01 558#endif
0453d815 559 if (ckWARN_d(WARN_INPLACE))
560 Perl_warner(aTHX_ WARN_INPLACE, "Can't do inplace edit on %s: %s",
561 PL_oldname, Strerror(errno) );
79072805 562 do_close(gv,FALSE);
fe14fcc3 563 continue;
564 }
3280af22 565 setdefout(PL_argvoutgv);
566 PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv)));
567 (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf);
fe14fcc3 568#ifdef HAS_FCHMOD
3280af22 569 (void)fchmod(PL_lastfd,PL_filemode);
a687059c 570#else
3e3baf6d 571# if !(defined(WIN32) && defined(__BORLANDC__))
572 /* Borland runtime creates a readonly file! */
b28d0864 573 (void)PerlLIO_chmod(PL_oldname,PL_filemode);
3e3baf6d 574# endif
a687059c 575#endif
3280af22 576 if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) {
fe14fcc3 577#ifdef HAS_FCHOWN
3280af22 578 (void)fchown(PL_lastfd,fileuid,filegid);
a687059c 579#else
fe14fcc3 580#ifdef HAS_CHOWN
b28d0864 581 (void)PerlLIO_chown(PL_oldname,fileuid,filegid);
a687059c 582#endif
b1248f16 583#endif
fe14fcc3 584 }
a687059c 585 }
a0d0e21e 586 return IoIFP(GvIOp(gv));
a687059c 587 }
588 else
22fae026 589 PerlIO_printf(PerlIO_stderr(), "Can't open %s: %s\n",
2d8e6c8d 590 SvPV(sv, oldlen), Strerror(errno));
a687059c 591 }
3280af22 592 if (PL_inplace) {
593 (void)do_close(PL_argvoutgv,FALSE);
4633a7c4 594 setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO));
a687059c 595 }
596 return Nullfp;
597}
598
fe14fcc3 599#ifdef HAS_PIPE
afd9f252 600void
864dbfa3 601Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv)
afd9f252 602{
79072805 603 register IO *rstio;
604 register IO *wstio;
afd9f252 605 int fd[2];
606
79072805 607 if (!rgv)
afd9f252 608 goto badexit;
79072805 609 if (!wgv)
afd9f252 610 goto badexit;
611
a0d0e21e 612 rstio = GvIOn(rgv);
613 wstio = GvIOn(wgv);
afd9f252 614
a0d0e21e 615 if (IoIFP(rstio))
79072805 616 do_close(rgv,FALSE);
a0d0e21e 617 if (IoIFP(wstio))
79072805 618 do_close(wgv,FALSE);
afd9f252 619
3028581b 620 if (PerlProc_pipe(fd) < 0)
afd9f252 621 goto badexit;
760ac839 622 IoIFP(rstio) = PerlIO_fdopen(fd[0], "r");
623 IoOFP(wstio) = PerlIO_fdopen(fd[1], "w");
8990e307 624 IoIFP(wstio) = IoOFP(wstio);
625 IoTYPE(rstio) = '<';
626 IoTYPE(wstio) = '>';
627 if (!IoIFP(rstio) || !IoOFP(wstio)) {
760ac839 628 if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
3028581b 629 else PerlLIO_close(fd[0]);
760ac839 630 if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
3028581b 631 else PerlLIO_close(fd[1]);
fe14fcc3 632 goto badexit;
633 }
afd9f252 634
3280af22 635 sv_setsv(sv,&PL_sv_yes);
afd9f252 636 return;
637
638badexit:
3280af22 639 sv_setsv(sv,&PL_sv_undef);
afd9f252 640 return;
641}
b1248f16 642#endif
afd9f252 643
517844ec 644/* explicit renamed to avoid C++ conflict -- kja */
a687059c 645bool
864dbfa3 646Perl_do_close(pTHX_ GV *gv, bool not_implicit)
a687059c 647{
1193dd27 648 bool retval;
649 IO *io;
a687059c 650
79072805 651 if (!gv)
3280af22 652 gv = PL_argvgv;
a0d0e21e 653 if (!gv || SvTYPE(gv) != SVt_PVGV) {
1d2dff63 654 if (not_implicit)
655 SETERRNO(EBADF,SS$_IVCHAN);
c2ab57d4 656 return FALSE;
99b89507 657 }
79072805 658 io = GvIO(gv);
659 if (!io) { /* never opened */
1d2dff63 660 if (not_implicit) {
d008e5eb 661 dTHR;
599cee73 662 if (ckWARN(WARN_UNOPENED))
cea2e8a9 663 Perl_warner(aTHX_ WARN_UNOPENED,
599cee73 664 "Close on unopened file <%s>",GvENAME(gv));
1d2dff63 665 SETERRNO(EBADF,SS$_IVCHAN);
666 }
a687059c 667 return FALSE;
668 }
1193dd27 669 retval = io_close(io);
517844ec 670 if (not_implicit) {
1193dd27 671 IoLINES(io) = 0;
672 IoPAGE(io) = 0;
673 IoLINES_LEFT(io) = IoPAGE_LEN(io);
674 }
675 IoTYPE(io) = ' ';
676 return retval;
677}
678
679bool
864dbfa3 680Perl_io_close(pTHX_ IO *io)
1193dd27 681{
682 bool retval = FALSE;
683 int status;
684
8990e307 685 if (IoIFP(io)) {
686 if (IoTYPE(io) == '|') {
3028581b 687 status = PerlProc_pclose(IoIFP(io));
f86702cc 688 STATUS_NATIVE_SET(status);
1e422769 689 retval = (STATUS_POSIX == 0);
a687059c 690 }
8990e307 691 else if (IoTYPE(io) == '-')
a687059c 692 retval = TRUE;
693 else {
8990e307 694 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
760ac839 695 retval = (PerlIO_close(IoOFP(io)) != EOF);
696 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
c2ab57d4 697 }
698 else
760ac839 699 retval = (PerlIO_close(IoIFP(io)) != EOF);
a687059c 700 }
8990e307 701 IoOFP(io) = IoIFP(io) = Nullfp;
79072805 702 }
20408e3c 703 else {
704 SETERRNO(EBADF,SS$_IVCHAN);
705 }
1193dd27 706
a687059c 707 return retval;
708}
709
710bool
864dbfa3 711Perl_do_eof(pTHX_ GV *gv)
a687059c 712{
11343788 713 dTHR;
79072805 714 register IO *io;
a687059c 715 int ch;
716
79072805 717 io = GvIO(gv);
a687059c 718
79072805 719 if (!io)
a687059c 720 return TRUE;
af8c498a 721 else if (ckWARN(WARN_IO)
722 && (IoTYPE(io) == '>' || IoIFP(io) == PerlIO_stdout()
723 || IoIFP(io) == PerlIO_stderr()))
724 {
725 SV* sv = sv_newmortal();
726 gv_efullname3(sv, gv, Nullch);
727 Perl_warner(aTHX_ WARN_IO, "Filehandle %s opened only for output",
728 SvPV_nolen(sv));
729 }
a687059c 730
8990e307 731 while (IoIFP(io)) {
a687059c 732
760ac839 733 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
734 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
735 return FALSE; /* this is the most usual case */
736 }
a687059c 737
760ac839 738 ch = PerlIO_getc(IoIFP(io));
a687059c 739 if (ch != EOF) {
760ac839 740 (void)PerlIO_ungetc(IoIFP(io),ch);
a687059c 741 return FALSE;
742 }
760ac839 743 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
744 if (PerlIO_get_cnt(IoIFP(io)) < -1)
745 PerlIO_set_cnt(IoIFP(io),-1);
746 }
533c011a 747 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
3280af22 748 if (!nextargv(PL_argvgv)) /* get another fp handy */
a687059c 749 return TRUE;
750 }
751 else
752 return TRUE; /* normal fp, definitely end of file */
753 }
754 return TRUE;
755}
756
5ff3f7a4 757Off_t
864dbfa3 758Perl_do_tell(pTHX_ GV *gv)
a687059c 759{
79072805 760 register IO *io;
96e4d5b1 761 register PerlIO *fp;
a687059c 762
96e4d5b1 763 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 764#ifdef ULTRIX_STDIO_BOTCH
96e4d5b1 765 if (PerlIO_eof(fp))
766 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 767#endif
8903cb82 768 return PerlIO_tell(fp);
96e4d5b1 769 }
d008e5eb 770 {
771 dTHR;
772 if (ckWARN(WARN_UNOPENED))
cea2e8a9 773 Perl_warner(aTHX_ WARN_UNOPENED, "tell() on unopened file");
d008e5eb 774 }
748a9306 775 SETERRNO(EBADF,RMS$_IFI);
5ff3f7a4 776 return (Off_t)-1;
a687059c 777}
778
779bool
864dbfa3 780Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
a687059c 781{
79072805 782 register IO *io;
137443ea 783 register PerlIO *fp;
a687059c 784
137443ea 785 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 786#ifdef ULTRIX_STDIO_BOTCH
137443ea 787 if (PerlIO_eof(fp))
788 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 789#endif
8903cb82 790 return PerlIO_seek(fp, pos, whence) >= 0;
137443ea 791 }
d008e5eb 792 {
793 dTHR;
794 if (ckWARN(WARN_UNOPENED))
cea2e8a9 795 Perl_warner(aTHX_ WARN_UNOPENED, "seek() on unopened file");
d008e5eb 796 }
748a9306 797 SETERRNO(EBADF,RMS$_IFI);
a687059c 798 return FALSE;
799}
800
97cc44eb 801Off_t
864dbfa3 802Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
8903cb82 803{
804 register IO *io;
805 register PerlIO *fp;
806
807 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io)))
3028581b 808 return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence);
d008e5eb 809 {
810 dTHR;
811 if (ckWARN(WARN_UNOPENED))
cea2e8a9 812 Perl_warner(aTHX_ WARN_UNOPENED, "sysseek() on unopened file");
d008e5eb 813 }
8903cb82 814 SETERRNO(EBADF,RMS$_IFI);
815 return -1L;
816}
817
6ff81951 818int
864dbfa3 819Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int flag)
6ff81951 820{
821 if (flag != TRUE)
cea2e8a9 822 Perl_croak(aTHX_ "panic: unsetting binmode"); /* Not implemented yet */
6ff81951 823#ifdef DOSISH
61ae2fbf 824#if defined(atarist) || defined(__MINT__)
6ff81951 825 if (!PerlIO_flush(fp) && (fp->_flag |= _IOBIN))
826 return 1;
827 else
828 return 0;
829#else
830 if (PerlLIO_setmode(PerlIO_fileno(fp), OP_BINARY) != -1) {
831#if defined(WIN32) && defined(__BORLANDC__)
832 /* The translation mode of the stream is maintained independent
833 * of the translation mode of the fd in the Borland RTL (heavy
834 * digging through their runtime sources reveal). User has to
835 * set the mode explicitly for the stream (though they don't
836 * document this anywhere). GSAR 97-5-24
837 */
838 PerlIO_seek(fp,0L,0);
873ef191 839 ((FILE*)fp)->flags |= _F_BIN;
6ff81951 840#endif
841 return 1;
842 }
843 else
844 return 0;
845#endif
846#else
847#if defined(USEMYBINMODE)
1cab015a 848 if (my_binmode(fp,iotype) != FALSE)
6ff81951 849 return 1;
850 else
851 return 0;
852#else
853 return 1;
854#endif
855#endif
856}
857
a0d0e21e 858#if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
c2ab57d4 859 /* code courtesy of William Kucharski */
fe14fcc3 860#define HAS_CHSIZE
6eb13c3b 861
517844ec 862I32 my_chsize(fd, length)
79072805 863I32 fd; /* file descriptor */
85e6fe83 864Off_t length; /* length to set file to */
6eb13c3b 865{
6eb13c3b 866 struct flock fl;
867 struct stat filebuf;
868
3028581b 869 if (PerlLIO_fstat(fd, &filebuf) < 0)
6eb13c3b 870 return -1;
871
872 if (filebuf.st_size < length) {
873
874 /* extend file length */
875
3028581b 876 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
6eb13c3b 877 return -1;
878
879 /* write a "0" byte */
880
3028581b 881 if ((PerlLIO_write(fd, "", 1)) != 1)
6eb13c3b 882 return -1;
883 }
884 else {
885 /* truncate length */
886
887 fl.l_whence = 0;
888 fl.l_len = 0;
889 fl.l_start = length;
a0d0e21e 890 fl.l_type = F_WRLCK; /* write lock on file space */
6eb13c3b 891
892 /*
a0d0e21e 893 * This relies on the UNDOCUMENTED F_FREESP argument to
6eb13c3b 894 * fcntl(2), which truncates the file so that it ends at the
895 * position indicated by fl.l_start.
896 *
897 * Will minor miracles never cease?
898 */
899
a0d0e21e 900 if (fcntl(fd, F_FREESP, &fl) < 0)
6eb13c3b 901 return -1;
902
903 }
904
905 return 0;
906}
a0d0e21e 907#endif /* F_FREESP */
ff8e2863 908
a687059c 909bool
864dbfa3 910Perl_do_print(pTHX_ register SV *sv, PerlIO *fp)
a687059c 911{
912 register char *tmps;
463ee0b2 913 STRLEN len;
a687059c 914
79072805 915 /* assuming fp is checked earlier */
916 if (!sv)
917 return TRUE;
3280af22 918 if (PL_ofmt) {
8990e307 919 if (SvGMAGICAL(sv))
79072805 920 mg_get(sv);
463ee0b2 921 if (SvIOK(sv) && SvIVX(sv) != 0) {
65202027 922 PerlIO_printf(fp, PL_ofmt, (NV)SvIVX(sv));
760ac839 923 return !PerlIO_error(fp);
79072805 924 }
463ee0b2 925 if ( (SvNOK(sv) && SvNVX(sv) != 0.0)
79072805 926 || (looks_like_number(sv) && sv_2nv(sv) != 0.0) ) {
3280af22 927 PerlIO_printf(fp, PL_ofmt, SvNVX(sv));
760ac839 928 return !PerlIO_error(fp);
79072805 929 }
a687059c 930 }
79072805 931 switch (SvTYPE(sv)) {
932 case SVt_NULL:
d008e5eb 933 {
934 dTHR;
935 if (ckWARN(WARN_UNINITIALIZED))
cea2e8a9 936 Perl_warner(aTHX_ WARN_UNINITIALIZED, PL_warn_uninit);
d008e5eb 937 }
ff8e2863 938 return TRUE;
79072805 939 case SVt_IV:
a0d0e21e 940 if (SvIOK(sv)) {
941 if (SvGMAGICAL(sv))
942 mg_get(sv);
25da4f38 943 if (SvIsUV(sv)) /* XXXX 64-bit? */
944 PerlIO_printf(fp, "%lu", (unsigned long)SvUVX(sv));
945 else
946 PerlIO_printf(fp, "%ld", (long)SvIVX(sv));
760ac839 947 return !PerlIO_error(fp);
a0d0e21e 948 }
949 /* FALL THROUGH */
79072805 950 default:
463ee0b2 951 tmps = SvPV(sv, len);
79072805 952 break;
ff8e2863 953 }
760ac839 954 if (len && (PerlIO_write(fp,tmps,len) == 0 || PerlIO_error(fp)))
a687059c 955 return FALSE;
760ac839 956 return !PerlIO_error(fp);
a687059c 957}
958
79072805 959I32
cea2e8a9 960Perl_my_stat(pTHX)
a687059c 961{
4e35701f 962 djSP;
79072805 963 IO *io;
748a9306 964 GV* tmpgv;
79072805 965
533c011a 966 if (PL_op->op_flags & OPf_REF) {
924508f0 967 EXTEND(SP,1);
748a9306 968 tmpgv = cGVOP->op_gv;
969 do_fstat:
970 io = GvIO(tmpgv);
8990e307 971 if (io && IoIFP(io)) {
3280af22 972 PL_statgv = tmpgv;
973 sv_setpv(PL_statname,"");
974 PL_laststype = OP_STAT;
975 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
a687059c 976 }
977 else {
3280af22 978 if (tmpgv == PL_defgv)
979 return PL_laststatval;
599cee73 980 if (ckWARN(WARN_UNOPENED))
cea2e8a9 981 Perl_warner(aTHX_ WARN_UNOPENED, "Stat on unopened file <%s>",
748a9306 982 GvENAME(tmpgv));
3280af22 983 PL_statgv = Nullgv;
984 sv_setpv(PL_statname,"");
985 return (PL_laststatval = -1);
a687059c 986 }
987 }
988 else {
748a9306 989 SV* sv = POPs;
4b74e3fb 990 char *s;
2d8e6c8d 991 STRLEN n_a;
79072805 992 PUTBACK;
748a9306 993 if (SvTYPE(sv) == SVt_PVGV) {
994 tmpgv = (GV*)sv;
995 goto do_fstat;
996 }
997 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
998 tmpgv = (GV*)SvRV(sv);
999 goto do_fstat;
1000 }
1001
2d8e6c8d 1002 s = SvPV(sv, n_a);
3280af22 1003 PL_statgv = Nullgv;
1004 sv_setpv(PL_statname, s);
1005 PL_laststype = OP_STAT;
1006 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
599cee73 1007 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
cea2e8a9 1008 Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "stat");
3280af22 1009 return PL_laststatval;
a687059c 1010 }
1011}
1012
79072805 1013I32
cea2e8a9 1014Perl_my_lstat(pTHX)
c623bd54 1015{
4e35701f 1016 djSP;
79072805 1017 SV *sv;
2d8e6c8d 1018 STRLEN n_a;
533c011a 1019 if (PL_op->op_flags & OPf_REF) {
924508f0 1020 EXTEND(SP,1);
3280af22 1021 if (cGVOP->op_gv == PL_defgv) {
1022 if (PL_laststype != OP_LSTAT)
cea2e8a9 1023 Perl_croak(aTHX_ "The stat preceding -l _ wasn't an lstat");
3280af22 1024 return PL_laststatval;
fe14fcc3 1025 }
cea2e8a9 1026 Perl_croak(aTHX_ "You can't use -l on a filehandle");
fe14fcc3 1027 }
c623bd54 1028
3280af22 1029 PL_laststype = OP_LSTAT;
1030 PL_statgv = Nullgv;
79072805 1031 sv = POPs;
1032 PUTBACK;
2d8e6c8d 1033 sv_setpv(PL_statname,SvPV(sv, n_a));
2d8e6c8d 1034 PL_laststatval = PerlLIO_lstat(SvPV(sv, n_a),&PL_statcache);
2d8e6c8d 1035 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(SvPV(sv, n_a), '\n'))
cea2e8a9 1036 Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "lstat");
3280af22 1037 return PL_laststatval;
c623bd54 1038}
1039
a687059c 1040bool
864dbfa3 1041Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
a687059c 1042{
a687059c 1043 register char **a;
a687059c 1044 char *tmps;
2d8e6c8d 1045 STRLEN n_a;
a687059c 1046
79072805 1047 if (sp > mark) {
11343788 1048 dTHR;
3280af22 1049 New(401,PL_Argv, sp - mark + 1, char*);
1050 a = PL_Argv;
79072805 1051 while (++mark <= sp) {
1052 if (*mark)
2d8e6c8d 1053 *a++ = SvPVx(*mark, n_a);
a687059c 1054 else
1055 *a++ = "";
1056 }
1057 *a = Nullch;
3280af22 1058 if (*PL_Argv[0] != '/') /* will execvp use PATH? */
79072805 1059 TAINT_ENV(); /* testing IFS here is overkill, probably */
2d8e6c8d 1060 if (really && *(tmps = SvPV(really, n_a)))
3280af22 1061 PerlProc_execvp(tmps,PL_Argv);
a687059c 1062 else
3280af22 1063 PerlProc_execvp(PL_Argv[0],PL_Argv);
599cee73 1064 if (ckWARN(WARN_EXEC))
cea2e8a9 1065 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
599cee73 1066 PL_Argv[0], Strerror(errno));
a687059c 1067 }
bee1dbe2 1068 do_execfree();
a687059c 1069 return FALSE;
1070}
1071
fe14fcc3 1072void
864dbfa3 1073Perl_do_execfree(pTHX)
ff8e2863 1074{
3280af22 1075 if (PL_Argv) {
1076 Safefree(PL_Argv);
1077 PL_Argv = Null(char **);
ff8e2863 1078 }
3280af22 1079 if (PL_Cmd) {
1080 Safefree(PL_Cmd);
1081 PL_Cmd = Nullch;
ff8e2863 1082 }
1083}
1084
4d2c4e07 1085#if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC)
760ac839 1086
a687059c 1087bool
864dbfa3 1088Perl_do_exec(pTHX_ char *cmd)
a687059c 1089{
e446cec8 1090 return do_exec3(cmd,0,0);
1091}
1092
1093bool
864dbfa3 1094Perl_do_exec3(pTHX_ char *cmd, int fd, int do_report)
e446cec8 1095{
a687059c 1096 register char **a;
1097 register char *s;
a687059c 1098 char flags[10];
1099
748a9306 1100 while (*cmd && isSPACE(*cmd))
1101 cmd++;
1102
a687059c 1103 /* save an extra exec if possible */
1104
bf38876a 1105#ifdef CSH
3280af22 1106 if (strnEQ(cmd,PL_cshname,PL_cshlen) && strnEQ(cmd+PL_cshlen," -c",3)) {
a687059c 1107 strcpy(flags,"-c");
3280af22 1108 s = cmd+PL_cshlen+3;
a687059c 1109 if (*s == 'f') {
1110 s++;
1111 strcat(flags,"f");
1112 }
1113 if (*s == ' ')
1114 s++;
1115 if (*s++ == '\'') {
1116 char *ncmd = s;
1117
1118 while (*s)
1119 s++;
1120 if (s[-1] == '\n')
1121 *--s = '\0';
1122 if (s[-1] == '\'') {
1123 *--s = '\0';
3280af22 1124 PerlProc_execl(PL_cshname,"csh", flags,ncmd,(char*)0);
a687059c 1125 *s = '\'';
1126 return FALSE;
1127 }
1128 }
1129 }
bf38876a 1130#endif /* CSH */
a687059c 1131
1132 /* see if there are shell metacharacters in it */
1133
748a9306 1134 if (*cmd == '.' && isSPACE(cmd[1]))
1135 goto doshell;
1136
1137 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1138 goto doshell;
1139
99b89507 1140 for (s = cmd; *s && isALPHA(*s); s++) ; /* catch VAR=val gizmo */
63f2c1e1 1141 if (*s == '=')
1142 goto doshell;
748a9306 1143
a687059c 1144 for (s = cmd; *s; s++) {
93a17b20 1145 if (*s != ' ' && !isALPHA(*s) && strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
a687059c 1146 if (*s == '\n' && !s[1]) {
1147 *s = '\0';
1148 break;
1149 }
603a98b0 1150 /* handle the 2>&1 construct at the end */
1151 if (*s == '>' && s[1] == '&' && s[2] == '1'
1152 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1153 && (!s[3] || isSPACE(s[3])))
1154 {
1155 char *t = s + 3;
1156
1157 while (*t && isSPACE(*t))
1158 ++t;
1159 if (!*t && (dup2(1,2) != -1)) {
1160 s[-2] = '\0';
1161 break;
1162 }
1163 }
a687059c 1164 doshell:
3280af22 1165 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char*)0);
a687059c 1166 return FALSE;
1167 }
1168 }
748a9306 1169
3280af22 1170 New(402,PL_Argv, (s - cmd) / 2 + 2, char*);
1171 PL_Cmd = savepvn(cmd, s-cmd);
1172 a = PL_Argv;
1173 for (s = PL_Cmd; *s;) {
99b89507 1174 while (*s && isSPACE(*s)) s++;
a687059c 1175 if (*s)
1176 *(a++) = s;
99b89507 1177 while (*s && !isSPACE(*s)) s++;
a687059c 1178 if (*s)
1179 *s++ = '\0';
1180 }
1181 *a = Nullch;
3280af22 1182 if (PL_Argv[0]) {
1183 PerlProc_execvp(PL_Argv[0],PL_Argv);
b1248f16 1184 if (errno == ENOEXEC) { /* for system V NIH syndrome */
ff8e2863 1185 do_execfree();
a687059c 1186 goto doshell;
b1248f16 1187 }
d008e5eb 1188 {
1189 dTHR;
e446cec8 1190 int e = errno;
1191
d008e5eb 1192 if (ckWARN(WARN_EXEC))
cea2e8a9 1193 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
d008e5eb 1194 PL_Argv[0], Strerror(errno));
e446cec8 1195 if (do_report) {
1196 PerlLIO_write(fd, (void*)&e, sizeof(int));
1197 PerlLIO_close(fd);
1198 }
d008e5eb 1199 }
a687059c 1200 }
ff8e2863 1201 do_execfree();
a687059c 1202 return FALSE;
1203}
1204
6890e559 1205#endif /* OS2 || WIN32 */
760ac839 1206
79072805 1207I32
864dbfa3 1208Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
a687059c 1209{
11343788 1210 dTHR;
79072805 1211 register I32 val;
1212 register I32 val2;
1213 register I32 tot = 0;
20408e3c 1214 char *what;
a687059c 1215 char *s;
79072805 1216 SV **oldmark = mark;
2d8e6c8d 1217 STRLEN n_a;
a687059c 1218
20408e3c 1219#define APPLY_TAINT_PROPER() \
3280af22 1220 STMT_START { \
17406bd6 1221 if (PL_tainted) { TAINT_PROPER(what); } \
873ef191 1222 } STMT_END
20408e3c 1223
1224 /* This is a first heuristic; it doesn't catch tainting magic. */
3280af22 1225 if (PL_tainting) {
463ee0b2 1226 while (++mark <= sp) {
bbce6d69 1227 if (SvTAINTED(*mark)) {
1228 TAINT;
1229 break;
1230 }
463ee0b2 1231 }
1232 mark = oldmark;
1233 }
a687059c 1234 switch (type) {
79072805 1235 case OP_CHMOD:
20408e3c 1236 what = "chmod";
1237 APPLY_TAINT_PROPER();
79072805 1238 if (++mark <= sp) {
463ee0b2 1239 val = SvIVx(*mark);
20408e3c 1240 APPLY_TAINT_PROPER();
1241 tot = sp - mark;
79072805 1242 while (++mark <= sp) {
2d8e6c8d 1243 char *name = SvPVx(*mark, n_a);
20408e3c 1244 APPLY_TAINT_PROPER();
1245 if (PerlLIO_chmod(name, val))
a687059c 1246 tot--;
1247 }
1248 }
1249 break;
fe14fcc3 1250#ifdef HAS_CHOWN
79072805 1251 case OP_CHOWN:
20408e3c 1252 what = "chown";
1253 APPLY_TAINT_PROPER();
79072805 1254 if (sp - mark > 2) {
463ee0b2 1255 val = SvIVx(*++mark);
1256 val2 = SvIVx(*++mark);
20408e3c 1257 APPLY_TAINT_PROPER();
a0d0e21e 1258 tot = sp - mark;
79072805 1259 while (++mark <= sp) {
2d8e6c8d 1260 char *name = SvPVx(*mark, n_a);
20408e3c 1261 APPLY_TAINT_PROPER();
36660982 1262 if (PerlLIO_chown(name, val, val2))
a687059c 1263 tot--;
1264 }
1265 }
1266 break;
b1248f16 1267#endif
dd64f1c3 1268/*
1269XXX Should we make lchown() directly available from perl?
1270For now, we'll let Configure test for HAS_LCHOWN, but do
1271nothing in the core.
1272 --AD 5/1998
1273*/
fe14fcc3 1274#ifdef HAS_KILL
79072805 1275 case OP_KILL:
20408e3c 1276 what = "kill";
1277 APPLY_TAINT_PROPER();
55497cff 1278 if (mark == sp)
1279 break;
2d8e6c8d 1280 s = SvPVx(*++mark, n_a);
79072805 1281 if (isUPPER(*s)) {
1282 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1283 s += 3;
1284 if (!(val = whichsig(s)))
cea2e8a9 1285 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
79072805 1286 }
1287 else
463ee0b2 1288 val = SvIVx(*mark);
20408e3c 1289 APPLY_TAINT_PROPER();
1290 tot = sp - mark;
3595fcef 1291#ifdef VMS
1292 /* kill() doesn't do process groups (job trees?) under VMS */
1293 if (val < 0) val = -val;
1294 if (val == SIGKILL) {
1295# include <starlet.h>
1296 /* Use native sys$delprc() to insure that target process is
1297 * deleted; supervisor-mode images don't pay attention to
1298 * CRTL's emulation of Unix-style signals and kill()
1299 */
1300 while (++mark <= sp) {
1301 I32 proc = SvIVx(*mark);
1302 register unsigned long int __vmssts;
20408e3c 1303 APPLY_TAINT_PROPER();
3595fcef 1304 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1305 tot--;
1306 switch (__vmssts) {
1307 case SS$_NONEXPR:
1308 case SS$_NOSUCHNODE:
1309 SETERRNO(ESRCH,__vmssts);
1310 break;
1311 case SS$_NOPRIV:
1312 SETERRNO(EPERM,__vmssts);
1313 break;
1314 default:
1315 SETERRNO(EVMSERR,__vmssts);
1316 }
1317 }
1318 }
1319 break;
1320 }
1321#endif
79072805 1322 if (val < 0) {
1323 val = -val;
1324 while (++mark <= sp) {
463ee0b2 1325 I32 proc = SvIVx(*mark);
20408e3c 1326 APPLY_TAINT_PROPER();
fe14fcc3 1327#ifdef HAS_KILLPG
3028581b 1328 if (PerlProc_killpg(proc,val)) /* BSD */
a687059c 1329#else
3028581b 1330 if (PerlProc_kill(-proc,val)) /* SYSV */
a687059c 1331#endif
79072805 1332 tot--;
a687059c 1333 }
79072805 1334 }
1335 else {
1336 while (++mark <= sp) {
20408e3c 1337 I32 proc = SvIVx(*mark);
1338 APPLY_TAINT_PROPER();
1339 if (PerlProc_kill(proc, val))
79072805 1340 tot--;
a687059c 1341 }
1342 }
1343 break;
b1248f16 1344#endif
79072805 1345 case OP_UNLINK:
20408e3c 1346 what = "unlink";
1347 APPLY_TAINT_PROPER();
79072805 1348 tot = sp - mark;
1349 while (++mark <= sp) {
2d8e6c8d 1350 s = SvPVx(*mark, n_a);
20408e3c 1351 APPLY_TAINT_PROPER();
3280af22 1352 if (PL_euid || PL_unsafe) {
a687059c 1353 if (UNLINK(s))
1354 tot--;
1355 }
1356 else { /* don't let root wipe out directories without -U */
3280af22 1357 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
a687059c 1358 tot--;
1359 else {
1360 if (UNLINK(s))
1361 tot--;
1362 }
1363 }
1364 }
1365 break;
a0d0e21e 1366#ifdef HAS_UTIME
79072805 1367 case OP_UTIME:
20408e3c 1368 what = "utime";
1369 APPLY_TAINT_PROPER();
79072805 1370 if (sp - mark > 2) {
748a9306 1371#if defined(I_UTIME) || defined(VMS)
663a0e37 1372 struct utimbuf utbuf;
1373#else
a687059c 1374 struct {
dd2821f6 1375 Time_t actime;
1376 Time_t modtime;
a687059c 1377 } utbuf;
663a0e37 1378#endif
a687059c 1379
afd9f252 1380 Zero(&utbuf, sizeof utbuf, char);
517844ec 1381#ifdef BIG_TIME
dd2821f6 1382 utbuf.actime = (Time_t)SvNVx(*++mark); /* time accessed */
1383 utbuf.modtime = (Time_t)SvNVx(*++mark); /* time modified */
517844ec 1384#else
dd2821f6 1385 utbuf.actime = (Time_t)SvIVx(*++mark); /* time accessed */
1386 utbuf.modtime = (Time_t)SvIVx(*++mark); /* time modified */
517844ec 1387#endif
20408e3c 1388 APPLY_TAINT_PROPER();
79072805 1389 tot = sp - mark;
1390 while (++mark <= sp) {
2d8e6c8d 1391 char *name = SvPVx(*mark, n_a);
20408e3c 1392 APPLY_TAINT_PROPER();
1393 if (PerlLIO_utime(name, &utbuf))
a687059c 1394 tot--;
1395 }
a687059c 1396 }
1397 else
79072805 1398 tot = 0;
a687059c 1399 break;
a0d0e21e 1400#endif
a687059c 1401 }
1402 return tot;
20408e3c 1403
20408e3c 1404#undef APPLY_TAINT_PROPER
a687059c 1405}
1406
1407/* Do the permissions allow some operation? Assumes statcache already set. */
a0d0e21e 1408#ifndef VMS /* VMS' cando is in vms.c */
79072805 1409I32
864dbfa3 1410Perl_cando(pTHX_ I32 bit, I32 effective, register struct stat *statbufp)
a687059c 1411{
bee1dbe2 1412#ifdef DOSISH
fe14fcc3 1413 /* [Comments and code from Len Reed]
1414 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1415 * to write-protected files. The execute permission bit is set
1416 * by the Miscrosoft C library stat() function for the following:
1417 * .exe files
1418 * .com files
1419 * .bat files
1420 * directories
1421 * All files and directories are readable.
1422 * Directories and special files, e.g. "CON", cannot be
1423 * write-protected.
1424 * [Comment by Tom Dinger -- a directory can have the write-protect
1425 * bit set in the file system, but DOS permits changes to
1426 * the directory anyway. In addition, all bets are off
1427 * here for networked software, such as Novell and
1428 * Sun's PC-NFS.]
1429 */
1430
bee1dbe2 1431 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1432 * too so it will actually look into the files for magic numbers
1433 */
fe14fcc3 1434 return (bit & statbufp->st_mode) ? TRUE : FALSE;
1435
55497cff 1436#else /* ! DOSISH */
3280af22 1437 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
c623bd54 1438 if (bit == S_IXUSR) {
1439 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
a687059c 1440 return TRUE;
1441 }
1442 else
1443 return TRUE; /* root reads and writes anything */
1444 return FALSE;
1445 }
3280af22 1446 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
a687059c 1447 if (statbufp->st_mode & bit)
1448 return TRUE; /* ok as "user" */
1449 }
79072805 1450 else if (ingroup((I32)statbufp->st_gid,effective)) {
a687059c 1451 if (statbufp->st_mode & bit >> 3)
1452 return TRUE; /* ok as "group" */
1453 }
1454 else if (statbufp->st_mode & bit >> 6)
1455 return TRUE; /* ok as "other" */
1456 return FALSE;
55497cff 1457#endif /* ! DOSISH */
a687059c 1458}
a0d0e21e 1459#endif /* ! VMS */
a687059c 1460
79072805 1461I32
864dbfa3 1462Perl_ingroup(pTHX_ I32 testgid, I32 effective)
a687059c 1463{
3280af22 1464 if (testgid == (effective ? PL_egid : PL_gid))
a687059c 1465 return TRUE;
fe14fcc3 1466#ifdef HAS_GETGROUPS
a687059c 1467#ifndef NGROUPS
1468#define NGROUPS 32
1469#endif
1470 {
a0d0e21e 1471 Groups_t gary[NGROUPS];
79072805 1472 I32 anum;
a687059c 1473
1474 anum = getgroups(NGROUPS,gary);
1475 while (--anum >= 0)
1476 if (gary[anum] == testgid)
1477 return TRUE;
1478 }
1479#endif
1480 return FALSE;
1481}
c2ab57d4 1482
fe14fcc3 1483#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 1484
79072805 1485I32
864dbfa3 1486Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1487{
11343788 1488 dTHR;
c2ab57d4 1489 key_t key;
79072805 1490 I32 n, flags;
c2ab57d4 1491
463ee0b2 1492 key = (key_t)SvNVx(*++mark);
1493 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark);
1494 flags = SvIVx(*++mark);
748a9306 1495 SETERRNO(0,0);
c2ab57d4 1496 switch (optype)
1497 {
fe14fcc3 1498#ifdef HAS_MSG
79072805 1499 case OP_MSGGET:
c2ab57d4 1500 return msgget(key, flags);
e5d73d77 1501#endif
fe14fcc3 1502#ifdef HAS_SEM
79072805 1503 case OP_SEMGET:
c2ab57d4 1504 return semget(key, n, flags);
e5d73d77 1505#endif
fe14fcc3 1506#ifdef HAS_SHM
79072805 1507 case OP_SHMGET:
c2ab57d4 1508 return shmget(key, n, flags);
e5d73d77 1509#endif
fe14fcc3 1510#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1511 default:
cea2e8a9 1512 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1513#endif
c2ab57d4 1514 }
1515 return -1; /* should never happen */
1516}
1517
79072805 1518I32
864dbfa3 1519Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1520{
11343788 1521 dTHR;
79072805 1522 SV *astr;
c2ab57d4 1523 char *a;
a0d0e21e 1524 I32 id, n, cmd, infosize, getinfo;
1525 I32 ret = -1;
c2ab57d4 1526
463ee0b2 1527 id = SvIVx(*++mark);
1528 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
1529 cmd = SvIVx(*++mark);
79072805 1530 astr = *++mark;
c2ab57d4 1531 infosize = 0;
1532 getinfo = (cmd == IPC_STAT);
1533
1534 switch (optype)
1535 {
fe14fcc3 1536#ifdef HAS_MSG
79072805 1537 case OP_MSGCTL:
c2ab57d4 1538 if (cmd == IPC_STAT || cmd == IPC_SET)
1539 infosize = sizeof(struct msqid_ds);
1540 break;
e5d73d77 1541#endif
fe14fcc3 1542#ifdef HAS_SHM
79072805 1543 case OP_SHMCTL:
c2ab57d4 1544 if (cmd == IPC_STAT || cmd == IPC_SET)
1545 infosize = sizeof(struct shmid_ds);
1546 break;
e5d73d77 1547#endif
fe14fcc3 1548#ifdef HAS_SEM
79072805 1549 case OP_SEMCTL:
39398f3f 1550#ifdef Semctl
c2ab57d4 1551 if (cmd == IPC_STAT || cmd == IPC_SET)
1552 infosize = sizeof(struct semid_ds);
1553 else if (cmd == GETALL || cmd == SETALL)
1554 {
8e591e46 1555 struct semid_ds semds;
bd89102f 1556 union semun semun;
1557
84902520 1558 semun.buf = &semds;
c2ab57d4 1559 getinfo = (cmd == GETALL);
9b89d93d 1560 if (Semctl(id, 0, IPC_STAT, semun) == -1)
1561 return -1;
6e21c824 1562 infosize = semds.sem_nsems * sizeof(short);
1563 /* "short" is technically wrong but much more portable
1564 than guessing about u_?short(_t)? */
c2ab57d4 1565 }
39398f3f 1566#else
cea2e8a9 1567 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1568#endif
c2ab57d4 1569 break;
e5d73d77 1570#endif
fe14fcc3 1571#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1572 default:
cea2e8a9 1573 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1574#endif
c2ab57d4 1575 }
1576
1577 if (infosize)
1578 {
a0d0e21e 1579 STRLEN len;
c2ab57d4 1580 if (getinfo)
1581 {
a0d0e21e 1582 SvPV_force(astr, len);
1583 a = SvGROW(astr, infosize+1);
c2ab57d4 1584 }
1585 else
1586 {
463ee0b2 1587 a = SvPV(astr, len);
1588 if (len != infosize)
cea2e8a9 1589 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
4ec43091 1590 PL_op_desc[optype],
1591 (unsigned long)len,
1592 (long)infosize);
c2ab57d4 1593 }
1594 }
1595 else
1596 {
c030ccd9 1597 IV i = SvIV(astr);
c2ab57d4 1598 a = (char *)i; /* ouch */
1599 }
748a9306 1600 SETERRNO(0,0);
c2ab57d4 1601 switch (optype)
1602 {
fe14fcc3 1603#ifdef HAS_MSG
79072805 1604 case OP_MSGCTL:
bee1dbe2 1605 ret = msgctl(id, cmd, (struct msqid_ds *)a);
c2ab57d4 1606 break;
e5d73d77 1607#endif
fe14fcc3 1608#ifdef HAS_SEM
bd89102f 1609 case OP_SEMCTL: {
39398f3f 1610#ifdef Semctl
bd89102f 1611 union semun unsemds;
1612
1613 unsemds.buf = (struct semid_ds *)a;
1614 ret = Semctl(id, n, cmd, unsemds);
39398f3f 1615#else
cea2e8a9 1616 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1617#endif
bd89102f 1618 }
c2ab57d4 1619 break;
e5d73d77 1620#endif
fe14fcc3 1621#ifdef HAS_SHM
79072805 1622 case OP_SHMCTL:
bee1dbe2 1623 ret = shmctl(id, cmd, (struct shmid_ds *)a);
c2ab57d4 1624 break;
e5d73d77 1625#endif
c2ab57d4 1626 }
1627 if (getinfo && ret >= 0) {
79072805 1628 SvCUR_set(astr, infosize);
1629 *SvEND(astr) = '\0';
a0d0e21e 1630 SvSETMAGIC(astr);
c2ab57d4 1631 }
1632 return ret;
1633}
1634
79072805 1635I32
864dbfa3 1636Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 1637{
fe14fcc3 1638#ifdef HAS_MSG
11343788 1639 dTHR;
79072805 1640 SV *mstr;
c2ab57d4 1641 char *mbuf;
79072805 1642 I32 id, msize, flags;
463ee0b2 1643 STRLEN len;
c2ab57d4 1644
463ee0b2 1645 id = SvIVx(*++mark);
79072805 1646 mstr = *++mark;
463ee0b2 1647 flags = SvIVx(*++mark);
1648 mbuf = SvPV(mstr, len);
1649 if ((msize = len - sizeof(long)) < 0)
cea2e8a9 1650 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 1651 SETERRNO(0,0);
bee1dbe2 1652 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
e5d73d77 1653#else
cea2e8a9 1654 Perl_croak(aTHX_ "msgsnd not implemented");
e5d73d77 1655#endif
c2ab57d4 1656}
1657
79072805 1658I32
864dbfa3 1659Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 1660{
fe14fcc3 1661#ifdef HAS_MSG
11343788 1662 dTHR;
79072805 1663 SV *mstr;
c2ab57d4 1664 char *mbuf;
1665 long mtype;
79072805 1666 I32 id, msize, flags, ret;
463ee0b2 1667 STRLEN len;
79072805 1668
463ee0b2 1669 id = SvIVx(*++mark);
79072805 1670 mstr = *++mark;
463ee0b2 1671 msize = SvIVx(*++mark);
1672 mtype = (long)SvIVx(*++mark);
1673 flags = SvIVx(*++mark);
a0d0e21e 1674 SvPV_force(mstr, len);
1675 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
1676
748a9306 1677 SETERRNO(0,0);
bee1dbe2 1678 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
c2ab57d4 1679 if (ret >= 0) {
79072805 1680 SvCUR_set(mstr, sizeof(long)+ret);
1681 *SvEND(mstr) = '\0';
c2ab57d4 1682 }
1683 return ret;
e5d73d77 1684#else
cea2e8a9 1685 Perl_croak(aTHX_ "msgrcv not implemented");
e5d73d77 1686#endif
c2ab57d4 1687}
1688
79072805 1689I32
864dbfa3 1690Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 1691{
fe14fcc3 1692#ifdef HAS_SEM
11343788 1693 dTHR;
79072805 1694 SV *opstr;
c2ab57d4 1695 char *opbuf;
463ee0b2 1696 I32 id;
1697 STRLEN opsize;
c2ab57d4 1698
463ee0b2 1699 id = SvIVx(*++mark);
79072805 1700 opstr = *++mark;
463ee0b2 1701 opbuf = SvPV(opstr, opsize);
c2ab57d4 1702 if (opsize < sizeof(struct sembuf)
1703 || (opsize % sizeof(struct sembuf)) != 0) {
748a9306 1704 SETERRNO(EINVAL,LIB$_INVARG);
c2ab57d4 1705 return -1;
1706 }
748a9306 1707 SETERRNO(0,0);
6e21c824 1708 return semop(id, (struct sembuf *)opbuf, opsize/sizeof(struct sembuf));
e5d73d77 1709#else
cea2e8a9 1710 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 1711#endif
c2ab57d4 1712}
1713
79072805 1714I32
864dbfa3 1715Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1716{
fe14fcc3 1717#ifdef HAS_SHM
11343788 1718 dTHR;
79072805 1719 SV *mstr;
c2ab57d4 1720 char *mbuf, *shm;
79072805 1721 I32 id, mpos, msize;
463ee0b2 1722 STRLEN len;
c2ab57d4 1723 struct shmid_ds shmds;
c2ab57d4 1724
463ee0b2 1725 id = SvIVx(*++mark);
79072805 1726 mstr = *++mark;
463ee0b2 1727 mpos = SvIVx(*++mark);
1728 msize = SvIVx(*++mark);
748a9306 1729 SETERRNO(0,0);
c2ab57d4 1730 if (shmctl(id, IPC_STAT, &shmds) == -1)
1731 return -1;
1732 if (mpos < 0 || msize < 0 || mpos + msize > shmds.shm_segsz) {
748a9306 1733 SETERRNO(EFAULT,SS$_ACCVIO); /* can't do as caller requested */
c2ab57d4 1734 return -1;
1735 }
8ac85365 1736 shm = (char *)shmat(id, (char*)NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
c2ab57d4 1737 if (shm == (char *)-1) /* I hate System V IPC, I really do */
1738 return -1;
79072805 1739 if (optype == OP_SHMREAD) {
a0d0e21e 1740 SvPV_force(mstr, len);
1741 mbuf = SvGROW(mstr, msize+1);
1742
bee1dbe2 1743 Copy(shm + mpos, mbuf, msize, char);
79072805 1744 SvCUR_set(mstr, msize);
1745 *SvEND(mstr) = '\0';
a0d0e21e 1746 SvSETMAGIC(mstr);
c2ab57d4 1747 }
1748 else {
79072805 1749 I32 n;
c2ab57d4 1750
a0d0e21e 1751 mbuf = SvPV(mstr, len);
463ee0b2 1752 if ((n = len) > msize)
c2ab57d4 1753 n = msize;
bee1dbe2 1754 Copy(mbuf, shm + mpos, n, char);
c2ab57d4 1755 if (n < msize)
bee1dbe2 1756 memzero(shm + mpos + n, msize - n);
c2ab57d4 1757 }
1758 return shmdt(shm);
e5d73d77 1759#else
cea2e8a9 1760 Perl_croak(aTHX_ "shm I/O not implemented");
e5d73d77 1761#endif
c2ab57d4 1762}
1763
fe14fcc3 1764#endif /* SYSV IPC */
4e35701f 1765