Commit | Line | Data |
---|---|---|
a0d0e21e LW |
1 | /* pp_sys.c |
2 | * | |
fdf8c088 | 3 | * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
1129b882 | 4 | * 2004, 2005, 2006, 2007, 2008 by Larry Wall and others |
a0d0e21e LW |
5 | * |
6 | * You may distribute under the terms of either the GNU General Public | |
7 | * License or the Artistic License, as specified in the README file. | |
8 | * | |
9 | */ | |
10 | ||
11 | /* | |
12 | * But only a short way ahead its floor and the walls on either side were | |
13 | * cloven by a great fissure, out of which the red glare came, now leaping | |
14 | * up, now dying down into darkness; and all the while far below there was | |
15 | * a rumour and a trouble as of great engines throbbing and labouring. | |
4ac71550 TC |
16 | * |
17 | * [p.945 of _The Lord of the Rings_, VI/iii: "Mount Doom"] | |
a0d0e21e LW |
18 | */ |
19 | ||
166f8a29 DM |
20 | /* This file contains system pp ("push/pop") functions that |
21 | * execute the opcodes that make up a perl program. A typical pp function | |
22 | * expects to find its arguments on the stack, and usually pushes its | |
23 | * results onto the stack, hence the 'pp' terminology. Each OP structure | |
24 | * contains a pointer to the relevant pp_foo() function. | |
25 | * | |
26 | * By 'system', we mean ops which interact with the OS, such as pp_open(). | |
27 | */ | |
28 | ||
a0d0e21e | 29 | #include "EXTERN.h" |
864dbfa3 | 30 | #define PERL_IN_PP_SYS_C |
a0d0e21e | 31 | #include "perl.h" |
d95a2ea5 | 32 | #include "time64.h" |
a0d0e21e | 33 | |
f1066039 JH |
34 | #ifdef I_SHADOW |
35 | /* Shadow password support for solaris - pdo@cs.umd.edu | |
36 | * Not just Solaris: at least HP-UX, IRIX, Linux. | |
3813c136 JH |
37 | * The API is from SysV. |
38 | * | |
39 | * There are at least two more shadow interfaces, | |
40 | * see the comments in pp_gpwent(). | |
41 | * | |
42 | * --jhi */ | |
43 | # ifdef __hpux__ | |
c529f79d | 44 | /* There is a MAXINT coming from <shadow.h> <- <hpsecurity.h> <- <values.h> |
301e8125 | 45 | * and another MAXINT from "perl.h" <- <sys/param.h>. */ |
3813c136 JH |
46 | # undef MAXINT |
47 | # endif | |
48 | # include <shadow.h> | |
8c0bfa08 PB |
49 | #endif |
50 | ||
76c32331 PP |
51 | #ifdef I_SYS_RESOURCE |
52 | # include <sys/resource.h> | |
16d20bd9 | 53 | #endif |
a0d0e21e | 54 | |
2986a63f JH |
55 | #ifdef NETWARE |
56 | NETDB_DEFINE_CONTEXT | |
57 | #endif | |
58 | ||
a0d0e21e | 59 | #ifdef HAS_SELECT |
1e743fda JH |
60 | # ifdef I_SYS_SELECT |
61 | # include <sys/select.h> | |
62 | # endif | |
a0d0e21e | 63 | #endif |
a0d0e21e | 64 | |
dc45a647 MB |
65 | /* XXX Configure test needed. |
66 | h_errno might not be a simple 'int', especially for multi-threaded | |
5ff3f7a4 GS |
67 | applications, see "extern int errno in perl.h". Creating such |
68 | a test requires taking into account the differences between | |
69 | compiling multithreaded and singlethreaded ($ccflags et al). | |
70 | HOST_NOT_FOUND is typically defined in <netdb.h>. | |
dc45a647 | 71 | */ |
cb50131a | 72 | #if defined(HOST_NOT_FOUND) && !defined(h_errno) && !defined(__CYGWIN__) |
a0d0e21e LW |
73 | extern int h_errno; |
74 | #endif | |
75 | ||
76 | #ifdef HAS_PASSWD | |
77 | # ifdef I_PWD | |
78 | # include <pwd.h> | |
8d698507 | 79 | # elif !defined(VMS) |
20ce7b12 GS |
80 | struct passwd *getpwnam (char *); |
81 | struct passwd *getpwuid (Uid_t); | |
a0d0e21e | 82 | # endif |
28e8609d | 83 | # ifdef HAS_GETPWENT |
8d698507 | 84 | # ifndef getpwent |
20ce7b12 | 85 | struct passwd *getpwent (void); |
8d698507 | 86 | # elif defined (VMS) && defined (my_getpwent) |
9fa802f3 | 87 | struct passwd *Perl_my_getpwent (pTHX); |
8d698507 | 88 | # endif |
28e8609d | 89 | # endif |
a0d0e21e LW |
90 | #endif |
91 | ||
92 | #ifdef HAS_GROUP | |
93 | # ifdef I_GRP | |
94 | # include <grp.h> | |
95 | # else | |
20ce7b12 GS |
96 | struct group *getgrnam (char *); |
97 | struct group *getgrgid (Gid_t); | |
a0d0e21e | 98 | # endif |
28e8609d | 99 | # ifdef HAS_GETGRENT |
8d698507 | 100 | # ifndef getgrent |
20ce7b12 | 101 | struct group *getgrent (void); |
8d698507 | 102 | # endif |
28e8609d | 103 | # endif |
a0d0e21e LW |
104 | #endif |
105 | ||
106 | #ifdef I_UTIME | |
3730b96e | 107 | # if defined(_MSC_VER) || defined(__MINGW32__) |
3fe9a6f1 PP |
108 | # include <sys/utime.h> |
109 | # else | |
110 | # include <utime.h> | |
111 | # endif | |
a0d0e21e | 112 | #endif |
a0d0e21e | 113 | |
cbdc8872 | 114 | #ifdef HAS_CHSIZE |
cd52b7b2 PP |
115 | # ifdef my_chsize /* Probably #defined to Perl_my_chsize in embed.h */ |
116 | # undef my_chsize | |
117 | # endif | |
72cc7e2a | 118 | # define my_chsize PerlLIO_chsize |
8d698507 AC |
119 | #elif defined(HAS_TRUNCATE) |
120 | # define my_chsize PerlLIO_chsize | |
27da23d5 | 121 | #else |
27da23d5 | 122 | I32 my_chsize(int fd, Off_t length); |
cbdc8872 PP |
123 | #endif |
124 | ||
ff68c719 PP |
125 | #ifdef HAS_FLOCK |
126 | # define FLOCK flock | |
127 | #else /* no flock() */ | |
128 | ||
36477c24 PP |
129 | /* fcntl.h might not have been included, even if it exists, because |
130 | the current Configure only sets I_FCNTL if it's needed to pick up | |
131 | the *_OK constants. Make sure it has been included before testing | |
132 | the fcntl() locking constants. */ | |
133 | # if defined(HAS_FCNTL) && !defined(I_FCNTL) | |
134 | # include <fcntl.h> | |
135 | # endif | |
136 | ||
9d9004a9 | 137 | # if defined(HAS_FCNTL) && defined(FCNTL_CAN_LOCK) |
ff68c719 PP |
138 | # define FLOCK fcntl_emulate_flock |
139 | # define FCNTL_EMULATE_FLOCK | |
8d698507 AC |
140 | # elif defined(HAS_LOCKF) |
141 | # define FLOCK lockf_emulate_flock | |
142 | # define LOCKF_EMULATE_FLOCK | |
143 | # endif | |
ff68c719 PP |
144 | |
145 | # ifdef FLOCK | |
20ce7b12 | 146 | static int FLOCK (int, int); |
ff68c719 PP |
147 | |
148 | /* | |
149 | * These are the flock() constants. Since this sytems doesn't have | |
150 | * flock(), the values of the constants are probably not available. | |
151 | */ | |
152 | # ifndef LOCK_SH | |
153 | # define LOCK_SH 1 | |
154 | # endif | |
155 | # ifndef LOCK_EX | |
156 | # define LOCK_EX 2 | |
157 | # endif | |
158 | # ifndef LOCK_NB | |
159 | # define LOCK_NB 4 | |
160 | # endif | |
161 | # ifndef LOCK_UN | |
162 | # define LOCK_UN 8 | |
163 | # endif | |
164 | # endif /* emulating flock() */ | |
165 | ||
166 | #endif /* no flock() */ | |
55497cff | 167 | |
85ab1d1d | 168 | #define ZBTLEN 10 |
27da23d5 | 169 | static const char zero_but_true[ZBTLEN + 1] = "0 but true"; |
85ab1d1d | 170 | |
5ff3f7a4 GS |
171 | #if defined(I_SYS_ACCESS) && !defined(R_OK) |
172 | # include <sys/access.h> | |
173 | #endif | |
174 | ||
a4af207c JH |
175 | #include "reentr.h" |
176 | ||
9cffb111 OS |
177 | #ifdef __Lynx__ |
178 | /* Missing protos on LynxOS */ | |
179 | void sethostent(int); | |
180 | void endhostent(void); | |
181 | void setnetent(int); | |
182 | void endnetent(void); | |
183 | void setprotoent(int); | |
184 | void endprotoent(void); | |
185 | void setservent(int); | |
186 | void endservent(void); | |
187 | #endif | |
188 | ||
40262ff4 AB |
189 | #ifdef __amigaos4__ |
190 | # include "amigaos4/amigaio.h" | |
191 | #endif | |
192 | ||
faee0e31 | 193 | #undef PERL_EFF_ACCESS /* EFFective uid/gid ACCESS */ |
5ff3f7a4 GS |
194 | |
195 | /* F_OK unused: if stat() cannot find it... */ | |
196 | ||
d7558cad | 197 | #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS) && defined(EFF_ONLY_OK) && !defined(NO_EFF_ONLY_OK) |
c955f117 | 198 | /* Digital UNIX (when the EFF_ONLY_OK gets fixed), UnixWare */ |
d7558cad | 199 | # define PERL_EFF_ACCESS(p,f) (access((p), (f) | EFF_ONLY_OK)) |
5ff3f7a4 GS |
200 | #endif |
201 | ||
d7558cad | 202 | #if !defined(PERL_EFF_ACCESS) && defined(HAS_EACCESS) |
3813c136 | 203 | # ifdef I_SYS_SECURITY |
5ff3f7a4 GS |
204 | # include <sys/security.h> |
205 | # endif | |
c955f117 JH |
206 | # ifdef ACC_SELF |
207 | /* HP SecureWare */ | |
d7558cad | 208 | # define PERL_EFF_ACCESS(p,f) (eaccess((p), (f), ACC_SELF)) |
c955f117 JH |
209 | # else |
210 | /* SCO */ | |
d7558cad | 211 | # define PERL_EFF_ACCESS(p,f) (eaccess((p), (f))) |
c955f117 | 212 | # endif |
5ff3f7a4 GS |
213 | #endif |
214 | ||
d7558cad | 215 | #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESSX) && defined(ACC_SELF) |
c955f117 | 216 | /* AIX */ |
d7558cad | 217 | # define PERL_EFF_ACCESS(p,f) (accessx((p), (f), ACC_SELF)) |
5ff3f7a4 GS |
218 | #endif |
219 | ||
d7558cad NC |
220 | |
221 | #if !defined(PERL_EFF_ACCESS) && defined(HAS_ACCESS) \ | |
327c3667 GS |
222 | && (defined(HAS_SETREUID) || defined(HAS_SETRESUID) \ |
223 | || defined(HAS_SETREGID) || defined(HAS_SETRESGID)) | |
5ff3f7a4 | 224 | /* The Hard Way. */ |
327c3667 | 225 | STATIC int |
7f4774ae | 226 | S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) |
ba106d47 | 227 | { |
c4420975 AL |
228 | const Uid_t ruid = getuid(); |
229 | const Uid_t euid = geteuid(); | |
230 | const Gid_t rgid = getgid(); | |
231 | const Gid_t egid = getegid(); | |
5ff3f7a4 GS |
232 | int res; |
233 | ||
5ff3f7a4 | 234 | #if !defined(HAS_SETREUID) && !defined(HAS_SETRESUID) |
cea2e8a9 | 235 | Perl_croak(aTHX_ "switching effective uid is not implemented"); |
5ff3f7a4 | 236 | #else |
8d698507 | 237 | # ifdef HAS_SETREUID |
5ff3f7a4 | 238 | if (setreuid(euid, ruid)) |
8d698507 | 239 | # elif defined(HAS_SETRESUID) |
5ff3f7a4 | 240 | if (setresuid(euid, ruid, (Uid_t)-1)) |
8d698507 | 241 | # endif |
dcbac5bb | 242 | /* diag_listed_as: entering effective %s failed */ |
cea2e8a9 | 243 | Perl_croak(aTHX_ "entering effective uid failed"); |
5ff3f7a4 GS |
244 | #endif |
245 | ||
246 | #if !defined(HAS_SETREGID) && !defined(HAS_SETRESGID) | |
cea2e8a9 | 247 | Perl_croak(aTHX_ "switching effective gid is not implemented"); |
5ff3f7a4 | 248 | #else |
8d698507 | 249 | # ifdef HAS_SETREGID |
5ff3f7a4 | 250 | if (setregid(egid, rgid)) |
8d698507 | 251 | # elif defined(HAS_SETRESGID) |
5ff3f7a4 | 252 | if (setresgid(egid, rgid, (Gid_t)-1)) |
8d698507 | 253 | # endif |
dcbac5bb | 254 | /* diag_listed_as: entering effective %s failed */ |
cea2e8a9 | 255 | Perl_croak(aTHX_ "entering effective gid failed"); |
5ff3f7a4 GS |
256 | #endif |
257 | ||
258 | res = access(path, mode); | |
259 | ||
260 | #ifdef HAS_SETREUID | |
261 | if (setreuid(ruid, euid)) | |
8d698507 | 262 | #elif defined(HAS_SETRESUID) |
5ff3f7a4 GS |
263 | if (setresuid(ruid, euid, (Uid_t)-1)) |
264 | #endif | |
dcbac5bb | 265 | /* diag_listed_as: leaving effective %s failed */ |
cea2e8a9 | 266 | Perl_croak(aTHX_ "leaving effective uid failed"); |
5ff3f7a4 GS |
267 | |
268 | #ifdef HAS_SETREGID | |
269 | if (setregid(rgid, egid)) | |
8d698507 | 270 | #elif defined(HAS_SETRESGID) |
5ff3f7a4 GS |
271 | if (setresgid(rgid, egid, (Gid_t)-1)) |
272 | #endif | |
dcbac5bb | 273 | /* diag_listed_as: leaving effective %s failed */ |
cea2e8a9 | 274 | Perl_croak(aTHX_ "leaving effective gid failed"); |
5ff3f7a4 GS |
275 | |
276 | return res; | |
277 | } | |
d6864606 | 278 | # define PERL_EFF_ACCESS(p,f) (S_emulate_eaccess(aTHX_ (p), (f))) |
5ff3f7a4 GS |
279 | #endif |
280 | ||
a0d0e21e LW |
281 | PP(pp_backtick) |
282 | { | |
20b7effb | 283 | dSP; dTARGET; |
760ac839 | 284 | PerlIO *fp; |
1b6737cc | 285 | const char * const tmps = POPpconstx; |
1c23e2bd | 286 | const U8 gimme = GIMME_V; |
e1ec3a88 | 287 | const char *mode = "r"; |
54310121 | 288 | |
a0d0e21e | 289 | TAINT_PROPER("``"); |
16fe6d59 GS |
290 | if (PL_op->op_private & OPpOPEN_IN_RAW) |
291 | mode = "rb"; | |
292 | else if (PL_op->op_private & OPpOPEN_IN_CRLF) | |
293 | mode = "rt"; | |
2fbb330f | 294 | fp = PerlProc_popen(tmps, mode); |
a0d0e21e | 295 | if (fp) { |
11bcd5da | 296 | const char * const type = Perl_PerlIO_context_layers(aTHX_ NULL); |
ac27b0f5 NIS |
297 | if (type && *type) |
298 | PerlIO_apply_layers(aTHX_ fp,mode,type); | |
299 | ||
54310121 | 300 | if (gimme == G_VOID) { |
96827780 MB |
301 | char tmpbuf[256]; |
302 | while (PerlIO_read(fp, tmpbuf, sizeof tmpbuf) > 0) | |
a79db61d | 303 | NOOP; |
54310121 PP |
304 | } |
305 | else if (gimme == G_SCALAR) { | |
d343c3ef | 306 | ENTER_with_name("backtick"); |
75af1a9c | 307 | SAVESPTR(PL_rs); |
fa326138 | 308 | PL_rs = &PL_sv_undef; |
60e13354 | 309 | SvPVCLEAR(TARG); /* note that this preserves previous buffer */ |
bd61b366 | 310 | while (sv_gets(TARG, fp, SvCUR(TARG)) != NULL) |
a79db61d | 311 | NOOP; |
d343c3ef | 312 | LEAVE_with_name("backtick"); |
a0d0e21e | 313 | XPUSHs(TARG); |
aa689395 | 314 | SvTAINTED_on(TARG); |
a0d0e21e LW |
315 | } |
316 | else { | |
a0d0e21e | 317 | for (;;) { |
561b68a9 | 318 | SV * const sv = newSV(79); |
bd61b366 | 319 | if (sv_gets(sv, fp, 0) == NULL) { |
a0d0e21e LW |
320 | SvREFCNT_dec(sv); |
321 | break; | |
322 | } | |
6e449a3a | 323 | mXPUSHs(sv); |
a0d0e21e | 324 | if (SvLEN(sv) - SvCUR(sv) > 20) { |
1da4ca5f | 325 | SvPV_shrink_to_cur(sv); |
a0d0e21e | 326 | } |
aa689395 | 327 | SvTAINTED_on(sv); |
a0d0e21e LW |
328 | } |
329 | } | |
2fbb330f | 330 | STATUS_NATIVE_CHILD_SET(PerlProc_pclose(fp)); |
aa689395 | 331 | TAINT; /* "I believe that this is not gratuitous!" */ |
a0d0e21e LW |
332 | } |
333 | else { | |
37038d91 | 334 | STATUS_NATIVE_CHILD_SET(-1); |
54310121 | 335 | if (gimme == G_SCALAR) |
a0d0e21e LW |
336 | RETPUSHUNDEF; |
337 | } | |
338 | ||
339 | RETURN; | |
340 | } | |
341 | ||
342 | PP(pp_glob) | |
343 | { | |
344 | OP *result; | |
9426e1a5 | 345 | dSP; |
9423a867 FC |
346 | GV * const gv = (PL_op->op_flags & OPf_SPECIAL) ? NULL : (GV *)POPs; |
347 | ||
348 | PUTBACK; | |
349 | ||
151cea25 FC |
350 | /* make a copy of the pattern if it is gmagical, to ensure that magic |
351 | * is called once and only once */ | |
9423a867 | 352 | if (SvGMAGICAL(TOPs)) TOPs = sv_2mortal(newSVsv(TOPs)); |
9426e1a5 | 353 | |
fc99edcf | 354 | tryAMAGICunTARGETlist(iter_amg, (PL_op->op_flags & OPf_SPECIAL)); |
d1bea3d8 DM |
355 | |
356 | if (PL_op->op_flags & OPf_SPECIAL) { | |
357 | /* call Perl-level glob function instead. Stack args are: | |
9423a867 | 358 | * MARK, wildcard |
d1bea3d8 DM |
359 | * and following OPs should be: gv(CORE::GLOBAL::glob), entersub |
360 | * */ | |
361 | return NORMAL; | |
362 | } | |
d67594ff | 363 | if (PL_globhook) { |
d67594ff FC |
364 | PL_globhook(aTHX); |
365 | return NORMAL; | |
366 | } | |
f5284f61 | 367 | |
71686f12 GS |
368 | /* Note that we only ever get here if File::Glob fails to load |
369 | * without at the same time croaking, for some reason, or if | |
370 | * perl was built with PERL_EXTERNAL_GLOB */ | |
371 | ||
d343c3ef | 372 | ENTER_with_name("glob"); |
a0d0e21e | 373 | |
c90c0ff4 | 374 | #ifndef VMS |
284167a5 | 375 | if (TAINTING_get) { |
7bac28a0 PP |
376 | /* |
377 | * The external globbing program may use things we can't control, | |
378 | * so for security reasons we must assume the worst. | |
379 | */ | |
380 | TAINT; | |
22c35a8c | 381 | taint_proper(PL_no_security, "glob"); |
7bac28a0 | 382 | } |
c90c0ff4 | 383 | #endif /* !VMS */ |
7bac28a0 | 384 | |
3280af22 | 385 | SAVESPTR(PL_last_in_gv); /* We don't want this to be permanent. */ |
9423a867 | 386 | PL_last_in_gv = gv; |
a0d0e21e | 387 | |
3280af22 | 388 | SAVESPTR(PL_rs); /* This is not permanent, either. */ |
84bafc02 | 389 | PL_rs = newSVpvs_flags("\000", SVs_TEMP); |
c07a80fd PP |
390 | #ifndef DOSISH |
391 | #ifndef CSH | |
6b88bc9c | 392 | *SvPVX(PL_rs) = '\n'; |
a0d0e21e | 393 | #endif /* !CSH */ |
55497cff | 394 | #endif /* !DOSISH */ |
c07a80fd | 395 | |
a0d0e21e | 396 | result = do_readline(); |
d343c3ef | 397 | LEAVE_with_name("glob"); |
a0d0e21e LW |
398 | return result; |
399 | } | |
400 | ||
a0d0e21e LW |
401 | PP(pp_rcatline) |
402 | { | |
146174a9 | 403 | PL_last_in_gv = cGVOP_gv; |
a0d0e21e LW |
404 | return do_readline(); |
405 | } | |
406 | ||
407 | PP(pp_warn) | |
408 | { | |
20b7effb | 409 | dSP; dMARK; |
c5df3096 | 410 | SV *exsv; |
06bf62c7 | 411 | STRLEN len; |
b59aed67 | 412 | if (SP - MARK > 1) { |
a0d0e21e | 413 | dTARGET; |
3280af22 | 414 | do_join(TARG, &PL_sv_no, MARK, SP); |
c5df3096 | 415 | exsv = TARG; |
a0d0e21e LW |
416 | SP = MARK + 1; |
417 | } | |
b59aed67 | 418 | else if (SP == MARK) { |
c5df3096 | 419 | exsv = &PL_sv_no; |
8d629a78 | 420 | MEXTEND(SP, 1); |
83f957ec | 421 | SP = MARK + 1; |
b59aed67 | 422 | } |
a0d0e21e | 423 | else { |
c5df3096 | 424 | exsv = TOPs; |
ef5fe392 | 425 | if (SvGMAGICAL(exsv)) exsv = sv_mortalcopy(exsv); |
a0d0e21e | 426 | } |
06bf62c7 | 427 | |
72d74926 | 428 | if (SvROK(exsv) || (SvPV_const(exsv, len), len)) { |
c5df3096 Z |
429 | /* well-formed exception supplied */ |
430 | } | |
c5df3096 | 431 | else { |
eed484f9 DD |
432 | SV * const errsv = ERRSV; |
433 | SvGETMAGIC(errsv); | |
434 | if (SvROK(errsv)) { | |
435 | if (SvGMAGICAL(errsv)) { | |
ef5fe392 | 436 | exsv = sv_newmortal(); |
eed484f9 | 437 | sv_setsv_nomg(exsv, errsv); |
ef5fe392 | 438 | } |
eed484f9 | 439 | else exsv = errsv; |
ef5fe392 | 440 | } |
eed484f9 | 441 | else if (SvPOKp(errsv) ? SvCUR(errsv) : SvNIOKp(errsv)) { |
ef5fe392 | 442 | exsv = sv_newmortal(); |
eed484f9 | 443 | sv_setsv_nomg(exsv, errsv); |
ef5fe392 FC |
444 | sv_catpvs(exsv, "\t...caught"); |
445 | } | |
446 | else { | |
c5df3096 | 447 | exsv = newSVpvs_flags("Warning: something's wrong", SVs_TEMP); |
ef5fe392 | 448 | } |
c5df3096 | 449 | } |
3b7f69a5 | 450 | if (SvROK(exsv) && !PL_warnhook) |
147e3846 | 451 | Perl_warn(aTHX_ "%" SVf, SVfARG(exsv)); |
3b7f69a5 | 452 | else warn_sv(exsv); |
a0d0e21e LW |
453 | RETSETYES; |
454 | } | |
455 | ||
456 | PP(pp_die) | |
457 | { | |
20b7effb | 458 | dSP; dMARK; |
c5df3096 | 459 | SV *exsv; |
06bf62c7 | 460 | STRLEN len; |
96e176bf | 461 | #ifdef VMS |
97124ef6 FC |
462 | VMSISH_HUSHED = |
463 | VMSISH_HUSHED || (PL_curcop->op_private & OPpHUSH_VMSISH); | |
96e176bf | 464 | #endif |
a0d0e21e LW |
465 | if (SP - MARK != 1) { |
466 | dTARGET; | |
3280af22 | 467 | do_join(TARG, &PL_sv_no, MARK, SP); |
c5df3096 | 468 | exsv = TARG; |
a0d0e21e LW |
469 | SP = MARK + 1; |
470 | } | |
471 | else { | |
c5df3096 | 472 | exsv = TOPs; |
a0d0e21e | 473 | } |
c5df3096 | 474 | |
72d74926 | 475 | if (SvROK(exsv) || (SvPV_const(exsv, len), len)) { |
c5df3096 Z |
476 | /* well-formed exception supplied */ |
477 | } | |
eed484f9 DD |
478 | else { |
479 | SV * const errsv = ERRSV; | |
8b3945e7 | 480 | SvGETMAGIC(errsv); |
eed484f9 DD |
481 | if (SvROK(errsv)) { |
482 | exsv = errsv; | |
483 | if (sv_isobject(exsv)) { | |
484 | HV * const stash = SvSTASH(SvRV(exsv)); | |
485 | GV * const gv = gv_fetchmethod(stash, "PROPAGATE"); | |
486 | if (gv) { | |
487 | SV * const file = sv_2mortal(newSVpv(CopFILE(PL_curcop),0)); | |
488 | SV * const line = sv_2mortal(newSVuv(CopLINE(PL_curcop))); | |
489 | EXTEND(SP, 3); | |
490 | PUSHMARK(SP); | |
491 | PUSHs(exsv); | |
492 | PUSHs(file); | |
493 | PUSHs(line); | |
494 | PUTBACK; | |
495 | call_sv(MUTABLE_SV(GvCV(gv)), | |
496 | G_SCALAR|G_EVAL|G_KEEPERR); | |
497 | exsv = sv_mortalcopy(*PL_stack_sp--); | |
498 | } | |
05423cc9 | 499 | } |
4e6ea2c3 | 500 | } |
8b3945e7 | 501 | else if (SvPOK(errsv) && SvCUR(errsv)) { |
eed484f9 DD |
502 | exsv = sv_mortalcopy(errsv); |
503 | sv_catpvs(exsv, "\t...propagated"); | |
504 | } | |
505 | else { | |
506 | exsv = newSVpvs_flags("Died", SVs_TEMP); | |
507 | } | |
c5df3096 | 508 | } |
81d52ecd | 509 | die_sv(exsv); |
a25b5927 | 510 | NOT_REACHED; /* NOTREACHED */ |
263fdd5b | 511 | return NULL; /* avoid missing return from non-void function warning */ |
a0d0e21e LW |
512 | } |
513 | ||
514 | /* I/O. */ | |
515 | ||
d682515d | 516 | OP * |
3e0cb5de | 517 | Perl_tied_method(pTHX_ SV *methname, SV **sp, SV *const sv, |
d682515d | 518 | const MAGIC *const mg, const U32 flags, U32 argc, ...) |
6bcca55b | 519 | { |
d8ef3a16 DM |
520 | SV **orig_sp = sp; |
521 | I32 ret_args; | |
052a7c76 | 522 | SSize_t extend_size; |
d8ef3a16 | 523 | |
d682515d | 524 | PERL_ARGS_ASSERT_TIED_METHOD; |
6bcca55b NC |
525 | |
526 | /* Ensure that our flag bits do not overlap. */ | |
6d59e610 LM |
527 | STATIC_ASSERT_STMT((TIED_METHOD_MORTALIZE_NOT_NEEDED & G_WANT) == 0); |
528 | STATIC_ASSERT_STMT((TIED_METHOD_ARGUMENTS_ON_STACK & G_WANT) == 0); | |
529 | STATIC_ASSERT_STMT((TIED_METHOD_SAY & G_WANT) == 0); | |
6bcca55b | 530 | |
d8ef3a16 DM |
531 | PUTBACK; /* sp is at *foot* of args, so this pops args from old stack */ |
532 | PUSHSTACKi(PERLSI_MAGIC); | |
052a7c76 | 533 | /* extend for object + args. If argc might wrap/truncate when cast |
e9548aa6 DM |
534 | * to SSize_t and incremented, set to -1, which will trigger a panic in |
535 | * EXTEND(). | |
536 | * The weird way this is written is because g++ is dumb enough to | |
537 | * warn "comparison is always false" on something like: | |
538 | * | |
539 | * sizeof(a) >= sizeof(b) && a >= B_t_MAX -1 | |
540 | * | |
541 | * (where the LH condition is false) | |
542 | */ | |
052a7c76 | 543 | extend_size = |
e9548aa6 | 544 | (argc > (sizeof(argc) >= sizeof(SSize_t) ? SSize_t_MAX - 1 : argc)) |
052a7c76 DM |
545 | ? -1 : (SSize_t)argc + 1; |
546 | EXTEND(SP, extend_size); | |
6bcca55b | 547 | PUSHMARK(sp); |
d682515d | 548 | PUSHs(SvTIED_obj(sv, mg)); |
d8ef3a16 DM |
549 | if (flags & TIED_METHOD_ARGUMENTS_ON_STACK) { |
550 | Copy(orig_sp + 2, sp + 1, argc, SV*); /* copy args to new stack */ | |
1a8c1d59 | 551 | sp += argc; |
d8ef3a16 | 552 | } |
1a8c1d59 | 553 | else if (argc) { |
d682515d NC |
554 | const U32 mortalize_not_needed |
555 | = flags & TIED_METHOD_MORTALIZE_NOT_NEEDED; | |
6bcca55b | 556 | va_list args; |
0d5509eb | 557 | va_start(args, argc); |
6bcca55b NC |
558 | do { |
559 | SV *const arg = va_arg(args, SV *); | |
560 | if(mortalize_not_needed) | |
561 | PUSHs(arg); | |
562 | else | |
563 | mPUSHs(arg); | |
564 | } while (--argc); | |
565 | va_end(args); | |
566 | } | |
567 | ||
568 | PUTBACK; | |
d682515d | 569 | ENTER_with_name("call_tied_method"); |
94bc412f NC |
570 | if (flags & TIED_METHOD_SAY) { |
571 | /* local $\ = "\n" */ | |
572 | SAVEGENERICSV(PL_ors_sv); | |
573 | PL_ors_sv = newSVpvs("\n"); | |
574 | } | |
3e0cb5de | 575 | ret_args = call_sv(methname, (flags & G_WANT)|G_METHOD_NAMED); |
d8ef3a16 DM |
576 | SPAGAIN; |
577 | orig_sp = sp; | |
578 | POPSTACK; | |
579 | SPAGAIN; | |
580 | if (ret_args) { /* copy results back to original stack */ | |
581 | EXTEND(sp, ret_args); | |
582 | Copy(orig_sp - ret_args + 1, sp + 1, ret_args, SV*); | |
583 | sp += ret_args; | |
584 | PUTBACK; | |
585 | } | |
d682515d | 586 | LEAVE_with_name("call_tied_method"); |
6bcca55b NC |
587 | return NORMAL; |
588 | } | |
589 | ||
d682515d NC |
590 | #define tied_method0(a,b,c,d) \ |
591 | Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,0) | |
592 | #define tied_method1(a,b,c,d,e) \ | |
593 | Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,1,e) | |
594 | #define tied_method2(a,b,c,d,e,f) \ | |
595 | Perl_tied_method(aTHX_ a,b,c,d,G_SCALAR,2,e,f) | |
6bcca55b | 596 | |
a0d0e21e LW |
597 | PP(pp_open) |
598 | { | |
20b7effb | 599 | dSP; |
a567e93b NIS |
600 | dMARK; dORIGMARK; |
601 | dTARGET; | |
a0d0e21e | 602 | SV *sv; |
5b468f54 | 603 | IO *io; |
5c144d81 | 604 | const char *tmps; |
a0d0e21e | 605 | STRLEN len; |
a567e93b | 606 | bool ok; |
a0d0e21e | 607 | |
159b6efe | 608 | GV * const gv = MUTABLE_GV(*++MARK); |
c4420975 | 609 | |
13be902c | 610 | if (!isGV(gv) && !(SvTYPE(gv) == SVt_PVLV && isGV_with_GP(gv))) |
cea2e8a9 | 611 | DIE(aTHX_ PL_no_usym, "filehandle"); |
abc718f2 | 612 | |
a79db61d | 613 | if ((io = GvIOp(gv))) { |
a5e1d062 | 614 | const MAGIC *mg; |
36477c24 | 615 | IoFLAGS(GvIOp(gv)) &= ~IOf_UNTAINT; |
853846ea | 616 | |
a2a5de95 | 617 | if (IoDIRP(io)) |
489c16bf | 618 | Perl_croak(aTHX_ "Cannot open %" HEKf " as a filehandle: it is already open as a dirhandle", |
d0c0e7dd | 619 | HEKfARG(GvENAME_HEK(gv))); |
abc718f2 | 620 | |
ad64d0ec | 621 | mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
c4420975 AL |
622 | if (mg) { |
623 | /* Method's args are same as ours ... */ | |
624 | /* ... except handle is replaced by the object */ | |
3e0cb5de | 625 | return Perl_tied_method(aTHX_ SV_CONST(OPEN), mark - 1, MUTABLE_SV(io), mg, |
d682515d NC |
626 | G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK, |
627 | sp - mark); | |
c4420975 | 628 | } |
4592e6ca NIS |
629 | } |
630 | ||
a567e93b NIS |
631 | if (MARK < SP) { |
632 | sv = *++MARK; | |
633 | } | |
634 | else { | |
35a08ec7 | 635 | sv = GvSVn(gv); |
a567e93b NIS |
636 | } |
637 | ||
5c144d81 | 638 | tmps = SvPV_const(sv, len); |
d5eb9a46 | 639 | ok = do_open6(gv, tmps, len, NULL, MARK+1, (SP-MARK)); |
a567e93b NIS |
640 | SP = ORIGMARK; |
641 | if (ok) | |
3280af22 NIS |
642 | PUSHi( (I32)PL_forkprocess ); |
643 | else if (PL_forkprocess == 0) /* we are a new child */ | |
725c44f9 | 644 | PUSHs(&PL_sv_zero); |
a0d0e21e LW |
645 | else |
646 | RETPUSHUNDEF; | |
647 | RETURN; | |
648 | } | |
649 | ||
650 | PP(pp_close) | |
651 | { | |
20b7effb | 652 | dSP; |
12dc5f94 DM |
653 | /* pp_coreargs pushes a NULL to indicate no args passed to |
654 | * CORE::close() */ | |
30901a8a FC |
655 | GV * const gv = |
656 | MAXARG == 0 || (!TOPs && !POPs) ? PL_defoutgv : MUTABLE_GV(POPs); | |
1d603a67 | 657 | |
2addaaf3 NC |
658 | if (MAXARG == 0) |
659 | EXTEND(SP, 1); | |
660 | ||
a79db61d AL |
661 | if (gv) { |
662 | IO * const io = GvIO(gv); | |
663 | if (io) { | |
a5e1d062 | 664 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 665 | if (mg) { |
3e0cb5de | 666 | return tied_method0(SV_CONST(CLOSE), SP, MUTABLE_SV(io), mg); |
a79db61d AL |
667 | } |
668 | } | |
1d603a67 | 669 | } |
54310121 | 670 | PUSHs(boolSV(do_close(gv, TRUE))); |
a0d0e21e LW |
671 | RETURN; |
672 | } | |
673 | ||
674 | PP(pp_pipe_op) | |
675 | { | |
a0d0e21e | 676 | #ifdef HAS_PIPE |
9cad6237 | 677 | dSP; |
eb578fdb KW |
678 | IO *rstio; |
679 | IO *wstio; | |
a0d0e21e LW |
680 | int fd[2]; |
681 | ||
159b6efe NC |
682 | GV * const wgv = MUTABLE_GV(POPs); |
683 | GV * const rgv = MUTABLE_GV(POPs); | |
a0d0e21e | 684 | |
a0d0e21e | 685 | rstio = GvIOn(rgv); |
a0d0e21e LW |
686 | if (IoIFP(rstio)) |
687 | do_close(rgv, FALSE); | |
49225470 DD |
688 | |
689 | wstio = GvIOn(wgv); | |
a0d0e21e LW |
690 | if (IoIFP(wstio)) |
691 | do_close(wgv, FALSE); | |
692 | ||
74df577f | 693 | if (PerlProc_pipe_cloexec(fd) < 0) |
a0d0e21e LW |
694 | goto badexit; |
695 | ||
147e3846 KW |
696 | IoIFP(rstio) = PerlIO_fdopen(fd[0], "r" PIPE_OPEN_MODE); |
697 | IoOFP(wstio) = PerlIO_fdopen(fd[1], "w" PIPE_OPEN_MODE); | |
b5ac89c3 | 698 | IoOFP(rstio) = IoIFP(rstio); |
a0d0e21e | 699 | IoIFP(wstio) = IoOFP(wstio); |
50952442 JH |
700 | IoTYPE(rstio) = IoTYPE_RDONLY; |
701 | IoTYPE(wstio) = IoTYPE_WRONLY; | |
a0d0e21e LW |
702 | |
703 | if (!IoIFP(rstio) || !IoOFP(wstio)) { | |
a79db61d AL |
704 | if (IoIFP(rstio)) |
705 | PerlIO_close(IoIFP(rstio)); | |
706 | else | |
707 | PerlLIO_close(fd[0]); | |
708 | if (IoOFP(wstio)) | |
709 | PerlIO_close(IoOFP(wstio)); | |
710 | else | |
711 | PerlLIO_close(fd[1]); | |
a0d0e21e LW |
712 | goto badexit; |
713 | } | |
a0d0e21e LW |
714 | RETPUSHYES; |
715 | ||
7b52d656 | 716 | badexit: |
a0d0e21e LW |
717 | RETPUSHUNDEF; |
718 | #else | |
cea2e8a9 | 719 | DIE(aTHX_ PL_no_func, "pipe"); |
a0d0e21e LW |
720 | #endif |
721 | } | |
722 | ||
723 | PP(pp_fileno) | |
724 | { | |
20b7effb | 725 | dSP; dTARGET; |
a0d0e21e LW |
726 | GV *gv; |
727 | IO *io; | |
760ac839 | 728 | PerlIO *fp; |
a5e1d062 | 729 | const MAGIC *mg; |
4592e6ca | 730 | |
a0d0e21e LW |
731 | if (MAXARG < 1) |
732 | RETPUSHUNDEF; | |
159b6efe | 733 | gv = MUTABLE_GV(POPs); |
9c9f25b8 | 734 | io = GvIO(gv); |
4592e6ca | 735 | |
9c9f25b8 | 736 | if (io |
ad64d0ec | 737 | && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) |
5b468f54 | 738 | { |
3e0cb5de | 739 | return tied_method0(SV_CONST(FILENO), SP, MUTABLE_SV(io), mg); |
4592e6ca NIS |
740 | } |
741 | ||
67f2cc75 AC |
742 | if (io && IoDIRP(io)) { |
743 | #if defined(HAS_DIRFD) || defined(HAS_DIR_DD_FD) | |
744 | PUSHi(my_dirfd(IoDIRP(io))); | |
745 | RETURN; | |
746 | #elif defined(ENOTSUP) | |
747 | errno = ENOTSUP; /* Operation not supported */ | |
748 | RETPUSHUNDEF; | |
749 | #elif defined(EOPNOTSUPP) | |
750 | errno = EOPNOTSUPP; /* Operation not supported on socket */ | |
751 | RETPUSHUNDEF; | |
752 | #else | |
753 | errno = EINVAL; /* Invalid argument */ | |
754 | RETPUSHUNDEF; | |
755 | #endif | |
756 | } | |
757 | ||
9c9f25b8 | 758 | if (!io || !(fp = IoIFP(io))) { |
c289d2f7 JH |
759 | /* Can't do this because people seem to do things like |
760 | defined(fileno($foo)) to check whether $foo is a valid fh. | |
51087808 NC |
761 | |
762 | report_evil_fh(gv); | |
c289d2f7 | 763 | */ |
a0d0e21e | 764 | RETPUSHUNDEF; |
c289d2f7 JH |
765 | } |
766 | ||
760ac839 | 767 | PUSHi(PerlIO_fileno(fp)); |
a0d0e21e LW |
768 | RETURN; |
769 | } | |
770 | ||
771 | PP(pp_umask) | |
772 | { | |
27da23d5 | 773 | dSP; |
d7e492a4 | 774 | #ifdef HAS_UMASK |
27da23d5 | 775 | dTARGET; |
761237fe | 776 | Mode_t anum; |
a0d0e21e | 777 | |
58536d15 | 778 | if (MAXARG < 1 || (!TOPs && !POPs)) { |
b0b546b3 GA |
779 | anum = PerlLIO_umask(022); |
780 | /* setting it to 022 between the two calls to umask avoids | |
781 | * to have a window where the umask is set to 0 -- meaning | |
782 | * that another thread could create world-writeable files. */ | |
783 | if (anum != 022) | |
784 | (void)PerlLIO_umask(anum); | |
a0d0e21e LW |
785 | } |
786 | else | |
6ad3d225 | 787 | anum = PerlLIO_umask(POPi); |
a0d0e21e LW |
788 | TAINT_PROPER("umask"); |
789 | XPUSHi(anum); | |
790 | #else | |
a0288114 | 791 | /* Only DIE if trying to restrict permissions on "user" (self). |
eec2d3df GS |
792 | * Otherwise it's harmless and more useful to just return undef |
793 | * since 'group' and 'other' concepts probably don't exist here. */ | |
58536d15 | 794 | if (MAXARG >= 1 && (TOPs||POPs) && (POPi & 0700)) |
cea2e8a9 | 795 | DIE(aTHX_ "umask not implemented"); |
6b88bc9c | 796 | XPUSHs(&PL_sv_undef); |
a0d0e21e LW |
797 | #endif |
798 | RETURN; | |
799 | } | |
800 | ||
801 | PP(pp_binmode) | |
802 | { | |
20b7effb | 803 | dSP; |
a0d0e21e LW |
804 | GV *gv; |
805 | IO *io; | |
760ac839 | 806 | PerlIO *fp; |
a0714e2c | 807 | SV *discp = NULL; |
a0d0e21e LW |
808 | |
809 | if (MAXARG < 1) | |
810 | RETPUSHUNDEF; | |
60382766 | 811 | if (MAXARG > 1) { |
16fe6d59 | 812 | discp = POPs; |
60382766 | 813 | } |
a0d0e21e | 814 | |
159b6efe | 815 | gv = MUTABLE_GV(POPs); |
9c9f25b8 | 816 | io = GvIO(gv); |
4592e6ca | 817 | |
9c9f25b8 | 818 | if (io) { |
a5e1d062 | 819 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 820 | if (mg) { |
bc0c81ca NC |
821 | /* This takes advantage of the implementation of the varargs |
822 | function, which I don't think that the optimiser will be able to | |
823 | figure out. Although, as it's a static function, in theory it | |
824 | could. */ | |
3e0cb5de | 825 | return Perl_tied_method(aTHX_ SV_CONST(BINMODE), SP, MUTABLE_SV(io), mg, |
d682515d NC |
826 | G_SCALAR|TIED_METHOD_MORTALIZE_NOT_NEEDED, |
827 | discp ? 1 : 0, discp); | |
a79db61d | 828 | } |
4592e6ca | 829 | } |
a0d0e21e | 830 | |
9c9f25b8 | 831 | if (!io || !(fp = IoIFP(io))) { |
51087808 | 832 | report_evil_fh(gv); |
b5fe5ca2 | 833 | SETERRNO(EBADF,RMS_IFI); |
50f846a7 SC |
834 | RETPUSHUNDEF; |
835 | } | |
a0d0e21e | 836 | |
40d98b49 | 837 | PUTBACK; |
f0a78170 | 838 | { |
a79b25b7 VP |
839 | STRLEN len = 0; |
840 | const char *d = NULL; | |
841 | int mode; | |
842 | if (discp) | |
843 | d = SvPV_const(discp, len); | |
844 | mode = mode_from_discipline(d, len); | |
f0a78170 NC |
845 | if (PerlIO_binmode(aTHX_ fp, IoTYPE(io), mode, d)) { |
846 | if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { | |
847 | if (!PerlIO_binmode(aTHX_ IoOFP(io), IoTYPE(io), mode, d)) { | |
848 | SPAGAIN; | |
849 | RETPUSHUNDEF; | |
850 | } | |
851 | } | |
852 | SPAGAIN; | |
853 | RETPUSHYES; | |
854 | } | |
855 | else { | |
856 | SPAGAIN; | |
857 | RETPUSHUNDEF; | |
38af81ff | 858 | } |
40d98b49 | 859 | } |
a0d0e21e LW |
860 | } |
861 | ||
862 | PP(pp_tie) | |
863 | { | |
20b7effb | 864 | dSP; dMARK; |
a0d0e21e | 865 | HV* stash; |
07822e36 | 866 | GV *gv = NULL; |
a0d0e21e | 867 | SV *sv; |
1df70142 | 868 | const I32 markoff = MARK - PL_stack_base; |
e1ec3a88 | 869 | const char *methname; |
14befaf4 | 870 | int how = PERL_MAGIC_tied; |
e336de0d | 871 | U32 items; |
c4420975 | 872 | SV *varsv = *++MARK; |
a0d0e21e | 873 | |
6b05c17a NIS |
874 | switch(SvTYPE(varsv)) { |
875 | case SVt_PVHV: | |
aec0c0cc FC |
876 | { |
877 | HE *entry; | |
6b05c17a | 878 | methname = "TIEHASH"; |
aec0c0cc FC |
879 | if (HvLAZYDEL(varsv) && (entry = HvEITER((HV *)varsv))) { |
880 | HvLAZYDEL_off(varsv); | |
881 | hv_free_ent((HV *)varsv, entry); | |
882 | } | |
85fbaab2 | 883 | HvEITER_set(MUTABLE_HV(varsv), 0); |
6b05c17a | 884 | break; |
aec0c0cc | 885 | } |
6b05c17a NIS |
886 | case SVt_PVAV: |
887 | methname = "TIEARRAY"; | |
ce65bc73 FC |
888 | if (!AvREAL(varsv)) { |
889 | if (!AvREIFY(varsv)) | |
890 | Perl_croak(aTHX_ "Cannot tie unreifiable array"); | |
891 | av_clear((AV *)varsv); | |
892 | AvREIFY_off(varsv); | |
893 | AvREAL_on(varsv); | |
894 | } | |
6b05c17a NIS |
895 | break; |
896 | case SVt_PVGV: | |
13be902c | 897 | case SVt_PVLV: |
8bb5f786 | 898 | if (isGV_with_GP(varsv) && !SvFAKE(varsv)) { |
6e592b3a BM |
899 | methname = "TIEHANDLE"; |
900 | how = PERL_MAGIC_tiedscalar; | |
901 | /* For tied filehandles, we apply tiedscalar magic to the IO | |
902 | slot of the GP rather than the GV itself. AMS 20010812 */ | |
903 | if (!GvIOp(varsv)) | |
904 | GvIOp(varsv) = newIO(); | |
ad64d0ec | 905 | varsv = MUTABLE_SV(GvIOp(varsv)); |
6e592b3a BM |
906 | break; |
907 | } | |
13733cde FC |
908 | if (SvTYPE(varsv) == SVt_PVLV && LvTYPE(varsv) == 'y') { |
909 | vivify_defelem(varsv); | |
910 | varsv = LvTARG(varsv); | |
911 | } | |
924ba076 | 912 | /* FALLTHROUGH */ |
6b05c17a NIS |
913 | default: |
914 | methname = "TIESCALAR"; | |
14befaf4 | 915 | how = PERL_MAGIC_tiedscalar; |
6b05c17a NIS |
916 | break; |
917 | } | |
e336de0d | 918 | items = SP - MARK++; |
a91d1d42 | 919 | if (sv_isobject(*MARK)) { /* Calls GET magic. */ |
d343c3ef | 920 | ENTER_with_name("call_TIE"); |
e788e7d3 | 921 | PUSHSTACKi(PERLSI_MAGIC); |
e336de0d | 922 | PUSHMARK(SP); |
eb160463 | 923 | EXTEND(SP,(I32)items); |
e336de0d GS |
924 | while (items--) |
925 | PUSHs(*MARK++); | |
926 | PUTBACK; | |
864dbfa3 | 927 | call_method(methname, G_SCALAR); |
301e8125 | 928 | } |
6b05c17a | 929 | else { |
086d2913 NC |
930 | /* Can't use call_method here, else this: fileno FOO; tie @a, "FOO" |
931 | * will attempt to invoke IO::File::TIEARRAY, with (best case) the | |
932 | * wrong error message, and worse case, supreme action at a distance. | |
933 | * (Sorry obfuscation writers. You're not going to be given this one.) | |
6b05c17a | 934 | */ |
4886938f | 935 | stash = gv_stashsv(*MARK, 0); |
0b077c88 | 936 | if (!stash) { |
32207c63 AC |
937 | if (SvROK(*MARK)) |
938 | DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\"", | |
939 | methname, SVfARG(*MARK)); | |
940 | else if (isGV(*MARK)) { | |
941 | /* If the glob doesn't name an existing package, using | |
942 | * SVfARG(*MARK) would yield "*Foo::Bar" or *main::Foo. So | |
943 | * generate the name for the error message explicitly. */ | |
7594f18f | 944 | SV *stashname = sv_2mortal(newSV(0)); |
32207c63 AC |
945 | gv_fullname4(stashname, (GV *) *MARK, NULL, FALSE); |
946 | DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\"", | |
947 | methname, SVfARG(stashname)); | |
948 | } | |
949 | else { | |
950 | SV *stashname = !SvPOK(*MARK) ? &PL_sv_no | |
951 | : SvCUR(*MARK) ? *MARK | |
952 | : sv_2mortal(newSVpvs("main")); | |
953 | DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" SVf "\"" | |
954 | " (perhaps you forgot to load \"%" SVf "\"?)", | |
955 | methname, SVfARG(stashname), SVfARG(stashname)); | |
0b077c88 | 956 | } |
0b077c88 DIM |
957 | } |
958 | else if (!(gv = gv_fetchmethod(stash, methname))) { | |
959 | /* The effective name can only be NULL for stashes that have | |
960 | * been deleted from the symbol table, which this one can't | |
961 | * be, since we just looked it up by name. | |
962 | */ | |
147e3846 | 963 | DIE(aTHX_ "Can't locate object method \"%s\" via package \"%" HEKf "\"", |
0b077c88 DIM |
964 | methname, HvENAME_HEK_NN(stash)); |
965 | } | |
d343c3ef | 966 | ENTER_with_name("call_TIE"); |
e788e7d3 | 967 | PUSHSTACKi(PERLSI_MAGIC); |
e336de0d | 968 | PUSHMARK(SP); |
eb160463 | 969 | EXTEND(SP,(I32)items); |
e336de0d GS |
970 | while (items--) |
971 | PUSHs(*MARK++); | |
972 | PUTBACK; | |
ad64d0ec | 973 | call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR); |
6b05c17a | 974 | } |
a0d0e21e LW |
975 | SPAGAIN; |
976 | ||
977 | sv = TOPs; | |
d3acc0f7 | 978 | POPSTACK; |
a0d0e21e | 979 | if (sv_isobject(sv)) { |
33c27489 | 980 | sv_unmagic(varsv, how); |
ae21d580 | 981 | /* Croak if a self-tie on an aggregate is attempted. */ |
b881518d | 982 | if (varsv == SvRV(sv) && |
d87ebaca YST |
983 | (SvTYPE(varsv) == SVt_PVAV || |
984 | SvTYPE(varsv) == SVt_PVHV)) | |
ae21d580 JH |
985 | Perl_croak(aTHX_ |
986 | "Self-ties of arrays and hashes are not supported"); | |
a0714e2c | 987 | sv_magic(varsv, (SvRV(sv) == varsv ? NULL : sv), how, NULL, 0); |
a0d0e21e | 988 | } |
d343c3ef | 989 | LEAVE_with_name("call_TIE"); |
3280af22 | 990 | SP = PL_stack_base + markoff; |
a0d0e21e LW |
991 | PUSHs(sv); |
992 | RETURN; | |
993 | } | |
994 | ||
b1c05ba5 DM |
995 | |
996 | /* also used for: pp_dbmclose() */ | |
997 | ||
a0d0e21e LW |
998 | PP(pp_untie) |
999 | { | |
20b7effb | 1000 | dSP; |
5b468f54 | 1001 | MAGIC *mg; |
33c27489 | 1002 | SV *sv = POPs; |
1df70142 | 1003 | const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV) |
14befaf4 | 1004 | ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar; |
55497cff | 1005 | |
ca0d4ed9 | 1006 | if (isGV_with_GP(sv) && !SvFAKE(sv) && !(sv = MUTABLE_SV(GvIOp(sv)))) |
5b468f54 AMS |
1007 | RETPUSHYES; |
1008 | ||
13733cde FC |
1009 | if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y' && |
1010 | !(sv = defelem_target(sv, NULL))) RETPUSHUNDEF; | |
1011 | ||
65eba18f | 1012 | if ((mg = SvTIED_mg(sv, how))) { |
1b6737cc | 1013 | SV * const obj = SvRV(SvTIED_obj(sv, mg)); |
e7e69c85 | 1014 | if (obj && SvSTASH(obj)) { |
c4420975 | 1015 | GV * const gv = gv_fetchmethod_autoload(SvSTASH(obj), "UNTIE", FALSE); |
0bd48802 | 1016 | CV *cv; |
c4420975 | 1017 | if (gv && isGV(gv) && (cv = GvCV(gv))) { |
fa2b88e0 | 1018 | PUSHMARK(SP); |
c33ef3ac | 1019 | PUSHs(SvTIED_obj(MUTABLE_SV(gv), mg)); |
6e449a3a | 1020 | mXPUSHi(SvREFCNT(obj) - 1); |
fa2b88e0 | 1021 | PUTBACK; |
d343c3ef | 1022 | ENTER_with_name("call_UNTIE"); |
ad64d0ec | 1023 | call_sv(MUTABLE_SV(cv), G_VOID); |
d343c3ef | 1024 | LEAVE_with_name("call_UNTIE"); |
fa2b88e0 JS |
1025 | SPAGAIN; |
1026 | } | |
a2a5de95 NC |
1027 | else if (mg && SvREFCNT(obj) > 1) { |
1028 | Perl_ck_warner(aTHX_ packWARN(WARN_UNTIE), | |
147e3846 | 1029 | "untie attempted while %" UVuf " inner references still exist", |
a2a5de95 | 1030 | (UV)SvREFCNT(obj) - 1 ) ; |
c4420975 | 1031 | } |
cbdc8872 PP |
1032 | } |
1033 | } | |
38193a09 | 1034 | sv_unmagic(sv, how) ; |
55497cff | 1035 | RETPUSHYES; |
a0d0e21e LW |
1036 | } |
1037 | ||
c07a80fd PP |
1038 | PP(pp_tied) |
1039 | { | |
39644a26 | 1040 | dSP; |
1b6737cc | 1041 | const MAGIC *mg; |
b3cf4821 | 1042 | dTOPss; |
1df70142 | 1043 | const char how = (SvTYPE(sv) == SVt_PVHV || SvTYPE(sv) == SVt_PVAV) |
14befaf4 | 1044 | ? PERL_MAGIC_tied : PERL_MAGIC_tiedscalar; |
5b468f54 | 1045 | |
4be76e1f | 1046 | if (isGV_with_GP(sv) && !SvFAKE(sv) && !(sv = MUTABLE_SV(GvIOp(sv)))) |
b3cf4821 | 1047 | goto ret_undef; |
c07a80fd | 1048 | |
13733cde | 1049 | if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y' && |
b3cf4821 | 1050 | !(sv = defelem_target(sv, NULL))) goto ret_undef; |
13733cde | 1051 | |
155aba94 | 1052 | if ((mg = SvTIED_mg(sv, how))) { |
b3cf4821 DD |
1053 | SETs(SvTIED_obj(sv, mg)); |
1054 | return NORMAL; /* PUTBACK not needed, pp_tied never moves SP */ | |
c07a80fd | 1055 | } |
b3cf4821 DD |
1056 | ret_undef: |
1057 | SETs(&PL_sv_undef); | |
1058 | return NORMAL; | |
c07a80fd PP |
1059 | } |
1060 | ||
a0d0e21e LW |
1061 | PP(pp_dbmopen) |
1062 | { | |
20b7effb | 1063 | dSP; |
a0d0e21e LW |
1064 | dPOPPOPssrl; |
1065 | HV* stash; | |
07822e36 | 1066 | GV *gv = NULL; |
a0d0e21e | 1067 | |
85fbaab2 | 1068 | HV * const hv = MUTABLE_HV(POPs); |
84bafc02 | 1069 | SV * const sv = newSVpvs_flags("AnyDBM_File", SVs_TEMP); |
da51bb9b | 1070 | stash = gv_stashsv(sv, 0); |
8ebc5c01 | 1071 | if (!stash || !(gv = gv_fetchmethod(stash, "TIEHASH"))) { |
a0d0e21e | 1072 | PUTBACK; |
864dbfa3 | 1073 | require_pv("AnyDBM_File.pm"); |
a0d0e21e | 1074 | SPAGAIN; |
eff494dd | 1075 | if (!stash || !(gv = gv_fetchmethod(stash, "TIEHASH"))) |
cea2e8a9 | 1076 | DIE(aTHX_ "No dbm on this machine"); |
a0d0e21e LW |
1077 | } |
1078 | ||
57d3b86d | 1079 | ENTER; |
924508f0 | 1080 | PUSHMARK(SP); |
6b05c17a | 1081 | |
924508f0 | 1082 | EXTEND(SP, 5); |
a0d0e21e LW |
1083 | PUSHs(sv); |
1084 | PUSHs(left); | |
1085 | if (SvIV(right)) | |
6e449a3a | 1086 | mPUSHu(O_RDWR|O_CREAT); |
a0d0e21e | 1087 | else |
480e0d3c | 1088 | { |
6e449a3a | 1089 | mPUSHu(O_RDWR); |
480e0d3c FC |
1090 | if (!SvOK(right)) right = &PL_sv_no; |
1091 | } | |
a0d0e21e | 1092 | PUSHs(right); |
57d3b86d | 1093 | PUTBACK; |
ad64d0ec | 1094 | call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR); |
a0d0e21e LW |
1095 | SPAGAIN; |
1096 | ||
1097 | if (!sv_isobject(TOPs)) { | |
924508f0 GS |
1098 | SP--; |
1099 | PUSHMARK(SP); | |
a0d0e21e LW |
1100 | PUSHs(sv); |
1101 | PUSHs(left); | |
6e449a3a | 1102 | mPUSHu(O_RDONLY); |
a0d0e21e | 1103 | PUSHs(right); |
a0d0e21e | 1104 | PUTBACK; |
ad64d0ec | 1105 | call_sv(MUTABLE_SV(GvCV(gv)), G_SCALAR); |
a0d0e21e | 1106 | SPAGAIN; |
4b523e79 DD |
1107 | if (sv_isobject(TOPs)) |
1108 | goto retie; | |
a0d0e21e | 1109 | } |
4b523e79 DD |
1110 | else { |
1111 | retie: | |
ad64d0ec NC |
1112 | sv_unmagic(MUTABLE_SV(hv), PERL_MAGIC_tied); |
1113 | sv_magic(MUTABLE_SV(hv), TOPs, PERL_MAGIC_tied, NULL, 0); | |
6b05c17a | 1114 | } |
a0d0e21e LW |
1115 | LEAVE; |
1116 | RETURN; | |
1117 | } | |
1118 | ||
a0d0e21e LW |
1119 | PP(pp_sselect) |
1120 | { | |
a0d0e21e | 1121 | #ifdef HAS_SELECT |
20b7effb | 1122 | dSP; dTARGET; |
eb578fdb KW |
1123 | I32 i; |
1124 | I32 j; | |
1125 | char *s; | |
1126 | SV *sv; | |
65202027 | 1127 | NV value; |
a0d0e21e LW |
1128 | I32 maxlen = 0; |
1129 | I32 nfound; | |
1130 | struct timeval timebuf; | |
1131 | struct timeval *tbuf = &timebuf; | |
1132 | I32 growsize; | |
1133 | char *fd_sets[4]; | |
e26c6904 | 1134 | SV *svs[4]; |
a0d0e21e LW |
1135 | #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678 |
1136 | I32 masksize; | |
1137 | I32 offset; | |
1138 | I32 k; | |
1139 | ||
1140 | # if BYTEORDER & 0xf0000 | |
1141 | # define ORDERBYTE (0x88888888 - BYTEORDER) | |
1142 | # else | |
1143 | # define ORDERBYTE (0x4444 - BYTEORDER) | |
1144 | # endif | |
1145 | ||
1146 | #endif | |
1147 | ||
1148 | SP -= 4; | |
1149 | for (i = 1; i <= 3; i++) { | |
e26c6904 | 1150 | SV * const sv = svs[i] = SP[i]; |
9d6d5a79 | 1151 | SvGETMAGIC(sv); |
15547071 GA |
1152 | if (!SvOK(sv)) |
1153 | continue; | |
ba3062ae FC |
1154 | if (SvREADONLY(sv)) { |
1155 | if (!(SvPOK(sv) && SvCUR(sv) == 0)) | |
cb077ed2 | 1156 | Perl_croak_no_modify(); |
ba3062ae FC |
1157 | } |
1158 | else if (SvIsCOW(sv)) sv_force_normal_flags(sv, 0); | |
4ef2275c | 1159 | if (!SvPOK(sv)) { |
9d6d5a79 FC |
1160 | if (!SvPOKp(sv)) |
1161 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), | |
1162 | "Non-string passed as bitmask"); | |
e26c6904 FC |
1163 | if (SvGAMAGIC(sv)) { |
1164 | svs[i] = sv_newmortal(); | |
1165 | sv_copypv_nomg(svs[i], sv); | |
1166 | } | |
1167 | else | |
1168 | SvPV_force_nomg_nolen(sv); /* force string conversion */ | |
4ef2275c | 1169 | } |
e26c6904 | 1170 | j = SvCUR(svs[i]); |
a0d0e21e LW |
1171 | if (maxlen < j) |
1172 | maxlen = j; | |
1173 | } | |
1174 | ||
5ff3f7a4 | 1175 | /* little endians can use vecs directly */ |
e366b469 | 1176 | #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678 |
5ff3f7a4 | 1177 | # ifdef NFDBITS |
a0d0e21e | 1178 | |
5ff3f7a4 GS |
1179 | # ifndef NBBY |
1180 | # define NBBY 8 | |
1181 | # endif | |
a0d0e21e LW |
1182 | |
1183 | masksize = NFDBITS / NBBY; | |
5ff3f7a4 | 1184 | # else |
a0d0e21e | 1185 | masksize = sizeof(long); /* documented int, everyone seems to use long */ |
5ff3f7a4 | 1186 | # endif |
a0d0e21e LW |
1187 | Zero(&fd_sets[0], 4, char*); |
1188 | #endif | |
1189 | ||
ad517f75 MHM |
1190 | # if SELECT_MIN_BITS == 1 |
1191 | growsize = sizeof(fd_set); | |
1192 | # else | |
1193 | # if defined(__GLIBC__) && defined(__FD_SETSIZE) | |
1194 | # undef SELECT_MIN_BITS | |
1195 | # define SELECT_MIN_BITS __FD_SETSIZE | |
1196 | # endif | |
e366b469 PG |
1197 | /* If SELECT_MIN_BITS is greater than one we most probably will want |
1198 | * to align the sizes with SELECT_MIN_BITS/8 because for example | |
1199 | * in many little-endian (Intel, Alpha) systems (Linux, OS/2, Digital | |
f05550c0 | 1200 | * UNIX, Solaris, Darwin) the smallest quantum select() operates |
e366b469 PG |
1201 | * on (sets/tests/clears bits) is 32 bits. */ |
1202 | growsize = maxlen + (SELECT_MIN_BITS/8 - (maxlen % (SELECT_MIN_BITS/8))); | |
e366b469 PG |
1203 | # endif |
1204 | ||
a0d0e21e | 1205 | sv = SP[4]; |
90eaaf02 | 1206 | SvGETMAGIC(sv); |
a0d0e21e | 1207 | if (SvOK(sv)) { |
90eaaf02 | 1208 | value = SvNV_nomg(sv); |
a0d0e21e LW |
1209 | if (value < 0.0) |
1210 | value = 0.0; | |
1211 | timebuf.tv_sec = (long)value; | |
65202027 | 1212 | value -= (NV)timebuf.tv_sec; |
a0d0e21e LW |
1213 | timebuf.tv_usec = (long)(value * 1000000.0); |
1214 | } | |
1215 | else | |
4608196e | 1216 | tbuf = NULL; |
a0d0e21e LW |
1217 | |
1218 | for (i = 1; i <= 3; i++) { | |
e26c6904 | 1219 | sv = svs[i]; |
15547071 | 1220 | if (!SvOK(sv) || SvCUR(sv) == 0) { |
a0d0e21e LW |
1221 | fd_sets[i] = 0; |
1222 | continue; | |
1223 | } | |
4ef2275c | 1224 | assert(SvPOK(sv)); |
a0d0e21e LW |
1225 | j = SvLEN(sv); |
1226 | if (j < growsize) { | |
1227 | Sv_Grow(sv, growsize); | |
a0d0e21e | 1228 | } |
c07a80fd PP |
1229 | j = SvCUR(sv); |
1230 | s = SvPVX(sv) + j; | |
1231 | while (++j <= growsize) { | |
1232 | *s++ = '\0'; | |
1233 | } | |
1234 | ||
a0d0e21e LW |
1235 | #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678 |
1236 | s = SvPVX(sv); | |
a02a5408 | 1237 | Newx(fd_sets[i], growsize, char); |
a0d0e21e LW |
1238 | for (offset = 0; offset < growsize; offset += masksize) { |
1239 | for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4)) | |
1240 | fd_sets[i][j+offset] = s[(k % masksize) + offset]; | |
1241 | } | |
1242 | #else | |
1243 | fd_sets[i] = SvPVX(sv); | |
1244 | #endif | |
1245 | } | |
1246 | ||
dc4c69d9 JH |
1247 | #ifdef PERL_IRIX5_SELECT_TIMEVAL_VOID_CAST |
1248 | /* Can't make just the (void*) conditional because that would be | |
1249 | * cpp #if within cpp macro, and not all compilers like that. */ | |
1250 | nfound = PerlSock_select( | |
1251 | maxlen * 8, | |
1252 | (Select_fd_set_t) fd_sets[1], | |
1253 | (Select_fd_set_t) fd_sets[2], | |
1254 | (Select_fd_set_t) fd_sets[3], | |
1255 | (void*) tbuf); /* Workaround for compiler bug. */ | |
1256 | #else | |
6ad3d225 | 1257 | nfound = PerlSock_select( |
a0d0e21e LW |
1258 | maxlen * 8, |
1259 | (Select_fd_set_t) fd_sets[1], | |
1260 | (Select_fd_set_t) fd_sets[2], | |
1261 | (Select_fd_set_t) fd_sets[3], | |
1262 | tbuf); | |
dc4c69d9 | 1263 | #endif |
a0d0e21e LW |
1264 | for (i = 1; i <= 3; i++) { |
1265 | if (fd_sets[i]) { | |
e26c6904 | 1266 | sv = svs[i]; |
a0d0e21e LW |
1267 | #if BYTEORDER != 0x1234 && BYTEORDER != 0x12345678 |
1268 | s = SvPVX(sv); | |
1269 | for (offset = 0; offset < growsize; offset += masksize) { | |
1270 | for (j = 0, k=ORDERBYTE; j < masksize; j++, (k >>= 4)) | |
1271 | s[(k % masksize) + offset] = fd_sets[i][j+offset]; | |
1272 | } | |
1273 | Safefree(fd_sets[i]); | |
1274 | #endif | |
e26c6904 FC |
1275 | if (sv != SP[i]) |
1276 | SvSetMagicSV(SP[i], sv); | |
1277 | else | |
1278 | SvSETMAGIC(sv); | |
a0d0e21e LW |
1279 | } |
1280 | } | |
1281 | ||
4189264e | 1282 | PUSHi(nfound); |
82334630 | 1283 | if (GIMME_V == G_ARRAY && tbuf) { |
65202027 DS |
1284 | value = (NV)(timebuf.tv_sec) + |
1285 | (NV)(timebuf.tv_usec) / 1000000.0; | |
6e449a3a | 1286 | mPUSHn(value); |
a0d0e21e LW |
1287 | } |
1288 | RETURN; | |
1289 | #else | |
cea2e8a9 | 1290 | DIE(aTHX_ "select not implemented"); |
a0d0e21e LW |
1291 | #endif |
1292 | } | |
1293 | ||
8226a3d7 | 1294 | /* |
dcccc8ff KW |
1295 | |
1296 | =head1 GV Functions | |
1297 | ||
8226a3d7 NC |
1298 | =for apidoc setdefout |
1299 | ||
796b6530 KW |
1300 | Sets C<PL_defoutgv>, the default file handle for output, to the passed in |
1301 | typeglob. As C<PL_defoutgv> "owns" a reference on its typeglob, the reference | |
8226a3d7 | 1302 | count of the passed in typeglob is increased by one, and the reference count |
796b6530 | 1303 | of the typeglob that C<PL_defoutgv> points to is decreased by one. |
8226a3d7 NC |
1304 | |
1305 | =cut | |
1306 | */ | |
1307 | ||
4633a7c4 | 1308 | void |
864dbfa3 | 1309 | Perl_setdefout(pTHX_ GV *gv) |
4633a7c4 | 1310 | { |
656457d0 DM |
1311 | GV *oldgv = PL_defoutgv; |
1312 | ||
9a9bb270 | 1313 | PERL_ARGS_ASSERT_SETDEFOUT; |
656457d0 | 1314 | |
9a9bb270 | 1315 | SvREFCNT_inc_simple_void_NN(gv); |
3280af22 | 1316 | PL_defoutgv = gv; |
656457d0 | 1317 | SvREFCNT_dec(oldgv); |
4633a7c4 LW |
1318 | } |
1319 | ||
a0d0e21e LW |
1320 | PP(pp_select) |
1321 | { | |
20b7effb | 1322 | dSP; dTARGET; |
4633a7c4 | 1323 | HV *hv; |
159b6efe | 1324 | GV * const newdefout = (PL_op->op_private > 0) ? (MUTABLE_GV(POPs)) : NULL; |
099be4f1 | 1325 | GV * egv = GvEGVx(PL_defoutgv); |
0df2568b | 1326 | GV * const *gvp; |
4633a7c4 | 1327 | |
4633a7c4 | 1328 | if (!egv) |
3280af22 | 1329 | egv = PL_defoutgv; |
099be4f1 | 1330 | hv = isGV_with_GP(egv) ? GvSTASH(egv) : NULL; |
0df2568b | 1331 | gvp = hv && HvENAME(hv) |
204263bc FC |
1332 | ? (GV**)hv_fetch(hv, GvNAME(egv), HEK_UTF8(GvNAME_HEK(egv)) ? -GvNAMELEN(egv) : GvNAMELEN(egv), FALSE) |
1333 | : NULL; | |
0df2568b | 1334 | if (gvp && *gvp == egv) { |
bd61b366 | 1335 | gv_efullname4(TARG, PL_defoutgv, NULL, TRUE); |
f86702cc | 1336 | XPUSHTARG; |
0df2568b FC |
1337 | } |
1338 | else { | |
ad64d0ec | 1339 | mXPUSHs(newRV(MUTABLE_SV(egv))); |
4633a7c4 LW |
1340 | } |
1341 | ||
1342 | if (newdefout) { | |
ded8aa31 GS |
1343 | if (!GvIO(newdefout)) |
1344 | gv_IOadd(newdefout); | |
4633a7c4 LW |
1345 | setdefout(newdefout); |
1346 | } | |
1347 | ||
a0d0e21e LW |
1348 | RETURN; |
1349 | } | |
1350 | ||
1351 | PP(pp_getc) | |
1352 | { | |
20b7effb | 1353 | dSP; dTARGET; |
12dc5f94 DM |
1354 | /* pp_coreargs pushes a NULL to indicate no args passed to |
1355 | * CORE::getc() */ | |
30901a8a FC |
1356 | GV * const gv = |
1357 | MAXARG==0 || (!TOPs && !POPs) ? PL_stdingv : MUTABLE_GV(POPs); | |
9c9f25b8 | 1358 | IO *const io = GvIO(gv); |
2ae324a7 | 1359 | |
ac3697cd NC |
1360 | if (MAXARG == 0) |
1361 | EXTEND(SP, 1); | |
1362 | ||
9c9f25b8 | 1363 | if (io) { |
a5e1d062 | 1364 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 1365 | if (mg) { |
1c23e2bd | 1366 | const U8 gimme = GIMME_V; |
3e0cb5de | 1367 | Perl_tied_method(aTHX_ SV_CONST(GETC), SP, MUTABLE_SV(io), mg, gimme, 0); |
0240605e NC |
1368 | if (gimme == G_SCALAR) { |
1369 | SPAGAIN; | |
a79db61d | 1370 | SvSetMagicSV_nosteal(TARG, TOPs); |
0240605e NC |
1371 | } |
1372 | return NORMAL; | |
a79db61d | 1373 | } |
2ae324a7 | 1374 | } |
90133b69 | 1375 | if (!gv || do_eof(gv)) { /* make sure we have fp with something */ |
51087808 | 1376 | if (!io || (!IoIFP(io) && IoTYPE(io) != IoTYPE_WRONLY)) |
831e4cc3 | 1377 | report_evil_fh(gv); |
b5fe5ca2 | 1378 | SETERRNO(EBADF,RMS_IFI); |
a0d0e21e | 1379 | RETPUSHUNDEF; |
90133b69 | 1380 | } |
bbce6d69 | 1381 | TAINT; |
76f68e9b | 1382 | sv_setpvs(TARG, " "); |
9bc64814 | 1383 | *SvPVX(TARG) = PerlIO_getc(IoIFP(GvIOp(gv))); /* should never be EOF */ |
7d59b7e4 NIS |
1384 | if (PerlIO_isutf8(IoIFP(GvIOp(gv)))) { |
1385 | /* Find out how many bytes the char needs */ | |
aa07b2f6 | 1386 | Size_t len = UTF8SKIP(SvPVX_const(TARG)); |
7d59b7e4 NIS |
1387 | if (len > 1) { |
1388 | SvGROW(TARG,len+1); | |
1389 | len = PerlIO_read(IoIFP(GvIOp(gv)),SvPVX(TARG)+1,len-1); | |
1390 | SvCUR_set(TARG,1+len); | |
1391 | } | |
1392 | SvUTF8_on(TARG); | |
1393 | } | |
88c34251 | 1394 | else SvUTF8_off(TARG); |
a0d0e21e LW |
1395 | PUSHTARG; |
1396 | RETURN; | |
1397 | } | |
1398 | ||
76e3520e | 1399 | STATIC OP * |
cea2e8a9 | 1400 | S_doform(pTHX_ CV *cv, GV *gv, OP *retop) |
a0d0e21e | 1401 | { |
eb578fdb | 1402 | PERL_CONTEXT *cx; |
1c23e2bd | 1403 | const U8 gimme = GIMME_V; |
a0d0e21e | 1404 | |
7918f24d NC |
1405 | PERL_ARGS_ASSERT_DOFORM; |
1406 | ||
535e48ea | 1407 | if (CvCLONE(cv)) |
7b190374 NC |
1408 | cv = MUTABLE_CV(sv_2mortal(MUTABLE_SV(cv_clone(cv)))); |
1409 | ||
ed8ff0f3 | 1410 | cx = cx_pushblock(CXt_FORMAT, gimme, PL_stack_sp, PL_savestack_ix); |
6a7d52cc | 1411 | cx_pushformat(cx, cv, retop, gv); |
d2af2719 | 1412 | if (CvDEPTH(cv) >= 2) |
f32c7e86 | 1413 | pad_push(CvPADLIST(cv), CvDEPTH(cv)); |
f32c7e86 | 1414 | PAD_SET_CUR_NOSAVE(CvPADLIST(cv), CvDEPTH(cv)); |
a0d0e21e | 1415 | |
4633a7c4 | 1416 | setdefout(gv); /* locally select filehandle so $% et al work */ |
a0d0e21e LW |
1417 | return CvSTART(cv); |
1418 | } | |
1419 | ||
1420 | PP(pp_enterwrite) | |
1421 | { | |
39644a26 | 1422 | dSP; |
eb578fdb KW |
1423 | GV *gv; |
1424 | IO *io; | |
a0d0e21e | 1425 | GV *fgv; |
07822e36 | 1426 | CV *cv = NULL; |
a0d0e21e | 1427 | |
2addaaf3 | 1428 | if (MAXARG == 0) { |
2addaaf3 | 1429 | EXTEND(SP, 1); |
49225470 | 1430 | gv = PL_defoutgv; |
2addaaf3 | 1431 | } |
a0d0e21e | 1432 | else { |
159b6efe | 1433 | gv = MUTABLE_GV(POPs); |
a0d0e21e | 1434 | if (!gv) |
3280af22 | 1435 | gv = PL_defoutgv; |
a0d0e21e | 1436 | } |
a0d0e21e LW |
1437 | io = GvIO(gv); |
1438 | if (!io) { | |
1439 | RETPUSHNO; | |
1440 | } | |
1441 | if (IoFMT_GV(io)) | |
1442 | fgv = IoFMT_GV(io); | |
1443 | else | |
1444 | fgv = gv; | |
1445 | ||
2d1ebc9b | 1446 | assert(fgv); |
a79db61d | 1447 | |
a0d0e21e | 1448 | cv = GvFORM(fgv); |
a0d0e21e | 1449 | if (!cv) { |
19742f39 | 1450 | SV * const tmpsv = sv_newmortal(); |
f4a7049d | 1451 | gv_efullname4(tmpsv, fgv, NULL, FALSE); |
147e3846 | 1452 | DIE(aTHX_ "Undefined format \"%" SVf "\" called", SVfARG(tmpsv)); |
a0d0e21e | 1453 | } |
44a8e56a | 1454 | IoFLAGS(io) &= ~IOf_DIDTOP; |
8e4ecf23 | 1455 | RETURNOP(doform(cv,gv,PL_op->op_next)); |
a0d0e21e LW |
1456 | } |
1457 | ||
1458 | PP(pp_leavewrite) | |
1459 | { | |
20b7effb | 1460 | dSP; |
4ebe6e95 | 1461 | GV * const gv = CX_CUR()->blk_format.gv; |
eb578fdb | 1462 | IO * const io = GvIOp(gv); |
8b8cacda | 1463 | PerlIO *ofp; |
760ac839 | 1464 | PerlIO *fp; |
eb578fdb | 1465 | PERL_CONTEXT *cx; |
8f89e5a9 | 1466 | OP *retop; |
617a4f41 | 1467 | bool is_return = cBOOL(PL_op->op_type == OP_RETURN); |
a0d0e21e | 1468 | |
617a4f41 | 1469 | if (is_return || !io || !(ofp = IoOFP(io))) |
8b8cacda | 1470 | goto forget_top; |
1471 | ||
760ac839 | 1472 | DEBUG_f(PerlIO_printf(Perl_debug_log, "left=%ld, todo=%ld\n", |
3280af22 | 1473 | (long)IoLINES_LEFT(io), (long)FmLINES(PL_formtarget))); |
8b8cacda | 1474 | |
3280af22 NIS |
1475 | if (IoLINES_LEFT(io) < FmLINES(PL_formtarget) && |
1476 | PL_formtarget != PL_toptarget) | |
a0d0e21e | 1477 | { |
4633a7c4 LW |
1478 | GV *fgv; |
1479 | CV *cv; | |
a0d0e21e LW |
1480 | if (!IoTOP_GV(io)) { |
1481 | GV *topgv; | |
a0d0e21e LW |
1482 | |
1483 | if (!IoTOP_NAME(io)) { | |
1b6737cc | 1484 | SV *topname; |
a0d0e21e LW |
1485 | if (!IoFMT_NAME(io)) |
1486 | IoFMT_NAME(io) = savepv(GvNAME(gv)); | |
147e3846 | 1487 | topname = sv_2mortal(Perl_newSVpvf(aTHX_ "%" HEKf "_TOP", |
d0c0e7dd | 1488 | HEKfARG(GvNAME_HEK(gv)))); |
f776e3cd | 1489 | topgv = gv_fetchsv(topname, 0, SVt_PVFM); |
748a9306 | 1490 | if ((topgv && GvFORM(topgv)) || |
fafc274c | 1491 | !gv_fetchpvs("top", GV_NOTQUAL, SVt_PVFM)) |
2e0de35c | 1492 | IoTOP_NAME(io) = savesvpv(topname); |
a0d0e21e | 1493 | else |
89529cee | 1494 | IoTOP_NAME(io) = savepvs("top"); |
a0d0e21e | 1495 | } |
f776e3cd | 1496 | topgv = gv_fetchpv(IoTOP_NAME(io), 0, SVt_PVFM); |
a0d0e21e | 1497 | if (!topgv || !GvFORM(topgv)) { |
b929a54b | 1498 | IoLINES_LEFT(io) = IoPAGE_LEN(io); |
a0d0e21e LW |
1499 | goto forget_top; |
1500 | } | |
1501 | IoTOP_GV(io) = topgv; | |
1502 | } | |
748a9306 LW |
1503 | if (IoFLAGS(io) & IOf_DIDTOP) { /* Oh dear. It still doesn't fit. */ |
1504 | I32 lines = IoLINES_LEFT(io); | |
504618e9 | 1505 | const char *s = SvPVX_const(PL_formtarget); |
5716a028 | 1506 | const char *e = SvEND(PL_formtarget); |
8e07c86e AD |
1507 | if (lines <= 0) /* Yow, header didn't even fit!!! */ |
1508 | goto forget_top; | |
748a9306 | 1509 | while (lines-- > 0) { |
5716a028 | 1510 | s = (char *) memchr(s, '\n', e - s); |
748a9306 LW |
1511 | if (!s) |
1512 | break; | |
1513 | s++; | |
1514 | } | |
1515 | if (s) { | |
f54cb97a | 1516 | const STRLEN save = SvCUR(PL_formtarget); |
aa07b2f6 | 1517 | SvCUR_set(PL_formtarget, s - SvPVX_const(PL_formtarget)); |
d75029d0 NIS |
1518 | do_print(PL_formtarget, ofp); |
1519 | SvCUR_set(PL_formtarget, save); | |
3280af22 NIS |
1520 | sv_chop(PL_formtarget, s); |
1521 | FmLINES(PL_formtarget) -= IoLINES_LEFT(io); | |
748a9306 LW |
1522 | } |
1523 | } | |
a0d0e21e | 1524 | if (IoLINES_LEFT(io) >= 0 && IoPAGE(io) > 0) |
f6dfc736 | 1525 | do_print(GvSV(gv_fetchpvs("\f", GV_ADD, SVt_PV)), ofp); |
a0d0e21e LW |
1526 | IoLINES_LEFT(io) = IoPAGE_LEN(io); |
1527 | IoPAGE(io)++; | |
3280af22 | 1528 | PL_formtarget = PL_toptarget; |
748a9306 | 1529 | IoFLAGS(io) |= IOf_DIDTOP; |
4633a7c4 | 1530 | fgv = IoTOP_GV(io); |
636013b3 | 1531 | assert(fgv); /* IoTOP_GV(io) should have been set above */ |
4633a7c4 | 1532 | cv = GvFORM(fgv); |
1df70142 AL |
1533 | if (!cv) { |
1534 | SV * const sv = sv_newmortal(); | |
bd61b366 | 1535 | gv_efullname4(sv, fgv, NULL, FALSE); |
147e3846 | 1536 | DIE(aTHX_ "Undefined top format \"%" SVf "\" called", SVfARG(sv)); |
4633a7c4 | 1537 | } |
43cd5cb7 | 1538 | return doform(cv, gv, PL_op); |
a0d0e21e LW |
1539 | } |
1540 | ||
1541 | forget_top: | |
4ebe6e95 | 1542 | cx = CX_CUR(); |
4df352a8 DM |
1543 | assert(CxTYPE(cx) == CXt_FORMAT); |
1544 | SP = PL_stack_base + cx->blk_oldsp; /* ignore retval of formline */ | |
2f450c1b | 1545 | CX_LEAVE_SCOPE(cx); |
6a7d52cc | 1546 | cx_popformat(cx); |
ed8ff0f3 | 1547 | cx_popblock(cx); |
8f89e5a9 | 1548 | retop = cx->blk_sub.retop; |
5da525e9 | 1549 | CX_POP(cx); |
a0d0e21e | 1550 | |
b7effc98 DM |
1551 | EXTEND(SP, 1); |
1552 | ||
617a4f41 DM |
1553 | if (is_return) |
1554 | /* XXX the semantics of doing 'return' in a format aren't documented. | |
1555 | * Currently we ignore any args to 'return' and just return | |
1556 | * a single undef in both scalar and list contexts | |
1557 | */ | |
1558 | PUSHs(&PL_sv_undef); | |
1559 | else if (!io || !(fp = IoOFP(io))) { | |
c782dc1d | 1560 | if (io && IoIFP(io)) |
7716c5c5 | 1561 | report_wrongway_fh(gv, '<'); |
c521cf7c | 1562 | else |
7716c5c5 | 1563 | report_evil_fh(gv); |
3280af22 | 1564 | PUSHs(&PL_sv_no); |
a0d0e21e LW |
1565 | } |
1566 | else { | |
3280af22 | 1567 | if ((IoLINES_LEFT(io) -= FmLINES(PL_formtarget)) < 0) { |
a2a5de95 | 1568 | Perl_ck_warner(aTHX_ packWARN(WARN_IO), "page overflow"); |
a0d0e21e | 1569 | } |
d75029d0 | 1570 | if (!do_print(PL_formtarget, fp)) |
3280af22 | 1571 | PUSHs(&PL_sv_no); |
a0d0e21e | 1572 | else { |
3280af22 NIS |
1573 | FmLINES(PL_formtarget) = 0; |
1574 | SvCUR_set(PL_formtarget, 0); | |
1575 | *SvEND(PL_formtarget) = '\0'; | |
a0d0e21e | 1576 | if (IoFLAGS(io) & IOf_FLUSH) |
760ac839 | 1577 | (void)PerlIO_flush(fp); |
3280af22 | 1578 | PUSHs(&PL_sv_yes); |
a0d0e21e LW |
1579 | } |
1580 | } | |
3280af22 | 1581 | PL_formtarget = PL_bodytarget; |
8e4ecf23 | 1582 | RETURNOP(retop); |
a0d0e21e LW |
1583 | } |
1584 | ||
1585 | PP(pp_prtf) | |
1586 | { | |
20b7effb | 1587 | dSP; dMARK; dORIGMARK; |
760ac839 | 1588 | PerlIO *fp; |
a0d0e21e | 1589 | |
159b6efe NC |
1590 | GV * const gv |
1591 | = (PL_op->op_flags & OPf_STACKED) ? MUTABLE_GV(*++MARK) : PL_defoutgv; | |
9c9f25b8 | 1592 | IO *const io = GvIO(gv); |
46fc3d4c | 1593 | |
87385d72 FC |
1594 | /* Treat empty list as "" */ |
1595 | if (MARK == SP) XPUSHs(&PL_sv_no); | |
1596 | ||
9c9f25b8 | 1597 | if (io) { |
a5e1d062 | 1598 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d AL |
1599 | if (mg) { |
1600 | if (MARK == ORIGMARK) { | |
1601 | MEXTEND(SP, 1); | |
1602 | ++MARK; | |
1603 | Move(MARK, MARK + 1, (SP - MARK) + 1, SV*); | |
1604 | ++SP; | |
1605 | } | |
3e0cb5de | 1606 | return Perl_tied_method(aTHX_ SV_CONST(PRINTF), mark - 1, MUTABLE_SV(io), |
d682515d NC |
1607 | mg, |
1608 | G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK, | |
1609 | sp - mark); | |
a79db61d | 1610 | } |
46fc3d4c PP |
1611 | } |
1612 | ||
9c9f25b8 | 1613 | if (!io) { |
51087808 | 1614 | report_evil_fh(gv); |
93189314 | 1615 | SETERRNO(EBADF,RMS_IFI); |
a0d0e21e LW |
1616 | goto just_say_no; |
1617 | } | |
1618 | else if (!(fp = IoOFP(io))) { | |
7716c5c5 NC |
1619 | if (IoIFP(io)) |
1620 | report_wrongway_fh(gv, '<'); | |
1621 | else if (ckWARN(WARN_CLOSED)) | |
1622 | report_evil_fh(gv); | |
93189314 | 1623 | SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI); |
a0d0e21e LW |
1624 | goto just_say_no; |
1625 | } | |
1626 | else { | |
c7bd8b84 | 1627 | SV *sv = sv_newmortal(); |
a0d0e21e LW |
1628 | do_sprintf(sv, SP - MARK, MARK + 1); |
1629 | if (!do_print(sv, fp)) | |
1630 | goto just_say_no; | |
1631 | ||
1632 | if (IoFLAGS(io) & IOf_FLUSH) | |
760ac839 | 1633 | if (PerlIO_flush(fp) == EOF) |
a0d0e21e LW |
1634 | goto just_say_no; |
1635 | } | |
a0d0e21e | 1636 | SP = ORIGMARK; |
3280af22 | 1637 | PUSHs(&PL_sv_yes); |
a0d0e21e LW |
1638 | RETURN; |
1639 | ||
1640 | just_say_no: | |
a0d0e21e | 1641 | SP = ORIGMARK; |
3280af22 | 1642 | PUSHs(&PL_sv_undef); |
a0d0e21e LW |
1643 | RETURN; |
1644 | } | |
1645 | ||
c07a80fd PP |
1646 | PP(pp_sysopen) |
1647 | { | |
39644a26 | 1648 | dSP; |
de5e49e1 | 1649 | const int perm = (MAXARG > 3 && (TOPs || POPs)) ? POPi : 0666; |
1df70142 | 1650 | const int mode = POPi; |
1b6737cc | 1651 | SV * const sv = POPs; |
159b6efe | 1652 | GV * const gv = MUTABLE_GV(POPs); |
1b6737cc | 1653 | STRLEN len; |
c07a80fd | 1654 | |
4592e6ca | 1655 | /* Need TIEHANDLE method ? */ |
1b6737cc | 1656 | const char * const tmps = SvPV_const(sv, len); |
7e30e49f | 1657 | if (do_open_raw(gv, tmps, len, mode, perm, NULL)) { |
c07a80fd | 1658 | IoLINES(GvIOp(gv)) = 0; |
3280af22 | 1659 | PUSHs(&PL_sv_yes); |
c07a80fd PP |
1660 | } |
1661 | else { | |
3280af22 | 1662 | PUSHs(&PL_sv_undef); |
c07a80fd PP |
1663 | } |
1664 | RETURN; | |
1665 | } | |
1666 | ||
b1c05ba5 DM |
1667 | |
1668 | /* also used for: pp_read() and pp_recv() (where supported) */ | |
1669 | ||
a0d0e21e LW |
1670 | PP(pp_sysread) |
1671 | { | |
20b7effb | 1672 | dSP; dMARK; dORIGMARK; dTARGET; |
0b423688 | 1673 | SSize_t offset; |
a0d0e21e LW |
1674 | IO *io; |
1675 | char *buffer; | |
0b423688 | 1676 | STRLEN orig_size; |
5b54f415 | 1677 | SSize_t length; |
eb5c063a | 1678 | SSize_t count; |
748a9306 | 1679 | SV *bufsv; |
a0d0e21e | 1680 | STRLEN blen; |
eb5c063a | 1681 | int fp_utf8; |
1dd30107 NC |
1682 | int buffer_utf8; |
1683 | SV *read_target; | |
eb5c063a NIS |
1684 | Size_t got = 0; |
1685 | Size_t wanted; | |
1d636c13 | 1686 | bool charstart = FALSE; |
87330c3c JH |
1687 | STRLEN charskip = 0; |
1688 | STRLEN skip = 0; | |
159b6efe | 1689 | GV * const gv = MUTABLE_GV(*++MARK); |
375ed12a JH |
1690 | int fd; |
1691 | ||
5b468f54 | 1692 | if ((PL_op->op_type == OP_READ || PL_op->op_type == OP_SYSREAD) |
1b6737cc | 1693 | && gv && (io = GvIO(gv)) ) |
137443ea | 1694 | { |
a5e1d062 | 1695 | const MAGIC *const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
1b6737cc | 1696 | if (mg) { |
3e0cb5de | 1697 | return Perl_tied_method(aTHX_ SV_CONST(READ), mark - 1, MUTABLE_SV(io), mg, |
d682515d NC |
1698 | G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK, |
1699 | sp - mark); | |
1b6737cc | 1700 | } |
2ae324a7 PP |
1701 | } |
1702 | ||
a0d0e21e LW |
1703 | if (!gv) |
1704 | goto say_undef; | |
748a9306 | 1705 | bufsv = *++MARK; |
ff68c719 | 1706 | if (! SvOK(bufsv)) |
60e13354 | 1707 | SvPVCLEAR(bufsv); |
a0d0e21e | 1708 | length = SvIVx(*++MARK); |
4bac9ae4 CS |
1709 | if (length < 0) |
1710 | DIE(aTHX_ "Negative length"); | |
748a9306 | 1711 | SETERRNO(0,0); |
a0d0e21e LW |
1712 | if (MARK < SP) |
1713 | offset = SvIVx(*++MARK); | |
1714 | else | |
1715 | offset = 0; | |
1716 | io = GvIO(gv); | |
b5fe5ca2 | 1717 | if (!io || !IoIFP(io)) { |
51087808 | 1718 | report_evil_fh(gv); |
b5fe5ca2 | 1719 | SETERRNO(EBADF,RMS_IFI); |
a0d0e21e | 1720 | goto say_undef; |
b5fe5ca2 | 1721 | } |
375ed12a JH |
1722 | |
1723 | /* Note that fd can here validly be -1, don't check it yet. */ | |
1724 | fd = PerlIO_fileno(IoIFP(io)); | |
1725 | ||
0064a8a9 | 1726 | if ((fp_utf8 = PerlIO_isutf8(IoIFP(io))) && !IN_BYTES) { |
fb10a8a7 | 1727 | if (PL_op->op_type == OP_SYSREAD || PL_op->op_type == OP_RECV) { |
89e5a021 | 1728 | Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), |
1972ac5c A |
1729 | "%s() is deprecated on :utf8 handles. " |
1730 | "This will be a fatal error in Perl 5.30", | |
89e5a021 | 1731 | OP_DESC(PL_op)); |
fb10a8a7 | 1732 | } |
7d59b7e4 | 1733 | buffer = SvPVutf8_force(bufsv, blen); |
1e54db1a | 1734 | /* UTF-8 may not have been set if they are all low bytes */ |
eb5c063a | 1735 | SvUTF8_on(bufsv); |
9b9d7ce8 | 1736 | buffer_utf8 = 0; |
7d59b7e4 NIS |
1737 | } |
1738 | else { | |
1739 | buffer = SvPV_force(bufsv, blen); | |
1dd30107 | 1740 | buffer_utf8 = !IN_BYTES && SvUTF8(bufsv); |
7d59b7e4 | 1741 | } |
4bac9ae4 | 1742 | if (DO_UTF8(bufsv)) { |
3f914778 | 1743 | blen = sv_len_utf8_nomg(bufsv); |
4bac9ae4 | 1744 | } |
7d59b7e4 | 1745 | |
d0965105 JH |
1746 | charstart = TRUE; |
1747 | charskip = 0; | |
87330c3c | 1748 | skip = 0; |
4bac9ae4 | 1749 | wanted = length; |
d0965105 | 1750 | |
a0d0e21e | 1751 | #ifdef HAS_SOCKET |
533c011a | 1752 | if (PL_op->op_type == OP_RECV) { |
0b423688 | 1753 | Sock_size_t bufsize; |
46fc3d4c | 1754 | char namebuf[MAXPATHLEN]; |
375ed12a JH |
1755 | if (fd < 0) { |
1756 | SETERRNO(EBADF,SS_IVCHAN); | |
78e69e60 | 1757 | goto say_undef; |
375ed12a | 1758 | } |
b5afd346 | 1759 | #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__) |
490ab354 JH |
1760 | bufsize = sizeof (struct sockaddr_in); |
1761 | #else | |
46fc3d4c | 1762 | bufsize = sizeof namebuf; |
490ab354 | 1763 | #endif |
abf95952 IZ |
1764 | #ifdef OS2 /* At least Warp3+IAK: only the first byte of bufsize set */ |
1765 | if (bufsize >= 256) | |
1766 | bufsize = 255; | |
1767 | #endif | |
eb160463 | 1768 | buffer = SvGROW(bufsv, (STRLEN)(length+1)); |
bbce6d69 | 1769 | /* 'offset' means 'flags' here */ |
375ed12a | 1770 | count = PerlSock_recvfrom(fd, buffer, length, offset, |
10edeb5d | 1771 | (struct sockaddr *)namebuf, &bufsize); |
eb5c063a | 1772 | if (count < 0) |
78e69e60 | 1773 | goto say_undef; |
8eb023a9 DM |
1774 | /* MSG_TRUNC can give oversized count; quietly lose it */ |
1775 | if (count > length) | |
1776 | count = length; | |
eb5c063a | 1777 | SvCUR_set(bufsv, count); |
748a9306 LW |
1778 | *SvEND(bufsv) = '\0'; |
1779 | (void)SvPOK_only(bufsv); | |
eb5c063a NIS |
1780 | if (fp_utf8) |
1781 | SvUTF8_on(bufsv); | |
748a9306 | 1782 | SvSETMAGIC(bufsv); |
aac0dd9a | 1783 | /* This should not be marked tainted if the fp is marked clean */ |
bbce6d69 PP |
1784 | if (!(IoFLAGS(io) & IOf_UNTAINT)) |
1785 | SvTAINTED_on(bufsv); | |
a0d0e21e | 1786 | SP = ORIGMARK; |
e122534c TC |
1787 | #if defined(__CYGWIN__) |
1788 | /* recvfrom() on cygwin doesn't set bufsize at all for | |
1789 | connected sockets, leaving us with trash in the returned | |
1790 | name, so use the same test as the Win32 code to check if it | |
1791 | wasn't set, and set it [perl #118843] */ | |
1792 | if (bufsize == sizeof namebuf) | |
1793 | bufsize = 0; | |
1794 | #endif | |
46fc3d4c | 1795 | sv_setpvn(TARG, namebuf, bufsize); |
a0d0e21e LW |
1796 | PUSHs(TARG); |
1797 | RETURN; | |
1798 | } | |
a0d0e21e | 1799 | #endif |
bbce6d69 | 1800 | if (offset < 0) { |
0b423688 | 1801 | if (-offset > (SSize_t)blen) |
cea2e8a9 | 1802 | DIE(aTHX_ "Offset outside string"); |
bbce6d69 PP |
1803 | offset += blen; |
1804 | } | |
eb5c063a NIS |
1805 | if (DO_UTF8(bufsv)) { |
1806 | /* convert offset-as-chars to offset-as-bytes */ | |
d5f981bb | 1807 | if (offset >= (SSize_t)blen) |
6960c29a CH |
1808 | offset += SvCUR(bufsv) - blen; |
1809 | else | |
1810 | offset = utf8_hop((U8 *)buffer,offset) - (U8 *) buffer; | |
eb5c063a | 1811 | } |
375ed12a | 1812 | |
eb5c063a | 1813 | more_bytes: |
375ed12a JH |
1814 | /* Reestablish the fd in case it shifted from underneath us. */ |
1815 | fd = PerlIO_fileno(IoIFP(io)); | |
1816 | ||
0b423688 | 1817 | orig_size = SvCUR(bufsv); |
1dd30107 NC |
1818 | /* Allocating length + offset + 1 isn't perfect in the case of reading |
1819 | bytes from a byte file handle into a UTF8 buffer, but it won't harm us | |
1820 | unduly. | |
1821 | (should be 2 * length + offset + 1, or possibly something longer if | |
47e13f24 | 1822 | IN_ENCODING Is true) */ |
eb160463 | 1823 | buffer = SvGROW(bufsv, (STRLEN)(length+offset+1)); |
0b423688 TC |
1824 | if (offset > 0 && offset > (SSize_t)orig_size) { /* Zero any newly allocated space */ |
1825 | Zero(buffer+orig_size, offset-orig_size, char); | |
cd52b7b2 | 1826 | } |
eb5c063a | 1827 | buffer = buffer + offset; |
1dd30107 NC |
1828 | if (!buffer_utf8) { |
1829 | read_target = bufsv; | |
1830 | } else { | |
1831 | /* Best to read the bytes into a new SV, upgrade that to UTF8, then | |
1832 | concatenate it to the current buffer. */ | |
1833 | ||
1834 | /* Truncate the existing buffer to the start of where we will be | |
1835 | reading to: */ | |
1836 | SvCUR_set(bufsv, offset); | |
1837 | ||
1838 | read_target = sv_newmortal(); | |
862a34c6 | 1839 | SvUPGRADE(read_target, SVt_PV); |
fe2774ed | 1840 | buffer = SvGROW(read_target, (STRLEN)(length + 1)); |
1dd30107 | 1841 | } |
eb5c063a | 1842 | |
533c011a | 1843 | if (PL_op->op_type == OP_SYSREAD) { |
a7092146 | 1844 | #ifdef PERL_SOCK_SYSREAD_IS_RECV |
50952442 | 1845 | if (IoTYPE(io) == IoTYPE_SOCKET) { |
375ed12a JH |
1846 | if (fd < 0) { |
1847 | SETERRNO(EBADF,SS_IVCHAN); | |
1848 | count = -1; | |
1849 | } | |
1850 | else | |
1851 | count = PerlSock_recv(fd, buffer, length, 0); | |
a7092146 GS |
1852 | } |
1853 | else | |
1854 | #endif | |
1855 | { | |
375ed12a JH |
1856 | if (fd < 0) { |
1857 | SETERRNO(EBADF,RMS_IFI); | |
1858 | count = -1; | |
1859 | } | |
1860 | else | |
1861 | count = PerlLIO_read(fd, buffer, length); | |
a7092146 | 1862 | } |
a0d0e21e LW |
1863 | } |
1864 | else | |
3b02c43c | 1865 | { |
eb5c063a NIS |
1866 | count = PerlIO_read(IoIFP(io), buffer, length); |
1867 | /* PerlIO_read() - like fread() returns 0 on both error and EOF */ | |
1868 | if (count == 0 && PerlIO_error(IoIFP(io))) | |
1869 | count = -1; | |
3b02c43c | 1870 | } |
eb5c063a | 1871 | if (count < 0) { |
7716c5c5 | 1872 | if (IoTYPE(io) == IoTYPE_WRONLY) |
a5390457 | 1873 | report_wrongway_fh(gv, '>'); |
a0d0e21e | 1874 | goto say_undef; |
af8c498a | 1875 | } |
aa07b2f6 | 1876 | SvCUR_set(read_target, count+(buffer - SvPVX_const(read_target))); |
1dd30107 NC |
1877 | *SvEND(read_target) = '\0'; |
1878 | (void)SvPOK_only(read_target); | |
0064a8a9 | 1879 | if (fp_utf8 && !IN_BYTES) { |
eb5c063a | 1880 | /* Look at utf8 we got back and count the characters */ |
1df70142 | 1881 | const char *bend = buffer + count; |
eb5c063a | 1882 | while (buffer < bend) { |
d0965105 JH |
1883 | if (charstart) { |
1884 | skip = UTF8SKIP(buffer); | |
1885 | charskip = 0; | |
1886 | } | |
1887 | if (buffer - charskip + skip > bend) { | |
eb5c063a NIS |
1888 | /* partial character - try for rest of it */ |
1889 | length = skip - (bend-buffer); | |
aa07b2f6 | 1890 | offset = bend - SvPVX_const(bufsv); |
d0965105 JH |
1891 | charstart = FALSE; |
1892 | charskip += count; | |
eb5c063a NIS |
1893 | goto more_bytes; |
1894 | } | |
1895 | else { | |
1896 | got++; | |
1897 | buffer += skip; | |
d0965105 JH |
1898 | charstart = TRUE; |
1899 | charskip = 0; | |
eb5c063a NIS |
1900 | } |
1901 | } | |
1902 | /* If we have not 'got' the number of _characters_ we 'wanted' get some more | |
1903 | provided amount read (count) was what was requested (length) | |
1904 | */ | |
1905 | if (got < wanted && count == length) { | |
d0965105 | 1906 | length = wanted - got; |
aa07b2f6 | 1907 | offset = bend - SvPVX_const(bufsv); |
eb5c063a NIS |
1908 | goto more_bytes; |
1909 | } | |
1910 | /* return value is character count */ | |
1911 | count = got; | |
1912 | SvUTF8_on(bufsv); | |
1913 | } | |
1dd30107 NC |
1914 | else if (buffer_utf8) { |
1915 | /* Let svcatsv upgrade the bytes we read in to utf8. | |
1916 | The buffer is a mortal so will be freed soon. */ | |
1917 | sv_catsv_nomg(bufsv, read_target); | |
1918 | } | |
748a9306 | 1919 | SvSETMAGIC(bufsv); |
aac0dd9a | 1920 | /* This should not be marked tainted if the fp is marked clean */ |
bbce6d69 PP |
1921 | if (!(IoFLAGS(io) & IOf_UNTAINT)) |
1922 | SvTAINTED_on(bufsv); | |
a0d0e21e | 1923 | SP = ORIGMARK; |
eb5c063a | 1924 | PUSHi(count); |
a0d0e21e LW |
1925 | RETURN; |
1926 | ||
1927 | say_undef: | |
1928 | SP = ORIGMARK; | |
1929 | RETPUSHUNDEF; | |
1930 | } | |
1931 | ||
b1c05ba5 DM |
1932 | |
1933 | /* also used for: pp_send() where defined */ | |
1934 | ||
60504e18 | 1935 | PP(pp_syswrite) |
a0d0e21e | 1936 | { |
20b7effb | 1937 | dSP; dMARK; dORIGMARK; dTARGET; |
748a9306 | 1938 | SV *bufsv; |
83003860 | 1939 | const char *buffer; |
8c99d73e | 1940 | SSize_t retval; |
a0d0e21e | 1941 | STRLEN blen; |
c9cb0f41 | 1942 | STRLEN orig_blen_bytes; |
64a1bc8e | 1943 | const int op_type = PL_op->op_type; |
c9cb0f41 NC |
1944 | bool doing_utf8; |
1945 | U8 *tmpbuf = NULL; | |
159b6efe | 1946 | GV *const gv = MUTABLE_GV(*++MARK); |
91472ad4 | 1947 | IO *const io = GvIO(gv); |
375ed12a | 1948 | int fd; |
91472ad4 NC |
1949 | |
1950 | if (op_type == OP_SYSWRITE && io) { | |
a5e1d062 | 1951 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 1952 | if (mg) { |
a79db61d | 1953 | if (MARK == SP - 1) { |
c8834ab7 TC |
1954 | SV *sv = *SP; |
1955 | mXPUSHi(sv_len(sv)); | |
a79db61d AL |
1956 | PUTBACK; |
1957 | } | |
1958 | ||
3e0cb5de | 1959 | return Perl_tied_method(aTHX_ SV_CONST(WRITE), mark - 1, MUTABLE_SV(io), mg, |
d682515d NC |
1960 | G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK, |
1961 | sp - mark); | |
64a1bc8e | 1962 | } |
1d603a67 | 1963 | } |
a0d0e21e LW |
1964 | if (!gv) |
1965 | goto say_undef; | |
64a1bc8e | 1966 | |
748a9306 | 1967 | bufsv = *++MARK; |
64a1bc8e | 1968 | |
748a9306 | 1969 | SETERRNO(0,0); |
cf167416 | 1970 | if (!io || !IoIFP(io) || IoTYPE(io) == IoTYPE_RDONLY) { |
8c99d73e | 1971 | retval = -1; |
51087808 NC |
1972 | if (io && IoIFP(io)) |
1973 | report_wrongway_fh(gv, '<'); | |
1974 | else | |
1975 | report_evil_fh(gv); | |
b5fe5ca2 | 1976 | SETERRNO(EBADF,RMS_IFI); |
7d59b7e4 NIS |
1977 | goto say_undef; |
1978 | } | |
375ed12a JH |
1979 | fd = PerlIO_fileno(IoIFP(io)); |
1980 | if (fd < 0) { | |
1981 | SETERRNO(EBADF,SS_IVCHAN); | |
1982 | retval = -1; | |
1983 | goto say_undef; | |
1984 | } | |
7d59b7e4 | 1985 | |
c9cb0f41 NC |
1986 | /* Do this first to trigger any overloading. */ |
1987 | buffer = SvPV_const(bufsv, blen); | |
1988 | orig_blen_bytes = blen; | |
1989 | doing_utf8 = DO_UTF8(bufsv); | |
1990 | ||
7d59b7e4 | 1991 | if (PerlIO_isutf8(IoIFP(io))) { |
89e5a021 | 1992 | Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), |
1972ac5c A |
1993 | "%s() is deprecated on :utf8 handles. " |
1994 | "This will be a fatal error in Perl 5.30", | |
89e5a021 | 1995 | OP_DESC(PL_op)); |
6aa2f6a7 | 1996 | if (!SvUTF8(bufsv)) { |
c9cb0f41 NC |
1997 | /* We don't modify the original scalar. */ |
1998 | tmpbuf = bytes_to_utf8((const U8*) buffer, &blen); | |
1999 | buffer = (char *) tmpbuf; | |
2000 | doing_utf8 = TRUE; | |
2001 | } | |
a0d0e21e | 2002 | } |
c9cb0f41 NC |
2003 | else if (doing_utf8) { |
2004 | STRLEN tmplen = blen; | |
a79db61d | 2005 | U8 * const result = bytes_from_utf8((const U8*) buffer, &tmplen, &doing_utf8); |
c9cb0f41 NC |
2006 | if (!doing_utf8) { |
2007 | tmpbuf = result; | |
2008 | buffer = (char *) tmpbuf; | |
2009 | blen = tmplen; | |
2010 | } | |
2011 | else { | |
2012 | assert((char *)result == buffer); | |
2013 | Perl_croak(aTHX_ "Wide character in %s", OP_DESC(PL_op)); | |
2014 | } | |
7d59b7e4 NIS |
2015 | } |
2016 | ||
e2712234 | 2017 | #ifdef HAS_SOCKET |
7627e6d0 | 2018 | if (op_type == OP_SEND) { |
e2712234 NC |
2019 | const int flags = SvIVx(*++MARK); |
2020 | if (SP > MARK) { | |
2021 | STRLEN mlen; | |
2022 | char * const sockbuf = SvPVx(*++MARK, mlen); | |
375ed12a | 2023 | retval = PerlSock_sendto(fd, buffer, blen, |
e2712234 NC |
2024 | flags, (struct sockaddr *)sockbuf, mlen); |
2025 | } | |
2026 | else { | |
375ed12a | 2027 | retval = PerlSock_send(fd, buffer, blen, flags); |
e2712234 | 2028 | } |
7627e6d0 NC |
2029 | } |
2030 | else | |
e2712234 | 2031 | #endif |
7627e6d0 | 2032 | { |
c9cb0f41 NC |
2033 | Size_t length = 0; /* This length is in characters. */ |
2034 | STRLEN blen_chars; | |
7d59b7e4 | 2035 | IV offset; |
c9cb0f41 NC |
2036 | |
2037 | if (doing_utf8) { | |
2038 | if (tmpbuf) { | |
2039 | /* The SV is bytes, and we've had to upgrade it. */ | |
2040 | blen_chars = orig_blen_bytes; | |
2041 | } else { | |
2042 | /* The SV really is UTF-8. */ | |
3f914778 FC |
2043 | /* Don't call sv_len_utf8 on a magical or overloaded |
2044 | scalar, as we might get back a different result. */ | |
2045 | blen_chars = sv_or_pv_len_utf8(bufsv, buffer, blen); | |
c9cb0f41 NC |
2046 | } |
2047 | } else { | |
2048 | blen_chars = blen; | |
2049 | } | |
2050 | ||
2051 | if (MARK >= SP) { | |
2052 | length = blen_chars; | |
2053 | } else { | |
2054 | #if Size_t_size > IVSIZE | |
2055 | length = (Size_t)SvNVx(*++MARK); | |
2056 | #else | |
2057 | length = (Size_t)SvIVx(*++MARK); | |
2058 | #endif | |
4b0c4b6f NC |
2059 | if ((SSize_t)length < 0) { |
2060 | Safefree(tmpbuf); | |
c9cb0f41 | 2061 | DIE(aTHX_ "Negative length"); |
4b0c4b6f | 2062 | } |
7d59b7e4 | 2063 | } |
c9cb0f41 | 2064 | |
bbce6d69 | 2065 | if (MARK < SP) { |
a0d0e21e | 2066 | offset = SvIVx(*++MARK); |
bbce6d69 | 2067 | if (offset < 0) { |
4b0c4b6f NC |
2068 | if (-offset > (IV)blen_chars) { |
2069 | Safefree(tmpbuf); | |
cea2e8a9 | 2070 | DIE(aTHX_ "Offset outside string"); |
4b0c4b6f | 2071 | } |
c9cb0f41 | 2072 | offset += blen_chars; |
3c946528 | 2073 | } else if (offset > (IV)blen_chars) { |
4b0c4b6f | 2074 | Safefree(tmpbuf); |
cea2e8a9 | 2075 | DIE(aTHX_ "Offset outside string"); |
4b0c4b6f | 2076 | } |
bbce6d69 | 2077 | } else |
a0d0e21e | 2078 | offset = 0; |
c9cb0f41 NC |
2079 | if (length > blen_chars - offset) |
2080 | length = blen_chars - offset; | |
2081 | if (doing_utf8) { | |
2082 | /* Here we convert length from characters to bytes. */ | |
2083 | if (tmpbuf || SvGMAGICAL(bufsv) || SvAMAGIC(bufsv)) { | |
2084 | /* Either we had to convert the SV, or the SV is magical, or | |
2085 | the SV has overloading, in which case we can't or mustn't | |
2086 | or mustn't call it again. */ | |
2087 | ||
2088 | buffer = (const char*)utf8_hop((const U8 *)buffer, offset); | |
2089 | length = utf8_hop((U8 *)buffer, length) - (U8 *)buffer; | |
2090 | } else { | |
2091 | /* It's a real UTF-8 SV, and it's not going to change under | |
2092 | us. Take advantage of any cache. */ | |
2093 | I32 start = offset; | |
2094 | I32 len_I32 = length; | |
2095 | ||
2096 | /* Convert the start and end character positions to bytes. | |
2097 | Remember that the second argument to sv_pos_u2b is relative | |
2098 | to the first. */ | |
2099 | sv_pos_u2b(bufsv, &start, &len_I32); | |
2100 | ||
2101 | buffer += start; | |
2102 | length = len_I32; | |
2103 | } | |
7d59b7e4 NIS |
2104 | } |
2105 | else { | |
2106 | buffer = buffer+offset; | |
2107 | } | |
a7092146 | 2108 | #ifdef PERL_SOCK_SYSWRITE_IS_SEND |
50952442 | 2109 | if (IoTYPE(io) == IoTYPE_SOCKET) { |
375ed12a | 2110 | retval = PerlSock_send(fd, buffer, length, 0); |
a7092146 GS |
2111 | } |
2112 | else | |
2113 | #endif | |
2114 | { | |
94e4c244 | 2115 | /* See the note at doio.c:do_print about filesize limits. --jhi */ |
375ed12a | 2116 | retval = PerlLIO_write(fd, buffer, length); |
a7092146 | 2117 | } |
a0d0e21e | 2118 | } |
c9cb0f41 | 2119 | |
8c99d73e | 2120 | if (retval < 0) |
a0d0e21e LW |
2121 | goto say_undef; |
2122 | SP = ORIGMARK; | |
c9cb0f41 | 2123 | if (doing_utf8) |
f36eea10 | 2124 | retval = utf8_length((U8*)buffer, (U8*)buffer + retval); |
4b0c4b6f | 2125 | |
a79db61d | 2126 | Safefree(tmpbuf); |
8c99d73e GS |
2127 | #if Size_t_size > IVSIZE |
2128 | PUSHn(retval); | |
2129 | #else | |
2130 | PUSHi(retval); | |
2131 | #endif | |
a0d0e21e LW |
2132 | RETURN; |
2133 | ||
2134 | say_undef: | |
a79db61d | 2135 | Safefree(tmpbuf); |
a0d0e21e LW |
2136 | SP = ORIGMARK; |
2137 | RETPUSHUNDEF; | |
2138 | } | |
2139 | ||
a0d0e21e LW |
2140 | PP(pp_eof) |
2141 | { | |
20b7effb | 2142 | dSP; |
a0d0e21e | 2143 | GV *gv; |
32e65323 | 2144 | IO *io; |
a5e1d062 | 2145 | const MAGIC *mg; |
bc0c81ca NC |
2146 | /* |
2147 | * in Perl 5.12 and later, the additional parameter is a bitmask: | |
2148 | * 0 = eof | |
2149 | * 1 = eof(FH) | |
2150 | * 2 = eof() <- ARGV magic | |
2151 | * | |
2152 | * I'll rely on the compiler's trace flow analysis to decide whether to | |
2153 | * actually assign this out here, or punt it into the only block where it is | |
2154 | * used. Doing it out here is DRY on the condition logic. | |
2155 | */ | |
2156 | unsigned int which; | |
a0d0e21e | 2157 | |
bc0c81ca | 2158 | if (MAXARG) { |
32e65323 | 2159 | gv = PL_last_in_gv = MUTABLE_GV(POPs); /* eof(FH) */ |
bc0c81ca NC |
2160 | which = 1; |
2161 | } | |
b5f55170 NC |
2162 | else { |
2163 | EXTEND(SP, 1); | |
2164 | ||
bc0c81ca | 2165 | if (PL_op->op_flags & OPf_SPECIAL) { |
b5f55170 | 2166 | gv = PL_last_in_gv = GvEGVx(PL_argvgv); /* eof() - ARGV magic */ |
bc0c81ca NC |
2167 | which = 2; |
2168 | } | |
2169 | else { | |
b5f55170 | 2170 | gv = PL_last_in_gv; /* eof */ |
bc0c81ca NC |
2171 | which = 0; |
2172 | } | |
b5f55170 | 2173 | } |
32e65323 CS |
2174 | |
2175 | if (!gv) | |
2176 | RETPUSHNO; | |
2177 | ||
2178 | if ((io = GvIO(gv)) && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) { | |
3e0cb5de | 2179 | return tied_method1(SV_CONST(EOF), SP, MUTABLE_SV(io), mg, newSVuv(which)); |
146174a9 | 2180 | } |
4592e6ca | 2181 | |
32e65323 CS |
2182 | if (!MAXARG && (PL_op->op_flags & OPf_SPECIAL)) { /* eof() */ |
2183 | if (io && !IoIFP(io)) { | |
b9f2b683 | 2184 | if ((IoFLAGS(io) & IOf_START) && av_tindex(GvAVn(gv)) < 0) { |
1037353b | 2185 | SV ** svp; |
32e65323 CS |
2186 | IoLINES(io) = 0; |
2187 | IoFLAGS(io) &= ~IOf_START; | |
d5eb9a46 | 2188 | do_open6(gv, "-", 1, NULL, NULL, 0); |
1037353b DD |
2189 | svp = &GvSV(gv); |
2190 | if (*svp) { | |
2191 | SV * sv = *svp; | |
2192 | sv_setpvs(sv, "-"); | |
2193 | SvSETMAGIC(sv); | |
2194 | } | |
32e65323 | 2195 | else |
1037353b | 2196 | *svp = newSVpvs("-"); |
32e65323 | 2197 | } |
157fb5a1 | 2198 | else if (!nextargv(gv, FALSE)) |
32e65323 | 2199 | RETPUSHYES; |
6136c704 | 2200 | } |
4592e6ca NIS |
2201 | } |
2202 | ||
32e65323 | 2203 | PUSHs(boolSV(do_eof(gv))); |
a0d0e21e LW |
2204 | RETURN; |
2205 | } | |
2206 | ||
2207 | PP(pp_tell) | |
2208 | { | |
20b7effb | 2209 | dSP; dTARGET; |
301e8125 | 2210 | GV *gv; |
5b468f54 | 2211 | IO *io; |
a0d0e21e | 2212 | |
b64a1294 | 2213 | if (MAXARG != 0 && (TOPs || POPs)) |
159b6efe | 2214 | PL_last_in_gv = MUTABLE_GV(POPs); |
ac3697cd NC |
2215 | else |
2216 | EXTEND(SP, 1); | |
c4420975 | 2217 | gv = PL_last_in_gv; |
4592e6ca | 2218 | |
9c9f25b8 NC |
2219 | io = GvIO(gv); |
2220 | if (io) { | |
a5e1d062 | 2221 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 2222 | if (mg) { |
3e0cb5de | 2223 | return tied_method0(SV_CONST(TELL), SP, MUTABLE_SV(io), mg); |
a79db61d | 2224 | } |
4592e6ca | 2225 | } |
f4817f32 | 2226 | else if (!gv) { |
f03173f2 RGS |
2227 | if (!errno) |
2228 | SETERRNO(EBADF,RMS_IFI); | |
2229 | PUSHi(-1); | |
2230 | RETURN; | |
2231 | } | |
4592e6ca | 2232 | |
146174a9 CB |
2233 | #if LSEEKSIZE > IVSIZE |
2234 | PUSHn( do_tell(gv) ); | |
2235 | #else | |
a0d0e21e | 2236 | PUSHi( do_tell(gv) ); |
146174a9 | 2237 | #endif |
a0d0e21e LW |
2238 | RETURN; |
2239 | } | |
2240 | ||
b1c05ba5 DM |
2241 | |
2242 | /* also used for: pp_seek() */ | |
2243 | ||
137443ea PP |
2244 | PP(pp_sysseek) |
2245 | { | |
20b7effb | 2246 | dSP; |
1df70142 | 2247 | const int whence = POPi; |
146174a9 | 2248 | #if LSEEKSIZE > IVSIZE |
7452cf6a | 2249 | const Off_t offset = (Off_t)SvNVx(POPs); |
146174a9 | 2250 | #else |
7452cf6a | 2251 | const Off_t offset = (Off_t)SvIVx(POPs); |
146174a9 | 2252 | #endif |
a0d0e21e | 2253 | |
159b6efe | 2254 | GV * const gv = PL_last_in_gv = MUTABLE_GV(POPs); |
9c9f25b8 | 2255 | IO *const io = GvIO(gv); |
4592e6ca | 2256 | |
9c9f25b8 | 2257 | if (io) { |
a5e1d062 | 2258 | const MAGIC * const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
a79db61d | 2259 | if (mg) { |
cb50131a | 2260 | #if LSEEKSIZE > IVSIZE |
74f0b550 | 2261 | SV *const offset_sv = newSVnv((NV) offset); |
cb50131a | 2262 | #else |
74f0b550 | 2263 | SV *const offset_sv = newSViv(offset); |
cb50131a | 2264 | #endif |
bc0c81ca | 2265 | |
3e0cb5de | 2266 | return tied_method2(SV_CONST(SEEK), SP, MUTABLE_SV(io), mg, offset_sv, |
d682515d | 2267 | newSViv(whence)); |
a79db61d | 2268 | } |
4592e6ca NIS |
2269 | } |
2270 | ||
533c011a | 2271 | if (PL_op->op_type == OP_SEEK) |
8903cb82 PP |
2272 | PUSHs(boolSV(do_seek(gv, offset, whence))); |
2273 | else { | |
0bcc34c2 | 2274 | const Off_t sought = do_sysseek(gv, offset, whence); |
b448e4fe | 2275 | if (sought < 0) |
146174a9 CB |
2276 | PUSHs(&PL_sv_undef); |
2277 | else { | |
7452cf6a | 2278 | SV* const sv = sought ? |
146174a9 | 2279 | #if LSEEKSIZE > IVSIZE |
b448e4fe | 2280 | newSVnv((NV)sought) |
146174a9 | 2281 | #else |
b448e4fe | 2282 | newSViv(sought) |
146174a9 CB |
2283 | #endif |
2284 | : newSVpvn(zero_but_true, ZBTLEN); | |
6e449a3a | 2285 | mPUSHs(sv); |
146174a9 | 2286 | } |
8903cb82 | 2287 | } |
a0d0e21e LW |
2288 | RETURN; |
2289 | } | |
2290 | ||
2291 | PP(pp_truncate) | |
2292 | { | |
39644a26 | 2293 | dSP; |
8c99d73e GS |
2294 | /* There seems to be no consensus on the length type of truncate() |
2295 | * and ftruncate(), both off_t and size_t have supporters. In | |
2296 | * general one would think that when using large files, off_t is | |
2297 | * at least as wide as size_t, so using an off_t should be okay. */ | |
2298 | /* XXX Configure probe for the length type of *truncate() needed XXX */ | |
0bcc34c2 | 2299 | Off_t len; |
a0d0e21e | 2300 | |
25342a55 | 2301 | #if Off_t_size > IVSIZE |
0bcc34c2 | 2302 | len = (Off_t)POPn; |
8c99d73e | 2303 | #else |
0bcc34c2 | 2304 | len = (Off_t)POPi; |
8c99d73e GS |
2305 | #endif |
2306 | /* Checking for length < 0 is problematic as the type might or | |
301e8125 | 2307 | * might not be signed: if it is not, clever compilers will moan. */ |
8c99d73e | 2308 | /* XXX Configure probe for the signedness of the length type of *truncate() needed? XXX */ |
748a9306 | 2309 | SETERRNO(0,0); |
d05c1ba0 | 2310 | { |
5e0adc2d | 2311 | SV * const sv = POPs; |
d05c1ba0 JH |
2312 | int result = 1; |
2313 | GV *tmpgv; | |
090bf15b SR |
2314 | IO *io; |
2315 | ||
42409c40 FC |
2316 | if (PL_op->op_flags & OPf_SPECIAL |
2317 | ? (tmpgv = gv_fetchsv(sv, 0, SVt_PVIO), 1) | |
2318 | : !!(tmpgv = MAYBE_DEREF_GV(sv)) ) { | |
9c9f25b8 NC |
2319 | io = GvIO(tmpgv); |
2320 | if (!io) | |
090bf15b | 2321 | result = 0; |
d05c1ba0 | 2322 | else { |
090bf15b | 2323 | PerlIO *fp; |
090bf15b SR |
2324 | do_ftruncate_io: |
2325 | TAINT_PROPER("truncate"); | |
2326 | if (!(fp = IoIFP(io))) { | |
2327 | result = 0; | |
2328 | } | |
2329 | else { | |
375ed12a JH |
2330 | int fd = PerlIO_fileno(fp); |
2331 | if (fd < 0) { | |
2332 | SETERRNO(EBADF,RMS_IFI); | |
2333 | result = 0; | |
2334 | } else { | |
a9f17b43 JH |
2335 | if (len < 0) { |
2336 | SETERRNO(EINVAL, LIB_INVARG); | |
2337 | result = 0; | |
2338 | } else { | |
2339 | PerlIO_flush(fp); | |
cbdc8872 | 2340 | #ifdef HAS_TRUNCATE |
a9f17b43 | 2341 | if (ftruncate(fd, len) < 0) |
301e8125 | 2342 | #else |
a9f17b43 | 2343 | if (my_chsize(fd, len) < 0) |
cbdc8872 | 2344 | #endif |
a9f17b43 JH |
2345 | result = 0; |
2346 | } | |
375ed12a | 2347 | } |
090bf15b | 2348 | } |
d05c1ba0 | 2349 | } |
cbdc8872 | 2350 | } |
5e0adc2d | 2351 | else if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) { |
a45c7426 | 2352 | io = MUTABLE_IO(SvRV(sv)); /* *main::FRED{IO} for example */ |
090bf15b | 2353 | goto do_ftruncate_io; |
5e0adc2d FC |
2354 | } |
2355 | else { | |
2356 | const char * const name = SvPV_nomg_const_nolen(sv); | |
d05c1ba0 | 2357 | TAINT_PROPER("truncate"); |
cbdc8872 | 2358 | #ifdef HAS_TRUNCATE |
d05c1ba0 JH |
2359 | if (truncate(name, len) < 0) |
2360 | result = 0; | |
cbdc8872 | 2361 | #else |
d05c1ba0 | 2362 | { |
d484df69 TC |
2363 | int mode = O_RDWR; |
2364 | int tmpfd; | |
2365 | ||
2366 | #if defined(USE_64_BIT_RAWIO) && defined(O_LARGEFILE) | |
2367 | mode |= O_LARGEFILE; /* Transparently largefiley. */ | |
2368 | #endif | |
2369 | #ifdef O_BINARY | |
2370 | /* On open(), the Win32 CRT tries to seek around text | |
2371 | * files using 32-bit offsets, which causes the open() | |
2372 | * to fail on large files, so open in binary mode. | |
2373 | */ | |
2374 | mode |= O_BINARY; | |
2375 | #endif | |
74df577f | 2376 | tmpfd = PerlLIO_open_cloexec(name, mode); |
d05c1ba0 | 2377 | |
375ed12a | 2378 | if (tmpfd < 0) { |
cbdc8872 | 2379 | result = 0; |
375ed12a | 2380 | } else { |
d05c1ba0 JH |
2381 | if (my_chsize(tmpfd, len) < 0) |
2382 | result = 0; | |
2383 | PerlLIO_close(tmpfd); | |
2384 | } | |
cbdc8872 | 2385 | } |
a0d0e21e | 2386 | #endif |
d05c1ba0 | 2387 | } |
a0d0e21e | 2388 | |
d05c1ba0 JH |
2389 | if (result) |
2390 | RETPUSHYES; | |
2391 | if (!errno) | |
93189314 | 2392 | SETERRNO(EBADF,RMS_IFI); |
d05c1ba0 JH |
2393 | RETPUSHUNDEF; |
2394 | } | |
a0d0e21e LW |
2395 | } |
2396 | ||
b1c05ba5 DM |
2397 | |
2398 | /* also used for: pp_fcntl() */ | |
2399 | ||
a0d0e21e LW |
2400 | PP(pp_ioctl) |
2401 | { | |
20b7effb | 2402 | dSP; dTARGET; |
7452cf6a | 2403 | SV * const argsv = POPs; |
1df70142 | 2404 | const unsigned int func = POPu; |
49225470 | 2405 | int optype; |
159b6efe | 2406 | GV * const gv = MUTABLE_GV(POPs); |
8a6c0fcb | 2407 | IO * const io = GvIOn(gv); |
a0d0e21e | 2408 | char *s; |
324aa91a | 2409 | IV retval; |
a0d0e21e | 2410 | |
8a6c0fcb | 2411 | if (!IoIFP(io)) { |
51087808 | 2412 | report_evil_fh(gv); |
93189314 | 2413 | SETERRNO(EBADF,RMS_IFI); /* well, sort of... */ |
a0d0e21e LW |
2414 | RETPUSHUNDEF; |
2415 | } | |
2416 | ||
748a9306 | 2417 | if (SvPOK(argsv) || !SvNIOK(argsv)) { |
a0d0e21e | 2418 | STRLEN len; |
324aa91a | 2419 | STRLEN need; |
748a9306 | 2420 | s = SvPV_force(argsv, len); |
324aa91a HF |
2421 | need = IOCPARM_LEN(func); |
2422 | if (len < need) { | |
2423 | s = Sv_Grow(argsv, need + 1); | |
2424 | SvCUR_set(argsv, need); | |
a0d0e21e LW |
2425 | } |
2426 | ||
748a9306 | 2427 | s[SvCUR(argsv)] = 17; /* a little sanity check here */ |
a0d0e21e LW |
2428 | } |
2429 | else { | |
748a9306 | 2430 | retval = SvIV(argsv); |
c529f79d | 2431 | s = INT2PTR(char*,retval); /* ouch */ |
a0d0e21e LW |
2432 | } |
2433 | ||
49225470 | 2434 | optype = PL_op->op_type; |
ed4b2e6b | 2435 | TAINT_PROPER(PL_op_desc[optype]); |
a0d0e21e LW |
2436 | |
2437 | if (optype == OP_IOCTL) | |
2438 | #ifdef HAS_IOCTL | |
76e3520e | 2439 | retval = PerlLIO_ioctl(PerlIO_fileno(IoIFP(io)), func, s); |
a0d0e21e | 2440 | #else |
cea2e8a9 | 2441 | DIE(aTHX_ "ioctl is not implemented"); |
a0d0e21e LW |
2442 | #endif |
2443 | else | |
c214f4ad B |
2444 | #ifndef HAS_FCNTL |
2445 | DIE(aTHX_ "fcntl is not implemented"); | |
8d698507 | 2446 | #elif defined(OS2) && defined(__EMX__) |
760ac839 | 2447 | retval = fcntl(PerlIO_fileno(IoIFP(io)), func, (int)s); |
55497cff | 2448 | #else |
760ac839 | 2449 | retval = fcntl(PerlIO_fileno(IoIFP(io)), func, s); |
301e8125 | 2450 | #endif |
a0d0e21e | 2451 | |
6652bd42 | 2452 | #if defined(HAS_IOCTL) || defined(HAS_FCNTL) |
748a9306 LW |
2453 | if (SvPOK(argsv)) { |
2454 | if (s[SvCUR(argsv)] != 17) | |
cea2e8a9 | 2455 | DIE(aTHX_ "Possible memory corruption: %s overflowed 3rd argument", |
53e06cf0 | 2456 | OP_NAME(PL_op)); |
748a9306 LW |
2457 | s[SvCUR(argsv)] = 0; /* put our null back */ |
2458 | SvSETMAGIC(argsv); /* Assume it has changed */ | |
a0d0e21e LW |
2459 | } |
2460 | ||
2461 | if (retval == -1) | |
2462 | RETPUSHUNDEF; | |
2463 | if (retval != 0) { | |
2464 | PUSHi(retval); | |
2465 | } | |
2466 | else { | |
8903cb82 | 2467 | PUSHp(zero_but_true, ZBTLEN); |
a0d0e21e | 2468 | } |
4808266b | 2469 | #endif |
c214f4ad | 2470 | RETURN; |
a0d0e21e LW |
2471 | } |
2472 | ||
2473 | PP(pp_flock) | |
2474 | { | |
9cad6237 | 2475 | #ifdef FLOCK |
20b7effb | 2476 | dSP; dTARGET; |
a0d0e21e | 2477 | I32 value; |
7452cf6a | 2478 | const int argtype = POPi; |
1f28cbca | 2479 | GV * const gv = MUTABLE_GV(POPs); |
9c9f25b8 NC |
2480 | IO *const io = GvIO(gv); |
2481 | PerlIO *const fp = io ? IoIFP(io) : NULL; | |
16d20bd9 | 2482 | |
0bcc34c2 | 2483 | /* XXX Looks to me like io is always NULL at this point */ |
a0d0e21e | 2484 | if (fp) { |
68dc0745 | 2485 | (void)PerlIO_flush(fp); |
76e3520e | 2486 | value = (I32)(PerlLIO_flock(PerlIO_fileno(fp), argtype) >= 0); |
a0d0e21e | 2487 | } |
cb50131a | 2488 | else { |
51087808 | 2489 | report_evil_fh(gv); |
a0d0e21e | 2490 | value = 0; |
93189314 | 2491 | SETERRNO(EBADF,RMS_IFI); |
cb50131a | 2492 | } |
a0d0e21e LW |
2493 | PUSHi(value); |
2494 | RETURN; | |
2495 | #else | |
56a94ef2 | 2496 | DIE(aTHX_ PL_no_func, "flock"); |
a0d0e21e LW |
2497 | #endif |
2498 | } | |
2499 | ||
2500 | /* Sockets. */ | |
2501 | ||
7627e6d0 NC |
2502 | #ifdef HAS_SOCKET |
2503 | ||
a0d0e21e LW |
2504 | PP(pp_socket) |
2505 | { | |
20b7effb | 2506 | dSP; |
7452cf6a AL |
2507 | const int protocol = POPi; |
2508 | const int type = POPi; | |
2509 | const int domain = POPi; | |
159b6efe | 2510 | GV * const gv = MUTABLE_GV(POPs); |
5805b585 | 2511 | IO * const io = GvIOn(gv); |
a0d0e21e LW |
2512 | int fd; |
2513 | ||
57171420 BS |
2514 | if (IoIFP(io)) |
2515 | do_close(gv, FALSE); | |
2516 | ||
a0d0e21e | 2517 | TAINT_PROPER("socket"); |
74df577f | 2518 | fd = PerlSock_socket_cloexec(domain, type, protocol); |
375ed12a | 2519 | if (fd < 0) { |
a0d0e21e | 2520 | RETPUSHUNDEF; |
375ed12a | 2521 | } |
147e3846 KW |
2522 | IoIFP(io) = PerlIO_fdopen(fd, "r" SOCKET_OPEN_MODE); /* stdio gets confused about sockets */ |
2523 | IoOFP(io) = PerlIO_fdopen(fd, "w" SOCKET_OPEN_MODE); | |
50952442 | 2524 | IoTYPE(io) = IoTYPE_SOCKET; |
a0d0e21e | 2525 | if (!IoIFP(io) || !IoOFP(io)) { |
760ac839 LW |
2526 | if (IoIFP(io)) PerlIO_close(IoIFP(io)); |
2527 | if (IoOFP(io)) PerlIO_close(IoOFP(io)); | |
6ad3d225 | 2528 | if (!IoIFP(io) && !IoOFP(io)) PerlLIO_close(fd); |
a0d0e21e LW |
2529 | RETPUSHUNDEF; |
2530 | } | |
2531 | ||
2532 | RETPUSHYES; | |
a0d0e21e | 2533 | } |
7627e6d0 | 2534 | #endif |
a0d0e21e LW |
2535 | |
2536 | PP(pp_sockpair) | |
2537 | { | |
c95c94b1 | 2538 | #if defined (HAS_SOCKETPAIR) || (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && defined(AF_INET) && defined(PF_INET)) |
20b7effb | 2539 | dSP; |
e0b7b5e2 | 2540 | int fd[2]; |
7452cf6a AL |
2541 | const int protocol = POPi; |
2542 | const int type = POPi; | |
2543 | const int domain = POPi; | |
e0b7b5e2 | 2544 | |
159b6efe | 2545 | GV * const gv2 = MUTABLE_GV(POPs); |
49561e08 FC |
2546 | IO * const io2 = GvIOn(gv2); |
2547 | GV * const gv1 = MUTABLE_GV(POPs); | |
2548 | IO * const io1 = GvIOn(gv1); | |
a0d0e21e | 2549 | |
49561e08 | 2550 | if (IoIFP(io1)) |
dc0d0a5f | 2551 | do_close(gv1, FALSE); |
49561e08 | 2552 | if (IoIFP(io2)) |
dc0d0a5f | 2553 | do_close(gv2, FALSE); |
57171420 | 2554 | |
a0d0e21e | 2555 | TAINT_PROPER("socketpair"); |
74df577f | 2556 | if (PerlSock_socketpair_cloexec(domain, type, protocol, fd) < 0) |
a0d0e21e | 2557 | RETPUSHUNDEF; |
147e3846 KW |
2558 | IoIFP(io1) = PerlIO_fdopen(fd[0], "r" SOCKET_OPEN_MODE); |
2559 | IoOFP(io1) = PerlIO_fdopen(fd[0], "w" SOCKET_OPEN_MODE); | |
50952442 | 2560 | IoTYPE(io1) = IoTYPE_SOCKET; |
147e3846 KW |
2561 | IoIFP(io2) = PerlIO_fdopen(fd[1], "r" SOCKET_OPEN_MODE); |
2562 | IoOFP(io2) = PerlIO_fdopen(fd[1], "w" SOCKET_OPEN_MODE); | |
50952442 | 2563 | IoTYPE(io2) = IoTYPE_SOCKET; |
a0d0e21e | 2564 | if (!IoIFP(io1) || !IoOFP(io1) || !IoIFP(io2) || !IoOFP(io2)) { |
760ac839 LW |
2565 | if (IoIFP(io1)) PerlIO_close(IoIFP(io1)); |
2566 | if (IoOFP(io1)) PerlIO_close(IoOFP(io1)); | |
6ad3d225 | 2567 | if (!IoIFP(io1) && !IoOFP(io1)) PerlLIO_close(fd[0]); |
760ac839 LW |
2568 | if (IoIFP(io2)) PerlIO_close(IoIFP(io2)); |
2569 | if (IoOFP(io2)) PerlIO_close(IoOFP(io2)); | |
6ad3d225 | 2570 | if (!IoIFP(io2) && !IoOFP(io2)) PerlLIO_close(fd[1]); |
a0d0e21e LW |
2571 | RETPUSHUNDEF; |
2572 | } | |
2573 | ||
2574 | RETPUSHYES; | |
2575 | #else | |
cea2e8a9 | 2576 | DIE(aTHX_ PL_no_sock_func, "socketpair"); |
a0d0e21e LW |
2577 | #endif |
2578 | } | |
2579 | ||
7627e6d0 NC |
2580 | #ifdef HAS_SOCKET |
2581 | ||
b1c05ba5 DM |
2582 | /* also used for: pp_connect() */ |
2583 | ||
a0d0e21e LW |
2584 | PP(pp_bind) |
2585 | { | |
20b7effb | 2586 | dSP; |
7452cf6a | 2587 | SV * const addrsv = POPs; |
349d4f2f NC |
2588 | /* OK, so on what platform does bind modify addr? */ |
2589 | const char *addr; | |
159b6efe | 2590 | GV * const gv = MUTABLE_GV(POPs); |
eb578fdb | 2591 | IO * const io = GvIOn(gv); |
a0d0e21e | 2592 | STRLEN len; |
e0b7b5e2 | 2593 | int op_type; |
375ed12a | 2594 | int fd; |
a0d0e21e | 2595 | |
8a6c0fcb | 2596 | if (!IoIFP(io)) |
a0d0e21e | 2597 | goto nuts; |
375ed12a JH |
2598 | fd = PerlIO_fileno(IoIFP(io)); |
2599 | if (fd < 0) | |
2600 | goto nuts; | |
a0d0e21e | 2601 | |
349d4f2f | 2602 | addr = SvPV_const(addrsv, len); |
e0b7b5e2 | 2603 | op_type = PL_op->op_type; |
32b81f04 NC |
2604 | TAINT_PROPER(PL_op_desc[op_type]); |
2605 | if ((op_type == OP_BIND | |
375ed12a JH |
2606 | ? PerlSock_bind(fd, (struct sockaddr *)addr, len) |
2607 | : PerlSock_connect(fd, (struct sockaddr *)addr, len)) | |
32b81f04 | 2608 | >= 0) |
a0d0e21e LW |
2609 | RETPUSHYES; |
2610 | else | |
2611 | RETPUSHUNDEF; | |
2612 | ||
7b52d656 | 2613 | nuts: |
fbcda526 | 2614 | report_evil_fh(gv); |
93189314 | 2615 | SETERRNO(EBADF,SS_IVCHAN); |
a0d0e21e | 2616 | RETPUSHUNDEF; |
a0d0e21e LW |
2617 | } |
2618 | ||
2619 | PP(pp_listen) | |
2620 | { | |
20b7effb | 2621 | dSP; |
7452cf6a | 2622 | const int backlog = POPi; |
159b6efe | 2623 | GV * const gv = MUTABLE_GV(POPs); |
8a6c0fcb | 2624 | IO * const io = GvIOn(gv); |
a0d0e21e | 2625 | |
8a6c0fcb | 2626 | if (!IoIFP(io)) |
a0d0e21e LW |
2627 | goto nuts; |
2628 | ||
6ad3d225 | 2629 | if (PerlSock_listen(PerlIO_fileno(IoIFP(io)), backlog) >= 0) |
a0d0e21e LW |
2630 | RETPUSHYES; |
2631 | else | |
2632 | RETPUSHUNDEF; | |
2633 | ||
7b52d656 | 2634 | nuts: |
fbcda526 | 2635 | report_evil_fh(gv); |
93189314 | 2636 | SETERRNO(EBADF,SS_IVCHAN); |
a0d0e21e | 2637 | RETPUSHUNDEF; |
a0d0e21e LW |
2638 | } |
2639 | ||
2640 | PP(pp_accept) | |
2641 | { | |
20b7effb | 2642 | dSP; dTARGET; |
eb578fdb | 2643 | IO *nstio; |
93d47a36 | 2644 | char namebuf[MAXPATHLEN]; |
b5afd346 | 2645 | #if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__) |
93d47a36 JH |
2646 | Sock_size_t len = sizeof (struct sockaddr_in); |
2647 | #else | |
2648 | Sock_size_t len = sizeof namebuf; | |
2649 | #endif | |
159b6efe NC |
2650 | GV * const ggv = MUTABLE_GV(POPs); |
2651 | GV * const ngv = MUTABLE_GV(POPs); | |
a0d0e21e LW |
2652 | int fd; |
2653 | ||
8a6c0fcb | 2654 | IO * const gstio = GvIO(ggv); |
a0d0e21e LW |
2655 | if (!gstio || !IoIFP(gstio)) |
2656 | goto nuts; | |
2657 | ||
2658 | nstio = GvIOn(ngv); | |
74df577f | 2659 | fd = PerlSock_accept_cloexec(PerlIO_fileno(IoIFP(gstio)), (struct sockaddr *) namebuf, &len); |
e294cc5d JH |
2660 | #if defined(OEMVS) |
2661 | if (len == 0) { | |
2662 | /* Some platforms indicate zero length when an AF_UNIX client is | |
2663 | * not bound. Simulate a non-zero-length sockaddr structure in | |
2664 | * this case. */ | |
2665 | namebuf[0] = 0; /* sun_len */ | |
2666 | namebuf[1] = AF_UNIX; /* sun_family */ | |
2667 | len = 2; | |
2668 | } | |
2669 | #endif | |
2670 | ||
a0d0e21e LW |
2671 | if (fd < 0) |
2672 | goto badexit; | |
a70048fb AB |
2673 | if (IoIFP(nstio)) |
2674 | do_close(ngv, FALSE); | |
147e3846 KW |
2675 | IoIFP(nstio) = PerlIO_fdopen(fd, "r" SOCKET_OPEN_MODE); |
2676 | IoOFP(nstio) = PerlIO_fdopen(fd, "w" SOCKET_OPEN_MODE); | |
50952442 | 2677 | IoTYPE(nstio) = IoTYPE_SOCKET; |
a0d0e21e | 2678 | if (!IoIFP(nstio) || !IoOFP(nstio)) { |
760ac839 LW |
2679 | if (IoIFP(nstio)) PerlIO_close(IoIFP(nstio)); |
2680 | if (IoOFP(nstio)) PerlIO_close(IoOFP(nstio)); | |
6ad3d225 | 2681 | if (!IoIFP(nstio) && !IoOFP(nstio)) PerlLIO_close(fd); |
a0d0e21e LW |
2682 | goto badexit; |
2683 | } | |
2684 | ||
381c1bae | 2685 | #ifdef __SCO_VERSION__ |
93d47a36 | 2686 | len = sizeof (struct sockaddr_in); /* OpenUNIX 8 somehow truncates info */ |
381c1bae | 2687 | #endif |
ed79a026 | 2688 | |
93d47a36 | 2689 | PUSHp(namebuf, len); |
a0d0e21e LW |
2690 | RETURN; |
2691 | ||
7b52d656 | 2692 | nuts: |
fbcda526 | 2693 | report_evil_fh(ggv); |
93189314 | 2694 | SETERRNO(EBADF,SS_IVCHAN); |
a0d0e21e | 2695 | |
7b52d656 | 2696 | badexit: |
a0d0e21e LW |
2697 | RETPUSHUNDEF; |
2698 | ||
a0d0e21e LW |
2699 | } |
2700 | ||
2701 | PP(pp_shutdown) | |
2702 | { | |
20b7effb | 2703 | dSP; dTARGET; |
7452cf6a | 2704 | const int how = POPi; |
159b6efe | 2705 | GV * const gv = MUTABLE_GV(POPs); |
eb578fdb | 2706 | IO * const io = GvIOn(gv); |
a0d0e21e | 2707 | |
8a6c0fcb | 2708 | if (!IoIFP(io)) |
a0d0e21e LW |
2709 | goto nuts; |
2710 | ||
6ad3d225 | 2711 | PUSHi( PerlSock_shutdown(PerlIO_fileno(IoIFP(io)), how) >= 0 ); |
a0d0e21e LW |
2712 | RETURN; |
2713 | ||
7b52d656 | 2714 | nuts: |
fbcda526 | 2715 | report_evil_fh(gv); |
93189314 | 2716 | SETERRNO(EBADF,SS_IVCHAN); |
a0d0e21e | 2717 | RETPUSHUNDEF; |
a0d0e21e LW |
2718 | } |
2719 | ||
b1c05ba5 DM |
2720 | |
2721 | /* also used for: pp_gsockopt() */ | |
2722 | ||
a0d0e21e LW |
2723 | PP(pp_ssockopt) |
2724 | { | |
20b7effb | 2725 | dSP; |
7452cf6a | 2726 | const int optype = PL_op->op_type; |
561b68a9 | 2727 | SV * const sv = (optype == OP_GSOCKOPT) ? sv_2mortal(newSV(257)) : POPs; |
7452cf6a AL |
2728 | const unsigned int optname = (unsigned int) POPi; |
2729 | const unsigned int lvl = (unsigned int) POPi; | |
159b6efe | 2730 | GV * const gv = MUTABLE_GV(POPs); |
eb578fdb | 2731 | IO * const io = GvIOn(gv); |
a0d0e21e | 2732 | int fd; |
1e422769 | 2733 | Sock_size_t len; |
a0d0e21e | 2734 | |
49225470 | 2735 | if (!IoIFP(io)) |
a0d0e21e LW |
2736 | goto nuts; |
2737 | ||
760ac839 | 2738 | fd = PerlIO_fileno(IoIFP(io)); |
375ed12a JH |
2739 | if (fd < 0) |
2740 | goto nuts; | |
a0d0e21e LW |
2741 | switch (optype) { |
2742 | case OP_GSOCKOPT: | |
748a9306 | 2743 | SvGROW(sv, 257); |
a0d0e21e | 2744 | (void)SvPOK_only(sv); |
748a9306 LW |
2745 | SvCUR_set(sv,256); |
2746 | *SvEND(sv) ='\0'; | |
1e422769 | 2747 | len = SvCUR(sv); |
6ad3d225 | 2748 | if (PerlSock_getsockopt(fd, lvl, optname, SvPVX(sv), &len) < 0) |
a0d0e21e | 2749 | goto nuts2; |
ee2276e5 JH |
2750 | #if defined(_AIX) |
2751 | /* XXX Configure test: does getsockopt set the length properly? */ | |
2752 | if (len == 256) | |
2753 | len = sizeof(int); | |
2754 | #endif | |
1e422769 | 2755 | SvCUR_set(sv, len); |
748a9306 | 2756 | *SvEND(sv) ='\0'; |
a0d0e21e LW |
2757 | PUSHs(sv); |
2758 | break; | |
2759 | case OP_SSOCKOPT: { | |
1215b447 JH |
2760 | #if defined(__SYMBIAN32__) |
2761 | # define SETSOCKOPT_OPTION_VALUE_T void * | |
2762 | #else | |
2763 | # define SETSOCKOPT_OPTION_VALUE_T const char * | |
2764 | #endif | |
2765 | /* XXX TODO: We need to have a proper type (a Configure probe, | |
2766 | * etc.) for what the C headers think of the third argument of | |
2767 | * setsockopt(), the option_value read-only buffer: is it | |
2768 | * a "char *", or a "void *", const or not. Some compilers | |
2769 | * don't take kindly to e.g. assuming that "char *" implicitly | |
2770 | * promotes to a "void *", or to explicitly promoting/demoting | |
2771 | * consts to non/vice versa. The "const void *" is the SUS | |
2772 | * definition, but that does not fly everywhere for the above | |
2773 | * reasons. */ | |
2774 | SETSOCKOPT_OPTION_VALUE_T buf; | |
1e422769 PP |
2775 | int aint; |
2776 | if (SvPOKp(sv)) { | |
2d8e6c8d | 2777 | STRLEN l; |
1215b447 | 2778 | buf = (SETSOCKOPT_OPTION_VALUE_T) SvPV_const(sv, l); |
2d8e6c8d | 2779 | len = l; |
1e422769 | 2780 | } |
56ee1660 | 2781 | else { |
a0d0e21e | 2782 | aint = (int)SvIV(sv); |
1215b447 | 2783 | buf = (SETSOCKOPT_OPTION_VALUE_T) &aint; |
a0d0e21e LW |
2784 | len = sizeof(int); |
2785 | } | |
6ad3d225 | 2786 | if (PerlSock_setsockopt(fd, lvl, optname, buf, len) < 0) |
a0d0e21e | 2787 | goto nuts2; |
3280af22 | 2788 | PUSHs(&PL_sv_yes); |
a0d0e21e LW |
2789 | } |
2790 | break; | |
2791 | } | |
2792 | RETURN; | |
2793 | ||
7b52d656 | 2794 | nuts: |
fbcda526 | 2795 | report_evil_fh(gv); |
93189314 | 2796 | SETERRNO(EBADF,SS_IVCHAN); |
7b52d656 | 2797 | nuts2: |
a0d0e21e LW |
2798 | RETPUSHUNDEF; |
2799 | ||
a0d0e21e LW |
2800 | } |
2801 | ||
b1c05ba5 DM |
2802 | |
2803 | /* also used for: pp_getsockname() */ | |
2804 | ||
a0d0e21e LW |
2805 | PP(pp_getpeername) |
2806 | { | |
20b7effb | 2807 | dSP; |
7452cf6a | 2808 | const int optype = PL_op->op_type; |
159b6efe | 2809 | GV * const gv = MUTABLE_GV(POPs); |
eb578fdb | 2810 | IO * const io = GvIOn(gv); |
7452cf6a | 2811 | Sock_size_t len; |
a0d0e21e LW |
2812 | SV *sv; |
2813 | int fd; | |
a0d0e21e | 2814 | |
49225470 | 2815 | if (!IoIFP(io)) |
a0d0e21e LW |
2816 | goto nuts; |
2817 | ||
561b68a9 | 2818 | sv = sv_2mortal(newSV(257)); |
748a9306 | 2819 | (void)SvPOK_only(sv); |
1e422769 PP |
2820 | len = 256; |
2821 | SvCUR_set(sv, len); | |
748a9306 | 2822 | *SvEND(sv) ='\0'; |
760ac839 | 2823 | fd = PerlIO_fileno(IoIFP(io)); |
375ed12a JH |
2824 | if (fd < 0) |
2825 | goto nuts; | |
a0d0e21e LW |
2826 | switch (optype) { |
2827 | case OP_GETSOCKNAME: | |
6ad3d225 | 2828 | if (PerlSock_getsockname(fd, (struct sockaddr *)SvPVX(sv), &len) < 0) |
a0d0e21e LW |
2829 | goto nuts2; |
2830 | break; | |
2831 | case OP_GETPEERNAME: | |
6ad3d225 | 2832 | if (PerlSock_getpeername(fd, (struct sockaddr *)SvPVX(sv), &len) < 0) |
a0d0e21e | 2833 | goto nuts2; |
490ab354 JH |
2834 | #if defined(VMS_DO_SOCKETS) && defined (DECCRTL_SOCKETS) |
2835 | { | |
2836 | static const char nowhere[] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; | |
2837 | /* If the call succeeded, make sure we don't have a zeroed port/addr */ | |
349d4f2f | 2838 | if (((struct sockaddr *)SvPVX_const(sv))->sa_family == AF_INET && |
2fbb330f | 2839 | !memcmp(SvPVX_const(sv) + sizeof(u_short), nowhere, |
490ab354 | 2840 | sizeof(u_short) + sizeof(struct in_addr))) { |
301e8125 | 2841 | goto nuts2; |
490ab354 JH |
2842 | } |
2843 | } | |
2844 | #endif | |
a0d0e21e LW |
2845 | break; |
2846 | } | |
13826f2c CS |
2847 | #ifdef BOGUS_GETNAME_RETURN |
2848 | /* Interactive Unix, getpeername() and getsockname() | |
2849 | does not return valid namelen */ | |
1e422769 PP |
2850 | if (len == BOGUS_GETNAME_RETURN) |
2851 | len = sizeof(struct sockaddr); | |
13826f2c | 2852 | #endif |
1e422769 | 2853 | SvCUR_set(sv, len); |
748a9306 | 2854 | *SvEND(sv) ='\0'; |
a0d0e21e LW |
2855 | PUSHs(sv); |
2856 | RETURN; | |
2857 | ||
7b52d656 | 2858 | nuts: |
fbcda526 | 2859 | report_evil_fh(gv); |
93189314 | 2860 | SETERRNO(EBADF,SS_IVCHAN); |
7b52d656 | 2861 | nuts2: |
a0d0e21e | 2862 | RETPUSHUNDEF; |
7627e6d0 | 2863 | } |
a0d0e21e | 2864 | |
a0d0e21e | 2865 | #endif |
a0d0e21e LW |
2866 | |
2867 | /* Stat calls. */ | |
2868 | ||
b1c05ba5 DM |
2869 | /* also used for: pp_lstat() */ |
2870 | ||
a0d0e21e LW |
2871 | PP(pp_stat) |
2872 | { | |
39644a26 | 2873 | dSP; |
10edeb5d | 2874 | GV *gv = NULL; |
55dd8d50 | 2875 | IO *io = NULL; |
1c23e2bd | 2876 | U8 gimme; |
a0d0e21e | 2877 | I32 max = 13; |
109c43ed | 2878 | SV* sv; |
a0d0e21e | 2879 | |
109c43ed FC |
2880 | if (PL_op->op_flags & OPf_REF ? (gv = cGVOP_gv, 1) |
2881 | : !!(sv=POPs, gv = MAYBE_DEREF_GV(sv))) { | |
8a4e5b40 | 2882 | if (PL_op->op_type == OP_LSTAT) { |
5d3e98de | 2883 | if (gv != PL_defgv) { |
5d329e6e | 2884 | do_fstat_warning_check: |
a2a5de95 | 2885 | Perl_ck_warner(aTHX_ packWARN(WARN_IO), |
147e3846 | 2886 | "lstat() on filehandle%s%" SVf, |
93fad930 FC |
2887 | gv ? " " : "", |
2888 | SVfARG(gv | |
bf29d05f BF |
2889 | ? sv_2mortal(newSVhek(GvENAME_HEK(gv))) |
2890 | : &PL_sv_no)); | |
5d3e98de | 2891 | } else if (PL_laststype != OP_LSTAT) |
b042df57 | 2892 | /* diag_listed_as: The stat preceding %s wasn't an lstat */ |
8a4e5b40 | 2893 | Perl_croak(aTHX_ "The stat preceding lstat() wasn't an lstat"); |
8a4e5b40 DD |
2894 | } |
2895 | ||
97c8f3e6 Z |
2896 | if (gv == PL_defgv) { |
2897 | if (PL_laststatval < 0) | |
2898 | SETERRNO(EBADF,RMS_IFI); | |
2899 | } else { | |
0d5064f1 | 2900 | do_fstat_have_io: |
3280af22 | 2901 | PL_laststype = OP_STAT; |
0d5064f1 | 2902 | PL_statgv = gv ? gv : (GV *)io; |
60e13354 | 2903 | SvPVCLEAR(PL_statname); |
5228a96c | 2904 | if(gv) { |
ad02613c | 2905 | io = GvIO(gv); |
0d5064f1 FC |
2906 | } |
2907 | if (io) { | |
5228a96c | 2908 | if (IoIFP(io)) { |
375ed12a JH |
2909 | int fd = PerlIO_fileno(IoIFP(io)); |
2910 | if (fd < 0) { | |
97c8f3e6 | 2911 | report_evil_fh(gv); |
375ed12a JH |
2912 | PL_laststatval = -1; |
2913 | SETERRNO(EBADF,RMS_IFI); | |
2914 | } else { | |
2915 | PL_laststatval = PerlLIO_fstat(fd, &PL_statcache); | |
375ed12a | 2916 | } |
5228a96c | 2917 | } else if (IoDIRP(io)) { |
5228a96c | 2918 | PL_laststatval = |
3497a01f | 2919 | PerlLIO_fstat(my_dirfd(IoDIRP(io)), &PL_statcache); |
5228a96c | 2920 | } else { |
97c8f3e6 | 2921 | report_evil_fh(gv); |
5228a96c | 2922 | PL_laststatval = -1; |
97c8f3e6 | 2923 | SETERRNO(EBADF,RMS_IFI); |
5228a96c | 2924 | } |
97c8f3e6 Z |
2925 | } else { |
2926 | report_evil_fh(gv); | |
2927 | PL_laststatval = -1; | |
2928 | SETERRNO(EBADF,RMS_IFI); | |
2929 | } | |
5228a96c SP |
2930 | } |
2931 | ||
9ddeeac9 | 2932 | if (PL_laststatval < 0) { |
a0d0e21e | 2933 | max = 0; |
9ddeeac9 | 2934 | } |
a0d0e21e LW |
2935 | } |
2936 | else { | |
7cb3f959 | 2937 | const char *file; |
a155eb05 TC |
2938 | const char *temp; |
2939 | STRLEN len; | |
109c43ed | 2940 | if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVIO) { |
a45c7426 | 2941 | io = MUTABLE_IO(SvRV(sv)); |
ad02613c SP |
2942 | if (PL_op->op_type == OP_LSTAT) |
2943 | goto do_fstat_warning_check; | |
2944 | goto do_fstat_have_io; | |
2945 | } | |
4bac9ae4 | 2946 | SvTAINTED_off(PL_statname); /* previous tainting irrelevant */ |
a155eb05 TC |
2947 | temp = SvPV_nomg_const(sv, len); |
2948 | sv_setpv(PL_statname, temp); | |
a0714e2c | 2949 | PL_statgv = NULL; |
533c011a | 2950 | PL_laststype = PL_op->op_type; |
7cb3f959 | 2951 | file = SvPV_nolen_const(PL_statname); |
a155eb05 TC |
2952 | if (!IS_SAFE_PATHNAME(temp, len, OP_NAME(PL_op))) { |
2953 | PL_laststatval = -1; | |
2954 | } | |
2955 | else if (PL_op->op_type == OP_LSTAT) | |
7cb3f959 | 2956 | PL_laststatval = PerlLIO_lstat(file, &PL_statcache); |
a0d0e21e | 2957 | else |
7cb3f959 | 2958 | PL_laststatval = PerlLIO_stat(file, &PL_statcache); |
3280af22 | 2959 | if (PL_laststatval < 0) { |
7cb3f959 | 2960 | if (ckWARN(WARN_NEWLINE) && should_warn_nl(file)) { |
5d37acd6 | 2961 | /* PL_warn_nl is constant */ |
7347ee54 | 2962 | GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); |
9014280d | 2963 | Perl_warner(aTHX_ packWARN(WARN_NEWLINE), PL_warn_nl, "stat"); |
7347ee54 | 2964 | GCC_DIAG_RESTORE_STMT; |
5d37acd6 | 2965 | } |
a0d0e21e LW |
2966 | max = 0; |
2967 | } | |
2968 | } | |
2969 | ||
54310121 PP |
2970 | gimme = GIMME_V; |
2971 | if (gimme != G_ARRAY) { | |
2972 | if (gimme != G_VOID) | |
2973 | XPUSHs(boolSV(max)); | |
2974 | RETURN; | |
a0d0e21e LW |
2975 | } |
2976 | if (max) { | |
36477c24 PP |
2977 | EXTEND(SP, max); |
2978 | EXTEND_MORTAL(max); | |
6e449a3a | 2979 | mPUSHi(PL_statcache.st_dev); |
2e8ea15a Z |
2980 | { |
2981 | /* | |
2982 | * We try to represent st_ino as a native IV or UV where | |
2983 | * possible, but fall back to a decimal string where | |
2984 | * necessary. The code to generate these decimal strings | |
2985 | * is quite obtuse, because (a) we're portable to non-POSIX | |
2986 | * platforms where st_ino might be signed; (b) we didn't | |
2987 | * necessarily detect at Configure time whether st_ino is | |
2988 | * signed; (c) we're portable to non-POSIX platforms where | |
2989 | * ino_t isn't defined, so have no name for the type of | |
2990 | * st_ino; and (d) sprintf() doesn't necessarily support | |
2991 | * integers as large as st_ino. | |
2992 | */ | |
009165e9 | 2993 | bool neg; |
2e8ea15a | 2994 | Stat_t s; |
7347ee54 Z |
2995 | CLANG_DIAG_IGNORE_STMT(-Wtautological-compare); |
2996 | GCC_DIAG_IGNORE_STMT(-Wtype-limits); | |
009165e9 | 2997 | neg = PL_statcache.st_ino < 0; |
7347ee54 Z |
2998 | GCC_DIAG_RESTORE_STMT; |
2999 | CLANG_DIAG_RESTORE_STMT; | |
009165e9 | 3000 | if (neg) { |
2e8ea15a Z |
3001 | s.st_ino = (IV)PL_statcache.st_ino; |
3002 | if (LIKELY(s.st_ino == PL_statcache.st_ino)) { | |
3003 | mPUSHi(s.st_ino); | |
3004 | } else { | |
3005 | char buf[sizeof(s.st_ino)*3+1], *p; | |
3006 | s.st_ino = PL_statcache.st_ino; | |
3007 | for (p = buf + sizeof(buf); p != buf+1; ) { | |
3008 | Stat_t t; | |
3009 | t.st_ino = s.st_ino / 10; | |
3010 | *--p = '0' + (int)(t.st_ino*10 - s.st_ino); | |
3011 | s.st_ino = t.st_ino; | |
3012 | } | |
3013 | while (*p == '0') | |
3014 | p++; | |
3015 | *--p = '-'; | |
3016 | mPUSHp(p, buf+sizeof(buf) - p); | |
3017 | } | |
009165e9 | 3018 | } else { |
2e8ea15a Z |
3019 | s.st_ino = (UV)PL_statcache.st_ino; |
3020 | if (LIKELY(s.st_ino == PL_statcache.st_ino)) { | |
3021 | mPUSHu(s.st_ino); | |
3022 | } else { | |
3023 | char buf[sizeof(s.st_ino)*3], *p; | |
3024 | s.st_ino = PL_statcache.st_ino; | |
3025 | for (p = buf + sizeof(buf); p != buf; ) { | |
3026 | Stat_t t; | |
3027 | t.st_ino = s.st_ino / 10; | |
3028 | *--p = '0' + (int)(s.st_ino - t.st_ino*10); | |
3029 | s.st_ino = t.st_ino; | |
3030 | } | |
3031 | while (*p == '0') | |
3032 | p++; | |
3033 | mPUSHp(p, buf+sizeof(buf) - p); | |
3034 | } | |
3035 | } | |
3036 | } | |
6e449a3a MHM |
3037 | mPUSHu(PL_statcache.st_mode); |
3038 | mPUSHu(PL_statcache.st_nlink); | |
dfff4baf BF |
3039 | |
3040 | sv_setuid(PUSHmortal, PL_statcache.st_uid); | |
3041 | sv_setgid(PUSHmortal, PL_statcache.st_gid); | |
3042 | ||
cbdc8872 | 3043 | #ifdef USE_STAT_RDEV |
6e449a3a | 3044 | mPUSHi(PL_statcache.st_rdev); |
cbdc8872 | 3045 | #else |
84bafc02 | 3046 | PUSHs(newSVpvs_flags("", SVs_TEMP)); |
cbdc8872 | 3047 | #endif |
146174a9 | 3048 | #if Off_t_size > IVSIZE |
6e449a3a | 3049 | mPUSHn(PL_statcache.st_size); |
146174a9 | 3050 | #else |
6e449a3a | 3051 | mPUSHi(PL_statcache.st_size); |
146174a9 | 3052 | #endif |
cbdc8872 | 3053 | #ifdef BIG_TIME |
6e449a3a MHM |
3054 | mPUSHn(PL_statcache.st_atime); |
3055 | mPUSHn(PL_statcache.st_mtime); | |
3056 | mPUSHn(PL_statcache.st_ctime); | |
cbdc8872 | 3057 | #else |
6e449a3a MHM |
3058 | mPUSHi(PL_statcache.st_atime); |
3059 | mPUSHi(PL_statcache.st_mtime); | |
3060 | mPUSHi(PL_statcache.st_ctime); | |
cbdc8872 | 3061 | #endif |
a0d0e21e | 3062 | #ifdef USE_STAT_BLOCKS |
6e449a3a MHM |
3063 | mPUSHu(PL_statcache.st_blksize); |
3064 | mPUSHu(PL_statcache.st_blocks); | |
a0d0e21e | 3065 | #else |
84bafc02 NC |
3066 | PUSHs(newSVpvs_flags("", SVs_TEMP)); |
3067 | PUSHs(newSVpvs_flags("", SVs_TEMP)); | |
a0d0e21e LW |
3068 | #endif |
3069 | } | |
3070 | RETURN; | |
3071 | } | |
3072 | ||
6c48f025 NC |
3073 | /* All filetest ops avoid manipulating the perl stack pointer in their main |
3074 | bodies (since commit d2c4d2d1e22d3125), and return using either | |
3075 | S_ft_return_false() or S_ft_return_true(). These two helper functions are | |
3076 | the only two which manipulate the perl stack. To ensure that no stack | |
3077 | manipulation macros are used, the filetest ops avoid defining a local copy | |
3078 | of the stack pointer with dSP. */ | |
3079 | ||
8db8f6b6 FC |
3080 | /* If the next filetest is stacked up with this one |
3081 | (PL_op->op_private & OPpFT_STACKING), we leave | |
3082 | the original argument on the stack for success, | |
3083 | and skip the stacked operators on failure. | |
3084 | The next few macros/functions take care of this. | |
3085 | */ | |
3086 | ||
3087 | static OP * | |
9a6b02e8 | 3088 | S_ft_return_false(pTHX_ SV *ret) { |
8db8f6b6 | 3089 | OP *next = NORMAL; |
697f9d37 NC |
3090 | dSP; |
3091 | ||
226b9201 | 3092 | if (PL_op->op_flags & OPf_REF) XPUSHs(ret); |
8db8f6b6 FC |
3093 | else SETs(ret); |
3094 | PUTBACK; | |
697f9d37 | 3095 | |
9a6b02e8 | 3096 | if (PL_op->op_private & OPpFT_STACKING) { |
1af91490 | 3097 | while (next && OP_IS_FILETEST(next->op_type) |
9a6b02e8 NC |
3098 | && next->op_private & OPpFT_STACKED) |
3099 | next = next->op_next; | |
3100 | } | |
8db8f6b6 FC |
3101 | return next; |
3102 | } | |
3103 | ||
07ed4d4b NC |
3104 | PERL_STATIC_INLINE OP * |
3105 | S_ft_return_true(pTHX_ SV *ret) { | |
3106 | dSP; | |
3107 | if (PL_op->op_flags & OPf_REF) | |
3108 | XPUSHs(PL_op->op_private & OPpFT_STACKING ? (SV *)cGVOP_gv : (ret)); | |
3109 | else if (!(PL_op->op_private & OPpFT_STACKING)) | |
3110 | SETs(ret); | |
3111 | PUTBACK; | |
3112 | return NORMAL; | |
3113 | } | |
8db8f6b6 | 3114 | |
48d023d6 NC |
3115 | #define FT_RETURNNO return S_ft_return_false(aTHX_ &PL_sv_no) |
3116 | #define FT_RETURNUNDEF return S_ft_return_false(aTHX_ &PL_sv_undef) | |
3117 | #define FT_RETURNYES return S_ft_return_true(aTHX_ &PL_sv_yes) | |
8db8f6b6 | 3118 | |
6f1401dc | 3119 | #define tryAMAGICftest_MG(chr) STMT_START { \ |
d2f67720 | 3120 | if ( (SvFLAGS(*PL_stack_sp) & (SVf_ROK|SVs_GMG)) \ |
8db8f6b6 FC |
3121 | && PL_op->op_flags & OPf_KIDS) { \ |
3122 | OP *next = S_try_amagic_ftest(aTHX_ chr); \ | |
3123 | if (next) return next; \ | |
3124 | } \ | |
6f1401dc DM |
3125 | } STMT_END |
3126 | ||
8db8f6b6 | 3127 | STATIC OP * |
6f1401dc | 3128 | S_try_amagic_ftest(pTHX_ char chr) { |
d2f67720 | 3129 | SV *const arg = *PL_stack_sp; |
6f1401dc DM |
3130 | |
3131 | assert(chr != '?'); | |
c5780028 | 3132 | if (!(PL_op->op_private & OPpFT_STACKING)) SvGETMAGIC(arg); |
6f1401dc | 3133 | |
d2f67720 | 3134 | if (SvAMAGIC(arg)) |
6f1401dc DM |
3135 | { |
3136 | const char tmpchr = chr; | |
6f1401dc DM |
3137 | SV * const tmpsv = amagic_call(arg, |
3138 | newSVpvn_flags(&tmpchr, 1, SVs_TEMP), | |
3139 | ftest_amg, AMGf_unary); | |
3140 | ||
3141 | if (!tmpsv) | |
8db8f6b6 | 3142 | return NULL; |
6f1401dc | 3143 | |
48d023d6 NC |
3144 | return SvTRUE(tmpsv) |
3145 | ? S_ft_return_true(aTHX_ tmpsv) : S_ft_return_false(aTHX_ tmpsv); | |
6f1401dc | 3146 | } |
8db8f6b6 | 3147 | return NULL; |
6f1401dc DM |
3148 | } |
3149 | ||
3150 | ||
b1c05ba5 DM |
3151 | /* also used for: pp_fteexec() pp_fteread() pp_ftewrite() pp_ftrexec() |
3152 | * pp_ftrwrite() */ | |
3153 | ||
a0d0e21e LW |
3154 | PP(pp_ftrread) |
3155 | { | |
9cad6237 | 3156 | I32 result; |
af9e49b4 | 3157 | /* Not const, because things tweak this below. Not bool, because there's |
f3574cc6 | 3158 | no guarantee that OPpFT_ACCESS is <= CHAR_MAX */ |
af9e49b4 NC |
3159 | #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS) |
3160 | I32 use_access = PL_op->op_private & OPpFT_ACCESS; | |
3161 | /* Giving some sort of initial value silences compilers. */ | |
3162 | # ifdef R_OK | |
3163 | int access_mode = R_OK; | |
3164 | # else | |
3165 | int access_mode = 0; | |
3166 | # endif | |
5ff3f7a4 | 3167 | #else |
af9e49b4 NC |
3168 | /* access_mode is never used, but leaving use_access in makes the |
3169 | conditional compiling below much clearer. */ | |
3170 | I32 use_access = 0; | |
5ff3f7a4 | 3171 | #endif |
2dcac756 | 3172 | Mode_t stat_mode = S_IRUSR; |
a0d0e21e | 3173 | |
af9e49b4 | 3174 | bool effective = FALSE; |
07fe7c6a | 3175 | char opchar = '?'; |
af9e49b4 | 3176 | |
7fb13887 BM |
3177 | switch (PL_op->op_type) { |
3178 | case OP_FTRREAD: opchar = 'R'; break; | |
3179 | case OP_FTRWRITE: opchar = 'W'; break; | |
3180 | case OP_FTREXEC: opchar = 'X'; break; | |
3181 | case OP_FTEREAD: opchar = 'r'; break; | |
3182 | case OP_FTEWRITE: opchar = 'w'; break; | |
3183 | case OP_FTEEXEC: opchar = 'x'; break; | |
3184 | } | |
6f1401dc | 3185 | tryAMAGICftest_MG(opchar); |
7fb13887 | 3186 | |
af9e49b4 NC |
3187 | switch (PL_op->op_type) { |
3188 | case OP_FTRREAD: | |
3189 | #if !(defined(HAS_ACCESS) && defined(R_OK)) | |
3190 | use_access = 0; | |
3191 | #endif | |
3192 | break; | |
3193 | ||
3194 | case OP_FTRWRITE: | |
5ff3f7a4 | 3195 | #if defined(HAS_ACCESS) && defined(W_OK) |
af9e49b4 | 3196 | access_mode = W_OK; |
5ff3f7a4 | 3197 | #else |
af9e49b4 | 3198 | use_access = 0; |
5ff3f7a4 | 3199 | #endif |
af9e49b4 NC |
3200 | stat_mode = S_IWUSR; |
3201 | break; | |
a0d0e21e | 3202 | |
af9e49b4 | 3203 | case OP_FTREXEC: |
5ff3f7a4 | 3204 | #if defined(HAS_ACCESS) && defined(X_OK) |
af9e49b4 | 3205 | access_mode = X_OK; |
5ff3f7a4 | 3206 | #else |
af9e49b4 | 3207 | use_access = 0; |
5ff3f7a4 | 3208 | #endif |
af9e49b4 NC |
3209 | stat_mode = S_IXUSR; |
3210 | break; | |
a0d0e21e | 3211 | |
af9e49b4 | 3212 | case OP_FTEWRITE: |
faee0e31 | 3213 | #ifdef PERL_EFF_ACCESS |
af9e49b4 | 3214 | access_mode = W_OK; |
5ff3f7a4 | 3215 | #endif |
af9e49b4 | 3216 | stat_mode = S_IWUSR; |
924ba076 | 3217 | /* FALLTHROUGH */ |
a0d0e21e | 3218 | |
af9e49b4 NC |
3219 | case OP_FTEREAD: |
3220 | #ifndef PERL_EFF_ACCESS | |
3221 | use_access = 0; | |
3222 | #endif | |
3223 | effective = TRUE; | |
3224 | break; | |
3225 | ||
af9e49b4 | 3226 | case OP_FTEEXEC: |
faee0e31 | 3227 | #ifdef PERL_EFF_ACCESS |
b376053d | 3228 | access_mode = X_OK; |
5ff3f7a4 | 3229 | #else |
af9e49b4 | 3230 | use_access = 0; |
5ff3f7a4 | 3231 | #endif |
af9e49b4 NC |
3232 | stat_mode = S_IXUSR; |
3233 | effective = TRUE; | |
3234 | break; | |
3235 | } | |
a0d0e21e | 3236 | |
af9e49b4 NC |
3237 | if (use_access) { |
3238 | #if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS) | |
a155eb05 TC |
3239 | STRLEN len; |
3240 | const char *name = SvPV(*PL_stack_sp, len); | |
3241 | if (!IS_SAFE_PATHNAME(name, len, OP_NAME(PL_op))) { | |
3242 | result = -1; | |
3243 | } | |
3244 | else if (effective) { | |
af9e49b4 NC |
3245 | # ifdef PERL_EFF_ACCESS |
3246 | result = PERL_EFF_ACCESS(name, access_mode); | |
3247 | # else | |
3248 | DIE(aTHX_ "panic: attempt to call PERL_EFF_ACCESS in %s", | |
3249 | OP_NAME(PL_op)); | |
3250 | # endif | |
3251 | } | |
3252 | else { | |
3253 | # ifdef HAS_ACCESS | |
3254 | result = access(name, access_mode); | |
3255 | # else | |
3256 | DIE(aTHX_ "panic: attempt to call access() in %s", OP_NAME(PL_op)); | |
3257 | # endif | |
3258 | } | |
5ff3f7a4 | 3259 | if (result == 0) |
d2c4d2d1 | 3260 | FT_RETURNYES; |
5ff3f7a4 | 3261 | if (result < 0) |
d2c4d2d1 FC |
3262 | FT_RETURNUNDEF; |
3263 | FT_RETURNNO; | |
af9e49b4 | 3264 | #endif |
22865c03 | 3265 | } |
af9e49b4 | 3266 | |
40c852de | 3267 | result = my_stat_flags(0); |
a0d0e21e | 3268 | if (result < 0) |
8db8f6b6 | 3269 | FT_RETURNUNDEF; |
af9e49b4 | 3270 | if (cando(stat_mode, effective, &PL_statcache)) |
8db8f6b6 FC |
3271 | FT_RETURNYES; |
3272 | FT_RETURNNO; | |
a0d0e21e LW |
3273 | } |
3274 | ||
b1c05ba5 DM |
3275 | |
3276 | /* also used for: pp_ftatime() pp_ftctime() pp_ftmtime() pp_ftsize() */ | |
3277 | ||
a0d0e21e LW |
3278 | PP(pp_ftis) |
3279 | { | |
fbb0b3b3 | 3280 | I32 result; |
d7f0a2f4 | 3281 | const int op_type = PL_op->op_type; |
07fe7c6a | 3282 | char opchar = '?'; |
07fe7c6a BM |
3283 | |
3284 | switch (op_type) { | |
3285 | case OP_FTIS: opchar = 'e'; break; | |
3286 | case OP_FTSIZE: opchar = 's'; break; | |
3287 | case OP_FTMTIME: opchar = 'M'; break; | |
3288 | case OP_FTCTIME: opchar = 'C'; break; | |
3289 | case OP_FTATIME: opchar = 'A'; break; | |
3290 | } | |
6f1401dc | 3291 | tryAMAGICftest_MG(opchar); |
07fe7c6a | 3292 | |
40c852de | 3293 | result = my_stat_flags(0); |
a0d0e21e | 3294 | if (result < 0) |
8db8f6b6 | 3295 | FT_RETURNUNDEF; |
d7f0a2f4 | 3296 | if (op_type == OP_FTIS) |
8db8f6b6 | 3297 | FT_RETURNYES; |
957b0e1d | 3298 | { |
d7f0a2f4 NC |
3299 | /* You can't dTARGET inside OP_FTIS, because you'll get |
3300 | "panic: pad_sv po" - the op is not flagged to have a target. */ | |
957b0e1d | 3301 | dTARGET; |
d7f0a2f4 | 3302 | switch (op_type) { |
957b0e1d NC |
3303 | case OP_FTSIZE: |
3304 | #if Off_t_size > IVSIZE | |
8db8f6b6 | 3305 | sv_setnv(TARG, (NV)PL_statcache.st_size); |
957b0e1d | 3306 | #else |
8db8f6b6 | 3307 | sv_setiv(TARG, (IV)PL_statcache.st_size); |
957b0e1d NC |
3308 | #endif |
3309 | break; | |
3310 | case OP_FTMTIME: | |
8db8f6b6 FC |
3311 | sv_setnv(TARG, |
3312 | ((NV)PL_basetime - PL_statcache.st_mtime) / 86400.0 ); | |
957b0e1d NC |
3313 | break; |
3314 | case OP_FTATIME: | |
8db8f6b6 FC |
3315 | sv_setnv(TARG, |
3316 | ((NV)PL_basetime - PL_statcache.st_atime) / 86400.0 ); | |
957b0e1d NC |
3317 | break; |
3318 | case OP_FTCTIME: | |
8db8f6b6 FC |
3319 | sv_setnv(TARG, |
3320 | ((NV)PL_basetime - PL_statcache.st_ctime) / 86400.0 ); | |
957b0e1d NC |
3321 | break; |
3322 | } | |
8db8f6b6 | 3323 | SvSETMAGIC(TARG); |
f4c975aa | 3324 | return SvTRUE_nomg_NN(TARG) |
48d023d6 | 3325 | ? S_ft_return_true(aTHX_ TARG) : S_ft_return_false(aTHX_ TARG); |
957b0e1d | 3326 | } |
a0d0e21e LW |
3327 | } |
3328 | ||
b1c05ba5 DM |
3329 | |
3330 | /* also used for: pp_ftblk() pp_ftchr() pp_ftdir() pp_fteowned() | |
3331 | * pp_ftfile() pp_ftpipe() pp_ftsgid() pp_ftsock() | |
3332 | * pp_ftsuid() pp_ftsvtx() pp_ftzero() */ | |
3333 | ||
a0d0e21e LW |
3334 | PP(pp_ftrowned) |
3335 | { | |
fbb0b3b3 | 3336 | I32 result; |
07fe7c6a | 3337 | char opchar = '?'; |
17ad201a | 3338 | |
7fb13887 BM |
3339 | switch (PL_op->op_type) { |
3340 | case OP_FTROWNED: opchar = 'O'; break; | |
3341 | case OP_FTEOWNED: opchar = 'o'; break; | |
3342 | case OP_FTZERO: opchar = 'z'; break; | |
3343 | case OP_FTSOCK: opchar = 'S'; break; | |
3344 | case OP_FTCHR: opchar = 'c'; break; | |
3345 | case OP_FTBLK: opchar = 'b'; break; | |
3346 | case OP_FTFILE: opchar = 'f'; break; | |
3347 | case OP_FTDIR: opchar = 'd'; break; | |
3348 | case OP_FTPIPE: opchar = 'p'; break; | |
3349 | case OP_FTSUID: opchar = 'u'; break; | |
3350 | case OP_FTSGID: opchar = 'g'; break; | |
3351 | case OP_FTSVTX: opchar = 'k'; break; | |