Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* mg.c |
79072805 | 2 | * |
1129b882 NC |
3 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
4 | * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others | |
79072805 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 | * | |
a0d0e21e LW |
9 | */ |
10 | ||
11 | /* | |
4ac71550 TC |
12 | * Sam sat on the ground and put his head in his hands. 'I wish I had never |
13 | * come here, and I don't want to see no more magic,' he said, and fell silent. | |
14 | * | |
15 | * [p.363 of _The Lord of the Rings_, II/vii: "The Mirror of Galadriel"] | |
79072805 LW |
16 | */ |
17 | ||
ccfc67b7 JH |
18 | /* |
19 | =head1 Magical Functions | |
166f8a29 DM |
20 | |
21 | "Magic" is special data attached to SV structures in order to give them | |
22 | "magical" properties. When any Perl code tries to read from, or assign to, | |
23 | an SV marked as magical, it calls the 'get' or 'set' function associated | |
24 | with that SV's magic. A get is called prior to reading an SV, in order to | |
ddfa107c | 25 | give it a chance to update its internal value (get on $. writes the line |
166f8a29 DM |
26 | number of the last read filehandle into to the SV's IV slot), while |
27 | set is called after an SV has been written to, in order to allow it to make | |
ddfa107c | 28 | use of its changed value (set on $/ copies the SV's new value to the |
166f8a29 DM |
29 | PL_rs global variable). |
30 | ||
31 | Magic is implemented as a linked list of MAGIC structures attached to the | |
32 | SV. Each MAGIC struct holds the type of the magic, a pointer to an array | |
33 | of functions that implement the get(), set(), length() etc functions, | |
34 | plus space for some flags and pointers. For example, a tied variable has | |
35 | a MAGIC structure that contains a pointer to the object associated with the | |
36 | tie. | |
37 | ||
ccfc67b7 JH |
38 | */ |
39 | ||
79072805 | 40 | #include "EXTERN.h" |
864dbfa3 | 41 | #define PERL_IN_MG_C |
79072805 LW |
42 | #include "perl.h" |
43 | ||
5cd24f17 | 44 | #if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS) |
b7953727 JH |
45 | # ifdef I_GRP |
46 | # include <grp.h> | |
47 | # endif | |
188ea221 CS |
48 | #endif |
49 | ||
757f63d8 SP |
50 | #if defined(HAS_SETGROUPS) |
51 | # ifndef NGROUPS | |
52 | # define NGROUPS 32 | |
53 | # endif | |
54 | #endif | |
55 | ||
17aa7f3d JH |
56 | #ifdef __hpux |
57 | # include <sys/pstat.h> | |
58 | #endif | |
59 | ||
7636ea95 AB |
60 | #ifdef HAS_PRCTL_SET_NAME |
61 | # include <sys/prctl.h> | |
62 | #endif | |
63 | ||
8aad04aa | 64 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
b6455c53 | 65 | Signal_t Perl_csighandler(int sig, siginfo_t *, void *); |
8aad04aa | 66 | #else |
e69880a5 | 67 | Signal_t Perl_csighandler(int sig); |
8aad04aa | 68 | #endif |
e69880a5 | 69 | |
9cffb111 OS |
70 | #ifdef __Lynx__ |
71 | /* Missing protos on LynxOS */ | |
72 | void setruid(uid_t id); | |
73 | void seteuid(uid_t id); | |
74 | void setrgid(uid_t id); | |
75 | void setegid(uid_t id); | |
76 | #endif | |
77 | ||
c07a80fd | 78 | /* |
79 | * Use the "DESTRUCTOR" scope cleanup to reinstate magic. | |
80 | */ | |
81 | ||
82 | struct magic_state { | |
83 | SV* mgs_sv; | |
455ece5e | 84 | I32 mgs_ss_ix; |
f9c6fee5 CS |
85 | U32 mgs_magical; |
86 | bool mgs_readonly; | |
c07a80fd | 87 | }; |
455ece5e | 88 | /* MGS is typedef'ed to struct magic_state in perl.h */ |
76e3520e GS |
89 | |
90 | STATIC void | |
8fb26106 | 91 | S_save_magic(pTHX_ I32 mgs_ix, SV *sv) |
c07a80fd | 92 | { |
97aff369 | 93 | dVAR; |
455ece5e | 94 | MGS* mgs; |
7918f24d NC |
95 | |
96 | PERL_ARGS_ASSERT_SAVE_MAGIC; | |
97 | ||
c07a80fd | 98 | assert(SvMAGICAL(sv)); |
d8b2590f NC |
99 | /* Turning READONLY off for a copy-on-write scalar (including shared |
100 | hash keys) is a bad idea. */ | |
765f542d | 101 | if (SvIsCOW(sv)) |
9a265e59 | 102 | sv_force_normal_flags(sv, 0); |
c07a80fd | 103 | |
8772537c | 104 | SAVEDESTRUCTOR_X(S_restore_magic, INT2PTR(void*, (IV)mgs_ix)); |
455ece5e AD |
105 | |
106 | mgs = SSPTR(mgs_ix, MGS*); | |
c07a80fd | 107 | mgs->mgs_sv = sv; |
f9c6fee5 CS |
108 | mgs->mgs_magical = SvMAGICAL(sv); |
109 | mgs->mgs_readonly = SvREADONLY(sv) != 0; | |
455ece5e | 110 | mgs->mgs_ss_ix = PL_savestack_ix; /* points after the saved destructor */ |
c07a80fd | 111 | |
112 | SvMAGICAL_off(sv); | |
113 | SvREADONLY_off(sv); | |
085bde85 NC |
114 | if (!(SvFLAGS(sv) & (SVf_IOK|SVf_NOK|SVf_POK))) { |
115 | /* No public flags are set, so promote any private flags to public. */ | |
116 | SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT; | |
117 | } | |
c07a80fd | 118 | } |
119 | ||
954c1994 GS |
120 | /* |
121 | =for apidoc mg_magical | |
122 | ||
123 | Turns on the magical status of an SV. See C<sv_magic>. | |
124 | ||
125 | =cut | |
126 | */ | |
127 | ||
8990e307 | 128 | void |
864dbfa3 | 129 | Perl_mg_magical(pTHX_ SV *sv) |
8990e307 | 130 | { |
e1ec3a88 | 131 | const MAGIC* mg; |
7918f24d | 132 | PERL_ARGS_ASSERT_MG_MAGICAL; |
96a5add6 | 133 | PERL_UNUSED_CONTEXT; |
f9c6fee5 CS |
134 | |
135 | SvMAGICAL_off(sv); | |
218787bd | 136 | if ((mg = SvMAGIC(sv))) { |
218787bd VP |
137 | do { |
138 | const MGVTBL* const vtbl = mg->mg_virtual; | |
139 | if (vtbl) { | |
140 | if (vtbl->svt_get && !(mg->mg_flags & MGf_GSKIP)) | |
141 | SvGMAGICAL_on(sv); | |
142 | if (vtbl->svt_set) | |
143 | SvSMAGICAL_on(sv); | |
144 | if (vtbl->svt_clear) | |
145 | SvRMAGICAL_on(sv); | |
146 | } | |
147 | } while ((mg = mg->mg_moremagic)); | |
148 | if (!(SvFLAGS(sv) & (SVs_GMG|SVs_SMG))) | |
149 | SvRMAGICAL_on(sv); | |
8990e307 LW |
150 | } |
151 | } | |
152 | ||
2767dea0 DM |
153 | |
154 | /* is this container magic (%ENV, $1 etc), or value magic (pos, taint etc)? */ | |
155 | ||
156 | STATIC bool | |
157 | S_is_container_magic(const MAGIC *mg) | |
158 | { | |
7918f24d | 159 | assert(mg); |
2767dea0 DM |
160 | switch (mg->mg_type) { |
161 | case PERL_MAGIC_bm: | |
162 | case PERL_MAGIC_fm: | |
163 | case PERL_MAGIC_regex_global: | |
164 | case PERL_MAGIC_nkeys: | |
165 | #ifdef USE_LOCALE_COLLATE | |
166 | case PERL_MAGIC_collxfrm: | |
167 | #endif | |
168 | case PERL_MAGIC_qr: | |
169 | case PERL_MAGIC_taint: | |
170 | case PERL_MAGIC_vec: | |
171 | case PERL_MAGIC_vstring: | |
172 | case PERL_MAGIC_utf8: | |
173 | case PERL_MAGIC_substr: | |
174 | case PERL_MAGIC_defelem: | |
175 | case PERL_MAGIC_arylen: | |
176 | case PERL_MAGIC_pos: | |
177 | case PERL_MAGIC_backref: | |
178 | case PERL_MAGIC_arylen_p: | |
179 | case PERL_MAGIC_rhash: | |
180 | case PERL_MAGIC_symtab: | |
181 | return 0; | |
182 | default: | |
183 | return 1; | |
184 | } | |
185 | } | |
186 | ||
954c1994 GS |
187 | /* |
188 | =for apidoc mg_get | |
189 | ||
190 | Do magic after a value is retrieved from the SV. See C<sv_magic>. | |
191 | ||
192 | =cut | |
193 | */ | |
194 | ||
79072805 | 195 | int |
864dbfa3 | 196 | Perl_mg_get(pTHX_ SV *sv) |
79072805 | 197 | { |
97aff369 | 198 | dVAR; |
35a4481c | 199 | const I32 mgs_ix = SSNEW(sizeof(MGS)); |
f2338a2e | 200 | const bool was_temp = cBOOL(SvTEMP(sv)); |
f9c6fee5 | 201 | bool have_new = 0; |
ff76feab | 202 | MAGIC *newmg, *head, *cur, *mg; |
20135930 | 203 | /* guard against sv having being freed midway by holding a private |
6683b158 NC |
204 | reference. */ |
205 | ||
7918f24d NC |
206 | PERL_ARGS_ASSERT_MG_GET; |
207 | ||
6683b158 NC |
208 | /* sv_2mortal has this side effect of turning on the TEMP flag, which can |
209 | cause the SV's buffer to get stolen (and maybe other stuff). | |
210 | So restore it. | |
211 | */ | |
46da273f | 212 | sv_2mortal(SvREFCNT_inc_simple_NN(sv)); |
6683b158 NC |
213 | if (!was_temp) { |
214 | SvTEMP_off(sv); | |
215 | } | |
216 | ||
455ece5e | 217 | save_magic(mgs_ix, sv); |
463ee0b2 | 218 | |
ff76feab AMS |
219 | /* We must call svt_get(sv, mg) for each valid entry in the linked |
220 | list of magic. svt_get() may delete the current entry, add new | |
221 | magic to the head of the list, or upgrade the SV. AMS 20010810 */ | |
222 | ||
223 | newmg = cur = head = mg = SvMAGIC(sv); | |
224 | while (mg) { | |
35a4481c | 225 | const MGVTBL * const vtbl = mg->mg_virtual; |
f9c6fee5 | 226 | MAGIC * const nextmg = mg->mg_moremagic; /* it may delete itself */ |
ff76feab | 227 | |
2b260de0 | 228 | if (!(mg->mg_flags & MGf_GSKIP) && vtbl && vtbl->svt_get) { |
316ad4fe | 229 | CALL_FPTR(vtbl->svt_get)(aTHX_ sv, mg); |
b77f7d40 | 230 | |
58f82c5c DM |
231 | /* guard against magic having been deleted - eg FETCH calling |
232 | * untie */ | |
f9c6fee5 CS |
233 | if (!SvMAGIC(sv)) { |
234 | (SSPTR(mgs_ix, MGS *))->mgs_magical = 0; /* recalculate flags */ | |
58f82c5c | 235 | break; |
f9c6fee5 | 236 | } |
b77f7d40 | 237 | |
f9c6fee5 | 238 | /* recalculate flags if this entry was deleted. */ |
ff76feab | 239 | if (mg->mg_flags & MGf_GSKIP) |
f9c6fee5 | 240 | (SSPTR(mgs_ix, MGS *))->mgs_magical = 0; |
a0d0e21e | 241 | } |
ff76feab | 242 | |
f9c6fee5 | 243 | mg = nextmg; |
ff76feab | 244 | |
0723351e | 245 | if (have_new) { |
ff76feab AMS |
246 | /* Have we finished with the new entries we saw? Start again |
247 | where we left off (unless there are more new entries). */ | |
248 | if (mg == head) { | |
0723351e | 249 | have_new = 0; |
ff76feab AMS |
250 | mg = cur; |
251 | head = newmg; | |
252 | } | |
253 | } | |
254 | ||
255 | /* Were any new entries added? */ | |
0723351e NC |
256 | if (!have_new && (newmg = SvMAGIC(sv)) != head) { |
257 | have_new = 1; | |
ff76feab AMS |
258 | cur = mg; |
259 | mg = newmg; | |
f9c6fee5 | 260 | (SSPTR(mgs_ix, MGS *))->mgs_magical = 0; /* recalculate flags */ |
760ac839 | 261 | } |
79072805 | 262 | } |
463ee0b2 | 263 | |
8772537c | 264 | restore_magic(INT2PTR(void *, (IV)mgs_ix)); |
6683b158 NC |
265 | |
266 | if (SvREFCNT(sv) == 1) { | |
267 | /* We hold the last reference to this SV, which implies that the | |
268 | SV was deleted as a side effect of the routines we called. */ | |
0c34ef67 | 269 | SvOK_off(sv); |
6683b158 | 270 | } |
79072805 LW |
271 | return 0; |
272 | } | |
273 | ||
954c1994 GS |
274 | /* |
275 | =for apidoc mg_set | |
276 | ||
277 | Do magic after a value is assigned to the SV. See C<sv_magic>. | |
278 | ||
279 | =cut | |
280 | */ | |
281 | ||
79072805 | 282 | int |
864dbfa3 | 283 | Perl_mg_set(pTHX_ SV *sv) |
79072805 | 284 | { |
97aff369 | 285 | dVAR; |
35a4481c | 286 | const I32 mgs_ix = SSNEW(sizeof(MGS)); |
79072805 | 287 | MAGIC* mg; |
463ee0b2 LW |
288 | MAGIC* nextmg; |
289 | ||
7918f24d NC |
290 | PERL_ARGS_ASSERT_MG_SET; |
291 | ||
455ece5e | 292 | save_magic(mgs_ix, sv); |
463ee0b2 LW |
293 | |
294 | for (mg = SvMAGIC(sv); mg; mg = nextmg) { | |
e1ec3a88 | 295 | const MGVTBL* vtbl = mg->mg_virtual; |
463ee0b2 | 296 | nextmg = mg->mg_moremagic; /* it may delete itself */ |
a0d0e21e LW |
297 | if (mg->mg_flags & MGf_GSKIP) { |
298 | mg->mg_flags &= ~MGf_GSKIP; /* setting requires another read */ | |
f9c6fee5 | 299 | (SSPTR(mgs_ix, MGS*))->mgs_magical = 0; |
a0d0e21e | 300 | } |
e7cbf6c6 DM |
301 | if (PL_localizing == 2 && !S_is_container_magic(mg)) |
302 | continue; | |
2b260de0 | 303 | if (vtbl && vtbl->svt_set) |
fc0dc3b3 | 304 | CALL_FPTR(vtbl->svt_set)(aTHX_ sv, mg); |
79072805 | 305 | } |
463ee0b2 | 306 | |
8772537c | 307 | restore_magic(INT2PTR(void*, (IV)mgs_ix)); |
79072805 LW |
308 | return 0; |
309 | } | |
310 | ||
954c1994 GS |
311 | /* |
312 | =for apidoc mg_length | |
313 | ||
314 | Report on the SV's length. See C<sv_magic>. | |
315 | ||
316 | =cut | |
317 | */ | |
318 | ||
79072805 | 319 | U32 |
864dbfa3 | 320 | Perl_mg_length(pTHX_ SV *sv) |
79072805 | 321 | { |
97aff369 | 322 | dVAR; |
79072805 | 323 | MAGIC* mg; |
463ee0b2 | 324 | STRLEN len; |
463ee0b2 | 325 | |
7918f24d NC |
326 | PERL_ARGS_ASSERT_MG_LENGTH; |
327 | ||
79072805 | 328 | for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { |
35a4481c | 329 | const MGVTBL * const vtbl = mg->mg_virtual; |
2b260de0 | 330 | if (vtbl && vtbl->svt_len) { |
35a4481c | 331 | const I32 mgs_ix = SSNEW(sizeof(MGS)); |
455ece5e | 332 | save_magic(mgs_ix, sv); |
a0d0e21e | 333 | /* omit MGf_GSKIP -- not changed here */ |
fc0dc3b3 | 334 | len = CALL_FPTR(vtbl->svt_len)(aTHX_ sv, mg); |
8772537c | 335 | restore_magic(INT2PTR(void*, (IV)mgs_ix)); |
85e6fe83 LW |
336 | return len; |
337 | } | |
338 | } | |
339 | ||
d0644529 NC |
340 | { |
341 | /* You can't know whether it's UTF-8 until you get the string again... | |
342 | */ | |
10516c54 | 343 | const U8 *s = (U8*)SvPV_const(sv, len); |
d0644529 NC |
344 | |
345 | if (DO_UTF8(sv)) { | |
346 | len = utf8_length(s, s + len); | |
347 | } | |
5636d518 | 348 | } |
463ee0b2 | 349 | return len; |
79072805 LW |
350 | } |
351 | ||
8fb26106 | 352 | I32 |
864dbfa3 | 353 | Perl_mg_size(pTHX_ SV *sv) |
93965878 NIS |
354 | { |
355 | MAGIC* mg; | |
ac27b0f5 | 356 | |
7918f24d NC |
357 | PERL_ARGS_ASSERT_MG_SIZE; |
358 | ||
93965878 | 359 | for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { |
35a4481c | 360 | const MGVTBL* const vtbl = mg->mg_virtual; |
2b260de0 | 361 | if (vtbl && vtbl->svt_len) { |
35a4481c AL |
362 | const I32 mgs_ix = SSNEW(sizeof(MGS)); |
363 | I32 len; | |
455ece5e | 364 | save_magic(mgs_ix, sv); |
93965878 | 365 | /* omit MGf_GSKIP -- not changed here */ |
fc0dc3b3 | 366 | len = CALL_FPTR(vtbl->svt_len)(aTHX_ sv, mg); |
8772537c | 367 | restore_magic(INT2PTR(void*, (IV)mgs_ix)); |
93965878 NIS |
368 | return len; |
369 | } | |
370 | } | |
371 | ||
372 | switch(SvTYPE(sv)) { | |
373 | case SVt_PVAV: | |
502c6561 | 374 | return AvFILLp((const AV *) sv); /* Fallback to non-tied array */ |
93965878 NIS |
375 | case SVt_PVHV: |
376 | /* FIXME */ | |
377 | default: | |
cea2e8a9 | 378 | Perl_croak(aTHX_ "Size magic not implemented"); |
93965878 NIS |
379 | break; |
380 | } | |
381 | return 0; | |
382 | } | |
383 | ||
954c1994 GS |
384 | /* |
385 | =for apidoc mg_clear | |
386 | ||
387 | Clear something magical that the SV represents. See C<sv_magic>. | |
388 | ||
389 | =cut | |
390 | */ | |
391 | ||
79072805 | 392 | int |
864dbfa3 | 393 | Perl_mg_clear(pTHX_ SV *sv) |
79072805 | 394 | { |
35a4481c | 395 | const I32 mgs_ix = SSNEW(sizeof(MGS)); |
79072805 | 396 | MAGIC* mg; |
8ac77ac9 | 397 | MAGIC *nextmg; |
463ee0b2 | 398 | |
7918f24d NC |
399 | PERL_ARGS_ASSERT_MG_CLEAR; |
400 | ||
455ece5e | 401 | save_magic(mgs_ix, sv); |
463ee0b2 | 402 | |
8ac77ac9 | 403 | for (mg = SvMAGIC(sv); mg; mg = nextmg) { |
35a4481c | 404 | const MGVTBL* const vtbl = mg->mg_virtual; |
a0d0e21e | 405 | /* omit GSKIP -- never set here */ |
727405f8 | 406 | |
8ac77ac9 NC |
407 | nextmg = mg->mg_moremagic; /* it may delete itself */ |
408 | ||
2b260de0 | 409 | if (vtbl && vtbl->svt_clear) |
fc0dc3b3 | 410 | CALL_FPTR(vtbl->svt_clear)(aTHX_ sv, mg); |
79072805 | 411 | } |
463ee0b2 | 412 | |
8772537c | 413 | restore_magic(INT2PTR(void*, (IV)mgs_ix)); |
79072805 LW |
414 | return 0; |
415 | } | |
416 | ||
954c1994 GS |
417 | /* |
418 | =for apidoc mg_find | |
419 | ||
420 | Finds the magic pointer for type matching the SV. See C<sv_magic>. | |
421 | ||
422 | =cut | |
423 | */ | |
424 | ||
93a17b20 | 425 | MAGIC* |
35a4481c | 426 | Perl_mg_find(pTHX_ const SV *sv, int type) |
93a17b20 | 427 | { |
96a5add6 | 428 | PERL_UNUSED_CONTEXT; |
35a4481c AL |
429 | if (sv) { |
430 | MAGIC *mg; | |
431 | for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { | |
432 | if (mg->mg_type == type) | |
433 | return mg; | |
434 | } | |
93a17b20 | 435 | } |
5f66b61c | 436 | return NULL; |
93a17b20 LW |
437 | } |
438 | ||
954c1994 GS |
439 | /* |
440 | =for apidoc mg_copy | |
441 | ||
442 | Copies the magic from one SV to another. See C<sv_magic>. | |
443 | ||
444 | =cut | |
445 | */ | |
446 | ||
79072805 | 447 | int |
864dbfa3 | 448 | Perl_mg_copy(pTHX_ SV *sv, SV *nsv, const char *key, I32 klen) |
79072805 | 449 | { |
463ee0b2 | 450 | int count = 0; |
79072805 | 451 | MAGIC* mg; |
7918f24d NC |
452 | |
453 | PERL_ARGS_ASSERT_MG_COPY; | |
454 | ||
463ee0b2 | 455 | for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { |
35a4481c | 456 | const MGVTBL* const vtbl = mg->mg_virtual; |
68795e93 NIS |
457 | if ((mg->mg_flags & MGf_COPY) && vtbl->svt_copy){ |
458 | count += CALL_FPTR(vtbl->svt_copy)(aTHX_ sv, mg, nsv, key, klen); | |
459 | } | |
823a54a3 AL |
460 | else { |
461 | const char type = mg->mg_type; | |
1e73acc8 | 462 | if (isUPPER(type) && type != PERL_MAGIC_uvar) { |
823a54a3 AL |
463 | sv_magic(nsv, |
464 | (type == PERL_MAGIC_tied) | |
465 | ? SvTIED_obj(sv, mg) | |
466 | : (type == PERL_MAGIC_regdata && mg->mg_obj) | |
467 | ? sv | |
468 | : mg->mg_obj, | |
469 | toLOWER(type), key, klen); | |
470 | count++; | |
471 | } | |
79072805 | 472 | } |
79072805 | 473 | } |
463ee0b2 | 474 | return count; |
79072805 LW |
475 | } |
476 | ||
954c1994 | 477 | /* |
0cbee0a4 DM |
478 | =for apidoc mg_localize |
479 | ||
9711599e CS |
480 | Copy some of the magic from an existing SV to new localized version of that |
481 | SV. Container magic (eg %ENV, $1, tie) gets copied, value magic doesn't (eg | |
482 | taint, pos). | |
483 | ||
af7df257 | 484 | If setmagic is false then no set magic will be called on the new (empty) SV. |
9711599e CS |
485 | This typically means that assignment will soon follow (e.g. 'local $x = $y'), |
486 | and that will handle the magic. | |
0cbee0a4 DM |
487 | |
488 | =cut | |
489 | */ | |
490 | ||
491 | void | |
af7df257 | 492 | Perl_mg_localize(pTHX_ SV *sv, SV *nsv, bool setmagic) |
0cbee0a4 | 493 | { |
97aff369 | 494 | dVAR; |
0cbee0a4 | 495 | MAGIC *mg; |
7918f24d NC |
496 | |
497 | PERL_ARGS_ASSERT_MG_LOCALIZE; | |
498 | ||
0cbee0a4 | 499 | for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { |
2b1b43ea | 500 | const MGVTBL* const vtbl = mg->mg_virtual; |
2767dea0 | 501 | if (!S_is_container_magic(mg)) |
0cbee0a4 | 502 | continue; |
0cbee0a4 | 503 | |
a5063e7c DM |
504 | if ((mg->mg_flags & MGf_LOCAL) && vtbl->svt_local) |
505 | (void)CALL_FPTR(vtbl->svt_local)(aTHX_ nsv, mg); | |
506 | else | |
0cbee0a4 DM |
507 | sv_magicext(nsv, mg->mg_obj, mg->mg_type, vtbl, |
508 | mg->mg_ptr, mg->mg_len); | |
a5063e7c | 509 | |
0cbee0a4 DM |
510 | /* container types should remain read-only across localization */ |
511 | SvFLAGS(nsv) |= SvREADONLY(sv); | |
512 | } | |
513 | ||
514 | if (SvTYPE(nsv) >= SVt_PVMG && SvMAGIC(nsv)) { | |
515 | SvFLAGS(nsv) |= SvMAGICAL(sv); | |
af7df257 | 516 | if (setmagic) { |
9711599e CS |
517 | PL_localizing = 1; |
518 | SvSETMAGIC(nsv); | |
519 | PL_localizing = 0; | |
520 | } | |
0cbee0a4 DM |
521 | } |
522 | } | |
523 | ||
524 | /* | |
954c1994 GS |
525 | =for apidoc mg_free |
526 | ||
527 | Free any magic storage used by the SV. See C<sv_magic>. | |
528 | ||
529 | =cut | |
530 | */ | |
531 | ||
79072805 | 532 | int |
864dbfa3 | 533 | Perl_mg_free(pTHX_ SV *sv) |
79072805 LW |
534 | { |
535 | MAGIC* mg; | |
536 | MAGIC* moremagic; | |
7918f24d NC |
537 | |
538 | PERL_ARGS_ASSERT_MG_FREE; | |
539 | ||
79072805 | 540 | for (mg = SvMAGIC(sv); mg; mg = moremagic) { |
35a4481c | 541 | const MGVTBL* const vtbl = mg->mg_virtual; |
79072805 | 542 | moremagic = mg->mg_moremagic; |
2b260de0 | 543 | if (vtbl && vtbl->svt_free) |
fc0dc3b3 | 544 | CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg); |
14befaf4 | 545 | if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) { |
979acdb5 | 546 | if (mg->mg_len > 0 || mg->mg_type == PERL_MAGIC_utf8) |
88e89b8a | 547 | Safefree(mg->mg_ptr); |
565764a8 | 548 | else if (mg->mg_len == HEf_SVKEY) |
ad64d0ec | 549 | SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr)); |
d460ef45 | 550 | } |
b881518d JH |
551 | if (mg->mg_flags & MGf_REFCOUNTED) |
552 | SvREFCNT_dec(mg->mg_obj); | |
79072805 | 553 | Safefree(mg); |
c826f41b | 554 | SvMAGIC_set(sv, moremagic); |
79072805 | 555 | } |
b162af07 | 556 | SvMAGIC_set(sv, NULL); |
68f8932e | 557 | SvMAGICAL_off(sv); |
79072805 LW |
558 | return 0; |
559 | } | |
560 | ||
79072805 | 561 | #include <signal.h> |
79072805 | 562 | |
942e002e | 563 | U32 |
864dbfa3 | 564 | Perl_magic_regdata_cnt(pTHX_ SV *sv, MAGIC *mg) |
6cef1e77 | 565 | { |
97aff369 | 566 | dVAR; |
8772537c | 567 | PERL_UNUSED_ARG(sv); |
6cef1e77 | 568 | |
7918f24d NC |
569 | PERL_ARGS_ASSERT_MAGIC_REGDATA_CNT; |
570 | ||
0bd48802 AL |
571 | if (PL_curpm) { |
572 | register const REGEXP * const rx = PM_GETRE(PL_curpm); | |
573 | if (rx) { | |
a678b0e4 YO |
574 | if (mg->mg_obj) { /* @+ */ |
575 | /* return the number possible */ | |
07bc277f | 576 | return RX_NPARENS(rx); |
a678b0e4 | 577 | } else { /* @- */ |
07bc277f | 578 | I32 paren = RX_LASTPAREN(rx); |
a678b0e4 YO |
579 | |
580 | /* return the last filled */ | |
f46c4081 | 581 | while ( paren >= 0 |
07bc277f NC |
582 | && (RX_OFFS(rx)[paren].start == -1 |
583 | || RX_OFFS(rx)[paren].end == -1) ) | |
f46c4081 | 584 | paren--; |
a678b0e4 YO |
585 | return (U32)paren; |
586 | } | |
0bd48802 | 587 | } |
8f580fb8 | 588 | } |
ac27b0f5 | 589 | |
942e002e | 590 | return (U32)-1; |
6cef1e77 IZ |
591 | } |
592 | ||
593 | int | |
864dbfa3 | 594 | Perl_magic_regdatum_get(pTHX_ SV *sv, MAGIC *mg) |
6cef1e77 | 595 | { |
97aff369 | 596 | dVAR; |
7918f24d NC |
597 | |
598 | PERL_ARGS_ASSERT_MAGIC_REGDATUM_GET; | |
599 | ||
0bd48802 AL |
600 | if (PL_curpm) { |
601 | register const REGEXP * const rx = PM_GETRE(PL_curpm); | |
602 | if (rx) { | |
603 | register const I32 paren = mg->mg_len; | |
604 | register I32 s; | |
605 | register I32 t; | |
606 | if (paren < 0) | |
607 | return 0; | |
07bc277f NC |
608 | if (paren <= (I32)RX_NPARENS(rx) && |
609 | (s = RX_OFFS(rx)[paren].start) != -1 && | |
610 | (t = RX_OFFS(rx)[paren].end) != -1) | |
0bd48802 AL |
611 | { |
612 | register I32 i; | |
613 | if (mg->mg_obj) /* @+ */ | |
614 | i = t; | |
615 | else /* @- */ | |
616 | i = s; | |
617 | ||
618 | if (i > 0 && RX_MATCH_UTF8(rx)) { | |
07bc277f | 619 | const char * const b = RX_SUBBEG(rx); |
0bd48802 | 620 | if (b) |
f5a63d97 | 621 | i = utf8_length((U8*)b, (U8*)(b+i)); |
0bd48802 | 622 | } |
727405f8 | 623 | |
0bd48802 | 624 | sv_setiv(sv, i); |
1aa99e6b | 625 | } |
0bd48802 | 626 | } |
6cef1e77 IZ |
627 | } |
628 | return 0; | |
629 | } | |
630 | ||
e4b89193 | 631 | int |
a29d06ed MG |
632 | Perl_magic_regdatum_set(pTHX_ SV *sv, MAGIC *mg) |
633 | { | |
7918f24d | 634 | PERL_ARGS_ASSERT_MAGIC_REGDATUM_SET; |
d4c19fe8 AL |
635 | PERL_UNUSED_ARG(sv); |
636 | PERL_UNUSED_ARG(mg); | |
f1f66076 | 637 | Perl_croak(aTHX_ "%s", PL_no_modify); |
0dbb1585 | 638 | NORETURN_FUNCTION_END; |
a29d06ed MG |
639 | } |
640 | ||
93a17b20 | 641 | U32 |
864dbfa3 | 642 | Perl_magic_len(pTHX_ SV *sv, MAGIC *mg) |
93a17b20 | 643 | { |
97aff369 | 644 | dVAR; |
93a17b20 | 645 | register I32 paren; |
93a17b20 | 646 | register I32 i; |
2fdbfb4d AB |
647 | register const REGEXP * rx; |
648 | const char * const remaining = mg->mg_ptr + 1; | |
93a17b20 | 649 | |
7918f24d NC |
650 | PERL_ARGS_ASSERT_MAGIC_LEN; |
651 | ||
93a17b20 | 652 | switch (*mg->mg_ptr) { |
2fdbfb4d AB |
653 | case '\020': |
654 | if (*remaining == '\0') { /* ^P */ | |
655 | break; | |
656 | } else if (strEQ(remaining, "REMATCH")) { /* $^PREMATCH */ | |
657 | goto do_prematch; | |
658 | } else if (strEQ(remaining, "OSTMATCH")) { /* $^POSTMATCH */ | |
659 | goto do_postmatch; | |
660 | } | |
661 | break; | |
662 | case '\015': /* $^MATCH */ | |
663 | if (strEQ(remaining, "ATCH")) { | |
664 | goto do_match; | |
665 | } else { | |
666 | break; | |
667 | } | |
668 | case '`': | |
669 | do_prematch: | |
f1b875a0 | 670 | paren = RX_BUFF_IDX_PREMATCH; |
2fdbfb4d AB |
671 | goto maybegetparen; |
672 | case '\'': | |
673 | do_postmatch: | |
f1b875a0 | 674 | paren = RX_BUFF_IDX_POSTMATCH; |
2fdbfb4d AB |
675 | goto maybegetparen; |
676 | case '&': | |
677 | do_match: | |
f1b875a0 | 678 | paren = RX_BUFF_IDX_FULLMATCH; |
2fdbfb4d | 679 | goto maybegetparen; |
93a17b20 | 680 | case '1': case '2': case '3': case '4': |
2fdbfb4d AB |
681 | case '5': case '6': case '7': case '8': case '9': |
682 | paren = atoi(mg->mg_ptr); | |
683 | maybegetparen: | |
aaa362c4 | 684 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
2fdbfb4d AB |
685 | getparen: |
686 | i = CALLREG_NUMBUF_LENGTH((REGEXP * const)rx, sv, paren); | |
cf93c79d | 687 | |
ffc61ed2 | 688 | if (i < 0) |
0844c848 | 689 | Perl_croak(aTHX_ "panic: magic_len: %"IVdf, (IV)i); |
ffc61ed2 | 690 | return i; |
2fdbfb4d | 691 | } else { |
235bddc8 | 692 | if (ckWARN(WARN_UNINITIALIZED)) |
29489e7c | 693 | report_uninit(sv); |
2fdbfb4d | 694 | return 0; |
93a17b20 | 695 | } |
93a17b20 | 696 | case '+': |
aaa362c4 | 697 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
07bc277f | 698 | paren = RX_LASTPAREN(rx); |
13f57bf8 CS |
699 | if (paren) |
700 | goto getparen; | |
93a17b20 | 701 | } |
748a9306 | 702 | return 0; |
a01268b5 JH |
703 | case '\016': /* ^N */ |
704 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { | |
07bc277f | 705 | paren = RX_LASTCLOSEPAREN(rx); |
a01268b5 JH |
706 | if (paren) |
707 | goto getparen; | |
708 | } | |
709 | return 0; | |
93a17b20 LW |
710 | } |
711 | magic_get(sv,mg); | |
2d8e6c8d | 712 | if (!SvPOK(sv) && SvNIOK(sv)) { |
8b6b16e7 | 713 | sv_2pv(sv, 0); |
2d8e6c8d | 714 | } |
93a17b20 LW |
715 | if (SvPOK(sv)) |
716 | return SvCUR(sv); | |
717 | return 0; | |
718 | } | |
719 | ||
ad3296c6 | 720 | #define SvRTRIM(sv) STMT_START { \ |
eae92ea0 GA |
721 | if (SvPOK(sv)) { \ |
722 | STRLEN len = SvCUR(sv); \ | |
723 | char * const p = SvPVX(sv); \ | |
8e6b4db6 PC |
724 | while (len > 0 && isSPACE(p[len-1])) \ |
725 | --len; \ | |
726 | SvCUR_set(sv, len); \ | |
727 | p[len] = '\0'; \ | |
728 | } \ | |
ad3296c6 SH |
729 | } STMT_END |
730 | ||
8b850bd5 NC |
731 | void |
732 | Perl_emulate_cop_io(pTHX_ const COP *const c, SV *const sv) | |
733 | { | |
7918f24d NC |
734 | PERL_ARGS_ASSERT_EMULATE_COP_IO; |
735 | ||
8b850bd5 NC |
736 | if (!(CopHINTS_get(c) & (HINT_LEXICAL_IO_IN|HINT_LEXICAL_IO_OUT))) |
737 | sv_setsv(sv, &PL_sv_undef); | |
738 | else { | |
739 | sv_setpvs(sv, ""); | |
740 | SvUTF8_off(sv); | |
741 | if ((CopHINTS_get(c) & HINT_LEXICAL_IO_IN)) { | |
742 | SV *const value = Perl_refcounted_he_fetch(aTHX_ | |
743 | c->cop_hints_hash, | |
744 | 0, "open<", 5, 0, 0); | |
745 | assert(value); | |
746 | sv_catsv(sv, value); | |
747 | } | |
748 | sv_catpvs(sv, "\0"); | |
749 | if ((CopHINTS_get(c) & HINT_LEXICAL_IO_OUT)) { | |
750 | SV *const value = Perl_refcounted_he_fetch(aTHX_ | |
751 | c->cop_hints_hash, | |
752 | 0, "open>", 5, 0, 0); | |
753 | assert(value); | |
754 | sv_catsv(sv, value); | |
755 | } | |
756 | } | |
757 | } | |
758 | ||
79072805 | 759 | int |
864dbfa3 | 760 | Perl_magic_get(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 761 | { |
27da23d5 | 762 | dVAR; |
79072805 | 763 | register I32 paren; |
35272f84 | 764 | register char *s = NULL; |
d9f97599 | 765 | register REGEXP *rx; |
823a54a3 AL |
766 | const char * const remaining = mg->mg_ptr + 1; |
767 | const char nextchar = *remaining; | |
79072805 | 768 | |
7918f24d NC |
769 | PERL_ARGS_ASSERT_MAGIC_GET; |
770 | ||
79072805 | 771 | switch (*mg->mg_ptr) { |
748a9306 | 772 | case '\001': /* ^A */ |
3280af22 | 773 | sv_setsv(sv, PL_bodytarget); |
748a9306 | 774 | break; |
e5218da5 | 775 | case '\003': /* ^C, ^CHILD_ERROR_NATIVE */ |
823a54a3 | 776 | if (nextchar == '\0') { |
e5218da5 GA |
777 | sv_setiv(sv, (IV)PL_minus_c); |
778 | } | |
823a54a3 | 779 | else if (strEQ(remaining, "HILD_ERROR_NATIVE")) { |
e5218da5 GA |
780 | sv_setiv(sv, (IV)STATUS_NATIVE); |
781 | } | |
49460fe6 NIS |
782 | break; |
783 | ||
79072805 | 784 | case '\004': /* ^D */ |
aea4f609 | 785 | sv_setiv(sv, (IV)(PL_debug & DEBUG_MASK)); |
79072805 | 786 | break; |
28f23441 | 787 | case '\005': /* ^E */ |
823a54a3 | 788 | if (nextchar == '\0') { |
e37778c2 | 789 | #if defined(VMS) |
0a378802 JH |
790 | { |
791 | # include <descrip.h> | |
792 | # include <starlet.h> | |
793 | char msg[255]; | |
794 | $DESCRIPTOR(msgdsc,msg); | |
795 | sv_setnv(sv,(NV) vaxc$errno); | |
796 | if (sys$getmsg(vaxc$errno,&msgdsc.dsc$w_length,&msgdsc,0,0) & 1) | |
797 | sv_setpvn(sv,msgdsc.dsc$a_pointer,msgdsc.dsc$w_length); | |
798 | else | |
76f68e9b | 799 | sv_setpvs(sv,""); |
0a378802 | 800 | } |
4b645107 | 801 | #elif defined(OS2) |
0a378802 JH |
802 | if (!(_emx_env & 0x200)) { /* Under DOS */ |
803 | sv_setnv(sv, (NV)errno); | |
804 | sv_setpv(sv, errno ? Strerror(errno) : ""); | |
805 | } else { | |
806 | if (errno != errno_isOS2) { | |
823a54a3 | 807 | const int tmp = _syserrno(); |
0a378802 JH |
808 | if (tmp) /* 2nd call to _syserrno() makes it 0 */ |
809 | Perl_rc = tmp; | |
810 | } | |
811 | sv_setnv(sv, (NV)Perl_rc); | |
812 | sv_setpv(sv, os2error(Perl_rc)); | |
813 | } | |
4b645107 | 814 | #elif defined(WIN32) |
0a378802 | 815 | { |
d4c19fe8 | 816 | const DWORD dwErr = GetLastError(); |
0a378802 | 817 | sv_setnv(sv, (NV)dwErr); |
823a54a3 | 818 | if (dwErr) { |
0a378802 JH |
819 | PerlProc_GetOSError(sv, dwErr); |
820 | } | |
821 | else | |
76f68e9b | 822 | sv_setpvs(sv, ""); |
0a378802 JH |
823 | SetLastError(dwErr); |
824 | } | |
22fae026 | 825 | #else |
f6c8f21d | 826 | { |
4ee39169 | 827 | dSAVE_ERRNO; |
f6c8f21d | 828 | sv_setnv(sv, (NV)errno); |
666ea192 | 829 | sv_setpv(sv, errno ? Strerror(errno) : ""); |
4ee39169 | 830 | RESTORE_ERRNO; |
f6c8f21d | 831 | } |
28f23441 | 832 | #endif |
ad3296c6 | 833 | SvRTRIM(sv); |
0a378802 JH |
834 | SvNOK_on(sv); /* what a wonderful hack! */ |
835 | } | |
823a54a3 | 836 | else if (strEQ(remaining, "NCODING")) |
0a378802 JH |
837 | sv_setsv(sv, PL_encoding); |
838 | break; | |
79072805 | 839 | case '\006': /* ^F */ |
3280af22 | 840 | sv_setiv(sv, (IV)PL_maxsysfd); |
79072805 | 841 | break; |
a0d0e21e | 842 | case '\010': /* ^H */ |
3280af22 | 843 | sv_setiv(sv, (IV)PL_hints); |
a0d0e21e | 844 | break; |
9d116dd7 | 845 | case '\011': /* ^I */ /* NOT \t in EBCDIC */ |
120f7abe | 846 | sv_setpv(sv, PL_inplace); /* Will undefine sv if PL_inplace is NULL */ |
79072805 | 847 | break; |
ac27b0f5 | 848 | case '\017': /* ^O & ^OPEN */ |
823a54a3 | 849 | if (nextchar == '\0') { |
ac27b0f5 | 850 | sv_setpv(sv, PL_osname); |
3511154c DM |
851 | SvTAINTED_off(sv); |
852 | } | |
823a54a3 | 853 | else if (strEQ(remaining, "PEN")) { |
8b850bd5 | 854 | Perl_emulate_cop_io(aTHX_ &PL_compiling, sv); |
ac27b0f5 | 855 | } |
28f23441 | 856 | break; |
cde0cee5 YO |
857 | case '\020': |
858 | if (nextchar == '\0') { /* ^P */ | |
859 | sv_setiv(sv, (IV)PL_perldb); | |
860 | } else if (strEQ(remaining, "REMATCH")) { /* $^PREMATCH */ | |
861 | goto do_prematch_fetch; | |
862 | } else if (strEQ(remaining, "OSTMATCH")) { /* $^POSTMATCH */ | |
863 | goto do_postmatch_fetch; | |
864 | } | |
79072805 | 865 | break; |
fb73857a | 866 | case '\023': /* ^S */ |
823a54a3 | 867 | if (nextchar == '\0') { |
bc177e6b | 868 | if (PL_parser && PL_parser->lex_state != LEX_NOTPARSING) |
0c34ef67 | 869 | SvOK_off(sv); |
3280af22 | 870 | else if (PL_in_eval) |
6dc8a9e4 | 871 | sv_setiv(sv, PL_in_eval & ~(EVAL_INREQUIRE)); |
a4268c0a AMS |
872 | else |
873 | sv_setiv(sv, 0); | |
d58bf5aa | 874 | } |
fb73857a | 875 | break; |
79072805 | 876 | case '\024': /* ^T */ |
823a54a3 | 877 | if (nextchar == '\0') { |
88e89b8a | 878 | #ifdef BIG_TIME |
7c36658b | 879 | sv_setnv(sv, PL_basetime); |
88e89b8a | 880 | #else |
7c36658b | 881 | sv_setiv(sv, (IV)PL_basetime); |
88e89b8a | 882 | #endif |
7c36658b | 883 | } |
823a54a3 | 884 | else if (strEQ(remaining, "AINT")) |
9aa05f58 RGS |
885 | sv_setiv(sv, PL_tainting |
886 | ? (PL_taint_warn || PL_unsafe ? -1 : 1) | |
887 | : 0); | |
7c36658b | 888 | break; |
e07ea26a | 889 | case '\025': /* $^UNICODE, $^UTF8LOCALE, $^UTF8CACHE */ |
823a54a3 | 890 | if (strEQ(remaining, "NICODE")) |
a05d7ebb | 891 | sv_setuv(sv, (UV) PL_unicode); |
823a54a3 | 892 | else if (strEQ(remaining, "TF8LOCALE")) |
7cebcbc0 | 893 | sv_setuv(sv, (UV) PL_utf8locale); |
e07ea26a NC |
894 | else if (strEQ(remaining, "TF8CACHE")) |
895 | sv_setiv(sv, (IV) PL_utf8cache); | |
fde18df1 JH |
896 | break; |
897 | case '\027': /* ^W & $^WARNING_BITS */ | |
823a54a3 | 898 | if (nextchar == '\0') |
4438c4b7 | 899 | sv_setiv(sv, (IV)((PL_dowarn & G_WARN_ON) ? TRUE : FALSE)); |
823a54a3 | 900 | else if (strEQ(remaining, "ARNING_BITS")) { |
013b78e8 | 901 | if (PL_compiling.cop_warnings == pWARN_NONE) { |
4438c4b7 | 902 | sv_setpvn(sv, WARN_NONEstring, WARNsize) ; |
013b78e8 RGS |
903 | } |
904 | else if (PL_compiling.cop_warnings == pWARN_STD) { | |
666ea192 JH |
905 | sv_setpvn( |
906 | sv, | |
907 | (PL_dowarn & G_WARN_ON) ? WARN_ALLstring : WARN_NONEstring, | |
908 | WARNsize | |
909 | ); | |
013b78e8 | 910 | } |
d3a7d8c7 | 911 | else if (PL_compiling.cop_warnings == pWARN_ALL) { |
75b6c4ca RGS |
912 | /* Get the bit mask for $warnings::Bits{all}, because |
913 | * it could have been extended by warnings::register */ | |
6673a63c | 914 | HV * const bits=get_hv("warnings::Bits", 0); |
f5a63d97 AL |
915 | if (bits) { |
916 | SV ** const bits_all = hv_fetchs(bits, "all", FALSE); | |
917 | if (bits_all) | |
918 | sv_setsv(sv, *bits_all); | |
75b6c4ca RGS |
919 | } |
920 | else { | |
921 | sv_setpvn(sv, WARN_ALLstring, WARNsize) ; | |
922 | } | |
ac27b0f5 | 923 | } |
4438c4b7 | 924 | else { |
72dc9ed5 NC |
925 | sv_setpvn(sv, (char *) (PL_compiling.cop_warnings + 1), |
926 | *PL_compiling.cop_warnings); | |
ac27b0f5 | 927 | } |
d3a7d8c7 | 928 | SvPOK_only(sv); |
4438c4b7 | 929 | } |
79072805 | 930 | break; |
cde0cee5 YO |
931 | case '\015': /* $^MATCH */ |
932 | if (strEQ(remaining, "ATCH")) { | |
79072805 LW |
933 | case '1': case '2': case '3': case '4': |
934 | case '5': case '6': case '7': case '8': case '9': case '&': | |
cde0cee5 YO |
935 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
936 | /* | |
159b6efe | 937 | * Pre-threads, this was paren = atoi(GvENAME((const GV *)mg->mg_obj)); |
cde0cee5 YO |
938 | * XXX Does the new way break anything? |
939 | */ | |
940 | paren = atoi(mg->mg_ptr); /* $& is in [0] */ | |
2fdbfb4d | 941 | CALLREG_NUMBUF_FETCH(rx,paren,sv); |
cde0cee5 YO |
942 | break; |
943 | } | |
944 | sv_setsv(sv,&PL_sv_undef); | |
79072805 LW |
945 | } |
946 | break; | |
947 | case '+': | |
aaa362c4 | 948 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
07bc277f NC |
949 | if (RX_LASTPAREN(rx)) { |
950 | CALLREG_NUMBUF_FETCH(rx,RX_LASTPAREN(rx),sv); | |
44a2ac75 YO |
951 | break; |
952 | } | |
79072805 | 953 | } |
3280af22 | 954 | sv_setsv(sv,&PL_sv_undef); |
79072805 | 955 | break; |
a01268b5 JH |
956 | case '\016': /* ^N */ |
957 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { | |
07bc277f NC |
958 | if (RX_LASTCLOSEPAREN(rx)) { |
959 | CALLREG_NUMBUF_FETCH(rx,RX_LASTCLOSEPAREN(rx),sv); | |
44a2ac75 YO |
960 | break; |
961 | } | |
962 | ||
a01268b5 JH |
963 | } |
964 | sv_setsv(sv,&PL_sv_undef); | |
965 | break; | |
79072805 | 966 | case '`': |
cde0cee5 | 967 | do_prematch_fetch: |
aaa362c4 | 968 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
2fdbfb4d | 969 | CALLREG_NUMBUF_FETCH(rx,-2,sv); |
93b32b6d | 970 | break; |
79072805 | 971 | } |
3280af22 | 972 | sv_setsv(sv,&PL_sv_undef); |
79072805 LW |
973 | break; |
974 | case '\'': | |
cde0cee5 | 975 | do_postmatch_fetch: |
aaa362c4 | 976 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
2fdbfb4d | 977 | CALLREG_NUMBUF_FETCH(rx,-1,sv); |
93b32b6d | 978 | break; |
79072805 | 979 | } |
3280af22 | 980 | sv_setsv(sv,&PL_sv_undef); |
79072805 LW |
981 | break; |
982 | case '.': | |
3280af22 | 983 | if (GvIO(PL_last_in_gv)) { |
357c8808 | 984 | sv_setiv(sv, (IV)IoLINES(GvIOp(PL_last_in_gv))); |
79072805 | 985 | } |
79072805 LW |
986 | break; |
987 | case '?': | |
809a5acc | 988 | { |
809a5acc | 989 | sv_setiv(sv, (IV)STATUS_CURRENT); |
ff0cee69 | 990 | #ifdef COMPLEX_STATUS |
41cb7b2b | 991 | SvUPGRADE(sv, SVt_PVLV); |
6b88bc9c GS |
992 | LvTARGOFF(sv) = PL_statusvalue; |
993 | LvTARGLEN(sv) = PL_statusvalue_vms; | |
ff0cee69 | 994 | #endif |
809a5acc | 995 | } |
79072805 LW |
996 | break; |
997 | case '^': | |
099be4f1 DM |
998 | if (!isGV_with_GP(PL_defoutgv)) |
999 | s = ""; | |
1000 | else if (GvIOp(PL_defoutgv)) | |
1001 | s = IoTOP_NAME(GvIOp(PL_defoutgv)); | |
79072805 LW |
1002 | if (s) |
1003 | sv_setpv(sv,s); | |
1004 | else { | |
3280af22 | 1005 | sv_setpv(sv,GvENAME(PL_defoutgv)); |
cb421d5e | 1006 | sv_catpvs(sv,"_TOP"); |
79072805 LW |
1007 | } |
1008 | break; | |
1009 | case '~': | |
099be4f1 DM |
1010 | if (!isGV_with_GP(PL_defoutgv)) |
1011 | s = ""; | |
1012 | else if (GvIOp(PL_defoutgv)) | |
0daa599b | 1013 | s = IoFMT_NAME(GvIOp(PL_defoutgv)); |
79072805 | 1014 | if (!s) |
3280af22 | 1015 | s = GvENAME(PL_defoutgv); |
79072805 LW |
1016 | sv_setpv(sv,s); |
1017 | break; | |
79072805 | 1018 | case '=': |
099be4f1 | 1019 | if (GvIO(PL_defoutgv)) |
0daa599b | 1020 | sv_setiv(sv, (IV)IoPAGE_LEN(GvIOp(PL_defoutgv))); |
79072805 LW |
1021 | break; |
1022 | case '-': | |
099be4f1 | 1023 | if (GvIO(PL_defoutgv)) |
0daa599b | 1024 | sv_setiv(sv, (IV)IoLINES_LEFT(GvIOp(PL_defoutgv))); |
79072805 LW |
1025 | break; |
1026 | case '%': | |
099be4f1 | 1027 | if (GvIO(PL_defoutgv)) |
0daa599b | 1028 | sv_setiv(sv, (IV)IoPAGE(GvIOp(PL_defoutgv))); |
79072805 | 1029 | break; |
79072805 LW |
1030 | case ':': |
1031 | break; | |
1032 | case '/': | |
1033 | break; | |
1034 | case '[': | |
11206fdd | 1035 | sv_setiv(sv, (IV)CopARYBASE_get(PL_curcop)); |
79072805 LW |
1036 | break; |
1037 | case '|': | |
099be4f1 | 1038 | if (GvIO(PL_defoutgv)) |
0daa599b | 1039 | sv_setiv(sv, (IV)(IoFLAGS(GvIOp(PL_defoutgv)) & IOf_FLUSH) != 0 ); |
79072805 | 1040 | break; |
79072805 | 1041 | case '\\': |
b2ce0fda | 1042 | if (PL_ors_sv) |
f28098ff | 1043 | sv_copypv(sv, PL_ors_sv); |
79072805 | 1044 | break; |
79072805 | 1045 | case '!': |
666d8aa2 CB |
1046 | { |
1047 | dSAVE_ERRNO; | |
a5f75d66 | 1048 | #ifdef VMS |
65202027 | 1049 | sv_setnv(sv, (NV)((errno == EVMSERR) ? vaxc$errno : errno)); |
a5f75d66 | 1050 | #else |
65202027 | 1051 | sv_setnv(sv, (NV)errno); |
666d8aa2 | 1052 | #endif |
88e89b8a | 1053 | #ifdef OS2 |
ed344e4f IZ |
1054 | if (errno == errno_isOS2 || errno == errno_isOS2_set) |
1055 | sv_setpv(sv, os2error(Perl_rc)); | |
88e89b8a | 1056 | else |
a5f75d66 | 1057 | #endif |
666ea192 | 1058 | sv_setpv(sv, errno ? Strerror(errno) : ""); |
be1cf43c NC |
1059 | if (SvPOKp(sv)) |
1060 | SvPOK_on(sv); /* may have got removed during taint processing */ | |
4ee39169 | 1061 | RESTORE_ERRNO; |
88e89b8a | 1062 | } |
666d8aa2 | 1063 | |
ad3296c6 | 1064 | SvRTRIM(sv); |
946ec16e | 1065 | SvNOK_on(sv); /* what a wonderful hack! */ |
79072805 LW |
1066 | break; |
1067 | case '<': | |
3280af22 | 1068 | sv_setiv(sv, (IV)PL_uid); |
79072805 LW |
1069 | break; |
1070 | case '>': | |
3280af22 | 1071 | sv_setiv(sv, (IV)PL_euid); |
79072805 LW |
1072 | break; |
1073 | case '(': | |
3280af22 | 1074 | sv_setiv(sv, (IV)PL_gid); |
79072805 LW |
1075 | goto add_groups; |
1076 | case ')': | |
3280af22 | 1077 | sv_setiv(sv, (IV)PL_egid); |
79072805 | 1078 | add_groups: |
79072805 | 1079 | #ifdef HAS_GETGROUPS |
79072805 | 1080 | { |
57d7c65e | 1081 | Groups_t *gary = NULL; |
fb45abb2 | 1082 | I32 i, num_groups = getgroups(0, gary); |
57d7c65e JC |
1083 | Newx(gary, num_groups, Groups_t); |
1084 | num_groups = getgroups(num_groups, gary); | |
fb45abb2 GA |
1085 | for (i = 0; i < num_groups; i++) |
1086 | Perl_sv_catpvf(aTHX_ sv, " %"IVdf, (IV)gary[i]); | |
57d7c65e | 1087 | Safefree(gary); |
79072805 | 1088 | } |
155aba94 | 1089 | (void)SvIOK_on(sv); /* what a wonderful hack! */ |
cd70abae | 1090 | #endif |
79072805 | 1091 | break; |
79072805 LW |
1092 | case '0': |
1093 | break; | |
1094 | } | |
a0d0e21e | 1095 | return 0; |
79072805 LW |
1096 | } |
1097 | ||
1098 | int | |
864dbfa3 | 1099 | Perl_magic_getuvar(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1100 | { |
8772537c | 1101 | struct ufuncs * const uf = (struct ufuncs *)mg->mg_ptr; |
79072805 | 1102 | |
7918f24d NC |
1103 | PERL_ARGS_ASSERT_MAGIC_GETUVAR; |
1104 | ||
79072805 | 1105 | if (uf && uf->uf_val) |
24f81a43 | 1106 | (*uf->uf_val)(aTHX_ uf->uf_index, sv); |
79072805 LW |
1107 | return 0; |
1108 | } | |
1109 | ||
1110 | int | |
864dbfa3 | 1111 | Perl_magic_setenv(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1112 | { |
27da23d5 | 1113 | dVAR; |
9ae3433d | 1114 | STRLEN len = 0, klen; |
666ea192 | 1115 | const char *s = SvOK(sv) ? SvPV_const(sv,len) : ""; |
fabdb6c0 | 1116 | const char * const ptr = MgPV_const(mg,klen); |
88e89b8a | 1117 | my_setenv(ptr, s); |
1e422769 | 1118 | |
7918f24d NC |
1119 | PERL_ARGS_ASSERT_MAGIC_SETENV; |
1120 | ||
a0d0e21e LW |
1121 | #ifdef DYNAMIC_ENV_FETCH |
1122 | /* We just undefd an environment var. Is a replacement */ | |
1123 | /* waiting in the wings? */ | |
1124 | if (!len) { | |
fabdb6c0 AL |
1125 | SV ** const valp = hv_fetch(GvHVn(PL_envgv), ptr, klen, FALSE); |
1126 | if (valp) | |
4ab59fcc | 1127 | s = SvOK(*valp) ? SvPV_const(*valp, len) : ""; |
a0d0e21e LW |
1128 | } |
1129 | #endif | |
1e422769 | 1130 | |
39e571d4 | 1131 | #if !defined(OS2) && !defined(AMIGAOS) && !defined(WIN32) && !defined(MSDOS) |
79072805 LW |
1132 | /* And you'll never guess what the dog had */ |
1133 | /* in its mouth... */ | |
3280af22 | 1134 | if (PL_tainting) { |
1e422769 | 1135 | MgTAINTEDDIR_off(mg); |
1136 | #ifdef VMS | |
5aabfad6 | 1137 | if (s && klen == 8 && strEQ(ptr, "DCL$PATH")) { |
b8ffc8df | 1138 | char pathbuf[256], eltbuf[256], *cp, *elt; |
c623ac67 | 1139 | Stat_t sbuf; |
1e422769 | 1140 | int i = 0, j = 0; |
1141 | ||
6fca0082 | 1142 | my_strlcpy(eltbuf, s, sizeof(eltbuf)); |
b8ffc8df | 1143 | elt = eltbuf; |
1e422769 | 1144 | do { /* DCL$PATH may be a search list */ |
1145 | while (1) { /* as may dev portion of any element */ | |
1146 | if ( ((cp = strchr(elt,'[')) || (cp = strchr(elt,'<'))) ) { | |
1147 | if ( *(cp+1) == '.' || *(cp+1) == '-' || | |
1148 | cando_by_name(S_IWUSR,0,elt) ) { | |
1149 | MgTAINTEDDIR_on(mg); | |
1150 | return 0; | |
1151 | } | |
1152 | } | |
bd61b366 | 1153 | if ((cp = strchr(elt, ':')) != NULL) |
1e422769 | 1154 | *cp = '\0'; |
1155 | if (my_trnlnm(elt, eltbuf, j++)) | |
1156 | elt = eltbuf; | |
1157 | else | |
1158 | break; | |
1159 | } | |
1160 | j = 0; | |
1161 | } while (my_trnlnm(s, pathbuf, i++) && (elt = pathbuf)); | |
1162 | } | |
1163 | #endif /* VMS */ | |
5aabfad6 | 1164 | if (s && klen == 4 && strEQ(ptr,"PATH")) { |
8772537c | 1165 | const char * const strend = s + len; |
463ee0b2 LW |
1166 | |
1167 | while (s < strend) { | |
96827780 | 1168 | char tmpbuf[256]; |
c623ac67 | 1169 | Stat_t st; |
5f74f29c | 1170 | I32 i; |
f5a63d97 AL |
1171 | #ifdef VMS /* Hmm. How do we get $Config{path_sep} from C? */ |
1172 | const char path_sep = '|'; | |
1173 | #else | |
1174 | const char path_sep = ':'; | |
1175 | #endif | |
96827780 | 1176 | s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, |
427eaa01 | 1177 | s, strend, path_sep, &i); |
463ee0b2 | 1178 | s++; |
bb7a0f54 | 1179 | if (i >= (I32)sizeof tmpbuf /* too long -- assume the worst */ |
326b5008 CB |
1180 | #ifdef VMS |
1181 | || !strchr(tmpbuf, ':') /* no colon thus no device name -- assume relative path */ | |
1182 | #else | |
1183 | || *tmpbuf != '/' /* no starting slash -- assume relative path */ | |
1184 | #endif | |
c6ed36e1 | 1185 | || (PerlLIO_stat(tmpbuf, &st) == 0 && (st.st_mode & 2)) ) { |
8990e307 | 1186 | MgTAINTEDDIR_on(mg); |
1e422769 | 1187 | return 0; |
1188 | } | |
463ee0b2 | 1189 | } |
79072805 LW |
1190 | } |
1191 | } | |
39e571d4 | 1192 | #endif /* neither OS2 nor AMIGAOS nor WIN32 nor MSDOS */ |
1e422769 | 1193 | |
79072805 LW |
1194 | return 0; |
1195 | } | |
1196 | ||
1197 | int | |
864dbfa3 | 1198 | Perl_magic_clearenv(pTHX_ SV *sv, MAGIC *mg) |
85e6fe83 | 1199 | { |
7918f24d | 1200 | PERL_ARGS_ASSERT_MAGIC_CLEARENV; |
8772537c | 1201 | PERL_UNUSED_ARG(sv); |
bd61b366 | 1202 | my_setenv(MgPV_nolen_const(mg),NULL); |
85e6fe83 LW |
1203 | return 0; |
1204 | } | |
1205 | ||
88e89b8a | 1206 | int |
864dbfa3 | 1207 | Perl_magic_set_all_env(pTHX_ SV *sv, MAGIC *mg) |
fb73857a | 1208 | { |
97aff369 | 1209 | dVAR; |
7918f24d | 1210 | PERL_ARGS_ASSERT_MAGIC_SET_ALL_ENV; |
65e66c80 | 1211 | PERL_UNUSED_ARG(mg); |
b0269e46 | 1212 | #if defined(VMS) |
cea2e8a9 | 1213 | Perl_die(aTHX_ "Can't make list assignment to %%ENV on this system"); |
fb73857a | 1214 | #else |
3280af22 | 1215 | if (PL_localizing) { |
fb73857a | 1216 | HE* entry; |
b0269e46 | 1217 | my_clearenv(); |
85fbaab2 NC |
1218 | hv_iterinit(MUTABLE_HV(sv)); |
1219 | while ((entry = hv_iternext(MUTABLE_HV(sv)))) { | |
fb73857a | 1220 | I32 keylen; |
1221 | my_setenv(hv_iterkey(entry, &keylen), | |
85fbaab2 | 1222 | SvPV_nolen_const(hv_iterval(MUTABLE_HV(sv), entry))); |
fb73857a | 1223 | } |
1224 | } | |
1225 | #endif | |
1226 | return 0; | |
1227 | } | |
1228 | ||
1229 | int | |
864dbfa3 | 1230 | Perl_magic_clear_all_env(pTHX_ SV *sv, MAGIC *mg) |
66b1d557 | 1231 | { |
27da23d5 | 1232 | dVAR; |
7918f24d | 1233 | PERL_ARGS_ASSERT_MAGIC_CLEAR_ALL_ENV; |
8772537c AL |
1234 | PERL_UNUSED_ARG(sv); |
1235 | PERL_UNUSED_ARG(mg); | |
b0269e46 AB |
1236 | #if defined(VMS) |
1237 | Perl_die(aTHX_ "Can't make list assignment to %%ENV on this system"); | |
1238 | #else | |
1239 | my_clearenv(); | |
1240 | #endif | |
3e3baf6d | 1241 | return 0; |
66b1d557 HM |
1242 | } |
1243 | ||
64ca3a65 | 1244 | #ifndef PERL_MICRO |
2d4fcd5e AJ |
1245 | #ifdef HAS_SIGPROCMASK |
1246 | static void | |
1247 | restore_sigmask(pTHX_ SV *save_sv) | |
1248 | { | |
0bd48802 | 1249 | const sigset_t * const ossetp = (const sigset_t *) SvPV_nolen_const( save_sv ); |
f5a63d97 | 1250 | (void)sigprocmask(SIG_SETMASK, ossetp, NULL); |
2d4fcd5e AJ |
1251 | } |
1252 | #endif | |
66b1d557 | 1253 | int |
864dbfa3 | 1254 | Perl_magic_getsig(pTHX_ SV *sv, MAGIC *mg) |
88e89b8a | 1255 | { |
97aff369 | 1256 | dVAR; |
88e89b8a | 1257 | /* Are we fetching a signal entry? */ |
708854f2 | 1258 | int i = (I16)mg->mg_private; |
7918f24d NC |
1259 | |
1260 | PERL_ARGS_ASSERT_MAGIC_GETSIG; | |
1261 | ||
708854f2 NC |
1262 | if (!i) { |
1263 | mg->mg_private = i = whichsig(MgPV_nolen_const(mg)); | |
1264 | } | |
1265 | ||
e02bfb16 | 1266 | if (i > 0) { |
22c35a8c GS |
1267 | if(PL_psig_ptr[i]) |
1268 | sv_setsv(sv,PL_psig_ptr[i]); | |
88e89b8a | 1269 | else { |
46da273f | 1270 | Sighandler_t sigstate = rsignal_state(i); |
23ada85b | 1271 | #ifdef FAKE_PERSISTENT_SIGNAL_HANDLERS |
46da273f AL |
1272 | if (PL_sig_handlers_initted && PL_sig_ignoring[i]) |
1273 | sigstate = SIG_IGN; | |
2e34cc90 CL |
1274 | #endif |
1275 | #ifdef FAKE_DEFAULT_SIGNAL_HANDLERS | |
46da273f AL |
1276 | if (PL_sig_handlers_initted && PL_sig_defaulting[i]) |
1277 | sigstate = SIG_DFL; | |
85b332e2 | 1278 | #endif |
88e89b8a | 1279 | /* cache state so we don't fetch it again */ |
8aad04aa | 1280 | if(sigstate == (Sighandler_t) SIG_IGN) |
6502358f | 1281 | sv_setpvs(sv,"IGNORE"); |
88e89b8a | 1282 | else |
3280af22 | 1283 | sv_setsv(sv,&PL_sv_undef); |
46da273f | 1284 | PL_psig_ptr[i] = SvREFCNT_inc_simple_NN(sv); |
88e89b8a | 1285 | SvTEMP_off(sv); |
1286 | } | |
1287 | } | |
1288 | return 0; | |
1289 | } | |
1290 | int | |
864dbfa3 | 1291 | Perl_magic_clearsig(pTHX_ SV *sv, MAGIC *mg) |
88e89b8a | 1292 | { |
7918f24d | 1293 | PERL_ARGS_ASSERT_MAGIC_CLEARSIG; |
8772537c | 1294 | PERL_UNUSED_ARG(sv); |
179c85a2 | 1295 | |
38a124f0 | 1296 | magic_setsig(NULL, mg); |
179c85a2 | 1297 | return sv_unmagic(sv, mg->mg_type); |
88e89b8a | 1298 | } |
3d37d572 | 1299 | |
0a8e0eff | 1300 | Signal_t |
8aad04aa | 1301 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
b6455c53 | 1302 | Perl_csighandler(int sig, siginfo_t *sip PERL_UNUSED_DECL, void *uap PERL_UNUSED_DECL) |
8aad04aa | 1303 | #else |
0a8e0eff | 1304 | Perl_csighandler(int sig) |
8aad04aa | 1305 | #endif |
0a8e0eff | 1306 | { |
1018e26f NIS |
1307 | #ifdef PERL_GET_SIG_CONTEXT |
1308 | dTHXa(PERL_GET_SIG_CONTEXT); | |
1309 | #else | |
85b332e2 CL |
1310 | dTHX; |
1311 | #endif | |
23ada85b | 1312 | #ifdef FAKE_PERSISTENT_SIGNAL_HANDLERS |
5c1546dc | 1313 | (void) rsignal(sig, PL_csighandlerp); |
27da23d5 | 1314 | if (PL_sig_ignoring[sig]) return; |
85b332e2 | 1315 | #endif |
2e34cc90 | 1316 | #ifdef FAKE_DEFAULT_SIGNAL_HANDLERS |
27da23d5 | 1317 | if (PL_sig_defaulting[sig]) |
2e34cc90 CL |
1318 | #ifdef KILL_BY_SIGPRC |
1319 | exit((Perl_sig_to_vmscondition(sig)&STS$M_COND_ID)|STS$K_SEVERE|STS$M_INHIB_MSG); | |
1320 | #else | |
1321 | exit(1); | |
1322 | #endif | |
1323 | #endif | |
406878dd | 1324 | if ( |
853d2c32 RGS |
1325 | #ifdef SIGILL |
1326 | sig == SIGILL || | |
1327 | #endif | |
1328 | #ifdef SIGBUS | |
1329 | sig == SIGBUS || | |
1330 | #endif | |
1331 | #ifdef SIGSEGV | |
1332 | sig == SIGSEGV || | |
1333 | #endif | |
1334 | (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)) | |
4ffa73a3 | 1335 | /* Call the perl level handler now-- |
31c91b43 | 1336 | * with risk we may be in malloc() or being destructed etc. */ |
6e324d09 | 1337 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
80626cf1 | 1338 | (*PL_sighandlerp)(sig, NULL, NULL); |
6e324d09 CB |
1339 | #else |
1340 | (*PL_sighandlerp)(sig); | |
92807b6d | 1341 | #endif |
406878dd | 1342 | else { |
31c91b43 | 1343 | if (!PL_psig_pend) return; |
406878dd GA |
1344 | /* Set a flag to say this signal is pending, that is awaiting delivery after |
1345 | * the current Perl opcode completes */ | |
1346 | PL_psig_pend[sig]++; | |
1347 | ||
1348 | #ifndef SIG_PENDING_DIE_COUNT | |
1349 | # define SIG_PENDING_DIE_COUNT 120 | |
1350 | #endif | |
fe13d51d | 1351 | /* Add one to say _a_ signal is pending */ |
406878dd GA |
1352 | if (++PL_sig_pending >= SIG_PENDING_DIE_COUNT) |
1353 | Perl_croak(aTHX_ "Maximal count of pending signals (%lu) exceeded", | |
1354 | (unsigned long)SIG_PENDING_DIE_COUNT); | |
1355 | } | |
0a8e0eff NIS |
1356 | } |
1357 | ||
2e34cc90 CL |
1358 | #if defined(FAKE_PERSISTENT_SIGNAL_HANDLERS) || defined(FAKE_DEFAULT_SIGNAL_HANDLERS) |
1359 | void | |
1360 | Perl_csighandler_init(void) | |
1361 | { | |
1362 | int sig; | |
27da23d5 | 1363 | if (PL_sig_handlers_initted) return; |
2e34cc90 CL |
1364 | |
1365 | for (sig = 1; sig < SIG_SIZE; sig++) { | |
1366 | #ifdef FAKE_DEFAULT_SIGNAL_HANDLERS | |
218fdd94 | 1367 | dTHX; |
27da23d5 | 1368 | PL_sig_defaulting[sig] = 1; |
5c1546dc | 1369 | (void) rsignal(sig, PL_csighandlerp); |
2e34cc90 CL |
1370 | #endif |
1371 | #ifdef FAKE_PERSISTENT_SIGNAL_HANDLERS | |
27da23d5 | 1372 | PL_sig_ignoring[sig] = 0; |
2e34cc90 CL |
1373 | #endif |
1374 | } | |
27da23d5 | 1375 | PL_sig_handlers_initted = 1; |
2e34cc90 CL |
1376 | } |
1377 | #endif | |
1378 | ||
0a8e0eff NIS |
1379 | void |
1380 | Perl_despatch_signals(pTHX) | |
1381 | { | |
97aff369 | 1382 | dVAR; |
0a8e0eff NIS |
1383 | int sig; |
1384 | PL_sig_pending = 0; | |
1385 | for (sig = 1; sig < SIG_SIZE; sig++) { | |
1386 | if (PL_psig_pend[sig]) { | |
25da4428 JH |
1387 | PERL_BLOCKSIG_ADD(set, sig); |
1388 | PL_psig_pend[sig] = 0; | |
1389 | PERL_BLOCKSIG_BLOCK(set); | |
6e324d09 | 1390 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
80626cf1 | 1391 | (*PL_sighandlerp)(sig, NULL, NULL); |
6e324d09 CB |
1392 | #else |
1393 | (*PL_sighandlerp)(sig); | |
92807b6d | 1394 | #endif |
25da4428 | 1395 | PERL_BLOCKSIG_UNBLOCK(set); |
0a8e0eff NIS |
1396 | } |
1397 | } | |
1398 | } | |
1399 | ||
38a124f0 | 1400 | /* sv of NULL signifies that we're acting as magic_clearsig. */ |
85e6fe83 | 1401 | int |
864dbfa3 | 1402 | Perl_magic_setsig(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1403 | { |
27da23d5 | 1404 | dVAR; |
79072805 | 1405 | I32 i; |
cbbf8932 | 1406 | SV** svp = NULL; |
2d4fcd5e AJ |
1407 | /* Need to be careful with SvREFCNT_dec(), because that can have side |
1408 | * effects (due to closures). We must make sure that the new disposition | |
1409 | * is in place before it is called. | |
1410 | */ | |
cbbf8932 | 1411 | SV* to_dec = NULL; |
e72dc28c | 1412 | STRLEN len; |
2d4fcd5e AJ |
1413 | #ifdef HAS_SIGPROCMASK |
1414 | sigset_t set, save; | |
1415 | SV* save_sv; | |
1416 | #endif | |
d5263905 | 1417 | register const char *s = MgPV_const(mg,len); |
7918f24d NC |
1418 | |
1419 | PERL_ARGS_ASSERT_MAGIC_SETSIG; | |
1420 | ||
748a9306 LW |
1421 | if (*s == '_') { |
1422 | if (strEQ(s,"__DIE__")) | |
3280af22 | 1423 | svp = &PL_diehook; |
38a124f0 NC |
1424 | else if (strEQ(s,"__WARN__") |
1425 | && (sv ? 1 : PL_warnhook != PERL_WARNHOOK_FATAL)) { | |
1426 | /* Merge the existing behaviours, which are as follows: | |
1427 | magic_setsig, we always set svp to &PL_warnhook | |
1428 | (hence we always change the warnings handler) | |
1429 | For magic_clearsig, we don't change the warnings handler if it's | |
1430 | set to the &PL_warnhook. */ | |
3280af22 | 1431 | svp = &PL_warnhook; |
38a124f0 | 1432 | } else if (sv) |
cea2e8a9 | 1433 | Perl_croak(aTHX_ "No such hook: %s", s); |
748a9306 | 1434 | i = 0; |
38a124f0 | 1435 | if (svp && *svp) { |
9289f461 RGS |
1436 | if (*svp != PERL_WARNHOOK_FATAL) |
1437 | to_dec = *svp; | |
cbbf8932 | 1438 | *svp = NULL; |
4633a7c4 | 1439 | } |
748a9306 LW |
1440 | } |
1441 | else { | |
708854f2 NC |
1442 | i = (I16)mg->mg_private; |
1443 | if (!i) { | |
58a26b12 NC |
1444 | i = whichsig(s); /* ...no, a brick */ |
1445 | mg->mg_private = (U16)i; | |
708854f2 | 1446 | } |
86d86cad | 1447 | if (i <= 0) { |
a2a5de95 NC |
1448 | if (sv) |
1449 | Perl_ck_warner(aTHX_ packWARN(WARN_SIGNAL), "No such signal: SIG%s", s); | |
748a9306 LW |
1450 | return 0; |
1451 | } | |
2d4fcd5e AJ |
1452 | #ifdef HAS_SIGPROCMASK |
1453 | /* Avoid having the signal arrive at a bad time, if possible. */ | |
1454 | sigemptyset(&set); | |
1455 | sigaddset(&set,i); | |
1456 | sigprocmask(SIG_BLOCK, &set, &save); | |
1457 | ENTER; | |
9ff8e806 | 1458 | save_sv = newSVpvn((char *)(&save), sizeof(sigset_t)); |
2d4fcd5e AJ |
1459 | SAVEFREESV(save_sv); |
1460 | SAVEDESTRUCTOR_X(restore_sigmask, save_sv); | |
1461 | #endif | |
1462 | PERL_ASYNC_CHECK(); | |
2e34cc90 | 1463 | #if defined(FAKE_PERSISTENT_SIGNAL_HANDLERS) || defined(FAKE_DEFAULT_SIGNAL_HANDLERS) |
27da23d5 | 1464 | if (!PL_sig_handlers_initted) Perl_csighandler_init(); |
2e34cc90 | 1465 | #endif |
23ada85b | 1466 | #ifdef FAKE_PERSISTENT_SIGNAL_HANDLERS |
27da23d5 | 1467 | PL_sig_ignoring[i] = 0; |
85b332e2 | 1468 | #endif |
2e34cc90 | 1469 | #ifdef FAKE_DEFAULT_SIGNAL_HANDLERS |
27da23d5 | 1470 | PL_sig_defaulting[i] = 0; |
2e34cc90 | 1471 | #endif |
2d4fcd5e | 1472 | to_dec = PL_psig_ptr[i]; |
38a124f0 NC |
1473 | if (sv) { |
1474 | PL_psig_ptr[i] = SvREFCNT_inc_simple_NN(sv); | |
1475 | SvTEMP_off(sv); /* Make sure it doesn't go away on us */ | |
79fd3822 NC |
1476 | |
1477 | /* Signals don't change name during the program's execution, so once | |
1478 | they're cached in the appropriate slot of PL_psig_name, they can | |
1479 | stay there. | |
1480 | ||
1481 | Ideally we'd find some way of making SVs at (C) compile time, or | |
1482 | at least, doing most of the work. */ | |
1483 | if (!PL_psig_name[i]) { | |
1484 | PL_psig_name[i] = newSVpvn(s, len); | |
1485 | SvREADONLY_on(PL_psig_name[i]); | |
1486 | } | |
38a124f0 | 1487 | } else { |
79fd3822 | 1488 | SvREFCNT_dec(PL_psig_name[i]); |
38a124f0 NC |
1489 | PL_psig_name[i] = NULL; |
1490 | PL_psig_ptr[i] = NULL; | |
1491 | } | |
748a9306 | 1492 | } |
38a124f0 | 1493 | if (sv && (isGV_with_GP(sv) || SvROK(sv))) { |
2d4fcd5e | 1494 | if (i) { |
5c1546dc | 1495 | (void)rsignal(i, PL_csighandlerp); |
2d4fcd5e | 1496 | } |
748a9306 | 1497 | else |
b37c2d43 | 1498 | *svp = SvREFCNT_inc_simple_NN(sv); |
38a124f0 | 1499 | } else { |
9dfa190b NC |
1500 | if (sv && SvOK(sv)) { |
1501 | s = SvPV_force(sv, len); | |
1502 | } else { | |
1503 | sv = NULL; | |
1504 | } | |
1505 | if (sv && strEQ(s,"IGNORE")) { | |
1506 | if (i) { | |
23ada85b | 1507 | #ifdef FAKE_PERSISTENT_SIGNAL_HANDLERS |
9dfa190b NC |
1508 | PL_sig_ignoring[i] = 1; |
1509 | (void)rsignal(i, PL_csighandlerp); | |
85b332e2 | 1510 | #else |
9dfa190b | 1511 | (void)rsignal(i, (Sighandler_t) SIG_IGN); |
85b332e2 | 1512 | #endif |
9dfa190b | 1513 | } |
2d4fcd5e | 1514 | } |
9dfa190b NC |
1515 | else if (!sv || strEQ(s,"DEFAULT") || !len) { |
1516 | if (i) { | |
2e34cc90 | 1517 | #ifdef FAKE_DEFAULT_SIGNAL_HANDLERS |
9dfa190b NC |
1518 | PL_sig_defaulting[i] = 1; |
1519 | (void)rsignal(i, PL_csighandlerp); | |
2e34cc90 | 1520 | #else |
9dfa190b | 1521 | (void)rsignal(i, (Sighandler_t) SIG_DFL); |
2e34cc90 | 1522 | #endif |
9dfa190b NC |
1523 | } |
1524 | } | |
1525 | else { | |
1526 | /* | |
1527 | * We should warn if HINT_STRICT_REFS, but without | |
1528 | * access to a known hint bit in a known OP, we can't | |
1529 | * tell whether HINT_STRICT_REFS is in force or not. | |
1530 | */ | |
1531 | if (!strchr(s,':') && !strchr(s,'\'')) | |
1532 | Perl_sv_insert_flags(aTHX_ sv, 0, 0, STR_WITH_LEN("main::"), | |
1533 | SV_GMAGIC); | |
1534 | if (i) | |
1535 | (void)rsignal(i, PL_csighandlerp); | |
1536 | else | |
1537 | *svp = SvREFCNT_inc_simple_NN(sv); | |
136e0459 | 1538 | } |
748a9306 | 1539 | } |
9dfa190b | 1540 | |
2d4fcd5e AJ |
1541 | #ifdef HAS_SIGPROCMASK |
1542 | if(i) | |
1543 | LEAVE; | |
1544 | #endif | |
ef8d46e8 | 1545 | SvREFCNT_dec(to_dec); |
79072805 LW |
1546 | return 0; |
1547 | } | |
64ca3a65 | 1548 | #endif /* !PERL_MICRO */ |
79072805 LW |
1549 | |
1550 | int | |
864dbfa3 | 1551 | Perl_magic_setisa(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1552 | { |
97aff369 | 1553 | dVAR; |
7918f24d | 1554 | PERL_ARGS_ASSERT_MAGIC_SETISA; |
8772537c | 1555 | PERL_UNUSED_ARG(sv); |
e1a479c5 | 1556 | |
89c14e2e BB |
1557 | /* Skip _isaelem because _isa will handle it shortly */ |
1558 | if (PL_delaymagic & DM_ARRAY && mg->mg_type == PERL_MAGIC_isaelem) | |
1559 | return 0; | |
1560 | ||
0e446081 | 1561 | return magic_clearisa(NULL, mg); |
463ee0b2 LW |
1562 | } |
1563 | ||
0e446081 | 1564 | /* sv of NULL signifies that we're acting as magic_setisa. */ |
463ee0b2 | 1565 | int |
52b45067 RD |
1566 | Perl_magic_clearisa(pTHX_ SV *sv, MAGIC *mg) |
1567 | { | |
1568 | dVAR; | |
1569 | HV* stash; | |
1570 | ||
7918f24d NC |
1571 | PERL_ARGS_ASSERT_MAGIC_CLEARISA; |
1572 | ||
52b45067 RD |
1573 | /* Bail out if destruction is going on */ |
1574 | if(PL_dirty) return 0; | |
1575 | ||
0e446081 NC |
1576 | if (sv) |
1577 | av_clear(MUTABLE_AV(sv)); | |
52b45067 | 1578 | |
0e446081 NC |
1579 | /* XXX Once it's possible, we need to |
1580 | detect that our @ISA is aliased in | |
1581 | other stashes, and act on the stashes | |
1582 | of all of the aliases */ | |
1583 | ||
1584 | /* The first case occurs via setisa, | |
1585 | the second via setisa_elem, which | |
1586 | calls this same magic */ | |
52b45067 RD |
1587 | stash = GvSTASH( |
1588 | SvTYPE(mg->mg_obj) == SVt_PVGV | |
159b6efe NC |
1589 | ? (const GV *)mg->mg_obj |
1590 | : (const GV *)mg_find(mg->mg_obj, PERL_MAGIC_isa)->mg_obj | |
52b45067 RD |
1591 | ); |
1592 | ||
5562fa71 RGS |
1593 | if (stash) |
1594 | mro_isa_changed_in(stash); | |
52b45067 RD |
1595 | |
1596 | return 0; | |
1597 | } | |
1598 | ||
1599 | int | |
864dbfa3 | 1600 | Perl_magic_setamagic(pTHX_ SV *sv, MAGIC *mg) |
463ee0b2 | 1601 | { |
97aff369 | 1602 | dVAR; |
7918f24d | 1603 | PERL_ARGS_ASSERT_MAGIC_SETAMAGIC; |
8772537c AL |
1604 | PERL_UNUSED_ARG(sv); |
1605 | PERL_UNUSED_ARG(mg); | |
3280af22 | 1606 | PL_amagic_generation++; |
463ee0b2 | 1607 | |
a0d0e21e LW |
1608 | return 0; |
1609 | } | |
463ee0b2 | 1610 | |
946ec16e | 1611 | int |
864dbfa3 | 1612 | Perl_magic_getnkeys(pTHX_ SV *sv, MAGIC *mg) |
6ff81951 | 1613 | { |
85fbaab2 | 1614 | HV * const hv = MUTABLE_HV(LvTARG(sv)); |
6ff81951 | 1615 | I32 i = 0; |
7918f24d NC |
1616 | |
1617 | PERL_ARGS_ASSERT_MAGIC_GETNKEYS; | |
8772537c | 1618 | PERL_UNUSED_ARG(mg); |
7719e241 | 1619 | |
6ff81951 | 1620 | if (hv) { |
497b47a8 | 1621 | (void) hv_iterinit(hv); |
ad64d0ec | 1622 | if (! SvTIED_mg((const SV *)hv, PERL_MAGIC_tied)) |
497b47a8 JH |
1623 | i = HvKEYS(hv); |
1624 | else { | |
1625 | while (hv_iternext(hv)) | |
1626 | i++; | |
1627 | } | |
6ff81951 GS |
1628 | } |
1629 | ||
1630 | sv_setiv(sv, (IV)i); | |
1631 | return 0; | |
1632 | } | |
1633 | ||
1634 | int | |
864dbfa3 | 1635 | Perl_magic_setnkeys(pTHX_ SV *sv, MAGIC *mg) |
946ec16e | 1636 | { |
7918f24d | 1637 | PERL_ARGS_ASSERT_MAGIC_SETNKEYS; |
8772537c | 1638 | PERL_UNUSED_ARG(mg); |
946ec16e | 1639 | if (LvTARG(sv)) { |
85fbaab2 | 1640 | hv_ksplit(MUTABLE_HV(LvTARG(sv)), SvIV(sv)); |
946ec16e | 1641 | } |
1642 | return 0; | |
ac27b0f5 | 1643 | } |
946ec16e | 1644 | |
e336de0d | 1645 | /* caller is responsible for stack switching/cleanup */ |
565764a8 | 1646 | STATIC int |
e1ec3a88 | 1647 | S_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 flags, int n, SV *val) |
a0d0e21e | 1648 | { |
97aff369 | 1649 | dVAR; |
a0d0e21e | 1650 | dSP; |
463ee0b2 | 1651 | |
7918f24d NC |
1652 | PERL_ARGS_ASSERT_MAGIC_METHCALL; |
1653 | ||
924508f0 GS |
1654 | PUSHMARK(SP); |
1655 | EXTEND(SP, n); | |
33c27489 | 1656 | PUSHs(SvTIED_obj(sv, mg)); |
ac27b0f5 | 1657 | if (n > 1) { |
93965878 | 1658 | if (mg->mg_ptr) { |
565764a8 | 1659 | if (mg->mg_len >= 0) |
6e449a3a | 1660 | mPUSHp(mg->mg_ptr, mg->mg_len); |
565764a8 | 1661 | else if (mg->mg_len == HEf_SVKEY) |
ad64d0ec | 1662 | PUSHs(MUTABLE_SV(mg->mg_ptr)); |
93965878 | 1663 | } |
14befaf4 | 1664 | else if (mg->mg_type == PERL_MAGIC_tiedelem) { |
6e449a3a | 1665 | mPUSHi(mg->mg_len); |
93965878 NIS |
1666 | } |
1667 | } | |
1668 | if (n > 2) { | |
1669 | PUSHs(val); | |
88e89b8a | 1670 | } |
463ee0b2 LW |
1671 | PUTBACK; |
1672 | ||
864dbfa3 | 1673 | return call_method(meth, flags); |
946ec16e | 1674 | } |
1675 | ||
76e3520e | 1676 | STATIC int |
e1ec3a88 | 1677 | S_magic_methpack(pTHX_ SV *sv, const MAGIC *mg, const char *meth) |
a0d0e21e | 1678 | { |
27da23d5 | 1679 | dVAR; dSP; |
463ee0b2 | 1680 | |
7918f24d NC |
1681 | PERL_ARGS_ASSERT_MAGIC_METHPACK; |
1682 | ||
a0d0e21e LW |
1683 | ENTER; |
1684 | SAVETMPS; | |
e788e7d3 | 1685 | PUSHSTACKi(PERLSI_MAGIC); |
463ee0b2 | 1686 | |
33c27489 | 1687 | if (magic_methcall(sv, mg, meth, G_SCALAR, 2, NULL)) { |
3280af22 | 1688 | sv_setsv(sv, *PL_stack_sp--); |
93965878 | 1689 | } |
463ee0b2 | 1690 | |
d3acc0f7 | 1691 | POPSTACK; |
a0d0e21e LW |
1692 | FREETMPS; |
1693 | LEAVE; | |
1694 | return 0; | |
1695 | } | |
463ee0b2 | 1696 | |
a0d0e21e | 1697 | int |
864dbfa3 | 1698 | Perl_magic_getpack(pTHX_ SV *sv, MAGIC *mg) |
a0d0e21e | 1699 | { |
7918f24d NC |
1700 | PERL_ARGS_ASSERT_MAGIC_GETPACK; |
1701 | ||
fd69380d | 1702 | if (mg->mg_type == PERL_MAGIC_tiedelem) |
a0d0e21e | 1703 | mg->mg_flags |= MGf_GSKIP; |
58f82c5c | 1704 | magic_methpack(sv,mg,"FETCH"); |
463ee0b2 LW |
1705 | return 0; |
1706 | } | |
1707 | ||
1708 | int | |
864dbfa3 | 1709 | Perl_magic_setpack(pTHX_ SV *sv, MAGIC *mg) |
e336de0d | 1710 | { |
27da23d5 | 1711 | dVAR; dSP; |
b112cff9 DM |
1712 | MAGIC *tmg; |
1713 | SV *val; | |
7918f24d NC |
1714 | |
1715 | PERL_ARGS_ASSERT_MAGIC_SETPACK; | |
1716 | ||
b112cff9 DM |
1717 | /* in the code C<$tied{foo} = $val>, the "thing" that gets passed to |
1718 | * STORE() is not $val, but rather a PVLV (the sv in this call), whose | |
1719 | * public flags indicate its value based on copying from $val. Doing | |
1720 | * mg_set() on the PVLV temporarily does SvMAGICAL_off(), then calls us. | |
1721 | * So STORE()'s $_[2] arg is a temporarily disarmed PVLV. This goes | |
1722 | * wrong if $val happened to be tainted, as sv hasn't got magic | |
1723 | * enabled, even though taint magic is in the chain. In which case, | |
1724 | * fake up a temporary tainted value (this is easier than temporarily | |
1725 | * re-enabling magic on sv). */ | |
1726 | ||
1727 | if (PL_tainting && (tmg = mg_find(sv, PERL_MAGIC_taint)) | |
1728 | && (tmg->mg_len & 1)) | |
1729 | { | |
1730 | val = sv_mortalcopy(sv); | |
1731 | SvTAINTED_on(val); | |
1732 | } | |
1733 | else | |
1734 | val = sv; | |
1735 | ||
a60c0954 | 1736 | ENTER; |
e788e7d3 | 1737 | PUSHSTACKi(PERLSI_MAGIC); |
b112cff9 | 1738 | magic_methcall(sv, mg, "STORE", G_SCALAR|G_DISCARD, 3, val); |
d3acc0f7 | 1739 | POPSTACK; |
a60c0954 | 1740 | LEAVE; |
463ee0b2 LW |
1741 | return 0; |
1742 | } | |
1743 | ||
1744 | int | |
864dbfa3 | 1745 | Perl_magic_clearpack(pTHX_ SV *sv, MAGIC *mg) |
463ee0b2 | 1746 | { |
7918f24d NC |
1747 | PERL_ARGS_ASSERT_MAGIC_CLEARPACK; |
1748 | ||
a0d0e21e LW |
1749 | return magic_methpack(sv,mg,"DELETE"); |
1750 | } | |
463ee0b2 | 1751 | |
93965878 NIS |
1752 | |
1753 | U32 | |
864dbfa3 | 1754 | Perl_magic_sizepack(pTHX_ SV *sv, MAGIC *mg) |
ac27b0f5 | 1755 | { |
27da23d5 | 1756 | dVAR; dSP; |
22846ab4 | 1757 | I32 retval = 0; |
93965878 | 1758 | |
7918f24d NC |
1759 | PERL_ARGS_ASSERT_MAGIC_SIZEPACK; |
1760 | ||
93965878 NIS |
1761 | ENTER; |
1762 | SAVETMPS; | |
e788e7d3 | 1763 | PUSHSTACKi(PERLSI_MAGIC); |
33c27489 | 1764 | if (magic_methcall(sv, mg, "FETCHSIZE", G_SCALAR, 2, NULL)) { |
3280af22 | 1765 | sv = *PL_stack_sp--; |
22846ab4 AB |
1766 | retval = SvIV(sv)-1; |
1767 | if (retval < -1) | |
1768 | Perl_croak(aTHX_ "FETCHSIZE returned a negative value"); | |
93965878 | 1769 | } |
d3acc0f7 | 1770 | POPSTACK; |
93965878 NIS |
1771 | FREETMPS; |
1772 | LEAVE; | |
22846ab4 | 1773 | return (U32) retval; |
93965878 NIS |
1774 | } |
1775 | ||
cea2e8a9 GS |
1776 | int |
1777 | Perl_magic_wipepack(pTHX_ SV *sv, MAGIC *mg) | |
a0d0e21e | 1778 | { |
27da23d5 | 1779 | dVAR; dSP; |
463ee0b2 | 1780 | |
7918f24d NC |
1781 | PERL_ARGS_ASSERT_MAGIC_WIPEPACK; |
1782 | ||
e336de0d | 1783 | ENTER; |
e788e7d3 | 1784 | PUSHSTACKi(PERLSI_MAGIC); |
924508f0 | 1785 | PUSHMARK(SP); |
33c27489 | 1786 | XPUSHs(SvTIED_obj(sv, mg)); |
463ee0b2 | 1787 | PUTBACK; |
864dbfa3 | 1788 | call_method("CLEAR", G_SCALAR|G_DISCARD); |
d3acc0f7 | 1789 | POPSTACK; |
a60c0954 | 1790 | LEAVE; |
a3bcc51e | 1791 | |
463ee0b2 LW |
1792 | return 0; |
1793 | } | |
1794 | ||
1795 | int | |
864dbfa3 | 1796 | Perl_magic_nextpack(pTHX_ SV *sv, MAGIC *mg, SV *key) |
463ee0b2 | 1797 | { |
27da23d5 | 1798 | dVAR; dSP; |
666ea192 | 1799 | const char * const meth = SvOK(key) ? "NEXTKEY" : "FIRSTKEY"; |
463ee0b2 | 1800 | |
7918f24d NC |
1801 | PERL_ARGS_ASSERT_MAGIC_NEXTPACK; |
1802 | ||
463ee0b2 | 1803 | ENTER; |
a0d0e21e | 1804 | SAVETMPS; |
e788e7d3 | 1805 | PUSHSTACKi(PERLSI_MAGIC); |
924508f0 GS |
1806 | PUSHMARK(SP); |
1807 | EXTEND(SP, 2); | |
33c27489 | 1808 | PUSHs(SvTIED_obj(sv, mg)); |
463ee0b2 LW |
1809 | if (SvOK(key)) |
1810 | PUSHs(key); | |
1811 | PUTBACK; | |
1812 | ||
864dbfa3 | 1813 | if (call_method(meth, G_SCALAR)) |
3280af22 | 1814 | sv_setsv(key, *PL_stack_sp--); |
463ee0b2 | 1815 | |
d3acc0f7 | 1816 | POPSTACK; |
a0d0e21e LW |
1817 | FREETMPS; |
1818 | LEAVE; | |
79072805 LW |
1819 | return 0; |
1820 | } | |
1821 | ||
1822 | int | |
1146e912 | 1823 | Perl_magic_existspack(pTHX_ SV *sv, const MAGIC *mg) |
a0d0e21e | 1824 | { |
7918f24d NC |
1825 | PERL_ARGS_ASSERT_MAGIC_EXISTSPACK; |
1826 | ||
a0d0e21e | 1827 | return magic_methpack(sv,mg,"EXISTS"); |
ac27b0f5 | 1828 | } |
a0d0e21e | 1829 | |
a3bcc51e TP |
1830 | SV * |
1831 | Perl_magic_scalarpack(pTHX_ HV *hv, MAGIC *mg) | |
1832 | { | |
27da23d5 | 1833 | dVAR; dSP; |
5fcbf73d | 1834 | SV *retval; |
ad64d0ec NC |
1835 | SV * const tied = SvTIED_obj(MUTABLE_SV(hv), mg); |
1836 | HV * const pkg = SvSTASH((const SV *)SvRV(tied)); | |
a3bcc51e | 1837 | |
7918f24d NC |
1838 | PERL_ARGS_ASSERT_MAGIC_SCALARPACK; |
1839 | ||
a3bcc51e TP |
1840 | if (!gv_fetchmethod_autoload(pkg, "SCALAR", FALSE)) { |
1841 | SV *key; | |
bfcb3514 | 1842 | if (HvEITER_get(hv)) |
a3bcc51e TP |
1843 | /* we are in an iteration so the hash cannot be empty */ |
1844 | return &PL_sv_yes; | |
1845 | /* no xhv_eiter so now use FIRSTKEY */ | |
1846 | key = sv_newmortal(); | |
ad64d0ec | 1847 | magic_nextpack(MUTABLE_SV(hv), mg, key); |
bfcb3514 | 1848 | HvEITER_set(hv, NULL); /* need to reset iterator */ |
a3bcc51e TP |
1849 | return SvOK(key) ? &PL_sv_yes : &PL_sv_no; |
1850 | } | |
1851 | ||
1852 | /* there is a SCALAR method that we can call */ | |
1853 | ENTER; | |
1854 | PUSHSTACKi(PERLSI_MAGIC); | |
1855 | PUSHMARK(SP); | |
1856 | EXTEND(SP, 1); | |
1857 | PUSHs(tied); | |
1858 | PUTBACK; | |
1859 | ||
1860 | if (call_method("SCALAR", G_SCALAR)) | |
1861 | retval = *PL_stack_sp--; | |
5fcbf73d AL |
1862 | else |
1863 | retval = &PL_sv_undef; | |
a3bcc51e TP |
1864 | POPSTACK; |
1865 | LEAVE; | |
1866 | return retval; | |
1867 | } | |
1868 | ||
a0d0e21e | 1869 | int |
864dbfa3 | 1870 | Perl_magic_setdbline(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1871 | { |
97aff369 | 1872 | dVAR; |
8772537c AL |
1873 | GV * const gv = PL_DBline; |
1874 | const I32 i = SvTRUE(sv); | |
1875 | SV ** const svp = av_fetch(GvAV(gv), | |
01b8bcb7 | 1876 | atoi(MgPV_nolen_const(mg)), FALSE); |
7918f24d NC |
1877 | |
1878 | PERL_ARGS_ASSERT_MAGIC_SETDBLINE; | |
1879 | ||
8772537c AL |
1880 | if (svp && SvIOKp(*svp)) { |
1881 | OP * const o = INT2PTR(OP*,SvIVX(*svp)); | |
1882 | if (o) { | |
1883 | /* set or clear breakpoint in the relevant control op */ | |
1884 | if (i) | |
1885 | o->op_flags |= OPf_SPECIAL; | |
1886 | else | |
1887 | o->op_flags &= ~OPf_SPECIAL; | |
1888 | } | |
5df8de69 | 1889 | } |
79072805 LW |
1890 | return 0; |
1891 | } | |
1892 | ||
1893 | int | |
8772537c | 1894 | Perl_magic_getarylen(pTHX_ SV *sv, const MAGIC *mg) |
79072805 | 1895 | { |
97aff369 | 1896 | dVAR; |
502c6561 | 1897 | AV * const obj = MUTABLE_AV(mg->mg_obj); |
7918f24d NC |
1898 | |
1899 | PERL_ARGS_ASSERT_MAGIC_GETARYLEN; | |
1900 | ||
83bf042f | 1901 | if (obj) { |
fc15ae8f | 1902 | sv_setiv(sv, AvFILL(obj) + CopARYBASE_get(PL_curcop)); |
83bf042f NC |
1903 | } else { |
1904 | SvOK_off(sv); | |
1905 | } | |
79072805 LW |
1906 | return 0; |
1907 | } | |
1908 | ||
1909 | int | |
864dbfa3 | 1910 | Perl_magic_setarylen(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 1911 | { |
97aff369 | 1912 | dVAR; |
502c6561 | 1913 | AV * const obj = MUTABLE_AV(mg->mg_obj); |
7918f24d NC |
1914 | |
1915 | PERL_ARGS_ASSERT_MAGIC_SETARYLEN; | |
1916 | ||
83bf042f | 1917 | if (obj) { |
fc15ae8f | 1918 | av_fill(obj, SvIV(sv) - CopARYBASE_get(PL_curcop)); |
83bf042f | 1919 | } else { |
a2a5de95 NC |
1920 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), |
1921 | "Attempt to set length of freed array"); | |
83bf042f NC |
1922 | } |
1923 | return 0; | |
1924 | } | |
1925 | ||
1926 | int | |
1927 | Perl_magic_freearylen_p(pTHX_ SV *sv, MAGIC *mg) | |
1928 | { | |
97aff369 | 1929 | dVAR; |
7918f24d NC |
1930 | |
1931 | PERL_ARGS_ASSERT_MAGIC_FREEARYLEN_P; | |
53c1dcc0 | 1932 | PERL_UNUSED_ARG(sv); |
7918f24d | 1933 | |
94f3782b DM |
1934 | /* during global destruction, mg_obj may already have been freed */ |
1935 | if (PL_in_clean_all) | |
1ea47f64 | 1936 | return 0; |
94f3782b | 1937 | |
83bf042f NC |
1938 | mg = mg_find (mg->mg_obj, PERL_MAGIC_arylen); |
1939 | ||
1940 | if (mg) { | |
1941 | /* arylen scalar holds a pointer back to the array, but doesn't own a | |
1942 | reference. Hence the we (the array) are about to go away with it | |
1943 | still pointing at us. Clear its pointer, else it would be pointing | |
1944 | at free memory. See the comment in sv_magic about reference loops, | |
1945 | and why it can't own a reference to us. */ | |
1946 | mg->mg_obj = 0; | |
1947 | } | |
a0d0e21e LW |
1948 | return 0; |
1949 | } | |
1950 | ||
1951 | int | |
864dbfa3 | 1952 | Perl_magic_getpos(pTHX_ SV *sv, MAGIC *mg) |
a0d0e21e | 1953 | { |
97aff369 | 1954 | dVAR; |
8772537c | 1955 | SV* const lsv = LvTARG(sv); |
7918f24d NC |
1956 | |
1957 | PERL_ARGS_ASSERT_MAGIC_GETPOS; | |
3881461a | 1958 | PERL_UNUSED_ARG(mg); |
ac27b0f5 | 1959 | |
a0d0e21e | 1960 | if (SvTYPE(lsv) >= SVt_PVMG && SvMAGIC(lsv)) { |
3881461a AL |
1961 | MAGIC * const found = mg_find(lsv, PERL_MAGIC_regex_global); |
1962 | if (found && found->mg_len >= 0) { | |
1963 | I32 i = found->mg_len; | |
7e2040f0 | 1964 | if (DO_UTF8(lsv)) |
a0ed51b3 | 1965 | sv_pos_b2u(lsv, &i); |
fc15ae8f | 1966 | sv_setiv(sv, i + CopARYBASE_get(PL_curcop)); |
a0d0e21e LW |
1967 | return 0; |
1968 | } | |
1969 | } | |
0c34ef67 | 1970 | SvOK_off(sv); |
a0d0e21e LW |
1971 | return 0; |
1972 | } | |
1973 | ||
1974 | int | |
864dbfa3 | 1975 | Perl_magic_setpos(pTHX_ SV *sv, MAGIC *mg) |
a0d0e21e | 1976 | { |
97aff369 | 1977 | dVAR; |
8772537c | 1978 | SV* const lsv = LvTARG(sv); |
a0d0e21e LW |
1979 | SSize_t pos; |
1980 | STRLEN len; | |
c00206c8 | 1981 | STRLEN ulen = 0; |
53d44271 | 1982 | MAGIC* found; |
a0d0e21e | 1983 | |
7918f24d | 1984 | PERL_ARGS_ASSERT_MAGIC_SETPOS; |
3881461a | 1985 | PERL_UNUSED_ARG(mg); |
ac27b0f5 | 1986 | |
a0d0e21e | 1987 | if (SvTYPE(lsv) >= SVt_PVMG && SvMAGIC(lsv)) |
3881461a AL |
1988 | found = mg_find(lsv, PERL_MAGIC_regex_global); |
1989 | else | |
1990 | found = NULL; | |
1991 | if (!found) { | |
a0d0e21e LW |
1992 | if (!SvOK(sv)) |
1993 | return 0; | |
d83f0a82 NC |
1994 | #ifdef PERL_OLD_COPY_ON_WRITE |
1995 | if (SvIsCOW(lsv)) | |
1996 | sv_force_normal_flags(lsv, 0); | |
1997 | #endif | |
3881461a | 1998 | found = sv_magicext(lsv, NULL, PERL_MAGIC_regex_global, &PL_vtbl_mglob, |
53d44271 | 1999 | NULL, 0); |
a0d0e21e LW |
2000 | } |
2001 | else if (!SvOK(sv)) { | |
3881461a | 2002 | found->mg_len = -1; |
a0d0e21e LW |
2003 | return 0; |
2004 | } | |
2005 | len = SvPOK(lsv) ? SvCUR(lsv) : sv_len(lsv); | |
2006 | ||
fc15ae8f | 2007 | pos = SvIV(sv) - CopARYBASE_get(PL_curcop); |
a0ed51b3 | 2008 | |
7e2040f0 | 2009 | if (DO_UTF8(lsv)) { |
a0ed51b3 LW |
2010 | ulen = sv_len_utf8(lsv); |
2011 | if (ulen) | |
2012 | len = ulen; | |
a0ed51b3 LW |
2013 | } |
2014 | ||
a0d0e21e LW |
2015 | if (pos < 0) { |
2016 | pos += len; | |
2017 | if (pos < 0) | |
2018 | pos = 0; | |
2019 | } | |
eb160463 | 2020 | else if (pos > (SSize_t)len) |
a0d0e21e | 2021 | pos = len; |
a0ed51b3 LW |
2022 | |
2023 | if (ulen) { | |
2024 | I32 p = pos; | |
2025 | sv_pos_u2b(lsv, &p, 0); | |
2026 | pos = p; | |
2027 | } | |
727405f8 | 2028 | |
3881461a AL |
2029 | found->mg_len = pos; |
2030 | found->mg_flags &= ~MGf_MINMATCH; | |
a0d0e21e | 2031 | |
79072805 LW |
2032 | return 0; |
2033 | } | |
2034 | ||
2035 | int | |
864dbfa3 | 2036 | Perl_magic_getsubstr(pTHX_ SV *sv, MAGIC *mg) |
6ff81951 GS |
2037 | { |
2038 | STRLEN len; | |
35a4481c | 2039 | SV * const lsv = LvTARG(sv); |
b83604b4 | 2040 | const char * const tmps = SvPV_const(lsv,len); |
777f7c56 EB |
2041 | STRLEN offs = LvTARGOFF(sv); |
2042 | STRLEN rem = LvTARGLEN(sv); | |
7918f24d NC |
2043 | |
2044 | PERL_ARGS_ASSERT_MAGIC_GETSUBSTR; | |
8772537c | 2045 | PERL_UNUSED_ARG(mg); |
6ff81951 | 2046 | |
9aa983d2 | 2047 | if (SvUTF8(lsv)) |
d931b1be | 2048 | offs = sv_pos_u2b_flags(lsv, offs, &rem, SV_CONST_RETURN); |
777f7c56 | 2049 | if (offs > len) |
6ff81951 | 2050 | offs = len; |
777f7c56 | 2051 | if (rem > len - offs) |
6ff81951 | 2052 | rem = len - offs; |
1c900557 | 2053 | sv_setpvn(sv, tmps + offs, rem); |
9aa983d2 | 2054 | if (SvUTF8(lsv)) |
2ef4b674 | 2055 | SvUTF8_on(sv); |
6ff81951 GS |
2056 | return 0; |
2057 | } | |
2058 | ||
2059 | int | |
864dbfa3 | 2060 | Perl_magic_setsubstr(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 2061 | { |
97aff369 | 2062 | dVAR; |
9aa983d2 | 2063 | STRLEN len; |
5fcbf73d | 2064 | const char * const tmps = SvPV_const(sv, len); |
dd374669 | 2065 | SV * const lsv = LvTARG(sv); |
777f7c56 EB |
2066 | STRLEN lvoff = LvTARGOFF(sv); |
2067 | STRLEN lvlen = LvTARGLEN(sv); | |
7918f24d NC |
2068 | |
2069 | PERL_ARGS_ASSERT_MAGIC_SETSUBSTR; | |
8772537c | 2070 | PERL_UNUSED_ARG(mg); |
075a4a2b | 2071 | |
1aa99e6b | 2072 | if (DO_UTF8(sv)) { |
9aa983d2 | 2073 | sv_utf8_upgrade(lsv); |
d931b1be | 2074 | lvoff = sv_pos_u2b_flags(lsv, lvoff, &lvlen, SV_CONST_RETURN); |
9aa983d2 | 2075 | sv_insert(lsv, lvoff, lvlen, tmps, len); |
b76f3ce2 | 2076 | LvTARGLEN(sv) = sv_len_utf8(sv); |
9aa983d2 JH |
2077 | SvUTF8_on(lsv); |
2078 | } | |
9bf12eaf | 2079 | else if (lsv && SvUTF8(lsv)) { |
5fcbf73d | 2080 | const char *utf8; |
d931b1be | 2081 | lvoff = sv_pos_u2b_flags(lsv, lvoff, &lvlen, SV_CONST_RETURN); |
b76f3ce2 | 2082 | LvTARGLEN(sv) = len; |
5fcbf73d AL |
2083 | utf8 = (char*)bytes_to_utf8((U8*)tmps, &len); |
2084 | sv_insert(lsv, lvoff, lvlen, utf8, len); | |
2085 | Safefree(utf8); | |
1aa99e6b | 2086 | } |
b76f3ce2 GB |
2087 | else { |
2088 | sv_insert(lsv, lvoff, lvlen, tmps, len); | |
2089 | LvTARGLEN(sv) = len; | |
2090 | } | |
2091 | ||
79072805 LW |
2092 | return 0; |
2093 | } | |
2094 | ||
2095 | int | |
864dbfa3 | 2096 | Perl_magic_gettaint(pTHX_ SV *sv, MAGIC *mg) |
463ee0b2 | 2097 | { |
97aff369 | 2098 | dVAR; |
7918f24d NC |
2099 | |
2100 | PERL_ARGS_ASSERT_MAGIC_GETTAINT; | |
8772537c | 2101 | PERL_UNUSED_ARG(sv); |
7918f24d | 2102 | |
27cc343c | 2103 | TAINT_IF((PL_localizing != 1) && (mg->mg_len & 1)); |
463ee0b2 LW |
2104 | return 0; |
2105 | } | |
2106 | ||
2107 | int | |
864dbfa3 | 2108 | Perl_magic_settaint(pTHX_ SV *sv, MAGIC *mg) |
463ee0b2 | 2109 | { |
97aff369 | 2110 | dVAR; |
7918f24d NC |
2111 | |
2112 | PERL_ARGS_ASSERT_MAGIC_SETTAINT; | |
8772537c | 2113 | PERL_UNUSED_ARG(sv); |
7918f24d | 2114 | |
b01e650a DM |
2115 | /* update taint status */ |
2116 | if (PL_tainted) | |
2117 | mg->mg_len |= 1; | |
2118 | else | |
2119 | mg->mg_len &= ~1; | |
463ee0b2 LW |
2120 | return 0; |
2121 | } | |
2122 | ||
2123 | int | |
864dbfa3 | 2124 | Perl_magic_getvec(pTHX_ SV *sv, MAGIC *mg) |
6ff81951 | 2125 | { |
35a4481c | 2126 | SV * const lsv = LvTARG(sv); |
7918f24d NC |
2127 | |
2128 | PERL_ARGS_ASSERT_MAGIC_GETVEC; | |
8772537c | 2129 | PERL_UNUSED_ARG(mg); |
6ff81951 | 2130 | |
6136c704 AL |
2131 | if (lsv) |
2132 | sv_setuv(sv, do_vecget(lsv, LvTARGOFF(sv), LvTARGLEN(sv))); | |
2133 | else | |
0c34ef67 | 2134 | SvOK_off(sv); |
6ff81951 | 2135 | |
6ff81951 GS |
2136 | return 0; |
2137 | } | |
2138 | ||
2139 | int | |
864dbfa3 | 2140 | Perl_magic_setvec(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 2141 | { |
7918f24d | 2142 | PERL_ARGS_ASSERT_MAGIC_SETVEC; |
8772537c | 2143 | PERL_UNUSED_ARG(mg); |
79072805 LW |
2144 | do_vecset(sv); /* XXX slurp this routine */ |
2145 | return 0; | |
2146 | } | |
2147 | ||
2148 | int | |
864dbfa3 | 2149 | Perl_magic_getdefelem(pTHX_ SV *sv, MAGIC *mg) |
5f05dabc | 2150 | { |
97aff369 | 2151 | dVAR; |
a0714e2c | 2152 | SV *targ = NULL; |
7918f24d NC |
2153 | |
2154 | PERL_ARGS_ASSERT_MAGIC_GETDEFELEM; | |
2155 | ||
5f05dabc | 2156 | if (LvTARGLEN(sv)) { |
68dc0745 | 2157 | if (mg->mg_obj) { |
8772537c | 2158 | SV * const ahv = LvTARG(sv); |
85fbaab2 | 2159 | HE * const he = hv_fetch_ent(MUTABLE_HV(ahv), mg->mg_obj, FALSE, 0); |
6d822dc4 MS |
2160 | if (he) |
2161 | targ = HeVAL(he); | |
68dc0745 | 2162 | } |
2163 | else { | |
502c6561 | 2164 | AV *const av = MUTABLE_AV(LvTARG(sv)); |
68dc0745 | 2165 | if ((I32)LvTARGOFF(sv) <= AvFILL(av)) |
2166 | targ = AvARRAY(av)[LvTARGOFF(sv)]; | |
2167 | } | |
46da273f | 2168 | if (targ && (targ != &PL_sv_undef)) { |
68dc0745 | 2169 | /* somebody else defined it for us */ |
2170 | SvREFCNT_dec(LvTARG(sv)); | |
b37c2d43 | 2171 | LvTARG(sv) = SvREFCNT_inc_simple_NN(targ); |
68dc0745 | 2172 | LvTARGLEN(sv) = 0; |
2173 | SvREFCNT_dec(mg->mg_obj); | |
a0714e2c | 2174 | mg->mg_obj = NULL; |
68dc0745 | 2175 | mg->mg_flags &= ~MGf_REFCOUNTED; |
2176 | } | |
5f05dabc | 2177 | } |
71be2cbc | 2178 | else |
2179 | targ = LvTARG(sv); | |
3280af22 | 2180 | sv_setsv(sv, targ ? targ : &PL_sv_undef); |
71be2cbc | 2181 | return 0; |
2182 | } | |
2183 | ||
2184 | int | |
864dbfa3 | 2185 | Perl_magic_setdefelem(pTHX_ SV *sv, MAGIC *mg) |
71be2cbc | 2186 | { |
7918f24d | 2187 | PERL_ARGS_ASSERT_MAGIC_SETDEFELEM; |
8772537c | 2188 | PERL_UNUSED_ARG(mg); |
71be2cbc | 2189 | if (LvTARGLEN(sv)) |
68dc0745 | 2190 | vivify_defelem(sv); |
2191 | if (LvTARG(sv)) { | |
5f05dabc | 2192 | sv_setsv(LvTARG(sv), sv); |
68dc0745 | 2193 | SvSETMAGIC(LvTARG(sv)); |
2194 | } | |
5f05dabc | 2195 | return 0; |
2196 | } | |
2197 | ||
71be2cbc | 2198 | void |
864dbfa3 | 2199 | Perl_vivify_defelem(pTHX_ SV *sv) |
71be2cbc | 2200 | { |
97aff369 | 2201 | dVAR; |
74e13ce4 | 2202 | MAGIC *mg; |
a0714e2c | 2203 | SV *value = NULL; |
71be2cbc | 2204 | |
7918f24d NC |
2205 | PERL_ARGS_ASSERT_VIVIFY_DEFELEM; |
2206 | ||
14befaf4 | 2207 | if (!LvTARGLEN(sv) || !(mg = mg_find(sv, PERL_MAGIC_defelem))) |
71be2cbc | 2208 | return; |
68dc0745 | 2209 | if (mg->mg_obj) { |
8772537c | 2210 | SV * const ahv = LvTARG(sv); |
85fbaab2 | 2211 | HE * const he = hv_fetch_ent(MUTABLE_HV(ahv), mg->mg_obj, TRUE, 0); |
6d822dc4 MS |
2212 | if (he) |
2213 | value = HeVAL(he); | |
3280af22 | 2214 | if (!value || value == &PL_sv_undef) |
be2597df | 2215 | Perl_croak(aTHX_ PL_no_helem_sv, SVfARG(mg->mg_obj)); |
71be2cbc | 2216 | } |
68dc0745 | 2217 | else { |
502c6561 | 2218 | AV *const av = MUTABLE_AV(LvTARG(sv)); |
5aabfad6 | 2219 | if ((I32)LvTARGLEN(sv) < 0 && (I32)LvTARGOFF(sv) > AvFILL(av)) |
a0714e2c | 2220 | LvTARG(sv) = NULL; /* array can't be extended */ |
68dc0745 | 2221 | else { |
d4c19fe8 | 2222 | SV* const * const svp = av_fetch(av, LvTARGOFF(sv), TRUE); |
3280af22 | 2223 | if (!svp || (value = *svp) == &PL_sv_undef) |
cea2e8a9 | 2224 | Perl_croak(aTHX_ PL_no_aelem, (I32)LvTARGOFF(sv)); |
68dc0745 | 2225 | } |
2226 | } | |
b37c2d43 | 2227 | SvREFCNT_inc_simple_void(value); |
68dc0745 | 2228 | SvREFCNT_dec(LvTARG(sv)); |
2229 | LvTARG(sv) = value; | |
71be2cbc | 2230 | LvTARGLEN(sv) = 0; |
68dc0745 | 2231 | SvREFCNT_dec(mg->mg_obj); |
a0714e2c | 2232 | mg->mg_obj = NULL; |
68dc0745 | 2233 | mg->mg_flags &= ~MGf_REFCOUNTED; |
5f05dabc | 2234 | } |
2235 | ||
2236 | int | |
864dbfa3 | 2237 | Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg) |
810b8aa5 | 2238 | { |
7918f24d | 2239 | PERL_ARGS_ASSERT_MAGIC_KILLBACKREFS; |
502c6561 | 2240 | return Perl_sv_kill_backrefs(aTHX_ sv, MUTABLE_AV(mg->mg_obj)); |
810b8aa5 GS |
2241 | } |
2242 | ||
2243 | int | |
864dbfa3 | 2244 | Perl_magic_setmglob(pTHX_ SV *sv, MAGIC *mg) |
93a17b20 | 2245 | { |
7918f24d | 2246 | PERL_ARGS_ASSERT_MAGIC_SETMGLOB; |
96a5add6 | 2247 | PERL_UNUSED_CONTEXT; |
565764a8 | 2248 | mg->mg_len = -1; |
1f730e6c FC |
2249 | if (!isGV_with_GP(sv)) |
2250 | SvSCREAM_off(sv); | |
93a17b20 LW |
2251 | return 0; |
2252 | } | |
2253 | ||
2254 | int | |
864dbfa3 | 2255 | Perl_magic_setuvar(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 2256 | { |
35a4481c | 2257 | const struct ufuncs * const uf = (struct ufuncs *)mg->mg_ptr; |
79072805 | 2258 | |
7918f24d NC |
2259 | PERL_ARGS_ASSERT_MAGIC_SETUVAR; |
2260 | ||
79072805 | 2261 | if (uf && uf->uf_set) |
24f81a43 | 2262 | (*uf->uf_set)(aTHX_ uf->uf_index, sv); |
79072805 LW |
2263 | return 0; |
2264 | } | |
2265 | ||
c277df42 | 2266 | int |
faf82a0b AE |
2267 | Perl_magic_setregexp(pTHX_ SV *sv, MAGIC *mg) |
2268 | { | |
488344d2 | 2269 | const char type = mg->mg_type; |
7918f24d NC |
2270 | |
2271 | PERL_ARGS_ASSERT_MAGIC_SETREGEXP; | |
2272 | ||
488344d2 NC |
2273 | if (type == PERL_MAGIC_qr) { |
2274 | } else if (type == PERL_MAGIC_bm) { | |
2275 | SvTAIL_off(sv); | |
2276 | SvVALID_off(sv); | |
2277 | } else { | |
2278 | assert(type == PERL_MAGIC_fm); | |
2279 | SvCOMPILED_off(sv); | |
2280 | } | |
2281 | return sv_unmagic(sv, type); | |
faf82a0b AE |
2282 | } |
2283 | ||
7a4c00b4 | 2284 | #ifdef USE_LOCALE_COLLATE |
79072805 | 2285 | int |
864dbfa3 | 2286 | Perl_magic_setcollxfrm(pTHX_ SV *sv, MAGIC *mg) |
bbce6d69 | 2287 | { |
7918f24d NC |
2288 | PERL_ARGS_ASSERT_MAGIC_SETCOLLXFRM; |
2289 | ||
bbce6d69 | 2290 | /* |
838b5b74 | 2291 | * RenE<eacute> Descartes said "I think not." |
bbce6d69 | 2292 | * and vanished with a faint plop. |
2293 | */ | |
96a5add6 | 2294 | PERL_UNUSED_CONTEXT; |
8772537c | 2295 | PERL_UNUSED_ARG(sv); |
7a4c00b4 | 2296 | if (mg->mg_ptr) { |
2297 | Safefree(mg->mg_ptr); | |
2298 | mg->mg_ptr = NULL; | |
565764a8 | 2299 | mg->mg_len = -1; |
7a4c00b4 | 2300 | } |
bbce6d69 | 2301 | return 0; |
2302 | } | |
7a4c00b4 | 2303 | #endif /* USE_LOCALE_COLLATE */ |
bbce6d69 | 2304 | |
7e8c5dac HS |
2305 | /* Just clear the UTF-8 cache data. */ |
2306 | int | |
2307 | Perl_magic_setutf8(pTHX_ SV *sv, MAGIC *mg) | |
2308 | { | |
7918f24d | 2309 | PERL_ARGS_ASSERT_MAGIC_SETUTF8; |
96a5add6 | 2310 | PERL_UNUSED_CONTEXT; |
8772537c | 2311 | PERL_UNUSED_ARG(sv); |
7e8c5dac | 2312 | Safefree(mg->mg_ptr); /* The mg_ptr holds the pos cache. */ |
3881461a | 2313 | mg->mg_ptr = NULL; |
7e8c5dac HS |
2314 | mg->mg_len = -1; /* The mg_len holds the len cache. */ |
2315 | return 0; | |
2316 | } | |
2317 | ||
bbce6d69 | 2318 | int |
864dbfa3 | 2319 | Perl_magic_set(pTHX_ SV *sv, MAGIC *mg) |
79072805 | 2320 | { |
97aff369 | 2321 | dVAR; |
e1ec3a88 | 2322 | register const char *s; |
2fdbfb4d AB |
2323 | register I32 paren; |
2324 | register const REGEXP * rx; | |
2325 | const char * const remaining = mg->mg_ptr + 1; | |
79072805 | 2326 | I32 i; |
8990e307 | 2327 | STRLEN len; |
2fdbfb4d | 2328 | |
7918f24d NC |
2329 | PERL_ARGS_ASSERT_MAGIC_SET; |
2330 | ||
79072805 | 2331 | switch (*mg->mg_ptr) { |
2fdbfb4d AB |
2332 | case '\015': /* $^MATCH */ |
2333 | if (strEQ(remaining, "ATCH")) | |
2334 | goto do_match; | |
2335 | case '`': /* ${^PREMATCH} caught below */ | |
2336 | do_prematch: | |
f1b875a0 | 2337 | paren = RX_BUFF_IDX_PREMATCH; |
2fdbfb4d AB |
2338 | goto setparen; |
2339 | case '\'': /* ${^POSTMATCH} caught below */ | |
2340 | do_postmatch: | |
f1b875a0 | 2341 | paren = RX_BUFF_IDX_POSTMATCH; |
2fdbfb4d AB |
2342 | goto setparen; |
2343 | case '&': | |
2344 | do_match: | |
f1b875a0 | 2345 | paren = RX_BUFF_IDX_FULLMATCH; |
2fdbfb4d AB |
2346 | goto setparen; |
2347 | case '1': case '2': case '3': case '4': | |
2348 | case '5': case '6': case '7': case '8': case '9': | |
104a8018 | 2349 | paren = atoi(mg->mg_ptr); |
2fdbfb4d | 2350 | setparen: |
1e05feb3 | 2351 | if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { |
2fdbfb4d AB |
2352 | CALLREG_NUMBUF_STORE((REGEXP * const)rx,paren,sv); |
2353 | break; | |
1e05feb3 | 2354 | } else { |
2fdbfb4d AB |
2355 | /* Croak with a READONLY error when a numbered match var is |
2356 | * set without a previous pattern match. Unless it's C<local $1> | |
2357 | */ | |
2358 | if (!PL_localizing) { | |
f1f66076 | 2359 | Perl_croak(aTHX_ "%s", PL_no_modify); |
2fdbfb4d AB |
2360 | } |
2361 | } | |
748a9306 | 2362 | case '\001': /* ^A */ |
3280af22 | 2363 | sv_setsv(PL_bodytarget, sv); |
748a9306 | 2364 | break; |
49460fe6 | 2365 | case '\003': /* ^C */ |
f2338a2e | 2366 | PL_minus_c = cBOOL(SvIV(sv)); |
49460fe6 NIS |
2367 | break; |
2368 | ||
79072805 | 2369 | case '\004': /* ^D */ |
b4ab917c | 2370 | #ifdef DEBUGGING |
b83604b4 | 2371 | s = SvPV_nolen_const(sv); |
ddcf8bc1 | 2372 | PL_debug = get_debug_opts(&s, 0) | DEBUG_TOP_FLAG; |
a58fb6f9 CS |
2373 | if (DEBUG_x_TEST || DEBUG_B_TEST) |
2374 | dump_all_perl(!DEBUG_B_TEST); | |
b4ab917c | 2375 | #else |
38ab35f8 | 2376 | PL_debug = (SvIV(sv)) | DEBUG_TOP_FLAG; |
b4ab917c | 2377 | #endif |
79072805 | 2378 | break; |
28f23441 | 2379 | case '\005': /* ^E */ |
d0063567 | 2380 | if (*(mg->mg_ptr+1) == '\0') { |
e37778c2 | 2381 | #ifdef VMS |
38ab35f8 | 2382 | set_vaxc_errno(SvIV(sv)); |
e37778c2 NC |
2383 | #else |
2384 | # ifdef WIN32 | |
d0063567 | 2385 | SetLastError( SvIV(sv) ); |
e37778c2 NC |
2386 | # else |
2387 | # ifdef OS2 | |
38ab35f8 | 2388 | os2_setsyserrno(SvIV(sv)); |
e37778c2 | 2389 | # else |
d0063567 | 2390 | /* will anyone ever use this? */ |
38ab35f8 | 2391 | SETERRNO(SvIV(sv), 4); |
048c1ddf IZ |
2392 | # endif |
2393 | # endif | |
22fae026 | 2394 | #endif |
d0063567 DK |
2395 | } |
2396 | else if (strEQ(mg->mg_ptr+1, "NCODING")) { | |
ef8d46e8 | 2397 | SvREFCNT_dec(PL_encoding); |
d0063567 DK |
2398 | if (SvOK(sv) || SvGMAGICAL(sv)) { |
2399 | PL_encoding = newSVsv(sv); | |
2400 | } | |
2401 | else { | |
a0714e2c | 2402 | PL_encoding = NULL; |
d0063567 DK |
2403 | } |
2404 | } | |
2405 | break; | |
79072805 | 2406 | case '\006': /* ^F */ |
38ab35f8 | 2407 | PL_maxsysfd = SvIV(sv); |
79072805 | 2408 | break; |
a0d0e21e | 2409 | case '\010': /* ^H */ |
38ab35f8 | 2410 | PL_hints = SvIV(sv); |
a0d0e21e | 2411 | break; |
9d116dd7 | 2412 | case '\011': /* ^I */ /* NOT \t in EBCDIC */ |
43c5f42d | 2413 | Safefree(PL_inplace); |
bd61b366 | 2414 | PL_inplace = SvOK(sv) ? savesvpv(sv) : NULL; |
da78da6e | 2415 | break; |
28f23441 | 2416 | case '\017': /* ^O */ |
ac27b0f5 | 2417 | if (*(mg->mg_ptr+1) == '\0') { |
43c5f42d | 2418 | Safefree(PL_osname); |
bd61b366 | 2419 | PL_osname = NULL; |
3511154c DM |
2420 | if (SvOK(sv)) { |
2421 | TAINT_PROPER("assigning to $^O"); | |
2e0de35c | 2422 | PL_osname = savesvpv(sv); |
3511154c | 2423 | } |
ac27b0f5 NIS |
2424 | } |
2425 | else if (strEQ(mg->mg_ptr, "\017PEN")) { | |
8b850bd5 NC |
2426 | STRLEN len; |
2427 | const char *const start = SvPV(sv, len); | |
b54fc2b6 | 2428 | const char *out = (const char*)memchr(start, '\0', len); |
8b850bd5 | 2429 | SV *tmp; |
8b850bd5 NC |
2430 | |
2431 | ||
2432 | PL_compiling.cop_hints |= HINT_LEXICAL_IO_IN | HINT_LEXICAL_IO_OUT; | |
f747ebd6 | 2433 | PL_hints |= HINT_LEXICAL_IO_IN | HINT_LEXICAL_IO_OUT; |
8b850bd5 NC |
2434 | |
2435 | /* Opening for input is more common than opening for output, so | |
2436 | ensure that hints for input are sooner on linked list. */ | |
59cd0e26 | 2437 | tmp = out ? newSVpvn_flags(out + 1, start + len - out - 1, |
f747ebd6 Z |
2438 | SvUTF8(sv)) |
2439 | : newSVpvs_flags("", SvUTF8(sv)); | |
2440 | (void)hv_stores(GvHV(PL_hintgv), "open>", tmp); | |
2441 | mg_set(tmp); | |
8b850bd5 | 2442 | |
f747ebd6 Z |
2443 | tmp = newSVpvn_flags(start, out ? (STRLEN)(out - start) : len, |
2444 | SvUTF8(sv)); | |
2445 | (void)hv_stores(GvHV(PL_hintgv), "open<", tmp); | |
2446 | mg_set(tmp); | |
ac27b0f5 | 2447 | } |
28f23441 | 2448 | break; |
79072805 | 2449 | case '\020': /* ^P */ |
2fdbfb4d AB |
2450 | if (*remaining == '\0') { /* ^P */ |
2451 | PL_perldb = SvIV(sv); | |
2452 | if (PL_perldb && !PL_DBsingle) | |
2453 | init_debugger(); | |
2454 | break; | |
2455 | } else if (strEQ(remaining, "REMATCH")) { /* $^PREMATCH */ | |
2456 | goto do_prematch; | |
2457 | } else if (strEQ(remaining, "OSTMATCH")) { /* $^POSTMATCH */ | |
2458 | goto do_postmatch; | |
2459 | } | |
79072805 | 2460 | case '\024': /* ^T */ |
88e89b8a | 2461 | #ifdef BIG_TIME |
6b88bc9c | 2462 | PL_basetime = (Time_t)(SvNOK(sv) ? SvNVX(sv) : sv_2nv(sv)); |
88e89b8a | 2463 | #else |
38ab35f8 | 2464 | PL_basetime = (Time_t)SvIV(sv); |
88e89b8a | 2465 | #endif |
79072805 | 2466 | break; |
e07ea26a NC |
2467 | case '\025': /* ^UTF8CACHE */ |
2468 | if (strEQ(mg->mg_ptr+1, "TF8CACHE")) { | |
2469 | PL_utf8cache = (signed char) sv_2iv(sv); | |
2470 | } | |
2471 | break; | |
fde18df1 | 2472 | case '\027': /* ^W & $^WARNING_BITS */ |
4438c4b7 JH |
2473 | if (*(mg->mg_ptr+1) == '\0') { |
2474 | if ( ! (PL_dowarn & G_WARN_ALL_MASK)) { | |
38ab35f8 | 2475 | i = SvIV(sv); |
ac27b0f5 | 2476 | PL_dowarn = (PL_dowarn & ~G_WARN_ON) |
0453d815 | 2477 | | (i ? G_WARN_ON : G_WARN_OFF) ; |
4438c4b7 | 2478 | } |
599cee73 | 2479 | } |
0a378802 | 2480 | else if (strEQ(mg->mg_ptr+1, "ARNING_BITS")) { |
4438c4b7 | 2481 | if ( ! (PL_dowarn & G_WARN_ALL_MASK)) { |
d775746e GS |
2482 | if (!SvPOK(sv) && PL_localizing) { |
2483 | sv_setpvn(sv, WARN_NONEstring, WARNsize); | |
d3a7d8c7 | 2484 | PL_compiling.cop_warnings = pWARN_NONE; |
d775746e GS |
2485 | break; |
2486 | } | |
f4fc7782 | 2487 | { |
b5477537 | 2488 | STRLEN len, i; |
d3a7d8c7 | 2489 | int accumulate = 0 ; |
f4fc7782 | 2490 | int any_fatals = 0 ; |
b83604b4 | 2491 | const char * const ptr = SvPV_const(sv, len) ; |
f4fc7782 JH |
2492 | for (i = 0 ; i < len ; ++i) { |
2493 | accumulate |= ptr[i] ; | |
2494 | any_fatals |= (ptr[i] & 0xAA) ; | |
2495 | } | |
4243c432 NC |
2496 | if (!accumulate) { |
2497 | if (!specialWARN(PL_compiling.cop_warnings)) | |
2498 | PerlMemShared_free(PL_compiling.cop_warnings); | |
2499 | PL_compiling.cop_warnings = pWARN_NONE; | |
2500 | } | |
72dc9ed5 NC |
2501 | /* Yuck. I can't see how to abstract this: */ |
2502 | else if (isWARN_on(((STRLEN *)SvPV_nolen_const(sv)) - 1, | |
2503 | WARN_ALL) && !any_fatals) { | |
4243c432 NC |
2504 | if (!specialWARN(PL_compiling.cop_warnings)) |
2505 | PerlMemShared_free(PL_compiling.cop_warnings); | |
f4fc7782 JH |
2506 | PL_compiling.cop_warnings = pWARN_ALL; |
2507 | PL_dowarn |= G_WARN_ONCE ; | |
727405f8 | 2508 | } |
d3a7d8c7 | 2509 | else { |
72dc9ed5 NC |
2510 | STRLEN len; |
2511 | const char *const p = SvPV_const(sv, len); | |
2512 | ||
2513 | PL_compiling.cop_warnings | |
8ee4cf24 | 2514 | = Perl_new_warnings_bitfield(aTHX_ PL_compiling.cop_warnings, |
72dc9ed5 NC |
2515 | p, len); |
2516 | ||
d3a7d8c7 GS |
2517 | if (isWARN_on(PL_compiling.cop_warnings, WARN_ONCE)) |
2518 | PL_dowarn |= G_WARN_ONCE ; | |
2519 | } | |
f4fc7782 | 2520 | |
d3a7d8c7 | 2521 | } |
4438c4b7 | 2522 | } |
971a9dd3 | 2523 | } |
79072805 LW |
2524 | break; |
2525 | case '.': | |
3280af22 NIS |
2526 | if (PL_localizing) { |
2527 | if (PL_localizing == 1) | |
7766f137 | 2528 | SAVESPTR(PL_last_in_gv); |
748a9306 | 2529 | } |
3280af22 | 2530 | else if (SvOK(sv) && GvIO(PL_last_in_gv)) |
632db599 | 2531 | IoLINES(GvIOp(PL_last_in_gv)) = SvIV(sv); |
79072805 LW |
2532 | break; |
2533 | case '^': | |
099be4f1 DM |
2534 | if (isGV_with_GP(PL_defoutgv)) { |
2535 | Safefree(IoTOP_NAME(GvIOp(PL_defoutgv))); | |
2536 | s = IoTOP_NAME(GvIOp(PL_defoutgv)) = savesvpv(sv); | |
2537 | IoTOP_GV(GvIOp(PL_defoutgv)) = gv_fetchsv(sv, GV_ADD, SVt_PVIO); | |
2538 | } | |
79072805 LW |
2539 | break; |
2540 | case '~': | |
099be4f1 DM |
2541 | if (isGV_with_GP(PL_defoutgv)) { |
2542 | Safefree(IoFMT_NAME(GvIOp(PL_defoutgv))); | |
2543 | s = IoFMT_NAME(GvIOp(PL_defoutgv)) = savesvpv(sv); | |
2544 | IoFMT_GV(GvIOp(PL_defoutgv)) = gv_fetchsv(sv, GV_ADD, SVt_PVIO); | |
2545 | } | |
79072805 LW |
2546 | break; |
2547 | case '=': | |
099be4f1 DM |
2548 | if (isGV_with_GP(PL_defoutgv)) |
2549 | IoPAGE_LEN(GvIOp(PL_defoutgv)) = (SvIV(sv)); | |
79072805 LW |
2550 | break; |
2551 | case '-': | |
099be4f1 DM |
2552 | if (isGV_with_GP(PL_defoutgv)) { |
2553 | IoLINES_LEFT(GvIOp(PL_defoutgv)) = (SvIV(sv)); | |
2554 | if (IoLINES_LEFT(GvIOp(PL_defoutgv)) < 0L) | |
2555 | IoLINES_LEFT(GvIOp(PL_defoutgv)) = 0L; | |
2556 | } | |
79072805 LW |
2557 | break; |
2558 | case '%': | |
099be4f1 DM |
2559 | if (isGV_with_GP(PL_defoutgv)) |
2560 | IoPAGE(GvIOp(PL_defoutgv)) = (SvIV(sv)); | |
79072805 LW |
2561 | break; |
2562 | case '|': | |
4b65379b | 2563 | { |
099be4f1 | 2564 | IO * const io = GvIO(PL_defoutgv); |
720f287d AB |
2565 | if(!io) |
2566 | break; | |
38ab35f8 | 2567 | if ((SvIV(sv)) == 0) |
4b65379b CS |
2568 | IoFLAGS(io) &= ~IOf_FLUSH; |
2569 | else { | |
2570 | if (!(IoFLAGS(io) & IOf_FLUSH)) { | |
2571 | PerlIO *ofp = IoOFP(io); | |
2572 | if (ofp) | |
2573 | (void)PerlIO_flush(ofp); | |
2574 | IoFLAGS(io) |= IOf_FLUSH; | |
2575 | } | |
2576 | } | |
79072805 LW |
2577 | } |
2578 | break; | |
79072805 | 2579 | case '/': |
3280af22 | 2580 | SvREFCNT_dec(PL_rs); |
8bfdd7d9 | 2581 | PL_rs = newSVsv(sv); |
79072805 LW |
2582 | break; |
2583 | case '\\': | |
ef8d46e8 | 2584 | SvREFCNT_dec(PL_ors_sv); |
009c130f | 2585 | if (SvOK(sv) || SvGMAGICAL(sv)) { |
7889fe52 | 2586 | PL_ors_sv = newSVsv(sv); |
009c130f | 2587 | } |
e3c19b7b | 2588 | else { |
a0714e2c | 2589 | PL_ors_sv = NULL; |
e3c19b7b | 2590 | } |
79072805 | 2591 | break; |
79072805 | 2592 | case '[': |
38ab35f8 | 2593 | CopARYBASE_set(&PL_compiling, SvIV(sv)); |
79072805 LW |
2594 | break; |
2595 | case '?': | |
ff0cee69 | 2596 | #ifdef COMPLEX_STATUS |
6b88bc9c | 2597 | if (PL_localizing == 2) { |
41cb7b2b | 2598 | SvUPGRADE(sv, SVt_PVLV); |
6b88bc9c GS |
2599 | PL_statusvalue = LvTARGOFF(sv); |
2600 | PL_statusvalue_vms = LvTARGLEN(sv); | |
ff0cee69 | 2601 | } |
2602 | else | |
2603 | #endif | |
2604 | #ifdef VMSISH_STATUS | |
2605 | if (VMSISH_STATUS) | |
fb38d079 | 2606 | STATUS_NATIVE_CHILD_SET((U32)SvIV(sv)); |
ff0cee69 | 2607 | else |
2608 | #endif | |
38ab35f8 | 2609 | STATUS_UNIX_EXIT_SET(SvIV(sv)); |
79072805 LW |
2610 | break; |
2611 | case '!': | |
93189314 JH |
2612 | { |
2613 | #ifdef VMS | |
2614 | # define PERL_VMS_BANG vaxc$errno | |
2615 | #else | |
2616 | # define PERL_VMS_BANG 0 | |
2617 | #endif | |
91487cfc | 2618 | SETERRNO(SvIOK(sv) ? SvIVX(sv) : SvOK(sv) ? sv_2iv(sv) : 0, |
93189314 JH |
2619 | (SvIV(sv) == EVMSERR) ? 4 : PERL_VMS_BANG); |
2620 | } | |
79072805 LW |
2621 | break; |
2622 | case '<': | |
38ab35f8 | 2623 | PL_uid = SvIV(sv); |
3280af22 NIS |
2624 | if (PL_delaymagic) { |
2625 | PL_delaymagic |= DM_RUID; | |
79072805 LW |
2626 | break; /* don't do magic till later */ |
2627 | } | |
2628 | #ifdef HAS_SETRUID | |
b28d0864 | 2629 | (void)setruid((Uid_t)PL_uid); |
79072805 LW |
2630 | #else |
2631 | #ifdef HAS_SETREUID | |
3280af22 | 2632 | (void)setreuid((Uid_t)PL_uid, (Uid_t)-1); |
748a9306 | 2633 | #else |
85e6fe83 | 2634 | #ifdef HAS_SETRESUID |
b28d0864 | 2635 | (void)setresuid((Uid_t)PL_uid, (Uid_t)-1, (Uid_t)-1); |
79072805 | 2636 | #else |
75870ed3 | 2637 | if (PL_uid == PL_euid) { /* special case $< = $> */ |
2638 | #ifdef PERL_DARWIN | |
2639 | /* workaround for Darwin's setuid peculiarity, cf [perl #24122] */ | |
2640 | if (PL_uid != 0 && PerlProc_getuid() == 0) | |
2641 | (void)PerlProc_setuid(0); | |
2642 | #endif | |
b28d0864 | 2643 | (void)PerlProc_setuid(PL_uid); |
75870ed3 | 2644 | } else { |
d8eceb89 | 2645 | PL_uid = PerlProc_getuid(); |
cea2e8a9 | 2646 | Perl_croak(aTHX_ "setruid() not implemented"); |
a0d0e21e | 2647 | } |
79072805 LW |
2648 | #endif |
2649 | #endif | |
85e6fe83 | 2650 | #endif |
d8eceb89 | 2651 | PL_uid = PerlProc_getuid(); |
79072805 LW |
2652 | break; |
2653 | case '>': | |
38ab35f8 | 2654 | PL_euid = SvIV(sv); |
3280af22 NIS |
2655 | if (PL_delaymagic) { |
2656 | PL_delaymagic |= DM_EUID; | |
79072805 LW |
2657 | break; /* don't do magic till later */ |
2658 | } | |
2659 | #ifdef HAS_SETEUID | |
3280af22 | 2660 | (void)seteuid((Uid_t)PL_euid); |
79072805 LW |
2661 | #else |
2662 | #ifdef HAS_SETREUID | |
b28d0864 | 2663 | (void)setreuid((Uid_t)-1, (Uid_t)PL_euid); |
85e6fe83 LW |
2664 | #else |
2665 | #ifdef HAS_SETRESUID | |
6b88bc9c | 2666 | (void)setresuid((Uid_t)-1, (Uid_t)PL_euid, (Uid_t)-1); |
79072805 | 2667 | #else |
b28d0864 NIS |
2668 | if (PL_euid == PL_uid) /* special case $> = $< */ |
2669 | PerlProc_setuid(PL_euid); | |
a0d0e21e | 2670 | else { |
e8ee3774 | 2671 | PL_euid = PerlProc_geteuid(); |
cea2e8a9 | 2672 | Perl_croak(aTHX_ "seteuid() not implemented"); |
a0d0e21e | 2673 | } |
79072805 LW |
2674 | #endif |
2675 | #endif | |
85e6fe83 | 2676 | #endif |
d8eceb89 | 2677 | PL_euid = PerlProc_geteuid(); |
79072805 LW |
2678 | break; |
2679 | case '(': | |
38ab35f8 | 2680 | PL_gid = SvIV(sv); |
3280af22 NIS |
2681 | if (PL_delaymagic) { |
2682 | PL_delaymagic |= DM_RGID; | |
79072805 LW |
2683 | break; /* don't do magic till later */ |
2684 | } | |
2685 | #ifdef HAS_SETRGID | |
b28d0864 | 2686 | (void)setrgid((Gid_t)PL_gid); |
79072805 LW |
2687 | #else |
2688 | #ifdef HAS_SETREGID | |
3280af22 | 2689 | (void)setregid((Gid_t)PL_gid, (Gid_t)-1); |
85e6fe83 LW |
2690 | #else |
2691 | #ifdef HAS_SETRESGID | |
b28d0864 | 2692 | (void)setresgid((Gid_t)PL_gid, (Gid_t)-1, (Gid_t) 1); |
79072805 | 2693 | #else |
b28d0864 NIS |
2694 | if (PL_gid == PL_egid) /* special case $( = $) */ |
2695 | (void)PerlProc_setgid(PL_gid); | |
748a9306 | 2696 | else { |
d8eceb89 | 2697 | PL_gid = PerlProc_getgid(); |
cea2e8a9 | 2698 | Perl_croak(aTHX_ "setrgid() not implemented"); |
748a9306 | 2699 | } |
79072805 LW |
2700 | #endif |
2701 | #endif | |
85e6fe83 | 2702 | #endif |
d8eceb89 | 2703 | PL_gid = PerlProc_getgid(); |
79072805 LW |
2704 | break; |
2705 | case ')': | |
5cd24f17 | 2706 | #ifdef HAS_SETGROUPS |
2707 | { | |
b83604b4 | 2708 | const char *p = SvPV_const(sv, len); |
757f63d8 | 2709 | Groups_t *gary = NULL; |
fb4089e0 | 2710 | #ifdef _SC_NGROUPS_MAX |
2711 | int maxgrp = sysconf(_SC_NGROUPS_MAX); | |
2712 | ||
2713 | if (maxgrp < 0) | |
2714 | maxgrp = NGROUPS; | |
2715 | #else | |
2716 | int maxgrp = NGROUPS; | |
2717 | #endif | |
757f63d8 SP |
2718 | |
2719 | while (isSPACE(*p)) | |
2720 | ++p; | |
2721 | PL_egid = Atol(p); | |
fb4089e0 | 2722 | for (i = 0; i < maxgrp; ++i) { |
757f63d8 SP |
2723 | while (*p && !isSPACE(*p)) |
2724 | ++p; | |
2725 | while (isSPACE(*p)) | |
2726 | ++p; | |
2727 | if (!*p) | |
2728 | break; | |
2729 | if(!gary) | |
2730 | Newx(gary, i + 1, Groups_t); | |
2731 | else | |
2732 | Renew(gary, i + 1, Groups_t); | |
2733 | gary[i] = Atol(p); | |
2734 | } | |
2735 | if (i) | |
2736 | (void)setgroups(i, gary); | |
f5a63d97 | 2737 | Safefree(gary); |
5cd24f17 | 2738 | } |
2739 | #else /* HAS_SETGROUPS */ | |
38ab35f8 | 2740 | PL_egid = SvIV(sv); |
5cd24f17 | 2741 | #endif /* HAS_SETGROUPS */ |
3280af22 NIS |
2742 | if (PL_delaymagic) { |
2743 | PL_delaymagic |= DM_EGID; | |
79072805 LW |
2744 | break; /* don't do magic till later */ |
2745 | } | |
2746 | #ifdef HAS_SETEGID | |
3280af22 | 2747 | (void)setegid((Gid_t)PL_egid); |
79072805 LW |
2748 | #else |
2749 | #ifdef HAS_SETREGID | |
b28d0864 | 2750 | (void)setregid((Gid_t)-1, (Gid_t)PL_egid); |
85e6fe83 LW |
2751 | #else |
2752 | #ifdef HAS_SETRESGID | |
b28d0864 | 2753 | (void)setresgid((Gid_t)-1, (Gid_t)PL_egid, (Gid_t)-1); |
79072805 | 2754 | #else |
b28d0864 NIS |
2755 | if (PL_egid == PL_gid) /* special case $) = $( */ |
2756 | (void)PerlProc_setgid(PL_egid); | |
748a9306 | 2757 | else { |
d8eceb89 | 2758 | PL_egid = PerlProc_getegid(); |
cea2e8a9 | 2759 | Perl_croak(aTHX_ "setegid() not implemented"); |
748a9306 | 2760 | } |
79072805 LW |
2761 | #endif |
2762 | #endif | |
85e6fe83 | 2763 | #endif |
d8eceb89 | 2764 | PL_egid = PerlProc_getegid(); |
79072805 LW |
2765 | break; |
2766 | case ':': | |
2d8e6c8d | 2767 | PL_chopset = SvPV_force(sv,len); |
79072805 LW |
2768 | break; |
2769 | case '0': | |
e2975953 | 2770 | LOCK_DOLLARZERO_MUTEX; |
4bc88a62 PS |
2771 | #ifdef HAS_SETPROCTITLE |
2772 | /* The BSDs don't show the argv[] in ps(1) output, they | |
2773 | * show a string from the process struct and provide | |
2774 | * the setproctitle() routine to manipulate that. */ | |
a2722ac9 | 2775 | if (PL_origalen != 1) { |
b83604b4 | 2776 | s = SvPV_const(sv, len); |
98b76f99 | 2777 | # if __FreeBSD_version > 410001 |
9aad2c0e | 2778 | /* The leading "-" removes the "perl: " prefix, |
4bc88a62 PS |
2779 | * but not the "(perl) suffix from the ps(1) |
2780 | * output, because that's what ps(1) shows if the | |
2781 | * argv[] is modified. */ | |
6f2ad931 | 2782 | setproctitle("-%s", s); |
9aad2c0e | 2783 | # else /* old FreeBSDs, NetBSD, OpenBSD, anyBSD */ |
4bc88a62 PS |
2784 | /* This doesn't really work if you assume that |
2785 | * $0 = 'foobar'; will wipe out 'perl' from the $0 | |
2786 | * because in ps(1) output the result will be like | |
2787 | * sprintf("perl: %s (perl)", s) | |
2788 | * I guess this is a security feature: | |
2789 | * one (a user process) cannot get rid of the original name. | |
2790 | * --jhi */ | |
2791 | setproctitle("%s", s); | |
2792 | # endif | |
2793 | } | |
9d3968b2 | 2794 | #elif defined(__hpux) && defined(PSTAT_SETCMD) |
a2722ac9 | 2795 | if (PL_origalen != 1) { |
17aa7f3d | 2796 | union pstun un; |
b83604b4 | 2797 | s = SvPV_const(sv, len); |
6867be6d | 2798 | un.pst_command = (char *)s; |
17aa7f3d JH |
2799 | pstat(PSTAT_SETCMD, un, len, 0, 0); |
2800 | } | |
9d3968b2 | 2801 | #else |
2d2af554 GA |
2802 | if (PL_origalen > 1) { |
2803 | /* PL_origalen is set in perl_parse(). */ | |
2804 | s = SvPV_force(sv,len); | |
2805 | if (len >= (STRLEN)PL_origalen-1) { | |
2806 | /* Longer than original, will be truncated. We assume that | |
2807 | * PL_origalen bytes are available. */ | |
2808 | Copy(s, PL_origargv[0], PL_origalen-1, char); | |
2809 | } | |
2810 | else { | |
2811 | /* Shorter than original, will be padded. */ | |
235ac35d | 2812 | #ifdef PERL_DARWIN |
60777a0d JH |
2813 | /* Special case for Mac OS X: see [perl #38868] */ |
2814 | const int pad = 0; | |
235ac35d | 2815 | #else |
8a89a4f1 MB |
2816 | /* Is the space counterintuitive? Yes. |
2817 | * (You were expecting \0?) | |
2818 | * Does it work? Seems to. (In Linux 2.4.20 at least.) | |
2819 | * --jhi */ | |
60777a0d | 2820 | const int pad = ' '; |
235ac35d | 2821 | #endif |
60777a0d JH |
2822 | Copy(s, PL_origargv[0], len, char); |
2823 | PL_origargv[0][len] = 0; | |
2824 | memset(PL_origargv[0] + len + 1, | |
2825 | pad, PL_origalen - len - 1); | |
2d2af554 GA |
2826 | } |
2827 | PL_origargv[0][PL_origalen-1] = 0; | |
2828 | for (i = 1; i < PL_origargc; i++) | |
2829 | PL_origargv[i] = 0; | |
7636ea95 AB |
2830 | #ifdef HAS_PRCTL_SET_NAME |
2831 | /* Set the legacy process name in addition to the POSIX name on Linux */ | |
2832 | if (prctl(PR_SET_NAME, (unsigned long)s, 0, 0, 0) != 0) { | |
2833 | /* diag_listed_as: SKIPME */ | |
2834 | Perl_croak(aTHX_ "Can't set $0 with prctl(): %s", Strerror(errno)); | |
2835 | } | |
2836 | #endif | |
79072805 | 2837 | } |
9d3968b2 | 2838 | #endif |
e2975953 | 2839 | UNLOCK_DOLLARZERO_MUTEX; |
79072805 LW |
2840 | break; |
2841 | } | |
2842 | return 0; | |
2843 | } | |
2844 | ||
2845 | I32 | |
35a4481c | 2846 | Perl_whichsig(pTHX_ const char *sig) |
79072805 | 2847 | { |
aadb217d | 2848 | register char* const* sigv; |
7918f24d NC |
2849 | |
2850 | PERL_ARGS_ASSERT_WHICHSIG; | |
96a5add6 | 2851 | PERL_UNUSED_CONTEXT; |
79072805 | 2852 | |
aadb217d | 2853 | for (sigv = (char* const*)PL_sig_name; *sigv; sigv++) |
79072805 | 2854 | if (strEQ(sig,*sigv)) |
aadb217d | 2855 | return PL_sig_num[sigv - (char* const*)PL_sig_name]; |
79072805 LW |
2856 | #ifdef SIGCLD |
2857 | if (strEQ(sig,"CHLD")) | |
2858 | return SIGCLD; | |
2859 | #endif | |
2860 | #ifdef SIGCHLD | |
2861 | if (strEQ(sig,"CLD")) | |
2862 | return SIGCHLD; | |
2863 | #endif | |
7f1236c0 | 2864 | return -1; |
79072805 LW |
2865 | } |
2866 | ||
ecfc5424 | 2867 | Signal_t |
1e82f5a6 | 2868 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
b6455c53 | 2869 | Perl_sighandler(int sig, siginfo_t *sip, void *uap PERL_UNUSED_DECL) |
1e82f5a6 SH |
2870 | #else |
2871 | Perl_sighandler(int sig) | |
2872 | #endif | |
79072805 | 2873 | { |
1018e26f NIS |
2874 | #ifdef PERL_GET_SIG_CONTEXT |
2875 | dTHXa(PERL_GET_SIG_CONTEXT); | |
71d280e3 | 2876 | #else |
cea2e8a9 | 2877 | dTHX; |
71d280e3 | 2878 | #endif |
79072805 | 2879 | dSP; |
a0714e2c SS |
2880 | GV *gv = NULL; |
2881 | SV *sv = NULL; | |
8772537c | 2882 | SV * const tSv = PL_Sv; |
601f1833 | 2883 | CV *cv = NULL; |
533c011a | 2884 | OP *myop = PL_op; |
84902520 | 2885 | U32 flags = 0; |
8772537c | 2886 | XPV * const tXpv = PL_Xpv; |
71d280e3 | 2887 | |
3280af22 | 2888 | if (PL_savestack_ix + 15 <= PL_savestack_max) |
84902520 | 2889 | flags |= 1; |
3280af22 | 2890 | if (PL_markstack_ptr < PL_markstack_max - 2) |
84902520 | 2891 | flags |= 4; |
3280af22 | 2892 | if (PL_scopestack_ix < PL_scopestack_max - 3) |
84902520 TB |
2893 | flags |= 16; |
2894 | ||
727405f8 | 2895 | if (!PL_psig_ptr[sig]) { |
99ef548b | 2896 | PerlIO_printf(Perl_error_log, "Signal SIG%s received, but no signal handler set.\n", |
727405f8 NIS |
2897 | PL_sig_name[sig]); |
2898 | exit(sig); | |
2899 | } | |
ff0cee69 | 2900 | |
84902520 TB |
2901 | /* Max number of items pushed there is 3*n or 4. We cannot fix |
2902 | infinity, so we fix 4 (in fact 5): */ | |
2903 | if (flags & 1) { | |
3280af22 | 2904 | PL_savestack_ix += 5; /* Protect save in progress. */ |
8772537c | 2905 | SAVEDESTRUCTOR_X(S_unwind_handler_stack, (void*)&flags); |
84902520 | 2906 | } |
ac27b0f5 | 2907 | if (flags & 4) |
3280af22 | 2908 | PL_markstack_ptr++; /* Protect mark. */ |
84902520 | 2909 | if (flags & 16) |
3280af22 | 2910 | PL_scopestack_ix += 1; |
84902520 | 2911 | /* sv_2cv is too complicated, try a simpler variant first: */ |
ea726b52 | 2912 | if (!SvROK(PL_psig_ptr[sig]) || !(cv = MUTABLE_CV(SvRV(PL_psig_ptr[sig]))) |
8772537c AL |
2913 | || SvTYPE(cv) != SVt_PVCV) { |
2914 | HV *st; | |
f2c0649b | 2915 | cv = sv_2cv(PL_psig_ptr[sig], &st, &gv, GV_ADD); |
8772537c | 2916 | } |
84902520 | 2917 | |
a0d0e21e | 2918 | if (!cv || !CvROOT(cv)) { |
a2a5de95 NC |
2919 | Perl_ck_warner(aTHX_ packWARN(WARN_SIGNAL), "SIG%s handler \"%s\" not defined.\n", |
2920 | PL_sig_name[sig], (gv ? GvENAME(gv) | |
2921 | : ((cv && CvGV(cv)) | |
2922 | ? GvENAME(CvGV(cv)) | |
2923 | : "__ANON__"))); | |
00d579c5 | 2924 | goto cleanup; |
79072805 LW |
2925 | } |
2926 | ||
22c35a8c | 2927 | if(PL_psig_name[sig]) { |
b37c2d43 | 2928 | sv = SvREFCNT_inc_NN(PL_psig_name[sig]); |
84902520 | 2929 | flags |= 64; |
df3728a2 | 2930 | #if !defined(PERL_IMPLICIT_CONTEXT) |
27da23d5 | 2931 | PL_sig_sv = sv; |
df3728a2 | 2932 | #endif |
84902520 | 2933 | } else { |
ff0cee69 | 2934 | sv = sv_newmortal(); |
22c35a8c | 2935 | sv_setpv(sv,PL_sig_name[sig]); |
88e89b8a | 2936 | } |
e336de0d | 2937 | |
e788e7d3 | 2938 | PUSHSTACKi(PERLSI_SIGNAL); |
924508f0 | 2939 | PUSHMARK(SP); |
79072805 | 2940 | PUSHs(sv); |
8aad04aa JH |
2941 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
2942 | { | |
2943 | struct sigaction oact; | |
2944 | ||
2945 | if (sigaction(sig, 0, &oact) == 0 && oact.sa_flags & SA_SIGINFO) { | |
8aad04aa JH |
2946 | if (sip) { |
2947 | HV *sih = newHV(); | |
ad64d0ec | 2948 | SV *rv = newRV_noinc(MUTABLE_SV(sih)); |
8aad04aa JH |
2949 | /* The siginfo fields signo, code, errno, pid, uid, |
2950 | * addr, status, and band are defined by POSIX/SUSv3. */ | |
85771703 NC |
2951 | (void)hv_stores(sih, "signo", newSViv(sip->si_signo)); |
2952 | (void)hv_stores(sih, "code", newSViv(sip->si_code)); | |
79dec0f4 | 2953 | #if 0 /* XXX TODO: Configure scan for the existence of these, but even that does not help if the SA_SIGINFO is not implemented according to the spec. */ |
85771703 NC |
2954 | hv_stores(sih, "errno", newSViv(sip->si_errno)); |
2955 | hv_stores(sih, "status", newSViv(sip->si_status)); | |
2956 | hv_stores(sih, "uid", newSViv(sip->si_uid)); | |
2957 | hv_stores(sih, "pid", newSViv(sip->si_pid)); | |
2958 | hv_stores(sih, "addr", newSVuv(PTR2UV(sip->si_addr))); | |
2959 | hv_stores(sih, "band", newSViv(sip->si_band)); | |
79dec0f4 | 2960 | #endif |
8aad04aa | 2961 | EXTEND(SP, 2); |
ad64d0ec | 2962 | PUSHs(rv); |
22f1178f | 2963 | mPUSHp((char *)sip, sizeof(*sip)); |
8aad04aa | 2964 | } |
b4552a27 | 2965 | |
8aad04aa JH |
2966 | } |
2967 | } | |
2968 | #endif | |
79072805 | 2969 | PUTBACK; |
a0d0e21e | 2970 | |
ad64d0ec | 2971 | call_sv(MUTABLE_SV(cv), G_DISCARD|G_EVAL); |
79072805 | 2972 | |
d3acc0f7 | 2973 | POPSTACK; |
1b266415 | 2974 | if (SvTRUE(ERRSV)) { |
1d615522 | 2975 | #ifndef PERL_MICRO |
983dbef6 | 2976 | #ifdef HAS_SIGPROCMASK |
1b266415 NIS |
2977 | /* Handler "died", for example to get out of a restart-able read(). |
2978 | * Before we re-do that on its behalf re-enable the signal which was | |
2979 | * blocked by the system when we entered. | |
2980 | */ | |
2981 | sigset_t set; | |
2982 | sigemptyset(&set); | |
2983 | sigaddset(&set,sig); | |
2984 | sigprocmask(SIG_UNBLOCK, &set, NULL); | |
2985 | #else | |
2986 | /* Not clear if this will work */ | |
2987 | (void)rsignal(sig, SIG_IGN); | |
5c1546dc | 2988 | (void)rsignal(sig, PL_csighandlerp); |
1b266415 | 2989 | #endif |
1d615522 | 2990 | #endif /* !PERL_MICRO */ |
bd61b366 | 2991 | Perl_die(aTHX_ NULL); |
1b266415 | 2992 | } |
00d579c5 | 2993 | cleanup: |
84902520 | 2994 | if (flags & 1) |
3280af22 | 2995 | PL_savestack_ix -= 8; /* Unprotect save in progress. */ |
ac27b0f5 | 2996 | if (flags & 4) |
3280af22 | 2997 | PL_markstack_ptr--; |
84902520 | 2998 | if (flags & 16) |
3280af22 | 2999 | PL_scopestack_ix -= 1; |
84902520 TB |
3000 | if (flags & 64) |
3001 | SvREFCNT_dec(sv); | |
533c011a | 3002 | PL_op = myop; /* Apparently not needed... */ |
ac27b0f5 | 3003 | |
3280af22 NIS |
3004 | PL_Sv = tSv; /* Restore global temporaries. */ |
3005 | PL_Xpv = tXpv; | |
53bb94e2 | 3006 | return; |
79072805 | 3007 | } |
4e35701f NIS |
3008 | |
3009 | ||
51371543 | 3010 | static void |
8772537c | 3011 | S_restore_magic(pTHX_ const void *p) |
51371543 | 3012 | { |
97aff369 | 3013 | dVAR; |
8772537c AL |
3014 | MGS* const mgs = SSPTR(PTR2IV(p), MGS*); |
3015 | SV* const sv = mgs->mgs_sv; | |
51371543 GS |
3016 | |
3017 | if (!sv) | |
3018 | return; | |
3019 | ||
3020 | if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) | |
3021 | { | |
f8c7b90f | 3022 | #ifdef PERL_OLD_COPY_ON_WRITE |
f9701176 NC |
3023 | /* While magic was saved (and off) sv_setsv may well have seen |
3024 | this SV as a prime candidate for COW. */ | |
3025 | if (SvIsCOW(sv)) | |
e424a81e | 3026 | sv_force_normal_flags(sv, 0); |
f9701176 NC |
3027 | #endif |
3028 | ||
f9c6fee5 CS |
3029 | if (mgs->mgs_readonly) |
3030 | SvREADONLY_on(sv); | |
3031 | if (mgs->mgs_magical) | |
3032 | SvFLAGS(sv) |= mgs->mgs_magical; | |
51371543 GS |
3033 | else |
3034 | mg_magical(sv); | |
2b77b520 YST |
3035 | if (SvGMAGICAL(sv)) { |
3036 | /* downgrade public flags to private, | |
3037 | and discard any other private flags */ | |
3038 | ||
10edeb5d JH |
3039 | const U32 pubflags = SvFLAGS(sv) & (SVf_IOK|SVf_NOK|SVf_POK); |
3040 | if (pubflags) { | |
3041 | SvFLAGS(sv) &= ~( pubflags | (SVp_IOK|SVp_NOK|SVp_POK) ); | |
3042 | SvFLAGS(sv) |= ( pubflags << PRIVSHIFT ); | |
2b77b520 YST |
3043 | } |
3044 | } | |
51371543 GS |
3045 | } |
3046 | ||
3047 | mgs->mgs_sv = NULL; /* mark the MGS structure as restored */ | |
3048 | ||
3049 | /* If we're still on top of the stack, pop us off. (That condition | |
3050 | * will be satisfied if restore_magic was called explicitly, but *not* | |
3051 | * if it's being called via leave_scope.) | |
3052 | * The reason for doing this is that otherwise, things like sv_2cv() | |
3053 | * may leave alloc gunk on the savestack, and some code | |
3054 | * (e.g. sighandler) doesn't expect that... | |
3055 | */ | |
3056 | if (PL_savestack_ix == mgs->mgs_ss_ix) | |
3057 | { | |
3058 | I32 popval = SSPOPINT; | |
c76ac1ee | 3059 | assert(popval == SAVEt_DESTRUCTOR_X); |
51371543 GS |
3060 | PL_savestack_ix -= 2; |
3061 | popval = SSPOPINT; | |
3062 | assert(popval == SAVEt_ALLOC); | |
3063 | popval = SSPOPINT; | |
3064 | PL_savestack_ix -= popval; | |
3065 | } | |
3066 | ||
3067 | } | |
3068 | ||
3069 | static void | |
8772537c | 3070 | S_unwind_handler_stack(pTHX_ const void *p) |
51371543 | 3071 | { |
27da23d5 | 3072 | dVAR; |
e1ec3a88 | 3073 | const U32 flags = *(const U32*)p; |
51371543 | 3074 | |
7918f24d NC |
3075 | PERL_ARGS_ASSERT_UNWIND_HANDLER_STACK; |
3076 | ||
51371543 GS |
3077 | if (flags & 1) |
3078 | PL_savestack_ix -= 5; /* Unprotect save in progress. */ | |
df3728a2 | 3079 | #if !defined(PERL_IMPLICIT_CONTEXT) |
51371543 | 3080 | if (flags & 64) |
27da23d5 | 3081 | SvREFCNT_dec(PL_sig_sv); |
df3728a2 | 3082 | #endif |
51371543 | 3083 | } |
1018e26f | 3084 | |
66610fdd | 3085 | /* |
b3ca2e83 NC |
3086 | =for apidoc magic_sethint |
3087 | ||
3088 | Triggered by a store to %^H, records the key/value pair to | |
c28fe1ec NC |
3089 | C<PL_compiling.cop_hints_hash>. It is assumed that hints aren't storing |
3090 | anything that would need a deep copy. Maybe we should warn if we find a | |
3091 | reference. | |
b3ca2e83 NC |
3092 | |
3093 | =cut | |
3094 | */ | |
3095 | int | |
3096 | Perl_magic_sethint(pTHX_ SV *sv, MAGIC *mg) | |
3097 | { | |
3098 | dVAR; | |
ad64d0ec | 3099 | SV *key = (mg->mg_len == HEf_SVKEY) ? MUTABLE_SV(mg->mg_ptr) |
59cd0e26 | 3100 | : newSVpvn_flags(mg->mg_ptr, mg->mg_len, SVs_TEMP); |
b3ca2e83 | 3101 | |
7918f24d NC |
3102 | PERL_ARGS_ASSERT_MAGIC_SETHINT; |
3103 | ||
e6e3e454 NC |
3104 | /* mg->mg_obj isn't being used. If needed, it would be possible to store |
3105 | an alternative leaf in there, with PL_compiling.cop_hints being used if | |
3106 | it's NULL. If needed for threads, the alternative could lock a mutex, | |
3107 | or take other more complex action. */ | |
3108 | ||
5b9c0671 NC |
3109 | /* Something changed in %^H, so it will need to be restored on scope exit. |
3110 | Doing this here saves a lot of doing it manually in perl code (and | |
3111 | forgetting to do it, and consequent subtle errors. */ | |
3112 | PL_hints |= HINT_LOCALIZE_HH; | |
c28fe1ec | 3113 | PL_compiling.cop_hints_hash |
fc92a12d | 3114 | = Perl_refcounted_he_new(aTHX_ PL_compiling.cop_hints_hash, key, sv); |
b3ca2e83 NC |
3115 | return 0; |
3116 | } | |
3117 | ||
3118 | /* | |
f175cff5 | 3119 | =for apidoc magic_clearhint |
b3ca2e83 | 3120 | |
c28fe1ec NC |
3121 | Triggered by a delete from %^H, records the key to |
3122 | C<PL_compiling.cop_hints_hash>. | |
b3ca2e83 NC |
3123 | |
3124 | =cut | |
3125 | */ | |
3126 | int | |
3127 | Perl_magic_clearhint(pTHX_ SV *sv, MAGIC *mg) | |
3128 | { | |
3129 | dVAR; | |
7918f24d NC |
3130 | |
3131 | PERL_ARGS_ASSERT_MAGIC_CLEARHINT; | |
f5a63d97 AL |
3132 | PERL_UNUSED_ARG(sv); |
3133 | ||
b3ca2e83 NC |
3134 | assert(mg->mg_len == HEf_SVKEY); |
3135 | ||
b3f24c00 MHM |
3136 | PERL_UNUSED_ARG(sv); |
3137 | ||
5b9c0671 | 3138 | PL_hints |= HINT_LOCALIZE_HH; |
c28fe1ec NC |
3139 | PL_compiling.cop_hints_hash |
3140 | = Perl_refcounted_he_new(aTHX_ PL_compiling.cop_hints_hash, | |
ad64d0ec | 3141 | MUTABLE_SV(mg->mg_ptr), &PL_sv_placeholder); |
b3ca2e83 NC |
3142 | return 0; |
3143 | } | |
3144 | ||
3145 | /* | |
f747ebd6 Z |
3146 | =for apidoc magic_clearhints |
3147 | ||
3148 | Triggered by clearing %^H, resets C<PL_compiling.cop_hints_hash>. | |
3149 | ||
3150 | =cut | |
3151 | */ | |
3152 | int | |
3153 | Perl_magic_clearhints(pTHX_ SV *sv, MAGIC *mg) | |
3154 | { | |
3155 | PERL_ARGS_ASSERT_MAGIC_CLEARHINTS; | |
3156 | PERL_UNUSED_ARG(sv); | |
3157 | PERL_UNUSED_ARG(mg); | |
3158 | if (PL_compiling.cop_hints_hash) { | |
3159 | Perl_refcounted_he_free(aTHX_ PL_compiling.cop_hints_hash); | |
3160 | PL_compiling.cop_hints_hash = NULL; | |
3161 | } | |
3162 | return 0; | |
3163 | } | |
3164 | ||
3165 | /* | |
66610fdd RGS |
3166 | * Local variables: |
3167 | * c-indentation-style: bsd | |
3168 | * c-basic-offset: 4 | |
3169 | * indent-tabs-mode: t | |
3170 | * End: | |
3171 | * | |
37442d52 RGS |
3172 | * ex: set ts=8 sts=4 sw=4 noet: |
3173 | */ |