Commit | Line | Data |
a0d0e21e |
1 | /* doio.c |
a687059c |
2 | * |
bc89e66f |
3 | * Copyright (c) 1991-2001, 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 | |
85aff577 |
44 | #ifdef O_EXCL |
45 | # define OPEN_EXCL O_EXCL |
46 | #else |
47 | # define OPEN_EXCL 0 |
48 | #endif |
a687059c |
49 | |
76121258 |
50 | #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX) |
51 | #include <signal.h> |
52 | #endif |
53 | |
a687059c |
54 | bool |
6170680b |
55 | Perl_do_open(pTHX_ GV *gv, register char *name, I32 len, int as_raw, |
56 | int rawmode, int rawperm, PerlIO *supplied_fp) |
57 | { |
a567e93b |
58 | return do_openn(gv, name, len, as_raw, rawmode, rawperm, |
59 | supplied_fp, (SV **) NULL, 0); |
6170680b |
60 | } |
61 | |
62 | bool |
63 | Perl_do_open9(pTHX_ GV *gv, register char *name, I32 len, int as_raw, |
64 | int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, |
65 | I32 num_svs) |
a687059c |
66 | { |
a567e93b |
67 | return do_openn(gv, name, len, as_raw, rawmode, rawperm, |
68 | supplied_fp, &svs, 1); |
69 | } |
70 | |
71 | bool |
72 | Perl_do_openn(pTHX_ GV *gv, register char *name, I32 len, int as_raw, |
73 | int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, |
74 | I32 num_svs) |
75 | { |
a0d0e21e |
76 | register IO *io = GvIOn(gv); |
760ac839 |
77 | PerlIO *saveifp = Nullfp; |
78 | PerlIO *saveofp = Nullfp; |
9f37169a |
79 | char savetype = IoTYPE_CLOSED; |
c07a80fd |
80 | int writing = 0; |
760ac839 |
81 | PerlIO *fp; |
c07a80fd |
82 | int fd; |
83 | int result; |
3500f679 |
84 | bool was_fdopen = FALSE; |
16fe6d59 |
85 | bool in_raw = 0, in_crlf = 0, out_raw = 0, out_crlf = 0; |
b931b1d9 |
86 | char *type = NULL; |
b931b1d9 |
87 | char mode[4]; /* stdio file mode ("r\0", "rb\0", "r+b\0" etc.) */ |
a567e93b |
88 | SV *svs = (num_svs) ? *svp : Nullsv; |
a687059c |
89 | |
b931b1d9 |
90 | Zero(mode,sizeof(mode),char); |
3280af22 |
91 | PL_forkprocess = 1; /* assume true if no fork */ |
c07a80fd |
92 | |
b931b1d9 |
93 | /* Collect default raw/crlf info from the op */ |
16fe6d59 |
94 | if (PL_op && PL_op->op_type == OP_OPEN) { |
95 | /* set up disciplines */ |
96 | U8 flags = PL_op->op_private; |
97 | in_raw = (flags & OPpOPEN_IN_RAW); |
98 | in_crlf = (flags & OPpOPEN_IN_CRLF); |
99 | out_raw = (flags & OPpOPEN_OUT_RAW); |
100 | out_crlf = (flags & OPpOPEN_OUT_CRLF); |
101 | } |
102 | |
b931b1d9 |
103 | /* If currently open - close before we re-open */ |
a0d0e21e |
104 | if (IoIFP(io)) { |
760ac839 |
105 | fd = PerlIO_fileno(IoIFP(io)); |
50952442 |
106 | if (IoTYPE(io) == IoTYPE_STD) |
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 | } |
50952442 |
114 | else if (IoTYPE(io) == IoTYPE_PIPE) |
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)); |
6170680b |
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) |
bf49b057 |
127 | PerlIO_printf(Perl_error_log, |
6170680b |
128 | "Warning: unable to close filehandle %s properly.\n", |
129 | GvENAME(gv)); |
8990e307 |
130 | IoOFP(io) = IoIFP(io) = Nullfp; |
a687059c |
131 | } |
c07a80fd |
132 | |
133 | if (as_raw) { |
b931b1d9 |
134 | /* sysopen style args, i.e. integer mode and permissions */ |
135 | |
09458382 |
136 | #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE) |
5ff3f7a4 |
137 | rawmode |= O_LARGEFILE; |
138 | #endif |
139 | |
9d116dd7 |
140 | #ifndef O_ACCMODE |
141 | #define O_ACCMODE 3 /* Assume traditional implementation */ |
142 | #endif |
5ff3f7a4 |
143 | |
9d116dd7 |
144 | switch (result = rawmode & O_ACCMODE) { |
145 | case O_RDONLY: |
50952442 |
146 | IoTYPE(io) = IoTYPE_RDONLY; |
9d116dd7 |
147 | break; |
148 | case O_WRONLY: |
50952442 |
149 | IoTYPE(io) = IoTYPE_WRONLY; |
9d116dd7 |
150 | break; |
151 | case O_RDWR: |
152 | default: |
50952442 |
153 | IoTYPE(io) = IoTYPE_RDWR; |
9d116dd7 |
154 | break; |
155 | } |
156 | |
c07a80fd |
157 | writing = (result > 0); |
3028581b |
158 | fd = PerlLIO_open3(name, rawmode, rawperm); |
9d116dd7 |
159 | |
c07a80fd |
160 | if (fd == -1) |
161 | fp = NULL; |
162 | else { |
16fe6d59 |
163 | STRLEN ix = 0; |
b931b1d9 |
164 | if (result == O_RDONLY) { |
165 | mode[ix++] = 'r'; |
166 | } |
360e5741 |
167 | #ifdef O_APPEND |
16fe6d59 |
168 | else if (rawmode & O_APPEND) { |
b931b1d9 |
169 | mode[ix++] = 'a'; |
16fe6d59 |
170 | if (result != O_WRONLY) |
b931b1d9 |
171 | mode[ix++] = '+'; |
16fe6d59 |
172 | } |
360e5741 |
173 | #endif |
16fe6d59 |
174 | else { |
175 | if (result == O_WRONLY) |
b931b1d9 |
176 | mode[ix++] = 'w'; |
16fe6d59 |
177 | else { |
b931b1d9 |
178 | mode[ix++] = 'r'; |
179 | mode[ix++] = '+'; |
16fe6d59 |
180 | } |
181 | } |
182 | if (rawmode & O_BINARY) |
b931b1d9 |
183 | mode[ix++] = 'b'; |
184 | mode[ix] = '\0'; |
185 | fp = PerlIO_fdopen(fd, mode); |
c07a80fd |
186 | if (!fp) |
3028581b |
187 | PerlLIO_close(fd); |
c07a80fd |
188 | } |
a687059c |
189 | } |
c07a80fd |
190 | else { |
b931b1d9 |
191 | /* Regular (non-sys) open */ |
faecd977 |
192 | char *oname = name; |
faecd977 |
193 | STRLEN olen = len; |
b931b1d9 |
194 | char *tend; |
195 | int dodup = 0; |
c07a80fd |
196 | |
faecd977 |
197 | type = savepvn(name, len); |
b931b1d9 |
198 | tend = type+len; |
faecd977 |
199 | SAVEFREEPV(type); |
b931b1d9 |
200 | /* Loose trailing white space */ |
201 | while (tend > type && isSPACE(tend[-1])) |
202 | *tend-- = '\0'; |
6170680b |
203 | if (num_svs) { |
b931b1d9 |
204 | /* New style explict name, type is just mode and discipline/layer info */ |
faecd977 |
205 | STRLEN l; |
206 | name = SvPV(svs, l) ; |
207 | len = (I32)l; |
208 | name = savepvn(name, len); |
209 | SAVEFREEPV(name); |
b931b1d9 |
210 | /*SUPPRESS 530*/ |
211 | for (; isSPACE(*type); type++) ; |
6170680b |
212 | } |
faecd977 |
213 | else { |
faecd977 |
214 | name = type; |
b931b1d9 |
215 | len = tend-type; |
faecd977 |
216 | } |
6170680b |
217 | IoTYPE(io) = *type; |
9cbac4c7 |
218 | if ((*type == IoTYPE_RDWR) && ((!num_svs || tend > type+1 && tend[-1] != IoTYPE_PIPE))) { /* scary */ |
6170680b |
219 | mode[1] = *type++; |
c07a80fd |
220 | writing = 1; |
a687059c |
221 | } |
c07a80fd |
222 | |
9f37169a |
223 | if (*type == IoTYPE_PIPE) { |
b931b1d9 |
224 | if (num_svs) { |
225 | if (type[1] != IoTYPE_STD) { |
226 | unknown_desr: |
227 | Perl_croak(aTHX_ "Unknown open() mode '%.*s'", (int)olen, oname); |
228 | } |
229 | type++; |
6170680b |
230 | } |
c07a80fd |
231 | /*SUPPRESS 530*/ |
b931b1d9 |
232 | for (type++; isSPACE(*type); type++) ; |
faecd977 |
233 | if (!num_svs) { |
6170680b |
234 | name = type; |
b931b1d9 |
235 | len = tend-type; |
faecd977 |
236 | } |
06eaf0bc |
237 | if (*name == '\0') { /* command is missing 19990114 */ |
06eaf0bc |
238 | if (ckWARN(WARN_PIPE)) |
cea2e8a9 |
239 | Perl_warner(aTHX_ WARN_PIPE, "Missing command in piped open"); |
06eaf0bc |
240 | errno = EPIPE; |
241 | goto say_false; |
242 | } |
6170680b |
243 | if (strNE(name,"-") || num_svs) |
c07a80fd |
244 | TAINT_ENV(); |
245 | TAINT_PROPER("piped open"); |
b931b1d9 |
246 | if (!num_svs && name[len-1] == '|') { |
faecd977 |
247 | name[--len] = '\0' ; |
599cee73 |
248 | if (ckWARN(WARN_PIPE)) |
9a7dcd9c |
249 | Perl_warner(aTHX_ WARN_PIPE, "Can't open bidirectional pipe"); |
7b8d334a |
250 | } |
a1d180c4 |
251 | mode[0] = 'w'; |
c07a80fd |
252 | writing = 1; |
a1d180c4 |
253 | if (out_raw) |
254 | strcat(mode, "b"); |
255 | else if (out_crlf) |
256 | strcat(mode, "t"); |
257 | fp = PerlProc_popen(name,mode); |
c07a80fd |
258 | } |
9f37169a |
259 | else if (*type == IoTYPE_WRONLY) { |
c07a80fd |
260 | TAINT_PROPER("open"); |
6170680b |
261 | type++; |
9f37169a |
262 | if (*type == IoTYPE_WRONLY) { |
263 | /* Two IoTYPE_WRONLYs in a row make for an IoTYPE_APPEND. */ |
50952442 |
264 | mode[0] = IoTYPE(io) = IoTYPE_APPEND; |
6170680b |
265 | type++; |
a0d0e21e |
266 | } |
c07a80fd |
267 | else |
268 | mode[0] = 'w'; |
269 | writing = 1; |
270 | |
16fe6d59 |
271 | if (out_raw) |
272 | strcat(mode, "b"); |
273 | else if (out_crlf) |
274 | strcat(mode, "t"); |
275 | |
6170680b |
276 | if (*type == '&') { |
277 | name = type; |
c07a80fd |
278 | duplicity: |
b931b1d9 |
279 | if (num_svs) |
280 | goto unknown_desr; |
c07a80fd |
281 | dodup = 1; |
282 | name++; |
283 | if (*name == '=') { |
284 | dodup = 0; |
a0d0e21e |
285 | name++; |
c07a80fd |
286 | } |
287 | if (!*name && supplied_fp) |
288 | fp = supplied_fp; |
a0d0e21e |
289 | else { |
c07a80fd |
290 | /*SUPPRESS 530*/ |
291 | for (; isSPACE(*name); name++) ; |
292 | if (isDIGIT(*name)) |
293 | fd = atoi(name); |
294 | else { |
295 | IO* thatio; |
296 | gv = gv_fetchpv(name,FALSE,SVt_PVIO); |
297 | thatio = GvIO(gv); |
298 | if (!thatio) { |
6e21c824 |
299 | #ifdef EINVAL |
c07a80fd |
300 | SETERRNO(EINVAL,SS$_IVCHAN); |
6e21c824 |
301 | #endif |
c07a80fd |
302 | goto say_false; |
303 | } |
304 | if (IoIFP(thatio)) { |
54195c32 |
305 | PerlIO *fp = IoIFP(thatio); |
7211d486 |
306 | /* Flush stdio buffer before dup. --mjd |
307 | * Unfortunately SEEK_CURing 0 seems to |
308 | * be optimized away on most platforms; |
309 | * only Solaris and Linux seem to flush |
310 | * on that. --jhi */ |
2c534a3f |
311 | #ifdef USE_SFIO |
312 | /* sfio fails to clear error on next |
313 | sfwrite, contrary to documentation. |
314 | -- Nick Clark */ |
315 | if (PerlIO_seek(fp, 0, SEEK_CUR) == -1) |
316 | PerlIO_clearerr(fp); |
317 | #endif |
7211d486 |
318 | /* On the other hand, do all platforms |
319 | * take gracefully to flushing a read-only |
320 | * filehandle? Perhaps we should do |
321 | * fsetpos(src)+fgetpos(dst)? --nik */ |
322 | PerlIO_flush(fp); |
54195c32 |
323 | fd = PerlIO_fileno(fp); |
0759c907 |
324 | /* When dup()ing STDIN, STDOUT or STDERR |
325 | * explicitly set appropriate access mode */ |
326 | if (IoIFP(thatio) == PerlIO_stdout() |
327 | || IoIFP(thatio) == PerlIO_stderr()) |
328 | IoTYPE(io) = IoTYPE_WRONLY; |
329 | else if (IoIFP(thatio) == PerlIO_stdin()) |
330 | IoTYPE(io) = IoTYPE_RDONLY; |
331 | /* When dup()ing a socket, say result is |
332 | * one as well */ |
333 | else if (IoTYPE(thatio) == IoTYPE_SOCKET) |
50952442 |
334 | IoTYPE(io) = IoTYPE_SOCKET; |
c07a80fd |
335 | } |
336 | else |
337 | fd = -1; |
a0d0e21e |
338 | } |
fec02dd3 |
339 | if (dodup) |
3028581b |
340 | fd = PerlLIO_dup(fd); |
3500f679 |
341 | else |
342 | was_fdopen = TRUE; |
760ac839 |
343 | if (!(fp = PerlIO_fdopen(fd,mode))) { |
c07a80fd |
344 | if (dodup) |
3028581b |
345 | PerlLIO_close(fd); |
faecd977 |
346 | } |
c07a80fd |
347 | } |
bf38876a |
348 | } |
c07a80fd |
349 | else { |
350 | /*SUPPRESS 530*/ |
6170680b |
351 | for (; isSPACE(*type); type++) ; |
b931b1d9 |
352 | if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) { |
353 | /*SUPPRESS 530*/ |
354 | type++; |
760ac839 |
355 | fp = PerlIO_stdout(); |
50952442 |
356 | IoTYPE(io) = IoTYPE_STD; |
c07a80fd |
357 | } |
358 | else { |
6170680b |
359 | fp = PerlIO_open((num_svs ? name : type), mode); |
c07a80fd |
360 | } |
bf38876a |
361 | } |
362 | } |
9f37169a |
363 | else if (*type == IoTYPE_RDONLY) { |
c07a80fd |
364 | /*SUPPRESS 530*/ |
6170680b |
365 | for (type++; isSPACE(*type); type++) ; |
bf38876a |
366 | mode[0] = 'r'; |
16fe6d59 |
367 | if (in_raw) |
368 | strcat(mode, "b"); |
369 | else if (in_crlf) |
370 | strcat(mode, "t"); |
371 | |
6170680b |
372 | if (*type == '&') { |
373 | name = type; |
bf38876a |
374 | goto duplicity; |
6170680b |
375 | } |
b931b1d9 |
376 | if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) || type[1] == ':')) { |
377 | /*SUPPRESS 530*/ |
378 | type++; |
760ac839 |
379 | fp = PerlIO_stdin(); |
50952442 |
380 | IoTYPE(io) = IoTYPE_STD; |
a687059c |
381 | } |
bf38876a |
382 | else |
6170680b |
383 | fp = PerlIO_open((num_svs ? name : type), mode); |
a687059c |
384 | } |
b931b1d9 |
385 | else if ((num_svs && type[0] == IoTYPE_STD && type[1] == IoTYPE_PIPE) || |
386 | (!num_svs && tend > type+1 && tend[-1] == IoTYPE_PIPE)) { |
6170680b |
387 | if (num_svs) { |
b931b1d9 |
388 | type += 2; /* skip over '-|' */ |
6170680b |
389 | } |
390 | else { |
b931b1d9 |
391 | *--tend = '\0'; |
392 | while (tend > type && isSPACE(tend[-1])) |
393 | *--tend = '\0'; |
6170680b |
394 | /*SUPPRESS 530*/ |
395 | for (; isSPACE(*type); type++) ; |
396 | name = type; |
b931b1d9 |
397 | len = tend-type; |
6170680b |
398 | } |
06eaf0bc |
399 | if (*name == '\0') { /* command is missing 19990114 */ |
06eaf0bc |
400 | if (ckWARN(WARN_PIPE)) |
cea2e8a9 |
401 | Perl_warner(aTHX_ WARN_PIPE, "Missing command in piped open"); |
06eaf0bc |
402 | errno = EPIPE; |
403 | goto say_false; |
404 | } |
6170680b |
405 | if (strNE(name,"-") || num_svs) |
79072805 |
406 | TAINT_ENV(); |
407 | TAINT_PROPER("piped open"); |
a1d180c4 |
408 | mode[0] = 'r'; |
409 | if (in_raw) |
410 | strcat(mode, "b"); |
411 | else if (in_crlf) |
412 | strcat(mode, "t"); |
413 | fp = PerlProc_popen(name,mode); |
50952442 |
414 | IoTYPE(io) = IoTYPE_PIPE; |
a687059c |
415 | } |
416 | else { |
6170680b |
417 | if (num_svs) |
418 | goto unknown_desr; |
419 | name = type; |
50952442 |
420 | IoTYPE(io) = IoTYPE_RDONLY; |
99b89507 |
421 | /*SUPPRESS 530*/ |
422 | for (; isSPACE(*name); name++) ; |
88b61e10 |
423 | mode[0] = 'r'; |
424 | if (in_raw) |
425 | strcat(mode, "b"); |
426 | else if (in_crlf) |
427 | strcat(mode, "t"); |
a687059c |
428 | if (strEQ(name,"-")) { |
760ac839 |
429 | fp = PerlIO_stdin(); |
50952442 |
430 | IoTYPE(io) = IoTYPE_STD; |
a687059c |
431 | } |
16fe6d59 |
432 | else { |
16fe6d59 |
433 | fp = PerlIO_open(name,mode); |
434 | } |
a687059c |
435 | } |
436 | } |
bee1dbe2 |
437 | if (!fp) { |
50952442 |
438 | if (ckWARN(WARN_NEWLINE) && IoTYPE(io) == IoTYPE_RDONLY && strchr(name, '\n')) |
cea2e8a9 |
439 | Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "open"); |
6e21c824 |
440 | goto say_false; |
bee1dbe2 |
441 | } |
88b61e10 |
442 | if (IoTYPE(io) && IoTYPE(io) != IoTYPE_PIPE && IoTYPE(io) != IoTYPE_STD) { |
3280af22 |
443 | if (PerlLIO_fstat(PerlIO_fileno(fp),&PL_statbuf) < 0) { |
760ac839 |
444 | (void)PerlIO_close(fp); |
6e21c824 |
445 | goto say_false; |
a687059c |
446 | } |
3280af22 |
447 | if (S_ISSOCK(PL_statbuf.st_mode)) |
50952442 |
448 | IoTYPE(io) = IoTYPE_SOCKET; /* in case a socket was passed in to us */ |
99b89507 |
449 | #ifdef HAS_SOCKET |
450 | else if ( |
c623bd54 |
451 | #ifdef S_IFMT |
3280af22 |
452 | !(PL_statbuf.st_mode & S_IFMT) |
99b89507 |
453 | #else |
b28d0864 |
454 | !PL_statbuf.st_mode |
99b89507 |
455 | #endif |
0759c907 |
456 | && IoTYPE(io) != IoTYPE_WRONLY /* Dups of STD* filehandles already have */ |
457 | && IoTYPE(io) != IoTYPE_RDONLY /* type so they aren't marked as sockets */ |
458 | ) { /* on OS's that return 0 on fstat()ed pipe */ |
96827780 |
459 | char tmpbuf[256]; |
460 | Sock_size_t buflen = sizeof tmpbuf; |
3028581b |
461 | if (PerlSock_getsockname(PerlIO_fileno(fp), (struct sockaddr *)tmpbuf, |
d574b85e |
462 | &buflen) >= 0 |
463 | || errno != ENOTSOCK) |
50952442 |
464 | IoTYPE(io) = IoTYPE_SOCKET; /* some OS's return 0 on fstat()ed socket */ |
99b89507 |
465 | /* but some return 0 for streams too, sigh */ |
466 | } |
bf38876a |
467 | #endif |
a687059c |
468 | } |
6e21c824 |
469 | if (saveifp) { /* must use old fp? */ |
f5b9d040 |
470 | /* If fd is less that PL_maxsysfd i.e. STDIN..STDERR |
24c23ab4 |
471 | then dup the new fileno down |
f5b9d040 |
472 | */ |
760ac839 |
473 | fd = PerlIO_fileno(saveifp); |
6e21c824 |
474 | if (saveofp) { |
f5b9d040 |
475 | PerlIO_flush(saveofp); /* emulate PerlIO_close() */ |
6e21c824 |
476 | if (saveofp != saveifp) { /* was a socket? */ |
760ac839 |
477 | PerlIO_close(saveofp); |
24c23ab4 |
478 | /* This looks very suspect - NI-S 24 Nov 2000 */ |
99b89507 |
479 | if (fd > 2) |
f5b9d040 |
480 | Safefree(saveofp); /* ??? */ |
6e21c824 |
481 | } |
482 | } |
760ac839 |
483 | if (fd != PerlIO_fileno(fp)) { |
d8a83dd3 |
484 | Pid_t pid; |
79072805 |
485 | SV *sv; |
bee1dbe2 |
486 | |
3028581b |
487 | PerlLIO_dup2(PerlIO_fileno(fp), fd); |
d082dcd6 |
488 | #ifdef VMS |
489 | if (fd != PerlIO_fileno(PerlIO_stdin())) { |
490 | char newname[FILENAME_MAX+1]; |
491 | if (fgetname(fp, newname)) { |
492 | if (fd == PerlIO_fileno(PerlIO_stdout())) Perl_vmssetuserlnm("SYS$OUTPUT", newname); |
493 | if (fd == PerlIO_fileno(PerlIO_stderr())) Perl_vmssetuserlnm("SYS$ERROR", newname); |
494 | } |
495 | } |
496 | #endif |
4755096e |
497 | LOCK_FDPID_MUTEX; |
3280af22 |
498 | sv = *av_fetch(PL_fdpid,PerlIO_fileno(fp),TRUE); |
a0d0e21e |
499 | (void)SvUPGRADE(sv, SVt_IV); |
463ee0b2 |
500 | pid = SvIVX(sv); |
501 | SvIVX(sv) = 0; |
3280af22 |
502 | sv = *av_fetch(PL_fdpid,fd,TRUE); |
4755096e |
503 | UNLOCK_FDPID_MUTEX; |
a0d0e21e |
504 | (void)SvUPGRADE(sv, SVt_IV); |
463ee0b2 |
505 | SvIVX(sv) = pid; |
3500f679 |
506 | if (!was_fdopen) |
507 | PerlIO_close(fp); |
bee1dbe2 |
508 | |
6e21c824 |
509 | } |
510 | fp = saveifp; |
760ac839 |
511 | PerlIO_clearerr(fp); |
6e21c824 |
512 | } |
a0d0e21e |
513 | #if defined(HAS_FCNTL) && defined(F_SETFD) |
a8710ca1 |
514 | { |
515 | int save_errno = errno; |
516 | fd = PerlIO_fileno(fp); |
517 | fcntl(fd,F_SETFD,fd > PL_maxsysfd); /* can change errno */ |
518 | errno = save_errno; |
519 | } |
1462b684 |
520 | #endif |
8990e307 |
521 | IoIFP(io) = fp; |
b931b1d9 |
522 | if (!num_svs) { |
523 | /* Need to supply default type info from open.pm */ |
ac27b0f5 |
524 | SV *layers = PL_curcop->cop_io; |
b931b1d9 |
525 | type = NULL; |
ac27b0f5 |
526 | if (layers) { |
527 | STRLEN len; |
528 | type = SvPV(layers,len); |
529 | if (type && mode[0] != 'r') { |
530 | /* Skip to write part */ |
531 | char *s = strchr(type,0); |
532 | if (s && (s-type) < len) { |
533 | type = s+1; |
534 | } |
535 | } |
536 | } |
b931b1d9 |
537 | } |
538 | if (type) { |
539 | while (isSPACE(*type)) type++; |
540 | if (*type) { |
a567e93b |
541 | errno = 0; |
ac27b0f5 |
542 | if (PerlIO_apply_layers(aTHX_ IoIFP(io),mode,type) != 0) { |
543 | goto say_false; |
544 | } |
b931b1d9 |
545 | } |
546 | } |
547 | |
684bef36 |
548 | IoFLAGS(io) &= ~IOf_NOLINE; |
bf38876a |
549 | if (writing) { |
50952442 |
550 | if (IoTYPE(io) == IoTYPE_SOCKET |
551 | || (IoTYPE(io) == IoTYPE_WRONLY && S_ISCHR(PL_statbuf.st_mode)) ) |
16fe6d59 |
552 | { |
b931b1d9 |
553 | mode[0] = 'w'; |
16fe6d59 |
554 | if (!(IoOFP(io) = PerlIO_fdopen(PerlIO_fileno(fp),mode))) { |
760ac839 |
555 | PerlIO_close(fp); |
8990e307 |
556 | IoIFP(io) = Nullfp; |
6e21c824 |
557 | goto say_false; |
fe14fcc3 |
558 | } |
ac27b0f5 |
559 | if (type && *type) { |
560 | if (PerlIO_apply_layers(aTHX_ IoOFP(io),mode,type) != 0) { |
561 | PerlIO_close(IoOFP(io)); |
562 | PerlIO_close(fp); |
563 | IoIFP(io) = Nullfp; |
564 | IoOFP(io) = Nullfp; |
565 | goto say_false; |
566 | } |
567 | } |
1462b684 |
568 | } |
569 | else |
8990e307 |
570 | IoOFP(io) = fp; |
bf38876a |
571 | } |
a687059c |
572 | return TRUE; |
6e21c824 |
573 | |
574 | say_false: |
8990e307 |
575 | IoIFP(io) = saveifp; |
576 | IoOFP(io) = saveofp; |
577 | IoTYPE(io) = savetype; |
6e21c824 |
578 | return FALSE; |
a687059c |
579 | } |
580 | |
760ac839 |
581 | PerlIO * |
864dbfa3 |
582 | Perl_nextargv(pTHX_ register GV *gv) |
a687059c |
583 | { |
79072805 |
584 | register SV *sv; |
99b89507 |
585 | #ifndef FLEXFILENAMES |
c623bd54 |
586 | int filedev; |
587 | int fileino; |
99b89507 |
588 | #endif |
761237fe |
589 | Uid_t fileuid; |
590 | Gid_t filegid; |
18708f5a |
591 | IO *io = GvIOp(gv); |
fe14fcc3 |
592 | |
3280af22 |
593 | if (!PL_argvoutgv) |
594 | PL_argvoutgv = gv_fetchpv("ARGVOUT",TRUE,SVt_PVIO); |
18708f5a |
595 | if (io && (IoFLAGS(io) & IOf_ARGV) && (IoFLAGS(io) & IOf_START)) { |
596 | IoFLAGS(io) &= ~IOf_START; |
7a1c5554 |
597 | if (PL_inplace) { |
598 | if (!PL_argvout_stack) |
599 | PL_argvout_stack = newAV(); |
18708f5a |
600 | av_push(PL_argvout_stack, SvREFCNT_inc(PL_defoutgv)); |
7a1c5554 |
601 | } |
18708f5a |
602 | } |
3280af22 |
603 | if (PL_filemode & (S_ISUID|S_ISGID)) { |
604 | PerlIO_flush(IoIFP(GvIOn(PL_argvoutgv))); /* chmod must follow last write */ |
fe14fcc3 |
605 | #ifdef HAS_FCHMOD |
3280af22 |
606 | (void)fchmod(PL_lastfd,PL_filemode); |
fe14fcc3 |
607 | #else |
b28d0864 |
608 | (void)PerlLIO_chmod(PL_oldname,PL_filemode); |
fe14fcc3 |
609 | #endif |
610 | } |
3280af22 |
611 | PL_filemode = 0; |
79072805 |
612 | while (av_len(GvAV(gv)) >= 0) { |
85aff577 |
613 | STRLEN oldlen; |
79072805 |
614 | sv = av_shift(GvAV(gv)); |
8990e307 |
615 | SAVEFREESV(sv); |
79072805 |
616 | sv_setsv(GvSV(gv),sv); |
617 | SvSETMAGIC(GvSV(gv)); |
3280af22 |
618 | PL_oldname = SvPVx(GvSV(gv), oldlen); |
9d116dd7 |
619 | if (do_open(gv,PL_oldname,oldlen,PL_inplace!=0,O_RDONLY,0,Nullfp)) { |
3280af22 |
620 | if (PL_inplace) { |
79072805 |
621 | TAINT_PROPER("inplace open"); |
3280af22 |
622 | if (oldlen == 1 && *PL_oldname == '-') { |
4633a7c4 |
623 | setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO)); |
a0d0e21e |
624 | return IoIFP(GvIOp(gv)); |
c623bd54 |
625 | } |
99b89507 |
626 | #ifndef FLEXFILENAMES |
b28d0864 |
627 | filedev = PL_statbuf.st_dev; |
628 | fileino = PL_statbuf.st_ino; |
99b89507 |
629 | #endif |
3280af22 |
630 | PL_filemode = PL_statbuf.st_mode; |
631 | fileuid = PL_statbuf.st_uid; |
632 | filegid = PL_statbuf.st_gid; |
633 | if (!S_ISREG(PL_filemode)) { |
0453d815 |
634 | if (ckWARN_d(WARN_INPLACE)) |
635 | Perl_warner(aTHX_ WARN_INPLACE, |
636 | "Can't do inplace edit: %s is not a regular file", |
637 | PL_oldname ); |
79072805 |
638 | do_close(gv,FALSE); |
c623bd54 |
639 | continue; |
640 | } |
3280af22 |
641 | if (*PL_inplace) { |
642 | char *star = strchr(PL_inplace, '*'); |
2d259d92 |
643 | if (star) { |
3280af22 |
644 | char *begin = PL_inplace; |
2d259d92 |
645 | sv_setpvn(sv, "", 0); |
646 | do { |
647 | sv_catpvn(sv, begin, star - begin); |
3280af22 |
648 | sv_catpvn(sv, PL_oldname, oldlen); |
2d259d92 |
649 | begin = ++star; |
650 | } while ((star = strchr(begin, '*'))); |
3d66d7bb |
651 | if (*begin) |
652 | sv_catpv(sv,begin); |
2d259d92 |
653 | } |
654 | else { |
3280af22 |
655 | sv_catpv(sv,PL_inplace); |
2d259d92 |
656 | } |
c623bd54 |
657 | #ifndef FLEXFILENAMES |
b28d0864 |
658 | if (PerlLIO_stat(SvPVX(sv),&PL_statbuf) >= 0 |
659 | && PL_statbuf.st_dev == filedev |
660 | && PL_statbuf.st_ino == fileino |
39e571d4 |
661 | #ifdef DJGPP |
662 | || (_djstat_fail_bits & _STFAIL_TRUENAME)!=0 |
663 | #endif |
f248d071 |
664 | ) |
665 | { |
666 | if (ckWARN_d(WARN_INPLACE)) |
667 | Perl_warner(aTHX_ WARN_INPLACE, |
668 | "Can't do inplace edit: %s would not be unique", |
669 | SvPVX(sv)); |
79072805 |
670 | do_close(gv,FALSE); |
c623bd54 |
671 | continue; |
672 | } |
673 | #endif |
fe14fcc3 |
674 | #ifdef HAS_RENAME |
d308986b |
675 | #if !defined(DOSISH) && !defined(__CYGWIN__) |
3280af22 |
676 | if (PerlLIO_rename(PL_oldname,SvPVX(sv)) < 0) { |
0453d815 |
677 | if (ckWARN_d(WARN_INPLACE)) |
a1d180c4 |
678 | Perl_warner(aTHX_ WARN_INPLACE, |
0453d815 |
679 | "Can't rename %s to %s: %s, skipping file", |
680 | PL_oldname, SvPVX(sv), Strerror(errno) ); |
79072805 |
681 | do_close(gv,FALSE); |
c623bd54 |
682 | continue; |
683 | } |
a687059c |
684 | #else |
79072805 |
685 | do_close(gv,FALSE); |
3028581b |
686 | (void)PerlLIO_unlink(SvPVX(sv)); |
b28d0864 |
687 | (void)PerlLIO_rename(PL_oldname,SvPVX(sv)); |
9d116dd7 |
688 | do_open(gv,SvPVX(sv),SvCUR(sv),PL_inplace!=0,O_RDONLY,0,Nullfp); |
55497cff |
689 | #endif /* DOSISH */ |
ff8e2863 |
690 | #else |
463ee0b2 |
691 | (void)UNLINK(SvPVX(sv)); |
b28d0864 |
692 | if (link(PL_oldname,SvPVX(sv)) < 0) { |
0453d815 |
693 | if (ckWARN_d(WARN_INPLACE)) |
694 | Perl_warner(aTHX_ WARN_INPLACE, |
695 | "Can't rename %s to %s: %s, skipping file", |
696 | PL_oldname, SvPVX(sv), Strerror(errno) ); |
79072805 |
697 | do_close(gv,FALSE); |
c623bd54 |
698 | continue; |
699 | } |
b28d0864 |
700 | (void)UNLINK(PL_oldname); |
a687059c |
701 | #endif |
702 | } |
703 | else { |
a8c18271 |
704 | #if !defined(DOSISH) && !defined(AMIGAOS) |
edc7bc49 |
705 | # ifndef VMS /* Don't delete; use automatic file versioning */ |
3280af22 |
706 | if (UNLINK(PL_oldname) < 0) { |
0453d815 |
707 | if (ckWARN_d(WARN_INPLACE)) |
708 | Perl_warner(aTHX_ WARN_INPLACE, |
709 | "Can't remove %s: %s, skipping file", |
710 | PL_oldname, Strerror(errno) ); |
79072805 |
711 | do_close(gv,FALSE); |
fe14fcc3 |
712 | continue; |
713 | } |
edc7bc49 |
714 | # endif |
ff8e2863 |
715 | #else |
cea2e8a9 |
716 | Perl_croak(aTHX_ "Can't do inplace edit without backup"); |
ff8e2863 |
717 | #endif |
a687059c |
718 | } |
719 | |
3280af22 |
720 | sv_setpvn(sv,">",!PL_inplace); |
721 | sv_catpvn(sv,PL_oldname,oldlen); |
748a9306 |
722 | SETERRNO(0,0); /* in case sprintf set errno */ |
4119ab01 |
723 | #ifdef VMS |
724 | if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0, |
18708f5a |
725 | O_WRONLY|O_CREAT|O_TRUNC,0,Nullfp)) |
4119ab01 |
726 | #else |
3280af22 |
727 | if (!do_open(PL_argvoutgv,SvPVX(sv),SvCUR(sv),PL_inplace!=0, |
18708f5a |
728 | O_WRONLY|O_CREAT|OPEN_EXCL,0666,Nullfp)) |
4119ab01 |
729 | #endif |
18708f5a |
730 | { |
0453d815 |
731 | if (ckWARN_d(WARN_INPLACE)) |
732 | Perl_warner(aTHX_ WARN_INPLACE, "Can't do inplace edit on %s: %s", |
733 | PL_oldname, Strerror(errno) ); |
79072805 |
734 | do_close(gv,FALSE); |
fe14fcc3 |
735 | continue; |
736 | } |
3280af22 |
737 | setdefout(PL_argvoutgv); |
738 | PL_lastfd = PerlIO_fileno(IoIFP(GvIOp(PL_argvoutgv))); |
739 | (void)PerlLIO_fstat(PL_lastfd,&PL_statbuf); |
fe14fcc3 |
740 | #ifdef HAS_FCHMOD |
3280af22 |
741 | (void)fchmod(PL_lastfd,PL_filemode); |
a687059c |
742 | #else |
3e3baf6d |
743 | # if !(defined(WIN32) && defined(__BORLANDC__)) |
744 | /* Borland runtime creates a readonly file! */ |
b28d0864 |
745 | (void)PerlLIO_chmod(PL_oldname,PL_filemode); |
3e3baf6d |
746 | # endif |
a687059c |
747 | #endif |
3280af22 |
748 | if (fileuid != PL_statbuf.st_uid || filegid != PL_statbuf.st_gid) { |
fe14fcc3 |
749 | #ifdef HAS_FCHOWN |
3280af22 |
750 | (void)fchown(PL_lastfd,fileuid,filegid); |
a687059c |
751 | #else |
fe14fcc3 |
752 | #ifdef HAS_CHOWN |
b28d0864 |
753 | (void)PerlLIO_chown(PL_oldname,fileuid,filegid); |
a687059c |
754 | #endif |
b1248f16 |
755 | #endif |
fe14fcc3 |
756 | } |
a687059c |
757 | } |
a0d0e21e |
758 | return IoIFP(GvIOp(gv)); |
a687059c |
759 | } |
4d61ec05 |
760 | else { |
4d61ec05 |
761 | if (ckWARN_d(WARN_INPLACE)) { |
6af84f9f |
762 | int eno = errno; |
763 | if (PerlLIO_stat(PL_oldname, &PL_statbuf) >= 0 |
764 | && !S_ISREG(PL_statbuf.st_mode)) |
765 | { |
4d61ec05 |
766 | Perl_warner(aTHX_ WARN_INPLACE, |
767 | "Can't do inplace edit: %s is not a regular file", |
9a7dcd9c |
768 | PL_oldname); |
6af84f9f |
769 | } |
4d61ec05 |
770 | else |
9a7dcd9c |
771 | Perl_warner(aTHX_ WARN_INPLACE, "Can't open %s: %s", |
6af84f9f |
772 | PL_oldname, Strerror(eno)); |
4d61ec05 |
773 | } |
774 | } |
a687059c |
775 | } |
18708f5a |
776 | if (io && (IoFLAGS(io) & IOf_ARGV)) |
777 | IoFLAGS(io) |= IOf_START; |
3280af22 |
778 | if (PL_inplace) { |
779 | (void)do_close(PL_argvoutgv,FALSE); |
7a1c5554 |
780 | if (io && (IoFLAGS(io) & IOf_ARGV) |
781 | && PL_argvout_stack && AvFILLp(PL_argvout_stack) >= 0) |
782 | { |
18708f5a |
783 | GV *oldout = (GV*)av_pop(PL_argvout_stack); |
784 | setdefout(oldout); |
785 | SvREFCNT_dec(oldout); |
786 | return Nullfp; |
787 | } |
4633a7c4 |
788 | setdefout(gv_fetchpv("STDOUT",TRUE,SVt_PVIO)); |
a687059c |
789 | } |
790 | return Nullfp; |
791 | } |
792 | |
fe14fcc3 |
793 | #ifdef HAS_PIPE |
afd9f252 |
794 | void |
864dbfa3 |
795 | Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv) |
afd9f252 |
796 | { |
79072805 |
797 | register IO *rstio; |
798 | register IO *wstio; |
afd9f252 |
799 | int fd[2]; |
800 | |
79072805 |
801 | if (!rgv) |
afd9f252 |
802 | goto badexit; |
79072805 |
803 | if (!wgv) |
afd9f252 |
804 | goto badexit; |
805 | |
a0d0e21e |
806 | rstio = GvIOn(rgv); |
807 | wstio = GvIOn(wgv); |
afd9f252 |
808 | |
a0d0e21e |
809 | if (IoIFP(rstio)) |
79072805 |
810 | do_close(rgv,FALSE); |
a0d0e21e |
811 | if (IoIFP(wstio)) |
79072805 |
812 | do_close(wgv,FALSE); |
afd9f252 |
813 | |
3028581b |
814 | if (PerlProc_pipe(fd) < 0) |
afd9f252 |
815 | goto badexit; |
760ac839 |
816 | IoIFP(rstio) = PerlIO_fdopen(fd[0], "r"); |
817 | IoOFP(wstio) = PerlIO_fdopen(fd[1], "w"); |
8990e307 |
818 | IoIFP(wstio) = IoOFP(wstio); |
50952442 |
819 | IoTYPE(rstio) = IoTYPE_RDONLY; |
820 | IoTYPE(wstio) = IoTYPE_WRONLY; |
8990e307 |
821 | if (!IoIFP(rstio) || !IoOFP(wstio)) { |
760ac839 |
822 | if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio)); |
3028581b |
823 | else PerlLIO_close(fd[0]); |
760ac839 |
824 | if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio)); |
3028581b |
825 | else PerlLIO_close(fd[1]); |
fe14fcc3 |
826 | goto badexit; |
827 | } |
afd9f252 |
828 | |
3280af22 |
829 | sv_setsv(sv,&PL_sv_yes); |
afd9f252 |
830 | return; |
831 | |
832 | badexit: |
3280af22 |
833 | sv_setsv(sv,&PL_sv_undef); |
afd9f252 |
834 | return; |
835 | } |
b1248f16 |
836 | #endif |
afd9f252 |
837 | |
517844ec |
838 | /* explicit renamed to avoid C++ conflict -- kja */ |
a687059c |
839 | bool |
864dbfa3 |
840 | Perl_do_close(pTHX_ GV *gv, bool not_implicit) |
a687059c |
841 | { |
1193dd27 |
842 | bool retval; |
843 | IO *io; |
a687059c |
844 | |
79072805 |
845 | if (!gv) |
3280af22 |
846 | gv = PL_argvgv; |
a0d0e21e |
847 | if (!gv || SvTYPE(gv) != SVt_PVGV) { |
1d2dff63 |
848 | if (not_implicit) |
849 | SETERRNO(EBADF,SS$_IVCHAN); |
c2ab57d4 |
850 | return FALSE; |
99b89507 |
851 | } |
79072805 |
852 | io = GvIO(gv); |
853 | if (!io) { /* never opened */ |
1d2dff63 |
854 | if (not_implicit) { |
2dd78f96 |
855 | if (ckWARN(WARN_UNOPENED)) /* no check for closed here */ |
856 | report_evil_fh(gv, io, PL_op->op_type); |
1d2dff63 |
857 | SETERRNO(EBADF,SS$_IVCHAN); |
858 | } |
a687059c |
859 | return FALSE; |
860 | } |
f2b5be74 |
861 | retval = io_close(io, not_implicit); |
517844ec |
862 | if (not_implicit) { |
1193dd27 |
863 | IoLINES(io) = 0; |
864 | IoPAGE(io) = 0; |
865 | IoLINES_LEFT(io) = IoPAGE_LEN(io); |
866 | } |
50952442 |
867 | IoTYPE(io) = IoTYPE_CLOSED; |
1193dd27 |
868 | return retval; |
869 | } |
870 | |
871 | bool |
f2b5be74 |
872 | Perl_io_close(pTHX_ IO *io, bool not_implicit) |
1193dd27 |
873 | { |
874 | bool retval = FALSE; |
875 | int status; |
876 | |
8990e307 |
877 | if (IoIFP(io)) { |
50952442 |
878 | if (IoTYPE(io) == IoTYPE_PIPE) { |
3028581b |
879 | status = PerlProc_pclose(IoIFP(io)); |
f2b5be74 |
880 | if (not_implicit) { |
881 | STATUS_NATIVE_SET(status); |
882 | retval = (STATUS_POSIX == 0); |
883 | } |
884 | else { |
885 | retval = (status != -1); |
886 | } |
a687059c |
887 | } |
50952442 |
888 | else if (IoTYPE(io) == IoTYPE_STD) |
a687059c |
889 | retval = TRUE; |
890 | else { |
8990e307 |
891 | if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { /* a socket */ |
760ac839 |
892 | retval = (PerlIO_close(IoOFP(io)) != EOF); |
893 | PerlIO_close(IoIFP(io)); /* clear stdio, fd already closed */ |
c2ab57d4 |
894 | } |
895 | else |
760ac839 |
896 | retval = (PerlIO_close(IoIFP(io)) != EOF); |
a687059c |
897 | } |
8990e307 |
898 | IoOFP(io) = IoIFP(io) = Nullfp; |
79072805 |
899 | } |
f2b5be74 |
900 | else if (not_implicit) { |
20408e3c |
901 | SETERRNO(EBADF,SS$_IVCHAN); |
902 | } |
1193dd27 |
903 | |
a687059c |
904 | return retval; |
905 | } |
906 | |
907 | bool |
864dbfa3 |
908 | Perl_do_eof(pTHX_ GV *gv) |
a687059c |
909 | { |
79072805 |
910 | register IO *io; |
a687059c |
911 | int ch; |
912 | |
79072805 |
913 | io = GvIO(gv); |
a687059c |
914 | |
79072805 |
915 | if (!io) |
a687059c |
916 | return TRUE; |
af8c498a |
917 | else if (ckWARN(WARN_IO) |
50952442 |
918 | && (IoTYPE(io) == IoTYPE_WRONLY || IoIFP(io) == PerlIO_stdout() |
af8c498a |
919 | || IoIFP(io) == PerlIO_stderr())) |
920 | { |
2dd78f96 |
921 | /* integrate to report_evil_fh()? */ |
a1d180c4 |
922 | char *name = NULL; |
2dd78f96 |
923 | if (isGV(gv)) { |
924 | SV* sv = sv_newmortal(); |
925 | gv_efullname4(sv, gv, Nullch, FALSE); |
926 | name = SvPV_nolen(sv); |
927 | } |
928 | if (name && *name) |
929 | Perl_warner(aTHX_ WARN_IO, |
930 | "Filehandle %s opened only for output", name); |
931 | else |
932 | Perl_warner(aTHX_ WARN_IO, |
933 | "Filehandle opened only for output"); |
af8c498a |
934 | } |
a687059c |
935 | |
8990e307 |
936 | while (IoIFP(io)) { |
a687059c |
937 | |
760ac839 |
938 | if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */ |
a20bf0c3 |
939 | if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */ |
760ac839 |
940 | return FALSE; /* this is the most usual case */ |
941 | } |
a687059c |
942 | |
760ac839 |
943 | ch = PerlIO_getc(IoIFP(io)); |
a687059c |
944 | if (ch != EOF) { |
760ac839 |
945 | (void)PerlIO_ungetc(IoIFP(io),ch); |
a687059c |
946 | return FALSE; |
947 | } |
fab3f3a7 |
948 | |
760ac839 |
949 | if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) { |
a20bf0c3 |
950 | if (PerlIO_get_cnt(IoIFP(io)) < -1) |
951 | PerlIO_set_cnt(IoIFP(io),-1); |
760ac839 |
952 | } |
533c011a |
953 | if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */ |
3280af22 |
954 | if (!nextargv(PL_argvgv)) /* get another fp handy */ |
a687059c |
955 | return TRUE; |
956 | } |
957 | else |
958 | return TRUE; /* normal fp, definitely end of file */ |
959 | } |
960 | return TRUE; |
961 | } |
962 | |
5ff3f7a4 |
963 | Off_t |
864dbfa3 |
964 | Perl_do_tell(pTHX_ GV *gv) |
a687059c |
965 | { |
79072805 |
966 | register IO *io; |
96e4d5b1 |
967 | register PerlIO *fp; |
a687059c |
968 | |
96e4d5b1 |
969 | if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) { |
bee1dbe2 |
970 | #ifdef ULTRIX_STDIO_BOTCH |
96e4d5b1 |
971 | if (PerlIO_eof(fp)) |
972 | (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */ |
bee1dbe2 |
973 | #endif |
8903cb82 |
974 | return PerlIO_tell(fp); |
96e4d5b1 |
975 | } |
411caa50 |
976 | if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) |
977 | report_evil_fh(gv, io, PL_op->op_type); |
748a9306 |
978 | SETERRNO(EBADF,RMS$_IFI); |
5ff3f7a4 |
979 | return (Off_t)-1; |
a687059c |
980 | } |
981 | |
982 | bool |
864dbfa3 |
983 | Perl_do_seek(pTHX_ GV *gv, Off_t pos, int whence) |
a687059c |
984 | { |
79072805 |
985 | register IO *io; |
137443ea |
986 | register PerlIO *fp; |
a687059c |
987 | |
137443ea |
988 | if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) { |
bee1dbe2 |
989 | #ifdef ULTRIX_STDIO_BOTCH |
137443ea |
990 | if (PerlIO_eof(fp)) |
991 | (void)PerlIO_seek(fp, 0L, 2); /* ultrix 1.2 workaround */ |
bee1dbe2 |
992 | #endif |
8903cb82 |
993 | return PerlIO_seek(fp, pos, whence) >= 0; |
137443ea |
994 | } |
411caa50 |
995 | if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) |
996 | report_evil_fh(gv, io, PL_op->op_type); |
748a9306 |
997 | SETERRNO(EBADF,RMS$_IFI); |
a687059c |
998 | return FALSE; |
999 | } |
1000 | |
97cc44eb |
1001 | Off_t |
864dbfa3 |
1002 | Perl_do_sysseek(pTHX_ GV *gv, Off_t pos, int whence) |
8903cb82 |
1003 | { |
1004 | register IO *io; |
1005 | register PerlIO *fp; |
1006 | |
1007 | if (gv && (io = GvIO(gv)) && (fp = IoIFP(io))) |
3028581b |
1008 | return PerlLIO_lseek(PerlIO_fileno(fp), pos, whence); |
411caa50 |
1009 | if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) |
1010 | report_evil_fh(gv, io, PL_op->op_type); |
8903cb82 |
1011 | SETERRNO(EBADF,RMS$_IFI); |
d9b3e12d |
1012 | return (Off_t)-1; |
8903cb82 |
1013 | } |
1014 | |
6ff81951 |
1015 | int |
16fe6d59 |
1016 | Perl_mode_from_discipline(pTHX_ SV *discp) |
1017 | { |
1018 | int mode = O_BINARY; |
1019 | if (discp) { |
1020 | STRLEN len; |
1021 | char *s = SvPV(discp,len); |
1022 | while (*s) { |
1023 | if (*s == ':') { |
1024 | switch (s[1]) { |
1025 | case 'r': |
1026 | if (len > 3 && strnEQ(s+1, "raw", 3) |
1027 | && (!s[4] || s[4] == ':' || isSPACE(s[4]))) |
1028 | { |
1029 | mode = O_BINARY; |
1030 | s += 4; |
1031 | len -= 4; |
1032 | break; |
1033 | } |
1034 | /* FALL THROUGH */ |
1035 | case 'c': |
1036 | if (len > 4 && strnEQ(s+1, "crlf", 4) |
1037 | && (!s[5] || s[5] == ':' || isSPACE(s[5]))) |
1038 | { |
1039 | mode = O_TEXT; |
1040 | s += 5; |
1041 | len -= 5; |
1042 | break; |
1043 | } |
1044 | /* FALL THROUGH */ |
1045 | default: |
1046 | goto fail_discipline; |
1047 | } |
1048 | } |
1049 | else if (isSPACE(*s)) { |
1050 | ++s; |
1051 | --len; |
1052 | } |
1053 | else { |
1054 | char *end; |
1055 | fail_discipline: |
1056 | end = strchr(s+1, ':'); |
1057 | if (!end) |
1058 | end = s+len; |
60382766 |
1059 | #ifndef PERLIO_LAYERS |
16fe6d59 |
1060 | Perl_croak(aTHX_ "Unknown discipline '%.*s'", end-s, s); |
60382766 |
1061 | #else |
1062 | s = end; |
1063 | #endif |
16fe6d59 |
1064 | } |
1065 | } |
1066 | } |
1067 | return mode; |
1068 | } |
1069 | |
1070 | int |
1071 | Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
6ff81951 |
1072 | { |
60382766 |
1073 | /* The old body of this is now in non-LAYER part of perlio.c |
1074 | * This is a stub for any XS code which might have been calling it. |
1075 | */ |
1076 | char *name = (O_BINARY != O_TEXT && !(mode & O_BINARY)) ? ":crlf" : ":raw"; |
1077 | return PerlIO_binmode(aTHX_ fp, iotype, mode, name); |
6ff81951 |
1078 | } |
1079 | |
a0d0e21e |
1080 | #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP) |
c2ab57d4 |
1081 | /* code courtesy of William Kucharski */ |
fe14fcc3 |
1082 | #define HAS_CHSIZE |
6eb13c3b |
1083 | |
517844ec |
1084 | I32 my_chsize(fd, length) |
79072805 |
1085 | I32 fd; /* file descriptor */ |
85e6fe83 |
1086 | Off_t length; /* length to set file to */ |
6eb13c3b |
1087 | { |
6eb13c3b |
1088 | struct flock fl; |
1089 | struct stat filebuf; |
1090 | |
3028581b |
1091 | if (PerlLIO_fstat(fd, &filebuf) < 0) |
6eb13c3b |
1092 | return -1; |
1093 | |
1094 | if (filebuf.st_size < length) { |
1095 | |
1096 | /* extend file length */ |
1097 | |
3028581b |
1098 | if ((PerlLIO_lseek(fd, (length - 1), 0)) < 0) |
6eb13c3b |
1099 | return -1; |
1100 | |
1101 | /* write a "0" byte */ |
1102 | |
3028581b |
1103 | if ((PerlLIO_write(fd, "", 1)) != 1) |
6eb13c3b |
1104 | return -1; |
1105 | } |
1106 | else { |
1107 | /* truncate length */ |
1108 | |
1109 | fl.l_whence = 0; |
1110 | fl.l_len = 0; |
1111 | fl.l_start = length; |
a0d0e21e |
1112 | fl.l_type = F_WRLCK; /* write lock on file space */ |
6eb13c3b |
1113 | |
1114 | /* |
a0d0e21e |
1115 | * This relies on the UNDOCUMENTED F_FREESP argument to |
6eb13c3b |
1116 | * fcntl(2), which truncates the file so that it ends at the |
1117 | * position indicated by fl.l_start. |
1118 | * |
1119 | * Will minor miracles never cease? |
1120 | */ |
1121 | |
a0d0e21e |
1122 | if (fcntl(fd, F_FREESP, &fl) < 0) |
6eb13c3b |
1123 | return -1; |
1124 | |
1125 | } |
1126 | |
1127 | return 0; |
1128 | } |
a0d0e21e |
1129 | #endif /* F_FREESP */ |
ff8e2863 |
1130 | |
a687059c |
1131 | bool |
864dbfa3 |
1132 | Perl_do_print(pTHX_ register SV *sv, PerlIO *fp) |
a687059c |
1133 | { |
1134 | register char *tmps; |
463ee0b2 |
1135 | STRLEN len; |
a687059c |
1136 | |
79072805 |
1137 | /* assuming fp is checked earlier */ |
1138 | if (!sv) |
1139 | return TRUE; |
3280af22 |
1140 | if (PL_ofmt) { |
8990e307 |
1141 | if (SvGMAGICAL(sv)) |
79072805 |
1142 | mg_get(sv); |
463ee0b2 |
1143 | if (SvIOK(sv) && SvIVX(sv) != 0) { |
65202027 |
1144 | PerlIO_printf(fp, PL_ofmt, (NV)SvIVX(sv)); |
760ac839 |
1145 | return !PerlIO_error(fp); |
79072805 |
1146 | } |
463ee0b2 |
1147 | if ( (SvNOK(sv) && SvNVX(sv) != 0.0) |
79072805 |
1148 | || (looks_like_number(sv) && sv_2nv(sv) != 0.0) ) { |
3280af22 |
1149 | PerlIO_printf(fp, PL_ofmt, SvNVX(sv)); |
760ac839 |
1150 | return !PerlIO_error(fp); |
79072805 |
1151 | } |
a687059c |
1152 | } |
79072805 |
1153 | switch (SvTYPE(sv)) { |
1154 | case SVt_NULL: |
411caa50 |
1155 | if (ckWARN(WARN_UNINITIALIZED)) |
1156 | report_uninit(); |
ff8e2863 |
1157 | return TRUE; |
79072805 |
1158 | case SVt_IV: |
a0d0e21e |
1159 | if (SvIOK(sv)) { |
1160 | if (SvGMAGICAL(sv)) |
1161 | mg_get(sv); |
cf2093f6 |
1162 | if (SvIsUV(sv)) |
57def98f |
1163 | PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv)); |
cf2093f6 |
1164 | else |
57def98f |
1165 | PerlIO_printf(fp, "%"IVdf, (IV)SvIVX(sv)); |
760ac839 |
1166 | return !PerlIO_error(fp); |
a0d0e21e |
1167 | } |
1168 | /* FALL THROUGH */ |
79072805 |
1169 | default: |
7d59b7e4 |
1170 | if (PerlIO_isutf8(fp)) { |
f9a63242 |
1171 | if (!SvUTF8(sv)) |
1172 | sv_utf8_upgrade(sv = sv_mortalcopy(sv)); |
7d59b7e4 |
1173 | } |
f9a63242 |
1174 | else if (DO_UTF8(sv)) |
1175 | sv_utf8_downgrade((sv = sv_mortalcopy(sv)), FALSE); |
1176 | tmps = SvPV(sv, len); |
79072805 |
1177 | break; |
ff8e2863 |
1178 | } |
94e4c244 |
1179 | /* To detect whether the process is about to overstep its |
1180 | * filesize limit we would need getrlimit(). We could then |
1181 | * also transparently raise the limit with setrlimit() -- |
1182 | * but only until the system hard limit/the filesystem limit, |
c5dd3cdd |
1183 | * at which we would get EPERM. Note that when using buffered |
1184 | * io the write failure can be delayed until the flush/close. --jhi */ |
a21ac455 |
1185 | if (len && (PerlIO_write(fp,tmps,len) == 0)) |
a687059c |
1186 | return FALSE; |
760ac839 |
1187 | return !PerlIO_error(fp); |
a687059c |
1188 | } |
1189 | |
79072805 |
1190 | I32 |
cea2e8a9 |
1191 | Perl_my_stat(pTHX) |
a687059c |
1192 | { |
4e35701f |
1193 | djSP; |
79072805 |
1194 | IO *io; |
2dd78f96 |
1195 | GV* gv; |
79072805 |
1196 | |
533c011a |
1197 | if (PL_op->op_flags & OPf_REF) { |
924508f0 |
1198 | EXTEND(SP,1); |
2dd78f96 |
1199 | gv = cGVOP_gv; |
748a9306 |
1200 | do_fstat: |
2dd78f96 |
1201 | io = GvIO(gv); |
8990e307 |
1202 | if (io && IoIFP(io)) { |
2dd78f96 |
1203 | PL_statgv = gv; |
3280af22 |
1204 | sv_setpv(PL_statname,""); |
1205 | PL_laststype = OP_STAT; |
1206 | return (PL_laststatval = PerlLIO_fstat(PerlIO_fileno(IoIFP(io)), &PL_statcache)); |
a687059c |
1207 | } |
1208 | else { |
2dd78f96 |
1209 | if (gv == PL_defgv) |
3280af22 |
1210 | return PL_laststatval; |
2dd78f96 |
1211 | if (ckWARN2(WARN_UNOPENED,WARN_CLOSED)) |
1212 | report_evil_fh(gv, io, PL_op->op_type); |
3280af22 |
1213 | PL_statgv = Nullgv; |
1214 | sv_setpv(PL_statname,""); |
1215 | return (PL_laststatval = -1); |
a687059c |
1216 | } |
1217 | } |
1218 | else { |
748a9306 |
1219 | SV* sv = POPs; |
4b74e3fb |
1220 | char *s; |
2d8e6c8d |
1221 | STRLEN n_a; |
79072805 |
1222 | PUTBACK; |
748a9306 |
1223 | if (SvTYPE(sv) == SVt_PVGV) { |
2dd78f96 |
1224 | gv = (GV*)sv; |
748a9306 |
1225 | goto do_fstat; |
1226 | } |
1227 | else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVGV) { |
2dd78f96 |
1228 | gv = (GV*)SvRV(sv); |
748a9306 |
1229 | goto do_fstat; |
1230 | } |
1231 | |
2d8e6c8d |
1232 | s = SvPV(sv, n_a); |
3280af22 |
1233 | PL_statgv = Nullgv; |
1234 | sv_setpv(PL_statname, s); |
1235 | PL_laststype = OP_STAT; |
1236 | PL_laststatval = PerlLIO_stat(s, &PL_statcache); |
599cee73 |
1237 | if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(s, '\n')) |
cea2e8a9 |
1238 | Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "stat"); |
3280af22 |
1239 | return PL_laststatval; |
a687059c |
1240 | } |
1241 | } |
1242 | |
79072805 |
1243 | I32 |
cea2e8a9 |
1244 | Perl_my_lstat(pTHX) |
c623bd54 |
1245 | { |
4e35701f |
1246 | djSP; |
79072805 |
1247 | SV *sv; |
2d8e6c8d |
1248 | STRLEN n_a; |
533c011a |
1249 | if (PL_op->op_flags & OPf_REF) { |
924508f0 |
1250 | EXTEND(SP,1); |
638eceb6 |
1251 | if (cGVOP_gv == PL_defgv) { |
3280af22 |
1252 | if (PL_laststype != OP_LSTAT) |
cea2e8a9 |
1253 | Perl_croak(aTHX_ "The stat preceding -l _ wasn't an lstat"); |
3280af22 |
1254 | return PL_laststatval; |
fe14fcc3 |
1255 | } |
cea2e8a9 |
1256 | Perl_croak(aTHX_ "You can't use -l on a filehandle"); |
fe14fcc3 |
1257 | } |
c623bd54 |
1258 | |
3280af22 |
1259 | PL_laststype = OP_LSTAT; |
1260 | PL_statgv = Nullgv; |
79072805 |
1261 | sv = POPs; |
1262 | PUTBACK; |
2d8e6c8d |
1263 | sv_setpv(PL_statname,SvPV(sv, n_a)); |
2d8e6c8d |
1264 | PL_laststatval = PerlLIO_lstat(SvPV(sv, n_a),&PL_statcache); |
2d8e6c8d |
1265 | if (PL_laststatval < 0 && ckWARN(WARN_NEWLINE) && strchr(SvPV(sv, n_a), '\n')) |
cea2e8a9 |
1266 | Perl_warner(aTHX_ WARN_NEWLINE, PL_warn_nl, "lstat"); |
3280af22 |
1267 | return PL_laststatval; |
c623bd54 |
1268 | } |
1269 | |
a687059c |
1270 | bool |
864dbfa3 |
1271 | Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp) |
a687059c |
1272 | { |
d5a9bfb0 |
1273 | return do_aexec5(really, mark, sp, 0, 0); |
1274 | } |
1275 | |
1276 | bool |
2aa1486d |
1277 | Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp, |
1278 | int fd, int do_report) |
d5a9bfb0 |
1279 | { |
cd39f2b6 |
1280 | #ifdef MACOS_TRADITIONAL |
1281 | Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system"); |
1282 | #else |
a687059c |
1283 | register char **a; |
a687059c |
1284 | char *tmps; |
2d8e6c8d |
1285 | STRLEN n_a; |
a687059c |
1286 | |
79072805 |
1287 | if (sp > mark) { |
3280af22 |
1288 | New(401,PL_Argv, sp - mark + 1, char*); |
1289 | a = PL_Argv; |
79072805 |
1290 | while (++mark <= sp) { |
1291 | if (*mark) |
2d8e6c8d |
1292 | *a++ = SvPVx(*mark, n_a); |
a687059c |
1293 | else |
1294 | *a++ = ""; |
1295 | } |
1296 | *a = Nullch; |
3280af22 |
1297 | if (*PL_Argv[0] != '/') /* will execvp use PATH? */ |
79072805 |
1298 | TAINT_ENV(); /* testing IFS here is overkill, probably */ |
2d8e6c8d |
1299 | if (really && *(tmps = SvPV(really, n_a))) |
b4748376 |
1300 | PerlProc_execvp(tmps,EXEC_ARGV_CAST(PL_Argv)); |
a687059c |
1301 | else |
b4748376 |
1302 | PerlProc_execvp(PL_Argv[0],EXEC_ARGV_CAST(PL_Argv)); |
599cee73 |
1303 | if (ckWARN(WARN_EXEC)) |
a1d180c4 |
1304 | Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s", |
599cee73 |
1305 | PL_Argv[0], Strerror(errno)); |
d5a9bfb0 |
1306 | if (do_report) { |
1307 | int e = errno; |
1308 | |
1309 | PerlLIO_write(fd, (void*)&e, sizeof(int)); |
1310 | PerlLIO_close(fd); |
1311 | } |
a687059c |
1312 | } |
bee1dbe2 |
1313 | do_execfree(); |
cd39f2b6 |
1314 | #endif |
a687059c |
1315 | return FALSE; |
1316 | } |
1317 | |
fe14fcc3 |
1318 | void |
864dbfa3 |
1319 | Perl_do_execfree(pTHX) |
ff8e2863 |
1320 | { |
3280af22 |
1321 | if (PL_Argv) { |
1322 | Safefree(PL_Argv); |
1323 | PL_Argv = Null(char **); |
ff8e2863 |
1324 | } |
3280af22 |
1325 | if (PL_Cmd) { |
1326 | Safefree(PL_Cmd); |
1327 | PL_Cmd = Nullch; |
ff8e2863 |
1328 | } |
1329 | } |
1330 | |
cd39f2b6 |
1331 | #if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(EPOC) && !defined(MACOS_TRADITIONAL) |
760ac839 |
1332 | |
a687059c |
1333 | bool |
864dbfa3 |
1334 | Perl_do_exec(pTHX_ char *cmd) |
a687059c |
1335 | { |
e446cec8 |
1336 | return do_exec3(cmd,0,0); |
1337 | } |
1338 | |
1339 | bool |
864dbfa3 |
1340 | Perl_do_exec3(pTHX_ char *cmd, int fd, int do_report) |
e446cec8 |
1341 | { |
a687059c |
1342 | register char **a; |
1343 | register char *s; |
a687059c |
1344 | char flags[10]; |
1345 | |
748a9306 |
1346 | while (*cmd && isSPACE(*cmd)) |
1347 | cmd++; |
1348 | |
a687059c |
1349 | /* save an extra exec if possible */ |
1350 | |
bf38876a |
1351 | #ifdef CSH |
3280af22 |
1352 | if (strnEQ(cmd,PL_cshname,PL_cshlen) && strnEQ(cmd+PL_cshlen," -c",3)) { |
a687059c |
1353 | strcpy(flags,"-c"); |
3280af22 |
1354 | s = cmd+PL_cshlen+3; |
a687059c |
1355 | if (*s == 'f') { |
1356 | s++; |
1357 | strcat(flags,"f"); |
1358 | } |
1359 | if (*s == ' ') |
1360 | s++; |
1361 | if (*s++ == '\'') { |
1362 | char *ncmd = s; |
1363 | |
1364 | while (*s) |
1365 | s++; |
1366 | if (s[-1] == '\n') |
1367 | *--s = '\0'; |
1368 | if (s[-1] == '\'') { |
1369 | *--s = '\0'; |
3280af22 |
1370 | PerlProc_execl(PL_cshname,"csh", flags,ncmd,(char*)0); |
a687059c |
1371 | *s = '\''; |
1372 | return FALSE; |
1373 | } |
1374 | } |
1375 | } |
bf38876a |
1376 | #endif /* CSH */ |
a687059c |
1377 | |
1378 | /* see if there are shell metacharacters in it */ |
1379 | |
748a9306 |
1380 | if (*cmd == '.' && isSPACE(cmd[1])) |
1381 | goto doshell; |
1382 | |
1383 | if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4])) |
1384 | goto doshell; |
1385 | |
c170e444 |
1386 | for (s = cmd; *s && isALNUM(*s); s++) ; /* catch VAR=val gizmo */ |
63f2c1e1 |
1387 | if (*s == '=') |
1388 | goto doshell; |
748a9306 |
1389 | |
a687059c |
1390 | for (s = cmd; *s; s++) { |
93a17b20 |
1391 | if (*s != ' ' && !isALPHA(*s) && strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) { |
a687059c |
1392 | if (*s == '\n' && !s[1]) { |
1393 | *s = '\0'; |
1394 | break; |
1395 | } |
603a98b0 |
1396 | /* handle the 2>&1 construct at the end */ |
1397 | if (*s == '>' && s[1] == '&' && s[2] == '1' |
1398 | && s > cmd + 1 && s[-1] == '2' && isSPACE(s[-2]) |
1399 | && (!s[3] || isSPACE(s[3]))) |
1400 | { |
1401 | char *t = s + 3; |
1402 | |
1403 | while (*t && isSPACE(*t)) |
1404 | ++t; |
1405 | if (!*t && (dup2(1,2) != -1)) { |
1406 | s[-2] = '\0'; |
1407 | break; |
1408 | } |
1409 | } |
a687059c |
1410 | doshell: |
3280af22 |
1411 | PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char*)0); |
a687059c |
1412 | return FALSE; |
1413 | } |
1414 | } |
748a9306 |
1415 | |
3280af22 |
1416 | New(402,PL_Argv, (s - cmd) / 2 + 2, char*); |
1417 | PL_Cmd = savepvn(cmd, s-cmd); |
1418 | a = PL_Argv; |
1419 | for (s = PL_Cmd; *s;) { |
99b89507 |
1420 | while (*s && isSPACE(*s)) s++; |
a687059c |
1421 | if (*s) |
1422 | *(a++) = s; |
99b89507 |
1423 | while (*s && !isSPACE(*s)) s++; |
a687059c |
1424 | if (*s) |
1425 | *s++ = '\0'; |
1426 | } |
1427 | *a = Nullch; |
3280af22 |
1428 | if (PL_Argv[0]) { |
1429 | PerlProc_execvp(PL_Argv[0],PL_Argv); |
b1248f16 |
1430 | if (errno == ENOEXEC) { /* for system V NIH syndrome */ |
ff8e2863 |
1431 | do_execfree(); |
a687059c |
1432 | goto doshell; |
b1248f16 |
1433 | } |
d008e5eb |
1434 | { |
e446cec8 |
1435 | int e = errno; |
1436 | |
d008e5eb |
1437 | if (ckWARN(WARN_EXEC)) |
a1d180c4 |
1438 | Perl_warner(aTHX_ WARN_EXEC, "Can't exec \"%s\": %s", |
d008e5eb |
1439 | PL_Argv[0], Strerror(errno)); |
e446cec8 |
1440 | if (do_report) { |
1441 | PerlLIO_write(fd, (void*)&e, sizeof(int)); |
1442 | PerlLIO_close(fd); |
1443 | } |
d008e5eb |
1444 | } |
a687059c |
1445 | } |
ff8e2863 |
1446 | do_execfree(); |
a687059c |
1447 | return FALSE; |
1448 | } |
1449 | |
6890e559 |
1450 | #endif /* OS2 || WIN32 */ |
760ac839 |
1451 | |
79072805 |
1452 | I32 |
864dbfa3 |
1453 | Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp) |
a687059c |
1454 | { |
79072805 |
1455 | register I32 val; |
1456 | register I32 val2; |
1457 | register I32 tot = 0; |
20408e3c |
1458 | char *what; |
a687059c |
1459 | char *s; |
79072805 |
1460 | SV **oldmark = mark; |
2d8e6c8d |
1461 | STRLEN n_a; |
a687059c |
1462 | |
20408e3c |
1463 | #define APPLY_TAINT_PROPER() \ |
3280af22 |
1464 | STMT_START { \ |
17406bd6 |
1465 | if (PL_tainted) { TAINT_PROPER(what); } \ |
873ef191 |
1466 | } STMT_END |
20408e3c |
1467 | |
1468 | /* This is a first heuristic; it doesn't catch tainting magic. */ |
3280af22 |
1469 | if (PL_tainting) { |
463ee0b2 |
1470 | while (++mark <= sp) { |
bbce6d69 |
1471 | if (SvTAINTED(*mark)) { |
1472 | TAINT; |
1473 | break; |
1474 | } |
463ee0b2 |
1475 | } |
1476 | mark = oldmark; |
1477 | } |
a687059c |
1478 | switch (type) { |
79072805 |
1479 | case OP_CHMOD: |
20408e3c |
1480 | what = "chmod"; |
1481 | APPLY_TAINT_PROPER(); |
79072805 |
1482 | if (++mark <= sp) { |
463ee0b2 |
1483 | val = SvIVx(*mark); |
20408e3c |
1484 | APPLY_TAINT_PROPER(); |
1485 | tot = sp - mark; |
79072805 |
1486 | while (++mark <= sp) { |
2d8e6c8d |
1487 | char *name = SvPVx(*mark, n_a); |
20408e3c |
1488 | APPLY_TAINT_PROPER(); |
1489 | if (PerlLIO_chmod(name, val)) |
a687059c |
1490 | tot--; |
1491 | } |
1492 | } |
1493 | break; |
fe14fcc3 |
1494 | #ifdef HAS_CHOWN |
79072805 |
1495 | case OP_CHOWN: |
20408e3c |
1496 | what = "chown"; |
1497 | APPLY_TAINT_PROPER(); |
79072805 |
1498 | if (sp - mark > 2) { |
463ee0b2 |
1499 | val = SvIVx(*++mark); |
1500 | val2 = SvIVx(*++mark); |
20408e3c |
1501 | APPLY_TAINT_PROPER(); |
a0d0e21e |
1502 | tot = sp - mark; |
79072805 |
1503 | while (++mark <= sp) { |
2d8e6c8d |
1504 | char *name = SvPVx(*mark, n_a); |
20408e3c |
1505 | APPLY_TAINT_PROPER(); |
36660982 |
1506 | if (PerlLIO_chown(name, val, val2)) |
a687059c |
1507 | tot--; |
1508 | } |
1509 | } |
1510 | break; |
b1248f16 |
1511 | #endif |
a1d180c4 |
1512 | /* |
dd64f1c3 |
1513 | XXX Should we make lchown() directly available from perl? |
1514 | For now, we'll let Configure test for HAS_LCHOWN, but do |
1515 | nothing in the core. |
1516 | --AD 5/1998 |
1517 | */ |
fe14fcc3 |
1518 | #ifdef HAS_KILL |
79072805 |
1519 | case OP_KILL: |
20408e3c |
1520 | what = "kill"; |
1521 | APPLY_TAINT_PROPER(); |
55497cff |
1522 | if (mark == sp) |
1523 | break; |
2d8e6c8d |
1524 | s = SvPVx(*++mark, n_a); |
79072805 |
1525 | if (isUPPER(*s)) { |
1526 | if (*s == 'S' && s[1] == 'I' && s[2] == 'G') |
1527 | s += 3; |
1528 | if (!(val = whichsig(s))) |
cea2e8a9 |
1529 | Perl_croak(aTHX_ "Unrecognized signal name \"%s\"",s); |
79072805 |
1530 | } |
1531 | else |
463ee0b2 |
1532 | val = SvIVx(*mark); |
20408e3c |
1533 | APPLY_TAINT_PROPER(); |
1534 | tot = sp - mark; |
3595fcef |
1535 | #ifdef VMS |
1536 | /* kill() doesn't do process groups (job trees?) under VMS */ |
1537 | if (val < 0) val = -val; |
1538 | if (val == SIGKILL) { |
1539 | # include <starlet.h> |
1540 | /* Use native sys$delprc() to insure that target process is |
1541 | * deleted; supervisor-mode images don't pay attention to |
1542 | * CRTL's emulation of Unix-style signals and kill() |
1543 | */ |
1544 | while (++mark <= sp) { |
1545 | I32 proc = SvIVx(*mark); |
1546 | register unsigned long int __vmssts; |
20408e3c |
1547 | APPLY_TAINT_PROPER(); |
3595fcef |
1548 | if (!((__vmssts = sys$delprc(&proc,0)) & 1)) { |
1549 | tot--; |
1550 | switch (__vmssts) { |
1551 | case SS$_NONEXPR: |
1552 | case SS$_NOSUCHNODE: |
1553 | SETERRNO(ESRCH,__vmssts); |
1554 | break; |
1555 | case SS$_NOPRIV: |
1556 | SETERRNO(EPERM,__vmssts); |
1557 | break; |
1558 | default: |
1559 | SETERRNO(EVMSERR,__vmssts); |
1560 | } |
1561 | } |
1562 | } |
1563 | break; |
1564 | } |
1565 | #endif |
79072805 |
1566 | if (val < 0) { |
1567 | val = -val; |
1568 | while (++mark <= sp) { |
463ee0b2 |
1569 | I32 proc = SvIVx(*mark); |
20408e3c |
1570 | APPLY_TAINT_PROPER(); |
fe14fcc3 |
1571 | #ifdef HAS_KILLPG |
3028581b |
1572 | if (PerlProc_killpg(proc,val)) /* BSD */ |
a687059c |
1573 | #else |
3028581b |
1574 | if (PerlProc_kill(-proc,val)) /* SYSV */ |
a687059c |
1575 | #endif |
79072805 |
1576 | tot--; |
a687059c |
1577 | } |
79072805 |
1578 | } |
1579 | else { |
1580 | while (++mark <= sp) { |
20408e3c |
1581 | I32 proc = SvIVx(*mark); |
1582 | APPLY_TAINT_PROPER(); |
1583 | if (PerlProc_kill(proc, val)) |
79072805 |
1584 | tot--; |
a687059c |
1585 | } |
1586 | } |
1587 | break; |
b1248f16 |
1588 | #endif |
79072805 |
1589 | case OP_UNLINK: |
20408e3c |
1590 | what = "unlink"; |
1591 | APPLY_TAINT_PROPER(); |
79072805 |
1592 | tot = sp - mark; |
1593 | while (++mark <= sp) { |
2d8e6c8d |
1594 | s = SvPVx(*mark, n_a); |
20408e3c |
1595 | APPLY_TAINT_PROPER(); |
3280af22 |
1596 | if (PL_euid || PL_unsafe) { |
a687059c |
1597 | if (UNLINK(s)) |
1598 | tot--; |
1599 | } |
1600 | else { /* don't let root wipe out directories without -U */ |
3280af22 |
1601 | if (PerlLIO_lstat(s,&PL_statbuf) < 0 || S_ISDIR(PL_statbuf.st_mode)) |
a687059c |
1602 | tot--; |
1603 | else { |
1604 | if (UNLINK(s)) |
1605 | tot--; |
1606 | } |
1607 | } |
1608 | } |
1609 | break; |
a0d0e21e |
1610 | #ifdef HAS_UTIME |
79072805 |
1611 | case OP_UTIME: |
20408e3c |
1612 | what = "utime"; |
1613 | APPLY_TAINT_PROPER(); |
79072805 |
1614 | if (sp - mark > 2) { |
748a9306 |
1615 | #if defined(I_UTIME) || defined(VMS) |
663a0e37 |
1616 | struct utimbuf utbuf; |
1617 | #else |
a687059c |
1618 | struct { |
dd2821f6 |
1619 | Time_t actime; |
1620 | Time_t modtime; |
a687059c |
1621 | } utbuf; |
663a0e37 |
1622 | #endif |
a687059c |
1623 | |
afd9f252 |
1624 | Zero(&utbuf, sizeof utbuf, char); |
517844ec |
1625 | #ifdef BIG_TIME |
dd2821f6 |
1626 | utbuf.actime = (Time_t)SvNVx(*++mark); /* time accessed */ |
1627 | utbuf.modtime = (Time_t)SvNVx(*++mark); /* time modified */ |
517844ec |
1628 | #else |
dd2821f6 |
1629 | utbuf.actime = (Time_t)SvIVx(*++mark); /* time accessed */ |
1630 | utbuf.modtime = (Time_t)SvIVx(*++mark); /* time modified */ |
517844ec |
1631 | #endif |
20408e3c |
1632 | APPLY_TAINT_PROPER(); |
79072805 |
1633 | tot = sp - mark; |
1634 | while (++mark <= sp) { |
2d8e6c8d |
1635 | char *name = SvPVx(*mark, n_a); |
20408e3c |
1636 | APPLY_TAINT_PROPER(); |
1637 | if (PerlLIO_utime(name, &utbuf)) |
a687059c |
1638 | tot--; |
1639 | } |
a687059c |
1640 | } |
1641 | else |
79072805 |
1642 | tot = 0; |
a687059c |
1643 | break; |
a0d0e21e |
1644 | #endif |
a687059c |
1645 | } |
1646 | return tot; |
20408e3c |
1647 | |
20408e3c |
1648 | #undef APPLY_TAINT_PROPER |
a687059c |
1649 | } |
1650 | |
1651 | /* Do the permissions allow some operation? Assumes statcache already set. */ |
a0d0e21e |
1652 | #ifndef VMS /* VMS' cando is in vms.c */ |
7f4774ae |
1653 | bool |
1654 | Perl_cando(pTHX_ Mode_t mode, Uid_t effective, register Stat_t *statbufp) |
1655 | /* Note: we use `effective' both for uids and gids. |
1656 | * Here we are betting on Uid_t being equal or wider than Gid_t. */ |
a687059c |
1657 | { |
bee1dbe2 |
1658 | #ifdef DOSISH |
fe14fcc3 |
1659 | /* [Comments and code from Len Reed] |
1660 | * MS-DOS "user" is similar to UNIX's "superuser," but can't write |
1661 | * to write-protected files. The execute permission bit is set |
1662 | * by the Miscrosoft C library stat() function for the following: |
1663 | * .exe files |
1664 | * .com files |
1665 | * .bat files |
1666 | * directories |
1667 | * All files and directories are readable. |
1668 | * Directories and special files, e.g. "CON", cannot be |
1669 | * write-protected. |
1670 | * [Comment by Tom Dinger -- a directory can have the write-protect |
1671 | * bit set in the file system, but DOS permits changes to |
1672 | * the directory anyway. In addition, all bets are off |
1673 | * here for networked software, such as Novell and |
1674 | * Sun's PC-NFS.] |
1675 | */ |
1676 | |
bee1dbe2 |
1677 | /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat |
1678 | * too so it will actually look into the files for magic numbers |
1679 | */ |
7f4774ae |
1680 | return (mode & statbufp->st_mode) ? TRUE : FALSE; |
fe14fcc3 |
1681 | |
55497cff |
1682 | #else /* ! DOSISH */ |
3280af22 |
1683 | if ((effective ? PL_euid : PL_uid) == 0) { /* root is special */ |
7f4774ae |
1684 | if (mode == S_IXUSR) { |
c623bd54 |
1685 | if (statbufp->st_mode & 0111 || S_ISDIR(statbufp->st_mode)) |
a687059c |
1686 | return TRUE; |
1687 | } |
1688 | else |
1689 | return TRUE; /* root reads and writes anything */ |
1690 | return FALSE; |
1691 | } |
3280af22 |
1692 | if (statbufp->st_uid == (effective ? PL_euid : PL_uid) ) { |
7f4774ae |
1693 | if (statbufp->st_mode & mode) |
a687059c |
1694 | return TRUE; /* ok as "user" */ |
1695 | } |
d8eceb89 |
1696 | else if (ingroup(statbufp->st_gid,effective)) { |
7f4774ae |
1697 | if (statbufp->st_mode & mode >> 3) |
a687059c |
1698 | return TRUE; /* ok as "group" */ |
1699 | } |
7f4774ae |
1700 | else if (statbufp->st_mode & mode >> 6) |
a687059c |
1701 | return TRUE; /* ok as "other" */ |
1702 | return FALSE; |
55497cff |
1703 | #endif /* ! DOSISH */ |
a687059c |
1704 | } |
a0d0e21e |
1705 | #endif /* ! VMS */ |
a687059c |
1706 | |
d8eceb89 |
1707 | bool |
1708 | Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective) |
a687059c |
1709 | { |
cd39f2b6 |
1710 | #ifdef MACOS_TRADITIONAL |
1711 | /* This is simply not correct for AppleShare, but fix it yerself. */ |
1712 | return TRUE; |
1713 | #else |
3280af22 |
1714 | if (testgid == (effective ? PL_egid : PL_gid)) |
a687059c |
1715 | return TRUE; |
fe14fcc3 |
1716 | #ifdef HAS_GETGROUPS |
a687059c |
1717 | #ifndef NGROUPS |
1718 | #define NGROUPS 32 |
1719 | #endif |
1720 | { |
a0d0e21e |
1721 | Groups_t gary[NGROUPS]; |
79072805 |
1722 | I32 anum; |
a687059c |
1723 | |
1724 | anum = getgroups(NGROUPS,gary); |
1725 | while (--anum >= 0) |
1726 | if (gary[anum] == testgid) |
1727 | return TRUE; |
1728 | } |
1729 | #endif |
1730 | return FALSE; |
cd39f2b6 |
1731 | #endif |
a687059c |
1732 | } |
c2ab57d4 |
1733 | |
fe14fcc3 |
1734 | #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) |
c2ab57d4 |
1735 | |
79072805 |
1736 | I32 |
864dbfa3 |
1737 | Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp) |
c2ab57d4 |
1738 | { |
c2ab57d4 |
1739 | key_t key; |
79072805 |
1740 | I32 n, flags; |
c2ab57d4 |
1741 | |
463ee0b2 |
1742 | key = (key_t)SvNVx(*++mark); |
1743 | n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark); |
1744 | flags = SvIVx(*++mark); |
748a9306 |
1745 | SETERRNO(0,0); |
c2ab57d4 |
1746 | switch (optype) |
1747 | { |
fe14fcc3 |
1748 | #ifdef HAS_MSG |
79072805 |
1749 | case OP_MSGGET: |
c2ab57d4 |
1750 | return msgget(key, flags); |
e5d73d77 |
1751 | #endif |
fe14fcc3 |
1752 | #ifdef HAS_SEM |
79072805 |
1753 | case OP_SEMGET: |
c2ab57d4 |
1754 | return semget(key, n, flags); |
e5d73d77 |
1755 | #endif |
fe14fcc3 |
1756 | #ifdef HAS_SHM |
79072805 |
1757 | case OP_SHMGET: |
c2ab57d4 |
1758 | return shmget(key, n, flags); |
e5d73d77 |
1759 | #endif |
fe14fcc3 |
1760 | #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM) |
e5d73d77 |
1761 | default: |
cea2e8a9 |
1762 | Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]); |
e5d73d77 |
1763 | #endif |
c2ab57d4 |
1764 | } |
1765 | return -1; /* should never happen */ |
1766 | } |
1767 | |
79072805 |
1768 | I32 |
864dbfa3 |
1769 | Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp) |
c2ab57d4 |
1770 | { |
79072805 |
1771 | SV *astr; |
c2ab57d4 |
1772 | char *a; |
a0d0e21e |
1773 | I32 id, n, cmd, infosize, getinfo; |
1774 | I32 ret = -1; |
c2ab57d4 |
1775 | |
463ee0b2 |
1776 | id = SvIVx(*++mark); |
1777 | n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0; |
1778 | cmd = SvIVx(*++mark); |
79072805 |
1779 | astr = *++mark; |
c2ab57d4 |
1780 | infosize = 0; |
1781 | getinfo = (cmd == IPC_STAT); |
1782 | |
1783 | switch (optype) |
1784 | { |
fe14fcc3 |
1785 | #ifdef HAS_MSG |
79072805 |
1786 | case OP_MSGCTL: |
c2ab57d4 |
1787 | if (cmd == IPC_STAT || cmd == IPC_SET) |
1788 | infosize = sizeof(struct msqid_ds); |
1789 | break; |
e5d73d77 |
1790 | #endif |
fe14fcc3 |
1791 | #ifdef HAS_SHM |
79072805 |
1792 | case OP_SHMCTL: |
c2ab57d4 |
1793 | if (cmd == IPC_STAT || cmd == IPC_SET) |
1794 | infosize = sizeof(struct shmid_ds); |
1795 | break; |
e5d73d77 |
1796 | #endif |
fe14fcc3 |
1797 | #ifdef HAS_SEM |
79072805 |
1798 | case OP_SEMCTL: |
39398f3f |
1799 | #ifdef Semctl |
c2ab57d4 |
1800 | if (cmd == IPC_STAT || cmd == IPC_SET) |
1801 | infosize = sizeof(struct semid_ds); |
1802 | else if (cmd == GETALL || cmd == SETALL) |
1803 | { |
8e591e46 |
1804 | struct semid_ds semds; |
bd89102f |
1805 | union semun semun; |
e6f0bdd6 |
1806 | #ifdef EXTRA_F_IN_SEMUN_BUF |
1807 | semun.buff = &semds; |
1808 | #else |
84902520 |
1809 | semun.buf = &semds; |
e6f0bdd6 |
1810 | #endif |
c2ab57d4 |
1811 | getinfo = (cmd == GETALL); |
9b89d93d |
1812 | if (Semctl(id, 0, IPC_STAT, semun) == -1) |
1813 | return -1; |
6e21c824 |
1814 | infosize = semds.sem_nsems * sizeof(short); |
1815 | /* "short" is technically wrong but much more portable |
1816 | than guessing about u_?short(_t)? */ |
c2ab57d4 |
1817 | } |
39398f3f |
1818 | #else |
cea2e8a9 |
1819 | Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]); |
39398f3f |
1820 | #endif |
c2ab57d4 |
1821 | break; |
e5d73d77 |
1822 | #endif |
fe14fcc3 |
1823 | #if !defined(HAS_MSG) || !defined(HAS_SEM) || !defined(HAS_SHM) |
e5d73d77 |
1824 | default: |
cea2e8a9 |
1825 | Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]); |
e5d73d77 |
1826 | #endif |
c2ab57d4 |
1827 | } |
1828 | |
1829 | if (infosize) |
1830 | { |
a0d0e21e |
1831 | STRLEN len; |
c2ab57d4 |
1832 | if (getinfo) |
1833 | { |
a0d0e21e |
1834 | SvPV_force(astr, len); |
1835 | a = SvGROW(astr, infosize+1); |
c2ab57d4 |
1836 | } |
1837 | else |
1838 | { |
463ee0b2 |
1839 | a = SvPV(astr, len); |
1840 | if (len != infosize) |
cea2e8a9 |
1841 | Perl_croak(aTHX_ "Bad arg length for %s, is %lu, should be %ld", |
4ec43091 |
1842 | PL_op_desc[optype], |
1843 | (unsigned long)len, |
1844 | (long)infosize); |
c2ab57d4 |
1845 | } |
1846 | } |
1847 | else |
1848 | { |
c030ccd9 |
1849 | IV i = SvIV(astr); |
56431972 |
1850 | a = INT2PTR(char *,i); /* ouch */ |
c2ab57d4 |
1851 | } |
748a9306 |
1852 | SETERRNO(0,0); |
c2ab57d4 |
1853 | switch (optype) |
1854 | { |
fe14fcc3 |
1855 | #ifdef HAS_MSG |
79072805 |
1856 | case OP_MSGCTL: |
bee1dbe2 |
1857 | ret = msgctl(id, cmd, (struct msqid_ds *)a); |
c2ab57d4 |
1858 | break; |
e5d73d77 |
1859 | #endif |
fe14fcc3 |
1860 | #ifdef HAS_SEM |
bd89102f |
1861 | case OP_SEMCTL: { |
39398f3f |
1862 | #ifdef Semctl |
bd89102f |
1863 | union semun unsemds; |
1864 | |
e6f0bdd6 |
1865 | #ifdef EXTRA_F_IN_SEMUN_BUF |
1866 | unsemds.buff = (struct semid_ds *)a; |
1867 | #else |
bd89102f |
1868 | unsemds.buf = (struct semid_ds *)a; |
e6f0bdd6 |
1869 | #endif |
bd89102f |
1870 | ret = Semctl(id, n, cmd, unsemds); |
39398f3f |
1871 | #else |
cea2e8a9 |
1872 | Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]); |
39398f3f |
1873 | #endif |
bd89102f |
1874 | } |
c2ab57d4 |
1875 | break; |
e5d73d77 |
1876 | #endif |
fe14fcc3 |
1877 | #ifdef HAS_SHM |
79072805 |
1878 | case OP_SHMCTL: |
bee1dbe2 |
1879 | ret = shmctl(id, cmd, (struct shmid_ds *)a); |
c2ab57d4 |
1880 | break; |
e5d73d77 |
1881 | #endif |
c2ab57d4 |
1882 | } |
1883 | if (getinfo && ret >= 0) { |
79072805 |
1884 | SvCUR_set(astr, infosize); |
1885 | *SvEND(astr) = '\0'; |
a0d0e21e |
1886 | SvSETMAGIC(astr); |
c2ab57d4 |
1887 | } |
1888 | return ret; |
1889 | } |
1890 | |
79072805 |
1891 | I32 |
864dbfa3 |
1892 | Perl_do_msgsnd(pTHX_ SV **mark, SV **sp) |
c2ab57d4 |
1893 | { |
fe14fcc3 |
1894 | #ifdef HAS_MSG |
79072805 |
1895 | SV *mstr; |
c2ab57d4 |
1896 | char *mbuf; |
79072805 |
1897 | I32 id, msize, flags; |
463ee0b2 |
1898 | STRLEN len; |
c2ab57d4 |
1899 | |
463ee0b2 |
1900 | id = SvIVx(*++mark); |
79072805 |
1901 | mstr = *++mark; |
463ee0b2 |
1902 | flags = SvIVx(*++mark); |
1903 | mbuf = SvPV(mstr, len); |
1904 | if ((msize = len - sizeof(long)) < 0) |
cea2e8a9 |
1905 | Perl_croak(aTHX_ "Arg too short for msgsnd"); |
748a9306 |
1906 | SETERRNO(0,0); |
bee1dbe2 |
1907 | return msgsnd(id, (struct msgbuf *)mbuf, msize, flags); |
e5d73d77 |
1908 | #else |
cea2e8a9 |
1909 | Perl_croak(aTHX_ "msgsnd not implemented"); |
e5d73d77 |
1910 | #endif |
c2ab57d4 |
1911 | } |
1912 | |
79072805 |
1913 | I32 |
864dbfa3 |
1914 | Perl_do_msgrcv(pTHX_ SV **mark, SV **sp) |
c2ab57d4 |
1915 | { |
fe14fcc3 |
1916 | #ifdef HAS_MSG |
79072805 |
1917 | SV *mstr; |
c2ab57d4 |
1918 | char *mbuf; |
1919 | long mtype; |
79072805 |
1920 | I32 id, msize, flags, ret; |
463ee0b2 |
1921 | STRLEN len; |
79072805 |
1922 | |
463ee0b2 |
1923 | id = SvIVx(*++mark); |
79072805 |
1924 | mstr = *++mark; |
c2e66d9e |
1925 | /* suppress warning when reading into undef var --jhi */ |
1926 | if (! SvOK(mstr)) |
1927 | sv_setpvn(mstr, "", 0); |
463ee0b2 |
1928 | msize = SvIVx(*++mark); |
1929 | mtype = (long)SvIVx(*++mark); |
1930 | flags = SvIVx(*++mark); |
a0d0e21e |
1931 | SvPV_force(mstr, len); |
1932 | mbuf = SvGROW(mstr, sizeof(long)+msize+1); |
a1d180c4 |
1933 | |
748a9306 |
1934 | SETERRNO(0,0); |
bee1dbe2 |
1935 | ret = msgrcv(id, (struct msgbuf *)mbuf, msize, mtype, flags); |
c2ab57d4 |
1936 | if (ret >= 0) { |
79072805 |
1937 | SvCUR_set(mstr, sizeof(long)+ret); |
1938 | *SvEND(mstr) = '\0'; |
41d6edb2 |
1939 | #ifndef INCOMPLETE_TAINTS |
1940 | /* who knows who has been playing with this message? */ |
1941 | SvTAINTED_on(mstr); |
1942 | #endif |
c2ab57d4 |
1943 | } |
1944 | return ret; |
e5d73d77 |
1945 | #else |
cea2e8a9 |
1946 | Perl_croak(aTHX_ "msgrcv not implemented"); |
e5d73d77 |
1947 | #endif |
c2ab57d4 |
1948 | } |
1949 | |
79072805 |
1950 | I32 |
864dbfa3 |
1951 | Perl_do_semop(pTHX_ SV **mark, SV **sp) |
c2ab57d4 |
1952 | { |
fe14fcc3 |
1953 | #ifdef HAS_SEM |
79072805 |
1954 | SV *opstr; |
c2ab57d4 |
1955 | char *opbuf; |
463ee0b2 |
1956 | I32 id; |
1957 | STRLEN opsize; |
c2ab57d4 |
1958 | |
463ee0b2 |
1959 | id = SvIVx(*++mark); |
79072805 |
1960 | opstr = *++mark; |
463ee0b2 |
1961 | opbuf = SvPV(opstr, opsize); |
c2ab57d4 |
1962 | if (opsize < sizeof(struct sembuf) |
1963 | || (opsize % sizeof(struct sembuf)) != 0) { |
748a9306 |
1964 | SETERRNO(EINVAL,LIB$_INVARG); |
c2ab57d4 |
1965 | return -1; |
1966 | } |
748a9306 |
1967 | SETERRNO(0,0); |
6e21c824 |
1968 | return semop(id, (struct sembuf *)opbuf, opsize/sizeof(struct sembuf)); |
e5d73d77 |
1969 | #else |
cea2e8a9 |
1970 | Perl_croak(aTHX_ "semop not implemented"); |
e5d73d77 |
1971 | #endif |
c2ab57d4 |
1972 | } |
1973 | |
79072805 |
1974 | I32 |
864dbfa3 |
1975 | Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp) |
c2ab57d4 |
1976 | { |
fe14fcc3 |
1977 | #ifdef HAS_SHM |
79072805 |
1978 | SV *mstr; |
c2ab57d4 |
1979 | char *mbuf, *shm; |
79072805 |
1980 | I32 id, mpos, msize; |
463ee0b2 |
1981 | STRLEN len; |
c2ab57d4 |
1982 | struct shmid_ds shmds; |
c2ab57d4 |
1983 | |
463ee0b2 |
1984 | id = SvIVx(*++mark); |
79072805 |
1985 | mstr = *++mark; |
463ee0b2 |
1986 | mpos = SvIVx(*++mark); |
1987 | msize = SvIVx(*++mark); |
748a9306 |
1988 | SETERRNO(0,0); |
c2ab57d4 |
1989 | if (shmctl(id, IPC_STAT, &shmds) == -1) |
1990 | return -1; |
1991 | if (mpos < 0 || msize < 0 || mpos + msize > shmds.shm_segsz) { |
748a9306 |
1992 | SETERRNO(EFAULT,SS$_ACCVIO); /* can't do as caller requested */ |
c2ab57d4 |
1993 | return -1; |
1994 | } |
8ac85365 |
1995 | shm = (char *)shmat(id, (char*)NULL, (optype == OP_SHMREAD) ? SHM_RDONLY : 0); |
c2ab57d4 |
1996 | if (shm == (char *)-1) /* I hate System V IPC, I really do */ |
1997 | return -1; |
79072805 |
1998 | if (optype == OP_SHMREAD) { |
9f538c04 |
1999 | /* suppress warning when reading into undef var (tchrist 3/Mar/00) */ |
2000 | if (! SvOK(mstr)) |
2001 | sv_setpvn(mstr, "", 0); |
a0d0e21e |
2002 | SvPV_force(mstr, len); |
2003 | mbuf = SvGROW(mstr, msize+1); |
2004 | |
bee1dbe2 |
2005 | Copy(shm + mpos, mbuf, msize, char); |
79072805 |
2006 | SvCUR_set(mstr, msize); |
2007 | *SvEND(mstr) = '\0'; |
a0d0e21e |
2008 | SvSETMAGIC(mstr); |
d929ce6f |
2009 | #ifndef INCOMPLETE_TAINTS |
2010 | /* who knows who has been playing with this shared memory? */ |
2011 | SvTAINTED_on(mstr); |
2012 | #endif |
c2ab57d4 |
2013 | } |
2014 | else { |
79072805 |
2015 | I32 n; |
c2ab57d4 |
2016 | |
a0d0e21e |
2017 | mbuf = SvPV(mstr, len); |
463ee0b2 |
2018 | if ((n = len) > msize) |
c2ab57d4 |
2019 | n = msize; |
bee1dbe2 |
2020 | Copy(mbuf, shm + mpos, n, char); |
c2ab57d4 |
2021 | if (n < msize) |
bee1dbe2 |
2022 | memzero(shm + mpos + n, msize - n); |
c2ab57d4 |
2023 | } |
2024 | return shmdt(shm); |
e5d73d77 |
2025 | #else |
cea2e8a9 |
2026 | Perl_croak(aTHX_ "shm I/O not implemented"); |
e5d73d77 |
2027 | #endif |
c2ab57d4 |
2028 | } |
2029 | |
fe14fcc3 |
2030 | #endif /* SYSV IPC */ |
4e35701f |
2031 | |
0d44d22b |
2032 | /* |
2033 | =for apidoc start_glob |
2034 | |
2035 | Function called by C<do_readline> to spawn a glob (or do the glob inside |
2036 | perl on VMS). This code used to be inline, but now perl uses C<File::Glob> |
2037 | this glob starter is only used by miniperl during the build proccess. |
2038 | Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up. |
fab3f3a7 |
2039 | |
0d44d22b |
2040 | =cut |
2041 | */ |
2042 | |
2043 | PerlIO * |
2044 | Perl_start_glob (pTHX_ SV *tmpglob, IO *io) |
2045 | { |
2046 | SV *tmpcmd = NEWSV(55, 0); |
2047 | PerlIO *fp; |
2048 | ENTER; |
2049 | SAVEFREESV(tmpcmd); |
2050 | #ifdef VMS /* expand the wildcards right here, rather than opening a pipe, */ |
2051 | /* since spawning off a process is a real performance hit */ |
2052 | { |
2053 | #include <descrip.h> |
2054 | #include <lib$routines.h> |
2055 | #include <nam.h> |
2056 | #include <rmsdef.h> |
2057 | char rslt[NAM$C_MAXRSS+1+sizeof(unsigned short int)] = {'\0','\0'}; |
2058 | char vmsspec[NAM$C_MAXRSS+1]; |
2059 | char *rstr = rslt + sizeof(unsigned short int), *begin, *end, *cp; |
2060 | char tmpfnam[L_tmpnam] = "SYS$SCRATCH:"; |
2061 | $DESCRIPTOR(dfltdsc,"SYS$DISK:[]*.*;"); |
2062 | PerlIO *tmpfp; |
2063 | STRLEN i; |
2064 | struct dsc$descriptor_s wilddsc |
2065 | = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0}; |
2066 | struct dsc$descriptor_vs rsdsc |
2067 | = {sizeof rslt, DSC$K_DTYPE_VT, DSC$K_CLASS_VS, rslt}; |
2068 | unsigned long int cxt = 0, sts = 0, ok = 1, hasdir = 0, hasver = 0, isunix = 0; |
2069 | |
2070 | /* We could find out if there's an explicit dev/dir or version |
2071 | by peeking into lib$find_file's internal context at |
2072 | ((struct NAM *)((struct FAB *)cxt)->fab$l_nam)->nam$l_fnb |
2073 | but that's unsupported, so I don't want to do it now and |
2074 | have it bite someone in the future. */ |
2075 | strcat(tmpfnam,PerlLIO_tmpnam(NULL)); |
2076 | cp = SvPV(tmpglob,i); |
2077 | for (; i; i--) { |
2078 | if (cp[i] == ';') hasver = 1; |
2079 | if (cp[i] == '.') { |
2080 | if (sts) hasver = 1; |
2081 | else sts = 1; |
2082 | } |
2083 | if (cp[i] == '/') { |
2084 | hasdir = isunix = 1; |
2085 | break; |
2086 | } |
2087 | if (cp[i] == ']' || cp[i] == '>' || cp[i] == ':') { |
2088 | hasdir = 1; |
2089 | break; |
2090 | } |
2091 | } |
2092 | if ((tmpfp = PerlIO_open(tmpfnam,"w+","fop=dlt")) != NULL) { |
2093 | Stat_t st; |
2094 | if (!PerlLIO_stat(SvPVX(tmpglob),&st) && S_ISDIR(st.st_mode)) |
2095 | ok = ((wilddsc.dsc$a_pointer = tovmspath(SvPVX(tmpglob),vmsspec)) != NULL); |
2096 | else ok = ((wilddsc.dsc$a_pointer = tovmsspec(SvPVX(tmpglob),vmsspec)) != NULL); |
2097 | if (ok) wilddsc.dsc$w_length = (unsigned short int) strlen(wilddsc.dsc$a_pointer); |
2098 | while (ok && ((sts = lib$find_file(&wilddsc,&rsdsc,&cxt, |
2099 | &dfltdsc,NULL,NULL,NULL))&1)) { |
2100 | end = rstr + (unsigned long int) *rslt; |
2101 | if (!hasver) while (*end != ';') end--; |
2102 | *(end++) = '\n'; *end = '\0'; |
2103 | for (cp = rstr; *cp; cp++) *cp = _tolower(*cp); |
2104 | if (hasdir) { |
2105 | if (isunix) trim_unixpath(rstr,SvPVX(tmpglob),1); |
2106 | begin = rstr; |
2107 | } |
2108 | else { |
2109 | begin = end; |
2110 | while (*(--begin) != ']' && *begin != '>') ; |
2111 | ++begin; |
2112 | } |
2113 | ok = (PerlIO_puts(tmpfp,begin) != EOF); |
2114 | } |
2115 | if (cxt) (void)lib$find_file_end(&cxt); |
2116 | if (ok && sts != RMS$_NMF && |
2117 | sts != RMS$_DNF && sts != RMS$_FNF) ok = 0; |
2118 | if (!ok) { |
2119 | if (!(sts & 1)) { |
2120 | SETERRNO((sts == RMS$_SYN ? EINVAL : EVMSERR),sts); |
2121 | } |
2122 | PerlIO_close(tmpfp); |
2123 | fp = NULL; |
2124 | } |
2125 | else { |
2126 | PerlIO_rewind(tmpfp); |
2127 | IoTYPE(io) = IoTYPE_RDONLY; |
2128 | IoIFP(io) = fp = tmpfp; |
2129 | IoFLAGS(io) &= ~IOf_UNTAINT; /* maybe redundant */ |
2130 | } |
2131 | } |
2132 | } |
2133 | #else /* !VMS */ |
2134 | #ifdef MACOS_TRADITIONAL |
2135 | sv_setpv(tmpcmd, "glob "); |
2136 | sv_catsv(tmpcmd, tmpglob); |
2137 | sv_catpv(tmpcmd, " |"); |
2138 | #else |
2139 | #ifdef DOSISH |
2140 | #ifdef OS2 |
2141 | sv_setpv(tmpcmd, "for a in "); |
2142 | sv_catsv(tmpcmd, tmpglob); |
2143 | sv_catpv(tmpcmd, "; do echo \"$a\\0\\c\"; done |"); |
2144 | #else |
2145 | #ifdef DJGPP |
2146 | sv_setpv(tmpcmd, "/dev/dosglob/"); /* File System Extension */ |
2147 | sv_catsv(tmpcmd, tmpglob); |
2148 | #else |
2149 | sv_setpv(tmpcmd, "perlglob "); |
2150 | sv_catsv(tmpcmd, tmpglob); |
2151 | sv_catpv(tmpcmd, " |"); |
2152 | #endif /* !DJGPP */ |
2153 | #endif /* !OS2 */ |
2154 | #else /* !DOSISH */ |
2155 | #if defined(CSH) |
2156 | sv_setpvn(tmpcmd, PL_cshname, PL_cshlen); |
2157 | sv_catpv(tmpcmd, " -cf 'set nonomatch; glob "); |
2158 | sv_catsv(tmpcmd, tmpglob); |
2159 | sv_catpv(tmpcmd, "' 2>/dev/null |"); |
2160 | #else |
2161 | sv_setpv(tmpcmd, "echo "); |
2162 | sv_catsv(tmpcmd, tmpglob); |
2163 | #if 'z' - 'a' == 25 |
2164 | sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\012\\012\\012\\012'|"); |
2165 | #else |
2166 | sv_catpv(tmpcmd, "|tr -s ' \t\f\r' '\\n\\n\\n\\n'|"); |
2167 | #endif |
2168 | #endif /* !CSH */ |
2169 | #endif /* !DOSISH */ |
2170 | #endif /* MACOS_TRADITIONAL */ |
2171 | (void)do_open(PL_last_in_gv, SvPVX(tmpcmd), SvCUR(tmpcmd), |
2172 | FALSE, O_RDONLY, 0, Nullfp); |
2173 | fp = IoIFP(io); |
2174 | #endif /* !VMS */ |
2175 | LEAVE; |
2176 | return fp; |
2177 | } |