remove spurious newSTATEOP() that causes goto to enter one too many
[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 }
4d61ec05 588 else {
589 dTHR;
590 if (ckWARN_d(WARN_INPLACE)) {
591 if (!S_ISREG(PL_statbuf.st_mode))
592 Perl_warner(aTHX_ WARN_INPLACE,
593 "Can't do inplace edit: %s is not a regular file",
594 PL_oldname );
595 else
596 Perl_warner(aTHX_ WARN_INPLACE, "Can't open %s: %s\n",
597 PL_oldname, Strerror(errno));
598 }
599 }
a687059c 600 }
3280af22 601 if (PL_inplace) {
602 (void)do_close(PL_argvoutgv,FALSE);
4633a7c4 603 setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO));
a687059c 604 }
605 return Nullfp;
606}
607
fe14fcc3 608#ifdef HAS_PIPE
afd9f252 609void
864dbfa3 610Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv)
afd9f252 611{
79072805 612 register IO *rstio;
613 register IO *wstio;
afd9f252 614 int fd[2];
615
79072805 616 if (!rgv)
afd9f252 617 goto badexit;
79072805 618 if (!wgv)
afd9f252 619 goto badexit;
620
a0d0e21e 621 rstio = GvIOn(rgv);
622 wstio = GvIOn(wgv);
afd9f252 623
a0d0e21e 624 if (IoIFP(rstio))
79072805 625 do_close(rgv,FALSE);
a0d0e21e 626 if (IoIFP(wstio))
79072805 627 do_close(wgv,FALSE);
afd9f252 628
3028581b 629 if (PerlProc_pipe(fd) < 0)
afd9f252 630 goto badexit;
760ac839 631 IoIFP(rstio) = PerlIO_fdopen(fd[0], "r");
632 IoOFP(wstio) = PerlIO_fdopen(fd[1], "w");
8990e307 633 IoIFP(wstio) = IoOFP(wstio);
634 IoTYPE(rstio) = '<';
635 IoTYPE(wstio) = '>';
636 if (!IoIFP(rstio) || !IoOFP(wstio)) {
760ac839 637 if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
3028581b 638 else PerlLIO_close(fd[0]);
760ac839 639 if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
3028581b 640 else PerlLIO_close(fd[1]);
fe14fcc3 641 goto badexit;
642 }
afd9f252 643
3280af22 644 sv_setsv(sv,&PL_sv_yes);
afd9f252 645 return;
646
647badexit:
3280af22 648 sv_setsv(sv,&PL_sv_undef);
afd9f252 649 return;
650}
b1248f16 651#endif
afd9f252 652
517844ec 653/* explicit renamed to avoid C++ conflict -- kja */
a687059c 654bool
864dbfa3 655Perl_do_close(pTHX_ GV *gv, bool not_implicit)
a687059c 656{
1193dd27 657 bool retval;
658 IO *io;
a687059c 659
79072805 660 if (!gv)
3280af22 661 gv = PL_argvgv;
a0d0e21e 662 if (!gv || SvTYPE(gv) != SVt_PVGV) {
1d2dff63 663 if (not_implicit)
664 SETERRNO(EBADF,SS$_IVCHAN);
c2ab57d4 665 return FALSE;
99b89507 666 }
79072805 667 io = GvIO(gv);
668 if (!io) { /* never opened */
1d2dff63 669 if (not_implicit) {
d008e5eb 670 dTHR;
599cee73 671 if (ckWARN(WARN_UNOPENED))
cea2e8a9 672 Perl_warner(aTHX_ WARN_UNOPENED,
599cee73 673 "Close on unopened file <%s>",GvENAME(gv));
1d2dff63 674 SETERRNO(EBADF,SS$_IVCHAN);
675 }
a687059c 676 return FALSE;
677 }
1193dd27 678 retval = io_close(io);
517844ec 679 if (not_implicit) {
1193dd27 680 IoLINES(io) = 0;
681 IoPAGE(io) = 0;
682 IoLINES_LEFT(io) = IoPAGE_LEN(io);
683 }
684 IoTYPE(io) = ' ';
685 return retval;
686}
687
688bool
864dbfa3 689Perl_io_close(pTHX_ IO *io)
1193dd27 690{
691 bool retval = FALSE;
692 int status;
693
8990e307 694 if (IoIFP(io)) {
695 if (IoTYPE(io) == '|') {
3028581b 696 status = PerlProc_pclose(IoIFP(io));
f86702cc 697 STATUS_NATIVE_SET(status);
1e422769 698 retval = (STATUS_POSIX == 0);
a687059c 699 }
8990e307 700 else if (IoTYPE(io) == '-')
a687059c 701 retval = TRUE;
702 else {
8990e307 703 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */
760ac839 704 retval = (PerlIO_close(IoOFP(io)) != EOF);
705 PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */
c2ab57d4 706 }
707 else
760ac839 708 retval = (PerlIO_close(IoIFP(io)) != EOF);
a687059c 709 }
8990e307 710 IoOFP(io) = IoIFP(io) = Nullfp;
79072805 711 }
20408e3c 712 else {
713 SETERRNO(EBADF,SS$_IVCHAN);
714 }
1193dd27 715
a687059c 716 return retval;
717}
718
719bool
864dbfa3 720Perl_do_eof(pTHX_ GV *gv)
a687059c 721{
11343788 722 dTHR;
79072805 723 register IO *io;
a687059c 724 int ch;
725
79072805 726 io = GvIO(gv);
a687059c 727
79072805 728 if (!io)
a687059c 729 return TRUE;
af8c498a 730 else if (ckWARN(WARN_IO)
731 && (IoTYPE(io) == '>' || IoIFP(io) == PerlIO_stdout()
732 || IoIFP(io) == PerlIO_stderr()))
733 {
734 SV* sv = sv_newmortal();
735 gv_efullname3(sv, gv, Nullch);
736 Perl_warner(aTHX_ WARN_IO, "Filehandle %s opened only for output",
737 SvPV_nolen(sv));
738 }
a687059c 739
8990e307 740 while (IoIFP(io)) {
a687059c 741
760ac839 742 if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
743 if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
744 return FALSE; /* this is the most usual case */
745 }
a687059c 746
760ac839 747 ch = PerlIO_getc(IoIFP(io));
a687059c 748 if (ch != EOF) {
760ac839 749 (void)PerlIO_ungetc(IoIFP(io),ch);
a687059c 750 return FALSE;
751 }
760ac839 752 if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
753 if (PerlIO_get_cnt(IoIFP(io)) < -1)
754 PerlIO_set_cnt(IoIFP(io),-1);
755 }
533c011a 756 if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
3280af22 757 if (!nextargv(PL_argvgv)) /* get another fp handy */
a687059c 758 return TRUE;
759 }
760 else
761 return TRUE; /* normal fp, definitely end of file */
762 }
763 return TRUE;
764}
765
5ff3f7a4 766Off_t
864dbfa3 767Perl_do_tell(pTHX_ GV *gv)
a687059c 768{
79072805 769 register IO *io;
96e4d5b1 770 register PerlIO *fp;
a687059c 771
96e4d5b1 772 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 773#ifdef ULTRIX_STDIO_BOTCH
96e4d5b1 774 if (PerlIO_eof(fp))
775 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 776#endif
8903cb82 777 return PerlIO_tell(fp);
96e4d5b1 778 }
d008e5eb 779 {
780 dTHR;
781 if (ckWARN(WARN_UNOPENED))
cea2e8a9 782 Perl_warner(aTHX_ WARN_UNOPENED, "tell() on unopened file");
d008e5eb 783 }
748a9306 784 SETERRNO(EBADF,RMS$_IFI);
5ff3f7a4 785 return (Off_t)-1;
a687059c 786}
787
788bool
864dbfa3 789Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence)
a687059c 790{
79072805 791 register IO *io;
137443ea 792 register PerlIO *fp;
a687059c 793
137443ea 794 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) {
bee1dbe2 795#ifdef ULTRIX_STDIO_BOTCH
137443ea 796 if (PerlIO_eof(fp))
797 (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */
bee1dbe2 798#endif
8903cb82 799 return PerlIO_seek(fp, pos, whence) >= 0;
137443ea 800 }
d008e5eb 801 {
802 dTHR;
803 if (ckWARN(WARN_UNOPENED))
cea2e8a9 804 Perl_warner(aTHX_ WARN_UNOPENED, "seek() on unopened file");
d008e5eb 805 }
748a9306 806 SETERRNO(EBADF,RMS$_IFI);
a687059c 807 return FALSE;
808}
809
97cc44eb 810Off_t
864dbfa3 811Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence)
8903cb82 812{
813 register IO *io;
814 register PerlIO *fp;
815
816 if (gv && (io = GvIO(gv)) && (fp = IoIFP(io)))
3028581b 817 return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence);
d008e5eb 818 {
819 dTHR;
820 if (ckWARN(WARN_UNOPENED))
cea2e8a9 821 Perl_warner(aTHX_ WARN_UNOPENED, "sysseek() on unopened file");
d008e5eb 822 }
8903cb82 823 SETERRNO(EBADF,RMS$_IFI);
824 return -1L;
825}
826
6ff81951 827int
864dbfa3 828Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int flag)
6ff81951 829{
830 if (flag != TRUE)
cea2e8a9 831 Perl_croak(aTHX_ "panic: unsetting binmode"); /* Not implemented yet */
6ff81951 832#ifdef DOSISH
61ae2fbf 833#if defined(atarist) || defined(__MINT__)
6ff81951 834 if (!PerlIO_flush(fp) && (fp->_flag |= _IOBIN))
835 return 1;
836 else
837 return 0;
838#else
839 if (PerlLIO_setmode(PerlIO_fileno(fp), OP_BINARY) != -1) {
840#if defined(WIN32) && defined(__BORLANDC__)
841 /* The translation mode of the stream is maintained independent
842 * of the translation mode of the fd in the Borland RTL (heavy
843 * digging through their runtime sources reveal). User has to
844 * set the mode explicitly for the stream (though they don't
845 * document this anywhere). GSAR 97-5-24
846 */
847 PerlIO_seek(fp,0L,0);
873ef191 848 ((FILE*)fp)->flags |= _F_BIN;
6ff81951 849#endif
850 return 1;
851 }
852 else
853 return 0;
854#endif
855#else
856#if defined(USEMYBINMODE)
1cab015a 857 if (my_binmode(fp,iotype) != FALSE)
6ff81951 858 return 1;
859 else
860 return 0;
861#else
862 return 1;
863#endif
864#endif
865}
866
a0d0e21e 867#if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
c2ab57d4 868 /* code courtesy of William Kucharski */
fe14fcc3 869#define HAS_CHSIZE
6eb13c3b 870
517844ec 871I32 my_chsize(fd, length)
79072805 872I32 fd; /* file descriptor */
85e6fe83 873Off_t length; /* length to set file to */
6eb13c3b 874{
6eb13c3b 875 struct flock fl;
876 struct stat filebuf;
877
3028581b 878 if (PerlLIO_fstat(fd, &filebuf) < 0)
6eb13c3b 879 return -1;
880
881 if (filebuf.st_size < length) {
882
883 /* extend file length */
884
3028581b 885 if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0)
6eb13c3b 886 return -1;
887
888 /* write a "0" byte */
889
3028581b 890 if ((PerlLIO_write(fd, "", 1)) != 1)
6eb13c3b 891 return -1;
892 }
893 else {
894 /* truncate length */
895
896 fl.l_whence = 0;
897 fl.l_len = 0;
898 fl.l_start = length;
a0d0e21e 899 fl.l_type = F_WRLCK; /* write lock on file space */
6eb13c3b 900
901 /*
a0d0e21e 902 * This relies on the UNDOCUMENTED F_FREESP argument to
6eb13c3b 903 * fcntl(2), which truncates the file so that it ends at the
904 * position indicated by fl.l_start.
905 *
906 * Will minor miracles never cease?
907 */
908
a0d0e21e 909 if (fcntl(fd, F_FREESP, &fl) < 0)
6eb13c3b 910 return -1;
911
912 }
913
914 return 0;
915}
a0d0e21e 916#endif /* F_FREESP */
ff8e2863 917
a687059c 918bool
864dbfa3 919Perl_do_print(pTHX_ register SV *sv, PerlIO *fp)
a687059c 920{
921 register char *tmps;
463ee0b2 922 STRLEN len;
a687059c 923
79072805 924 /* assuming fp is checked earlier */
925 if (!sv)
926 return TRUE;
3280af22 927 if (PL_ofmt) {
8990e307 928 if (SvGMAGICAL(sv))
79072805 929 mg_get(sv);
463ee0b2 930 if (SvIOK(sv) && SvIVX(sv) != 0) {
65202027 931 PerlIO_printf(fp, PL_ofmt, (NV)SvIVX(sv));
760ac839 932 return !PerlIO_error(fp);
79072805 933 }
463ee0b2 934 if ( (SvNOK(sv) && SvNVX(sv) != 0.0)
79072805 935 || (looks_like_number(sv) && sv_2nv(sv) != 0.0) ) {
3280af22 936 PerlIO_printf(fp, PL_ofmt, SvNVX(sv));
760ac839 937 return !PerlIO_error(fp);
79072805 938 }
a687059c 939 }
79072805 940 switch (SvTYPE(sv)) {
941 case SVt_NULL:
d008e5eb 942 {
943 dTHR;
944 if (ckWARN(WARN_UNINITIALIZED))
cea2e8a9 945 Perl_warner(aTHX_ WARN_UNINITIALIZED, PL_warn_uninit);
d008e5eb 946 }
ff8e2863 947 return TRUE;
79072805 948 case SVt_IV:
a0d0e21e 949 if (SvIOK(sv)) {
950 if (SvGMAGICAL(sv))
951 mg_get(sv);
25da4f38 952 if (SvIsUV(sv)) /* XXXX 64-bit? */
953 PerlIO_printf(fp, "%lu", (unsigned long)SvUVX(sv));
954 else
955 PerlIO_printf(fp, "%ld", (long)SvIVX(sv));
760ac839 956 return !PerlIO_error(fp);
a0d0e21e 957 }
958 /* FALL THROUGH */
79072805 959 default:
463ee0b2 960 tmps = SvPV(sv, len);
79072805 961 break;
ff8e2863 962 }
760ac839 963 if (len && (PerlIO_write(fp,tmps,len) == 0 || PerlIO_error(fp)))
a687059c 964 return FALSE;
760ac839 965 return !PerlIO_error(fp);
a687059c 966}
967
79072805 968I32
cea2e8a9 969Perl_my_stat(pTHX)
a687059c 970{
4e35701f 971 djSP;
79072805 972 IO *io;
748a9306 973 GV* tmpgv;
79072805 974
533c011a 975 if (PL_op->op_flags & OPf_REF) {
924508f0 976 EXTEND(SP,1);
748a9306 977 tmpgv = cGVOP->op_gv;
978 do_fstat:
979 io = GvIO(tmpgv);
8990e307 980 if (io && IoIFP(io)) {
3280af22 981 PL_statgv = tmpgv;
982 sv_setpv(PL_statname,"");
983 PL_laststype = OP_STAT;
984 return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache));
a687059c 985 }
986 else {
3280af22 987 if (tmpgv == PL_defgv)
988 return PL_laststatval;
599cee73 989 if (ckWARN(WARN_UNOPENED))
cea2e8a9 990 Perl_warner(aTHX_ WARN_UNOPENED, "Stat on unopened file <%s>",
748a9306 991 GvENAME(tmpgv));
3280af22 992 PL_statgv = Nullgv;
993 sv_setpv(PL_statname,"");
994 return (PL_laststatval = -1);
a687059c 995 }
996 }
997 else {
748a9306 998 SV* sv = POPs;
4b74e3fb 999 char *s;
2d8e6c8d 1000 STRLEN n_a;
79072805 1001 PUTBACK;
748a9306 1002 if (SvTYPE(sv) == SVt_PVGV) {
1003 tmpgv = (GV*)sv;
1004 goto do_fstat;
1005 }
1006 else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) {
1007 tmpgv = (GV*)SvRV(sv);
1008 goto do_fstat;
1009 }
1010
2d8e6c8d 1011 s = SvPV(sv, n_a);
3280af22 1012 PL_statgv = Nullgv;
1013 sv_setpv(PL_statname, s);
1014 PL_laststype = OP_STAT;
1015 PL_laststatval = PerlLIO_stat(s, &PL_statcache);
599cee73 1016 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n'))
cea2e8a9 1017 Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "stat");
3280af22 1018 return PL_laststatval;
a687059c 1019 }
1020}
1021
79072805 1022I32
cea2e8a9 1023Perl_my_lstat(pTHX)
c623bd54 1024{
4e35701f 1025 djSP;
79072805 1026 SV *sv;
2d8e6c8d 1027 STRLEN n_a;
533c011a 1028 if (PL_op->op_flags & OPf_REF) {
924508f0 1029 EXTEND(SP,1);
3280af22 1030 if (cGVOP->op_gv == PL_defgv) {
1031 if (PL_laststype != OP_LSTAT)
cea2e8a9 1032 Perl_croak(aTHX_ "The stat preceding -l _ wasn't an lstat");
3280af22 1033 return PL_laststatval;
fe14fcc3 1034 }
cea2e8a9 1035 Perl_croak(aTHX_ "You can't use -l on a filehandle");
fe14fcc3 1036 }
c623bd54 1037
3280af22 1038 PL_laststype = OP_LSTAT;
1039 PL_statgv = Nullgv;
79072805 1040 sv = POPs;
1041 PUTBACK;
2d8e6c8d 1042 sv_setpv(PL_statname,SvPV(sv, n_a));
2d8e6c8d 1043 PL_laststatval = PerlLIO_lstat(SvPV(sv, n_a),&PL_statcache);
2d8e6c8d 1044 if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(SvPV(sv, n_a), '\n'))
cea2e8a9 1045 Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "lstat");
3280af22 1046 return PL_laststatval;
c623bd54 1047}
1048
a687059c 1049bool
864dbfa3 1050Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
a687059c 1051{
d5a9bfb0 1052 return do_aexec5(really, mark, sp, 0, 0);
1053}
1054
1055bool
2aa1486d 1056Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp,
1057 int fd, int do_report)
d5a9bfb0 1058{
a687059c 1059 register char **a;
a687059c 1060 char *tmps;
2d8e6c8d 1061 STRLEN n_a;
a687059c 1062
79072805 1063 if (sp > mark) {
11343788 1064 dTHR;
3280af22 1065 New(401,PL_Argv, sp - mark + 1, char*);
1066 a = PL_Argv;
79072805 1067 while (++mark <= sp) {
1068 if (*mark)
2d8e6c8d 1069 *a++ = SvPVx(*mark, n_a);
a687059c 1070 else
1071 *a++ = "";
1072 }
1073 *a = Nullch;
3280af22 1074 if (*PL_Argv[0] != '/') /* will execvp use PATH? */
79072805 1075 TAINT_ENV(); /* testing IFS here is overkill, probably */
2d8e6c8d 1076 if (really && *(tmps = SvPV(really, n_a)))
3280af22 1077 PerlProc_execvp(tmps,PL_Argv);
a687059c 1078 else
3280af22 1079 PerlProc_execvp(PL_Argv[0],PL_Argv);
599cee73 1080 if (ckWARN(WARN_EXEC))
cea2e8a9 1081 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
599cee73 1082 PL_Argv[0], Strerror(errno));
d5a9bfb0 1083 if (do_report) {
1084 int e = errno;
1085
1086 PerlLIO_write(fd, (void*)&e, sizeof(int));
1087 PerlLIO_close(fd);
1088 }
a687059c 1089 }
bee1dbe2 1090 do_execfree();
a687059c 1091 return FALSE;
1092}
1093
fe14fcc3 1094void
864dbfa3 1095Perl_do_execfree(pTHX)
ff8e2863 1096{
3280af22 1097 if (PL_Argv) {
1098 Safefree(PL_Argv);
1099 PL_Argv = Null(char **);
ff8e2863 1100 }
3280af22 1101 if (PL_Cmd) {
1102 Safefree(PL_Cmd);
1103 PL_Cmd = Nullch;
ff8e2863 1104 }
1105}
1106
4d2c4e07 1107#if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC)
760ac839 1108
a687059c 1109bool
864dbfa3 1110Perl_do_exec(pTHX_ char *cmd)
a687059c 1111{
e446cec8 1112 return do_exec3(cmd,0,0);
1113}
1114
1115bool
864dbfa3 1116Perl_do_exec3(pTHX_ char *cmd, int fd, int do_report)
e446cec8 1117{
a687059c 1118 register char **a;
1119 register char *s;
a687059c 1120 char flags[10];
1121
748a9306 1122 while (*cmd && isSPACE(*cmd))
1123 cmd++;
1124
a687059c 1125 /* save an extra exec if possible */
1126
bf38876a 1127#ifdef CSH
3280af22 1128 if (strnEQ(cmd,PL_cshname,PL_cshlen) && strnEQ(cmd+PL_cshlen," -c",3)) {
a687059c 1129 strcpy(flags,"-c");
3280af22 1130 s = cmd+PL_cshlen+3;
a687059c 1131 if (*s == 'f') {
1132 s++;
1133 strcat(flags,"f");
1134 }
1135 if (*s == ' ')
1136 s++;
1137 if (*s++ == '\'') {
1138 char *ncmd = s;
1139
1140 while (*s)
1141 s++;
1142 if (s[-1] == '\n')
1143 *--s = '\0';
1144 if (s[-1] == '\'') {
1145 *--s = '\0';
3280af22 1146 PerlProc_execl(PL_cshname,"csh", flags,ncmd,(char*)0);
a687059c 1147 *s = '\'';
1148 return FALSE;
1149 }
1150 }
1151 }
bf38876a 1152#endif /* CSH */
a687059c 1153
1154 /* see if there are shell metacharacters in it */
1155
748a9306 1156 if (*cmd == '.' && isSPACE(cmd[1]))
1157 goto doshell;
1158
1159 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1160 goto doshell;
1161
99b89507 1162 for (s = cmd; *s && isALPHA(*s); s++) ; /* catch VAR=val gizmo */
63f2c1e1 1163 if (*s == '=')
1164 goto doshell;
748a9306 1165
a687059c 1166 for (s = cmd; *s; s++) {
93a17b20 1167 if (*s != ' ' && !isALPHA(*s) && strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
a687059c 1168 if (*s == '\n' && !s[1]) {
1169 *s = '\0';
1170 break;
1171 }
603a98b0 1172 /* handle the 2>&1 construct at the end */
1173 if (*s == '>' && s[1] == '&' && s[2] == '1'
1174 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1175 && (!s[3] || isSPACE(s[3])))
1176 {
1177 char *t = s + 3;
1178
1179 while (*t && isSPACE(*t))
1180 ++t;
1181 if (!*t && (dup2(1,2) != -1)) {
1182 s[-2] = '\0';
1183 break;
1184 }
1185 }
a687059c 1186 doshell:
3280af22 1187 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char*)0);
a687059c 1188 return FALSE;
1189 }
1190 }
748a9306 1191
3280af22 1192 New(402,PL_Argv, (s - cmd) / 2 + 2, char*);
1193 PL_Cmd = savepvn(cmd, s-cmd);
1194 a = PL_Argv;
1195 for (s = PL_Cmd; *s;) {
99b89507 1196 while (*s && isSPACE(*s)) s++;
a687059c 1197 if (*s)
1198 *(a++) = s;
99b89507 1199 while (*s && !isSPACE(*s)) s++;
a687059c 1200 if (*s)
1201 *s++ = '\0';
1202 }
1203 *a = Nullch;
3280af22 1204 if (PL_Argv[0]) {
1205 PerlProc_execvp(PL_Argv[0],PL_Argv);
b1248f16 1206 if (errno == ENOEXEC) { /* for system V NIH syndrome */
ff8e2863 1207 do_execfree();
a687059c 1208 goto doshell;
b1248f16 1209 }
d008e5eb 1210 {
1211 dTHR;
e446cec8 1212 int e = errno;
1213
d008e5eb 1214 if (ckWARN(WARN_EXEC))
cea2e8a9 1215 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
d008e5eb 1216 PL_Argv[0], Strerror(errno));
e446cec8 1217 if (do_report) {
1218 PerlLIO_write(fd, (void*)&e, sizeof(int));
1219 PerlLIO_close(fd);
1220 }
d008e5eb 1221 }
a687059c 1222 }
ff8e2863 1223 do_execfree();
a687059c 1224 return FALSE;
1225}
1226
6890e559 1227#endif /* OS2 || WIN32 */
760ac839 1228
79072805 1229I32
864dbfa3 1230Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
a687059c 1231{
11343788 1232 dTHR;
79072805 1233 register I32 val;
1234 register I32 val2;
1235 register I32 tot = 0;
20408e3c 1236 char *what;
a687059c 1237 char *s;
79072805 1238 SV **oldmark = mark;
2d8e6c8d 1239 STRLEN n_a;
a687059c 1240
20408e3c 1241#define APPLY_TAINT_PROPER() \
3280af22 1242 STMT_START { \
17406bd6 1243 if (PL_tainted) { TAINT_PROPER(what); } \
873ef191 1244 } STMT_END
20408e3c 1245
1246 /* This is a first heuristic; it doesn't catch tainting magic. */
3280af22 1247 if (PL_tainting) {
463ee0b2 1248 while (++mark <= sp) {
bbce6d69 1249 if (SvTAINTED(*mark)) {
1250 TAINT;
1251 break;
1252 }
463ee0b2 1253 }
1254 mark = oldmark;
1255 }
a687059c 1256 switch (type) {
79072805 1257 case OP_CHMOD:
20408e3c 1258 what = "chmod";
1259 APPLY_TAINT_PROPER();
79072805 1260 if (++mark <= sp) {
463ee0b2 1261 val = SvIVx(*mark);
20408e3c 1262 APPLY_TAINT_PROPER();
1263 tot = sp - mark;
79072805 1264 while (++mark <= sp) {
2d8e6c8d 1265 char *name = SvPVx(*mark, n_a);
20408e3c 1266 APPLY_TAINT_PROPER();
1267 if (PerlLIO_chmod(name, val))
a687059c 1268 tot--;
1269 }
1270 }
1271 break;
fe14fcc3 1272#ifdef HAS_CHOWN
79072805 1273 case OP_CHOWN:
20408e3c 1274 what = "chown";
1275 APPLY_TAINT_PROPER();
79072805 1276 if (sp - mark > 2) {
463ee0b2 1277 val = SvIVx(*++mark);
1278 val2 = SvIVx(*++mark);
20408e3c 1279 APPLY_TAINT_PROPER();
a0d0e21e 1280 tot = sp - mark;
79072805 1281 while (++mark <= sp) {
2d8e6c8d 1282 char *name = SvPVx(*mark, n_a);
20408e3c 1283 APPLY_TAINT_PROPER();
36660982 1284 if (PerlLIO_chown(name, val, val2))
a687059c 1285 tot--;
1286 }
1287 }
1288 break;
b1248f16 1289#endif
dd64f1c3 1290/*
1291XXX Should we make lchown() directly available from perl?
1292For now, we'll let Configure test for HAS_LCHOWN, but do
1293nothing in the core.
1294 --AD 5/1998
1295*/
fe14fcc3 1296#ifdef HAS_KILL
79072805 1297 case OP_KILL:
20408e3c 1298 what = "kill";
1299 APPLY_TAINT_PROPER();
55497cff 1300 if (mark == sp)
1301 break;
2d8e6c8d 1302 s = SvPVx(*++mark, n_a);
79072805 1303 if (isUPPER(*s)) {
1304 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1305 s += 3;
1306 if (!(val = whichsig(s)))
cea2e8a9 1307 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
79072805 1308 }
1309 else
463ee0b2 1310 val = SvIVx(*mark);
20408e3c 1311 APPLY_TAINT_PROPER();
1312 tot = sp - mark;
3595fcef 1313#ifdef VMS
1314 /* kill() doesn't do process groups (job trees?) under VMS */
1315 if (val < 0) val = -val;
1316 if (val == SIGKILL) {
1317# include <starlet.h>
1318 /* Use native sys$delprc() to insure that target process is
1319 * deleted; supervisor-mode images don't pay attention to
1320 * CRTL's emulation of Unix-style signals and kill()
1321 */
1322 while (++mark <= sp) {
1323 I32 proc = SvIVx(*mark);
1324 register unsigned long int __vmssts;
20408e3c 1325 APPLY_TAINT_PROPER();
3595fcef 1326 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1327 tot--;
1328 switch (__vmssts) {
1329 case SS$_NONEXPR:
1330 case SS$_NOSUCHNODE:
1331 SETERRNO(ESRCH,__vmssts);
1332 break;
1333 case SS$_NOPRIV:
1334 SETERRNO(EPERM,__vmssts);
1335 break;
1336 default:
1337 SETERRNO(EVMSERR,__vmssts);
1338 }
1339 }
1340 }
1341 break;
1342 }
1343#endif
79072805 1344 if (val < 0) {
1345 val = -val;
1346 while (++mark <= sp) {
463ee0b2 1347 I32 proc = SvIVx(*mark);
20408e3c 1348 APPLY_TAINT_PROPER();
fe14fcc3 1349#ifdef HAS_KILLPG
3028581b 1350 if (PerlProc_killpg(proc,val)) /* BSD */
a687059c 1351#else
3028581b 1352 if (PerlProc_kill(-proc,val)) /* SYSV */
a687059c 1353#endif
79072805 1354 tot--;
a687059c 1355 }
79072805 1356 }
1357 else {
1358 while (++mark <= sp) {
20408e3c 1359 I32 proc = SvIVx(*mark);
1360 APPLY_TAINT_PROPER();
1361 if (PerlProc_kill(proc, val))
79072805 1362 tot--;
a687059c 1363 }
1364 }
1365 break;
b1248f16 1366#endif
79072805 1367 case OP_UNLINK:
20408e3c 1368 what = "unlink";
1369 APPLY_TAINT_PROPER();
79072805 1370 tot = sp - mark;
1371 while (++mark <= sp) {
2d8e6c8d 1372 s = SvPVx(*mark, n_a);
20408e3c 1373 APPLY_TAINT_PROPER();
3280af22 1374 if (PL_euid || PL_unsafe) {
a687059c 1375 if (UNLINK(s))
1376 tot--;
1377 }
1378 else { /* don't let root wipe out directories without -U */
3280af22 1379 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
a687059c 1380 tot--;
1381 else {
1382 if (UNLINK(s))
1383 tot--;
1384 }
1385 }
1386 }
1387 break;
a0d0e21e 1388#ifdef HAS_UTIME
79072805 1389 case OP_UTIME:
20408e3c 1390 what = "utime";
1391 APPLY_TAINT_PROPER();
79072805 1392 if (sp - mark > 2) {
748a9306 1393#if defined(I_UTIME) || defined(VMS)
663a0e37 1394 struct utimbuf utbuf;
1395#else
a687059c 1396 struct {
dd2821f6 1397 Time_t actime;
1398 Time_t modtime;
a687059c 1399 } utbuf;
663a0e37 1400#endif
a687059c 1401
afd9f252 1402 Zero(&utbuf, sizeof utbuf, char);
517844ec 1403#ifdef BIG_TIME
dd2821f6 1404 utbuf.actime = (Time_t)SvNVx(*++mark); /* time accessed */
1405 utbuf.modtime = (Time_t)SvNVx(*++mark); /* time modified */
517844ec 1406#else
dd2821f6 1407 utbuf.actime = (Time_t)SvIVx(*++mark); /* time accessed */
1408 utbuf.modtime = (Time_t)SvIVx(*++mark); /* time modified */
517844ec 1409#endif
20408e3c 1410 APPLY_TAINT_PROPER();
79072805 1411 tot = sp - mark;
1412 while (++mark <= sp) {
2d8e6c8d 1413 char *name = SvPVx(*mark, n_a);
20408e3c 1414 APPLY_TAINT_PROPER();
1415 if (PerlLIO_utime(name, &utbuf))
a687059c 1416 tot--;
1417 }
a687059c 1418 }
1419 else
79072805 1420 tot = 0;
a687059c 1421 break;
a0d0e21e 1422#endif
a687059c 1423 }
1424 return tot;
20408e3c 1425
20408e3c 1426#undef APPLY_TAINT_PROPER
a687059c 1427}
1428
1429/* Do the permissions allow some operation? Assumes statcache already set. */
a0d0e21e 1430#ifndef VMS /* VMS' cando is in vms.c */
79072805 1431I32
864dbfa3 1432Perl_cando(pTHX_ I32 bit, I32 effective, register struct stat *statbufp)
a687059c 1433{
bee1dbe2 1434#ifdef DOSISH
fe14fcc3 1435 /* [Comments and code from Len Reed]
1436 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1437 * to write-protected files. The execute permission bit is set
1438 * by the Miscrosoft C library stat() function for the following:
1439 * .exe files
1440 * .com files
1441 * .bat files
1442 * directories
1443 * All files and directories are readable.
1444 * Directories and special files, e.g. "CON", cannot be
1445 * write-protected.
1446 * [Comment by Tom Dinger -- a directory can have the write-protect
1447 * bit set in the file system, but DOS permits changes to
1448 * the directory anyway. In addition, all bets are off
1449 * here for networked software, such as Novell and
1450 * Sun's PC-NFS.]
1451 */
1452
bee1dbe2 1453 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1454 * too so it will actually look into the files for magic numbers
1455 */
fe14fcc3 1456 return (bit & statbufp->st_mode) ? TRUE : FALSE;
1457
55497cff 1458#else /* ! DOSISH */
3280af22 1459 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
c623bd54 1460 if (bit == S_IXUSR) {
1461 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
a687059c 1462 return TRUE;
1463 }
1464 else
1465 return TRUE; /* root reads and writes anything */
1466 return FALSE;
1467 }
3280af22 1468 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
a687059c 1469 if (statbufp->st_mode & bit)
1470 return TRUE; /* ok as "user" */
1471 }
79072805 1472 else if (ingroup((I32)statbufp->st_gid,effective)) {
a687059c 1473 if (statbufp->st_mode & bit >> 3)
1474 return TRUE; /* ok as "group" */
1475 }
1476 else if (statbufp->st_mode & bit >> 6)
1477 return TRUE; /* ok as "other" */
1478 return FALSE;
55497cff 1479#endif /* ! DOSISH */
a687059c 1480}
a0d0e21e 1481#endif /* ! VMS */
a687059c 1482
79072805 1483I32
864dbfa3 1484Perl_ingroup(pTHX_ I32 testgid, I32 effective)
a687059c 1485{
3280af22 1486 if (testgid == (effective ? PL_egid : PL_gid))
a687059c 1487 return TRUE;
fe14fcc3 1488#ifdef HAS_GETGROUPS
a687059c 1489#ifndef NGROUPS
1490#define NGROUPS 32
1491#endif
1492 {
a0d0e21e 1493 Groups_t gary[NGROUPS];
79072805 1494 I32 anum;
a687059c 1495
1496 anum = getgroups(NGROUPS,gary);
1497 while (--anum >= 0)
1498 if (gary[anum] == testgid)
1499 return TRUE;
1500 }
1501#endif
1502 return FALSE;
1503}
c2ab57d4 1504
fe14fcc3 1505#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 1506
79072805 1507I32
864dbfa3 1508Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1509{
11343788 1510 dTHR;
c2ab57d4 1511 key_t key;
79072805 1512 I32 n, flags;
c2ab57d4 1513
463ee0b2 1514 key = (key_t)SvNVx(*++mark);
1515 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark);
1516 flags = SvIVx(*++mark);
748a9306 1517 SETERRNO(0,0);
c2ab57d4 1518 switch (optype)
1519 {
fe14fcc3 1520#ifdef HAS_MSG
79072805 1521 case OP_MSGGET:
c2ab57d4 1522 return msgget(key, flags);
e5d73d77 1523#endif
fe14fcc3 1524#ifdef HAS_SEM
79072805 1525 case OP_SEMGET:
c2ab57d4 1526 return semget(key, n, flags);
e5d73d77 1527#endif
fe14fcc3 1528#ifdef HAS_SHM
79072805 1529 case OP_SHMGET:
c2ab57d4 1530 return shmget(key, n, flags);
e5d73d77 1531#endif
fe14fcc3 1532#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1533 default:
cea2e8a9 1534 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1535#endif
c2ab57d4 1536 }
1537 return -1; /* should never happen */
1538}
1539
79072805 1540I32
864dbfa3 1541Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1542{
11343788 1543 dTHR;
79072805 1544 SV *astr;
c2ab57d4 1545 char *a;
a0d0e21e 1546 I32 id, n, cmd, infosize, getinfo;
1547 I32 ret = -1;
c2ab57d4 1548
463ee0b2 1549 id = SvIVx(*++mark);
1550 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
1551 cmd = SvIVx(*++mark);
79072805 1552 astr = *++mark;
c2ab57d4 1553 infosize = 0;
1554 getinfo = (cmd == IPC_STAT);
1555
1556 switch (optype)
1557 {
fe14fcc3 1558#ifdef HAS_MSG
79072805 1559 case OP_MSGCTL:
c2ab57d4 1560 if (cmd == IPC_STAT || cmd == IPC_SET)
1561 infosize = sizeof(struct msqid_ds);
1562 break;
e5d73d77 1563#endif
fe14fcc3 1564#ifdef HAS_SHM
79072805 1565 case OP_SHMCTL:
c2ab57d4 1566 if (cmd == IPC_STAT || cmd == IPC_SET)
1567 infosize = sizeof(struct shmid_ds);
1568 break;
e5d73d77 1569#endif
fe14fcc3 1570#ifdef HAS_SEM
79072805 1571 case OP_SEMCTL:
39398f3f 1572#ifdef Semctl
c2ab57d4 1573 if (cmd == IPC_STAT || cmd == IPC_SET)
1574 infosize = sizeof(struct semid_ds);
1575 else if (cmd == GETALL || cmd == SETALL)
1576 {
8e591e46 1577 struct semid_ds semds;
bd89102f 1578 union semun semun;
1579
84902520 1580 semun.buf = &semds;
c2ab57d4 1581 getinfo = (cmd == GETALL);
9b89d93d 1582 if (Semctl(id, 0, IPC_STAT, semun) == -1)
1583 return -1;
6e21c824 1584 infosize = semds.sem_nsems * sizeof(short);
1585 /* "short" is technically wrong but much more portable
1586 than guessing about u_?short(_t)? */
c2ab57d4 1587 }
39398f3f 1588#else
cea2e8a9 1589 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1590#endif
c2ab57d4 1591 break;
e5d73d77 1592#endif
fe14fcc3 1593#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1594 default:
cea2e8a9 1595 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1596#endif
c2ab57d4 1597 }
1598
1599 if (infosize)
1600 {
a0d0e21e 1601 STRLEN len;
c2ab57d4 1602 if (getinfo)
1603 {
a0d0e21e 1604 SvPV_force(astr, len);
1605 a = SvGROW(astr, infosize+1);
c2ab57d4 1606 }
1607 else
1608 {
463ee0b2 1609 a = SvPV(astr, len);
1610 if (len != infosize)
cea2e8a9 1611 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
4ec43091 1612 PL_op_desc[optype],
1613 (unsigned long)len,
1614 (long)infosize);
c2ab57d4 1615 }
1616 }
1617 else
1618 {
c030ccd9 1619 IV i = SvIV(astr);
c2ab57d4 1620 a = (char *)i; /* ouch */
1621 }
748a9306 1622 SETERRNO(0,0);
c2ab57d4 1623 switch (optype)
1624 {
fe14fcc3 1625#ifdef HAS_MSG
79072805 1626 case OP_MSGCTL:
bee1dbe2 1627 ret = msgctl(id, cmd, (struct msqid_ds *)a);
c2ab57d4 1628 break;
e5d73d77 1629#endif
fe14fcc3 1630#ifdef HAS_SEM
bd89102f 1631 case OP_SEMCTL: {
39398f3f 1632#ifdef Semctl
bd89102f 1633 union semun unsemds;
1634
1635 unsemds.buf = (struct semid_ds *)a;
1636 ret = Semctl(id, n, cmd, unsemds);
39398f3f 1637#else
cea2e8a9 1638 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1639#endif
bd89102f 1640 }
c2ab57d4 1641 break;
e5d73d77 1642#endif
fe14fcc3 1643#ifdef HAS_SHM
79072805 1644 case OP_SHMCTL:
bee1dbe2 1645 ret = shmctl(id, cmd, (struct shmid_ds *)a);
c2ab57d4 1646 break;
e5d73d77 1647#endif
c2ab57d4 1648 }
1649 if (getinfo && ret >= 0) {
79072805 1650 SvCUR_set(astr, infosize);
1651 *SvEND(astr) = '\0';
a0d0e21e 1652 SvSETMAGIC(astr);
c2ab57d4 1653 }
1654 return ret;
1655}
1656
79072805 1657I32
864dbfa3 1658Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 1659{
fe14fcc3 1660#ifdef HAS_MSG
11343788 1661 dTHR;
79072805 1662 SV *mstr;
c2ab57d4 1663 char *mbuf;
79072805 1664 I32 id, msize, flags;
463ee0b2 1665 STRLEN len;
c2ab57d4 1666
463ee0b2 1667 id = SvIVx(*++mark);
79072805 1668 mstr = *++mark;
463ee0b2 1669 flags = SvIVx(*++mark);
1670 mbuf = SvPV(mstr, len);
1671 if ((msize = len - sizeof(long)) < 0)
cea2e8a9 1672 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 1673 SETERRNO(0,0);
bee1dbe2 1674 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
e5d73d77 1675#else
cea2e8a9 1676 Perl_croak(aTHX_ "msgsnd not implemented");
e5d73d77 1677#endif
c2ab57d4 1678}
1679
79072805 1680I32
864dbfa3 1681Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 1682{
fe14fcc3 1683#ifdef HAS_MSG
11343788 1684 dTHR;
79072805 1685 SV *mstr;
c2ab57d4 1686 char *mbuf;
1687 long mtype;
79072805 1688 I32 id, msize, flags, ret;
463ee0b2 1689 STRLEN len;
79072805 1690
463ee0b2 1691 id = SvIVx(*++mark);
79072805 1692 mstr = *++mark;
463ee0b2 1693 msize = SvIVx(*++mark);
1694 mtype = (long)SvIVx(*++mark);
1695 flags = SvIVx(*++mark);
a0d0e21e 1696 SvPV_force(mstr, len);
1697 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
1698
748a9306 1699 SETERRNO(0,0);
bee1dbe2 1700 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
c2ab57d4 1701 if (ret >= 0) {
79072805 1702 SvCUR_set(mstr, sizeof(long)+ret);
1703 *SvEND(mstr) = '\0';
c2ab57d4 1704 }
1705 return ret;
e5d73d77 1706#else
cea2e8a9 1707 Perl_croak(aTHX_ "msgrcv not implemented");
e5d73d77 1708#endif
c2ab57d4 1709}
1710
79072805 1711I32
864dbfa3 1712Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 1713{
fe14fcc3 1714#ifdef HAS_SEM
11343788 1715 dTHR;
79072805 1716 SV *opstr;
c2ab57d4 1717 char *opbuf;
463ee0b2 1718 I32 id;
1719 STRLEN opsize;
c2ab57d4 1720
463ee0b2 1721 id = SvIVx(*++mark);
79072805 1722 opstr = *++mark;
463ee0b2 1723 opbuf = SvPV(opstr, opsize);
c2ab57d4 1724 if (opsize < sizeof(struct sembuf)
1725 || (opsize % sizeof(struct sembuf)) != 0) {
748a9306 1726 SETERRNO(EINVAL,LIB$_INVARG);
c2ab57d4 1727 return -1;
1728 }
748a9306 1729 SETERRNO(0,0);
6e21c824 1730 return semop(id, (struct sembuf *)opbuf, opsize/sizeof(struct sembuf));
e5d73d77 1731#else
cea2e8a9 1732 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 1733#endif
c2ab57d4 1734}
1735
79072805 1736I32
864dbfa3 1737Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1738{
fe14fcc3 1739#ifdef HAS_SHM
11343788 1740 dTHR;
79072805 1741 SV *mstr;
c2ab57d4 1742 char *mbuf, *shm;
79072805 1743 I32 id, mpos, msize;
463ee0b2 1744 STRLEN len;
c2ab57d4 1745 struct shmid_ds shmds;
c2ab57d4 1746
463ee0b2 1747 id = SvIVx(*++mark);
79072805 1748 mstr = *++mark;
463ee0b2 1749 mpos = SvIVx(*++mark);
1750 msize = SvIVx(*++mark);
748a9306 1751 SETERRNO(0,0);
c2ab57d4 1752 if (shmctl(id, IPC_STAT, &shmds) == -1)
1753 return -1;
1754 if (mpos < 0 || msize < 0 || mpos + msize > shmds.shm_segsz) {
748a9306 1755 SETERRNO(EFAULT,SS$_ACCVIO); /* can't do as caller requested */
c2ab57d4 1756 return -1;
1757 }
8ac85365 1758 shm = (char *)shmat(id, (char*)NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
c2ab57d4 1759 if (shm == (char *)-1) /* I hate System V IPC, I really do */
1760 return -1;
79072805 1761 if (optype == OP_SHMREAD) {
a0d0e21e 1762 SvPV_force(mstr, len);
1763 mbuf = SvGROW(mstr, msize+1);
1764
bee1dbe2 1765 Copy(shm + mpos, mbuf, msize, char);
79072805 1766 SvCUR_set(mstr, msize);
1767 *SvEND(mstr) = '\0';
a0d0e21e 1768 SvSETMAGIC(mstr);
c2ab57d4 1769 }
1770 else {
79072805 1771 I32 n;
c2ab57d4 1772
a0d0e21e 1773 mbuf = SvPV(mstr, len);
463ee0b2 1774 if ((n = len) > msize)
c2ab57d4 1775 n = msize;
bee1dbe2 1776 Copy(mbuf, shm + mpos, n, char);
c2ab57d4 1777 if (n < msize)
bee1dbe2 1778 memzero(shm + mpos + n, msize - n);
c2ab57d4 1779 }
1780 return shmdt(shm);
e5d73d77 1781#else
cea2e8a9 1782 Perl_croak(aTHX_ "shm I/O not implemented");
e5d73d77 1783#endif
c2ab57d4 1784}
1785
fe14fcc3 1786#endif /* SYSV IPC */
4e35701f 1787