c20011e4197adb69f1e9fdbef4ad237aadba2107
[p5sagit/p5-mst-13.2.git] / ext / Storable / Storable.xs
1 /*
2  *  Store and retrieve mechanism.
3  *
4  *  Copyright (c) 1995-2000, Raphael Manfredi
5  *  
6  *  You may redistribute only under the same terms as Perl 5, as specified
7  *  in the README file that comes with the distribution.
8  *
9  */
10
11 #define PERL_NO_GET_CONTEXT     /* we want efficiency */
12 #include <EXTERN.h>
13 #include <perl.h>
14 #include <XSUB.h>
15
16 #ifndef PATCHLEVEL
17 #include <patchlevel.h>         /* Perl's one, needed since 5.6 */
18 #endif
19
20 #if !defined(PERL_VERSION) || PERL_VERSION < 8
21 #include "ppport.h"             /* handle old perls */
22 #endif
23
24 #ifndef NETWARE
25 #if 0
26 #define DEBUGME /* Debug mode, turns assertions on as well */
27 #define DASSERT /* Assertion mode */
28 #endif
29 #else   /* NETWARE */
30 #if 0   /* On NetWare USE_PERLIO is not used */
31 #define DEBUGME /* Debug mode, turns assertions on as well */
32 #define DASSERT /* Assertion mode */
33 #endif
34 #endif
35
36 /*
37  * Pre PerlIO time when none of USE_PERLIO and PERLIO_IS_STDIO is defined
38  * Provide them with the necessary defines so they can build with pre-5.004.
39  */
40 #ifndef USE_PERLIO
41 #ifndef PERLIO_IS_STDIO
42 #define PerlIO FILE
43 #define PerlIO_getc(x) getc(x)
44 #define PerlIO_putc(f,x) putc(x,f)
45 #define PerlIO_read(x,y,z) fread(y,1,z,x)
46 #define PerlIO_write(x,y,z) fwrite(y,1,z,x)
47 #define PerlIO_stdoutf printf
48 #endif  /* PERLIO_IS_STDIO */
49 #endif  /* USE_PERLIO */
50
51 /*
52  * Earlier versions of perl might be used, we can't assume they have the latest!
53  */
54
55 #ifndef PERL_VERSION            /* For perls < 5.6 */
56 #define PERL_VERSION PATCHLEVEL
57 #ifndef newRV_noinc
58 #define newRV_noinc(sv)         ((Sv = newRV(sv)), --SvREFCNT(SvRV(Sv)), Sv)
59 #endif
60 #if (PATCHLEVEL <= 4)           /* Older perls (<= 5.004) lack PL_ namespace */
61 #define PL_sv_yes       sv_yes
62 #define PL_sv_no        sv_no
63 #define PL_sv_undef     sv_undef
64 #if (SUBVERSION <= 4)           /* 5.004_04 has been reported to lack newSVpvn */
65 #define newSVpvn newSVpv
66 #endif
67 #endif                                          /* PATCHLEVEL <= 4 */
68 #ifndef HvSHAREKEYS_off
69 #define HvSHAREKEYS_off(hv)     /* Ignore */
70 #endif
71 #ifndef AvFILLp                         /* Older perls (<=5.003) lack AvFILLp */
72 #define AvFILLp AvFILL
73 #endif
74 typedef double NV;                      /* Older perls lack the NV type */
75 #define IVdf            "ld"    /* Various printf formats for Perl types */
76 #define UVuf            "lu"
77 #define UVof            "lo"
78 #define UVxf            "lx"
79 #define INT2PTR(t,v) (t)(IV)(v)
80 #define PTR2UV(v)    (unsigned long)(v)
81 #endif                                          /* PERL_VERSION -- perls < 5.6 */
82
83 #ifndef NVef                            /* The following were not part of perl 5.6 */
84 #if defined(USE_LONG_DOUBLE) && \
85         defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
86 #define NVef            PERL_PRIeldbl
87 #define NVff            PERL_PRIfldbl
88 #define NVgf            PERL_PRIgldbl
89 #else
90 #define NVef            "e"
91 #define NVff            "f"
92 #define NVgf            "g"
93 #endif
94 #endif
95
96 #ifdef DEBUGME
97
98 #ifndef DASSERT
99 #define DASSERT
100 #endif
101
102 /*
103  * TRACEME() will only output things when the $Storable::DEBUGME is true.
104  */
105
106 #define TRACEME(x)                                                                              \
107   STMT_START {                                                                                  \
108         if (SvTRUE(perl_get_sv("Storable::DEBUGME", TRUE)))     \
109                 { PerlIO_stdoutf x; PerlIO_stdoutf("\n"); }             \
110   } STMT_END
111 #else
112 #define TRACEME(x)
113 #endif  /* DEBUGME */
114
115 #ifdef DASSERT
116 #define ASSERT(x,y)                                                                             \
117   STMT_START {                                                                                  \
118         if (!(x)) {                                                                                             \
119                 PerlIO_stdoutf("ASSERT FAILED (\"%s\", line %d): ",     \
120                         __FILE__, __LINE__);                                                    \
121                 PerlIO_stdoutf y; PerlIO_stdoutf("\n");                         \
122         }                                                                                                               \
123   } STMT_END
124 #else
125 #define ASSERT(x,y)
126 #endif
127
128 /*
129  * Type markers.
130  */
131
132 #define C(x) ((char) (x))       /* For markers with dynamic retrieval handling */
133
134 #define SX_OBJECT       C(0)    /* Already stored object */
135 #define SX_LSCALAR      C(1)    /* Scalar (large binary) follows (length, data) */
136 #define SX_ARRAY        C(2)    /* Array forthcominng (size, item list) */
137 #define SX_HASH         C(3)    /* Hash forthcoming (size, key/value pair list) */
138 #define SX_REF          C(4)    /* Reference to object forthcoming */
139 #define SX_UNDEF        C(5)    /* Undefined scalar */
140 #define SX_INTEGER      C(6)    /* Integer forthcoming */
141 #define SX_DOUBLE       C(7)    /* Double forthcoming */
142 #define SX_BYTE         C(8)    /* (signed) byte forthcoming */
143 #define SX_NETINT       C(9)    /* Integer in network order forthcoming */
144 #define SX_SCALAR       C(10)   /* Scalar (binary, small) follows (length, data) */
145 #define SX_TIED_ARRAY   C(11)   /* Tied array forthcoming */
146 #define SX_TIED_HASH    C(12)   /* Tied hash forthcoming */
147 #define SX_TIED_SCALAR  C(13)   /* Tied scalar forthcoming */
148 #define SX_SV_UNDEF     C(14)   /* Perl's immortal PL_sv_undef */
149 #define SX_SV_YES       C(15)   /* Perl's immortal PL_sv_yes */
150 #define SX_SV_NO        C(16)   /* Perl's immortal PL_sv_no */
151 #define SX_BLESS        C(17)   /* Object is blessed */
152 #define SX_IX_BLESS     C(18)   /* Object is blessed, classname given by index */
153 #define SX_HOOK         C(19)   /* Stored via hook, user-defined */
154 #define SX_OVERLOAD     C(20)   /* Overloaded reference */
155 #define SX_TIED_KEY     C(21)   /* Tied magic key forthcoming */
156 #define SX_TIED_IDX     C(22)   /* Tied magic index forthcoming */
157 #define SX_UTF8STR      C(23)   /* UTF-8 string forthcoming (small) */
158 #define SX_LUTF8STR     C(24)   /* UTF-8 string forthcoming (large) */
159 #define SX_FLAG_HASH    C(25)   /* Hash with flags forthcoming (size, flags, key/flags/value triplet list) */
160 #define SX_CODE         C(26)   /* Code references as perl source code */
161 #define SX_WEAKREF      C(27)   /* Weak reference to object forthcoming */
162 #define SX_WEAKOVERLOAD C(28)   /* Overloaded weak reference */
163 #define SX_ERROR        C(29)   /* Error */
164
165 /*
166  * Those are only used to retrieve "old" pre-0.6 binary images.
167  */
168 #define SX_ITEM         'i'             /* An array item introducer */
169 #define SX_IT_UNDEF     'I'             /* Undefined array item */
170 #define SX_KEY          'k'             /* A hash key introducer */
171 #define SX_VALUE        'v'             /* A hash value introducer */
172 #define SX_VL_UNDEF     'V'             /* Undefined hash value */
173
174 /*
175  * Those are only used to retrieve "old" pre-0.7 binary images
176  */
177
178 #define SX_CLASS        'b'             /* Object is blessed, class name length <255 */
179 #define SX_LG_CLASS     'B'             /* Object is blessed, class name length >255 */
180 #define SX_STORED       'X'             /* End of object */
181
182 /*
183  * Limits between short/long length representation.
184  */
185
186 #define LG_SCALAR       255             /* Large scalar length limit */
187 #define LG_BLESS        127             /* Large classname bless limit */
188
189 /*
190  * Operation types
191  */
192
193 #define ST_STORE        0x1             /* Store operation */
194 #define ST_RETRIEVE     0x2             /* Retrieval operation */
195 #define ST_CLONE        0x4             /* Deep cloning operation */
196
197 /*
198  * The following structure is used for hash table key retrieval. Since, when
199  * retrieving objects, we'll be facing blessed hash references, it's best
200  * to pre-allocate that buffer once and resize it as the need arises, never
201  * freeing it (keys will be saved away someplace else anyway, so even large
202  * keys are not enough a motivation to reclaim that space).
203  *
204  * This structure is also used for memory store/retrieve operations which
205  * happen in a fixed place before being malloc'ed elsewhere if persistency
206  * is required. Hence the aptr pointer.
207  */
208 struct extendable {
209         char *arena;            /* Will hold hash key strings, resized as needed */
210         STRLEN asiz;            /* Size of aforementionned buffer */
211         char *aptr;                     /* Arena pointer, for in-place read/write ops */
212         char *aend;                     /* First invalid address */
213 };
214
215 /*
216  * At store time:
217  * A hash table records the objects which have already been stored.
218  * Those are referred to as SX_OBJECT in the file, and their "tag" (i.e.
219  * an arbitrary sequence number) is used to identify them.
220  *
221  * At retrieve time:
222  * An array table records the objects which have already been retrieved,
223  * as seen by the tag determind by counting the objects themselves. The
224  * reference to that retrieved object is kept in the table, and is returned
225  * when an SX_OBJECT is found bearing that same tag.
226  *
227  * The same processing is used to record "classname" for blessed objects:
228  * indexing by a hash at store time, and via an array at retrieve time.
229  */
230
231 typedef unsigned long stag_t;   /* Used by pre-0.6 binary format */
232
233 /*
234  * The following "thread-safe" related defines were contributed by
235  * Murray Nesbitt <murray@activestate.com> and integrated by RAM, who
236  * only renamed things a little bit to ensure consistency with surrounding
237  * code.        -- RAM, 14/09/1999
238  *
239  * The original patch suffered from the fact that the stcxt_t structure
240  * was global.  Murray tried to minimize the impact on the code as much as
241  * possible.
242  *
243  * Starting with 0.7, Storable can be re-entrant, via the STORABLE_xxx hooks
244  * on objects.  Therefore, the notion of context needs to be generalized,
245  * threading or not.
246  */
247
248 #define MY_VERSION "Storable(" XS_VERSION ")"
249
250
251 /*
252  * Conditional UTF8 support.
253  *
254  */
255 #ifdef SvUTF8_on
256 #define STORE_UTF8STR(pv, len)  STORE_PV_LEN(pv, len, SX_UTF8STR, SX_LUTF8STR)
257 #define HAS_UTF8_SCALARS
258 #ifdef HeKUTF8
259 #define HAS_UTF8_HASHES
260 #define HAS_UTF8_ALL
261 #else
262 /* 5.6 perl has utf8 scalars but not hashes */
263 #endif
264 #else
265 #define SvUTF8(sv) 0
266 #define STORE_UTF8STR(pv, len) CROAK(("panic: storing UTF8 in non-UTF8 perl"))
267 #endif
268 #ifndef HAS_UTF8_ALL
269 #define UTF8_CROAK() CROAK(("Cannot retrieve UTF8 data in non-UTF8 perl"))
270 #endif
271 #ifndef SvWEAKREF
272 #define WEAKREF_CROAK() CROAK(("Cannot retrieve weak references in this perl"))
273 #endif
274
275 #ifdef HvPLACEHOLDERS
276 #define HAS_RESTRICTED_HASHES
277 #else
278 #define HVhek_PLACEHOLD 0x200
279 #define RESTRICTED_HASH_CROAK() CROAK(("Cannot retrieve restricted hash"))
280 #endif
281
282 #ifdef HvHASKFLAGS
283 #define HAS_HASH_KEY_FLAGS
284 #endif
285
286 /*
287  * Fields s_tainted and s_dirty are prefixed with s_ because Perl's include
288  * files remap tainted and dirty when threading is enabled.  That's bad for
289  * perl to remap such common words.     -- RAM, 29/09/00
290  */
291
292 typedef struct stcxt {
293         int entry;                      /* flags recursion */
294         int optype;                     /* type of traversal operation */
295         HV *hseen;                      /* which objects have been seen, store time */
296         AV *hook_seen;          /* which SVs were returned by STORABLE_freeze() */
297         AV *aseen;                      /* which objects have been seen, retrieve time */
298         IV where_is_undef;              /* index in aseen of PL_sv_undef */
299         HV *hclass;                     /* which classnames have been seen, store time */
300         AV *aclass;                     /* which classnames have been seen, retrieve time */
301         HV *hook;                       /* cache for hook methods per class name */
302         IV tagnum;                      /* incremented at store time for each seen object */
303         IV classnum;            /* incremented at store time for each seen classname */
304         int netorder;           /* true if network order used */
305         int s_tainted;          /* true if input source is tainted, at retrieve time */
306         int forgive_me;         /* whether to be forgiving... */
307         int deparse;        /* whether to deparse code refs */
308         SV *eval;           /* whether to eval source code */
309         int canonical;          /* whether to store hashes sorted by key */
310 #ifndef HAS_RESTRICTED_HASHES
311         int derestrict;         /* whether to downgrade restrcted hashes */
312 #endif
313 #ifndef HAS_UTF8_ALL
314         int use_bytes;         /* whether to bytes-ify utf8 */
315 #endif
316         int accept_future_minor; /* croak immediately on future minor versions?  */
317         int s_dirty;            /* context is dirty due to CROAK() -- can be cleaned */
318         int membuf_ro;          /* true means membuf is read-only and msaved is rw */
319         struct extendable keybuf;       /* for hash key retrieval */
320         struct extendable membuf;       /* for memory store/retrieve operations */
321         struct extendable msaved;       /* where potentially valid mbuf is saved */
322         PerlIO *fio;            /* where I/O are performed, NULL for memory */
323         int ver_major;          /* major of version for retrieved object */
324         int ver_minor;          /* minor of version for retrieved object */
325         SV *(**retrieve_vtbl)();        /* retrieve dispatch table */
326         SV *prev;               /* contexts chained backwards in real recursion */
327         SV *my_sv;              /* the blessed scalar who's SvPVX() I am */
328 } stcxt_t;
329
330 #define NEW_STORABLE_CXT_OBJ(cxt)                                       \
331   STMT_START {                                                                          \
332         SV *self = newSV(sizeof(stcxt_t) - 1);                  \
333         SV *my_sv = newRV_noinc(self);                                  \
334         sv_bless(my_sv, gv_stashpv("Storable::Cxt", TRUE));     \
335         cxt = (stcxt_t *)SvPVX(self);                                   \
336         Zero(cxt, 1, stcxt_t);                                                  \
337         cxt->my_sv = my_sv;                                                             \
338   } STMT_END
339
340 #if defined(MULTIPLICITY) || defined(PERL_OBJECT) || defined(PERL_CAPI)
341
342 #if (PATCHLEVEL <= 4) && (SUBVERSION < 68)
343 #define dSTCXT_SV                                                                       \
344         SV *perinterp_sv = perl_get_sv(MY_VERSION, FALSE)
345 #else   /* >= perl5.004_68 */
346 #define dSTCXT_SV                                                                       \
347         SV *perinterp_sv = *hv_fetch(PL_modglobal,              \
348                 MY_VERSION, sizeof(MY_VERSION)-1, TRUE)
349 #endif  /* < perl5.004_68 */
350
351 #define dSTCXT_PTR(T,name)                                                      \
352         T name = ((perinterp_sv && SvIOK(perinterp_sv) && SvIVX(perinterp_sv)   \
353                                 ? (T)SvPVX(SvRV(INT2PTR(SV*,SvIVX(perinterp_sv)))) : (T) 0))
354 #define dSTCXT                                                                          \
355         dSTCXT_SV;                                                                              \
356         dSTCXT_PTR(stcxt_t *, cxt)
357
358 #define INIT_STCXT                                                      \
359         dSTCXT;                                                                 \
360         NEW_STORABLE_CXT_OBJ(cxt);                              \
361         sv_setiv(perinterp_sv, PTR2IV(cxt->my_sv))
362
363 #define SET_STCXT(x)                                                            \
364   STMT_START {                                                                          \
365         dSTCXT_SV;                                                                              \
366         sv_setiv(perinterp_sv, PTR2IV(x->my_sv));               \
367   } STMT_END
368
369 #else /* !MULTIPLICITY && !PERL_OBJECT && !PERL_CAPI */
370
371 static stcxt_t *Context_ptr = NULL;
372 #define dSTCXT                  stcxt_t *cxt = Context_ptr
373 #define SET_STCXT(x)            Context_ptr = x
374 #define INIT_STCXT                                              \
375         dSTCXT;                                                         \
376         NEW_STORABLE_CXT_OBJ(cxt);                      \
377         SET_STCXT(cxt)
378
379
380 #endif /* MULTIPLICITY || PERL_OBJECT || PERL_CAPI */
381
382 /*
383  * KNOWN BUG:
384  *   Croaking implies a memory leak, since we don't use setjmp/longjmp
385  *   to catch the exit and free memory used during store or retrieve
386  *   operations.  This is not too difficult to fix, but I need to understand
387  *   how Perl does it, and croaking is exceptional anyway, so I lack the
388  *   motivation to do it.
389  *
390  * The current workaround is to mark the context as dirty when croaking,
391  * so that data structures can be freed whenever we renter Storable code
392  * (but only *then*: it's a workaround, not a fix).
393  *
394  * This is also imperfect, because we don't really know how far they trapped
395  * the croak(), and when we were recursing, we won't be able to clean anything
396  * but the topmost context stacked.
397  */
398
399 #define CROAK(x)        STMT_START { cxt->s_dirty = 1; croak x; } STMT_END
400
401 /*
402  * End of "thread-safe" related definitions.
403  */
404
405 /*
406  * LOW_32BITS
407  *
408  * Keep only the low 32 bits of a pointer (used for tags, which are not
409  * really pointers).
410  */
411
412 #if PTRSIZE <= 4
413 #define LOW_32BITS(x)   ((I32) (x))
414 #else
415 #define LOW_32BITS(x)   ((I32) ((unsigned long) (x) & 0xffffffffUL))
416 #endif
417
418 /*
419  * oI, oS, oC
420  *
421  * Hack for Crays, where sizeof(I32) == 8, and which are big-endians.
422  * Used in the WLEN and RLEN macros.
423  */
424
425 #if INTSIZE > 4
426 #define oI(x)   ((I32 *) ((char *) (x) + 4))
427 #define oS(x)   ((x) - 4)
428 #define oC(x)   (x = 0)
429 #define CRAY_HACK
430 #else
431 #define oI(x)   (x)
432 #define oS(x)   (x)
433 #define oC(x)
434 #endif
435
436 /*
437  * key buffer handling
438  */
439 #define kbuf    (cxt->keybuf).arena
440 #define ksiz    (cxt->keybuf).asiz
441 #define KBUFINIT()                                              \
442   STMT_START {                                                  \
443         if (!kbuf) {                                            \
444                 TRACEME(("** allocating kbuf of 128 bytes")); \
445                 New(10003, kbuf, 128, char);    \
446                 ksiz = 128;                                             \
447         }                                                                       \
448   } STMT_END
449 #define KBUFCHK(x)                              \
450   STMT_START {                                  \
451         if (x >= ksiz) {                        \
452                 TRACEME(("** extending kbuf to %d bytes (had %d)", x+1, ksiz)); \
453                 Renew(kbuf, x+1, char); \
454                 ksiz = x+1;                             \
455         }                                                       \
456   } STMT_END
457
458 /*
459  * memory buffer handling
460  */
461 #define mbase   (cxt->membuf).arena
462 #define msiz    (cxt->membuf).asiz
463 #define mptr    (cxt->membuf).aptr
464 #define mend    (cxt->membuf).aend
465
466 #define MGROW   (1 << 13)
467 #define MMASK   (MGROW - 1)
468
469 #define round_mgrow(x)  \
470         ((unsigned long) (((unsigned long) (x) + MMASK) & ~MMASK))
471 #define trunc_int(x)    \
472         ((unsigned long) ((unsigned long) (x) & ~(sizeof(int)-1)))
473 #define int_aligned(x)  \
474         ((unsigned long) (x) == trunc_int(x))
475
476 #define MBUF_INIT(x)                                    \
477   STMT_START {                                                  \
478         if (!mbase) {                                           \
479                 TRACEME(("** allocating mbase of %d bytes", MGROW)); \
480                 New(10003, mbase, MGROW, char); \
481                 msiz = (STRLEN)MGROW;                                   \
482         }                                                                       \
483         mptr = mbase;                                           \
484         if (x)                                                          \
485                 mend = mbase + x;                               \
486         else                                                            \
487                 mend = mbase + msiz;                    \
488   } STMT_END
489
490 #define MBUF_TRUNC(x)   mptr = mbase + x
491 #define MBUF_SIZE()             (mptr - mbase)
492
493 /*
494  * MBUF_SAVE_AND_LOAD
495  * MBUF_RESTORE
496  *
497  * Those macros are used in do_retrieve() to save the current memory
498  * buffer into cxt->msaved, before MBUF_LOAD() can be used to retrieve
499  * data from a string.
500  */
501 #define MBUF_SAVE_AND_LOAD(in)                  \
502   STMT_START {                                                  \
503         ASSERT(!cxt->membuf_ro, ("mbase not already saved")); \
504         cxt->membuf_ro = 1;                                     \
505         TRACEME(("saving mbuf"));                       \
506         StructCopy(&cxt->membuf, &cxt->msaved, struct extendable); \
507         MBUF_LOAD(in);                                          \
508   } STMT_END
509
510 #define MBUF_RESTORE()                                  \
511   STMT_START {                                                  \
512         ASSERT(cxt->membuf_ro, ("mbase is read-only")); \
513         cxt->membuf_ro = 0;                                     \
514         TRACEME(("restoring mbuf"));            \
515         StructCopy(&cxt->msaved, &cxt->membuf, struct extendable); \
516   } STMT_END
517
518 /*
519  * Use SvPOKp(), because SvPOK() fails on tainted scalars.
520  * See store_scalar() for other usage of this workaround.
521  */
522 #define MBUF_LOAD(v)                                    \
523   STMT_START {                                                  \
524         ASSERT(cxt->membuf_ro, ("mbase is read-only")); \
525         if (!SvPOKp(v))                                         \
526                 CROAK(("Not a scalar string")); \
527         mptr = mbase = SvPV(v, msiz);           \
528         mend = mbase + msiz;                            \
529   } STMT_END
530
531 #define MBUF_XTEND(x)                           \
532   STMT_START {                                          \
533         int nsz = (int) round_mgrow((x)+msiz);  \
534         int offset = mptr - mbase;              \
535         ASSERT(!cxt->membuf_ro, ("mbase is not read-only")); \
536         TRACEME(("** extending mbase from %d to %d bytes (wants %d new)", \
537                 msiz, nsz, (x)));                       \
538         Renew(mbase, nsz, char);                \
539         msiz = nsz;                                             \
540         mptr = mbase + offset;                  \
541         mend = mbase + nsz;                             \
542   } STMT_END
543
544 #define MBUF_CHK(x)                             \
545   STMT_START {                                          \
546         if ((mptr + (x)) > mend)                \
547                 MBUF_XTEND(x);                          \
548   } STMT_END
549
550 #define MBUF_GETC(x)                            \
551   STMT_START {                                          \
552         if (mptr < mend)                                \
553                 x = (int) (unsigned char) *mptr++;      \
554         else                                                    \
555                 return (SV *) 0;                        \
556   } STMT_END
557
558 #ifdef CRAY_HACK
559 #define MBUF_GETINT(x)                                  \
560   STMT_START {                                                  \
561         oC(x);                                                          \
562         if ((mptr + 4) <= mend) {                       \
563                 memcpy(oI(&x), mptr, 4);                \
564                 mptr += 4;                                              \
565         } else                                                          \
566                 return (SV *) 0;                                \
567   } STMT_END
568 #else
569 #define MBUF_GETINT(x)                                  \
570   STMT_START {                                                  \
571         if ((mptr + sizeof(int)) <= mend) {     \
572                 if (int_aligned(mptr))                  \
573                         x = *(int *) mptr;                      \
574                 else                                                    \
575                         memcpy(&x, mptr, sizeof(int));  \
576                 mptr += sizeof(int);                    \
577         } else                                                          \
578                 return (SV *) 0;                                \
579   } STMT_END
580 #endif
581
582 #define MBUF_READ(x,s)                          \
583   STMT_START {                                          \
584         if ((mptr + (s)) <= mend) {             \
585                 memcpy(x, mptr, s);                     \
586                 mptr += s;                                      \
587         } else                                                  \
588                 return (SV *) 0;                        \
589   } STMT_END
590
591 #define MBUF_SAFEREAD(x,s,z)            \
592   STMT_START {                                          \
593         if ((mptr + (s)) <= mend) {             \
594                 memcpy(x, mptr, s);                     \
595                 mptr += s;                                      \
596         } else {                                                \
597                 sv_free(z);                                     \
598                 return (SV *) 0;                        \
599         }                                                               \
600   } STMT_END
601
602 #define MBUF_PUTC(c)                            \
603   STMT_START {                                          \
604         if (mptr < mend)                                \
605                 *mptr++ = (char) c;                     \
606         else {                                                  \
607                 MBUF_XTEND(1);                          \
608                 *mptr++ = (char) c;                     \
609         }                                                               \
610   } STMT_END
611
612 #ifdef CRAY_HACK
613 #define MBUF_PUTINT(i)                          \
614   STMT_START {                                          \
615         MBUF_CHK(4);                                    \
616         memcpy(mptr, oI(&i), 4);                \
617         mptr += 4;                                              \
618   } STMT_END
619 #else
620 #define MBUF_PUTINT(i)                          \
621   STMT_START {                                          \
622         MBUF_CHK(sizeof(int));                  \
623         if (int_aligned(mptr))                  \
624                 *(int *) mptr = i;                      \
625         else                                                    \
626                 memcpy(mptr, &i, sizeof(int));  \
627         mptr += sizeof(int);                    \
628   } STMT_END
629 #endif
630
631 #define MBUF_WRITE(x,s)                         \
632   STMT_START {                                          \
633         MBUF_CHK(s);                                    \
634         memcpy(mptr, x, s);                             \
635         mptr += s;                                              \
636   } STMT_END
637
638 /*
639  * Possible return values for sv_type().
640  */
641
642 #define svis_REF                0
643 #define svis_SCALAR             1
644 #define svis_ARRAY              2
645 #define svis_HASH               3
646 #define svis_TIED               4
647 #define svis_TIED_ITEM  5
648 #define svis_CODE               6
649 #define svis_OTHER              7
650
651 /*
652  * Flags for SX_HOOK.
653  */
654
655 #define SHF_TYPE_MASK           0x03
656 #define SHF_LARGE_CLASSLEN      0x04
657 #define SHF_LARGE_STRLEN        0x08
658 #define SHF_LARGE_LISTLEN       0x10
659 #define SHF_IDX_CLASSNAME       0x20
660 #define SHF_NEED_RECURSE        0x40
661 #define SHF_HAS_LIST            0x80
662
663 /*
664  * Types for SX_HOOK (last 2 bits in flags).
665  */
666
667 #define SHT_SCALAR                      0
668 #define SHT_ARRAY                       1
669 #define SHT_HASH                        2
670 #define SHT_EXTRA                       3               /* Read extra byte for type */
671
672 /*
673  * The following are held in the "extra byte"...
674  */
675
676 #define SHT_TSCALAR                     4               /* 4 + 0 -- tied scalar */
677 #define SHT_TARRAY                      5               /* 4 + 1 -- tied array */
678 #define SHT_THASH                       6               /* 4 + 2 -- tied hash */
679
680 /*
681  * per hash flags for flagged hashes
682  */
683
684 #define SHV_RESTRICTED          0x01
685
686 /*
687  * per key flags for flagged hashes
688  */
689
690 #define SHV_K_UTF8              0x01
691 #define SHV_K_WASUTF8           0x02
692 #define SHV_K_LOCKED            0x04
693 #define SHV_K_ISSV              0x08
694 #define SHV_K_PLACEHOLDER       0x10
695
696 /*
697  * Before 0.6, the magic string was "perl-store" (binary version number 0).
698  *
699  * Since 0.6 introduced many binary incompatibilities, the magic string has
700  * been changed to "pst0" to allow an old image to be properly retrieved by
701  * a newer Storable, but ensure a newer image cannot be retrieved with an
702  * older version.
703  *
704  * At 0.7, objects are given the ability to serialize themselves, and the
705  * set of markers is extended, backward compatibility is not jeopardized,
706  * so the binary version number could have remained unchanged.  To correctly
707  * spot errors if a file making use of 0.7-specific extensions is given to
708  * 0.6 for retrieval, the binary version was moved to "2".  And I'm introducing
709  * a "minor" version, to better track this kind of evolution from now on.
710  * 
711  */
712 static const char old_magicstr[] = "perl-store"; /* Magic number before 0.6 */
713 static const char magicstr[] = "pst0";           /* Used as a magic number */
714
715 #define MAGICSTR_BYTES  'p','s','t','0'
716 #define OLDMAGICSTR_BYTES  'p','e','r','l','-','s','t','o','r','e'
717
718 /* 5.6.x introduced the ability to have IVs as long long.
719    However, Configure still defined BYTEORDER based on the size of a long.
720    Storable uses the BYTEORDER value as part of the header, but doesn't
721    explicity store sizeof(IV) anywhere in the header.  Hence on 5.6.x built
722    with IV as long long on a platform that uses Configure (ie most things
723    except VMS and Windows) headers are identical for the different IV sizes,
724    despite the files containing some fields based on sizeof(IV)
725    Erk. Broken-ness.
726    5.8 is consistent - the following redifinition kludge is only needed on
727    5.6.x, but the interwork is needed on 5.8 while data survives in files
728    with the 5.6 header.
729
730 */
731
732 #if defined (IVSIZE) && (IVSIZE == 8) && (LONGSIZE == 4)
733 #ifndef NO_56_INTERWORK_KLUDGE
734 #define USE_56_INTERWORK_KLUDGE
735 #endif
736 #if BYTEORDER == 0x1234
737 #undef BYTEORDER
738 #define BYTEORDER 0x12345678
739 #else
740 #if BYTEORDER == 0x4321
741 #undef BYTEORDER
742 #define BYTEORDER 0x87654321
743 #endif
744 #endif
745 #endif
746
747 #if BYTEORDER == 0x1234
748 #define BYTEORDER_BYTES  '1','2','3','4'
749 #else
750 #if BYTEORDER == 0x12345678
751 #define BYTEORDER_BYTES  '1','2','3','4','5','6','7','8'
752 #ifdef USE_56_INTERWORK_KLUDGE
753 #define BYTEORDER_BYTES_56  '1','2','3','4'
754 #endif
755 #else
756 #if BYTEORDER == 0x87654321
757 #define BYTEORDER_BYTES  '8','7','6','5','4','3','2','1'
758 #ifdef USE_56_INTERWORK_KLUDGE
759 #define BYTEORDER_BYTES_56  '4','3','2','1'
760 #endif
761 #else
762 #if BYTEORDER == 0x4321
763 #define BYTEORDER_BYTES  '4','3','2','1'
764 #else
765 #error Unknown byteorder. Please append your byteorder to Storable.xs
766 #endif
767 #endif
768 #endif
769 #endif
770
771 static const char byteorderstr[] = {BYTEORDER_BYTES, 0};
772 #ifdef USE_56_INTERWORK_KLUDGE
773 static const char byteorderstr_56[] = {BYTEORDER_BYTES_56, 0};
774 #endif
775
776 #define STORABLE_BIN_MAJOR      2               /* Binary major "version" */
777 #define STORABLE_BIN_MINOR      7               /* Binary minor "version" */
778
779 #if (PATCHLEVEL <= 5)
780 #define STORABLE_BIN_WRITE_MINOR        4
781 #else 
782 /*
783  * Perl 5.6.0 onwards can do weak references.
784 */
785 #define STORABLE_BIN_WRITE_MINOR        7
786 #endif /* (PATCHLEVEL <= 5) */
787
788 #if (PATCHLEVEL < 8 || (PATCHLEVEL == 8 && SUBVERSION < 1))
789 #define PL_sv_placeholder PL_sv_undef
790 #endif
791
792 /*
793  * Useful store shortcuts...
794  */
795
796 /*
797  * Note that if you put more than one mark for storing a particular
798  * type of thing, *and* in the retrieve_foo() function you mark both
799  * the thingy's you get off with SEEN(), you *must* increase the
800  * tagnum with cxt->tagnum++ along with this macro!
801  *     - samv 20Jan04
802  */
803 #define PUTMARK(x)                                                      \
804   STMT_START {                                                          \
805         if (!cxt->fio)                                                  \
806                 MBUF_PUTC(x);                                           \
807         else if (PerlIO_putc(cxt->fio, x) == EOF)       \
808                 return -1;                                                      \
809   } STMT_END
810
811 #define WRITE_I32(x)                                    \
812   STMT_START {                                                  \
813         ASSERT(sizeof(x) == sizeof(I32), ("writing an I32"));   \
814         if (!cxt->fio)                                          \
815                 MBUF_PUTINT(x);                                 \
816         else if (PerlIO_write(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
817                 return -1;                                      \
818   } STMT_END
819
820 #ifdef HAS_HTONL
821 #define WLEN(x)                                         \
822   STMT_START {                                          \
823         if (cxt->netorder) {                    \
824                 int y = (int) htonl(x);         \
825                 if (!cxt->fio)                          \
826                         MBUF_PUTINT(y);                 \
827                 else if (PerlIO_write(cxt->fio,oI(&y),oS(sizeof(y))) != oS(sizeof(y))) \
828                         return -1;                              \
829         } else {                                                \
830                 if (!cxt->fio)                          \
831                         MBUF_PUTINT(x);                 \
832                 else if (PerlIO_write(cxt->fio,oI(&x),oS(sizeof(x))) != oS(sizeof(x))) \
833                         return -1;                              \
834         }                                                               \
835   } STMT_END
836 #else
837 #define WLEN(x) WRITE_I32(x)
838 #endif
839
840 #define WRITE(x,y)                                                      \
841   STMT_START {                                                          \
842         if (!cxt->fio)                                                  \
843                 MBUF_WRITE(x,y);                                        \
844         else if (PerlIO_write(cxt->fio, x, y) != y)     \
845                 return -1;                                                      \
846   } STMT_END
847
848 #define STORE_PV_LEN(pv, len, small, large)                     \
849   STMT_START {                                                  \
850         if (len <= LG_SCALAR) {                         \
851                 unsigned char clen = (unsigned char) len;       \
852                 PUTMARK(small);                                 \
853                 PUTMARK(clen);                                  \
854                 if (len)                                                \
855                         WRITE(pv, len);                         \
856         } else {                                                        \
857                 PUTMARK(large);                                 \
858                 WLEN(len);                                              \
859                 WRITE(pv, len);                                 \
860         }                                                                       \
861   } STMT_END
862
863 #define STORE_SCALAR(pv, len)   STORE_PV_LEN(pv, len, SX_SCALAR, SX_LSCALAR)
864
865 /*
866  * Store &PL_sv_undef in arrays without recursing through store().
867  */
868 #define STORE_SV_UNDEF()                                        \
869   STMT_START {                                                  \
870         cxt->tagnum++;                                          \
871         PUTMARK(SX_SV_UNDEF);                                   \
872   } STMT_END
873
874 /*
875  * Useful retrieve shortcuts...
876  */
877
878 #define GETCHAR() \
879         (cxt->fio ? PerlIO_getc(cxt->fio) : (mptr >= mend ? EOF : (int) *mptr++))
880
881 #define GETMARK(x)                                                              \
882   STMT_START {                                                                  \
883         if (!cxt->fio)                                                          \
884                 MBUF_GETC(x);                                                   \
885         else if ((int) (x = PerlIO_getc(cxt->fio)) == EOF)      \
886                 return (SV *) 0;                                                \
887   } STMT_END
888
889 #define READ_I32(x)                                             \
890   STMT_START {                                                  \
891         ASSERT(sizeof(x) == sizeof(I32), ("reading an I32"));   \
892         oC(x);                                                          \
893         if (!cxt->fio)                                          \
894                 MBUF_GETINT(x);                                 \
895         else if (PerlIO_read(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
896                 return (SV *) 0;                                \
897   } STMT_END
898
899 #ifdef HAS_NTOHL
900 #define RLEN(x)                                                 \
901   STMT_START {                                                  \
902         oC(x);                                                          \
903         if (!cxt->fio)                                          \
904                 MBUF_GETINT(x);                                 \
905         else if (PerlIO_read(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
906                 return (SV *) 0;                                \
907         if (cxt->netorder)                                      \
908                 x = (int) ntohl(x);                             \
909   } STMT_END
910 #else
911 #define RLEN(x) READ_I32(x)
912 #endif
913
914 #define READ(x,y)                                                       \
915   STMT_START {                                                          \
916         if (!cxt->fio)                                                  \
917                 MBUF_READ(x, y);                                        \
918         else if (PerlIO_read(cxt->fio, x, y) != y)      \
919                 return (SV *) 0;                                        \
920   } STMT_END
921
922 #define SAFEREAD(x,y,z)                                                 \
923   STMT_START {                                                                  \
924         if (!cxt->fio)                                                          \
925                 MBUF_SAFEREAD(x,y,z);                                   \
926         else if (PerlIO_read(cxt->fio, x, y) != y)       {      \
927                 sv_free(z);                                                             \
928                 return (SV *) 0;                                                \
929         }                                                                                       \
930   } STMT_END
931
932 /*
933  * This macro is used at retrieve time, to remember where object 'y', bearing a
934  * given tag 'tagnum', has been retrieved. Next time we see an SX_OBJECT marker,
935  * we'll therefore know where it has been retrieved and will be able to
936  * share the same reference, as in the original stored memory image.
937  *
938  * We also need to bless objects ASAP for hooks (which may compute "ref $x"
939  * on the objects given to STORABLE_thaw and expect that to be defined), and
940  * also for overloaded objects (for which we might not find the stash if the
941  * object is not blessed yet--this might occur for overloaded objects that
942  * refer to themselves indirectly: if we blessed upon return from a sub
943  * retrieve(), the SX_OBJECT marker we'd found could not have overloading
944  * restored on it because the underlying object would not be blessed yet!).
945  *
946  * To achieve that, the class name of the last retrieved object is passed down
947  * recursively, and the first SEEN() call for which the class name is not NULL
948  * will bless the object.
949  *
950  * i should be true iff sv is immortal (ie PL_sv_yes, PL_sv_no or PL_sv_undef)
951  */
952 #define SEEN(y,c,i)                                                     \
953   STMT_START {                                                          \
954         if (!y)                                                                 \
955                 return (SV *) 0;                                        \
956         if (av_store(cxt->aseen, cxt->tagnum++, i ? (SV*)(y) : SvREFCNT_inc(y)) == 0) \
957                 return (SV *) 0;                                        \
958         TRACEME(("aseen(#%d) = 0x%"UVxf" (refcnt=%d)", cxt->tagnum-1, \
959                  PTR2UV(y), SvREFCNT(y)-1));            \
960         if (c)                                                                  \
961                 BLESS((SV *) (y), c);                           \
962   } STMT_END
963
964 /*
965  * Bless `s' in `p', via a temporary reference, required by sv_bless().
966  */
967 #define BLESS(s,p)                                                      \
968   STMT_START {                                                          \
969         SV *ref;                                                                \
970         HV *stash;                                                              \
971         TRACEME(("blessing 0x%"UVxf" in %s", PTR2UV(s), (p))); \
972         stash = gv_stashpv((p), TRUE);                  \
973         ref = newRV_noinc(s);                                   \
974         (void) sv_bless(ref, stash);                    \
975         SvRV(ref) = 0;                                                  \
976         SvREFCNT_dec(ref);                                              \
977   } STMT_END
978 /*
979  * sort (used in store_hash) - conditionally use qsort when
980  * sortsv is not available ( <= 5.6.1 ).
981  */
982
983 #if (PATCHLEVEL <= 6)
984
985 #if defined(USE_ITHREADS)
986
987 #define STORE_HASH_SORT \
988         ENTER; { \
989         PerlInterpreter *orig_perl = PERL_GET_CONTEXT; \
990         SAVESPTR(orig_perl); \
991         PERL_SET_CONTEXT(aTHX); \
992         qsort((char *) AvARRAY(av), len, sizeof(SV *), sortcmp); \
993         } LEAVE;
994
995 #else /* ! USE_ITHREADS */
996
997 #define STORE_HASH_SORT \
998         qsort((char *) AvARRAY(av), len, sizeof(SV *), sortcmp);
999
1000 #endif  /* USE_ITHREADS */
1001
1002 #else /* PATCHLEVEL > 6 */
1003
1004 #define STORE_HASH_SORT \
1005         sortsv(AvARRAY(av), len, Perl_sv_cmp);  
1006
1007 #endif /* PATCHLEVEL <= 6 */
1008
1009 static int store(pTHX_ stcxt_t *cxt, SV *sv);
1010 static SV *retrieve(pTHX_ stcxt_t *cxt, char *cname);
1011
1012 /*
1013  * Dynamic dispatching table for SV store.
1014  */
1015
1016 static int store_ref(pTHX_ stcxt_t *cxt, SV *sv);
1017 static int store_scalar(pTHX_ stcxt_t *cxt, SV *sv);
1018 static int store_array(pTHX_ stcxt_t *cxt, AV *av);
1019 static int store_hash(pTHX_ stcxt_t *cxt, HV *hv);
1020 static int store_tied(pTHX_ stcxt_t *cxt, SV *sv);
1021 static int store_tied_item(pTHX_ stcxt_t *cxt, SV *sv);
1022 static int store_code(pTHX_ stcxt_t *cxt, CV *cv);
1023 static int store_other(pTHX_ stcxt_t *cxt, SV *sv);
1024 static int store_blessed(pTHX_ stcxt_t *cxt, SV *sv, int type, HV *pkg);
1025
1026 static int (*sv_store[])(pTHX_ stcxt_t *cxt, SV *sv) = {
1027         store_ref,                                                                              /* svis_REF */
1028         store_scalar,                                                                   /* svis_SCALAR */
1029         (int (*)(pTHX_ stcxt_t *cxt, SV *sv)) store_array,      /* svis_ARRAY */
1030         (int (*)(pTHX_ stcxt_t *cxt, SV *sv)) store_hash,               /* svis_HASH */
1031         store_tied,                                                                             /* svis_TIED */
1032         store_tied_item,                                                                /* svis_TIED_ITEM */
1033         (int (*)(pTHX_ stcxt_t *cxt, SV *sv)) store_code,               /* svis_CODE */
1034         store_other,                                                                    /* svis_OTHER */
1035 };
1036
1037 #define SV_STORE(x)     (*sv_store[x])
1038
1039 /*
1040  * Dynamic dispatching tables for SV retrieval.
1041  */
1042
1043 static SV *retrieve_lscalar(pTHX_ stcxt_t *cxt, char *cname);
1044 static SV *retrieve_lutf8str(pTHX_ stcxt_t *cxt, char *cname);
1045 static SV *old_retrieve_array(pTHX_ stcxt_t *cxt, char *cname);
1046 static SV *old_retrieve_hash(pTHX_ stcxt_t *cxt, char *cname);
1047 static SV *retrieve_ref(pTHX_ stcxt_t *cxt, char *cname);
1048 static SV *retrieve_undef(pTHX_ stcxt_t *cxt, char *cname);
1049 static SV *retrieve_integer(pTHX_ stcxt_t *cxt, char *cname);
1050 static SV *retrieve_double(pTHX_ stcxt_t *cxt, char *cname);
1051 static SV *retrieve_byte(pTHX_ stcxt_t *cxt, char *cname);
1052 static SV *retrieve_netint(pTHX_ stcxt_t *cxt, char *cname);
1053 static SV *retrieve_scalar(pTHX_ stcxt_t *cxt, char *cname);
1054 static SV *retrieve_utf8str(pTHX_ stcxt_t *cxt, char *cname);
1055 static SV *retrieve_tied_array(pTHX_ stcxt_t *cxt, char *cname);
1056 static SV *retrieve_tied_hash(pTHX_ stcxt_t *cxt, char *cname);
1057 static SV *retrieve_tied_scalar(pTHX_ stcxt_t *cxt, char *cname);
1058 static SV *retrieve_other(pTHX_ stcxt_t *cxt, char *cname);
1059
1060 static SV *(*sv_old_retrieve[])(pTHX_ stcxt_t *cxt, char *cname) = {
1061         0,                      /* SX_OBJECT -- entry unused dynamically */
1062         retrieve_lscalar,               /* SX_LSCALAR */
1063         old_retrieve_array,             /* SX_ARRAY -- for pre-0.6 binaries */
1064         old_retrieve_hash,              /* SX_HASH -- for pre-0.6 binaries */
1065         retrieve_ref,                   /* SX_REF */
1066         retrieve_undef,                 /* SX_UNDEF */
1067         retrieve_integer,               /* SX_INTEGER */
1068         retrieve_double,                /* SX_DOUBLE */
1069         retrieve_byte,                  /* SX_BYTE */
1070         retrieve_netint,                /* SX_NETINT */
1071         retrieve_scalar,                /* SX_SCALAR */
1072         retrieve_tied_array,    /* SX_ARRAY */
1073         retrieve_tied_hash,             /* SX_HASH */
1074         retrieve_tied_scalar,   /* SX_SCALAR */
1075         retrieve_other,                 /* SX_SV_UNDEF not supported */
1076         retrieve_other,                 /* SX_SV_YES not supported */
1077         retrieve_other,                 /* SX_SV_NO not supported */
1078         retrieve_other,                 /* SX_BLESS not supported */
1079         retrieve_other,                 /* SX_IX_BLESS not supported */
1080         retrieve_other,                 /* SX_HOOK not supported */
1081         retrieve_other,                 /* SX_OVERLOADED not supported */
1082         retrieve_other,                 /* SX_TIED_KEY not supported */
1083         retrieve_other,                 /* SX_TIED_IDX not supported */
1084         retrieve_other,                 /* SX_UTF8STR not supported */
1085         retrieve_other,                 /* SX_LUTF8STR not supported */
1086         retrieve_other,                 /* SX_FLAG_HASH not supported */
1087         retrieve_other,                 /* SX_CODE not supported */
1088         retrieve_other,                 /* SX_WEAKREF not supported */
1089         retrieve_other,                 /* SX_WEAKOVERLOAD not supported */
1090         retrieve_other,                 /* SX_ERROR */
1091 };
1092
1093 static SV *retrieve_array(pTHX_ stcxt_t *cxt, char *cname);
1094 static SV *retrieve_hash(pTHX_ stcxt_t *cxt, char *cname);
1095 static SV *retrieve_sv_undef(pTHX_ stcxt_t *cxt, char *cname);
1096 static SV *retrieve_sv_yes(pTHX_ stcxt_t *cxt, char *cname);
1097 static SV *retrieve_sv_no(pTHX_ stcxt_t *cxt, char *cname);
1098 static SV *retrieve_blessed(pTHX_ stcxt_t *cxt, char *cname);
1099 static SV *retrieve_idx_blessed(pTHX_ stcxt_t *cxt, char *cname);
1100 static SV *retrieve_hook(pTHX_ stcxt_t *cxt, char *cname);
1101 static SV *retrieve_overloaded(pTHX_ stcxt_t *cxt, char *cname);
1102 static SV *retrieve_tied_key(pTHX_ stcxt_t *cxt, char *cname);
1103 static SV *retrieve_tied_idx(pTHX_ stcxt_t *cxt, char *cname);
1104 static SV *retrieve_flag_hash(pTHX_ stcxt_t *cxt, char *cname);
1105 static SV *retrieve_code(pTHX_ stcxt_t *cxt, char *cname);
1106 static SV *retrieve_weakref(pTHX_ stcxt_t *cxt, char *cname);
1107 static SV *retrieve_weakoverloaded(pTHX_ stcxt_t *cxt, char *cname);
1108
1109 static SV *(*sv_retrieve[])(pTHX_ stcxt_t *cxt, char *cname) = {
1110         0,                      /* SX_OBJECT -- entry unused dynamically */
1111         retrieve_lscalar,               /* SX_LSCALAR */
1112         retrieve_array,                 /* SX_ARRAY */
1113         retrieve_hash,                  /* SX_HASH */
1114         retrieve_ref,                   /* SX_REF */
1115         retrieve_undef,                 /* SX_UNDEF */
1116         retrieve_integer,               /* SX_INTEGER */
1117         retrieve_double,                /* SX_DOUBLE */
1118         retrieve_byte,                  /* SX_BYTE */
1119         retrieve_netint,                /* SX_NETINT */
1120         retrieve_scalar,                /* SX_SCALAR */
1121         retrieve_tied_array,    /* SX_ARRAY */
1122         retrieve_tied_hash,             /* SX_HASH */
1123         retrieve_tied_scalar,   /* SX_SCALAR */
1124         retrieve_sv_undef,              /* SX_SV_UNDEF */
1125         retrieve_sv_yes,                /* SX_SV_YES */
1126         retrieve_sv_no,                 /* SX_SV_NO */
1127         retrieve_blessed,               /* SX_BLESS */
1128         retrieve_idx_blessed,   /* SX_IX_BLESS */
1129         retrieve_hook,                  /* SX_HOOK */
1130         retrieve_overloaded,    /* SX_OVERLOAD */
1131         retrieve_tied_key,              /* SX_TIED_KEY */
1132         retrieve_tied_idx,              /* SX_TIED_IDX */
1133         retrieve_utf8str,               /* SX_UTF8STR  */
1134         retrieve_lutf8str,              /* SX_LUTF8STR */
1135         retrieve_flag_hash,             /* SX_HASH */
1136         retrieve_code,                  /* SX_CODE */
1137         retrieve_weakref,               /* SX_WEAKREF */
1138         retrieve_weakoverloaded,        /* SX_WEAKOVERLOAD */
1139         retrieve_other,                 /* SX_ERROR */
1140 };
1141
1142 #define RETRIEVE(c,x) (*(c)->retrieve_vtbl[(x) >= SX_ERROR ? SX_ERROR : (x)])
1143
1144 static SV *mbuf2sv(pTHX);
1145
1146 /***
1147  *** Context management.
1148  ***/
1149
1150 /*
1151  * init_perinterp
1152  *
1153  * Called once per "thread" (interpreter) to initialize some global context.
1154  */
1155 static void init_perinterp(pTHX)
1156 {
1157     INIT_STCXT;
1158
1159     cxt->netorder = 0;          /* true if network order used */
1160     cxt->forgive_me = -1;       /* whether to be forgiving... */
1161     cxt->accept_future_minor = -1; /* would otherwise occur too late */
1162 }
1163
1164 /*
1165  * reset_context
1166  *
1167  * Called at the end of every context cleaning, to perform common reset
1168  * operations.
1169  */
1170 static void reset_context(stcxt_t *cxt)
1171 {
1172         cxt->entry = 0;
1173         cxt->s_dirty = 0;
1174         cxt->optype &= ~(ST_STORE|ST_RETRIEVE);         /* Leave ST_CLONE alone */
1175 }
1176
1177 /*
1178  * init_store_context
1179  *
1180  * Initialize a new store context for real recursion.
1181  */
1182 static void init_store_context(
1183         pTHX_
1184         stcxt_t *cxt,
1185         PerlIO *f,
1186         int optype,
1187         int network_order)
1188 {
1189         TRACEME(("init_store_context"));
1190
1191         cxt->netorder = network_order;
1192         cxt->forgive_me = -1;                   /* Fetched from perl if needed */
1193         cxt->deparse = -1;                              /* Idem */
1194         cxt->eval = NULL;                               /* Idem */
1195         cxt->canonical = -1;                    /* Idem */
1196         cxt->tagnum = -1;                               /* Reset tag numbers */
1197         cxt->classnum = -1;                             /* Reset class numbers */
1198         cxt->fio = f;                                   /* Where I/O are performed */
1199         cxt->optype = optype;                   /* A store, or a deep clone */
1200         cxt->entry = 1;                                 /* No recursion yet */
1201
1202         /*
1203          * The `hseen' table is used to keep track of each SV stored and their
1204          * associated tag numbers is special. It is "abused" because the
1205          * values stored are not real SV, just integers cast to (SV *),
1206          * which explains the freeing below.
1207          *
1208          * It is also one possible bottlneck to achieve good storing speed,
1209          * so the "shared keys" optimization is turned off (unlikely to be
1210          * of any use here), and the hash table is "pre-extended". Together,
1211          * those optimizations increase the throughput by 12%.
1212          */
1213
1214         cxt->hseen = newHV();                   /* Table where seen objects are stored */
1215         HvSHAREKEYS_off(cxt->hseen);
1216
1217         /*
1218          * The following does not work well with perl5.004_04, and causes
1219          * a core dump later on, in a completely unrelated spot, which
1220          * makes me think there is a memory corruption going on.
1221          *
1222          * Calling hv_ksplit(hseen, HBUCKETS) instead of manually hacking
1223          * it below does not make any difference. It seems to work fine
1224          * with perl5.004_68 but given the probable nature of the bug,
1225          * that does not prove anything.
1226          *
1227          * It's a shame because increasing the amount of buckets raises
1228          * store() throughput by 5%, but until I figure this out, I can't
1229          * allow for this to go into production.
1230          *
1231          * It is reported fixed in 5.005, hence the #if.
1232          */
1233 #if PERL_VERSION >= 5
1234 #define HBUCKETS        4096                            /* Buckets for %hseen */
1235         HvMAX(cxt->hseen) = HBUCKETS - 1;       /* keys %hseen = $HBUCKETS; */
1236 #endif
1237
1238         /*
1239          * The `hclass' hash uses the same settings as `hseen' above, but it is
1240          * used to assign sequential tags (numbers) to class names for blessed
1241          * objects.
1242          *
1243          * We turn the shared key optimization on.
1244          */
1245
1246         cxt->hclass = newHV();                  /* Where seen classnames are stored */
1247
1248 #if PERL_VERSION >= 5
1249         HvMAX(cxt->hclass) = HBUCKETS - 1;      /* keys %hclass = $HBUCKETS; */
1250 #endif
1251
1252         /*
1253          * The `hook' hash table is used to keep track of the references on
1254          * the STORABLE_freeze hook routines, when found in some class name.
1255          *
1256          * It is assumed that the inheritance tree will not be changed during
1257          * storing, and that no new method will be dynamically created by the
1258          * hooks.
1259          */
1260
1261         cxt->hook = newHV();                    /* Table where hooks are cached */
1262
1263         /*
1264          * The `hook_seen' array keeps track of all the SVs returned by
1265          * STORABLE_freeze hooks for us to serialize, so that they are not
1266          * reclaimed until the end of the serialization process.  Each SV is
1267          * only stored once, the first time it is seen.
1268          */
1269
1270         cxt->hook_seen = newAV();               /* Lists SVs returned by STORABLE_freeze */
1271 }
1272
1273 /*
1274  * clean_store_context
1275  *
1276  * Clean store context by
1277  */
1278 static void clean_store_context(pTHX_ stcxt_t *cxt)
1279 {
1280         HE *he;
1281
1282         TRACEME(("clean_store_context"));
1283
1284         ASSERT(cxt->optype & ST_STORE, ("was performing a store()"));
1285
1286         /*
1287          * Insert real values into hashes where we stored faked pointers.
1288          */
1289
1290         if (cxt->hseen) {
1291                 hv_iterinit(cxt->hseen);
1292                 while ((he = hv_iternext(cxt->hseen)))  /* Extra () for -Wall, grr.. */
1293                         HeVAL(he) = &PL_sv_undef;
1294         }
1295
1296         if (cxt->hclass) {
1297                 hv_iterinit(cxt->hclass);
1298                 while ((he = hv_iternext(cxt->hclass))) /* Extra () for -Wall, grr.. */
1299                         HeVAL(he) = &PL_sv_undef;
1300         }
1301
1302         /*
1303          * And now dispose of them...
1304          *
1305          * The surrounding if() protection has been added because there might be
1306          * some cases where this routine is called more than once, during
1307          * exceptionnal events.  This was reported by Marc Lehmann when Storable
1308          * is executed from mod_perl, and the fix was suggested by him.
1309          *              -- RAM, 20/12/2000
1310          */
1311
1312         if (cxt->hseen) {
1313                 HV *hseen = cxt->hseen;
1314                 cxt->hseen = 0;
1315                 hv_undef(hseen);
1316                 sv_free((SV *) hseen);
1317         }
1318
1319         if (cxt->hclass) {
1320                 HV *hclass = cxt->hclass;
1321                 cxt->hclass = 0;
1322                 hv_undef(hclass);
1323                 sv_free((SV *) hclass);
1324         }
1325
1326         if (cxt->hook) {
1327                 HV *hook = cxt->hook;
1328                 cxt->hook = 0;
1329                 hv_undef(hook);
1330                 sv_free((SV *) hook);
1331         }
1332
1333         if (cxt->hook_seen) {
1334                 AV *hook_seen = cxt->hook_seen;
1335                 cxt->hook_seen = 0;
1336                 av_undef(hook_seen);
1337                 sv_free((SV *) hook_seen);
1338         }
1339
1340         cxt->forgive_me = -1;                   /* Fetched from perl if needed */
1341         cxt->deparse = -1;                              /* Idem */
1342         if (cxt->eval) {
1343             SvREFCNT_dec(cxt->eval);
1344         }
1345         cxt->eval = NULL;                               /* Idem */
1346         cxt->canonical = -1;                    /* Idem */
1347
1348         reset_context(cxt);
1349 }
1350
1351 /*
1352  * init_retrieve_context
1353  *
1354  * Initialize a new retrieve context for real recursion.
1355  */
1356 static void init_retrieve_context(pTHX_ stcxt_t *cxt, int optype, int is_tainted)
1357 {
1358         TRACEME(("init_retrieve_context"));
1359
1360         /*
1361          * The hook hash table is used to keep track of the references on
1362          * the STORABLE_thaw hook routines, when found in some class name.
1363          *
1364          * It is assumed that the inheritance tree will not be changed during
1365          * storing, and that no new method will be dynamically created by the
1366          * hooks.
1367          */
1368
1369         cxt->hook  = newHV();                   /* Caches STORABLE_thaw */
1370
1371         /*
1372          * If retrieving an old binary version, the cxt->retrieve_vtbl variable
1373          * was set to sv_old_retrieve. We'll need a hash table to keep track of
1374          * the correspondance between the tags and the tag number used by the
1375          * new retrieve routines.
1376          */
1377
1378         cxt->hseen = (((void*)cxt->retrieve_vtbl == (void*)sv_old_retrieve)
1379                       ? newHV() : 0);
1380
1381         cxt->aseen = newAV();                   /* Where retrieved objects are kept */
1382         cxt->where_is_undef = -1;               /* Special case for PL_sv_undef */
1383         cxt->aclass = newAV();                  /* Where seen classnames are kept */
1384         cxt->tagnum = 0;                                /* Have to count objects... */
1385         cxt->classnum = 0;                              /* ...and class names as well */
1386         cxt->optype = optype;
1387         cxt->s_tainted = is_tainted;
1388         cxt->entry = 1;                                 /* No recursion yet */
1389 #ifndef HAS_RESTRICTED_HASHES
1390         cxt->derestrict = -1;           /* Fetched from perl if needed */
1391 #endif
1392 #ifndef HAS_UTF8_ALL
1393         cxt->use_bytes = -1;            /* Fetched from perl if needed */
1394 #endif
1395         cxt->accept_future_minor = -1;  /* Fetched from perl if needed */
1396 }
1397
1398 /*
1399  * clean_retrieve_context
1400  *
1401  * Clean retrieve context by
1402  */
1403 static void clean_retrieve_context(pTHX_ stcxt_t *cxt)
1404 {
1405         TRACEME(("clean_retrieve_context"));
1406
1407         ASSERT(cxt->optype & ST_RETRIEVE, ("was performing a retrieve()"));
1408
1409         if (cxt->aseen) {
1410                 AV *aseen = cxt->aseen;
1411                 cxt->aseen = 0;
1412                 av_undef(aseen);
1413                 sv_free((SV *) aseen);
1414         }
1415         cxt->where_is_undef = -1;
1416
1417         if (cxt->aclass) {
1418                 AV *aclass = cxt->aclass;
1419                 cxt->aclass = 0;
1420                 av_undef(aclass);
1421                 sv_free((SV *) aclass);
1422         }
1423
1424         if (cxt->hook) {
1425                 HV *hook = cxt->hook;
1426                 cxt->hook = 0;
1427                 hv_undef(hook);
1428                 sv_free((SV *) hook);
1429         }
1430
1431         if (cxt->hseen) {
1432                 HV *hseen = cxt->hseen;
1433                 cxt->hseen = 0;
1434                 hv_undef(hseen);
1435                 sv_free((SV *) hseen);          /* optional HV, for backward compat. */
1436         }
1437
1438 #ifndef HAS_RESTRICTED_HASHES
1439         cxt->derestrict = -1;           /* Fetched from perl if needed */
1440 #endif
1441 #ifndef HAS_UTF8_ALL
1442         cxt->use_bytes = -1;            /* Fetched from perl if needed */
1443 #endif
1444         cxt->accept_future_minor = -1;  /* Fetched from perl if needed */
1445
1446         reset_context(cxt);
1447 }
1448
1449 /*
1450  * clean_context
1451  *
1452  * A workaround for the CROAK bug: cleanup the last context.
1453  */
1454 static void clean_context(pTHX_ stcxt_t *cxt)
1455 {
1456         TRACEME(("clean_context"));
1457
1458         ASSERT(cxt->s_dirty, ("dirty context"));
1459
1460         if (cxt->membuf_ro)
1461                 MBUF_RESTORE();
1462
1463         ASSERT(!cxt->membuf_ro, ("mbase is not read-only"));
1464
1465         if (cxt->optype & ST_RETRIEVE)
1466                 clean_retrieve_context(aTHX_ cxt);
1467         else if (cxt->optype & ST_STORE)
1468                 clean_store_context(aTHX_ cxt);
1469         else
1470                 reset_context(cxt);
1471
1472         ASSERT(!cxt->s_dirty, ("context is clean"));
1473         ASSERT(cxt->entry == 0, ("context is reset"));
1474 }
1475
1476 /*
1477  * allocate_context
1478  *
1479  * Allocate a new context and push it on top of the parent one.
1480  * This new context is made globally visible via SET_STCXT().
1481  */
1482 static stcxt_t *allocate_context(pTHX_ stcxt_t *parent_cxt)
1483 {
1484         stcxt_t *cxt;
1485
1486         TRACEME(("allocate_context"));
1487
1488         ASSERT(!parent_cxt->s_dirty, ("parent context clean"));
1489
1490         NEW_STORABLE_CXT_OBJ(cxt);
1491         cxt->prev = parent_cxt->my_sv;
1492         SET_STCXT(cxt);
1493
1494         ASSERT(!cxt->s_dirty, ("clean context"));
1495
1496         return cxt;
1497 }
1498
1499 /*
1500  * free_context
1501  *
1502  * Free current context, which cannot be the "root" one.
1503  * Make the context underneath globally visible via SET_STCXT().
1504  */
1505 static void free_context(pTHX_ stcxt_t *cxt)
1506 {
1507         stcxt_t *prev = (stcxt_t *)(cxt->prev ? SvPVX(SvRV(cxt->prev)) : 0);
1508
1509         TRACEME(("free_context"));
1510
1511         ASSERT(!cxt->s_dirty, ("clean context"));
1512         ASSERT(prev, ("not freeing root context"));
1513
1514         SvREFCNT_dec(cxt->my_sv);
1515         SET_STCXT(prev);
1516
1517         ASSERT(cxt, ("context not void"));
1518 }
1519
1520 /***
1521  *** Predicates.
1522  ***/
1523
1524 /*
1525  * is_storing
1526  *
1527  * Tells whether we're in the middle of a store operation.
1528  */
1529 int is_storing(pTHX)
1530 {
1531         dSTCXT;
1532
1533         return cxt->entry && (cxt->optype & ST_STORE);
1534 }
1535
1536 /*
1537  * is_retrieving
1538  *
1539  * Tells whether we're in the middle of a retrieve operation.
1540  */
1541 int is_retrieving(pTHX)
1542 {
1543         dSTCXT;
1544
1545         return cxt->entry && (cxt->optype & ST_RETRIEVE);
1546 }
1547
1548 /*
1549  * last_op_in_netorder
1550  *
1551  * Returns whether last operation was made using network order.
1552  *
1553  * This is typically out-of-band information that might prove useful
1554  * to people wishing to convert native to network order data when used.
1555  */
1556 int last_op_in_netorder(pTHX)
1557 {
1558         dSTCXT;
1559
1560         return cxt->netorder;
1561 }
1562
1563 /***
1564  *** Hook lookup and calling routines.
1565  ***/
1566
1567 /*
1568  * pkg_fetchmeth
1569  *
1570  * A wrapper on gv_fetchmethod_autoload() which caches results.
1571  *
1572  * Returns the routine reference as an SV*, or null if neither the package
1573  * nor its ancestors know about the method.
1574  */
1575 static SV *pkg_fetchmeth(
1576         pTHX_
1577         HV *cache,
1578         HV *pkg,
1579         char *method)
1580 {
1581         GV *gv;
1582         SV *sv;
1583
1584         /*
1585          * The following code is the same as the one performed by UNIVERSAL::can
1586          * in the Perl core.
1587          */
1588
1589         gv = gv_fetchmethod_autoload(pkg, method, FALSE);
1590         if (gv && isGV(gv)) {
1591                 sv = newRV((SV*) GvCV(gv));
1592                 TRACEME(("%s->%s: 0x%"UVxf, HvNAME(pkg), method, PTR2UV(sv)));
1593         } else {
1594                 sv = newSVsv(&PL_sv_undef);
1595                 TRACEME(("%s->%s: not found", HvNAME(pkg), method));
1596         }
1597
1598         /*
1599          * Cache the result, ignoring failure: if we can't store the value,
1600          * it just won't be cached.
1601          */
1602
1603         (void) hv_store(cache, HvNAME(pkg), strlen(HvNAME(pkg)), sv, 0);
1604
1605         return SvOK(sv) ? sv : (SV *) 0;
1606 }
1607
1608 /*
1609  * pkg_hide
1610  *
1611  * Force cached value to be undef: hook ignored even if present.
1612  */
1613 static void pkg_hide(
1614         pTHX_
1615         HV *cache,
1616         HV *pkg,
1617         char *method)
1618 {
1619         (void) hv_store(cache,
1620                 HvNAME(pkg), strlen(HvNAME(pkg)), newSVsv(&PL_sv_undef), 0);
1621 }
1622
1623 /*
1624  * pkg_uncache
1625  *
1626  * Discard cached value: a whole fetch loop will be retried at next lookup.
1627  */
1628 static void pkg_uncache(
1629         pTHX_
1630         HV *cache,
1631         HV *pkg,
1632         char *method)
1633 {
1634         (void) hv_delete(cache, HvNAME(pkg), strlen(HvNAME(pkg)), G_DISCARD);
1635 }
1636
1637 /*
1638  * pkg_can
1639  *
1640  * Our own "UNIVERSAL::can", which caches results.
1641  *
1642  * Returns the routine reference as an SV*, or null if the object does not
1643  * know about the method.
1644  */
1645 static SV *pkg_can(
1646         pTHX_
1647         HV *cache,
1648         HV *pkg,
1649         char *method)
1650 {
1651         SV **svh;
1652         SV *sv;
1653
1654         TRACEME(("pkg_can for %s->%s", HvNAME(pkg), method));
1655
1656         /*
1657          * Look into the cache to see whether we already have determined
1658          * where the routine was, if any.
1659          *
1660          * NOTA BENE: we don't use `method' at all in our lookup, since we know
1661          * that only one hook (i.e. always the same) is cached in a given cache.
1662          */
1663
1664         svh = hv_fetch(cache, HvNAME(pkg), strlen(HvNAME(pkg)), FALSE);
1665         if (svh) {
1666                 sv = *svh;
1667                 if (!SvOK(sv)) {
1668                         TRACEME(("cached %s->%s: not found", HvNAME(pkg), method));
1669                         return (SV *) 0;
1670                 } else {
1671                         TRACEME(("cached %s->%s: 0x%"UVxf,
1672                                 HvNAME(pkg), method, PTR2UV(sv)));
1673                         return sv;
1674                 }
1675         }
1676
1677         TRACEME(("not cached yet"));
1678         return pkg_fetchmeth(aTHX_ cache, pkg, method);         /* Fetch and cache */
1679 }
1680
1681 /*
1682  * scalar_call
1683  *
1684  * Call routine as obj->hook(av) in scalar context.
1685  * Propagates the single returned value if not called in void context.
1686  */
1687 static SV *scalar_call(
1688         pTHX_
1689         SV *obj,
1690         SV *hook,
1691         int cloning,
1692         AV *av,
1693         I32 flags)
1694 {
1695         dSP;
1696         int count;
1697         SV *sv = 0;
1698
1699         TRACEME(("scalar_call (cloning=%d)", cloning));
1700
1701         ENTER;
1702         SAVETMPS;
1703
1704         PUSHMARK(sp);
1705         XPUSHs(obj);
1706         XPUSHs(sv_2mortal(newSViv(cloning)));           /* Cloning flag */
1707         if (av) {
1708                 SV **ary = AvARRAY(av);
1709                 int cnt = AvFILLp(av) + 1;
1710                 int i;
1711                 XPUSHs(ary[0]);                                                 /* Frozen string */
1712                 for (i = 1; i < cnt; i++) {
1713                         TRACEME(("pushing arg #%d (0x%"UVxf")...",
1714                                  i, PTR2UV(ary[i])));
1715                         XPUSHs(sv_2mortal(newRV(ary[i])));
1716                 }
1717         }
1718         PUTBACK;
1719
1720         TRACEME(("calling..."));
1721         count = perl_call_sv(hook, flags);              /* Go back to Perl code */
1722         TRACEME(("count = %d", count));
1723
1724         SPAGAIN;
1725
1726         if (count) {
1727                 sv = POPs;
1728                 SvREFCNT_inc(sv);               /* We're returning it, must stay alive! */
1729         }
1730
1731         PUTBACK;
1732         FREETMPS;
1733         LEAVE;
1734
1735         return sv;
1736 }
1737
1738 /*
1739  * array_call
1740  *
1741  * Call routine obj->hook(cloning) in list context.
1742  * Returns the list of returned values in an array.
1743  */
1744 static AV *array_call(
1745         pTHX_
1746         SV *obj,
1747         SV *hook,
1748         int cloning)
1749 {
1750         dSP;
1751         int count;
1752         AV *av;
1753         int i;
1754
1755         TRACEME(("array_call (cloning=%d)", cloning));
1756
1757         ENTER;
1758         SAVETMPS;
1759
1760         PUSHMARK(sp);
1761         XPUSHs(obj);                                                            /* Target object */
1762         XPUSHs(sv_2mortal(newSViv(cloning)));           /* Cloning flag */
1763         PUTBACK;
1764
1765         count = perl_call_sv(hook, G_ARRAY);            /* Go back to Perl code */
1766
1767         SPAGAIN;
1768
1769         av = newAV();
1770         for (i = count - 1; i >= 0; i--) {
1771                 SV *sv = POPs;
1772                 av_store(av, i, SvREFCNT_inc(sv));
1773         }
1774
1775         PUTBACK;
1776         FREETMPS;
1777         LEAVE;
1778
1779         return av;
1780 }
1781
1782 /*
1783  * known_class
1784  *
1785  * Lookup the class name in the `hclass' table and either assign it a new ID
1786  * or return the existing one, by filling in `classnum'.
1787  *
1788  * Return true if the class was known, false if the ID was just generated.
1789  */
1790 static int known_class(
1791         pTHX_
1792         stcxt_t *cxt,
1793         char *name,             /* Class name */
1794         int len,                /* Name length */
1795         I32 *classnum)
1796 {
1797         SV **svh;
1798         HV *hclass = cxt->hclass;
1799
1800         TRACEME(("known_class (%s)", name));
1801
1802         /*
1803          * Recall that we don't store pointers in this hash table, but tags.
1804          * Therefore, we need LOW_32BITS() to extract the relevant parts.
1805          */
1806
1807         svh = hv_fetch(hclass, name, len, FALSE);
1808         if (svh) {
1809                 *classnum = LOW_32BITS(*svh);
1810                 return TRUE;
1811         }
1812
1813         /*
1814          * Unknown classname, we need to record it.
1815          */
1816
1817         cxt->classnum++;
1818         if (!hv_store(hclass, name, len, INT2PTR(SV*, cxt->classnum), 0))
1819                 CROAK(("Unable to record new classname"));
1820
1821         *classnum = cxt->classnum;
1822         return FALSE;
1823 }
1824
1825 /***
1826  *** Sepcific store routines.
1827  ***/
1828
1829 /*
1830  * store_ref
1831  *
1832  * Store a reference.
1833  * Layout is SX_REF <object> or SX_OVERLOAD <object>.
1834  */
1835 static int store_ref(pTHX_ stcxt_t *cxt, SV *sv)
1836 {
1837         int is_weak = 0;
1838         TRACEME(("store_ref (0x%"UVxf")", PTR2UV(sv)));
1839
1840         /*
1841          * Follow reference, and check if target is overloaded.
1842          */
1843
1844 #ifdef SvWEAKREF
1845         if (SvWEAKREF(sv))
1846                 is_weak = 1;
1847         TRACEME(("ref (0x%"UVxf") is%s weak", PTR2UV(sv), is_weak ? "" : "n't"));
1848 #endif
1849         sv = SvRV(sv);
1850
1851         if (SvOBJECT(sv)) {
1852                 HV *stash = (HV *) SvSTASH(sv);
1853                 if (stash && Gv_AMG(stash)) {
1854                         TRACEME(("ref (0x%"UVxf") is overloaded", PTR2UV(sv)));
1855                         PUTMARK(is_weak ? SX_WEAKOVERLOAD : SX_OVERLOAD);
1856                 } else
1857                         PUTMARK(is_weak ? SX_WEAKREF : SX_REF);
1858         } else
1859                 PUTMARK(is_weak ? SX_WEAKREF : SX_REF);
1860
1861         return store(aTHX_ cxt, sv);
1862 }
1863
1864 /*
1865  * store_scalar
1866  *
1867  * Store a scalar.
1868  *
1869  * Layout is SX_LSCALAR <length> <data>, SX_SCALAR <length> <data> or SX_UNDEF.
1870  * The <data> section is omitted if <length> is 0.
1871  *
1872  * If integer or double, the layout is SX_INTEGER <data> or SX_DOUBLE <data>.
1873  * Small integers (within [-127, +127]) are stored as SX_BYTE <byte>.
1874  */
1875 static int store_scalar(pTHX_ stcxt_t *cxt, SV *sv)
1876 {
1877         IV iv;
1878         char *pv;
1879         STRLEN len;
1880         U32 flags = SvFLAGS(sv);                        /* "cc -O" may put it in register */
1881
1882         TRACEME(("store_scalar (0x%"UVxf")", PTR2UV(sv)));
1883
1884         /*
1885          * For efficiency, break the SV encapsulation by peaking at the flags
1886          * directly without using the Perl macros to avoid dereferencing
1887          * sv->sv_flags each time we wish to check the flags.
1888          */
1889
1890         if (!(flags & SVf_OK)) {                        /* !SvOK(sv) */
1891                 if (sv == &PL_sv_undef) {
1892                         TRACEME(("immortal undef"));
1893                         PUTMARK(SX_SV_UNDEF);
1894                 } else {
1895                         TRACEME(("undef at 0x%"UVxf, PTR2UV(sv)));
1896                         PUTMARK(SX_UNDEF);
1897                 }
1898                 return 0;
1899         }
1900
1901         /*
1902          * Always store the string representation of a scalar if it exists.
1903          * Gisle Aas provided me with this test case, better than a long speach:
1904          *
1905          *  perl -MDevel::Peek -le '$a="abc"; $a+0; Dump($a)'
1906          *  SV = PVNV(0x80c8520)
1907          *       REFCNT = 1
1908          *       FLAGS = (NOK,POK,pNOK,pPOK)
1909          *       IV = 0
1910          *       NV = 0
1911          *       PV = 0x80c83d0 "abc"\0
1912          *       CUR = 3
1913          *       LEN = 4
1914          *
1915          * Write SX_SCALAR, length, followed by the actual data.
1916          *
1917          * Otherwise, write an SX_BYTE, SX_INTEGER or an SX_DOUBLE as
1918          * appropriate, followed by the actual (binary) data. A double
1919          * is written as a string if network order, for portability.
1920          *
1921          * NOTE: instead of using SvNOK(sv), we test for SvNOKp(sv).
1922          * The reason is that when the scalar value is tainted, the SvNOK(sv)
1923          * value is false.
1924          *
1925          * The test for a read-only scalar with both POK and NOK set is meant
1926          * to quickly detect &PL_sv_yes and &PL_sv_no without having to pay the
1927          * address comparison for each scalar we store.
1928          */
1929
1930 #define SV_MAYBE_IMMORTAL (SVf_READONLY|SVf_POK|SVf_NOK)
1931
1932         if ((flags & SV_MAYBE_IMMORTAL) == SV_MAYBE_IMMORTAL) {
1933                 if (sv == &PL_sv_yes) {
1934                         TRACEME(("immortal yes"));
1935                         PUTMARK(SX_SV_YES);
1936                 } else if (sv == &PL_sv_no) {
1937                         TRACEME(("immortal no"));
1938                         PUTMARK(SX_SV_NO);
1939                 } else {
1940                         pv = SvPV(sv, len);                     /* We know it's SvPOK */
1941                         goto string;                            /* Share code below */
1942                 }
1943         } else if (flags & SVf_POK) {
1944             /* public string - go direct to string read.  */
1945             goto string_readlen;
1946         } else if (
1947 #if (PATCHLEVEL <= 6)
1948             /* For 5.6 and earlier NV flag trumps IV flag, so only use integer
1949                direct if NV flag is off.  */
1950             (flags & (SVf_NOK | SVf_IOK)) == SVf_IOK
1951 #else
1952             /* 5.7 rules are that if IV public flag is set, IV value is as
1953                good, if not better, than NV value.  */
1954             flags & SVf_IOK
1955 #endif
1956             ) {
1957             iv = SvIV(sv);
1958             /*
1959              * Will come here from below with iv set if double is an integer.
1960              */
1961           integer:
1962
1963             /* Sorry. This isn't in 5.005_56 (IIRC) or earlier.  */
1964 #ifdef SVf_IVisUV
1965             /* Need to do this out here, else 0xFFFFFFFF becomes iv of -1
1966              * (for example) and that ends up in the optimised small integer
1967              * case. 
1968              */
1969             if ((flags & SVf_IVisUV) && SvUV(sv) > IV_MAX) {
1970                 TRACEME(("large unsigned integer as string, value = %"UVuf, SvUV(sv)));
1971                 goto string_readlen;
1972             }
1973 #endif
1974             /*
1975              * Optimize small integers into a single byte, otherwise store as
1976              * a real integer (converted into network order if they asked).
1977              */
1978
1979             if (iv >= -128 && iv <= 127) {
1980                 unsigned char siv = (unsigned char) (iv + 128); /* [0,255] */
1981                 PUTMARK(SX_BYTE);
1982                 PUTMARK(siv);
1983                 TRACEME(("small integer stored as %d", siv));
1984             } else if (cxt->netorder) {
1985 #ifndef HAS_HTONL
1986                 TRACEME(("no htonl, fall back to string for integer"));
1987                 goto string_readlen;
1988 #else
1989                 I32 niv;
1990
1991
1992 #if IVSIZE > 4
1993                 if (
1994 #ifdef SVf_IVisUV
1995                     /* Sorry. This isn't in 5.005_56 (IIRC) or earlier.  */
1996                     ((flags & SVf_IVisUV) && SvUV(sv) > 0x7FFFFFFF) ||
1997 #endif
1998                     (iv > 0x7FFFFFFF) || (iv < -0x80000000)) {
1999                     /* Bigger than 32 bits.  */
2000                     TRACEME(("large network order integer as string, value = %"IVdf, iv));
2001                     goto string_readlen;
2002                 }
2003 #endif
2004
2005                 niv = (I32) htonl((I32) iv);
2006                 TRACEME(("using network order"));
2007                 PUTMARK(SX_NETINT);
2008                 WRITE_I32(niv);
2009 #endif
2010             } else {
2011                 PUTMARK(SX_INTEGER);
2012                 WRITE(&iv, sizeof(iv));
2013             }
2014             
2015             TRACEME(("ok (integer 0x%"UVxf", value = %"IVdf")", PTR2UV(sv), iv));
2016         } else if (flags & SVf_NOK) {
2017             NV nv;
2018 #if (PATCHLEVEL <= 6)
2019             nv = SvNV(sv);
2020             /*
2021              * Watch for number being an integer in disguise.
2022              */
2023             if (nv == (NV) (iv = I_V(nv))) {
2024                 TRACEME(("double %"NVff" is actually integer %"IVdf, nv, iv));
2025                 goto integer;           /* Share code above */
2026             }
2027 #else
2028
2029             SvIV_please(sv);
2030             if (SvIOK_notUV(sv)) {
2031                 iv = SvIV(sv);
2032                 goto integer;           /* Share code above */
2033             }
2034             nv = SvNV(sv);
2035 #endif
2036
2037             if (cxt->netorder) {
2038                 TRACEME(("double %"NVff" stored as string", nv));
2039                 goto string_readlen;            /* Share code below */
2040             }
2041
2042             PUTMARK(SX_DOUBLE);
2043             WRITE(&nv, sizeof(nv));
2044
2045             TRACEME(("ok (double 0x%"UVxf", value = %"NVff")", PTR2UV(sv), nv));
2046
2047         } else if (flags & (SVp_POK | SVp_NOK | SVp_IOK)) {
2048             I32 wlen; /* For 64-bit machines */
2049
2050           string_readlen:
2051             pv = SvPV(sv, len);
2052
2053             /*
2054              * Will come here from above  if it was readonly, POK and NOK but
2055              * neither &PL_sv_yes nor &PL_sv_no.
2056              */
2057           string:
2058
2059             wlen = (I32) len; /* WLEN via STORE_SCALAR expects I32 */
2060             if (SvUTF8 (sv))
2061                 STORE_UTF8STR(pv, wlen);
2062             else
2063                 STORE_SCALAR(pv, wlen);
2064             TRACEME(("ok (scalar 0x%"UVxf" '%s', length = %"IVdf")",
2065                      PTR2UV(sv), SvPVX(sv), (IV)len));
2066         } else
2067             CROAK(("Can't determine type of %s(0x%"UVxf")",
2068                    sv_reftype(sv, FALSE),
2069                    PTR2UV(sv)));
2070         return 0;               /* Ok, no recursion on scalars */
2071 }
2072
2073 /*
2074  * store_array
2075  *
2076  * Store an array.
2077  *
2078  * Layout is SX_ARRAY <size> followed by each item, in increading index order.
2079  * Each item is stored as <object>.
2080  */
2081 static int store_array(pTHX_ stcxt_t *cxt, AV *av)
2082 {
2083         SV **sav;
2084         I32 len = av_len(av) + 1;
2085         I32 i;
2086         int ret;
2087
2088         TRACEME(("store_array (0x%"UVxf")", PTR2UV(av)));
2089
2090         /* 
2091          * Signal array by emitting SX_ARRAY, followed by the array length.
2092          */
2093
2094         PUTMARK(SX_ARRAY);
2095         WLEN(len);
2096         TRACEME(("size = %d", len));
2097
2098         /*
2099          * Now store each item recursively.
2100          */
2101
2102         for (i = 0; i < len; i++) {
2103                 sav = av_fetch(av, i, 0);
2104                 if (!sav) {
2105                         TRACEME(("(#%d) undef item", i));
2106                         STORE_SV_UNDEF();
2107                         continue;
2108                 }
2109                 TRACEME(("(#%d) item", i));
2110                 if ((ret = store(aTHX_ cxt, *sav)))     /* Extra () for -Wall, grr... */
2111                         return ret;
2112         }
2113
2114         TRACEME(("ok (array)"));
2115
2116         return 0;
2117 }
2118
2119
2120 #if (PATCHLEVEL <= 6)
2121
2122 /*
2123  * sortcmp
2124  *
2125  * Sort two SVs
2126  * Borrowed from perl source file pp_ctl.c, where it is used by pp_sort.
2127  */
2128 static int
2129 sortcmp(const void *a, const void *b)
2130 {
2131 #if defined(USE_ITHREADS)
2132         dTHX;
2133 #endif /* USE_ITHREADS */
2134         return sv_cmp(*(SV * const *) a, *(SV * const *) b);
2135 }
2136
2137 #endif /* PATCHLEVEL <= 6 */
2138
2139 /*
2140  * store_hash
2141  *
2142  * Store a hash table.
2143  *
2144  * For a "normal" hash (not restricted, no utf8 keys):
2145  *
2146  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
2147  * Values are stored as <object>.
2148  * Keys are stored as <length> <data>, the <data> section being omitted
2149  * if length is 0.
2150  *
2151  * For a "fancy" hash (restricted or utf8 keys):
2152  *
2153  * Layout is SX_FLAG_HASH <size> <hash flags> followed by each key/value pair,
2154  * in random order.
2155  * Values are stored as <object>.
2156  * Keys are stored as <flags> <length> <data>, the <data> section being omitted
2157  * if length is 0.
2158  * Currently the only hash flag is "restriced"
2159  * Key flags are as for hv.h
2160  */
2161 static int store_hash(pTHX_ stcxt_t *cxt, HV *hv)
2162 {
2163         I32 len = 
2164 #ifdef HAS_RESTRICTED_HASHES
2165             HvTOTALKEYS(hv);
2166 #else
2167             HvKEYS(hv);
2168 #endif
2169         I32 i;
2170         int ret = 0;
2171         I32 riter;
2172         HE *eiter;
2173         int flagged_hash = ((SvREADONLY(hv)
2174 #ifdef HAS_HASH_KEY_FLAGS
2175                              || HvHASKFLAGS(hv)
2176 #endif
2177                                 ) ? 1 : 0);
2178         unsigned char hash_flags = (SvREADONLY(hv) ? SHV_RESTRICTED : 0);
2179
2180         if (flagged_hash) {
2181             /* needs int cast for C++ compilers, doesn't it?  */
2182             TRACEME(("store_hash (0x%"UVxf") (flags %x)", PTR2UV(hv),
2183                      (int) hash_flags));
2184         } else {
2185             TRACEME(("store_hash (0x%"UVxf")", PTR2UV(hv)));
2186         }
2187
2188         /* 
2189          * Signal hash by emitting SX_HASH, followed by the table length.
2190          */
2191
2192         if (flagged_hash) {
2193             PUTMARK(SX_FLAG_HASH);
2194             PUTMARK(hash_flags);
2195         } else {
2196             PUTMARK(SX_HASH);
2197         }
2198         WLEN(len);
2199         TRACEME(("size = %d", len));
2200
2201         /*
2202          * Save possible iteration state via each() on that table.
2203          */
2204
2205         riter = HvRITER(hv);
2206         eiter = HvEITER(hv);
2207         hv_iterinit(hv);
2208
2209         /*
2210          * Now store each item recursively.
2211          *
2212      * If canonical is defined to some true value then store each
2213      * key/value pair in sorted order otherwise the order is random.
2214          * Canonical order is irrelevant when a deep clone operation is performed.
2215          *
2216          * Fetch the value from perl only once per store() operation, and only
2217          * when needed.
2218          */
2219
2220         if (
2221                 !(cxt->optype & ST_CLONE) && (cxt->canonical == 1 ||
2222                 (cxt->canonical < 0 && (cxt->canonical =
2223                         (SvTRUE(perl_get_sv("Storable::canonical", TRUE)) ? 1 : 0))))
2224         ) {
2225                 /*
2226                  * Storing in order, sorted by key.
2227                  * Run through the hash, building up an array of keys in a
2228                  * mortal array, sort the array and then run through the
2229                  * array.  
2230                  */
2231
2232                 AV *av = newAV();
2233
2234                 /*av_extend (av, len);*/
2235
2236                 TRACEME(("using canonical order"));
2237
2238                 for (i = 0; i < len; i++) {
2239 #ifdef HAS_RESTRICTED_HASHES
2240                         HE *he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS);
2241 #else
2242                         HE *he = hv_iternext(hv);
2243 #endif
2244                         SV *key = hv_iterkeysv(he);
2245                         av_store(av, AvFILLp(av)+1, key);       /* av_push(), really */
2246                 }
2247                         
2248                 STORE_HASH_SORT;
2249
2250                 for (i = 0; i < len; i++) {
2251 #ifdef HAS_RESTRICTED_HASHES
2252                         int placeholders = HvPLACEHOLDERS(hv);
2253 #endif
2254                         unsigned char flags = 0;
2255                         char *keyval;
2256                         STRLEN keylen_tmp;
2257                         I32 keylen;
2258                         SV *key = av_shift(av);
2259                         /* This will fail if key is a placeholder.
2260                            Track how many placeholders we have, and error if we
2261                            "see" too many.  */
2262                         HE *he  = hv_fetch_ent(hv, key, 0, 0);
2263                         SV *val;
2264
2265                         if (he) {
2266                                 if (!(val =  HeVAL(he))) {
2267                                         /* Internal error, not I/O error */
2268                                         return 1;
2269                                 }
2270                         } else {
2271 #ifdef HAS_RESTRICTED_HASHES
2272                                 /* Should be a placeholder.  */
2273                                 if (placeholders-- < 0) {
2274                                         /* This should not happen - number of
2275                                            retrieves should be identical to
2276                                            number of placeholders.  */
2277                                         return 1;
2278                                 }
2279                                 /* Value is never needed, and PL_sv_undef is
2280                                    more space efficient to store.  */
2281                                 val = &PL_sv_undef;
2282                                 ASSERT (flags == 0,
2283                                         ("Flags not 0 but %d", flags));
2284                                 flags = SHV_K_PLACEHOLDER;
2285 #else
2286                                 return 1;
2287 #endif
2288                         }
2289                         
2290                         /*
2291                          * Store value first.
2292                          */
2293                         
2294                         TRACEME(("(#%d) value 0x%"UVxf, i, PTR2UV(val)));
2295
2296                         if ((ret = store(aTHX_ cxt, val)))      /* Extra () for -Wall, grr... */
2297                                 goto out;
2298
2299                         /*
2300                          * Write key string.
2301                          * Keys are written after values to make sure retrieval
2302                          * can be optimal in terms of memory usage, where keys are
2303                          * read into a fixed unique buffer called kbuf.
2304                          * See retrieve_hash() for details.
2305                          */
2306                          
2307                         /* Implementation of restricted hashes isn't nicely
2308                            abstracted:  */
2309                         if ((hash_flags & SHV_RESTRICTED) && SvREADONLY(val)) {
2310                                 flags |= SHV_K_LOCKED;
2311                         }
2312
2313                         keyval = SvPV(key, keylen_tmp);
2314                         keylen = keylen_tmp;
2315 #ifdef HAS_UTF8_HASHES
2316                         /* If you build without optimisation on pre 5.6
2317                            then nothing spots that SvUTF8(key) is always 0,
2318                            so the block isn't optimised away, at which point
2319                            the linker dislikes the reference to
2320                            bytes_from_utf8.  */
2321                         if (SvUTF8(key)) {
2322                             const char *keysave = keyval;
2323                             bool is_utf8 = TRUE;
2324
2325                             /* Just casting the &klen to (STRLEN) won't work
2326                                well if STRLEN and I32 are of different widths.
2327                                --jhi */
2328                             keyval = (char*)bytes_from_utf8((U8*)keyval,
2329                                                             &keylen_tmp,
2330                                                             &is_utf8);
2331
2332                             /* If we were able to downgrade here, then than
2333                                means that we have  a key which only had chars
2334                                0-255, but was utf8 encoded.  */
2335
2336                             if (keyval != keysave) {
2337                                 keylen = keylen_tmp;
2338                                 flags |= SHV_K_WASUTF8;
2339                             } else {
2340                                 /* keylen_tmp can't have changed, so no need
2341                                    to assign back to keylen.  */
2342                                 flags |= SHV_K_UTF8;
2343                             }
2344                         }
2345 #endif
2346
2347                         if (flagged_hash) {
2348                             PUTMARK(flags);
2349                             TRACEME(("(#%d) key '%s' flags %x %u", i, keyval, flags, *keyval));
2350                         } else {
2351                             /* This is a workaround for a bug in 5.8.0
2352                                that causes the HEK_WASUTF8 flag to be
2353                                set on an HEK without the hash being
2354                                marked as having key flags. We just
2355                                cross our fingers and drop the flag.
2356                                AMS 20030901 */
2357                             assert (flags == 0 || flags == SHV_K_WASUTF8);
2358                             TRACEME(("(#%d) key '%s'", i, keyval));
2359                         }
2360                         WLEN(keylen);
2361                         if (keylen)
2362                                 WRITE(keyval, keylen);
2363                         if (flags & SHV_K_WASUTF8)
2364                             Safefree (keyval);
2365                 }
2366
2367                 /* 
2368                  * Free up the temporary array
2369                  */
2370
2371                 av_undef(av);
2372                 sv_free((SV *) av);
2373
2374         } else {
2375
2376                 /*
2377                  * Storing in "random" order (in the order the keys are stored
2378                  * within the hash).  This is the default and will be faster!
2379                  */
2380   
2381                 for (i = 0; i < len; i++) {
2382                         char *key;
2383                         I32 len;
2384                         unsigned char flags;
2385 #ifdef HV_ITERNEXT_WANTPLACEHOLDERS
2386                         HE *he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS);
2387 #else
2388                         HE *he = hv_iternext(hv);
2389 #endif
2390                         SV *val = (he ? hv_iterval(hv, he) : 0);
2391                         SV *key_sv = NULL;
2392                         HEK *hek;
2393
2394                         if (val == 0)
2395                                 return 1;               /* Internal error, not I/O error */
2396
2397                         /* Implementation of restricted hashes isn't nicely
2398                            abstracted:  */
2399                         flags
2400                             = (((hash_flags & SHV_RESTRICTED)
2401                                 && SvREADONLY(val))
2402                                              ? SHV_K_LOCKED : 0);
2403
2404                         if (val == &PL_sv_placeholder) {
2405                             flags |= SHV_K_PLACEHOLDER;
2406                             val = &PL_sv_undef;
2407                         }
2408
2409                         /*
2410                          * Store value first.
2411                          */
2412
2413                         TRACEME(("(#%d) value 0x%"UVxf, i, PTR2UV(val)));
2414
2415                         if ((ret = store(aTHX_ cxt, val)))      /* Extra () for -Wall, grr... */
2416                                 goto out;
2417
2418
2419                         hek = HeKEY_hek(he);
2420                         len = HEK_LEN(hek);
2421                         if (len == HEf_SVKEY) {
2422                             /* This is somewhat sick, but the internal APIs are
2423                              * such that XS code could put one of these in in
2424                              * a regular hash.
2425                              * Maybe we should be capable of storing one if
2426                              * found.
2427                              */
2428                             key_sv = HeKEY_sv(he);
2429                             flags |= SHV_K_ISSV;
2430                         } else {
2431                             /* Regular string key. */
2432 #ifdef HAS_HASH_KEY_FLAGS
2433                             if (HEK_UTF8(hek))
2434                                 flags |= SHV_K_UTF8;
2435                             if (HEK_WASUTF8(hek))
2436                                 flags |= SHV_K_WASUTF8;
2437 #endif
2438                             key = HEK_KEY(hek);
2439                         }
2440                         /*
2441                          * Write key string.
2442                          * Keys are written after values to make sure retrieval
2443                          * can be optimal in terms of memory usage, where keys are
2444                          * read into a fixed unique buffer called kbuf.
2445                          * See retrieve_hash() for details.
2446                          */
2447
2448                         if (flagged_hash) {
2449                             PUTMARK(flags);
2450                             TRACEME(("(#%d) key '%s' flags %x", i, key, flags));
2451                         } else {
2452                             /* This is a workaround for a bug in 5.8.0
2453                                that causes the HEK_WASUTF8 flag to be
2454                                set on an HEK without the hash being
2455                                marked as having key flags. We just
2456                                cross our fingers and drop the flag.
2457                                AMS 20030901 */
2458                             assert (flags == 0 || flags == SHV_K_WASUTF8);
2459                             TRACEME(("(#%d) key '%s'", i, key));
2460                         }
2461                         if (flags & SHV_K_ISSV) {
2462                             store(aTHX_ cxt, key_sv);
2463                         } else {
2464                             WLEN(len);
2465                             if (len)
2466                                 WRITE(key, len);
2467                         }
2468                 }
2469     }
2470
2471         TRACEME(("ok (hash 0x%"UVxf")", PTR2UV(hv)));
2472
2473 out:
2474         HvRITER(hv) = riter;            /* Restore hash iterator state */
2475         HvEITER(hv) = eiter;
2476
2477         return ret;
2478 }
2479
2480 /*
2481  * store_code
2482  *
2483  * Store a code reference.
2484  *
2485  * Layout is SX_CODE <length> followed by a scalar containing the perl
2486  * source code of the code reference.
2487  */
2488 static int store_code(pTHX_ stcxt_t *cxt, CV *cv)
2489 {
2490 #if PERL_VERSION < 6
2491     /*
2492          * retrieve_code does not work with perl 5.005 or less
2493          */
2494         return store_other(aTHX_ cxt, (SV*)cv);
2495 #else
2496         dSP;
2497         I32 len;
2498         int count, reallen;
2499         SV *text, *bdeparse;
2500
2501         TRACEME(("store_code (0x%"UVxf")", PTR2UV(cv)));
2502
2503         if (
2504                 cxt->deparse == 0 ||
2505                 (cxt->deparse < 0 && !(cxt->deparse =
2506                         SvTRUE(perl_get_sv("Storable::Deparse", TRUE)) ? 1 : 0))
2507         ) {
2508                 return store_other(aTHX_ cxt, (SV*)cv);
2509         }
2510
2511         /*
2512          * Require B::Deparse. At least B::Deparse 0.61 is needed for
2513          * blessed code references.
2514          */
2515         /* Ownership of both SVs is passed to load_module, which frees them. */
2516         load_module(PERL_LOADMOD_NOIMPORT, newSVpvn("B::Deparse",10), newSVnv(0.61));
2517
2518         ENTER;
2519         SAVETMPS;
2520
2521         /*
2522          * create the B::Deparse object
2523          */
2524
2525         PUSHMARK(sp);
2526         XPUSHs(sv_2mortal(newSVpvn("B::Deparse",10)));
2527         PUTBACK;
2528         count = call_method("new", G_SCALAR);
2529         SPAGAIN;
2530         if (count != 1)
2531                 CROAK(("Unexpected return value from B::Deparse::new\n"));
2532         bdeparse = POPs;
2533
2534         /*
2535          * call the coderef2text method
2536          */
2537
2538         PUSHMARK(sp);
2539         XPUSHs(bdeparse); /* XXX is this already mortal? */
2540         XPUSHs(sv_2mortal(newRV_inc((SV*)cv)));
2541         PUTBACK;
2542         count = call_method("coderef2text", G_SCALAR);
2543         SPAGAIN;
2544         if (count != 1)
2545                 CROAK(("Unexpected return value from B::Deparse::coderef2text\n"));
2546
2547         text = POPs;
2548         len = SvLEN(text);
2549         reallen = strlen(SvPV_nolen(text));
2550
2551         /*
2552          * Empty code references or XS functions are deparsed as
2553          * "(prototype) ;" or ";".
2554          */
2555
2556         if (len == 0 || *(SvPV_nolen(text)+reallen-1) == ';') {
2557             CROAK(("The result of B::Deparse::coderef2text was empty - maybe you're trying to serialize an XS function?\n"));
2558         }
2559
2560         /* 
2561          * Signal code by emitting SX_CODE.
2562          */
2563
2564         PUTMARK(SX_CODE);
2565         cxt->tagnum++;   /* necessary, as SX_CODE is a SEEN() candidate */
2566         TRACEME(("size = %d", len));
2567         TRACEME(("code = %s", SvPV_nolen(text)));
2568
2569         /*
2570          * Now store the source code.
2571          */
2572
2573         STORE_SCALAR(SvPV_nolen(text), len);
2574
2575         FREETMPS;
2576         LEAVE;
2577
2578         TRACEME(("ok (code)"));
2579
2580         return 0;
2581 #endif
2582 }
2583
2584 /*
2585  * store_tied
2586  *
2587  * When storing a tied object (be it a tied scalar, array or hash), we lay out
2588  * a special mark, followed by the underlying tied object. For instance, when
2589  * dealing with a tied hash, we store SX_TIED_HASH <hash object>, where
2590  * <hash object> stands for the serialization of the tied hash.
2591  */
2592 static int store_tied(pTHX_ stcxt_t *cxt, SV *sv)
2593 {
2594         MAGIC *mg;
2595         SV *obj = NULL;
2596         int ret = 0;
2597         int svt = SvTYPE(sv);
2598         char mtype = 'P';
2599
2600         TRACEME(("store_tied (0x%"UVxf")", PTR2UV(sv)));
2601
2602         /*
2603          * We have a small run-time penalty here because we chose to factorise
2604          * all tieds objects into the same routine, and not have a store_tied_hash,
2605          * a store_tied_array, etc...
2606          *
2607          * Don't use a switch() statement, as most compilers don't optimize that
2608          * well for 2/3 values. An if() else if() cascade is just fine. We put
2609          * tied hashes first, as they are the most likely beasts.
2610          */
2611
2612         if (svt == SVt_PVHV) {
2613                 TRACEME(("tied hash"));
2614                 PUTMARK(SX_TIED_HASH);                  /* Introduces tied hash */
2615         } else if (svt == SVt_PVAV) {
2616                 TRACEME(("tied array"));
2617                 PUTMARK(SX_TIED_ARRAY);                 /* Introduces tied array */
2618         } else {
2619                 TRACEME(("tied scalar"));
2620                 PUTMARK(SX_TIED_SCALAR);                /* Introduces tied scalar */
2621                 mtype = 'q';
2622         }
2623
2624         if (!(mg = mg_find(sv, mtype)))
2625                 CROAK(("No magic '%c' found while storing tied %s", mtype,
2626                         (svt == SVt_PVHV) ? "hash" :
2627                                 (svt == SVt_PVAV) ? "array" : "scalar"));
2628
2629         /*
2630          * The mg->mg_obj found by mg_find() above actually points to the
2631          * underlying tied Perl object implementation. For instance, if the
2632          * original SV was that of a tied array, then mg->mg_obj is an AV.
2633          *
2634          * Note that we store the Perl object as-is. We don't call its FETCH
2635          * method along the way. At retrieval time, we won't call its STORE
2636          * method either, but the tieing magic will be re-installed. In itself,
2637          * that ensures that the tieing semantics are preserved since futher
2638          * accesses on the retrieved object will indeed call the magic methods...
2639          */
2640
2641         /* [#17040] mg_obj is NULL for scalar self-ties. AMS 20030416 */
2642         obj = mg->mg_obj ? mg->mg_obj : newSV(0);
2643         if ((ret = store(aTHX_ cxt, obj)))
2644                 return ret;
2645
2646         TRACEME(("ok (tied)"));
2647
2648         return 0;
2649 }
2650
2651 /*
2652  * store_tied_item
2653  *
2654  * Stores a reference to an item within a tied structure:
2655  *
2656  *  . \$h{key}, stores both the (tied %h) object and 'key'.
2657  *  . \$a[idx], stores both the (tied @a) object and 'idx'.
2658  *
2659  * Layout is therefore either:
2660  *     SX_TIED_KEY <object> <key>
2661  *     SX_TIED_IDX <object> <index>
2662  */
2663 static int store_tied_item(pTHX_ stcxt_t *cxt, SV *sv)
2664 {
2665         MAGIC *mg;
2666         int ret;
2667
2668         TRACEME(("store_tied_item (0x%"UVxf")", PTR2UV(sv)));
2669
2670         if (!(mg = mg_find(sv, 'p')))
2671                 CROAK(("No magic 'p' found while storing reference to tied item"));
2672
2673         /*
2674          * We discriminate between \$h{key} and \$a[idx] via mg_ptr.
2675          */
2676
2677         if (mg->mg_ptr) {
2678                 TRACEME(("store_tied_item: storing a ref to a tied hash item"));
2679                 PUTMARK(SX_TIED_KEY);
2680                 TRACEME(("store_tied_item: storing OBJ 0x%"UVxf, PTR2UV(mg->mg_obj)));
2681
2682                 if ((ret = store(aTHX_ cxt, mg->mg_obj)))               /* Extra () for -Wall, grr... */
2683                         return ret;
2684
2685                 TRACEME(("store_tied_item: storing PTR 0x%"UVxf, PTR2UV(mg->mg_ptr)));
2686
2687                 if ((ret = store(aTHX_ cxt, (SV *) mg->mg_ptr)))        /* Idem, for -Wall */
2688                         return ret;
2689         } else {
2690                 I32 idx = mg->mg_len;
2691
2692                 TRACEME(("store_tied_item: storing a ref to a tied array item "));
2693                 PUTMARK(SX_TIED_IDX);
2694                 TRACEME(("store_tied_item: storing OBJ 0x%"UVxf, PTR2UV(mg->mg_obj)));
2695
2696                 if ((ret = store(aTHX_ cxt, mg->mg_obj)))               /* Idem, for -Wall */
2697                         return ret;
2698
2699                 TRACEME(("store_tied_item: storing IDX %d", idx));
2700
2701                 WLEN(idx);
2702         }
2703
2704         TRACEME(("ok (tied item)"));
2705
2706         return 0;
2707 }
2708
2709 /*
2710  * store_hook           -- dispatched manually, not via sv_store[]
2711  *
2712  * The blessed SV is serialized by a hook.
2713  *
2714  * Simple Layout is:
2715  *
2716  *     SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
2717  *
2718  * where <flags> indicates how long <len>, <len2> and <len3> are, whether
2719  * the trailing part [] is present, the type of object (scalar, array or hash).
2720  * There is also a bit which says how the classname is stored between:
2721  *
2722  *     <len> <classname>
2723  *     <index>
2724  *
2725  * and when the <index> form is used (classname already seen), the "large
2726  * classname" bit in <flags> indicates how large the <index> is.
2727  * 
2728  * The serialized string returned by the hook is of length <len2> and comes
2729  * next.  It is an opaque string for us.
2730  *
2731  * Those <len3> object IDs which are listed last represent the extra references
2732  * not directly serialized by the hook, but which are linked to the object.
2733  *
2734  * When recursion is mandated to resolve object-IDs not yet seen, we have
2735  * instead, with <header> being flags with bits set to indicate the object type
2736  * and that recursion was indeed needed:
2737  *
2738  *     SX_HOOK <header> <object> <header> <object> <flags>
2739  *
2740  * that same header being repeated between serialized objects obtained through
2741  * recursion, until we reach flags indicating no recursion, at which point
2742  * we know we've resynchronized with a single layout, after <flags>.
2743  *
2744  * When storing a blessed ref to a tied variable, the following format is
2745  * used:
2746  *
2747  *     SX_HOOK <flags> <extra> ... [<len3> <object-IDs>] <magic object>
2748  *
2749  * The first <flags> indication carries an object of type SHT_EXTRA, and the
2750  * real object type is held in the <extra> flag.  At the very end of the
2751  * serialization stream, the underlying magic object is serialized, just like
2752  * any other tied variable.
2753  */
2754 static int store_hook(
2755         pTHX_
2756         stcxt_t *cxt,
2757         SV *sv,
2758         int type,
2759         HV *pkg,
2760         SV *hook)
2761 {
2762         I32 len;
2763         char *class;
2764         STRLEN len2;
2765         SV *ref;
2766         AV *av;
2767         SV **ary;
2768         int count;                              /* really len3 + 1 */
2769         unsigned char flags;
2770         char *pv;
2771         int i;
2772         int recursed = 0;               /* counts recursion */
2773         int obj_type;                   /* object type, on 2 bits */
2774         I32 classnum;
2775         int ret;
2776         int clone = cxt->optype & ST_CLONE;
2777         char mtype = '\0';                              /* for blessed ref to tied structures */
2778         unsigned char eflags = '\0';    /* used when object type is SHT_EXTRA */
2779
2780         TRACEME(("store_hook, class \"%s\", tagged #%d", HvNAME(pkg), cxt->tagnum));
2781
2782         /*
2783          * Determine object type on 2 bits.
2784          */
2785
2786         switch (type) {
2787         case svis_SCALAR:
2788                 obj_type = SHT_SCALAR;
2789                 break;
2790         case svis_ARRAY:
2791                 obj_type = SHT_ARRAY;
2792                 break;
2793         case svis_HASH:
2794                 obj_type = SHT_HASH;
2795                 break;
2796         case svis_TIED:
2797                 /*
2798                  * Produced by a blessed ref to a tied data structure, $o in the
2799                  * following Perl code.
2800                  *
2801                  *      my %h;
2802                  *  tie %h, 'FOO';
2803                  *      my $o = bless \%h, 'BAR';
2804                  *
2805                  * Signal the tie-ing magic by setting the object type as SHT_EXTRA
2806                  * (since we have only 2 bits in <flags> to store the type), and an
2807                  * <extra> byte flag will be emitted after the FIRST <flags> in the
2808                  * stream, carrying what we put in `eflags'.
2809                  */
2810                 obj_type = SHT_EXTRA;
2811                 switch (SvTYPE(sv)) {
2812                 case SVt_PVHV:
2813                         eflags = (unsigned char) SHT_THASH;
2814                         mtype = 'P';
2815                         break;
2816                 case SVt_PVAV:
2817                         eflags = (unsigned char) SHT_TARRAY;
2818                         mtype = 'P';
2819                         break;
2820                 default:
2821                         eflags = (unsigned char) SHT_TSCALAR;
2822                         mtype = 'q';
2823                         break;
2824                 }
2825                 break;
2826         default:
2827                 CROAK(("Unexpected object type (%d) in store_hook()", type));
2828         }
2829         flags = SHF_NEED_RECURSE | obj_type;
2830
2831         class = HvNAME(pkg);
2832         len = strlen(class);
2833
2834         /*
2835          * To call the hook, we need to fake a call like:
2836          *
2837          *    $object->STORABLE_freeze($cloning);
2838          *
2839          * but we don't have the $object here.  For instance, if $object is
2840          * a blessed array, what we have in `sv' is the array, and we can't
2841          * call a method on those.
2842          *
2843          * Therefore, we need to create a temporary reference to the object and
2844          * make the call on that reference.
2845          */
2846
2847         TRACEME(("about to call STORABLE_freeze on class %s", class));
2848
2849         ref = newRV_noinc(sv);                          /* Temporary reference */
2850         av = array_call(aTHX_ ref, hook, clone);        /* @a = $object->STORABLE_freeze($c) */
2851         SvRV(ref) = 0;
2852         SvREFCNT_dec(ref);                                      /* Reclaim temporary reference */
2853
2854         count = AvFILLp(av) + 1;
2855         TRACEME(("store_hook, array holds %d items", count));
2856
2857         /*
2858          * If they return an empty list, it means they wish to ignore the
2859          * hook for this class (and not just this instance -- that's for them
2860          * to handle if they so wish).
2861          *
2862          * Simply disable the cached entry for the hook (it won't be recomputed
2863          * since it's present in the cache) and recurse to store_blessed().
2864          */
2865
2866         if (!count) {
2867                 /*
2868                  * They must not change their mind in the middle of a serialization.
2869                  */
2870
2871                 if (hv_fetch(cxt->hclass, class, len, FALSE))
2872                         CROAK(("Too late to ignore hooks for %s class \"%s\"",
2873                                 (cxt->optype & ST_CLONE) ? "cloning" : "storing", class));
2874         
2875                 pkg_hide(aTHX_ cxt->hook, pkg, "STORABLE_freeze");
2876
2877                 ASSERT(!pkg_can(aTHX_ cxt->hook, pkg, "STORABLE_freeze"), ("hook invisible"));
2878                 TRACEME(("ignoring STORABLE_freeze in class \"%s\"", class));
2879
2880                 return store_blessed(aTHX_ cxt, sv, type, pkg);
2881         }
2882
2883         /*
2884          * Get frozen string.
2885          */
2886
2887         ary = AvARRAY(av);
2888         pv = SvPV(ary[0], len2);
2889
2890         /*
2891          * If they returned more than one item, we need to serialize some
2892          * extra references if not already done.
2893          *
2894          * Loop over the array, starting at position #1, and for each item,
2895          * ensure it is a reference, serialize it if not already done, and
2896          * replace the entry with the tag ID of the corresponding serialized
2897          * object.
2898          *
2899          * We CHEAT by not calling av_fetch() and read directly within the
2900          * array, for speed.
2901          */
2902
2903         for (i = 1; i < count; i++) {
2904                 SV **svh;
2905                 SV *rsv = ary[i];
2906                 SV *xsv;
2907                 AV *av_hook = cxt->hook_seen;
2908
2909                 if (!SvROK(rsv))
2910                         CROAK(("Item #%d returned by STORABLE_freeze "
2911                                 "for %s is not a reference", i, class));
2912                 xsv = SvRV(rsv);                /* Follow ref to know what to look for */
2913
2914                 /*
2915                  * Look in hseen and see if we have a tag already.
2916                  * Serialize entry if not done already, and get its tag.
2917                  */
2918
2919                 if ((svh = hv_fetch(cxt->hseen, (char *) &xsv, sizeof(xsv), FALSE)))
2920                         goto sv_seen;           /* Avoid moving code too far to the right */
2921
2922                 TRACEME(("listed object %d at 0x%"UVxf" is unknown", i-1, PTR2UV(xsv)));
2923
2924                 /*
2925                  * We need to recurse to store that object and get it to be known
2926                  * so that we can resolve the list of object-IDs at retrieve time.
2927                  *
2928                  * The first time we do this, we need to emit the proper header
2929                  * indicating that we recursed, and what the type of object is (the
2930                  * object we're storing via a user-hook).  Indeed, during retrieval,
2931                  * we'll have to create the object before recursing to retrieve the
2932                  * others, in case those would point back at that object.
2933                  */
2934
2935                 /* [SX_HOOK] <flags> [<extra>] <object>*/
2936                 if (!recursed++) {
2937                         PUTMARK(SX_HOOK);
2938                         PUTMARK(flags);
2939                         if (obj_type == SHT_EXTRA)
2940                                 PUTMARK(eflags);
2941                 } else
2942                         PUTMARK(flags);
2943
2944                 if ((ret = store(aTHX_ cxt, xsv)))      /* Given by hook for us to store */
2945                         return ret;
2946
2947                 svh = hv_fetch(cxt->hseen, (char *) &xsv, sizeof(xsv), FALSE);
2948                 if (!svh)
2949                         CROAK(("Could not serialize item #%d from hook in %s", i, class));
2950
2951                 /*
2952                  * It was the first time we serialized `xsv'.
2953                  *
2954                  * Keep this SV alive until the end of the serialization: if we
2955                  * disposed of it right now by decrementing its refcount, and it was
2956                  * a temporary value, some next temporary value allocated during
2957                  * another STORABLE_freeze might take its place, and we'd wrongly
2958                  * assume that new SV was already serialized, based on its presence
2959                  * in cxt->hseen.
2960                  *
2961                  * Therefore, push it away in cxt->hook_seen.
2962                  */
2963
2964                 av_store(av_hook, AvFILLp(av_hook)+1, SvREFCNT_inc(xsv));
2965
2966         sv_seen:
2967                 /*
2968                  * Dispose of the REF they returned.  If we saved the `xsv' away
2969                  * in the array of returned SVs, that will not cause the underlying
2970                  * referenced SV to be reclaimed.
2971                  */
2972
2973                 ASSERT(SvREFCNT(xsv) > 1, ("SV will survive disposal of its REF"));
2974                 SvREFCNT_dec(rsv);                      /* Dispose of reference */
2975
2976                 /*
2977                  * Replace entry with its tag (not a real SV, so no refcnt increment)
2978                  */
2979
2980                 ary[i] = *svh;
2981                 TRACEME(("listed object %d at 0x%"UVxf" is tag #%"UVuf,
2982                          i-1, PTR2UV(xsv), PTR2UV(*svh)));
2983         }
2984
2985         /*
2986          * Allocate a class ID if not already done.
2987          *
2988          * This needs to be done after the recursion above, since at retrieval
2989          * time, we'll see the inner objects first.  Many thanks to
2990          * Salvador Ortiz Garcia <sog@msg.com.mx> who spot that bug and
2991          * proposed the right fix.  -- RAM, 15/09/2000
2992          */
2993
2994         if (!known_class(aTHX_ cxt, class, len, &classnum)) {
2995                 TRACEME(("first time we see class %s, ID = %d", class, classnum));
2996                 classnum = -1;                          /* Mark: we must store classname */
2997         } else {
2998                 TRACEME(("already seen class %s, ID = %d", class, classnum));
2999         }
3000
3001         /*
3002          * Compute leading flags.
3003          */
3004
3005         flags = obj_type;
3006         if (((classnum == -1) ? len : classnum) > LG_SCALAR)
3007                 flags |= SHF_LARGE_CLASSLEN;
3008         if (classnum != -1)
3009                 flags |= SHF_IDX_CLASSNAME;
3010         if (len2 > LG_SCALAR)
3011                 flags |= SHF_LARGE_STRLEN;
3012         if (count > 1)
3013                 flags |= SHF_HAS_LIST;
3014         if (count > (LG_SCALAR + 1))
3015                 flags |= SHF_LARGE_LISTLEN;
3016
3017         /* 
3018          * We're ready to emit either serialized form:
3019          *
3020          *   SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
3021          *   SX_HOOK <flags> <index>           <len2> <str> [<len3> <object-IDs>]
3022          *
3023          * If we recursed, the SX_HOOK has already been emitted.
3024          */
3025
3026         TRACEME(("SX_HOOK (recursed=%d) flags=0x%x "
3027                         "class=%"IVdf" len=%"IVdf" len2=%"IVdf" len3=%d",
3028                  recursed, flags, (IV)classnum, (IV)len, (IV)len2, count-1));
3029
3030         /* SX_HOOK <flags> [<extra>] */
3031         if (!recursed) {
3032                 PUTMARK(SX_HOOK);
3033                 PUTMARK(flags);
3034                 if (obj_type == SHT_EXTRA)
3035                         PUTMARK(eflags);
3036         } else
3037                 PUTMARK(flags);
3038
3039         /* <len> <classname> or <index> */
3040         if (flags & SHF_IDX_CLASSNAME) {
3041                 if (flags & SHF_LARGE_CLASSLEN)
3042                         WLEN(classnum);
3043                 else {
3044                         unsigned char cnum = (unsigned char) classnum;
3045                         PUTMARK(cnum);
3046                 }
3047         } else {
3048                 if (flags & SHF_LARGE_CLASSLEN)
3049                         WLEN(len);
3050                 else {
3051                         unsigned char clen = (unsigned char) len;
3052                         PUTMARK(clen);
3053                 }
3054                 WRITE(class, len);              /* Final \0 is omitted */
3055         }
3056
3057         /* <len2> <frozen-str> */
3058         if (flags & SHF_LARGE_STRLEN) {
3059                 I32 wlen2 = len2;               /* STRLEN might be 8 bytes */
3060                 WLEN(wlen2);                    /* Must write an I32 for 64-bit machines */
3061         } else {
3062                 unsigned char clen = (unsigned char) len2;
3063                 PUTMARK(clen);
3064         }
3065         if (len2)
3066                 WRITE(pv, (SSize_t)len2);       /* Final \0 is omitted */
3067
3068         /* [<len3> <object-IDs>] */
3069         if (flags & SHF_HAS_LIST) {
3070                 int len3 = count - 1;
3071                 if (flags & SHF_LARGE_LISTLEN)
3072                         WLEN(len3);
3073                 else {
3074                         unsigned char clen = (unsigned char) len3;
3075                         PUTMARK(clen);
3076                 }
3077
3078                 /*
3079                  * NOTA BENE, for 64-bit machines: the ary[i] below does not yield a
3080                  * real pointer, rather a tag number, well under the 32-bit limit.
3081                  */
3082
3083                 for (i = 1; i < count; i++) {
3084                         I32 tagval = htonl(LOW_32BITS(ary[i]));
3085                         WRITE_I32(tagval);
3086                         TRACEME(("object %d, tag #%d", i-1, ntohl(tagval)));
3087                 }
3088         }
3089
3090         /*
3091          * Free the array.  We need extra care for indices after 0, since they
3092          * don't hold real SVs but integers cast.
3093          */
3094
3095         if (count > 1)
3096                 AvFILLp(av) = 0;        /* Cheat, nothing after 0 interests us */
3097         av_undef(av);
3098         sv_free((SV *) av);
3099
3100         /*
3101          * If object was tied, need to insert serialization of the magic object.
3102          */
3103
3104         if (obj_type == SHT_EXTRA) {
3105                 MAGIC *mg;
3106
3107                 if (!(mg = mg_find(sv, mtype))) {
3108                         int svt = SvTYPE(sv);
3109                         CROAK(("No magic '%c' found while storing ref to tied %s with hook",
3110                                 mtype, (svt == SVt_PVHV) ? "hash" :
3111                                         (svt == SVt_PVAV) ? "array" : "scalar"));
3112                 }
3113
3114                 TRACEME(("handling the magic object 0x%"UVxf" part of 0x%"UVxf,
3115                         PTR2UV(mg->mg_obj), PTR2UV(sv)));
3116
3117                 /*
3118                  * [<magic object>]
3119                  */
3120
3121                 if ((ret = store(aTHX_ cxt, mg->mg_obj)))       /* Extra () for -Wall, grr... */
3122                         return ret;
3123         }
3124
3125         return 0;
3126 }
3127
3128 /*
3129  * store_blessed        -- dispatched manually, not via sv_store[]
3130  *
3131  * Check whether there is a STORABLE_xxx hook defined in the class or in one
3132  * of its ancestors.  If there is, then redispatch to store_hook();
3133  *
3134  * Otherwise, the blessed SV is stored using the following layout:
3135  *
3136  *    SX_BLESS <flag> <len> <classname> <object>
3137  *
3138  * where <flag> indicates whether <len> is stored on 0 or 4 bytes, depending
3139  * on the high-order bit in flag: if 1, then length follows on 4 bytes.
3140  * Otherwise, the low order bits give the length, thereby giving a compact
3141  * representation for class names less than 127 chars long.
3142  *
3143  * Each <classname> seen is remembered and indexed, so that the next time
3144  * an object in the blessed in the same <classname> is stored, the following
3145  * will be emitted:
3146  *
3147  *    SX_IX_BLESS <flag> <index> <object>
3148  *
3149  * where <index> is the classname index, stored on 0 or 4 bytes depending
3150  * on the high-order bit in flag (same encoding as above for <len>).
3151  */
3152 static int store_blessed(
3153         pTHX_
3154         stcxt_t *cxt,
3155         SV *sv,
3156         int type,
3157         HV *pkg)
3158 {
3159         SV *hook;
3160         I32 len;
3161         char *class;
3162         I32 classnum;
3163
3164         TRACEME(("store_blessed, type %d, class \"%s\"", type, HvNAME(pkg)));
3165
3166         /*
3167          * Look for a hook for this blessed SV and redirect to store_hook()
3168          * if needed.
3169          */
3170
3171         hook = pkg_can(aTHX_ cxt->hook, pkg, "STORABLE_freeze");
3172         if (hook)
3173                 return store_hook(aTHX_ cxt, sv, type, pkg, hook);
3174
3175         /*
3176          * This is a blessed SV without any serialization hook.
3177          */
3178
3179         class = HvNAME(pkg);
3180         len = strlen(class);
3181
3182         TRACEME(("blessed 0x%"UVxf" in %s, no hook: tagged #%d",
3183                  PTR2UV(sv), class, cxt->tagnum));
3184
3185         /*
3186          * Determine whether it is the first time we see that class name (in which
3187          * case it will be stored in the SX_BLESS form), or whether we already
3188          * saw that class name before (in which case the SX_IX_BLESS form will be
3189          * used).
3190          */
3191
3192         if (known_class(aTHX_ cxt, class, len, &classnum)) {
3193                 TRACEME(("already seen class %s, ID = %d", class, classnum));
3194                 PUTMARK(SX_IX_BLESS);
3195                 if (classnum <= LG_BLESS) {
3196                         unsigned char cnum = (unsigned char) classnum;
3197                         PUTMARK(cnum);
3198                 } else {
3199                         unsigned char flag = (unsigned char) 0x80;
3200                         PUTMARK(flag);
3201                         WLEN(classnum);
3202                 }
3203         } else {
3204                 TRACEME(("first time we see class %s, ID = %d", class, classnum));
3205                 PUTMARK(SX_BLESS);
3206                 if (len <= LG_BLESS) {
3207                         unsigned char clen = (unsigned char) len;
3208                         PUTMARK(clen);
3209                 } else {
3210                         unsigned char flag = (unsigned char) 0x80;
3211                         PUTMARK(flag);
3212                         WLEN(len);                                      /* Don't BER-encode, this should be rare */
3213                 }
3214                 WRITE(class, len);                              /* Final \0 is omitted */
3215         }
3216
3217         /*
3218          * Now emit the <object> part.
3219          */
3220
3221         return SV_STORE(type)(aTHX_ cxt, sv);
3222 }
3223
3224 /*
3225  * store_other
3226  *
3227  * We don't know how to store the item we reached, so return an error condition.
3228  * (it's probably a GLOB, some CODE reference, etc...)
3229  *
3230  * If they defined the `forgive_me' variable at the Perl level to some
3231  * true value, then don't croak, just warn, and store a placeholder string
3232  * instead.
3233  */
3234 static int store_other(pTHX_ stcxt_t *cxt, SV *sv)
3235 {
3236         I32 len;
3237         static char buf[80];
3238
3239         TRACEME(("store_other"));
3240
3241         /*
3242          * Fetch the value from perl only once per store() operation.
3243          */
3244
3245         if (
3246                 cxt->forgive_me == 0 ||
3247                 (cxt->forgive_me < 0 && !(cxt->forgive_me =
3248                         SvTRUE(perl_get_sv("Storable::forgive_me", TRUE)) ? 1 : 0))
3249         )
3250                 CROAK(("Can't store %s items", sv_reftype(sv, FALSE)));
3251
3252         warn("Can't store item %s(0x%"UVxf")",
3253                 sv_reftype(sv, FALSE), PTR2UV(sv));
3254
3255         /*
3256          * Store placeholder string as a scalar instead...
3257          */
3258
3259         (void) sprintf(buf, "You lost %s(0x%"UVxf")%c", sv_reftype(sv, FALSE),
3260                        PTR2UV(sv), (char) 0);
3261
3262         len = strlen(buf);
3263         STORE_SCALAR(buf, len);
3264         TRACEME(("ok (dummy \"%s\", length = %"IVdf")", buf, (IV) len));
3265
3266         return 0;
3267 }
3268
3269 /***
3270  *** Store driving routines
3271  ***/
3272
3273 /*
3274  * sv_type
3275  *
3276  * WARNING: partially duplicates Perl's sv_reftype for speed.
3277  *
3278  * Returns the type of the SV, identified by an integer. That integer
3279  * may then be used to index the dynamic routine dispatch table.
3280  */
3281 static int sv_type(pTHX_ SV *sv)
3282 {
3283         switch (SvTYPE(sv)) {
3284         case SVt_NULL:
3285         case SVt_IV:
3286         case SVt_NV:
3287                 /*
3288                  * No need to check for ROK, that can't be set here since there
3289                  * is no field capable of hodling the xrv_rv reference.
3290                  */
3291                 return svis_SCALAR;
3292         case SVt_PV:
3293         case SVt_RV:
3294         case SVt_PVIV:
3295         case SVt_PVNV:
3296                 /*
3297                  * Starting from SVt_PV, it is possible to have the ROK flag
3298                  * set, the pointer to the other SV being either stored in
3299                  * the xrv_rv (in the case of a pure SVt_RV), or as the
3300                  * xpv_pv field of an SVt_PV and its heirs.
3301                  *
3302                  * However, those SV cannot be magical or they would be an
3303                  * SVt_PVMG at least.
3304                  */
3305                 return SvROK(sv) ? svis_REF : svis_SCALAR;
3306         case SVt_PVMG:
3307         case SVt_PVLV:          /* Workaround for perl5.004_04 "LVALUE" bug */
3308                 if (SvRMAGICAL(sv) && (mg_find(sv, 'p')))
3309                         return svis_TIED_ITEM;
3310                 /* FALL THROUGH */
3311         case SVt_PVBM:
3312                 if (SvRMAGICAL(sv) && (mg_find(sv, 'q')))
3313                         return svis_TIED;
3314                 return SvROK(sv) ? svis_REF : svis_SCALAR;
3315         case SVt_PVAV:
3316                 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3317                         return svis_TIED;
3318                 return svis_ARRAY;
3319         case SVt_PVHV:
3320                 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3321                         return svis_TIED;
3322                 return svis_HASH;
3323         case SVt_PVCV:
3324                 return svis_CODE;
3325         default:
3326                 break;
3327         }
3328
3329         return svis_OTHER;
3330 }
3331
3332 /*
3333  * store
3334  *
3335  * Recursively store objects pointed to by the sv to the specified file.
3336  *
3337  * Layout is <content> or SX_OBJECT <tagnum> if we reach an already stored
3338  * object (one for which storage has started -- it may not be over if we have
3339  * a self-referenced structure). This data set forms a stored <object>.
3340  */
3341 static int store(pTHX_ stcxt_t *cxt, SV *sv)
3342 {
3343         SV **svh;
3344         int ret;
3345         int type;
3346         HV *hseen = cxt->hseen;
3347
3348         TRACEME(("store (0x%"UVxf")", PTR2UV(sv)));
3349
3350         /*
3351          * If object has already been stored, do not duplicate data.
3352          * Simply emit the SX_OBJECT marker followed by its tag data.
3353          * The tag is always written in network order.
3354          *
3355          * NOTA BENE, for 64-bit machines: the "*svh" below does not yield a
3356          * real pointer, rather a tag number (watch the insertion code below).
3357          * That means it probably safe to assume it is well under the 32-bit limit,
3358          * and makes the truncation safe.
3359          *              -- RAM, 14/09/1999
3360          */
3361
3362         svh = hv_fetch(hseen, (char *) &sv, sizeof(sv), FALSE);
3363         if (svh) {
3364                 I32 tagval;
3365
3366                 if (sv == &PL_sv_undef) {
3367                         /* We have seen PL_sv_undef before, but fake it as
3368                            if we have not.
3369
3370                            Not the simplest solution to making restricted
3371                            hashes work on 5.8.0, but it does mean that
3372                            repeated references to the one true undef will
3373                            take up less space in the output file.
3374                         */
3375                         /* Need to jump past the next hv_store, because on the
3376                            second store of undef the old hash value will be
3377                            SvREFCNT_dec()ed, and as Storable cheats horribly
3378                            by storing non-SVs in the hash a SEGV will ensure.
3379                            Need to increase the tag number so that the
3380                            receiver has no idea what games we're up to.  This
3381                            special casing doesn't affect hooks that store
3382                            undef, as the hook routine does its own lookup into
3383                            hseen.  Also this means that any references back
3384                            to PL_sv_undef (from the pathological case of hooks
3385                            storing references to it) will find the seen hash
3386                            entry for the first time, as if we didn't have this
3387                            hackery here. (That hseen lookup works even on 5.8.0
3388                            because it's a key of &PL_sv_undef and a value
3389                            which is a tag number, not a value which is
3390                            PL_sv_undef.)  */
3391                         cxt->tagnum++;
3392                         type = svis_SCALAR;
3393                         goto undef_special_case;
3394                 }
3395                 
3396                 tagval = htonl(LOW_32BITS(*svh));
3397
3398                 TRACEME(("object 0x%"UVxf" seen as #%d", PTR2UV(sv), ntohl(tagval)));
3399
3400                 PUTMARK(SX_OBJECT);
3401                 WRITE_I32(tagval);
3402                 return 0;
3403         }
3404
3405         /*
3406          * Allocate a new tag and associate it with the address of the sv being
3407          * stored, before recursing...
3408          *
3409          * In order to avoid creating new SvIVs to hold the tagnum we just
3410          * cast the tagnum to an SV pointer and store that in the hash.  This
3411          * means that we must clean up the hash manually afterwards, but gives
3412          * us a 15% throughput increase.
3413          *
3414          */
3415
3416         cxt->tagnum++;
3417         if (!hv_store(hseen,
3418                         (char *) &sv, sizeof(sv), INT2PTR(SV*, cxt->tagnum), 0))
3419                 return -1;
3420
3421         /*
3422          * Store `sv' and everything beneath it, using appropriate routine.
3423          * Abort immediately if we get a non-zero status back.
3424          */
3425
3426         type = sv_type(aTHX_ sv);
3427
3428 undef_special_case:
3429         TRACEME(("storing 0x%"UVxf" tag #%d, type %d...",
3430                  PTR2UV(sv), cxt->tagnum, type));
3431
3432         if (SvOBJECT(sv)) {
3433                 HV *pkg = SvSTASH(sv);
3434                 ret = store_blessed(aTHX_ cxt, sv, type, pkg);
3435         } else
3436                 ret = SV_STORE(type)(aTHX_ cxt, sv);
3437
3438         TRACEME(("%s (stored 0x%"UVxf", refcnt=%d, %s)",
3439                 ret ? "FAILED" : "ok", PTR2UV(sv),
3440                 SvREFCNT(sv), sv_reftype(sv, FALSE)));
3441
3442         return ret;
3443 }
3444
3445 /*
3446  * magic_write
3447  *
3448  * Write magic number and system information into the file.
3449  * Layout is <magic> <network> [<len> <byteorder> <sizeof int> <sizeof long>
3450  * <sizeof ptr>] where <len> is the length of the byteorder hexa string.
3451  * All size and lenghts are written as single characters here.
3452  *
3453  * Note that no byte ordering info is emitted when <network> is true, since
3454  * integers will be emitted in network order in that case.
3455  */
3456 static int magic_write(pTHX_ stcxt_t *cxt)
3457 {
3458     /*
3459      * Starting with 0.6, the "use_network_order" byte flag is also used to
3460      * indicate the version number of the binary image, encoded in the upper
3461      * bits. The bit 0 is always used to indicate network order.
3462      */
3463     /*
3464      * Starting with 0.7, a full byte is dedicated to the minor version of
3465      * the binary format, which is incremented only when new markers are
3466      * introduced, for instance, but when backward compatibility is preserved.
3467      */
3468
3469     /* Make these at compile time.  The WRITE() macro is sufficiently complex
3470        that it saves about 200 bytes doing it this way and only using it
3471        once.  */
3472     static const unsigned char network_file_header[] = {
3473         MAGICSTR_BYTES,
3474         (STORABLE_BIN_MAJOR << 1) | 1,
3475         STORABLE_BIN_WRITE_MINOR
3476     };
3477     static const unsigned char file_header[] = {
3478         MAGICSTR_BYTES,
3479         (STORABLE_BIN_MAJOR << 1) | 0,
3480         STORABLE_BIN_WRITE_MINOR,
3481         /* sizeof the array includes the 0 byte at the end:  */
3482         (char) sizeof (byteorderstr) - 1,
3483         BYTEORDER_BYTES,
3484         (unsigned char) sizeof(int),
3485         (unsigned char) sizeof(long),
3486         (unsigned char) sizeof(char *),
3487         (unsigned char) sizeof(NV)
3488     };
3489 #ifdef USE_56_INTERWORK_KLUDGE
3490     static const unsigned char file_header_56[] = {
3491         MAGICSTR_BYTES,
3492         (STORABLE_BIN_MAJOR << 1) | 0,
3493         STORABLE_BIN_WRITE_MINOR,
3494         /* sizeof the array includes the 0 byte at the end:  */
3495         (char) sizeof (byteorderstr_56) - 1,
3496         BYTEORDER_BYTES_56,
3497         (unsigned char) sizeof(int),
3498         (unsigned char) sizeof(long),
3499         (unsigned char) sizeof(char *),
3500         (unsigned char) sizeof(NV)
3501     };
3502 #endif
3503     const unsigned char *header;
3504     SSize_t length;
3505
3506     TRACEME(("magic_write on fd=%d", cxt->fio ? PerlIO_fileno(cxt->fio) : -1));
3507
3508     if (cxt->netorder) {
3509         header = network_file_header;
3510         length = sizeof (network_file_header);
3511     } else {
3512 #ifdef USE_56_INTERWORK_KLUDGE
3513         if (SvTRUE(perl_get_sv("Storable::interwork_56_64bit", TRUE))) {
3514             header = file_header_56;
3515             length = sizeof (file_header_56);
3516         } else
3517 #endif
3518         {
3519             header = file_header;
3520             length = sizeof (file_header);
3521         }
3522     }        
3523
3524     if (!cxt->fio) {
3525         /* sizeof the array includes the 0 byte at the end.  */
3526         header += sizeof (magicstr) - 1;
3527         length -= sizeof (magicstr) - 1;
3528     }        
3529
3530     WRITE( (unsigned char*) header, length);
3531
3532     if (!cxt->netorder) {
3533         TRACEME(("ok (magic_write byteorder = 0x%lx [%d], I%d L%d P%d D%d)",
3534                  (unsigned long) BYTEORDER, (int) sizeof (byteorderstr) - 1,
3535                  (int) sizeof(int), (int) sizeof(long),
3536                  (int) sizeof(char *), (int) sizeof(NV)));
3537     }
3538     return 0;
3539 }
3540
3541 /*
3542  * do_store
3543  *
3544  * Common code for store operations.
3545  *
3546  * When memory store is requested (f = NULL) and a non null SV* is given in
3547  * `res', it is filled with a new SV created out of the memory buffer.
3548  *
3549  * It is required to provide a non-null `res' when the operation type is not
3550  * dclone() and store() is performed to memory.
3551  */
3552 static int do_store(
3553         pTHX_
3554         PerlIO *f,
3555         SV *sv,
3556         int optype,
3557         int network_order,
3558         SV **res)
3559 {
3560         dSTCXT;
3561         int status;
3562
3563         ASSERT(!(f == 0 && !(optype & ST_CLONE)) || res,
3564                 ("must supply result SV pointer for real recursion to memory"));
3565
3566         TRACEME(("do_store (optype=%d, netorder=%d)",
3567                 optype, network_order));
3568
3569         optype |= ST_STORE;
3570
3571         /*
3572          * Workaround for CROAK leak: if they enter with a "dirty" context,
3573          * free up memory for them now.
3574          */
3575
3576         if (cxt->s_dirty)
3577                 clean_context(aTHX_ cxt);
3578
3579         /*
3580          * Now that STORABLE_xxx hooks exist, it is possible that they try to
3581          * re-enter store() via the hooks.  We need to stack contexts.
3582          */
3583
3584         if (cxt->entry)
3585                 cxt = allocate_context(aTHX_ cxt);
3586
3587         cxt->entry++;
3588
3589         ASSERT(cxt->entry == 1, ("starting new recursion"));
3590         ASSERT(!cxt->s_dirty, ("clean context"));
3591
3592         /*
3593          * Ensure sv is actually a reference. From perl, we called something
3594          * like:
3595          *       pstore(aTHX_ FILE, \@array);
3596          * so we must get the scalar value behing that reference.
3597          */
3598
3599         if (!SvROK(sv))
3600                 CROAK(("Not a reference"));
3601         sv = SvRV(sv);                  /* So follow it to know what to store */
3602
3603         /* 
3604          * If we're going to store to memory, reset the buffer.
3605          */
3606
3607         if (!f)
3608                 MBUF_INIT(0);
3609
3610         /*
3611          * Prepare context and emit headers.
3612          */
3613
3614         init_store_context(aTHX_ cxt, f, optype, network_order);
3615
3616         if (-1 == magic_write(aTHX_ cxt))               /* Emit magic and ILP info */
3617                 return 0;                                       /* Error */
3618
3619         /*
3620          * Recursively store object...
3621          */
3622
3623         ASSERT(is_storing(), ("within store operation"));
3624
3625         status = store(aTHX_ cxt, sv);          /* Just do it! */
3626
3627         /*
3628          * If they asked for a memory store and they provided an SV pointer,
3629          * make an SV string out of the buffer and fill their pointer.
3630          *
3631          * When asking for ST_REAL, it's MANDATORY for the caller to provide
3632          * an SV, since context cleanup might free the buffer if we did recurse.
3633          * (unless caller is dclone(), which is aware of that).
3634          */
3635
3636         if (!cxt->fio && res)
3637                 *res = mbuf2sv(aTHX);
3638
3639         /*
3640          * Final cleanup.
3641          *
3642          * The "root" context is never freed, since it is meant to be always
3643          * handy for the common case where no recursion occurs at all (i.e.
3644          * we enter store() outside of any Storable code and leave it, period).
3645          * We know it's the "root" context because there's nothing stacked
3646          * underneath it.
3647          *
3648          * OPTIMIZATION:
3649          *
3650          * When deep cloning, we don't free the context: doing so would force
3651          * us to copy the data in the memory buffer.  Sicne we know we're
3652          * about to enter do_retrieve...
3653          */
3654
3655         clean_store_context(aTHX_ cxt);
3656         if (cxt->prev && !(cxt->optype & ST_CLONE))
3657                 free_context(aTHX_ cxt);
3658
3659         TRACEME(("do_store returns %d", status));
3660
3661         return status == 0;
3662 }
3663
3664 /*
3665  * pstore
3666  *
3667  * Store the transitive data closure of given object to disk.
3668  * Returns 0 on error, a true value otherwise.
3669  */
3670 int pstore(pTHX_ PerlIO *f, SV *sv)
3671 {
3672         TRACEME(("pstore"));
3673         return do_store(aTHX_ f, sv, 0, FALSE, (SV**) 0);
3674
3675 }
3676
3677 /*
3678  * net_pstore
3679  *
3680  * Same as pstore(), but network order is used for integers and doubles are
3681  * emitted as strings.
3682  */
3683 int net_pstore(pTHX_ PerlIO *f, SV *sv)
3684 {
3685         TRACEME(("net_pstore"));
3686         return do_store(aTHX_ f, sv, 0, TRUE, (SV**) 0);
3687 }
3688
3689 /***
3690  *** Memory stores.
3691  ***/
3692
3693 /*
3694  * mbuf2sv
3695  *
3696  * Build a new SV out of the content of the internal memory buffer.
3697  */
3698 static SV *mbuf2sv(pTHX)
3699 {
3700         dSTCXT;
3701
3702         return newSVpv(mbase, MBUF_SIZE());
3703 }
3704
3705 /*
3706  * mstore
3707  *
3708  * Store the transitive data closure of given object to memory.
3709  * Returns undef on error, a scalar value containing the data otherwise.
3710  */
3711 SV *mstore(pTHX_ SV *sv)
3712 {
3713         SV *out;
3714
3715         TRACEME(("mstore"));
3716
3717         if (!do_store(aTHX_ (PerlIO*) 0, sv, 0, FALSE, &out))
3718                 return &PL_sv_undef;
3719
3720         return out;
3721 }
3722
3723 /*
3724  * net_mstore
3725  *
3726  * Same as mstore(), but network order is used for integers and doubles are
3727  * emitted as strings.
3728  */
3729 SV *net_mstore(pTHX_ SV *sv)
3730 {
3731         SV *out;
3732
3733         TRACEME(("net_mstore"));
3734
3735         if (!do_store(aTHX_ (PerlIO*) 0, sv, 0, TRUE, &out))
3736                 return &PL_sv_undef;
3737
3738         return out;
3739 }
3740
3741 /***
3742  *** Specific retrieve callbacks.
3743  ***/
3744
3745 /*
3746  * retrieve_other
3747  *
3748  * Return an error via croak, since it is not possible that we get here
3749  * under normal conditions, when facing a file produced via pstore().
3750  */
3751 static SV *retrieve_other(pTHX_ stcxt_t *cxt, char *cname)
3752 {
3753         if (
3754                 cxt->ver_major != STORABLE_BIN_MAJOR &&
3755                 cxt->ver_minor != STORABLE_BIN_MINOR
3756         ) {
3757                 CROAK(("Corrupted storable %s (binary v%d.%d), current is v%d.%d",
3758                         cxt->fio ? "file" : "string",
3759                         cxt->ver_major, cxt->ver_minor,
3760                         STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR));
3761         } else {
3762                 CROAK(("Corrupted storable %s (binary v%d.%d)",
3763                         cxt->fio ? "file" : "string",
3764                         cxt->ver_major, cxt->ver_minor));
3765         }
3766
3767         return (SV *) 0;                /* Just in case */
3768 }
3769
3770 /*
3771  * retrieve_idx_blessed
3772  *
3773  * Layout is SX_IX_BLESS <index> <object> with SX_IX_BLESS already read.
3774  * <index> can be coded on either 1 or 5 bytes.
3775  */
3776 static SV *retrieve_idx_blessed(pTHX_ stcxt_t *cxt, char *cname)
3777 {
3778         I32 idx;
3779         char *class;
3780         SV **sva;
3781         SV *sv;
3782
3783         TRACEME(("retrieve_idx_blessed (#%d)", cxt->tagnum));
3784         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3785
3786         GETMARK(idx);                   /* Index coded on a single char? */
3787         if (idx & 0x80)
3788                 RLEN(idx);
3789
3790         /*
3791          * Fetch classname in `aclass'
3792          */
3793
3794         sva = av_fetch(cxt->aclass, idx, FALSE);
3795         if (!sva)
3796                 CROAK(("Class name #%"IVdf" should have been seen already", (IV) idx));
3797
3798         class = SvPVX(*sva);    /* We know it's a PV, by construction */
3799
3800         TRACEME(("class ID %d => %s", idx, class));
3801
3802         /*
3803          * Retrieve object and bless it.
3804          */
3805
3806         sv = retrieve(aTHX_ cxt, class);        /* First SV which is SEEN will be blessed */
3807
3808         return sv;
3809 }
3810
3811 /*
3812  * retrieve_blessed
3813  *
3814  * Layout is SX_BLESS <len> <classname> <object> with SX_BLESS already read.
3815  * <len> can be coded on either 1 or 5 bytes.
3816  */
3817 static SV *retrieve_blessed(pTHX_ stcxt_t *cxt, char *cname)
3818 {
3819         I32 len;
3820         SV *sv;
3821         char buf[LG_BLESS + 1];         /* Avoid malloc() if possible */
3822         char *class = buf;
3823
3824         TRACEME(("retrieve_blessed (#%d)", cxt->tagnum));
3825         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3826
3827         /*
3828          * Decode class name length and read that name.
3829          *
3830          * Short classnames have two advantages: their length is stored on one
3831          * single byte, and the string can be read on the stack.
3832          */
3833
3834         GETMARK(len);                   /* Length coded on a single char? */
3835         if (len & 0x80) {
3836                 RLEN(len);
3837                 TRACEME(("** allocating %d bytes for class name", len+1));
3838                 New(10003, class, len+1, char);
3839         }
3840         READ(class, len);
3841         class[len] = '\0';              /* Mark string end */
3842
3843         /*
3844          * It's a new classname, otherwise it would have been an SX_IX_BLESS.
3845          */
3846
3847         TRACEME(("new class name \"%s\" will bear ID = %d", class, cxt->classnum));
3848
3849         if (!av_store(cxt->aclass, cxt->classnum++, newSVpvn(class, len)))
3850                 return (SV *) 0;
3851
3852         /*
3853          * Retrieve object and bless it.
3854          */
3855
3856         sv = retrieve(aTHX_ cxt, class);        /* First SV which is SEEN will be blessed */
3857         if (class != buf)
3858                 Safefree(class);
3859
3860         return sv;
3861 }
3862
3863 /*
3864  * retrieve_hook
3865  *
3866  * Layout: SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
3867  * with leading mark already read, as usual.
3868  *
3869  * When recursion was involved during serialization of the object, there
3870  * is an unknown amount of serialized objects after the SX_HOOK mark.  Until
3871  * we reach a <flags> marker with the recursion bit cleared.
3872  *
3873  * If the first <flags> byte contains a type of SHT_EXTRA, then the real type
3874  * is held in the <extra> byte, and if the object is tied, the serialized
3875  * magic object comes at the very end:
3876  *
3877  *     SX_HOOK <flags> <extra> ... [<len3> <object-IDs>] <magic object>
3878  *
3879  * This means the STORABLE_thaw hook will NOT get a tied variable during its
3880  * processing (since we won't have seen the magic object by the time the hook
3881  * is called).  See comments below for why it was done that way.
3882  */
3883 static SV *retrieve_hook(pTHX_ stcxt_t *cxt, char *cname)
3884 {
3885         I32 len;
3886         char buf[LG_BLESS + 1];         /* Avoid malloc() if possible */
3887         char *class = buf;
3888         unsigned int flags;
3889         I32 len2;
3890         SV *frozen;
3891         I32 len3 = 0;
3892         AV *av = 0;
3893         SV *hook;
3894         SV *sv;
3895         SV *rv;
3896         int obj_type;
3897         int clone = cxt->optype & ST_CLONE;
3898         char mtype = '\0';
3899         unsigned int extra_type = 0;
3900
3901         TRACEME(("retrieve_hook (#%d)", cxt->tagnum));
3902         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3903
3904         /*
3905          * Read flags, which tell us about the type, and whether we need to recurse.
3906          */
3907
3908         GETMARK(flags);
3909
3910         /*
3911          * Create the (empty) object, and mark it as seen.
3912          *
3913          * This must be done now, because tags are incremented, and during
3914          * serialization, the object tag was affected before recursion could
3915          * take place.
3916          */
3917
3918         obj_type = flags & SHF_TYPE_MASK;
3919         switch (obj_type) {
3920         case SHT_SCALAR:
3921                 sv = newSV(0);
3922                 break;
3923         case SHT_ARRAY:
3924                 sv = (SV *) newAV();
3925                 break;
3926         case SHT_HASH:
3927                 sv = (SV *) newHV();
3928                 break;
3929         case SHT_EXTRA:
3930                 /*
3931                  * Read <extra> flag to know the type of the object.
3932                  * Record associated magic type for later.
3933                  */
3934                 GETMARK(extra_type);
3935                 switch (extra_type) {
3936                 case SHT_TSCALAR:
3937                         sv = newSV(0);
3938                         mtype = 'q';
3939                         break;
3940                 case SHT_TARRAY:
3941                         sv = (SV *) newAV();
3942                         mtype = 'P';
3943                         break;
3944                 case SHT_THASH:
3945                         sv = (SV *) newHV();
3946                         mtype = 'P';
3947                         break;
3948                 default:
3949                         return retrieve_other(aTHX_ cxt, 0);    /* Let it croak */
3950                 }
3951                 break;
3952         default:
3953                 return retrieve_other(aTHX_ cxt, 0);            /* Let it croak */
3954         }
3955         SEEN(sv, 0, 0);                                                 /* Don't bless yet */
3956
3957         /*
3958          * Whilst flags tell us to recurse, do so.
3959          *
3960          * We don't need to remember the addresses returned by retrieval, because
3961          * all the references will be obtained through indirection via the object
3962          * tags in the object-ID list.
3963          *
3964          * We need to decrement the reference count for these objects
3965          * because, if the user doesn't save a reference to them in the hook,
3966          * they must be freed when this context is cleaned.
3967          */
3968
3969         while (flags & SHF_NEED_RECURSE) {
3970                 TRACEME(("retrieve_hook recursing..."));
3971                 rv = retrieve(aTHX_ cxt, 0);
3972                 if (!rv)
3973                         return (SV *) 0;
3974                 SvREFCNT_dec(rv);
3975                 TRACEME(("retrieve_hook back with rv=0x%"UVxf,
3976                          PTR2UV(rv)));
3977                 GETMARK(flags);
3978         }
3979
3980         if (flags & SHF_IDX_CLASSNAME) {
3981                 SV **sva;
3982                 I32 idx;
3983
3984                 /*
3985                  * Fetch index from `aclass'
3986                  */
3987
3988                 if (flags & SHF_LARGE_CLASSLEN)
3989                         RLEN(idx);
3990                 else
3991                         GETMARK(idx);
3992
3993                 sva = av_fetch(cxt->aclass, idx, FALSE);
3994                 if (!sva)
3995                         CROAK(("Class name #%"IVdf" should have been seen already",
3996                                 (IV) idx));
3997
3998                 class = SvPVX(*sva);    /* We know it's a PV, by construction */
3999                 TRACEME(("class ID %d => %s", idx, class));
4000
4001         } else {
4002                 /*
4003                  * Decode class name length and read that name.
4004                  *
4005                  * NOTA BENE: even if the length is stored on one byte, we don't read
4006                  * on the stack.  Just like retrieve_blessed(), we limit the name to
4007                  * LG_BLESS bytes.  This is an arbitrary decision.
4008                  */
4009
4010                 if (flags & SHF_LARGE_CLASSLEN)
4011                         RLEN(len);
4012                 else
4013                         GETMARK(len);
4014
4015                 if (len > LG_BLESS) {
4016                         TRACEME(("** allocating %d bytes for class name", len+1));
4017                         New(10003, class, len+1, char);
4018                 }
4019
4020                 READ(class, len);
4021                 class[len] = '\0';              /* Mark string end */
4022
4023                 /*
4024                  * Record new classname.
4025                  */
4026
4027                 if (!av_store(cxt->aclass, cxt->classnum++, newSVpvn(class, len)))
4028                         return (SV *) 0;
4029         }
4030
4031         TRACEME(("class name: %s", class));
4032
4033         /*
4034          * Decode user-frozen string length and read it in an SV.
4035          *
4036          * For efficiency reasons, we read data directly into the SV buffer.
4037          * To understand that code, read retrieve_scalar()
4038          */
4039
4040         if (flags & SHF_LARGE_STRLEN)
4041                 RLEN(len2);
4042         else
4043                 GETMARK(len2);
4044
4045         frozen = NEWSV(10002, len2);
4046         if (len2) {
4047                 SAFEREAD(SvPVX(frozen), len2, frozen);
4048                 SvCUR_set(frozen, len2);
4049                 *SvEND(frozen) = '\0';
4050         }
4051         (void) SvPOK_only(frozen);              /* Validates string pointer */
4052         if (cxt->s_tainted)                             /* Is input source tainted? */
4053                 SvTAINT(frozen);
4054
4055         TRACEME(("frozen string: %d bytes", len2));
4056
4057         /*
4058          * Decode object-ID list length, if present.
4059          */
4060
4061         if (flags & SHF_HAS_LIST) {
4062                 if (flags & SHF_LARGE_LISTLEN)
4063                         RLEN(len3);
4064                 else
4065                         GETMARK(len3);
4066                 if (len3) {
4067                         av = newAV();
4068                         av_extend(av, len3 + 1);        /* Leave room for [0] */
4069                         AvFILLp(av) = len3;                     /* About to be filled anyway */
4070                 }
4071         }
4072
4073         TRACEME(("has %d object IDs to link", len3));
4074
4075         /*
4076          * Read object-ID list into array.
4077          * Because we pre-extended it, we can cheat and fill it manually.
4078          *
4079          * We read object tags and we can convert them into SV* on the fly
4080          * because we know all the references listed in there (as tags)
4081          * have been already serialized, hence we have a valid correspondance
4082          * between each of those tags and the recreated SV.
4083          */
4084
4085         if (av) {
4086                 SV **ary = AvARRAY(av);
4087                 int i;
4088                 for (i = 1; i <= len3; i++) {   /* We leave [0] alone */
4089                         I32 tag;
4090                         SV **svh;
4091                         SV *xsv;
4092
4093                         READ_I32(tag);
4094                         tag = ntohl(tag);
4095                         svh = av_fetch(cxt->aseen, tag, FALSE);
4096                         if (!svh) {
4097                                 if (tag == cxt->where_is_undef) {
4098                                         /* av_fetch uses PL_sv_undef internally, hence this
4099                                            somewhat gruesome hack. */
4100                                         xsv = &PL_sv_undef;
4101                                         svh = &xsv;
4102                                 } else {
4103                                         CROAK(("Object #%"IVdf" should have been retrieved already",
4104                                                (IV) tag));
4105                                 }
4106                         }
4107                         xsv = *svh;
4108                         ary[i] = SvREFCNT_inc(xsv);
4109                 }
4110         }
4111
4112         /*
4113          * Bless the object and look up the STORABLE_thaw hook.
4114          */
4115
4116         BLESS(sv, class);
4117         hook = pkg_can(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4118         if (!hook) {
4119                 /*
4120                  * Hook not found.  Maybe they did not require the module where this
4121                  * hook is defined yet?
4122                  *
4123                  * If the require below succeeds, we'll be able to find the hook.
4124                  * Still, it only works reliably when each class is defined in a
4125                  * file of its own.
4126                  */
4127
4128                 SV *psv = newSVpvn("require ", 8);
4129                 sv_catpv(psv, class);
4130
4131                 TRACEME(("No STORABLE_thaw defined for objects of class %s", class));
4132                 TRACEME(("Going to require module '%s' with '%s'", class, SvPVX(psv)));
4133
4134                 perl_eval_sv(psv, G_DISCARD);
4135                 sv_free(psv);
4136
4137                 /*
4138                  * We cache results of pkg_can, so we need to uncache before attempting
4139                  * the lookup again.
4140                  */
4141
4142                 pkg_uncache(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4143                 hook = pkg_can(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4144
4145                 if (!hook)
4146                         CROAK(("No STORABLE_thaw defined for objects of class %s "
4147                                         "(even after a \"require %s;\")", class, class));
4148         }
4149
4150         /*
4151          * If we don't have an `av' yet, prepare one.
4152          * Then insert the frozen string as item [0].
4153          */
4154
4155         if (!av) {
4156                 av = newAV();
4157                 av_extend(av, 1);
4158                 AvFILLp(av) = 0;
4159         }
4160         AvARRAY(av)[0] = SvREFCNT_inc(frozen);
4161
4162         /*
4163          * Call the hook as:
4164          *
4165          *   $object->STORABLE_thaw($cloning, $frozen, @refs);
4166          * 
4167          * where $object is our blessed (empty) object, $cloning is a boolean
4168          * telling whether we're running a deep clone, $frozen is the frozen
4169          * string the user gave us in his serializing hook, and @refs, which may
4170          * be empty, is the list of extra references he returned along for us
4171          * to serialize.
4172          *
4173          * In effect, the hook is an alternate creation routine for the class,
4174          * the object itself being already created by the runtime.
4175          */
4176
4177         TRACEME(("calling STORABLE_thaw on %s at 0x%"UVxf" (%"IVdf" args)",
4178                  class, PTR2UV(sv), (IV) AvFILLp(av) + 1));
4179
4180         rv = newRV(sv);
4181         (void) scalar_call(aTHX_ rv, hook, clone, av, G_SCALAR|G_DISCARD);
4182         SvREFCNT_dec(rv);
4183
4184         /*
4185          * Final cleanup.
4186          */
4187
4188         SvREFCNT_dec(frozen);
4189         av_undef(av);
4190         sv_free((SV *) av);
4191         if (!(flags & SHF_IDX_CLASSNAME) && class != buf)
4192                 Safefree(class);
4193
4194         /*
4195          * If we had an <extra> type, then the object was not as simple, and
4196          * we need to restore extra magic now.
4197          */
4198
4199         if (!extra_type)
4200                 return sv;
4201
4202         TRACEME(("retrieving magic object for 0x%"UVxf"...", PTR2UV(sv)));
4203
4204         rv = retrieve(aTHX_ cxt, 0);            /* Retrieve <magic object> */
4205
4206         TRACEME(("restoring the magic object 0x%"UVxf" part of 0x%"UVxf,
4207                 PTR2UV(rv), PTR2UV(sv)));
4208
4209         switch (extra_type) {
4210         case SHT_TSCALAR:
4211                 sv_upgrade(sv, SVt_PVMG);
4212                 break;
4213         case SHT_TARRAY:
4214                 sv_upgrade(sv, SVt_PVAV);
4215                 AvREAL_off((AV *)sv);
4216                 break;
4217         case SHT_THASH:
4218                 sv_upgrade(sv, SVt_PVHV);
4219                 break;
4220         default:
4221                 CROAK(("Forgot to deal with extra type %d", extra_type));
4222                 break;
4223         }
4224
4225         /*
4226          * Adding the magic only now, well after the STORABLE_thaw hook was called
4227          * means the hook cannot know it deals with an object whose variable is
4228          * tied.  But this is happening when retrieving $o in the following case:
4229          *
4230          *      my %h;
4231          *  tie %h, 'FOO';
4232          *      my $o = bless \%h, 'BAR';
4233          *
4234          * The 'BAR' class is NOT the one where %h is tied into.  Therefore, as
4235          * far as the 'BAR' class is concerned, the fact that %h is not a REAL
4236          * hash but a tied one should not matter at all, and remain transparent.
4237          * This means the magic must be restored by Storable AFTER the hook is
4238          * called.
4239          *
4240          * That looks very reasonable to me, but then I've come up with this
4241          * after a bug report from David Nesting, who was trying to store such
4242          * an object and caused Storable to fail.  And unfortunately, it was
4243          * also the easiest way to retrofit support for blessed ref to tied objects
4244          * into the existing design.  -- RAM, 17/02/2001
4245          */
4246
4247         sv_magic(sv, rv, mtype, Nullch, 0);
4248         SvREFCNT_dec(rv);                       /* Undo refcnt inc from sv_magic() */
4249
4250         return sv;
4251 }
4252
4253 /*
4254  * retrieve_ref
4255  *
4256  * Retrieve reference to some other scalar.
4257  * Layout is SX_REF <object>, with SX_REF already read.
4258  */
4259 static SV *retrieve_ref(pTHX_ stcxt_t *cxt, char *cname)
4260 {
4261         SV *rv;
4262         SV *sv;
4263
4264         TRACEME(("retrieve_ref (#%d)", cxt->tagnum));
4265
4266         /*
4267          * We need to create the SV that holds the reference to the yet-to-retrieve
4268          * object now, so that we may record the address in the seen table.
4269          * Otherwise, if the object to retrieve references us, we won't be able
4270          * to resolve the SX_OBJECT we'll see at that point! Hence we cannot
4271          * do the retrieve first and use rv = newRV(sv) since it will be too late
4272          * for SEEN() recording.
4273          */
4274
4275         rv = NEWSV(10002, 0);
4276         SEEN(rv, cname, 0);             /* Will return if rv is null */
4277         sv = retrieve(aTHX_ cxt, 0);    /* Retrieve <object> */
4278         if (!sv)
4279                 return (SV *) 0;        /* Failed */
4280
4281         /*
4282          * WARNING: breaks RV encapsulation.
4283          *
4284          * Now for the tricky part. We have to upgrade our existing SV, so that
4285          * it is now an RV on sv... Again, we cheat by duplicating the code
4286          * held in newSVrv(), since we already got our SV from retrieve().
4287          *
4288          * We don't say:
4289          *
4290          *              SvRV(rv) = SvREFCNT_inc(sv);
4291          *
4292          * here because the reference count we got from retrieve() above is
4293          * already correct: if the object was retrieved from the file, then
4294          * its reference count is one. Otherwise, if it was retrieved via
4295          * an SX_OBJECT indication, a ref count increment was done.
4296          */
4297
4298         if (cname) {
4299                 /* No need to do anything, as rv will already be PVMG.  */
4300                 assert (SvTYPE(rv) >= SVt_RV);
4301         } else {
4302                 sv_upgrade(rv, SVt_RV);
4303         }
4304
4305         SvRV(rv) = sv;                          /* $rv = \$sv */
4306         SvROK_on(rv);
4307
4308         TRACEME(("ok (retrieve_ref at 0x%"UVxf")", PTR2UV(rv)));
4309
4310         return rv;
4311 }
4312
4313 /*
4314  * retrieve_weakref
4315  *
4316  * Retrieve weak reference to some other scalar.
4317  * Layout is SX_WEAKREF <object>, with SX_WEAKREF already read.
4318  */
4319 static SV *retrieve_weakref(pTHX_ stcxt_t *cxt, char *cname)
4320 {
4321         SV *sv;
4322
4323         TRACEME(("retrieve_weakref (#%d)", cxt->tagnum));
4324
4325         sv = retrieve_ref(aTHX_ cxt, cname);
4326         if (sv) {
4327 #ifdef SvWEAKREF
4328                 sv_rvweaken(sv);
4329 #else
4330                 WEAKREF_CROAK();
4331 #endif
4332         }
4333         return sv;
4334 }
4335
4336 /*
4337  * retrieve_overloaded
4338  *
4339  * Retrieve reference to some other scalar with overloading.
4340  * Layout is SX_OVERLOAD <object>, with SX_OVERLOAD already read.
4341  */
4342 static SV *retrieve_overloaded(pTHX_ stcxt_t *cxt, char *cname)
4343 {
4344         SV *rv;
4345         SV *sv;
4346         HV *stash;
4347
4348         TRACEME(("retrieve_overloaded (#%d)", cxt->tagnum));
4349
4350         /*
4351          * Same code as retrieve_ref(), duplicated to avoid extra call.
4352          */
4353
4354         rv = NEWSV(10002, 0);
4355         SEEN(rv, cname, 0);             /* Will return if rv is null */
4356         sv = retrieve(aTHX_ cxt, 0);    /* Retrieve <object> */
4357         if (!sv)
4358                 return (SV *) 0;        /* Failed */
4359
4360         /*
4361          * WARNING: breaks RV encapsulation.
4362          */
4363
4364         sv_upgrade(rv, SVt_RV);
4365         SvRV(rv) = sv;                          /* $rv = \$sv */
4366         SvROK_on(rv);
4367
4368         /*
4369          * Restore overloading magic.
4370          */
4371
4372         stash = SvTYPE(sv) ? (HV *) SvSTASH (sv) : 0;
4373         if (!stash) {
4374                 CROAK(("Cannot restore overloading on %s(0x%"UVxf
4375                        ") (package <unknown>)",
4376                        sv_reftype(sv, FALSE),
4377                        PTR2UV(sv)));
4378         }
4379         if (!Gv_AMG(stash)) {
4380                 SV *psv = newSVpvn("require ", 8);
4381                 const char *package = HvNAME(stash);
4382                 sv_catpv(psv, package);
4383
4384                 TRACEME(("No overloading defined for package %s", package));
4385                 TRACEME(("Going to require module '%s' with '%s'", package, SvPVX(psv)));
4386
4387                 perl_eval_sv(psv, G_DISCARD);
4388                 sv_free(psv);
4389                 if (!Gv_AMG(stash)) {
4390                         CROAK(("Cannot restore overloading on %s(0x%"UVxf
4391                                ") (package %s) (even after a \"require %s;\")",
4392                                sv_reftype(sv, FALSE),
4393                                PTR2UV(sv),
4394                                package, package));
4395                 }
4396         }
4397
4398         SvAMAGIC_on(rv);
4399
4400         TRACEME(("ok (retrieve_overloaded at 0x%"UVxf")", PTR2UV(rv)));
4401
4402         return rv;
4403 }
4404
4405 /*
4406  * retrieve_weakoverloaded
4407  *
4408  * Retrieve weak overloaded reference to some other scalar.
4409  * Layout is SX_WEAKOVERLOADED <object>, with SX_WEAKOVERLOADED already read.
4410  */
4411 static SV *retrieve_weakoverloaded(pTHX_ stcxt_t *cxt, char *cname)
4412 {
4413         SV *sv;
4414
4415         TRACEME(("retrieve_weakoverloaded (#%d)", cxt->tagnum));
4416
4417         sv = retrieve_overloaded(aTHX_ cxt, cname);
4418         if (sv) {
4419 #ifdef SvWEAKREF
4420                 sv_rvweaken(sv);
4421 #else
4422                 WEAKREF_CROAK();
4423 #endif
4424         }
4425         return sv;
4426 }
4427
4428 /*
4429  * retrieve_tied_array
4430  *
4431  * Retrieve tied array
4432  * Layout is SX_TIED_ARRAY <object>, with SX_TIED_ARRAY already read.
4433  */
4434 static SV *retrieve_tied_array(pTHX_ stcxt_t *cxt, char *cname)
4435 {
4436         SV *tv;
4437         SV *sv;
4438
4439         TRACEME(("retrieve_tied_array (#%d)", cxt->tagnum));
4440
4441         tv = NEWSV(10002, 0);
4442         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4443         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4444         if (!sv)
4445                 return (SV *) 0;                /* Failed */
4446
4447         sv_upgrade(tv, SVt_PVAV);
4448         AvREAL_off((AV *)tv);
4449         sv_magic(tv, sv, 'P', Nullch, 0);
4450         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4451
4452         TRACEME(("ok (retrieve_tied_array at 0x%"UVxf")", PTR2UV(tv)));
4453
4454         return tv;
4455 }
4456
4457 /*
4458  * retrieve_tied_hash
4459  *
4460  * Retrieve tied hash
4461  * Layout is SX_TIED_HASH <object>, with SX_TIED_HASH already read.
4462  */
4463 static SV *retrieve_tied_hash(pTHX_ stcxt_t *cxt, char *cname)
4464 {
4465         SV *tv;
4466         SV *sv;
4467
4468         TRACEME(("retrieve_tied_hash (#%d)", cxt->tagnum));
4469
4470         tv = NEWSV(10002, 0);
4471         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4472         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4473         if (!sv)
4474                 return (SV *) 0;                /* Failed */
4475
4476         sv_upgrade(tv, SVt_PVHV);
4477         sv_magic(tv, sv, 'P', Nullch, 0);
4478         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4479
4480         TRACEME(("ok (retrieve_tied_hash at 0x%"UVxf")", PTR2UV(tv)));
4481
4482         return tv;
4483 }
4484
4485 /*
4486  * retrieve_tied_scalar
4487  *
4488  * Retrieve tied scalar
4489  * Layout is SX_TIED_SCALAR <object>, with SX_TIED_SCALAR already read.
4490  */
4491 static SV *retrieve_tied_scalar(pTHX_ stcxt_t *cxt, char *cname)
4492 {
4493         SV *tv;
4494         SV *sv, *obj = NULL;
4495
4496         TRACEME(("retrieve_tied_scalar (#%d)", cxt->tagnum));
4497
4498         tv = NEWSV(10002, 0);
4499         SEEN(tv, cname, 0);                     /* Will return if rv is null */
4500         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4501         if (!sv) {
4502                 return (SV *) 0;                /* Failed */
4503         }
4504         else if (SvTYPE(sv) != SVt_NULL) {
4505                 obj = sv;
4506         }
4507
4508         sv_upgrade(tv, SVt_PVMG);
4509         sv_magic(tv, obj, 'q', Nullch, 0);
4510
4511         if (obj) {
4512                 /* Undo refcnt inc from sv_magic() */
4513                 SvREFCNT_dec(obj);
4514         }
4515
4516         TRACEME(("ok (retrieve_tied_scalar at 0x%"UVxf")", PTR2UV(tv)));
4517
4518         return tv;
4519 }
4520
4521 /*
4522  * retrieve_tied_key
4523  *
4524  * Retrieve reference to value in a tied hash.
4525  * Layout is SX_TIED_KEY <object> <key>, with SX_TIED_KEY already read.
4526  */
4527 static SV *retrieve_tied_key(pTHX_ stcxt_t *cxt, char *cname)
4528 {
4529         SV *tv;
4530         SV *sv;
4531         SV *key;
4532
4533         TRACEME(("retrieve_tied_key (#%d)", cxt->tagnum));
4534
4535         tv = NEWSV(10002, 0);
4536         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4537         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4538         if (!sv)
4539                 return (SV *) 0;                /* Failed */
4540
4541         key = retrieve(aTHX_ cxt, 0);           /* Retrieve <key> */
4542         if (!key)
4543                 return (SV *) 0;                /* Failed */
4544
4545         sv_upgrade(tv, SVt_PVMG);
4546         sv_magic(tv, sv, 'p', (char *)key, HEf_SVKEY);
4547         SvREFCNT_dec(key);                      /* Undo refcnt inc from sv_magic() */
4548         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4549
4550         return tv;
4551 }
4552
4553 /*
4554  * retrieve_tied_idx
4555  *
4556  * Retrieve reference to value in a tied array.
4557  * Layout is SX_TIED_IDX <object> <idx>, with SX_TIED_IDX already read.
4558  */
4559 static SV *retrieve_tied_idx(pTHX_ stcxt_t *cxt, char *cname)
4560 {
4561         SV *tv;
4562         SV *sv;
4563         I32 idx;
4564
4565         TRACEME(("retrieve_tied_idx (#%d)", cxt->tagnum));
4566
4567         tv = NEWSV(10002, 0);
4568         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4569         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4570         if (!sv)
4571                 return (SV *) 0;                /* Failed */
4572
4573         RLEN(idx);                                      /* Retrieve <idx> */
4574
4575         sv_upgrade(tv, SVt_PVMG);
4576         sv_magic(tv, sv, 'p', Nullch, idx);
4577         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4578
4579         return tv;
4580 }
4581
4582
4583 /*
4584  * retrieve_lscalar
4585  *
4586  * Retrieve defined long (string) scalar.
4587  *
4588  * Layout is SX_LSCALAR <length> <data>, with SX_LSCALAR already read.
4589  * The scalar is "long" in that <length> is larger than LG_SCALAR so it
4590  * was not stored on a single byte.
4591  */
4592 static SV *retrieve_lscalar(pTHX_ stcxt_t *cxt, char *cname)
4593 {
4594         I32 len;
4595         SV *sv;
4596
4597         RLEN(len);
4598         TRACEME(("retrieve_lscalar (#%d), len = %"IVdf, cxt->tagnum, (IV) len));
4599
4600         /*
4601          * Allocate an empty scalar of the suitable length.
4602          */
4603
4604         sv = NEWSV(10002, len);
4605         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4606
4607         /*
4608          * WARNING: duplicates parts of sv_setpv and breaks SV data encapsulation.
4609          *
4610          * Now, for efficiency reasons, read data directly inside the SV buffer,
4611          * and perform the SV final settings directly by duplicating the final
4612          * work done by sv_setpv. Since we're going to allocate lots of scalars
4613          * this way, it's worth the hassle and risk.
4614          */
4615
4616         SAFEREAD(SvPVX(sv), len, sv);
4617         SvCUR_set(sv, len);                             /* Record C string length */
4618         *SvEND(sv) = '\0';                              /* Ensure it's null terminated anyway */
4619         (void) SvPOK_only(sv);                  /* Validate string pointer */
4620         if (cxt->s_tainted)                             /* Is input source tainted? */
4621                 SvTAINT(sv);                            /* External data cannot be trusted */
4622
4623         TRACEME(("large scalar len %"IVdf" '%s'", (IV) len, SvPVX(sv)));
4624         TRACEME(("ok (retrieve_lscalar at 0x%"UVxf")", PTR2UV(sv)));
4625
4626         return sv;
4627 }
4628
4629 /*
4630  * retrieve_scalar
4631  *
4632  * Retrieve defined short (string) scalar.
4633  *
4634  * Layout is SX_SCALAR <length> <data>, with SX_SCALAR already read.
4635  * The scalar is "short" so <length> is single byte. If it is 0, there
4636  * is no <data> section.
4637  */
4638 static SV *retrieve_scalar(pTHX_ stcxt_t *cxt, char *cname)
4639 {
4640         int len;
4641         SV *sv;
4642
4643         GETMARK(len);
4644         TRACEME(("retrieve_scalar (#%d), len = %d", cxt->tagnum, len));
4645
4646         /*
4647          * Allocate an empty scalar of the suitable length.
4648          */
4649
4650         sv = NEWSV(10002, len);
4651         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4652
4653         /*
4654          * WARNING: duplicates parts of sv_setpv and breaks SV data encapsulation.
4655          */
4656
4657         if (len == 0) {
4658                 /*
4659                  * newSV did not upgrade to SVt_PV so the scalar is undefined.
4660                  * To make it defined with an empty length, upgrade it now...
4661                  * Don't upgrade to a PV if the original type contains more
4662                  * information than a scalar.
4663                  */
4664                 if (SvTYPE(sv) <= SVt_PV) {
4665                         sv_upgrade(sv, SVt_PV);
4666                 }
4667                 SvGROW(sv, 1);
4668                 *SvEND(sv) = '\0';                      /* Ensure it's null terminated anyway */
4669                 TRACEME(("ok (retrieve_scalar empty at 0x%"UVxf")", PTR2UV(sv)));
4670         } else {
4671                 /*
4672                  * Now, for efficiency reasons, read data directly inside the SV buffer,
4673                  * and perform the SV final settings directly by duplicating the final
4674                  * work done by sv_setpv. Since we're going to allocate lots of scalars
4675                  * this way, it's worth the hassle and risk.
4676                  */
4677                 SAFEREAD(SvPVX(sv), len, sv);
4678                 SvCUR_set(sv, len);                     /* Record C string length */
4679                 *SvEND(sv) = '\0';                      /* Ensure it's null terminated anyway */
4680                 TRACEME(("small scalar len %d '%s'", len, SvPVX(sv)));
4681         }
4682
4683         (void) SvPOK_only(sv);                  /* Validate string pointer */
4684         if (cxt->s_tainted)                             /* Is input source tainted? */
4685                 SvTAINT(sv);                            /* External data cannot be trusted */
4686
4687         TRACEME(("ok (retrieve_scalar at 0x%"UVxf")", PTR2UV(sv)));
4688         return sv;
4689 }
4690
4691 /*
4692  * retrieve_utf8str
4693  *
4694  * Like retrieve_scalar(), but tag result as utf8.
4695  * If we're retrieving UTF8 data in a non-UTF8 perl, croaks.
4696  */
4697 static SV *retrieve_utf8str(pTHX_ stcxt_t *cxt, char *cname)
4698 {
4699     SV *sv;
4700
4701     TRACEME(("retrieve_utf8str"));
4702
4703     sv = retrieve_scalar(aTHX_ cxt, cname);
4704     if (sv) {
4705 #ifdef HAS_UTF8_SCALARS
4706         SvUTF8_on(sv);
4707 #else
4708         if (cxt->use_bytes < 0)
4709             cxt->use_bytes
4710                 = (SvTRUE(perl_get_sv("Storable::drop_utf8", TRUE))
4711                    ? 1 : 0);
4712         if (cxt->use_bytes == 0)
4713             UTF8_CROAK();
4714 #endif
4715     }
4716
4717     return sv;
4718 }
4719
4720 /*
4721  * retrieve_lutf8str
4722  *
4723  * Like retrieve_lscalar(), but tag result as utf8.
4724  * If we're retrieving UTF8 data in a non-UTF8 perl, croaks.
4725  */
4726 static SV *retrieve_lutf8str(pTHX_ stcxt_t *cxt, char *cname)
4727 {
4728     SV *sv;
4729
4730     TRACEME(("retrieve_lutf8str"));
4731
4732     sv = retrieve_lscalar(aTHX_ cxt, cname);
4733     if (sv) {
4734 #ifdef HAS_UTF8_SCALARS
4735         SvUTF8_on(sv);
4736 #else
4737         if (cxt->use_bytes < 0)
4738             cxt->use_bytes
4739                 = (SvTRUE(perl_get_sv("Storable::drop_utf8", TRUE))
4740                    ? 1 : 0);
4741         if (cxt->use_bytes == 0)
4742             UTF8_CROAK();
4743 #endif
4744     }
4745     return sv;
4746 }
4747
4748 /*
4749  * retrieve_integer
4750  *
4751  * Retrieve defined integer.
4752  * Layout is SX_INTEGER <data>, whith SX_INTEGER already read.
4753  */
4754 static SV *retrieve_integer(pTHX_ stcxt_t *cxt, char *cname)
4755 {
4756         SV *sv;
4757         IV iv;
4758
4759         TRACEME(("retrieve_integer (#%d)", cxt->tagnum));
4760
4761         READ(&iv, sizeof(iv));
4762         sv = newSViv(iv);
4763         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4764
4765         TRACEME(("integer %"IVdf, iv));
4766         TRACEME(("ok (retrieve_integer at 0x%"UVxf")", PTR2UV(sv)));
4767
4768         return sv;
4769 }
4770
4771 /*
4772  * retrieve_netint
4773  *
4774  * Retrieve defined integer in network order.
4775  * Layout is SX_NETINT <data>, whith SX_NETINT already read.
4776  */
4777 static SV *retrieve_netint(pTHX_ stcxt_t *cxt, char *cname)
4778 {
4779         SV *sv;
4780         I32 iv;
4781
4782         TRACEME(("retrieve_netint (#%d)", cxt->tagnum));
4783
4784         READ_I32(iv);
4785 #ifdef HAS_NTOHL
4786         sv = newSViv((int) ntohl(iv));
4787         TRACEME(("network integer %d", (int) ntohl(iv)));
4788 #else
4789         sv = newSViv(iv);
4790         TRACEME(("network integer (as-is) %d", iv));
4791 #endif
4792         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4793
4794         TRACEME(("ok (retrieve_netint at 0x%"UVxf")", PTR2UV(sv)));
4795
4796         return sv;
4797 }
4798
4799 /*
4800  * retrieve_double
4801  *
4802  * Retrieve defined double.
4803  * Layout is SX_DOUBLE <data>, whith SX_DOUBLE already read.
4804  */
4805 static SV *retrieve_double(pTHX_ stcxt_t *cxt, char *cname)
4806 {
4807         SV *sv;
4808         NV nv;
4809
4810         TRACEME(("retrieve_double (#%d)", cxt->tagnum));
4811
4812         READ(&nv, sizeof(nv));
4813         sv = newSVnv(nv);
4814         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4815
4816         TRACEME(("double %"NVff, nv));
4817         TRACEME(("ok (retrieve_double at 0x%"UVxf")", PTR2UV(sv)));
4818
4819         return sv;
4820 }
4821
4822 /*
4823  * retrieve_byte
4824  *
4825  * Retrieve defined byte (small integer within the [-128, +127] range).
4826  * Layout is SX_BYTE <data>, whith SX_BYTE already read.
4827  */
4828 static SV *retrieve_byte(pTHX_ stcxt_t *cxt, char *cname)
4829 {
4830         SV *sv;
4831         int siv;
4832         signed char tmp;        /* Workaround for AIX cc bug --H.Merijn Brand */
4833
4834         TRACEME(("retrieve_byte (#%d)", cxt->tagnum));
4835
4836         GETMARK(siv);
4837         TRACEME(("small integer read as %d", (unsigned char) siv));
4838         tmp = (unsigned char) siv - 128;
4839         sv = newSViv(tmp);
4840         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4841
4842         TRACEME(("byte %d", tmp));
4843         TRACEME(("ok (retrieve_byte at 0x%"UVxf")", PTR2UV(sv)));
4844
4845         return sv;
4846 }
4847
4848 /*
4849  * retrieve_undef
4850  *
4851  * Return the undefined value.
4852  */
4853 static SV *retrieve_undef(pTHX_ stcxt_t *cxt, char *cname)
4854 {
4855         SV* sv;
4856
4857         TRACEME(("retrieve_undef"));
4858
4859         sv = newSV(0);
4860         SEEN(sv, cname, 0);
4861
4862         return sv;
4863 }
4864
4865 /*
4866  * retrieve_sv_undef
4867  *
4868  * Return the immortal undefined value.
4869  */
4870 static SV *retrieve_sv_undef(pTHX_ stcxt_t *cxt, char *cname)
4871 {
4872         SV *sv = &PL_sv_undef;
4873
4874         TRACEME(("retrieve_sv_undef"));
4875
4876         /* Special case PL_sv_undef, as av_fetch uses it internally to mark
4877            deleted elements, and will return NULL (fetch failed) whenever it
4878            is fetched.  */
4879         if (cxt->where_is_undef == -1) {
4880                 cxt->where_is_undef = cxt->tagnum;
4881         }
4882         SEEN(sv, cname, 1);
4883         return sv;
4884 }
4885
4886 /*
4887  * retrieve_sv_yes
4888  *
4889  * Return the immortal yes value.
4890  */
4891 static SV *retrieve_sv_yes(pTHX_ stcxt_t *cxt, char *cname)
4892 {
4893         SV *sv = &PL_sv_yes;
4894
4895         TRACEME(("retrieve_sv_yes"));
4896
4897         SEEN(sv, cname, 1);
4898         return sv;
4899 }
4900
4901 /*
4902  * retrieve_sv_no
4903  *
4904  * Return the immortal no value.
4905  */
4906 static SV *retrieve_sv_no(pTHX_ stcxt_t *cxt, char *cname)
4907 {
4908         SV *sv = &PL_sv_no;
4909
4910         TRACEME(("retrieve_sv_no"));
4911
4912         SEEN(sv, cname, 1);
4913         return sv;
4914 }
4915
4916 /*
4917  * retrieve_array
4918  *
4919  * Retrieve a whole array.
4920  * Layout is SX_ARRAY <size> followed by each item, in increading index order.
4921  * Each item is stored as <object>.
4922  *
4923  * When we come here, SX_ARRAY has been read already.
4924  */
4925 static SV *retrieve_array(pTHX_ stcxt_t *cxt, char *cname)
4926 {
4927         I32 len;
4928         I32 i;
4929         AV *av;
4930         SV *sv;
4931
4932         TRACEME(("retrieve_array (#%d)", cxt->tagnum));
4933
4934         /*
4935          * Read length, and allocate array, then pre-extend it.
4936          */
4937
4938         RLEN(len);
4939         TRACEME(("size = %d", len));
4940         av = newAV();
4941         SEEN(av, cname, 0);                     /* Will return if array not allocated nicely */
4942         if (len)
4943                 av_extend(av, len);
4944         else
4945                 return (SV *) av;               /* No data follow if array is empty */
4946
4947         /*
4948          * Now get each item in turn...
4949          */
4950
4951         for (i = 0; i < len; i++) {
4952                 TRACEME(("(#%d) item", i));
4953                 sv = retrieve(aTHX_ cxt, 0);                    /* Retrieve item */
4954                 if (!sv)
4955                         return (SV *) 0;
4956                 if (av_store(av, i, sv) == 0)
4957                         return (SV *) 0;
4958         }
4959
4960         TRACEME(("ok (retrieve_array at 0x%"UVxf")", PTR2UV(av)));
4961
4962         return (SV *) av;
4963 }
4964
4965 /*
4966  * retrieve_hash
4967  *
4968  * Retrieve a whole hash table.
4969  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
4970  * Keys are stored as <length> <data>, the <data> section being omitted
4971  * if length is 0.
4972  * Values are stored as <object>.
4973  *
4974  * When we come here, SX_HASH has been read already.
4975  */
4976 static SV *retrieve_hash(pTHX_ stcxt_t *cxt, char *cname)
4977 {
4978         I32 len;
4979         I32 size;
4980         I32 i;
4981         HV *hv;
4982         SV *sv;
4983
4984         TRACEME(("retrieve_hash (#%d)", cxt->tagnum));
4985
4986         /*
4987          * Read length, allocate table.
4988          */
4989
4990         RLEN(len);
4991         TRACEME(("size = %d", len));
4992         hv = newHV();
4993         SEEN(hv, cname, 0);             /* Will return if table not allocated properly */
4994         if (len == 0)
4995                 return (SV *) hv;       /* No data follow if table empty */
4996         hv_ksplit(hv, len);             /* pre-extend hash to save multiple splits */
4997
4998         /*
4999          * Now get each key/value pair in turn...
5000          */
5001
5002         for (i = 0; i < len; i++) {
5003                 /*
5004                  * Get value first.
5005                  */
5006
5007                 TRACEME(("(#%d) value", i));
5008                 sv = retrieve(aTHX_ cxt, 0);
5009                 if (!sv)
5010                         return (SV *) 0;
5011
5012                 /*
5013                  * Get key.
5014                  * Since we're reading into kbuf, we must ensure we're not
5015                  * recursing between the read and the hv_store() where it's used.
5016                  * Hence the key comes after the value.
5017                  */
5018
5019                 RLEN(size);                                             /* Get key size */
5020                 KBUFCHK((STRLEN)size);                                  /* Grow hash key read pool if needed */
5021                 if (size)
5022                         READ(kbuf, size);
5023                 kbuf[size] = '\0';                              /* Mark string end, just in case */
5024                 TRACEME(("(#%d) key '%s'", i, kbuf));
5025
5026                 /*
5027                  * Enter key/value pair into hash table.
5028                  */
5029
5030                 if (hv_store(hv, kbuf, (U32) size, sv, 0) == 0)
5031                         return (SV *) 0;
5032         }
5033
5034         TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5035
5036         return (SV *) hv;
5037 }
5038
5039 /*
5040  * retrieve_hash
5041  *
5042  * Retrieve a whole hash table.
5043  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
5044  * Keys are stored as <length> <data>, the <data> section being omitted
5045  * if length is 0.
5046  * Values are stored as <object>.
5047  *
5048  * When we come here, SX_HASH has been read already.
5049  */
5050 static SV *retrieve_flag_hash(pTHX_ stcxt_t *cxt, char *cname)
5051 {
5052     I32 len;
5053     I32 size;
5054     I32 i;
5055     HV *hv;
5056     SV *sv;
5057     int hash_flags;
5058
5059     GETMARK(hash_flags);
5060     TRACEME(("retrieve_flag_hash (#%d)", cxt->tagnum));
5061     /*
5062      * Read length, allocate table.
5063      */
5064
5065 #ifndef HAS_RESTRICTED_HASHES
5066     if (hash_flags & SHV_RESTRICTED) {
5067         if (cxt->derestrict < 0)
5068             cxt->derestrict
5069                 = (SvTRUE(perl_get_sv("Storable::downgrade_restricted", TRUE))
5070                    ? 1 : 0);
5071         if (cxt->derestrict == 0)
5072             RESTRICTED_HASH_CROAK();
5073     }
5074 #endif
5075
5076     RLEN(len);
5077     TRACEME(("size = %d, flags = %d", len, hash_flags));
5078     hv = newHV();
5079     SEEN(hv, cname, 0);         /* Will return if table not allocated properly */
5080     if (len == 0)
5081         return (SV *) hv;       /* No data follow if table empty */
5082     hv_ksplit(hv, len);         /* pre-extend hash to save multiple splits */
5083
5084     /*
5085      * Now get each key/value pair in turn...
5086      */
5087
5088     for (i = 0; i < len; i++) {
5089         int flags;
5090         int store_flags = 0;
5091         /*
5092          * Get value first.
5093          */
5094
5095         TRACEME(("(#%d) value", i));
5096         sv = retrieve(aTHX_ cxt, 0);
5097         if (!sv)
5098             return (SV *) 0;
5099
5100         GETMARK(flags);
5101 #ifdef HAS_RESTRICTED_HASHES
5102         if ((hash_flags & SHV_RESTRICTED) && (flags & SHV_K_LOCKED))
5103             SvREADONLY_on(sv);
5104 #endif
5105
5106         if (flags & SHV_K_ISSV) {
5107             /* XXX you can't set a placeholder with an SV key.
5108                Then again, you can't get an SV key.
5109                Without messing around beyond what the API is supposed to do.
5110             */
5111             SV *keysv;
5112             TRACEME(("(#%d) keysv, flags=%d", i, flags));
5113             keysv = retrieve(aTHX_ cxt, 0);
5114             if (!keysv)
5115                 return (SV *) 0;
5116
5117             if (!hv_store_ent(hv, keysv, sv, 0))
5118                 return (SV *) 0;
5119         } else {
5120             /*
5121              * Get key.
5122              * Since we're reading into kbuf, we must ensure we're not
5123              * recursing between the read and the hv_store() where it's used.
5124              * Hence the key comes after the value.
5125              */
5126
5127             if (flags & SHV_K_PLACEHOLDER) {
5128                 SvREFCNT_dec (sv);
5129                 sv = &PL_sv_placeholder;
5130                 store_flags |= HVhek_PLACEHOLD;
5131             }
5132             if (flags & SHV_K_UTF8) {
5133 #ifdef HAS_UTF8_HASHES
5134                 store_flags |= HVhek_UTF8;
5135 #else
5136                 if (cxt->use_bytes < 0)
5137                     cxt->use_bytes
5138                         = (SvTRUE(perl_get_sv("Storable::drop_utf8", TRUE))
5139                            ? 1 : 0);
5140                 if (cxt->use_bytes == 0)
5141                     UTF8_CROAK();
5142 #endif
5143             }
5144 #ifdef HAS_UTF8_HASHES
5145             if (flags & SHV_K_WASUTF8)
5146                 store_flags |= HVhek_WASUTF8;
5147 #endif
5148
5149             RLEN(size);                                         /* Get key size */
5150             KBUFCHK((STRLEN)size);                              /* Grow hash key read pool if needed */
5151             if (size)
5152                 READ(kbuf, size);
5153             kbuf[size] = '\0';                          /* Mark string end, just in case */
5154             TRACEME(("(#%d) key '%s' flags %X store_flags %X", i, kbuf,
5155                      flags, store_flags));
5156
5157             /*
5158              * Enter key/value pair into hash table.
5159              */
5160
5161 #ifdef HAS_RESTRICTED_HASHES
5162             if (hv_store_flags(hv, kbuf, size, sv, 0, store_flags) == 0)
5163                 return (SV *) 0;
5164 #else
5165             if (!(store_flags & HVhek_PLACEHOLD))
5166                 if (hv_store(hv, kbuf, size, sv, 0) == 0)
5167                     return (SV *) 0;
5168 #endif
5169         }
5170     }
5171 #ifdef HAS_RESTRICTED_HASHES
5172     if (hash_flags & SHV_RESTRICTED)
5173         SvREADONLY_on(hv);
5174 #endif
5175
5176     TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5177
5178     return (SV *) hv;
5179 }
5180
5181 /*
5182  * retrieve_code
5183  *
5184  * Return a code reference.
5185  */
5186 static SV *retrieve_code(pTHX_ stcxt_t *cxt, char *cname)
5187 {
5188 #if PERL_VERSION < 6
5189     CROAK(("retrieve_code does not work with perl 5.005 or less\n"));
5190 #else
5191         dSP;
5192         int type, count, tagnum;
5193         SV *cv;
5194         SV *sv, *text, *sub;
5195
5196         TRACEME(("retrieve_code (#%d)", cxt->tagnum));
5197
5198         /*
5199          *  Insert dummy SV in the aseen array so that we don't screw
5200          *  up the tag numbers.  We would just make the internal
5201          *  scalar an untagged item in the stream, but
5202          *  retrieve_scalar() calls SEEN().  So we just increase the
5203          *  tag number.
5204          */
5205         tagnum = cxt->tagnum;
5206         sv = newSViv(0);
5207         SEEN(sv, cname, 0);
5208
5209         /*
5210          * Retrieve the source of the code reference
5211          * as a small or large scalar
5212          */
5213
5214         GETMARK(type);
5215         switch (type) {
5216         case SX_SCALAR:
5217                 text = retrieve_scalar(aTHX_ cxt, cname);
5218                 break;
5219         case SX_LSCALAR:
5220                 text = retrieve_lscalar(aTHX_ cxt, cname);
5221                 break;
5222         default:
5223                 CROAK(("Unexpected type %d in retrieve_code\n", type));
5224         }
5225
5226         /*
5227          * prepend "sub " to the source
5228          */
5229
5230         sub = newSVpvn("sub ", 4);
5231         sv_catpv(sub, SvPV_nolen(text)); /* XXX no sv_catsv! */
5232         SvREFCNT_dec(text);
5233
5234         /*
5235          * evaluate the source to a code reference and use the CV value
5236          */
5237
5238         if (cxt->eval == NULL) {
5239                 cxt->eval = perl_get_sv("Storable::Eval", TRUE);
5240                 SvREFCNT_inc(cxt->eval);
5241         }
5242         if (!SvTRUE(cxt->eval)) {
5243                 if (
5244                         cxt->forgive_me == 0 ||
5245                         (cxt->forgive_me < 0 && !(cxt->forgive_me =
5246                                 SvTRUE(perl_get_sv("Storable::forgive_me", TRUE)) ? 1 : 0))
5247                 ) {
5248                         CROAK(("Can't eval, please set $Storable::Eval to a true value"));
5249                 } else {
5250                         sv = newSVsv(sub);
5251                         /* fix up the dummy entry... */
5252                         av_store(cxt->aseen, tagnum, SvREFCNT_inc(sv));
5253                         return sv;
5254                 }
5255         }
5256
5257         ENTER;
5258         SAVETMPS;
5259
5260         if (SvROK(cxt->eval) && SvTYPE(SvRV(cxt->eval)) == SVt_PVCV) {
5261                 SV* errsv = get_sv("@", TRUE);
5262                 sv_setpv(errsv, "");                                    /* clear $@ */
5263                 PUSHMARK(sp);
5264                 XPUSHs(sv_2mortal(newSVsv(sub)));
5265                 PUTBACK;
5266                 count = call_sv(cxt->eval, G_SCALAR);
5267                 SPAGAIN;
5268                 if (count != 1)
5269                         CROAK(("Unexpected return value from $Storable::Eval callback\n"));
5270                 cv = POPs;
5271                 if (SvTRUE(errsv)) {
5272                         CROAK(("code %s caused an error: %s",
5273                                 SvPV_nolen(sub), SvPV_nolen(errsv)));
5274                 }
5275                 PUTBACK;
5276         } else {
5277                 cv = eval_pv(SvPV_nolen(sub), TRUE);
5278         }
5279         if (cv && SvROK(cv) && SvTYPE(SvRV(cv)) == SVt_PVCV) {
5280             sv = SvRV(cv);
5281         } else {
5282             CROAK(("code %s did not evaluate to a subroutine reference\n", SvPV_nolen(sub)));
5283         }
5284
5285         SvREFCNT_inc(sv); /* XXX seems to be necessary */
5286         SvREFCNT_dec(sub);
5287
5288         FREETMPS;
5289         LEAVE;
5290         /* fix up the dummy entry... */
5291         av_store(cxt->aseen, tagnum, SvREFCNT_inc(sv));
5292
5293         return sv;
5294 #endif
5295 }
5296
5297 /*
5298  * old_retrieve_array
5299  *
5300  * Retrieve a whole array in pre-0.6 binary format.
5301  *
5302  * Layout is SX_ARRAY <size> followed by each item, in increading index order.
5303  * Each item is stored as SX_ITEM <object> or SX_IT_UNDEF for "holes".
5304  *
5305  * When we come here, SX_ARRAY has been read already.
5306  */
5307 static SV *old_retrieve_array(pTHX_ stcxt_t *cxt, char *cname)
5308 {
5309         I32 len;
5310         I32 i;
5311         AV *av;
5312         SV *sv;
5313         int c;
5314
5315         TRACEME(("old_retrieve_array (#%d)", cxt->tagnum));
5316
5317         /*
5318          * Read length, and allocate array, then pre-extend it.
5319          */
5320
5321         RLEN(len);
5322         TRACEME(("size = %d", len));
5323         av = newAV();
5324         SEEN(av, 0, 0);                         /* Will return if array not allocated nicely */
5325         if (len)
5326                 av_extend(av, len);
5327         else
5328                 return (SV *) av;               /* No data follow if array is empty */
5329
5330         /*
5331          * Now get each item in turn...
5332          */
5333
5334         for (i = 0; i < len; i++) {
5335                 GETMARK(c);
5336                 if (c == SX_IT_UNDEF) {
5337                         TRACEME(("(#%d) undef item", i));
5338                         continue;                       /* av_extend() already filled us with undef */
5339                 }
5340                 if (c != SX_ITEM)
5341                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5342                 TRACEME(("(#%d) item", i));
5343                 sv = retrieve(aTHX_ cxt, 0);                                            /* Retrieve item */
5344                 if (!sv)
5345                         return (SV *) 0;
5346                 if (av_store(av, i, sv) == 0)
5347                         return (SV *) 0;
5348         }
5349
5350         TRACEME(("ok (old_retrieve_array at 0x%"UVxf")", PTR2UV(av)));
5351
5352         return (SV *) av;
5353 }
5354
5355 /*
5356  * old_retrieve_hash
5357  *
5358  * Retrieve a whole hash table in pre-0.6 binary format.
5359  *
5360  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
5361  * Keys are stored as SX_KEY <length> <data>, the <data> section being omitted
5362  * if length is 0.
5363  * Values are stored as SX_VALUE <object> or SX_VL_UNDEF for "holes".
5364  *
5365  * When we come here, SX_HASH has been read already.
5366  */
5367 static SV *old_retrieve_hash(pTHX_ stcxt_t *cxt, char *cname)
5368 {
5369         I32 len;
5370         I32 size;
5371         I32 i;
5372         HV *hv;
5373         SV *sv = (SV *) 0;
5374         int c;
5375         static SV *sv_h_undef = (SV *) 0;               /* hv_store() bug */
5376
5377         TRACEME(("old_retrieve_hash (#%d)", cxt->tagnum));
5378
5379         /*
5380          * Read length, allocate table.
5381          */
5382
5383         RLEN(len);
5384         TRACEME(("size = %d", len));
5385         hv = newHV();
5386         SEEN(hv, 0, 0);                 /* Will return if table not allocated properly */
5387         if (len == 0)
5388                 return (SV *) hv;       /* No data follow if table empty */
5389         hv_ksplit(hv, len);             /* pre-extend hash to save multiple splits */
5390
5391         /*
5392          * Now get each key/value pair in turn...
5393          */
5394
5395         for (i = 0; i < len; i++) {
5396                 /*
5397                  * Get value first.
5398                  */
5399
5400                 GETMARK(c);
5401                 if (c == SX_VL_UNDEF) {
5402                         TRACEME(("(#%d) undef value", i));
5403                         /*
5404                          * Due to a bug in hv_store(), it's not possible to pass
5405                          * &PL_sv_undef to hv_store() as a value, otherwise the
5406                          * associated key will not be creatable any more. -- RAM, 14/01/97
5407                          */
5408                         if (!sv_h_undef)
5409                                 sv_h_undef = newSVsv(&PL_sv_undef);
5410                         sv = SvREFCNT_inc(sv_h_undef);
5411                 } else if (c == SX_VALUE) {
5412                         TRACEME(("(#%d) value", i));
5413                         sv = retrieve(aTHX_ cxt, 0);
5414                         if (!sv)
5415                                 return (SV *) 0;
5416                 } else
5417                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5418
5419                 /*
5420                  * Get key.
5421                  * Since we're reading into kbuf, we must ensure we're not
5422                  * recursing between the read and the hv_store() where it's used.
5423                  * Hence the key comes after the value.
5424                  */
5425
5426                 GETMARK(c);
5427                 if (c != SX_KEY)
5428                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5429                 RLEN(size);                                             /* Get key size */
5430                 KBUFCHK((STRLEN)size);                                  /* Grow hash key read pool if needed */
5431                 if (size)
5432                         READ(kbuf, size);
5433                 kbuf[size] = '\0';                              /* Mark string end, just in case */
5434                 TRACEME(("(#%d) key '%s'", i, kbuf));
5435
5436                 /*
5437                  * Enter key/value pair into hash table.
5438                  */
5439
5440                 if (hv_store(hv, kbuf, (U32) size, sv, 0) == 0)
5441                         return (SV *) 0;
5442         }
5443
5444         TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5445
5446         return (SV *) hv;
5447 }
5448
5449 /***
5450  *** Retrieval engine.
5451  ***/
5452
5453 /*
5454  * magic_check
5455  *
5456  * Make sure the stored data we're trying to retrieve has been produced
5457  * on an ILP compatible system with the same byteorder. It croaks out in
5458  * case an error is detected. [ILP = integer-long-pointer sizes]
5459  * Returns null if error is detected, &PL_sv_undef otherwise.
5460  *
5461  * Note that there's no byte ordering info emitted when network order was
5462  * used at store time.
5463  */
5464 static SV *magic_check(pTHX_ stcxt_t *cxt)
5465 {
5466     /* The worst case for a malicious header would be old magic (which is
5467        longer), major, minor, byteorder length byte of 255, 255 bytes of
5468        garbage, sizeof int, long, pointer, NV.
5469        So the worse of that we can read is 255 bytes of garbage plus 4.
5470        Err, I am assuming 8 bit bytes here. Please file a bug report if you're
5471        compiling perl on a system with chars that are larger than 8 bits.
5472        (Even Crays aren't *that* perverse).
5473     */
5474     unsigned char buf[4 + 255];
5475     unsigned char *current;
5476     int c;
5477     int length;
5478     int use_network_order;
5479     int use_NV_size;
5480     int version_major;
5481     int version_minor = 0;
5482
5483     TRACEME(("magic_check"));
5484
5485     /*
5486      * The "magic number" is only for files, not when freezing in memory.
5487      */
5488
5489     if (cxt->fio) {
5490         /* This includes the '\0' at the end.  I want to read the extra byte,
5491            which is usually going to be the major version number.  */
5492         STRLEN len = sizeof(magicstr);
5493         STRLEN old_len;
5494
5495         READ(buf, (SSize_t)(len));      /* Not null-terminated */
5496
5497         /* Point at the byte after the byte we read.  */
5498         current = buf + --len;  /* Do the -- outside of macros.  */
5499
5500         if (memNE(buf, magicstr, len)) {
5501             /*
5502              * Try to read more bytes to check for the old magic number, which
5503              * was longer.
5504              */
5505
5506             TRACEME(("trying for old magic number"));
5507
5508             old_len = sizeof(old_magicstr) - 1;
5509             READ(current + 1, (SSize_t)(old_len - len));
5510             
5511             if (memNE(buf, old_magicstr, old_len))
5512                 CROAK(("File is not a perl storable"));
5513             current = buf + old_len;
5514         }
5515         use_network_order = *current;
5516     } else
5517         GETMARK(use_network_order);
5518         
5519     /*
5520      * Starting with 0.6, the "use_network_order" byte flag is also used to
5521      * indicate the version number of the binary, and therefore governs the
5522      * setting of sv_retrieve_vtbl. See magic_write().
5523      */
5524
5525     version_major = use_network_order >> 1;
5526     cxt->retrieve_vtbl = version_major ? sv_retrieve : sv_old_retrieve;
5527
5528     TRACEME(("magic_check: netorder = 0x%x", use_network_order));
5529
5530
5531     /*
5532      * Starting with 0.7 (binary major 2), a full byte is dedicated to the
5533      * minor version of the protocol.  See magic_write().
5534      */
5535
5536     if (version_major > 1)
5537         GETMARK(version_minor);
5538
5539     cxt->ver_major = version_major;
5540     cxt->ver_minor = version_minor;
5541
5542     TRACEME(("binary image version is %d.%d", version_major, version_minor));
5543
5544     /*
5545      * Inter-operability sanity check: we can't retrieve something stored
5546      * using a format more recent than ours, because we have no way to
5547      * know what has changed, and letting retrieval go would mean a probable
5548      * failure reporting a "corrupted" storable file.
5549      */
5550
5551     if (
5552         version_major > STORABLE_BIN_MAJOR ||
5553         (version_major == STORABLE_BIN_MAJOR &&
5554          version_minor > STORABLE_BIN_MINOR)
5555         ) {
5556         int croak_now = 1;
5557         TRACEME(("but I am version is %d.%d", STORABLE_BIN_MAJOR,
5558                  STORABLE_BIN_MINOR));
5559
5560         if (version_major == STORABLE_BIN_MAJOR) {
5561             TRACEME(("cxt->accept_future_minor is %d",
5562                      cxt->accept_future_minor));
5563             if (cxt->accept_future_minor < 0)
5564                 cxt->accept_future_minor
5565                     = (SvTRUE(perl_get_sv("Storable::accept_future_minor",
5566                                           TRUE))
5567                        ? 1 : 0);
5568             if (cxt->accept_future_minor == 1)
5569                 croak_now = 0;  /* Don't croak yet.  */
5570         }
5571         if (croak_now) {
5572             CROAK(("Storable binary image v%d.%d more recent than I am (v%d.%d)",
5573                    version_major, version_minor,
5574                    STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR));
5575         }
5576     }
5577
5578     /*
5579      * If they stored using network order, there's no byte ordering
5580      * information to check.
5581      */
5582
5583     if ((cxt->netorder = (use_network_order & 0x1)))    /* Extra () for -Wall */
5584         return &PL_sv_undef;                    /* No byte ordering info */
5585
5586     /* In C truth is 1, falsehood is 0. Very convienient.  */
5587     use_NV_size = version_major >= 2 && version_minor >= 2;
5588
5589     GETMARK(c);
5590     length = c + 3 + use_NV_size;
5591     READ(buf, length);  /* Not null-terminated */
5592
5593     TRACEME(("byte order '%.*s' %d", c, buf, c));
5594
5595 #ifdef USE_56_INTERWORK_KLUDGE
5596     /* No point in caching this in the context as we only need it once per
5597        retrieve, and we need to recheck it each read.  */
5598     if (SvTRUE(perl_get_sv("Storable::interwork_56_64bit", TRUE))) {
5599         if ((c != (sizeof (byteorderstr_56) - 1))
5600             || memNE(buf, byteorderstr_56, c))
5601             CROAK(("Byte order is not compatible"));
5602     } else
5603 #endif
5604     {
5605         if ((c != (sizeof (byteorderstr) - 1)) || memNE(buf, byteorderstr, c))
5606             CROAK(("Byte order is not compatible"));
5607     }
5608
5609     current = buf + c;
5610     
5611     /* sizeof(int) */
5612     if ((int) *current++ != sizeof(int))
5613         CROAK(("Integer size is not compatible"));
5614
5615     /* sizeof(long) */
5616     if ((int) *current++ != sizeof(long))
5617         CROAK(("Long integer size is not compatible"));
5618
5619     /* sizeof(char *) */
5620     if ((int) *current != sizeof(char *))
5621         CROAK(("Pointer size is not compatible"));
5622
5623     if (use_NV_size) {
5624         /* sizeof(NV) */
5625         if ((int) *++current != sizeof(NV))
5626             CROAK(("Double size is not compatible"));
5627     }
5628
5629     return &PL_sv_undef;        /* OK */
5630 }
5631
5632 /*
5633  * retrieve
5634  *
5635  * Recursively retrieve objects from the specified file and return their
5636  * root SV (which may be an AV or an HV for what we care).
5637  * Returns null if there is a problem.
5638  */
5639 static SV *retrieve(pTHX_ stcxt_t *cxt, char *cname)
5640 {
5641         int type;
5642         SV **svh;
5643         SV *sv;
5644
5645         TRACEME(("retrieve"));
5646
5647         /*
5648          * Grab address tag which identifies the object if we are retrieving
5649          * an older format. Since the new binary format counts objects and no
5650          * longer explicitely tags them, we must keep track of the correspondance
5651          * ourselves.
5652          *
5653          * The following section will disappear one day when the old format is
5654          * no longer supported, hence the final "goto" in the "if" block.
5655          */
5656
5657         if (cxt->hseen) {                                               /* Retrieving old binary */
5658                 stag_t tag;
5659                 if (cxt->netorder) {
5660                         I32 nettag;
5661                         READ(&nettag, sizeof(I32));             /* Ordered sequence of I32 */
5662                         tag = (stag_t) nettag;
5663                 } else
5664                         READ(&tag, sizeof(stag_t));             /* Original address of the SV */
5665
5666                 GETMARK(type);
5667                 if (type == SX_OBJECT) {
5668                         I32 tagn;
5669                         svh = hv_fetch(cxt->hseen, (char *) &tag, sizeof(tag), FALSE);
5670                         if (!svh)
5671                                 CROAK(("Old tag 0x%"UVxf" should have been mapped already",
5672                                         (UV) tag));
5673                         tagn = SvIV(*svh);      /* Mapped tag number computed earlier below */
5674
5675                         /*
5676                          * The following code is common with the SX_OBJECT case below.
5677                          */
5678
5679                         svh = av_fetch(cxt->aseen, tagn, FALSE);
5680                         if (!svh)
5681                                 CROAK(("Object #%"IVdf" should have been retrieved already",
5682                                         (IV) tagn));
5683                         sv = *svh;
5684                         TRACEME(("has retrieved #%d at 0x%"UVxf, tagn, PTR2UV(sv)));
5685                         SvREFCNT_inc(sv);       /* One more reference to this same sv */
5686                         return sv;                      /* The SV pointer where object was retrieved */
5687                 }
5688
5689                 /*
5690                  * Map new object, but don't increase tagnum. This will be done
5691                  * by each of the retrieve_* functions when they call SEEN().
5692                  *
5693                  * The mapping associates the "tag" initially present with a unique
5694                  * tag number. See test for SX_OBJECT above to see how this is perused.
5695                  */
5696
5697                 if (!hv_store(cxt->hseen, (char *) &tag, sizeof(tag),
5698                                 newSViv(cxt->tagnum), 0))
5699                         return (SV *) 0;
5700
5701                 goto first_time;
5702         }
5703
5704         /*
5705          * Regular post-0.6 binary format.
5706          */
5707
5708         GETMARK(type);
5709
5710         TRACEME(("retrieve type = %d", type));
5711
5712         /*
5713          * Are we dealing with an object we should have already retrieved?
5714          */
5715
5716         if (type == SX_OBJECT) {
5717                 I32 tag;
5718                 READ_I32(tag);
5719                 tag = ntohl(tag);
5720                 svh = av_fetch(cxt->aseen, tag, FALSE);
5721                 if (!svh)
5722                         CROAK(("Object #%"IVdf" should have been retrieved already",
5723                                 (IV) tag));
5724                 sv = *svh;
5725                 TRACEME(("had retrieved #%d at 0x%"UVxf, tag, PTR2UV(sv)));
5726                 SvREFCNT_inc(sv);       /* One more reference to this same sv */
5727                 return sv;                      /* The SV pointer where object was retrieved */
5728         } else if (type >= SX_ERROR && cxt->ver_minor > STORABLE_BIN_MINOR) {
5729             if (cxt->accept_future_minor < 0)
5730                 cxt->accept_future_minor
5731                     = (SvTRUE(perl_get_sv("Storable::accept_future_minor",
5732                                           TRUE))
5733                        ? 1 : 0);
5734             if (cxt->accept_future_minor == 1) {
5735                 CROAK(("Storable binary image v%d.%d contains data of type %d. "
5736                        "This Storable is v%d.%d and can only handle data types up to %d",
5737                        cxt->ver_major, cxt->ver_minor, type,
5738                        STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR, SX_ERROR - 1));
5739             }
5740         }
5741
5742 first_time:             /* Will disappear when support for old format is dropped */
5743
5744         /*
5745          * Okay, first time through for this one.
5746          */
5747
5748         sv = RETRIEVE(cxt, type)(aTHX_ cxt, cname);
5749         if (!sv)
5750                 return (SV *) 0;                        /* Failed */
5751
5752         /*
5753          * Old binary formats (pre-0.7).
5754          *
5755          * Final notifications, ended by SX_STORED may now follow.
5756          * Currently, the only pertinent notification to apply on the
5757          * freshly retrieved object is either:
5758          *    SX_CLASS <char-len> <classname> for short classnames.
5759          *    SX_LG_CLASS <int-len> <classname> for larger one (rare!).
5760          * Class name is then read into the key buffer pool used by
5761          * hash table key retrieval.
5762          */
5763
5764         if (cxt->ver_major < 2) {
5765                 while ((type = GETCHAR()) != SX_STORED) {
5766                         I32 len;
5767                         switch (type) {
5768                         case SX_CLASS:
5769                                 GETMARK(len);                   /* Length coded on a single char */
5770                                 break;
5771                         case SX_LG_CLASS:                       /* Length coded on a regular integer */
5772                                 RLEN(len);
5773                                 break;
5774                         case EOF:
5775                         default:
5776                                 return (SV *) 0;                /* Failed */
5777                         }
5778                         KBUFCHK((STRLEN)len);                   /* Grow buffer as necessary */
5779                         if (len)
5780                                 READ(kbuf, len);
5781                         kbuf[len] = '\0';                       /* Mark string end */
5782                         BLESS(sv, kbuf);
5783                 }
5784         }
5785
5786         TRACEME(("ok (retrieved 0x%"UVxf", refcnt=%d, %s)", PTR2UV(sv),
5787                 SvREFCNT(sv) - 1, sv_reftype(sv, FALSE)));
5788
5789         return sv;      /* Ok */
5790 }
5791
5792 /*
5793  * do_retrieve
5794  *
5795  * Retrieve data held in file and return the root object.
5796  * Common routine for pretrieve and mretrieve.
5797  */
5798 static SV *do_retrieve(
5799         pTHX_
5800         PerlIO *f,
5801         SV *in,
5802         int optype)
5803 {
5804         dSTCXT;
5805         SV *sv;
5806         int is_tainted;                         /* Is input source tainted? */
5807         int pre_06_fmt = 0;                     /* True with pre Storable 0.6 formats */
5808
5809         TRACEME(("do_retrieve (optype = 0x%x)", optype));
5810
5811         optype |= ST_RETRIEVE;
5812
5813         /*
5814          * Sanity assertions for retrieve dispatch tables.
5815          */
5816
5817         ASSERT(sizeof(sv_old_retrieve) == sizeof(sv_retrieve),
5818                 ("old and new retrieve dispatch table have same size"));
5819         ASSERT(sv_old_retrieve[SX_ERROR] == retrieve_other,
5820                 ("SX_ERROR entry correctly initialized in old dispatch table"));
5821         ASSERT(sv_retrieve[SX_ERROR] == retrieve_other,
5822                 ("SX_ERROR entry correctly initialized in new dispatch table"));
5823
5824         /*
5825          * Workaround for CROAK leak: if they enter with a "dirty" context,
5826          * free up memory for them now.
5827          */
5828
5829         if (cxt->s_dirty)
5830                 clean_context(aTHX_ cxt);
5831
5832         /*
5833          * Now that STORABLE_xxx hooks exist, it is possible that they try to
5834          * re-enter retrieve() via the hooks.
5835          */
5836
5837         if (cxt->entry)
5838                 cxt = allocate_context(aTHX_ cxt);
5839
5840         cxt->entry++;
5841
5842         ASSERT(cxt->entry == 1, ("starting new recursion"));
5843         ASSERT(!cxt->s_dirty, ("clean context"));
5844
5845         /*
5846          * Prepare context.
5847          *
5848          * Data is loaded into the memory buffer when f is NULL, unless `in' is
5849          * also NULL, in which case we're expecting the data to already lie
5850          * in the buffer (dclone case).
5851          */
5852
5853         KBUFINIT();                                     /* Allocate hash key reading pool once */
5854
5855         if (!f && in) {
5856 #ifdef SvUTF8_on
5857                 if (SvUTF8(in)) {
5858                         STRLEN length;
5859                         const char *orig = SvPV(in, length);
5860                         char *asbytes;
5861                         /* This is quite deliberate. I want the UTF8 routines
5862                            to encounter the '\0' which perl adds at the end
5863                            of all scalars, so that any new string also has
5864                            this.
5865                         */
5866                         STRLEN klen_tmp = length + 1;
5867                         bool is_utf8 = TRUE;
5868
5869                         /* Just casting the &klen to (STRLEN) won't work
5870                            well if STRLEN and I32 are of different widths.
5871                            --jhi */
5872                         asbytes = (char*)bytes_from_utf8((U8*)orig,
5873                                                          &klen_tmp,
5874                                                          &is_utf8);
5875                         if (is_utf8) {
5876                                 CROAK(("Frozen string corrupt - contains characters outside 0-255"));
5877                         }
5878                         if (asbytes != orig) {
5879                                 /* String has been converted.
5880                                    There is no need to keep any reference to
5881                                    the old string.  */
5882                                 in = sv_newmortal();
5883                                 /* We donate the SV the malloc()ed string
5884                                    bytes_from_utf8 returned us.  */
5885                                 SvUPGRADE(in, SVt_PV);
5886                                 SvPOK_on(in);
5887                                 SvPVX(in) = asbytes;
5888                                 SvLEN(in) = klen_tmp;
5889                                 SvCUR(in) = klen_tmp - 1;
5890                         }
5891                 }
5892 #endif
5893                 MBUF_SAVE_AND_LOAD(in);
5894         }
5895
5896         /*
5897          * Magic number verifications.
5898          *
5899          * This needs to be done before calling init_retrieve_context()
5900          * since the format indication in the file are necessary to conduct
5901          * some of the initializations.
5902          */
5903
5904         cxt->fio = f;                           /* Where I/O are performed */
5905
5906         if (!magic_check(aTHX_ cxt))
5907                 CROAK(("Magic number checking on storable %s failed",
5908                         cxt->fio ? "file" : "string"));
5909
5910         TRACEME(("data stored in %s format",
5911                 cxt->netorder ? "net order" : "native"));
5912
5913         /*
5914          * Check whether input source is tainted, so that we don't wrongly
5915          * taint perfectly good values...
5916          *
5917          * We assume file input is always tainted.  If both `f' and `in' are
5918          * NULL, then we come from dclone, and tainted is already filled in
5919          * the context.  That's a kludge, but the whole dclone() thing is
5920          * already quite a kludge anyway! -- RAM, 15/09/2000.
5921          */
5922
5923         is_tainted = f ? 1 : (in ? SvTAINTED(in) : cxt->s_tainted);
5924         TRACEME(("input source is %s", is_tainted ? "tainted" : "trusted"));
5925         init_retrieve_context(aTHX_ cxt, optype, is_tainted);
5926
5927         ASSERT(is_retrieving(), ("within retrieve operation"));
5928
5929         sv = retrieve(aTHX_ cxt, 0);            /* Recursively retrieve object, get root SV */
5930
5931         /*
5932          * Final cleanup.
5933          */
5934
5935         if (!f && in)
5936                 MBUF_RESTORE();
5937
5938         pre_06_fmt = cxt->hseen != NULL;        /* Before we clean context */
5939
5940         /*
5941          * The "root" context is never freed.
5942          */
5943
5944         clean_retrieve_context(aTHX_ cxt);
5945         if (cxt->prev)                          /* This context was stacked */
5946                 free_context(aTHX_ cxt);                /* It was not the "root" context */
5947
5948         /*
5949          * Prepare returned value.
5950          */
5951
5952         if (!sv) {
5953                 TRACEME(("retrieve ERROR"));
5954 #if (PATCHLEVEL <= 4) 
5955                 /* perl 5.00405 seems to screw up at this point with an
5956                    'attempt to modify a read only value' error reported in the
5957                    eval { $self = pretrieve(*FILE) } in _retrieve.
5958                    I can't see what the cause of this error is, but I suspect a
5959                    bug in 5.004, as it seems to be capable of issuing spurious
5960                    errors or core dumping with matches on $@. I'm not going to
5961                    spend time on what could be a fruitless search for the cause,
5962                    so here's a bodge. If you're running 5.004 and don't like
5963                    this inefficiency, either upgrade to a newer perl, or you are
5964                    welcome to find the problem and send in a patch.
5965                  */
5966                 return newSV(0);
5967 #else
5968                 return &PL_sv_undef;            /* Something went wrong, return undef */
5969 #endif
5970         }
5971
5972         TRACEME(("retrieve got %s(0x%"UVxf")",
5973                 sv_reftype(sv, FALSE), PTR2UV(sv)));
5974
5975         /*
5976          * Backward compatibility with Storable-0.5@9 (which we know we
5977          * are retrieving if hseen is non-null): don't create an extra RV
5978          * for objects since we special-cased it at store time.
5979          *
5980          * Build a reference to the SV returned by pretrieve even if it is
5981          * already one and not a scalar, for consistency reasons.
5982          */
5983
5984         if (pre_06_fmt) {                       /* Was not handling overloading by then */
5985                 SV *rv;
5986                 TRACEME(("fixing for old formats -- pre 0.6"));
5987                 if (sv_type(aTHX_ sv) == svis_REF && (rv = SvRV(sv)) && SvOBJECT(rv)) {
5988                         TRACEME(("ended do_retrieve() with an object -- pre 0.6"));
5989                         return sv;
5990                 }
5991         }
5992
5993         /*
5994          * If reference is overloaded, restore behaviour.
5995          *
5996          * NB: minor glitch here: normally, overloaded refs are stored specially
5997          * so that we can croak when behaviour cannot be re-installed, and also
5998          * avoid testing for overloading magic at each reference retrieval.
5999          *
6000          * Unfortunately, the root reference is implicitely stored, so we must
6001          * check for possible overloading now.  Furthermore, if we don't restore
6002          * overloading, we cannot croak as if the original ref was, because we
6003          * have no way to determine whether it was an overloaded ref or not in
6004          * the first place.
6005          *
6006          * It's a pity that overloading magic is attached to the rv, and not to
6007          * the underlying sv as blessing is.
6008          */
6009
6010         if (SvOBJECT(sv)) {
6011                 HV *stash = (HV *) SvSTASH(sv);
6012                 SV *rv = newRV_noinc(sv);
6013                 if (stash && Gv_AMG(stash)) {
6014                         SvAMAGIC_on(rv);
6015                         TRACEME(("restored overloading on root reference"));
6016                 }
6017                 TRACEME(("ended do_retrieve() with an object"));
6018                 return rv;
6019         }
6020
6021         TRACEME(("regular do_retrieve() end"));
6022
6023         return newRV_noinc(sv);
6024 }
6025
6026 /*
6027  * pretrieve
6028  *
6029  * Retrieve data held in file and return the root object, undef on error.
6030  */
6031 SV *pretrieve(pTHX_ PerlIO *f)
6032 {
6033         TRACEME(("pretrieve"));
6034         return do_retrieve(aTHX_ f, Nullsv, 0);
6035 }
6036
6037 /*
6038  * mretrieve
6039  *
6040  * Retrieve data held in scalar and return the root object, undef on error.
6041  */
6042 SV *mretrieve(pTHX_ SV *sv)
6043 {
6044         TRACEME(("mretrieve"));
6045         return do_retrieve(aTHX_ (PerlIO*) 0, sv, 0);
6046 }
6047
6048 /***
6049  *** Deep cloning
6050  ***/
6051
6052 /*
6053  * dclone
6054  *
6055  * Deep clone: returns a fresh copy of the original referenced SV tree.
6056  *
6057  * This is achieved by storing the object in memory and restoring from
6058  * there. Not that efficient, but it should be faster than doing it from
6059  * pure perl anyway.
6060  */
6061 SV *dclone(pTHX_ SV *sv)
6062 {
6063         dSTCXT;
6064         int size;
6065         stcxt_t *real_context;
6066         SV *out;
6067
6068         TRACEME(("dclone"));
6069
6070         /*
6071          * Workaround for CROAK leak: if they enter with a "dirty" context,
6072          * free up memory for them now.
6073          */
6074
6075         if (cxt->s_dirty)
6076                 clean_context(aTHX_ cxt);
6077
6078         /*
6079          * do_store() optimizes for dclone by not freeing its context, should
6080          * we need to allocate one because we're deep cloning from a hook.
6081          */
6082
6083         if (!do_store(aTHX_ (PerlIO*) 0, sv, ST_CLONE, FALSE, (SV**) 0))
6084                 return &PL_sv_undef;                            /* Error during store */
6085
6086         /*
6087          * Because of the above optimization, we have to refresh the context,
6088          * since a new one could have been allocated and stacked by do_store().
6089          */
6090
6091         { dSTCXT; real_context = cxt; }         /* Sub-block needed for macro */
6092         cxt = real_context;                                     /* And we need this temporary... */
6093
6094         /*
6095          * Now, `cxt' may refer to a new context.
6096          */
6097
6098         ASSERT(!cxt->s_dirty, ("clean context"));
6099         ASSERT(!cxt->entry, ("entry will not cause new context allocation"));
6100
6101         size = MBUF_SIZE();
6102         TRACEME(("dclone stored %d bytes", size));
6103         MBUF_INIT(size);
6104
6105         /*
6106          * Since we're passing do_retrieve() both a NULL file and sv, we need
6107          * to pre-compute the taintedness of the input by setting cxt->tainted
6108          * to whatever state our own input string was.  -- RAM, 15/09/2000
6109          *
6110          * do_retrieve() will free non-root context.
6111          */
6112
6113         cxt->s_tainted = SvTAINTED(sv);
6114         out = do_retrieve(aTHX_ (PerlIO*) 0, Nullsv, ST_CLONE);
6115
6116         TRACEME(("dclone returns 0x%"UVxf, PTR2UV(out)));
6117
6118         return out;
6119 }
6120
6121 /***
6122  *** Glue with perl.
6123  ***/
6124
6125 /*
6126  * The Perl IO GV object distinguishes between input and output for sockets
6127  * but not for plain files. To allow Storable to transparently work on
6128  * plain files and sockets transparently, we have to ask xsubpp to fetch the
6129  * right object for us. Hence the OutputStream and InputStream declarations.
6130  *
6131  * Before perl 5.004_05, those entries in the standard typemap are not
6132  * defined in perl include files, so we do that here.
6133  */
6134
6135 #ifndef OutputStream
6136 #define OutputStream    PerlIO *
6137 #define InputStream             PerlIO *
6138 #endif  /* !OutputStream */
6139
6140 MODULE = Storable       PACKAGE = Storable::Cxt
6141
6142 void
6143 DESTROY(self)
6144     SV *self
6145 PREINIT:
6146         stcxt_t *cxt = (stcxt_t *)SvPVX(SvRV(self));
6147 PPCODE:
6148         if (kbuf)
6149                 Safefree(kbuf);
6150         if (!cxt->membuf_ro && mbase)
6151                 Safefree(mbase);
6152         if (cxt->membuf_ro && (cxt->msaved).arena)
6153                 Safefree((cxt->msaved).arena);
6154
6155
6156 MODULE = Storable       PACKAGE = Storable
6157
6158 PROTOTYPES: ENABLE
6159
6160 BOOT:
6161     init_perinterp(aTHX);
6162     gv_fetchpv("Storable::drop_utf8",   GV_ADDMULTI, SVt_PV);
6163 #ifdef DEBUGME
6164     /* Only disable the used only once warning if we are in debugging mode.  */
6165     gv_fetchpv("Storable::DEBUGME",   GV_ADDMULTI, SVt_PV);
6166 #endif
6167 #ifdef USE_56_INTERWORK_KLUDGE
6168     gv_fetchpv("Storable::interwork_56_64bit",   GV_ADDMULTI, SVt_PV);
6169 #endif
6170
6171 void
6172 init_perinterp()
6173  CODE:
6174   init_perinterp(aTHX);
6175
6176 int
6177 pstore(f,obj)
6178 OutputStream    f
6179 SV *    obj
6180  CODE:
6181   RETVAL = pstore(aTHX_ f, obj);
6182  OUTPUT:
6183   RETVAL
6184
6185 int
6186 net_pstore(f,obj)
6187 OutputStream    f
6188 SV *    obj
6189  CODE:
6190   RETVAL = net_pstore(aTHX_ f, obj);
6191  OUTPUT:
6192   RETVAL
6193
6194 SV *
6195 mstore(obj)
6196 SV *    obj
6197  CODE:
6198   RETVAL = mstore(aTHX_ obj);
6199  OUTPUT:
6200   RETVAL
6201
6202 SV *
6203 net_mstore(obj)
6204 SV *    obj
6205  CODE:
6206   RETVAL = net_mstore(aTHX_ obj);
6207  OUTPUT:
6208   RETVAL
6209
6210 SV *
6211 pretrieve(f)
6212 InputStream     f
6213  CODE:
6214   RETVAL = pretrieve(aTHX_ f);
6215  OUTPUT:
6216   RETVAL
6217
6218 SV *
6219 mretrieve(sv)
6220 SV *    sv
6221  CODE:
6222   RETVAL = mretrieve(aTHX_ sv);
6223  OUTPUT:
6224   RETVAL
6225
6226 SV *
6227 dclone(sv)
6228 SV *    sv
6229  CODE:
6230   RETVAL = dclone(aTHX_ sv);
6231  OUTPUT:
6232   RETVAL
6233
6234 int
6235 last_op_in_netorder()
6236  CODE:
6237   RETVAL = last_op_in_netorder(aTHX);
6238  OUTPUT:
6239   RETVAL
6240
6241 int
6242 is_storing()
6243  CODE:
6244   RETVAL = is_storing(aTHX);
6245  OUTPUT:
6246   RETVAL
6247
6248 int
6249 is_retrieving()
6250  CODE:
6251   RETVAL = is_retrieving(aTHX);
6252  OUTPUT:
6253   RETVAL