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