yet more cleanups of the PERL_OBJECT, MULTIPLICITY and USE_THREADS
[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{
a687059c 1052 register char **a;
a687059c 1053 char *tmps;
2d8e6c8d 1054 STRLEN n_a;
a687059c 1055
79072805 1056 if (sp > mark) {
11343788 1057 dTHR;
3280af22 1058 New(401,PL_Argv, sp - mark + 1, char*);
1059 a = PL_Argv;
79072805 1060 while (++mark <= sp) {
1061 if (*mark)
2d8e6c8d 1062 *a++ = SvPVx(*mark, n_a);
a687059c 1063 else
1064 *a++ = "";
1065 }
1066 *a = Nullch;
3280af22 1067 if (*PL_Argv[0] != '/') /* will execvp use PATH? */
79072805 1068 TAINT_ENV(); /* testing IFS here is overkill, probably */
2d8e6c8d 1069 if (really && *(tmps = SvPV(really, n_a)))
3280af22 1070 PerlProc_execvp(tmps,PL_Argv);
a687059c 1071 else
3280af22 1072 PerlProc_execvp(PL_Argv[0],PL_Argv);
599cee73 1073 if (ckWARN(WARN_EXEC))
cea2e8a9 1074 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
599cee73 1075 PL_Argv[0], Strerror(errno));
a687059c 1076 }
bee1dbe2 1077 do_execfree();
a687059c 1078 return FALSE;
1079}
1080
fe14fcc3 1081void
864dbfa3 1082Perl_do_execfree(pTHX)
ff8e2863 1083{
3280af22 1084 if (PL_Argv) {
1085 Safefree(PL_Argv);
1086 PL_Argv = Null(char **);
ff8e2863 1087 }
3280af22 1088 if (PL_Cmd) {
1089 Safefree(PL_Cmd);
1090 PL_Cmd = Nullch;
ff8e2863 1091 }
1092}
1093
4d2c4e07 1094#if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC)
760ac839 1095
a687059c 1096bool
864dbfa3 1097Perl_do_exec(pTHX_ char *cmd)
a687059c 1098{
e446cec8 1099 return do_exec3(cmd,0,0);
1100}
1101
1102bool
864dbfa3 1103Perl_do_exec3(pTHX_ char *cmd, int fd, int do_report)
e446cec8 1104{
a687059c 1105 register char **a;
1106 register char *s;
a687059c 1107 char flags[10];
1108
748a9306 1109 while (*cmd && isSPACE(*cmd))
1110 cmd++;
1111
a687059c 1112 /* save an extra exec if possible */
1113
bf38876a 1114#ifdef CSH
3280af22 1115 if (strnEQ(cmd,PL_cshname,PL_cshlen) && strnEQ(cmd+PL_cshlen," -c",3)) {
a687059c 1116 strcpy(flags,"-c");
3280af22 1117 s = cmd+PL_cshlen+3;
a687059c 1118 if (*s == 'f') {
1119 s++;
1120 strcat(flags,"f");
1121 }
1122 if (*s == ' ')
1123 s++;
1124 if (*s++ == '\'') {
1125 char *ncmd = s;
1126
1127 while (*s)
1128 s++;
1129 if (s[-1] == '\n')
1130 *--s = '\0';
1131 if (s[-1] == '\'') {
1132 *--s = '\0';
3280af22 1133 PerlProc_execl(PL_cshname,"csh", flags,ncmd,(char*)0);
a687059c 1134 *s = '\'';
1135 return FALSE;
1136 }
1137 }
1138 }
bf38876a 1139#endif /* CSH */
a687059c 1140
1141 /* see if there are shell metacharacters in it */
1142
748a9306 1143 if (*cmd == '.' && isSPACE(cmd[1]))
1144 goto doshell;
1145
1146 if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
1147 goto doshell;
1148
99b89507 1149 for (s = cmd; *s && isALPHA(*s); s++) ; /* catch VAR=val gizmo */
63f2c1e1 1150 if (*s == '=')
1151 goto doshell;
748a9306 1152
a687059c 1153 for (s = cmd; *s; s++) {
93a17b20 1154 if (*s != ' ' && !isALPHA(*s) && strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
a687059c 1155 if (*s == '\n' && !s[1]) {
1156 *s = '\0';
1157 break;
1158 }
603a98b0 1159 /* handle the 2>&1 construct at the end */
1160 if (*s == '>' && s[1] == '&' && s[2] == '1'
1161 && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2])
1162 && (!s[3] || isSPACE(s[3])))
1163 {
1164 char *t = s + 3;
1165
1166 while (*t && isSPACE(*t))
1167 ++t;
1168 if (!*t && (dup2(1,2) != -1)) {
1169 s[-2] = '\0';
1170 break;
1171 }
1172 }
a687059c 1173 doshell:
3280af22 1174 PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char*)0);
a687059c 1175 return FALSE;
1176 }
1177 }
748a9306 1178
3280af22 1179 New(402,PL_Argv, (s - cmd) / 2 + 2, char*);
1180 PL_Cmd = savepvn(cmd, s-cmd);
1181 a = PL_Argv;
1182 for (s = PL_Cmd; *s;) {
99b89507 1183 while (*s && isSPACE(*s)) s++;
a687059c 1184 if (*s)
1185 *(a++) = s;
99b89507 1186 while (*s && !isSPACE(*s)) s++;
a687059c 1187 if (*s)
1188 *s++ = '\0';
1189 }
1190 *a = Nullch;
3280af22 1191 if (PL_Argv[0]) {
1192 PerlProc_execvp(PL_Argv[0],PL_Argv);
b1248f16 1193 if (errno == ENOEXEC) { /* for system V NIH syndrome */
ff8e2863 1194 do_execfree();
a687059c 1195 goto doshell;
b1248f16 1196 }
d008e5eb 1197 {
1198 dTHR;
e446cec8 1199 int e = errno;
1200
d008e5eb 1201 if (ckWARN(WARN_EXEC))
cea2e8a9 1202 Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s",
d008e5eb 1203 PL_Argv[0], Strerror(errno));
e446cec8 1204 if (do_report) {
1205 PerlLIO_write(fd, (void*)&e, sizeof(int));
1206 PerlLIO_close(fd);
1207 }
d008e5eb 1208 }
a687059c 1209 }
ff8e2863 1210 do_execfree();
a687059c 1211 return FALSE;
1212}
1213
6890e559 1214#endif /* OS2 || WIN32 */
760ac839 1215
79072805 1216I32
864dbfa3 1217Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp)
a687059c 1218{
11343788 1219 dTHR;
79072805 1220 register I32 val;
1221 register I32 val2;
1222 register I32 tot = 0;
20408e3c 1223 char *what;
a687059c 1224 char *s;
79072805 1225 SV **oldmark = mark;
2d8e6c8d 1226 STRLEN n_a;
a687059c 1227
20408e3c 1228#define APPLY_TAINT_PROPER() \
3280af22 1229 STMT_START { \
17406bd6 1230 if (PL_tainted) { TAINT_PROPER(what); } \
873ef191 1231 } STMT_END
20408e3c 1232
1233 /* This is a first heuristic; it doesn't catch tainting magic. */
3280af22 1234 if (PL_tainting) {
463ee0b2 1235 while (++mark <= sp) {
bbce6d69 1236 if (SvTAINTED(*mark)) {
1237 TAINT;
1238 break;
1239 }
463ee0b2 1240 }
1241 mark = oldmark;
1242 }
a687059c 1243 switch (type) {
79072805 1244 case OP_CHMOD:
20408e3c 1245 what = "chmod";
1246 APPLY_TAINT_PROPER();
79072805 1247 if (++mark <= sp) {
463ee0b2 1248 val = SvIVx(*mark);
20408e3c 1249 APPLY_TAINT_PROPER();
1250 tot = sp - mark;
79072805 1251 while (++mark <= sp) {
2d8e6c8d 1252 char *name = SvPVx(*mark, n_a);
20408e3c 1253 APPLY_TAINT_PROPER();
1254 if (PerlLIO_chmod(name, val))
a687059c 1255 tot--;
1256 }
1257 }
1258 break;
fe14fcc3 1259#ifdef HAS_CHOWN
79072805 1260 case OP_CHOWN:
20408e3c 1261 what = "chown";
1262 APPLY_TAINT_PROPER();
79072805 1263 if (sp - mark > 2) {
463ee0b2 1264 val = SvIVx(*++mark);
1265 val2 = SvIVx(*++mark);
20408e3c 1266 APPLY_TAINT_PROPER();
a0d0e21e 1267 tot = sp - mark;
79072805 1268 while (++mark <= sp) {
2d8e6c8d 1269 char *name = SvPVx(*mark, n_a);
20408e3c 1270 APPLY_TAINT_PROPER();
36660982 1271 if (PerlLIO_chown(name, val, val2))
a687059c 1272 tot--;
1273 }
1274 }
1275 break;
b1248f16 1276#endif
dd64f1c3 1277/*
1278XXX Should we make lchown() directly available from perl?
1279For now, we'll let Configure test for HAS_LCHOWN, but do
1280nothing in the core.
1281 --AD 5/1998
1282*/
fe14fcc3 1283#ifdef HAS_KILL
79072805 1284 case OP_KILL:
20408e3c 1285 what = "kill";
1286 APPLY_TAINT_PROPER();
55497cff 1287 if (mark == sp)
1288 break;
2d8e6c8d 1289 s = SvPVx(*++mark, n_a);
79072805 1290 if (isUPPER(*s)) {
1291 if (*s == 'S' && s[1] == 'I' && s[2] == 'G')
1292 s += 3;
1293 if (!(val = whichsig(s)))
cea2e8a9 1294 Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s);
79072805 1295 }
1296 else
463ee0b2 1297 val = SvIVx(*mark);
20408e3c 1298 APPLY_TAINT_PROPER();
1299 tot = sp - mark;
3595fcef 1300#ifdef VMS
1301 /* kill() doesn't do process groups (job trees?) under VMS */
1302 if (val < 0) val = -val;
1303 if (val == SIGKILL) {
1304# include <starlet.h>
1305 /* Use native sys$delprc() to insure that target process is
1306 * deleted; supervisor-mode images don't pay attention to
1307 * CRTL's emulation of Unix-style signals and kill()
1308 */
1309 while (++mark <= sp) {
1310 I32 proc = SvIVx(*mark);
1311 register unsigned long int __vmssts;
20408e3c 1312 APPLY_TAINT_PROPER();
3595fcef 1313 if (!((__vmssts = sys$delprc(&proc,0)) & 1)) {
1314 tot--;
1315 switch (__vmssts) {
1316 case SS$_NONEXPR:
1317 case SS$_NOSUCHNODE:
1318 SETERRNO(ESRCH,__vmssts);
1319 break;
1320 case SS$_NOPRIV:
1321 SETERRNO(EPERM,__vmssts);
1322 break;
1323 default:
1324 SETERRNO(EVMSERR,__vmssts);
1325 }
1326 }
1327 }
1328 break;
1329 }
1330#endif
79072805 1331 if (val < 0) {
1332 val = -val;
1333 while (++mark <= sp) {
463ee0b2 1334 I32 proc = SvIVx(*mark);
20408e3c 1335 APPLY_TAINT_PROPER();
fe14fcc3 1336#ifdef HAS_KILLPG
3028581b 1337 if (PerlProc_killpg(proc,val)) /* BSD */
a687059c 1338#else
3028581b 1339 if (PerlProc_kill(-proc,val)) /* SYSV */
a687059c 1340#endif
79072805 1341 tot--;
a687059c 1342 }
79072805 1343 }
1344 else {
1345 while (++mark <= sp) {
20408e3c 1346 I32 proc = SvIVx(*mark);
1347 APPLY_TAINT_PROPER();
1348 if (PerlProc_kill(proc, val))
79072805 1349 tot--;
a687059c 1350 }
1351 }
1352 break;
b1248f16 1353#endif
79072805 1354 case OP_UNLINK:
20408e3c 1355 what = "unlink";
1356 APPLY_TAINT_PROPER();
79072805 1357 tot = sp - mark;
1358 while (++mark <= sp) {
2d8e6c8d 1359 s = SvPVx(*mark, n_a);
20408e3c 1360 APPLY_TAINT_PROPER();
3280af22 1361 if (PL_euid || PL_unsafe) {
a687059c 1362 if (UNLINK(s))
1363 tot--;
1364 }
1365 else { /* don't let root wipe out directories without -U */
3280af22 1366 if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode))
a687059c 1367 tot--;
1368 else {
1369 if (UNLINK(s))
1370 tot--;
1371 }
1372 }
1373 }
1374 break;
a0d0e21e 1375#ifdef HAS_UTIME
79072805 1376 case OP_UTIME:
20408e3c 1377 what = "utime";
1378 APPLY_TAINT_PROPER();
79072805 1379 if (sp - mark > 2) {
748a9306 1380#if defined(I_UTIME) || defined(VMS)
663a0e37 1381 struct utimbuf utbuf;
1382#else
a687059c 1383 struct {
dd2821f6 1384 Time_t actime;
1385 Time_t modtime;
a687059c 1386 } utbuf;
663a0e37 1387#endif
a687059c 1388
afd9f252 1389 Zero(&utbuf, sizeof utbuf, char);
517844ec 1390#ifdef BIG_TIME
dd2821f6 1391 utbuf.actime = (Time_t)SvNVx(*++mark); /* time accessed */
1392 utbuf.modtime = (Time_t)SvNVx(*++mark); /* time modified */
517844ec 1393#else
dd2821f6 1394 utbuf.actime = (Time_t)SvIVx(*++mark); /* time accessed */
1395 utbuf.modtime = (Time_t)SvIVx(*++mark); /* time modified */
517844ec 1396#endif
20408e3c 1397 APPLY_TAINT_PROPER();
79072805 1398 tot = sp - mark;
1399 while (++mark <= sp) {
2d8e6c8d 1400 char *name = SvPVx(*mark, n_a);
20408e3c 1401 APPLY_TAINT_PROPER();
1402 if (PerlLIO_utime(name, &utbuf))
a687059c 1403 tot--;
1404 }
a687059c 1405 }
1406 else
79072805 1407 tot = 0;
a687059c 1408 break;
a0d0e21e 1409#endif
a687059c 1410 }
1411 return tot;
20408e3c 1412
20408e3c 1413#undef APPLY_TAINT_PROPER
a687059c 1414}
1415
1416/* Do the permissions allow some operation? Assumes statcache already set. */
a0d0e21e 1417#ifndef VMS /* VMS' cando is in vms.c */
79072805 1418I32
864dbfa3 1419Perl_cando(pTHX_ I32 bit, I32 effective, register struct stat *statbufp)
a687059c 1420{
bee1dbe2 1421#ifdef DOSISH
fe14fcc3 1422 /* [Comments and code from Len Reed]
1423 * MS-DOS "user" is similar to UNIX's "superuser," but can't write
1424 * to write-protected files. The execute permission bit is set
1425 * by the Miscrosoft C library stat() function for the following:
1426 * .exe files
1427 * .com files
1428 * .bat files
1429 * directories
1430 * All files and directories are readable.
1431 * Directories and special files, e.g. "CON", cannot be
1432 * write-protected.
1433 * [Comment by Tom Dinger -- a directory can have the write-protect
1434 * bit set in the file system, but DOS permits changes to
1435 * the directory anyway. In addition, all bets are off
1436 * here for networked software, such as Novell and
1437 * Sun's PC-NFS.]
1438 */
1439
bee1dbe2 1440 /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat
1441 * too so it will actually look into the files for magic numbers
1442 */
fe14fcc3 1443 return (bit & statbufp->st_mode) ? TRUE : FALSE;
1444
55497cff 1445#else /* ! DOSISH */
3280af22 1446 if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */
c623bd54 1447 if (bit == S_IXUSR) {
1448 if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode))
a687059c 1449 return TRUE;
1450 }
1451 else
1452 return TRUE; /* root reads and writes anything */
1453 return FALSE;
1454 }
3280af22 1455 if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) {
a687059c 1456 if (statbufp->st_mode & bit)
1457 return TRUE; /* ok as "user" */
1458 }
79072805 1459 else if (ingroup((I32)statbufp->st_gid,effective)) {
a687059c 1460 if (statbufp->st_mode & bit >> 3)
1461 return TRUE; /* ok as "group" */
1462 }
1463 else if (statbufp->st_mode & bit >> 6)
1464 return TRUE; /* ok as "other" */
1465 return FALSE;
55497cff 1466#endif /* ! DOSISH */
a687059c 1467}
a0d0e21e 1468#endif /* ! VMS */
a687059c 1469
79072805 1470I32
864dbfa3 1471Perl_ingroup(pTHX_ I32 testgid, I32 effective)
a687059c 1472{
3280af22 1473 if (testgid == (effective ? PL_egid : PL_gid))
a687059c 1474 return TRUE;
fe14fcc3 1475#ifdef HAS_GETGROUPS
a687059c 1476#ifndef NGROUPS
1477#define NGROUPS 32
1478#endif
1479 {
a0d0e21e 1480 Groups_t gary[NGROUPS];
79072805 1481 I32 anum;
a687059c 1482
1483 anum = getgroups(NGROUPS,gary);
1484 while (--anum >= 0)
1485 if (gary[anum] == testgid)
1486 return TRUE;
1487 }
1488#endif
1489 return FALSE;
1490}
c2ab57d4 1491
fe14fcc3 1492#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
c2ab57d4 1493
79072805 1494I32
864dbfa3 1495Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1496{
11343788 1497 dTHR;
c2ab57d4 1498 key_t key;
79072805 1499 I32 n, flags;
c2ab57d4 1500
463ee0b2 1501 key = (key_t)SvNVx(*++mark);
1502 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark);
1503 flags = SvIVx(*++mark);
748a9306 1504 SETERRNO(0,0);
c2ab57d4 1505 switch (optype)
1506 {
fe14fcc3 1507#ifdef HAS_MSG
79072805 1508 case OP_MSGGET:
c2ab57d4 1509 return msgget(key, flags);
e5d73d77 1510#endif
fe14fcc3 1511#ifdef HAS_SEM
79072805 1512 case OP_SEMGET:
c2ab57d4 1513 return semget(key, n, flags);
e5d73d77 1514#endif
fe14fcc3 1515#ifdef HAS_SHM
79072805 1516 case OP_SHMGET:
c2ab57d4 1517 return shmget(key, n, flags);
e5d73d77 1518#endif
fe14fcc3 1519#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1520 default:
cea2e8a9 1521 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1522#endif
c2ab57d4 1523 }
1524 return -1; /* should never happen */
1525}
1526
79072805 1527I32
864dbfa3 1528Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1529{
11343788 1530 dTHR;
79072805 1531 SV *astr;
c2ab57d4 1532 char *a;
a0d0e21e 1533 I32 id, n, cmd, infosize, getinfo;
1534 I32 ret = -1;
c2ab57d4 1535
463ee0b2 1536 id = SvIVx(*++mark);
1537 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
1538 cmd = SvIVx(*++mark);
79072805 1539 astr = *++mark;
c2ab57d4 1540 infosize = 0;
1541 getinfo = (cmd == IPC_STAT);
1542
1543 switch (optype)
1544 {
fe14fcc3 1545#ifdef HAS_MSG
79072805 1546 case OP_MSGCTL:
c2ab57d4 1547 if (cmd == IPC_STAT || cmd == IPC_SET)
1548 infosize = sizeof(struct msqid_ds);
1549 break;
e5d73d77 1550#endif
fe14fcc3 1551#ifdef HAS_SHM
79072805 1552 case OP_SHMCTL:
c2ab57d4 1553 if (cmd == IPC_STAT || cmd == IPC_SET)
1554 infosize = sizeof(struct shmid_ds);
1555 break;
e5d73d77 1556#endif
fe14fcc3 1557#ifdef HAS_SEM
79072805 1558 case OP_SEMCTL:
39398f3f 1559#ifdef Semctl
c2ab57d4 1560 if (cmd == IPC_STAT || cmd == IPC_SET)
1561 infosize = sizeof(struct semid_ds);
1562 else if (cmd == GETALL || cmd == SETALL)
1563 {
8e591e46 1564 struct semid_ds semds;
bd89102f 1565 union semun semun;
1566
84902520 1567 semun.buf = &semds;
c2ab57d4 1568 getinfo = (cmd == GETALL);
9b89d93d 1569 if (Semctl(id, 0, IPC_STAT, semun) == -1)
1570 return -1;
6e21c824 1571 infosize = semds.sem_nsems * sizeof(short);
1572 /* "short" is technically wrong but much more portable
1573 than guessing about u_?short(_t)? */
c2ab57d4 1574 }
39398f3f 1575#else
cea2e8a9 1576 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1577#endif
c2ab57d4 1578 break;
e5d73d77 1579#endif
fe14fcc3 1580#if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM)
e5d73d77 1581 default:
cea2e8a9 1582 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
e5d73d77 1583#endif
c2ab57d4 1584 }
1585
1586 if (infosize)
1587 {
a0d0e21e 1588 STRLEN len;
c2ab57d4 1589 if (getinfo)
1590 {
a0d0e21e 1591 SvPV_force(astr, len);
1592 a = SvGROW(astr, infosize+1);
c2ab57d4 1593 }
1594 else
1595 {
463ee0b2 1596 a = SvPV(astr, len);
1597 if (len != infosize)
cea2e8a9 1598 Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld",
4ec43091 1599 PL_op_desc[optype],
1600 (unsigned long)len,
1601 (long)infosize);
c2ab57d4 1602 }
1603 }
1604 else
1605 {
c030ccd9 1606 IV i = SvIV(astr);
c2ab57d4 1607 a = (char *)i; /* ouch */
1608 }
748a9306 1609 SETERRNO(0,0);
c2ab57d4 1610 switch (optype)
1611 {
fe14fcc3 1612#ifdef HAS_MSG
79072805 1613 case OP_MSGCTL:
bee1dbe2 1614 ret = msgctl(id, cmd, (struct msqid_ds *)a);
c2ab57d4 1615 break;
e5d73d77 1616#endif
fe14fcc3 1617#ifdef HAS_SEM
bd89102f 1618 case OP_SEMCTL: {
39398f3f 1619#ifdef Semctl
bd89102f 1620 union semun unsemds;
1621
1622 unsemds.buf = (struct semid_ds *)a;
1623 ret = Semctl(id, n, cmd, unsemds);
39398f3f 1624#else
cea2e8a9 1625 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
39398f3f 1626#endif
bd89102f 1627 }
c2ab57d4 1628 break;
e5d73d77 1629#endif
fe14fcc3 1630#ifdef HAS_SHM
79072805 1631 case OP_SHMCTL:
bee1dbe2 1632 ret = shmctl(id, cmd, (struct shmid_ds *)a);
c2ab57d4 1633 break;
e5d73d77 1634#endif
c2ab57d4 1635 }
1636 if (getinfo && ret >= 0) {
79072805 1637 SvCUR_set(astr, infosize);
1638 *SvEND(astr) = '\0';
a0d0e21e 1639 SvSETMAGIC(astr);
c2ab57d4 1640 }
1641 return ret;
1642}
1643
79072805 1644I32
864dbfa3 1645Perl_do_msgsnd(pTHX_ SV **mark, SV **sp)
c2ab57d4 1646{
fe14fcc3 1647#ifdef HAS_MSG
11343788 1648 dTHR;
79072805 1649 SV *mstr;
c2ab57d4 1650 char *mbuf;
79072805 1651 I32 id, msize, flags;
463ee0b2 1652 STRLEN len;
c2ab57d4 1653
463ee0b2 1654 id = SvIVx(*++mark);
79072805 1655 mstr = *++mark;
463ee0b2 1656 flags = SvIVx(*++mark);
1657 mbuf = SvPV(mstr, len);
1658 if ((msize = len - sizeof(long)) < 0)
cea2e8a9 1659 Perl_croak(aTHX_ "Arg too short for msgsnd");
748a9306 1660 SETERRNO(0,0);
bee1dbe2 1661 return msgsnd(id, (struct msgbuf *)mbuf, msize, flags);
e5d73d77 1662#else
cea2e8a9 1663 Perl_croak(aTHX_ "msgsnd not implemented");
e5d73d77 1664#endif
c2ab57d4 1665}
1666
79072805 1667I32
864dbfa3 1668Perl_do_msgrcv(pTHX_ SV **mark, SV **sp)
c2ab57d4 1669{
fe14fcc3 1670#ifdef HAS_MSG
11343788 1671 dTHR;
79072805 1672 SV *mstr;
c2ab57d4 1673 char *mbuf;
1674 long mtype;
79072805 1675 I32 id, msize, flags, ret;
463ee0b2 1676 STRLEN len;
79072805 1677
463ee0b2 1678 id = SvIVx(*++mark);
79072805 1679 mstr = *++mark;
463ee0b2 1680 msize = SvIVx(*++mark);
1681 mtype = (long)SvIVx(*++mark);
1682 flags = SvIVx(*++mark);
a0d0e21e 1683 SvPV_force(mstr, len);
1684 mbuf = SvGROW(mstr, sizeof(long)+msize+1);
1685
748a9306 1686 SETERRNO(0,0);
bee1dbe2 1687 ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags);
c2ab57d4 1688 if (ret >= 0) {
79072805 1689 SvCUR_set(mstr, sizeof(long)+ret);
1690 *SvEND(mstr) = '\0';
c2ab57d4 1691 }
1692 return ret;
e5d73d77 1693#else
cea2e8a9 1694 Perl_croak(aTHX_ "msgrcv not implemented");
e5d73d77 1695#endif
c2ab57d4 1696}
1697
79072805 1698I32
864dbfa3 1699Perl_do_semop(pTHX_ SV **mark, SV **sp)
c2ab57d4 1700{
fe14fcc3 1701#ifdef HAS_SEM
11343788 1702 dTHR;
79072805 1703 SV *opstr;
c2ab57d4 1704 char *opbuf;
463ee0b2 1705 I32 id;
1706 STRLEN opsize;
c2ab57d4 1707
463ee0b2 1708 id = SvIVx(*++mark);
79072805 1709 opstr = *++mark;
463ee0b2 1710 opbuf = SvPV(opstr, opsize);
c2ab57d4 1711 if (opsize < sizeof(struct sembuf)
1712 || (opsize % sizeof(struct sembuf)) != 0) {
748a9306 1713 SETERRNO(EINVAL,LIB$_INVARG);
c2ab57d4 1714 return -1;
1715 }
748a9306 1716 SETERRNO(0,0);
6e21c824 1717 return semop(id, (struct sembuf *)opbuf, opsize/sizeof(struct sembuf));
e5d73d77 1718#else
cea2e8a9 1719 Perl_croak(aTHX_ "semop not implemented");
e5d73d77 1720#endif
c2ab57d4 1721}
1722
79072805 1723I32
864dbfa3 1724Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
c2ab57d4 1725{
fe14fcc3 1726#ifdef HAS_SHM
11343788 1727 dTHR;
79072805 1728 SV *mstr;
c2ab57d4 1729 char *mbuf, *shm;
79072805 1730 I32 id, mpos, msize;
463ee0b2 1731 STRLEN len;
c2ab57d4 1732 struct shmid_ds shmds;
c2ab57d4 1733
463ee0b2 1734 id = SvIVx(*++mark);
79072805 1735 mstr = *++mark;
463ee0b2 1736 mpos = SvIVx(*++mark);
1737 msize = SvIVx(*++mark);
748a9306 1738 SETERRNO(0,0);
c2ab57d4 1739 if (shmctl(id, IPC_STAT, &shmds) == -1)
1740 return -1;
1741 if (mpos < 0 || msize < 0 || mpos + msize > shmds.shm_segsz) {
748a9306 1742 SETERRNO(EFAULT,SS$_ACCVIO); /* can't do as caller requested */
c2ab57d4 1743 return -1;
1744 }
8ac85365 1745 shm = (char *)shmat(id, (char*)NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0);
c2ab57d4 1746 if (shm == (char *)-1) /* I hate System V IPC, I really do */
1747 return -1;
79072805 1748 if (optype == OP_SHMREAD) {
a0d0e21e 1749 SvPV_force(mstr, len);
1750 mbuf = SvGROW(mstr, msize+1);
1751
bee1dbe2 1752 Copy(shm + mpos, mbuf, msize, char);
79072805 1753 SvCUR_set(mstr, msize);
1754 *SvEND(mstr) = '\0';
a0d0e21e 1755 SvSETMAGIC(mstr);
c2ab57d4 1756 }
1757 else {
79072805 1758 I32 n;
c2ab57d4 1759
a0d0e21e 1760 mbuf = SvPV(mstr, len);
463ee0b2 1761 if ((n = len) > msize)
c2ab57d4 1762 n = msize;
bee1dbe2 1763 Copy(mbuf, shm + mpos, n, char);
c2ab57d4 1764 if (n < msize)
bee1dbe2 1765 memzero(shm + mpos + n, msize - n);
c2ab57d4 1766 }
1767 return shmdt(shm);
e5d73d77 1768#else
cea2e8a9 1769 Perl_croak(aTHX_ "shm I/O not implemented");
e5d73d77 1770#endif
c2ab57d4 1771}
1772
fe14fcc3 1773#endif /* SYSV IPC */
4e35701f 1774