This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Win32 from ext/ to cpan/
[perl5.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", GV_ADD)))   \
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, 0)
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         const 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         const 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         const 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         const 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", GV_ADD)) ? 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", GV_ADD)) ? 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", GV_ADD)) ? 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 #if PERL_VERSION <= 10
3438         case SVt_IV:
3439 #endif
3440         case SVt_NV:
3441                 /*
3442                  * No need to check for ROK, that can't be set here since there
3443                  * is no field capable of hodling the xrv_rv reference.
3444                  */
3445                 return svis_SCALAR;
3446         case SVt_PV:
3447 #if PERL_VERSION <= 10
3448         case SVt_RV:
3449 #else
3450         case SVt_IV:
3451 #endif
3452         case SVt_PVIV:
3453         case SVt_PVNV:
3454                 /*
3455                  * Starting from SVt_PV, it is possible to have the ROK flag
3456                  * set, the pointer to the other SV being either stored in
3457                  * the xrv_rv (in the case of a pure SVt_RV), or as the
3458                  * xpv_pv field of an SVt_PV and its heirs.
3459                  *
3460                  * However, those SV cannot be magical or they would be an
3461                  * SVt_PVMG at least.
3462                  */
3463                 return SvROK(sv) ? svis_REF : svis_SCALAR;
3464         case SVt_PVMG:
3465         case SVt_PVLV:          /* Workaround for perl5.004_04 "LVALUE" bug */
3466                 if (SvRMAGICAL(sv) && (mg_find(sv, 'p')))
3467                         return svis_TIED_ITEM;
3468                 /* FALL THROUGH */
3469 #if PERL_VERSION < 9
3470         case SVt_PVBM:
3471 #endif
3472                 if (SvRMAGICAL(sv) && (mg_find(sv, 'q')))
3473                         return svis_TIED;
3474                 return SvROK(sv) ? svis_REF : svis_SCALAR;
3475         case SVt_PVAV:
3476                 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3477                         return svis_TIED;
3478                 return svis_ARRAY;
3479         case SVt_PVHV:
3480                 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3481                         return svis_TIED;
3482                 return svis_HASH;
3483         case SVt_PVCV:
3484                 return svis_CODE;
3485 #if PERL_VERSION > 8
3486         /* case SVt_BIND: */
3487 #endif
3488         default:
3489                 break;
3490         }
3491
3492         return svis_OTHER;
3493 }
3494
3495 /*
3496  * store
3497  *
3498  * Recursively store objects pointed to by the sv to the specified file.
3499  *
3500  * Layout is <content> or SX_OBJECT <tagnum> if we reach an already stored
3501  * object (one for which storage has started -- it may not be over if we have
3502  * a self-referenced structure). This data set forms a stored <object>.
3503  */
3504 static int store(pTHX_ stcxt_t *cxt, SV *sv)
3505 {
3506         SV **svh;
3507         int ret;
3508         int type;
3509 #ifdef USE_PTR_TABLE
3510         struct ptr_tbl *pseen = cxt->pseen;
3511 #else
3512         HV *hseen = cxt->hseen;
3513 #endif
3514
3515         TRACEME(("store (0x%"UVxf")", PTR2UV(sv)));
3516
3517         /*
3518          * If object has already been stored, do not duplicate data.
3519          * Simply emit the SX_OBJECT marker followed by its tag data.
3520          * The tag is always written in network order.
3521          *
3522          * NOTA BENE, for 64-bit machines: the "*svh" below does not yield a
3523          * real pointer, rather a tag number (watch the insertion code below).
3524          * That means it probably safe to assume it is well under the 32-bit limit,
3525          * and makes the truncation safe.
3526          *              -- RAM, 14/09/1999
3527          */
3528
3529 #ifdef USE_PTR_TABLE
3530         svh = (SV **)ptr_table_fetch(pseen, sv);
3531 #else
3532         svh = hv_fetch(hseen, (char *) &sv, sizeof(sv), FALSE);
3533 #endif
3534         if (svh) {
3535                 I32 tagval;
3536
3537                 if (sv == &PL_sv_undef) {
3538                         /* We have seen PL_sv_undef before, but fake it as
3539                            if we have not.
3540
3541                            Not the simplest solution to making restricted
3542                            hashes work on 5.8.0, but it does mean that
3543                            repeated references to the one true undef will
3544                            take up less space in the output file.
3545                         */
3546                         /* Need to jump past the next hv_store, because on the
3547                            second store of undef the old hash value will be
3548                            SvREFCNT_dec()ed, and as Storable cheats horribly
3549                            by storing non-SVs in the hash a SEGV will ensure.
3550                            Need to increase the tag number so that the
3551                            receiver has no idea what games we're up to.  This
3552                            special casing doesn't affect hooks that store
3553                            undef, as the hook routine does its own lookup into
3554                            hseen.  Also this means that any references back
3555                            to PL_sv_undef (from the pathological case of hooks
3556                            storing references to it) will find the seen hash
3557                            entry for the first time, as if we didn't have this
3558                            hackery here. (That hseen lookup works even on 5.8.0
3559                            because it's a key of &PL_sv_undef and a value
3560                            which is a tag number, not a value which is
3561                            PL_sv_undef.)  */
3562                         cxt->tagnum++;
3563                         type = svis_SCALAR;
3564                         goto undef_special_case;
3565                 }
3566                 
3567 #ifdef USE_PTR_TABLE
3568                 tagval = htonl(LOW_32BITS(((char *)svh)-1));
3569 #else
3570                 tagval = htonl(LOW_32BITS(*svh));
3571 #endif
3572
3573                 TRACEME(("object 0x%"UVxf" seen as #%d", PTR2UV(sv), ntohl(tagval)));
3574
3575                 PUTMARK(SX_OBJECT);
3576                 WRITE_I32(tagval);
3577                 return 0;
3578         }
3579
3580         /*
3581          * Allocate a new tag and associate it with the address of the sv being
3582          * stored, before recursing...
3583          *
3584          * In order to avoid creating new SvIVs to hold the tagnum we just
3585          * cast the tagnum to an SV pointer and store that in the hash.  This
3586          * means that we must clean up the hash manually afterwards, but gives
3587          * us a 15% throughput increase.
3588          *
3589          */
3590
3591         cxt->tagnum++;
3592 #ifdef USE_PTR_TABLE
3593         ptr_table_store(pseen, sv, INT2PTR(SV*, 1 + cxt->tagnum));
3594 #else
3595         if (!hv_store(hseen,
3596                         (char *) &sv, sizeof(sv), INT2PTR(SV*, cxt->tagnum), 0))
3597                 return -1;
3598 #endif
3599
3600         /*
3601          * Store `sv' and everything beneath it, using appropriate routine.
3602          * Abort immediately if we get a non-zero status back.
3603          */
3604
3605         type = sv_type(aTHX_ sv);
3606
3607 undef_special_case:
3608         TRACEME(("storing 0x%"UVxf" tag #%d, type %d...",
3609                  PTR2UV(sv), cxt->tagnum, type));
3610
3611         if (SvOBJECT(sv)) {
3612                 HV *pkg = SvSTASH(sv);
3613                 ret = store_blessed(aTHX_ cxt, sv, type, pkg);
3614         } else
3615                 ret = SV_STORE(type)(aTHX_ cxt, sv);
3616
3617         TRACEME(("%s (stored 0x%"UVxf", refcnt=%d, %s)",
3618                 ret ? "FAILED" : "ok", PTR2UV(sv),
3619                 SvREFCNT(sv), sv_reftype(sv, FALSE)));
3620
3621         return ret;
3622 }
3623
3624 /*
3625  * magic_write
3626  *
3627  * Write magic number and system information into the file.
3628  * Layout is <magic> <network> [<len> <byteorder> <sizeof int> <sizeof long>
3629  * <sizeof ptr>] where <len> is the length of the byteorder hexa string.
3630  * All size and lenghts are written as single characters here.
3631  *
3632  * Note that no byte ordering info is emitted when <network> is true, since
3633  * integers will be emitted in network order in that case.
3634  */
3635 static int magic_write(pTHX_ stcxt_t *cxt)
3636 {
3637     /*
3638      * Starting with 0.6, the "use_network_order" byte flag is also used to
3639      * indicate the version number of the binary image, encoded in the upper
3640      * bits. The bit 0 is always used to indicate network order.
3641      */
3642     /*
3643      * Starting with 0.7, a full byte is dedicated to the minor version of
3644      * the binary format, which is incremented only when new markers are
3645      * introduced, for instance, but when backward compatibility is preserved.
3646      */
3647
3648     /* Make these at compile time.  The WRITE() macro is sufficiently complex
3649        that it saves about 200 bytes doing it this way and only using it
3650        once.  */
3651     static const unsigned char network_file_header[] = {
3652         MAGICSTR_BYTES,
3653         (STORABLE_BIN_MAJOR << 1) | 1,
3654         STORABLE_BIN_WRITE_MINOR
3655     };
3656     static const unsigned char file_header[] = {
3657         MAGICSTR_BYTES,
3658         (STORABLE_BIN_MAJOR << 1) | 0,
3659         STORABLE_BIN_WRITE_MINOR,
3660         /* sizeof the array includes the 0 byte at the end:  */
3661         (char) sizeof (byteorderstr) - 1,
3662         BYTEORDER_BYTES,
3663         (unsigned char) sizeof(int),
3664         (unsigned char) sizeof(long),
3665         (unsigned char) sizeof(char *),
3666         (unsigned char) sizeof(NV)
3667     };
3668 #ifdef USE_56_INTERWORK_KLUDGE
3669     static const unsigned char file_header_56[] = {
3670         MAGICSTR_BYTES,
3671         (STORABLE_BIN_MAJOR << 1) | 0,
3672         STORABLE_BIN_WRITE_MINOR,
3673         /* sizeof the array includes the 0 byte at the end:  */
3674         (char) sizeof (byteorderstr_56) - 1,
3675         BYTEORDER_BYTES_56,
3676         (unsigned char) sizeof(int),
3677         (unsigned char) sizeof(long),
3678         (unsigned char) sizeof(char *),
3679         (unsigned char) sizeof(NV)
3680     };
3681 #endif
3682     const unsigned char *header;
3683     SSize_t length;
3684
3685     TRACEME(("magic_write on fd=%d", cxt->fio ? PerlIO_fileno(cxt->fio) : -1));
3686
3687     if (cxt->netorder) {
3688         header = network_file_header;
3689         length = sizeof (network_file_header);
3690     } else {
3691 #ifdef USE_56_INTERWORK_KLUDGE
3692         if (SvTRUE(perl_get_sv("Storable::interwork_56_64bit", GV_ADD))) {
3693             header = file_header_56;
3694             length = sizeof (file_header_56);
3695         } else
3696 #endif
3697         {
3698             header = file_header;
3699             length = sizeof (file_header);
3700         }
3701     }        
3702
3703     if (!cxt->fio) {
3704         /* sizeof the array includes the 0 byte at the end.  */
3705         header += sizeof (magicstr) - 1;
3706         length -= sizeof (magicstr) - 1;
3707     }        
3708
3709     WRITE( (unsigned char*) header, length);
3710
3711     if (!cxt->netorder) {
3712         TRACEME(("ok (magic_write byteorder = 0x%lx [%d], I%d L%d P%d D%d)",
3713                  (unsigned long) BYTEORDER, (int) sizeof (byteorderstr) - 1,
3714                  (int) sizeof(int), (int) sizeof(long),
3715                  (int) sizeof(char *), (int) sizeof(NV)));
3716     }
3717     return 0;
3718 }
3719
3720 /*
3721  * do_store
3722  *
3723  * Common code for store operations.
3724  *
3725  * When memory store is requested (f = NULL) and a non null SV* is given in
3726  * `res', it is filled with a new SV created out of the memory buffer.
3727  *
3728  * It is required to provide a non-null `res' when the operation type is not
3729  * dclone() and store() is performed to memory.
3730  */
3731 static int do_store(
3732         pTHX_
3733         PerlIO *f,
3734         SV *sv,
3735         int optype,
3736         int network_order,
3737         SV **res)
3738 {
3739         dSTCXT;
3740         int status;
3741
3742         ASSERT(!(f == 0 && !(optype & ST_CLONE)) || res,
3743                 ("must supply result SV pointer for real recursion to memory"));
3744
3745         TRACEME(("do_store (optype=%d, netorder=%d)",
3746                 optype, network_order));
3747
3748         optype |= ST_STORE;
3749
3750         /*
3751          * Workaround for CROAK leak: if they enter with a "dirty" context,
3752          * free up memory for them now.
3753          */
3754
3755         if (cxt->s_dirty)
3756                 clean_context(aTHX_ cxt);
3757
3758         /*
3759          * Now that STORABLE_xxx hooks exist, it is possible that they try to
3760          * re-enter store() via the hooks.  We need to stack contexts.
3761          */
3762
3763         if (cxt->entry)
3764                 cxt = allocate_context(aTHX_ cxt);
3765
3766         cxt->entry++;
3767
3768         ASSERT(cxt->entry == 1, ("starting new recursion"));
3769         ASSERT(!cxt->s_dirty, ("clean context"));
3770
3771         /*
3772          * Ensure sv is actually a reference. From perl, we called something
3773          * like:
3774          *       pstore(aTHX_ FILE, \@array);
3775          * so we must get the scalar value behing that reference.
3776          */
3777
3778         if (!SvROK(sv))
3779                 CROAK(("Not a reference"));
3780         sv = SvRV(sv);                  /* So follow it to know what to store */
3781
3782         /* 
3783          * If we're going to store to memory, reset the buffer.
3784          */
3785
3786         if (!f)
3787                 MBUF_INIT(0);
3788
3789         /*
3790          * Prepare context and emit headers.
3791          */
3792
3793         init_store_context(aTHX_ cxt, f, optype, network_order);
3794
3795         if (-1 == magic_write(aTHX_ cxt))               /* Emit magic and ILP info */
3796                 return 0;                                       /* Error */
3797
3798         /*
3799          * Recursively store object...
3800          */
3801
3802         ASSERT(is_storing(aTHX), ("within store operation"));
3803
3804         status = store(aTHX_ cxt, sv);          /* Just do it! */
3805
3806         /*
3807          * If they asked for a memory store and they provided an SV pointer,
3808          * make an SV string out of the buffer and fill their pointer.
3809          *
3810          * When asking for ST_REAL, it's MANDATORY for the caller to provide
3811          * an SV, since context cleanup might free the buffer if we did recurse.
3812          * (unless caller is dclone(), which is aware of that).
3813          */
3814
3815         if (!cxt->fio && res)
3816                 *res = mbuf2sv(aTHX);
3817
3818         /*
3819          * Final cleanup.
3820          *
3821          * The "root" context is never freed, since it is meant to be always
3822          * handy for the common case where no recursion occurs at all (i.e.
3823          * we enter store() outside of any Storable code and leave it, period).
3824          * We know it's the "root" context because there's nothing stacked
3825          * underneath it.
3826          *
3827          * OPTIMIZATION:
3828          *
3829          * When deep cloning, we don't free the context: doing so would force
3830          * us to copy the data in the memory buffer.  Sicne we know we're
3831          * about to enter do_retrieve...
3832          */
3833
3834         clean_store_context(aTHX_ cxt);
3835         if (cxt->prev && !(cxt->optype & ST_CLONE))
3836                 free_context(aTHX_ cxt);
3837
3838         TRACEME(("do_store returns %d", status));
3839
3840         return status == 0;
3841 }
3842
3843 /*
3844  * pstore
3845  *
3846  * Store the transitive data closure of given object to disk.
3847  * Returns 0 on error, a true value otherwise.
3848  */
3849 static int pstore(pTHX_ PerlIO *f, SV *sv)
3850 {
3851         TRACEME(("pstore"));
3852         return do_store(aTHX_ f, sv, 0, FALSE, (SV**) 0);
3853
3854 }
3855
3856 /*
3857  * net_pstore
3858  *
3859  * Same as pstore(), but network order is used for integers and doubles are
3860  * emitted as strings.
3861  */
3862 static int net_pstore(pTHX_ PerlIO *f, SV *sv)
3863 {
3864         TRACEME(("net_pstore"));
3865         return do_store(aTHX_ f, sv, 0, TRUE, (SV**) 0);
3866 }
3867
3868 /***
3869  *** Memory stores.
3870  ***/
3871
3872 /*
3873  * mbuf2sv
3874  *
3875  * Build a new SV out of the content of the internal memory buffer.
3876  */
3877 static SV *mbuf2sv(pTHX)
3878 {
3879         dSTCXT;
3880
3881         return newSVpv(mbase, MBUF_SIZE());
3882 }
3883
3884 /*
3885  * mstore
3886  *
3887  * Store the transitive data closure of given object to memory.
3888  * Returns undef on error, a scalar value containing the data otherwise.
3889  */
3890 static SV *mstore(pTHX_ SV *sv)
3891 {
3892         SV *out;
3893
3894         TRACEME(("mstore"));
3895
3896         if (!do_store(aTHX_ (PerlIO*) 0, sv, 0, FALSE, &out))
3897                 return &PL_sv_undef;
3898
3899         return out;
3900 }
3901
3902 /*
3903  * net_mstore
3904  *
3905  * Same as mstore(), but network order is used for integers and doubles are
3906  * emitted as strings.
3907  */
3908 static SV *net_mstore(pTHX_ SV *sv)
3909 {
3910         SV *out;
3911
3912         TRACEME(("net_mstore"));
3913
3914         if (!do_store(aTHX_ (PerlIO*) 0, sv, 0, TRUE, &out))
3915                 return &PL_sv_undef;
3916
3917         return out;
3918 }
3919
3920 /***
3921  *** Specific retrieve callbacks.
3922  ***/
3923
3924 /*
3925  * retrieve_other
3926  *
3927  * Return an error via croak, since it is not possible that we get here
3928  * under normal conditions, when facing a file produced via pstore().
3929  */
3930 static SV *retrieve_other(pTHX_ stcxt_t *cxt, const char *cname)
3931 {
3932         if (
3933                 cxt->ver_major != STORABLE_BIN_MAJOR &&
3934                 cxt->ver_minor != STORABLE_BIN_MINOR
3935         ) {
3936                 CROAK(("Corrupted storable %s (binary v%d.%d), current is v%d.%d",
3937                         cxt->fio ? "file" : "string",
3938                         cxt->ver_major, cxt->ver_minor,
3939                         STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR));
3940         } else {
3941                 CROAK(("Corrupted storable %s (binary v%d.%d)",
3942                         cxt->fio ? "file" : "string",
3943                         cxt->ver_major, cxt->ver_minor));
3944         }
3945
3946         return (SV *) 0;                /* Just in case */
3947 }
3948
3949 /*
3950  * retrieve_idx_blessed
3951  *
3952  * Layout is SX_IX_BLESS <index> <object> with SX_IX_BLESS already read.
3953  * <index> can be coded on either 1 or 5 bytes.
3954  */
3955 static SV *retrieve_idx_blessed(pTHX_ stcxt_t *cxt, const char *cname)
3956 {
3957         I32 idx;
3958         const char *classname;
3959         SV **sva;
3960         SV *sv;
3961
3962         TRACEME(("retrieve_idx_blessed (#%d)", cxt->tagnum));
3963         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3964
3965         GETMARK(idx);                   /* Index coded on a single char? */
3966         if (idx & 0x80)
3967                 RLEN(idx);
3968
3969         /*
3970          * Fetch classname in `aclass'
3971          */
3972
3973         sva = av_fetch(cxt->aclass, idx, FALSE);
3974         if (!sva)
3975                 CROAK(("Class name #%"IVdf" should have been seen already", (IV) idx));
3976
3977         classname = SvPVX(*sva);        /* We know it's a PV, by construction */
3978
3979         TRACEME(("class ID %d => %s", idx, classname));
3980
3981         /*
3982          * Retrieve object and bless it.
3983          */
3984
3985         sv = retrieve(aTHX_ cxt, classname);    /* First SV which is SEEN will be blessed */
3986
3987         return sv;
3988 }
3989
3990 /*
3991  * retrieve_blessed
3992  *
3993  * Layout is SX_BLESS <len> <classname> <object> with SX_BLESS already read.
3994  * <len> can be coded on either 1 or 5 bytes.
3995  */
3996 static SV *retrieve_blessed(pTHX_ stcxt_t *cxt, const char *cname)
3997 {
3998         I32 len;
3999         SV *sv;
4000         char buf[LG_BLESS + 1];         /* Avoid malloc() if possible */
4001         char *classname = buf;
4002         char *malloced_classname = NULL;
4003
4004         TRACEME(("retrieve_blessed (#%d)", cxt->tagnum));
4005         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
4006
4007         /*
4008          * Decode class name length and read that name.
4009          *
4010          * Short classnames have two advantages: their length is stored on one
4011          * single byte, and the string can be read on the stack.
4012          */
4013
4014         GETMARK(len);                   /* Length coded on a single char? */
4015         if (len & 0x80) {
4016                 RLEN(len);
4017                 TRACEME(("** allocating %d bytes for class name", len+1));
4018                 New(10003, classname, len+1, char);
4019                 malloced_classname = classname;
4020         }
4021         SAFEPVREAD(classname, len, malloced_classname);
4022         classname[len] = '\0';          /* Mark string end */
4023
4024         /*
4025          * It's a new classname, otherwise it would have been an SX_IX_BLESS.
4026          */
4027
4028         TRACEME(("new class name \"%s\" will bear ID = %d", classname, cxt->classnum));
4029
4030         if (!av_store(cxt->aclass, cxt->classnum++, newSVpvn(classname, len))) {
4031                 Safefree(malloced_classname);
4032                 return (SV *) 0;
4033         }
4034
4035         /*
4036          * Retrieve object and bless it.
4037          */
4038
4039         sv = retrieve(aTHX_ cxt, classname);    /* First SV which is SEEN will be blessed */
4040         if (malloced_classname)
4041                 Safefree(malloced_classname);
4042
4043         return sv;
4044 }
4045
4046 /*
4047  * retrieve_hook
4048  *
4049  * Layout: SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
4050  * with leading mark already read, as usual.
4051  *
4052  * When recursion was involved during serialization of the object, there
4053  * is an unknown amount of serialized objects after the SX_HOOK mark.  Until
4054  * we reach a <flags> marker with the recursion bit cleared.
4055  *
4056  * If the first <flags> byte contains a type of SHT_EXTRA, then the real type
4057  * is held in the <extra> byte, and if the object is tied, the serialized
4058  * magic object comes at the very end:
4059  *
4060  *     SX_HOOK <flags> <extra> ... [<len3> <object-IDs>] <magic object>
4061  *
4062  * This means the STORABLE_thaw hook will NOT get a tied variable during its
4063  * processing (since we won't have seen the magic object by the time the hook
4064  * is called).  See comments below for why it was done that way.
4065  */
4066 static SV *retrieve_hook(pTHX_ stcxt_t *cxt, const char *cname)
4067 {
4068         I32 len;
4069         char buf[LG_BLESS + 1];         /* Avoid malloc() if possible */
4070         char *classname = buf;
4071         unsigned int flags;
4072         I32 len2;
4073         SV *frozen;
4074         I32 len3 = 0;
4075         AV *av = 0;
4076         SV *hook;
4077         SV *sv;
4078         SV *rv;
4079         GV *attach;
4080         int obj_type;
4081         int clone = cxt->optype & ST_CLONE;
4082         char mtype = '\0';
4083         unsigned int extra_type = 0;
4084
4085         TRACEME(("retrieve_hook (#%d)", cxt->tagnum));
4086         ASSERT(!cname, ("no bless-into class given here, got %s", cname));
4087
4088         /*
4089          * Read flags, which tell us about the type, and whether we need to recurse.
4090          */
4091
4092         GETMARK(flags);
4093
4094         /*
4095          * Create the (empty) object, and mark it as seen.
4096          *
4097          * This must be done now, because tags are incremented, and during
4098          * serialization, the object tag was affected before recursion could
4099          * take place.
4100          */
4101
4102         obj_type = flags & SHF_TYPE_MASK;
4103         switch (obj_type) {
4104         case SHT_SCALAR:
4105                 sv = newSV(0);
4106                 break;
4107         case SHT_ARRAY:
4108                 sv = (SV *) newAV();
4109                 break;
4110         case SHT_HASH:
4111                 sv = (SV *) newHV();
4112                 break;
4113         case SHT_EXTRA:
4114                 /*
4115                  * Read <extra> flag to know the type of the object.
4116                  * Record associated magic type for later.
4117                  */
4118                 GETMARK(extra_type);
4119                 switch (extra_type) {
4120                 case SHT_TSCALAR:
4121                         sv = newSV(0);
4122                         mtype = 'q';
4123                         break;
4124                 case SHT_TARRAY:
4125                         sv = (SV *) newAV();
4126                         mtype = 'P';
4127                         break;
4128                 case SHT_THASH:
4129                         sv = (SV *) newHV();
4130                         mtype = 'P';
4131                         break;
4132                 default:
4133                         return retrieve_other(aTHX_ cxt, 0);    /* Let it croak */
4134                 }
4135                 break;
4136         default:
4137                 return retrieve_other(aTHX_ cxt, 0);            /* Let it croak */
4138         }
4139         SEEN(sv, 0, 0);                                                 /* Don't bless yet */
4140
4141         /*
4142          * Whilst flags tell us to recurse, do so.
4143          *
4144          * We don't need to remember the addresses returned by retrieval, because
4145          * all the references will be obtained through indirection via the object
4146          * tags in the object-ID list.
4147          *
4148          * We need to decrement the reference count for these objects
4149          * because, if the user doesn't save a reference to them in the hook,
4150          * they must be freed when this context is cleaned.
4151          */
4152
4153         while (flags & SHF_NEED_RECURSE) {
4154                 TRACEME(("retrieve_hook recursing..."));
4155                 rv = retrieve(aTHX_ cxt, 0);
4156                 if (!rv)
4157                         return (SV *) 0;
4158                 SvREFCNT_dec(rv);
4159                 TRACEME(("retrieve_hook back with rv=0x%"UVxf,
4160                          PTR2UV(rv)));
4161                 GETMARK(flags);
4162         }
4163
4164         if (flags & SHF_IDX_CLASSNAME) {
4165                 SV **sva;
4166                 I32 idx;
4167
4168                 /*
4169                  * Fetch index from `aclass'
4170                  */
4171
4172                 if (flags & SHF_LARGE_CLASSLEN)
4173                         RLEN(idx);
4174                 else
4175                         GETMARK(idx);
4176
4177                 sva = av_fetch(cxt->aclass, idx, FALSE);
4178                 if (!sva)
4179                         CROAK(("Class name #%"IVdf" should have been seen already",
4180                                 (IV) idx));
4181
4182                 classname = SvPVX(*sva);        /* We know it's a PV, by construction */
4183                 TRACEME(("class ID %d => %s", idx, classname));
4184
4185         } else {
4186                 /*
4187                  * Decode class name length and read that name.
4188                  *
4189                  * NOTA BENE: even if the length is stored on one byte, we don't read
4190                  * on the stack.  Just like retrieve_blessed(), we limit the name to
4191                  * LG_BLESS bytes.  This is an arbitrary decision.
4192                  */
4193                 char *malloced_classname = NULL;
4194
4195                 if (flags & SHF_LARGE_CLASSLEN)
4196                         RLEN(len);
4197                 else
4198                         GETMARK(len);
4199
4200                 if (len > LG_BLESS) {
4201                         TRACEME(("** allocating %d bytes for class name", len+1));
4202                         New(10003, classname, len+1, char);
4203                         malloced_classname = classname;
4204                 }
4205
4206                 SAFEPVREAD(classname, len, malloced_classname);
4207                 classname[len] = '\0';          /* Mark string end */
4208
4209                 /*
4210                  * Record new classname.
4211                  */
4212
4213                 if (!av_store(cxt->aclass, cxt->classnum++, newSVpvn(classname, len))) {
4214                         Safefree(malloced_classname);
4215                         return (SV *) 0;
4216                 }
4217         }
4218
4219         TRACEME(("class name: %s", classname));
4220
4221         /*
4222          * Decode user-frozen string length and read it in an SV.
4223          *
4224          * For efficiency reasons, we read data directly into the SV buffer.
4225          * To understand that code, read retrieve_scalar()
4226          */
4227
4228         if (flags & SHF_LARGE_STRLEN)
4229                 RLEN(len2);
4230         else
4231                 GETMARK(len2);
4232
4233         frozen = NEWSV(10002, len2);
4234         if (len2) {
4235                 SAFEREAD(SvPVX(frozen), len2, frozen);
4236                 SvCUR_set(frozen, len2);
4237                 *SvEND(frozen) = '\0';
4238         }
4239         (void) SvPOK_only(frozen);              /* Validates string pointer */
4240         if (cxt->s_tainted)                             /* Is input source tainted? */
4241                 SvTAINT(frozen);
4242
4243         TRACEME(("frozen string: %d bytes", len2));
4244
4245         /*
4246          * Decode object-ID list length, if present.
4247          */
4248
4249         if (flags & SHF_HAS_LIST) {
4250                 if (flags & SHF_LARGE_LISTLEN)
4251                         RLEN(len3);
4252                 else
4253                         GETMARK(len3);
4254                 if (len3) {
4255                         av = newAV();
4256                         av_extend(av, len3 + 1);        /* Leave room for [0] */
4257                         AvFILLp(av) = len3;                     /* About to be filled anyway */
4258                 }
4259         }
4260
4261         TRACEME(("has %d object IDs to link", len3));
4262
4263         /*
4264          * Read object-ID list into array.
4265          * Because we pre-extended it, we can cheat and fill it manually.
4266          *
4267          * We read object tags and we can convert them into SV* on the fly
4268          * because we know all the references listed in there (as tags)
4269          * have been already serialized, hence we have a valid correspondance
4270          * between each of those tags and the recreated SV.
4271          */
4272
4273         if (av) {
4274                 SV **ary = AvARRAY(av);
4275                 int i;
4276                 for (i = 1; i <= len3; i++) {   /* We leave [0] alone */
4277                         I32 tag;
4278                         SV **svh;
4279                         SV *xsv;
4280
4281                         READ_I32(tag);
4282                         tag = ntohl(tag);
4283                         svh = av_fetch(cxt->aseen, tag, FALSE);
4284                         if (!svh) {
4285                                 if (tag == cxt->where_is_undef) {
4286                                         /* av_fetch uses PL_sv_undef internally, hence this
4287                                            somewhat gruesome hack. */
4288                                         xsv = &PL_sv_undef;
4289                                         svh = &xsv;
4290                                 } else {
4291                                         CROAK(("Object #%"IVdf" should have been retrieved already",
4292                                                (IV) tag));
4293                                 }
4294                         }
4295                         xsv = *svh;
4296                         ary[i] = SvREFCNT_inc(xsv);
4297                 }
4298         }
4299
4300         /*
4301          * Bless the object and look up the STORABLE_thaw hook.
4302          */
4303
4304         BLESS(sv, classname);
4305
4306         /* Handle attach case; again can't use pkg_can because it only
4307          * caches one method */
4308         attach = gv_fetchmethod_autoload(SvSTASH(sv), "STORABLE_attach", FALSE);
4309         if (attach && isGV(attach)) {
4310             SV* attached;
4311             SV* attach_hook = newRV((SV*) GvCV(attach));
4312
4313             if (av)
4314                 CROAK(("STORABLE_attach called with unexpected references"));
4315             av = newAV();
4316             av_extend(av, 1);
4317             AvFILLp(av) = 0;
4318             AvARRAY(av)[0] = SvREFCNT_inc(frozen);
4319             rv = newSVpv(classname, 0);
4320             attached = scalar_call(aTHX_ rv, attach_hook, clone, av, G_SCALAR);
4321             if (attached &&
4322                 SvROK(attached) && 
4323                 sv_derived_from(attached, classname))
4324                 return SvRV(attached);
4325             CROAK(("STORABLE_attach did not return a %s object", classname));
4326         }
4327
4328         hook = pkg_can(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4329         if (!hook) {
4330                 /*
4331                  * Hook not found.  Maybe they did not require the module where this
4332                  * hook is defined yet?
4333                  *
4334                  * If the load below succeeds, we'll be able to find the hook.
4335                  * Still, it only works reliably when each class is defined in a
4336                  * file of its own.
4337                  */
4338
4339                 TRACEME(("No STORABLE_thaw defined for objects of class %s", classname));
4340                 TRACEME(("Going to load module '%s'", classname));
4341                 load_module(PERL_LOADMOD_NOIMPORT, newSVpv(classname, 0), Nullsv);
4342
4343                 /*
4344                  * We cache results of pkg_can, so we need to uncache before attempting
4345                  * the lookup again.
4346                  */
4347
4348                 pkg_uncache(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4349                 hook = pkg_can(aTHX_ cxt->hook, SvSTASH(sv), "STORABLE_thaw");
4350
4351                 if (!hook)
4352                         CROAK(("No STORABLE_thaw defined for objects of class %s "
4353                                         "(even after a \"require %s;\")", classname, classname));
4354         }
4355
4356         /*
4357          * If we don't have an `av' yet, prepare one.
4358          * Then insert the frozen string as item [0].
4359          */
4360
4361         if (!av) {
4362                 av = newAV();
4363                 av_extend(av, 1);
4364                 AvFILLp(av) = 0;
4365         }
4366         AvARRAY(av)[0] = SvREFCNT_inc(frozen);
4367
4368         /*
4369          * Call the hook as:
4370          *
4371          *   $object->STORABLE_thaw($cloning, $frozen, @refs);
4372          * 
4373          * where $object is our blessed (empty) object, $cloning is a boolean
4374          * telling whether we're running a deep clone, $frozen is the frozen
4375          * string the user gave us in his serializing hook, and @refs, which may
4376          * be empty, is the list of extra references he returned along for us
4377          * to serialize.
4378          *
4379          * In effect, the hook is an alternate creation routine for the class,
4380          * the object itself being already created by the runtime.
4381          */
4382
4383         TRACEME(("calling STORABLE_thaw on %s at 0x%"UVxf" (%"IVdf" args)",
4384                  classname, PTR2UV(sv), (IV) AvFILLp(av) + 1));
4385
4386         rv = newRV(sv);
4387         (void) scalar_call(aTHX_ rv, hook, clone, av, G_SCALAR|G_DISCARD);
4388         SvREFCNT_dec(rv);
4389
4390         /*
4391          * Final cleanup.
4392          */
4393
4394         SvREFCNT_dec(frozen);
4395         av_undef(av);
4396         sv_free((SV *) av);
4397         if (!(flags & SHF_IDX_CLASSNAME) && classname != buf)
4398                 Safefree(classname);
4399
4400         /*
4401          * If we had an <extra> type, then the object was not as simple, and
4402          * we need to restore extra magic now.
4403          */
4404
4405         if (!extra_type)
4406                 return sv;
4407
4408         TRACEME(("retrieving magic object for 0x%"UVxf"...", PTR2UV(sv)));
4409
4410         rv = retrieve(aTHX_ cxt, 0);            /* Retrieve <magic object> */
4411
4412         TRACEME(("restoring the magic object 0x%"UVxf" part of 0x%"UVxf,
4413                 PTR2UV(rv), PTR2UV(sv)));
4414
4415         switch (extra_type) {
4416         case SHT_TSCALAR:
4417                 sv_upgrade(sv, SVt_PVMG);
4418                 break;
4419         case SHT_TARRAY:
4420                 sv_upgrade(sv, SVt_PVAV);
4421                 AvREAL_off((AV *)sv);
4422                 break;
4423         case SHT_THASH:
4424                 sv_upgrade(sv, SVt_PVHV);
4425                 break;
4426         default:
4427                 CROAK(("Forgot to deal with extra type %d", extra_type));
4428                 break;
4429         }
4430
4431         /*
4432          * Adding the magic only now, well after the STORABLE_thaw hook was called
4433          * means the hook cannot know it deals with an object whose variable is
4434          * tied.  But this is happening when retrieving $o in the following case:
4435          *
4436          *      my %h;
4437          *  tie %h, 'FOO';
4438          *      my $o = bless \%h, 'BAR';
4439          *
4440          * The 'BAR' class is NOT the one where %h is tied into.  Therefore, as
4441          * far as the 'BAR' class is concerned, the fact that %h is not a REAL
4442          * hash but a tied one should not matter at all, and remain transparent.
4443          * This means the magic must be restored by Storable AFTER the hook is
4444          * called.
4445          *
4446          * That looks very reasonable to me, but then I've come up with this
4447          * after a bug report from David Nesting, who was trying to store such
4448          * an object and caused Storable to fail.  And unfortunately, it was
4449          * also the easiest way to retrofit support for blessed ref to tied objects
4450          * into the existing design.  -- RAM, 17/02/2001
4451          */
4452
4453         sv_magic(sv, rv, mtype, (char *)NULL, 0);
4454         SvREFCNT_dec(rv);                       /* Undo refcnt inc from sv_magic() */
4455
4456         return sv;
4457 }
4458
4459 /*
4460  * retrieve_ref
4461  *
4462  * Retrieve reference to some other scalar.
4463  * Layout is SX_REF <object>, with SX_REF already read.
4464  */
4465 static SV *retrieve_ref(pTHX_ stcxt_t *cxt, const char *cname)
4466 {
4467         SV *rv;
4468         SV *sv;
4469
4470         TRACEME(("retrieve_ref (#%d)", cxt->tagnum));
4471
4472         /*
4473          * We need to create the SV that holds the reference to the yet-to-retrieve
4474          * object now, so that we may record the address in the seen table.
4475          * Otherwise, if the object to retrieve references us, we won't be able
4476          * to resolve the SX_OBJECT we'll see at that point! Hence we cannot
4477          * do the retrieve first and use rv = newRV(sv) since it will be too late
4478          * for SEEN() recording.
4479          */
4480
4481         rv = NEWSV(10002, 0);
4482         SEEN(rv, cname, 0);             /* Will return if rv is null */
4483         sv = retrieve(aTHX_ cxt, 0);    /* Retrieve <object> */
4484         if (!sv)
4485                 return (SV *) 0;        /* Failed */
4486
4487         /*
4488          * WARNING: breaks RV encapsulation.
4489          *
4490          * Now for the tricky part. We have to upgrade our existing SV, so that
4491          * it is now an RV on sv... Again, we cheat by duplicating the code
4492          * held in newSVrv(), since we already got our SV from retrieve().
4493          *
4494          * We don't say:
4495          *
4496          *              SvRV(rv) = SvREFCNT_inc(sv);
4497          *
4498          * here because the reference count we got from retrieve() above is
4499          * already correct: if the object was retrieved from the file, then
4500          * its reference count is one. Otherwise, if it was retrieved via
4501          * an SX_OBJECT indication, a ref count increment was done.
4502          */
4503
4504         if (cname) {
4505                 /* No need to do anything, as rv will already be PVMG.  */
4506                 assert (SvTYPE(rv) == SVt_RV || SvTYPE(rv) >= SVt_PV);
4507         } else {
4508                 sv_upgrade(rv, SVt_RV);
4509         }
4510
4511         SvRV_set(rv, sv);                               /* $rv = \$sv */
4512         SvROK_on(rv);
4513
4514         TRACEME(("ok (retrieve_ref at 0x%"UVxf")", PTR2UV(rv)));
4515
4516         return rv;
4517 }
4518
4519 /*
4520  * retrieve_weakref
4521  *
4522  * Retrieve weak reference to some other scalar.
4523  * Layout is SX_WEAKREF <object>, with SX_WEAKREF already read.
4524  */
4525 static SV *retrieve_weakref(pTHX_ stcxt_t *cxt, const char *cname)
4526 {
4527         SV *sv;
4528
4529         TRACEME(("retrieve_weakref (#%d)", cxt->tagnum));
4530
4531         sv = retrieve_ref(aTHX_ cxt, cname);
4532         if (sv) {
4533 #ifdef SvWEAKREF
4534                 sv_rvweaken(sv);
4535 #else
4536                 WEAKREF_CROAK();
4537 #endif
4538         }
4539         return sv;
4540 }
4541
4542 /*
4543  * retrieve_overloaded
4544  *
4545  * Retrieve reference to some other scalar with overloading.
4546  * Layout is SX_OVERLOAD <object>, with SX_OVERLOAD already read.
4547  */
4548 static SV *retrieve_overloaded(pTHX_ stcxt_t *cxt, const char *cname)
4549 {
4550         SV *rv;
4551         SV *sv;
4552         HV *stash;
4553
4554         TRACEME(("retrieve_overloaded (#%d)", cxt->tagnum));
4555
4556         /*
4557          * Same code as retrieve_ref(), duplicated to avoid extra call.
4558          */
4559
4560         rv = NEWSV(10002, 0);
4561         SEEN(rv, cname, 0);             /* Will return if rv is null */
4562         sv = retrieve(aTHX_ cxt, 0);    /* Retrieve <object> */
4563         if (!sv)
4564                 return (SV *) 0;        /* Failed */
4565
4566         /*
4567          * WARNING: breaks RV encapsulation.
4568          */
4569
4570         SvUPGRADE(rv, SVt_RV);
4571         SvRV_set(rv, sv);                               /* $rv = \$sv */
4572         SvROK_on(rv);
4573
4574         /*
4575          * Restore overloading magic.
4576          */
4577
4578         stash = SvTYPE(sv) ? (HV *) SvSTASH (sv) : 0;
4579         if (!stash) {
4580                 CROAK(("Cannot restore overloading on %s(0x%"UVxf
4581                        ") (package <unknown>)",
4582                        sv_reftype(sv, FALSE),
4583                        PTR2UV(sv)));
4584         }
4585         if (!Gv_AMG(stash)) {
4586                 const char *package = HvNAME_get(stash);
4587                 TRACEME(("No overloading defined for package %s", package));
4588                 TRACEME(("Going to load module '%s'", package));
4589                 load_module(PERL_LOADMOD_NOIMPORT, newSVpv(package, 0), Nullsv);
4590                 if (!Gv_AMG(stash)) {
4591                         CROAK(("Cannot restore overloading on %s(0x%"UVxf
4592                                ") (package %s) (even after a \"require %s;\")",
4593                                sv_reftype(sv, FALSE),
4594                                PTR2UV(sv),
4595                                package, package));
4596                 }
4597         }
4598
4599         SvAMAGIC_on(rv);
4600
4601         TRACEME(("ok (retrieve_overloaded at 0x%"UVxf")", PTR2UV(rv)));
4602
4603         return rv;
4604 }
4605
4606 /*
4607  * retrieve_weakoverloaded
4608  *
4609  * Retrieve weak overloaded reference to some other scalar.
4610  * Layout is SX_WEAKOVERLOADED <object>, with SX_WEAKOVERLOADED already read.
4611  */
4612 static SV *retrieve_weakoverloaded(pTHX_ stcxt_t *cxt, const char *cname)
4613 {
4614         SV *sv;
4615
4616         TRACEME(("retrieve_weakoverloaded (#%d)", cxt->tagnum));
4617
4618         sv = retrieve_overloaded(aTHX_ cxt, cname);
4619         if (sv) {
4620 #ifdef SvWEAKREF
4621                 sv_rvweaken(sv);
4622 #else
4623                 WEAKREF_CROAK();
4624 #endif
4625         }
4626         return sv;
4627 }
4628
4629 /*
4630  * retrieve_tied_array
4631  *
4632  * Retrieve tied array
4633  * Layout is SX_TIED_ARRAY <object>, with SX_TIED_ARRAY already read.
4634  */
4635 static SV *retrieve_tied_array(pTHX_ stcxt_t *cxt, const char *cname)
4636 {
4637         SV *tv;
4638         SV *sv;
4639
4640         TRACEME(("retrieve_tied_array (#%d)", cxt->tagnum));
4641
4642         tv = NEWSV(10002, 0);
4643         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4644         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4645         if (!sv)
4646                 return (SV *) 0;                /* Failed */
4647
4648         sv_upgrade(tv, SVt_PVAV);
4649         AvREAL_off((AV *)tv);
4650         sv_magic(tv, sv, 'P', (char *)NULL, 0);
4651         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4652
4653         TRACEME(("ok (retrieve_tied_array at 0x%"UVxf")", PTR2UV(tv)));
4654
4655         return tv;
4656 }
4657
4658 /*
4659  * retrieve_tied_hash
4660  *
4661  * Retrieve tied hash
4662  * Layout is SX_TIED_HASH <object>, with SX_TIED_HASH already read.
4663  */
4664 static SV *retrieve_tied_hash(pTHX_ stcxt_t *cxt, const char *cname)
4665 {
4666         SV *tv;
4667         SV *sv;
4668
4669         TRACEME(("retrieve_tied_hash (#%d)", cxt->tagnum));
4670
4671         tv = NEWSV(10002, 0);
4672         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4673         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4674         if (!sv)
4675                 return (SV *) 0;                /* Failed */
4676
4677         sv_upgrade(tv, SVt_PVHV);
4678         sv_magic(tv, sv, 'P', (char *)NULL, 0);
4679         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4680
4681         TRACEME(("ok (retrieve_tied_hash at 0x%"UVxf")", PTR2UV(tv)));
4682
4683         return tv;
4684 }
4685
4686 /*
4687  * retrieve_tied_scalar
4688  *
4689  * Retrieve tied scalar
4690  * Layout is SX_TIED_SCALAR <object>, with SX_TIED_SCALAR already read.
4691  */
4692 static SV *retrieve_tied_scalar(pTHX_ stcxt_t *cxt, const char *cname)
4693 {
4694         SV *tv;
4695         SV *sv, *obj = NULL;
4696
4697         TRACEME(("retrieve_tied_scalar (#%d)", cxt->tagnum));
4698
4699         tv = NEWSV(10002, 0);
4700         SEEN(tv, cname, 0);                     /* Will return if rv is null */
4701         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4702         if (!sv) {
4703                 return (SV *) 0;                /* Failed */
4704         }
4705         else if (SvTYPE(sv) != SVt_NULL) {
4706                 obj = sv;
4707         }
4708
4709         sv_upgrade(tv, SVt_PVMG);
4710         sv_magic(tv, obj, 'q', (char *)NULL, 0);
4711
4712         if (obj) {
4713                 /* Undo refcnt inc from sv_magic() */
4714                 SvREFCNT_dec(obj);
4715         }
4716
4717         TRACEME(("ok (retrieve_tied_scalar at 0x%"UVxf")", PTR2UV(tv)));
4718
4719         return tv;
4720 }
4721
4722 /*
4723  * retrieve_tied_key
4724  *
4725  * Retrieve reference to value in a tied hash.
4726  * Layout is SX_TIED_KEY <object> <key>, with SX_TIED_KEY already read.
4727  */
4728 static SV *retrieve_tied_key(pTHX_ stcxt_t *cxt, const char *cname)
4729 {
4730         SV *tv;
4731         SV *sv;
4732         SV *key;
4733
4734         TRACEME(("retrieve_tied_key (#%d)", cxt->tagnum));
4735
4736         tv = NEWSV(10002, 0);
4737         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4738         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4739         if (!sv)
4740                 return (SV *) 0;                /* Failed */
4741
4742         key = retrieve(aTHX_ cxt, 0);           /* Retrieve <key> */
4743         if (!key)
4744                 return (SV *) 0;                /* Failed */
4745
4746         sv_upgrade(tv, SVt_PVMG);
4747         sv_magic(tv, sv, 'p', (char *)key, HEf_SVKEY);
4748         SvREFCNT_dec(key);                      /* Undo refcnt inc from sv_magic() */
4749         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4750
4751         return tv;
4752 }
4753
4754 /*
4755  * retrieve_tied_idx
4756  *
4757  * Retrieve reference to value in a tied array.
4758  * Layout is SX_TIED_IDX <object> <idx>, with SX_TIED_IDX already read.
4759  */
4760 static SV *retrieve_tied_idx(pTHX_ stcxt_t *cxt, const char *cname)
4761 {
4762         SV *tv;
4763         SV *sv;
4764         I32 idx;
4765
4766         TRACEME(("retrieve_tied_idx (#%d)", cxt->tagnum));
4767
4768         tv = NEWSV(10002, 0);
4769         SEEN(tv, cname, 0);                     /* Will return if tv is null */
4770         sv = retrieve(aTHX_ cxt, 0);            /* Retrieve <object> */
4771         if (!sv)
4772                 return (SV *) 0;                /* Failed */
4773
4774         RLEN(idx);                                      /* Retrieve <idx> */
4775
4776         sv_upgrade(tv, SVt_PVMG);
4777         sv_magic(tv, sv, 'p', (char *)NULL, idx);
4778         SvREFCNT_dec(sv);                       /* Undo refcnt inc from sv_magic() */
4779
4780         return tv;
4781 }
4782
4783
4784 /*
4785  * retrieve_lscalar
4786  *
4787  * Retrieve defined long (string) scalar.
4788  *
4789  * Layout is SX_LSCALAR <length> <data>, with SX_LSCALAR already read.
4790  * The scalar is "long" in that <length> is larger than LG_SCALAR so it
4791  * was not stored on a single byte.
4792  */
4793 static SV *retrieve_lscalar(pTHX_ stcxt_t *cxt, const char *cname)
4794 {
4795         I32 len;
4796         SV *sv;
4797
4798         RLEN(len);
4799         TRACEME(("retrieve_lscalar (#%d), len = %"IVdf, cxt->tagnum, (IV) len));
4800
4801         /*
4802          * Allocate an empty scalar of the suitable length.
4803          */
4804
4805         sv = NEWSV(10002, len);
4806         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4807
4808         if (len ==  0) {
4809             sv_setpvn(sv, "", 0);
4810             return sv;
4811         }
4812
4813         /*
4814          * WARNING: duplicates parts of sv_setpv and breaks SV data encapsulation.
4815          *
4816          * Now, for efficiency reasons, read data directly inside the SV buffer,
4817          * and perform the SV final settings directly by duplicating the final
4818          * work done by sv_setpv. Since we're going to allocate lots of scalars
4819          * this way, it's worth the hassle and risk.
4820          */
4821
4822         SAFEREAD(SvPVX(sv), len, sv);
4823         SvCUR_set(sv, len);                             /* Record C string length */
4824         *SvEND(sv) = '\0';                              /* Ensure it's null terminated anyway */
4825         (void) SvPOK_only(sv);                  /* Validate string pointer */
4826         if (cxt->s_tainted)                             /* Is input source tainted? */
4827                 SvTAINT(sv);                            /* External data cannot be trusted */
4828
4829         TRACEME(("large scalar len %"IVdf" '%s'", (IV) len, SvPVX(sv)));
4830         TRACEME(("ok (retrieve_lscalar at 0x%"UVxf")", PTR2UV(sv)));
4831
4832         return sv;
4833 }
4834
4835 /*
4836  * retrieve_scalar
4837  *
4838  * Retrieve defined short (string) scalar.
4839  *
4840  * Layout is SX_SCALAR <length> <data>, with SX_SCALAR already read.
4841  * The scalar is "short" so <length> is single byte. If it is 0, there
4842  * is no <data> section.
4843  */
4844 static SV *retrieve_scalar(pTHX_ stcxt_t *cxt, const char *cname)
4845 {
4846         int len;
4847         SV *sv;
4848
4849         GETMARK(len);
4850         TRACEME(("retrieve_scalar (#%d), len = %d", cxt->tagnum, len));
4851
4852         /*
4853          * Allocate an empty scalar of the suitable length.
4854          */
4855
4856         sv = NEWSV(10002, len);
4857         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4858
4859         /*
4860          * WARNING: duplicates parts of sv_setpv and breaks SV data encapsulation.
4861          */
4862
4863         if (len == 0) {
4864                 /*
4865                  * newSV did not upgrade to SVt_PV so the scalar is undefined.
4866                  * To make it defined with an empty length, upgrade it now...
4867                  * Don't upgrade to a PV if the original type contains more
4868                  * information than a scalar.
4869                  */
4870                 if (SvTYPE(sv) <= SVt_PV) {
4871                         sv_upgrade(sv, SVt_PV);
4872                 }
4873                 SvGROW(sv, 1);
4874                 *SvEND(sv) = '\0';                      /* Ensure it's null terminated anyway */
4875                 TRACEME(("ok (retrieve_scalar empty at 0x%"UVxf")", PTR2UV(sv)));
4876         } else {
4877                 /*
4878                  * Now, for efficiency reasons, read data directly inside the SV buffer,
4879                  * and perform the SV final settings directly by duplicating the final
4880                  * work done by sv_setpv. Since we're going to allocate lots of scalars
4881                  * this way, it's worth the hassle and risk.
4882                  */
4883                 SAFEREAD(SvPVX(sv), len, sv);
4884                 SvCUR_set(sv, len);                     /* Record C string length */
4885                 *SvEND(sv) = '\0';                      /* Ensure it's null terminated anyway */
4886                 TRACEME(("small scalar len %d '%s'", len, SvPVX(sv)));
4887         }
4888
4889         (void) SvPOK_only(sv);                  /* Validate string pointer */
4890         if (cxt->s_tainted)                             /* Is input source tainted? */
4891                 SvTAINT(sv);                            /* External data cannot be trusted */
4892
4893         TRACEME(("ok (retrieve_scalar at 0x%"UVxf")", PTR2UV(sv)));
4894         return sv;
4895 }
4896
4897 /*
4898  * retrieve_utf8str
4899  *
4900  * Like retrieve_scalar(), but tag result as utf8.
4901  * If we're retrieving UTF8 data in a non-UTF8 perl, croaks.
4902  */
4903 static SV *retrieve_utf8str(pTHX_ stcxt_t *cxt, const char *cname)
4904 {
4905     SV *sv;
4906
4907     TRACEME(("retrieve_utf8str"));
4908
4909     sv = retrieve_scalar(aTHX_ cxt, cname);
4910     if (sv) {
4911 #ifdef HAS_UTF8_SCALARS
4912         SvUTF8_on(sv);
4913 #else
4914         if (cxt->use_bytes < 0)
4915             cxt->use_bytes
4916                 = (SvTRUE(perl_get_sv("Storable::drop_utf8", GV_ADD))
4917                    ? 1 : 0);
4918         if (cxt->use_bytes == 0)
4919             UTF8_CROAK();
4920 #endif
4921     }
4922
4923     return sv;
4924 }
4925
4926 /*
4927  * retrieve_lutf8str
4928  *
4929  * Like retrieve_lscalar(), but tag result as utf8.
4930  * If we're retrieving UTF8 data in a non-UTF8 perl, croaks.
4931  */
4932 static SV *retrieve_lutf8str(pTHX_ stcxt_t *cxt, const char *cname)
4933 {
4934     SV *sv;
4935
4936     TRACEME(("retrieve_lutf8str"));
4937
4938     sv = retrieve_lscalar(aTHX_ cxt, cname);
4939     if (sv) {
4940 #ifdef HAS_UTF8_SCALARS
4941         SvUTF8_on(sv);
4942 #else
4943         if (cxt->use_bytes < 0)
4944             cxt->use_bytes
4945                 = (SvTRUE(perl_get_sv("Storable::drop_utf8", GV_ADD))
4946                    ? 1 : 0);
4947         if (cxt->use_bytes == 0)
4948             UTF8_CROAK();
4949 #endif
4950     }
4951     return sv;
4952 }
4953
4954 /*
4955  * retrieve_integer
4956  *
4957  * Retrieve defined integer.
4958  * Layout is SX_INTEGER <data>, whith SX_INTEGER already read.
4959  */
4960 static SV *retrieve_integer(pTHX_ stcxt_t *cxt, const char *cname)
4961 {
4962         SV *sv;
4963         IV iv;
4964
4965         TRACEME(("retrieve_integer (#%d)", cxt->tagnum));
4966
4967         READ(&iv, sizeof(iv));
4968         sv = newSViv(iv);
4969         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4970
4971         TRACEME(("integer %"IVdf, iv));
4972         TRACEME(("ok (retrieve_integer at 0x%"UVxf")", PTR2UV(sv)));
4973
4974         return sv;
4975 }
4976
4977 /*
4978  * retrieve_netint
4979  *
4980  * Retrieve defined integer in network order.
4981  * Layout is SX_NETINT <data>, whith SX_NETINT already read.
4982  */
4983 static SV *retrieve_netint(pTHX_ stcxt_t *cxt, const char *cname)
4984 {
4985         SV *sv;
4986         I32 iv;
4987
4988         TRACEME(("retrieve_netint (#%d)", cxt->tagnum));
4989
4990         READ_I32(iv);
4991 #ifdef HAS_NTOHL
4992         sv = newSViv((int) ntohl(iv));
4993         TRACEME(("network integer %d", (int) ntohl(iv)));
4994 #else
4995         sv = newSViv(iv);
4996         TRACEME(("network integer (as-is) %d", iv));
4997 #endif
4998         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
4999
5000         TRACEME(("ok (retrieve_netint at 0x%"UVxf")", PTR2UV(sv)));
5001
5002         return sv;
5003 }
5004
5005 /*
5006  * retrieve_double
5007  *
5008  * Retrieve defined double.
5009  * Layout is SX_DOUBLE <data>, whith SX_DOUBLE already read.
5010  */
5011 static SV *retrieve_double(pTHX_ stcxt_t *cxt, const char *cname)
5012 {
5013         SV *sv;
5014         NV nv;
5015
5016         TRACEME(("retrieve_double (#%d)", cxt->tagnum));
5017
5018         READ(&nv, sizeof(nv));
5019         sv = newSVnv(nv);
5020         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
5021
5022         TRACEME(("double %"NVff, nv));
5023         TRACEME(("ok (retrieve_double at 0x%"UVxf")", PTR2UV(sv)));
5024
5025         return sv;
5026 }
5027
5028 /*
5029  * retrieve_byte
5030  *
5031  * Retrieve defined byte (small integer within the [-128, +127] range).
5032  * Layout is SX_BYTE <data>, whith SX_BYTE already read.
5033  */
5034 static SV *retrieve_byte(pTHX_ stcxt_t *cxt, const char *cname)
5035 {
5036         SV *sv;
5037         int siv;
5038         signed char tmp;        /* Workaround for AIX cc bug --H.Merijn Brand */
5039
5040         TRACEME(("retrieve_byte (#%d)", cxt->tagnum));
5041
5042         GETMARK(siv);
5043         TRACEME(("small integer read as %d", (unsigned char) siv));
5044         tmp = (unsigned char) siv - 128;
5045         sv = newSViv(tmp);
5046         SEEN(sv, cname, 0);     /* Associate this new scalar with tag "tagnum" */
5047
5048         TRACEME(("byte %d", tmp));
5049         TRACEME(("ok (retrieve_byte at 0x%"UVxf")", PTR2UV(sv)));
5050
5051         return sv;
5052 }
5053
5054 /*
5055  * retrieve_undef
5056  *
5057  * Return the undefined value.
5058  */
5059 static SV *retrieve_undef(pTHX_ stcxt_t *cxt, const char *cname)
5060 {
5061         SV* sv;
5062
5063         TRACEME(("retrieve_undef"));
5064
5065         sv = newSV(0);
5066         SEEN(sv, cname, 0);
5067
5068         return sv;
5069 }
5070
5071 /*
5072  * retrieve_sv_undef
5073  *
5074  * Return the immortal undefined value.
5075  */
5076 static SV *retrieve_sv_undef(pTHX_ stcxt_t *cxt, const char *cname)
5077 {
5078         SV *sv = &PL_sv_undef;
5079
5080         TRACEME(("retrieve_sv_undef"));
5081
5082         /* Special case PL_sv_undef, as av_fetch uses it internally to mark
5083            deleted elements, and will return NULL (fetch failed) whenever it
5084            is fetched.  */
5085         if (cxt->where_is_undef == -1) {
5086                 cxt->where_is_undef = cxt->tagnum;
5087         }
5088         SEEN(sv, cname, 1);
5089         return sv;
5090 }
5091
5092 /*
5093  * retrieve_sv_yes
5094  *
5095  * Return the immortal yes value.
5096  */
5097 static SV *retrieve_sv_yes(pTHX_ stcxt_t *cxt, const char *cname)
5098 {
5099         SV *sv = &PL_sv_yes;
5100
5101         TRACEME(("retrieve_sv_yes"));
5102
5103         SEEN(sv, cname, 1);
5104         return sv;
5105 }
5106
5107 /*
5108  * retrieve_sv_no
5109  *
5110  * Return the immortal no value.
5111  */
5112 static SV *retrieve_sv_no(pTHX_ stcxt_t *cxt, const char *cname)
5113 {
5114         SV *sv = &PL_sv_no;
5115
5116         TRACEME(("retrieve_sv_no"));
5117
5118         SEEN(sv, cname, 1);
5119         return sv;
5120 }
5121
5122 /*
5123  * retrieve_array
5124  *
5125  * Retrieve a whole array.
5126  * Layout is SX_ARRAY <size> followed by each item, in increading index order.
5127  * Each item is stored as <object>.
5128  *
5129  * When we come here, SX_ARRAY has been read already.
5130  */
5131 static SV *retrieve_array(pTHX_ stcxt_t *cxt, const char *cname)
5132 {
5133         I32 len;
5134         I32 i;
5135         AV *av;
5136         SV *sv;
5137
5138         TRACEME(("retrieve_array (#%d)", cxt->tagnum));
5139
5140         /*
5141          * Read length, and allocate array, then pre-extend it.
5142          */
5143
5144         RLEN(len);
5145         TRACEME(("size = %d", len));
5146         av = newAV();
5147         SEEN(av, cname, 0);                     /* Will return if array not allocated nicely */
5148         if (len)
5149                 av_extend(av, len);
5150         else
5151                 return (SV *) av;               /* No data follow if array is empty */
5152
5153         /*
5154          * Now get each item in turn...
5155          */
5156
5157         for (i = 0; i < len; i++) {
5158                 TRACEME(("(#%d) item", i));
5159                 sv = retrieve(aTHX_ cxt, 0);                    /* Retrieve item */
5160                 if (!sv)
5161                         return (SV *) 0;
5162                 if (av_store(av, i, sv) == 0)
5163                         return (SV *) 0;
5164         }
5165
5166         TRACEME(("ok (retrieve_array at 0x%"UVxf")", PTR2UV(av)));
5167
5168         return (SV *) av;
5169 }
5170
5171 /*
5172  * retrieve_hash
5173  *
5174  * Retrieve a whole hash table.
5175  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
5176  * Keys are stored as <length> <data>, the <data> section being omitted
5177  * if length is 0.
5178  * Values are stored as <object>.
5179  *
5180  * When we come here, SX_HASH has been read already.
5181  */
5182 static SV *retrieve_hash(pTHX_ stcxt_t *cxt, const char *cname)
5183 {
5184         I32 len;
5185         I32 size;
5186         I32 i;
5187         HV *hv;
5188         SV *sv;
5189
5190         TRACEME(("retrieve_hash (#%d)", cxt->tagnum));
5191
5192         /*
5193          * Read length, allocate table.
5194          */
5195
5196         RLEN(len);
5197         TRACEME(("size = %d", len));
5198         hv = newHV();
5199         SEEN(hv, cname, 0);             /* Will return if table not allocated properly */
5200         if (len == 0)
5201                 return (SV *) hv;       /* No data follow if table empty */
5202         hv_ksplit(hv, len);             /* pre-extend hash to save multiple splits */
5203
5204         /*
5205          * Now get each key/value pair in turn...
5206          */
5207
5208         for (i = 0; i < len; i++) {
5209                 /*
5210                  * Get value first.
5211                  */
5212
5213                 TRACEME(("(#%d) value", i));
5214                 sv = retrieve(aTHX_ cxt, 0);
5215                 if (!sv)
5216                         return (SV *) 0;
5217
5218                 /*
5219                  * Get key.
5220                  * Since we're reading into kbuf, we must ensure we're not
5221                  * recursing between the read and the hv_store() where it's used.
5222                  * Hence the key comes after the value.
5223                  */
5224
5225                 RLEN(size);                                             /* Get key size */
5226                 KBUFCHK((STRLEN)size);                                  /* Grow hash key read pool if needed */
5227                 if (size)
5228                         READ(kbuf, size);
5229                 kbuf[size] = '\0';                              /* Mark string end, just in case */
5230                 TRACEME(("(#%d) key '%s'", i, kbuf));
5231
5232                 /*
5233                  * Enter key/value pair into hash table.
5234                  */
5235
5236                 if (hv_store(hv, kbuf, (U32) size, sv, 0) == 0)
5237                         return (SV *) 0;
5238         }
5239
5240         TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5241
5242         return (SV *) hv;
5243 }
5244
5245 /*
5246  * retrieve_hash
5247  *
5248  * Retrieve a whole hash table.
5249  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
5250  * Keys are stored as <length> <data>, the <data> section being omitted
5251  * if length is 0.
5252  * Values are stored as <object>.
5253  *
5254  * When we come here, SX_HASH has been read already.
5255  */
5256 static SV *retrieve_flag_hash(pTHX_ stcxt_t *cxt, const char *cname)
5257 {
5258     dVAR;
5259     I32 len;
5260     I32 size;
5261     I32 i;
5262     HV *hv;
5263     SV *sv;
5264     int hash_flags;
5265
5266     GETMARK(hash_flags);
5267     TRACEME(("retrieve_flag_hash (#%d)", cxt->tagnum));
5268     /*
5269      * Read length, allocate table.
5270      */
5271
5272 #ifndef HAS_RESTRICTED_HASHES
5273     if (hash_flags & SHV_RESTRICTED) {
5274         if (cxt->derestrict < 0)
5275             cxt->derestrict
5276                 = (SvTRUE(perl_get_sv("Storable::downgrade_restricted", GV_ADD))
5277                    ? 1 : 0);
5278         if (cxt->derestrict == 0)
5279             RESTRICTED_HASH_CROAK();
5280     }
5281 #endif
5282
5283     RLEN(len);
5284     TRACEME(("size = %d, flags = %d", len, hash_flags));
5285     hv = newHV();
5286     SEEN(hv, cname, 0);         /* Will return if table not allocated properly */
5287     if (len == 0)
5288         return (SV *) hv;       /* No data follow if table empty */
5289     hv_ksplit(hv, len);         /* pre-extend hash to save multiple splits */
5290
5291     /*
5292      * Now get each key/value pair in turn...
5293      */
5294
5295     for (i = 0; i < len; i++) {
5296         int flags;
5297         int store_flags = 0;
5298         /*
5299          * Get value first.
5300          */
5301
5302         TRACEME(("(#%d) value", i));
5303         sv = retrieve(aTHX_ cxt, 0);
5304         if (!sv)
5305             return (SV *) 0;
5306
5307         GETMARK(flags);
5308 #ifdef HAS_RESTRICTED_HASHES
5309         if ((hash_flags & SHV_RESTRICTED) && (flags & SHV_K_LOCKED))
5310             SvREADONLY_on(sv);
5311 #endif
5312
5313         if (flags & SHV_K_ISSV) {
5314             /* XXX you can't set a placeholder with an SV key.
5315                Then again, you can't get an SV key.
5316                Without messing around beyond what the API is supposed to do.
5317             */
5318             SV *keysv;
5319             TRACEME(("(#%d) keysv, flags=%d", i, flags));
5320             keysv = retrieve(aTHX_ cxt, 0);
5321             if (!keysv)
5322                 return (SV *) 0;
5323
5324             if (!hv_store_ent(hv, keysv, sv, 0))
5325                 return (SV *) 0;
5326         } else {
5327             /*
5328              * Get key.
5329              * Since we're reading into kbuf, we must ensure we're not
5330              * recursing between the read and the hv_store() where it's used.
5331              * Hence the key comes after the value.
5332              */
5333
5334             if (flags & SHV_K_PLACEHOLDER) {
5335                 SvREFCNT_dec (sv);
5336                 sv = &PL_sv_placeholder;
5337                 store_flags |= HVhek_PLACEHOLD;
5338             }
5339             if (flags & SHV_K_UTF8) {
5340 #ifdef HAS_UTF8_HASHES
5341                 store_flags |= HVhek_UTF8;
5342 #else
5343                 if (cxt->use_bytes < 0)
5344                     cxt->use_bytes
5345                         = (SvTRUE(perl_get_sv("Storable::drop_utf8", GV_ADD))
5346                            ? 1 : 0);
5347                 if (cxt->use_bytes == 0)
5348                     UTF8_CROAK();
5349 #endif
5350             }
5351 #ifdef HAS_UTF8_HASHES
5352             if (flags & SHV_K_WASUTF8)
5353                 store_flags |= HVhek_WASUTF8;
5354 #endif
5355
5356             RLEN(size);                                         /* Get key size */
5357             KBUFCHK((STRLEN)size);                              /* Grow hash key read pool if needed */
5358             if (size)
5359                 READ(kbuf, size);
5360             kbuf[size] = '\0';                          /* Mark string end, just in case */
5361             TRACEME(("(#%d) key '%s' flags %X store_flags %X", i, kbuf,
5362                      flags, store_flags));
5363
5364             /*
5365              * Enter key/value pair into hash table.
5366              */
5367
5368 #ifdef HAS_RESTRICTED_HASHES
5369             if (hv_store_flags(hv, kbuf, size, sv, 0, store_flags) == 0)
5370                 return (SV *) 0;
5371 #else
5372             if (!(store_flags & HVhek_PLACEHOLD))
5373                 if (hv_store(hv, kbuf, size, sv, 0) == 0)
5374                     return (SV *) 0;
5375 #endif
5376         }
5377     }
5378 #ifdef HAS_RESTRICTED_HASHES
5379     if (hash_flags & SHV_RESTRICTED)
5380         SvREADONLY_on(hv);
5381 #endif
5382
5383     TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5384
5385     return (SV *) hv;
5386 }
5387
5388 /*
5389  * retrieve_code
5390  *
5391  * Return a code reference.
5392  */
5393 static SV *retrieve_code(pTHX_ stcxt_t *cxt, const char *cname)
5394 {
5395 #if PERL_VERSION < 6
5396     CROAK(("retrieve_code does not work with perl 5.005 or less\n"));
5397 #else
5398         dSP;
5399         int type, count, tagnum;
5400         SV *cv;
5401         SV *sv, *text, *sub;
5402
5403         TRACEME(("retrieve_code (#%d)", cxt->tagnum));
5404
5405         /*
5406          *  Insert dummy SV in the aseen array so that we don't screw
5407          *  up the tag numbers.  We would just make the internal
5408          *  scalar an untagged item in the stream, but
5409          *  retrieve_scalar() calls SEEN().  So we just increase the
5410          *  tag number.
5411          */
5412         tagnum = cxt->tagnum;
5413         sv = newSViv(0);
5414         SEEN(sv, cname, 0);
5415
5416         /*
5417          * Retrieve the source of the code reference
5418          * as a small or large scalar
5419          */
5420
5421         GETMARK(type);
5422         switch (type) {
5423         case SX_SCALAR:
5424                 text = retrieve_scalar(aTHX_ cxt, cname);
5425                 break;
5426         case SX_LSCALAR:
5427                 text = retrieve_lscalar(aTHX_ cxt, cname);
5428                 break;
5429         default:
5430                 CROAK(("Unexpected type %d in retrieve_code\n", type));
5431         }
5432
5433         /*
5434          * prepend "sub " to the source
5435          */
5436
5437         sub = newSVpvn("sub ", 4);
5438         sv_catpv(sub, SvPV_nolen(text)); /* XXX no sv_catsv! */
5439         SvREFCNT_dec(text);
5440
5441         /*
5442          * evaluate the source to a code reference and use the CV value
5443          */
5444
5445         if (cxt->eval == NULL) {
5446                 cxt->eval = perl_get_sv("Storable::Eval", GV_ADD);
5447                 SvREFCNT_inc(cxt->eval);
5448         }
5449         if (!SvTRUE(cxt->eval)) {
5450                 if (
5451                         cxt->forgive_me == 0 ||
5452                         (cxt->forgive_me < 0 && !(cxt->forgive_me =
5453                                 SvTRUE(perl_get_sv("Storable::forgive_me", GV_ADD)) ? 1 : 0))
5454                 ) {
5455                         CROAK(("Can't eval, please set $Storable::Eval to a true value"));
5456                 } else {
5457                         sv = newSVsv(sub);
5458                         /* fix up the dummy entry... */
5459                         av_store(cxt->aseen, tagnum, SvREFCNT_inc(sv));
5460                         return sv;
5461                 }
5462         }
5463
5464         ENTER;
5465         SAVETMPS;
5466
5467         if (SvROK(cxt->eval) && SvTYPE(SvRV(cxt->eval)) == SVt_PVCV) {
5468                 SV* errsv = get_sv("@", GV_ADD);
5469                 sv_setpvn(errsv, "", 0);        /* clear $@ */
5470                 PUSHMARK(sp);
5471                 XPUSHs(sv_2mortal(newSVsv(sub)));
5472                 PUTBACK;
5473                 count = call_sv(cxt->eval, G_SCALAR);
5474                 SPAGAIN;
5475                 if (count != 1)
5476                         CROAK(("Unexpected return value from $Storable::Eval callback\n"));
5477                 cv = POPs;
5478                 if (SvTRUE(errsv)) {
5479                         CROAK(("code %s caused an error: %s",
5480                                 SvPV_nolen(sub), SvPV_nolen(errsv)));
5481                 }
5482                 PUTBACK;
5483         } else {
5484                 cv = eval_pv(SvPV_nolen(sub), TRUE);
5485         }
5486         if (cv && SvROK(cv) && SvTYPE(SvRV(cv)) == SVt_PVCV) {
5487             sv = SvRV(cv);
5488         } else {
5489             CROAK(("code %s did not evaluate to a subroutine reference\n", SvPV_nolen(sub)));
5490         }
5491
5492         SvREFCNT_inc(sv); /* XXX seems to be necessary */
5493         SvREFCNT_dec(sub);
5494
5495         FREETMPS;
5496         LEAVE;
5497         /* fix up the dummy entry... */
5498         av_store(cxt->aseen, tagnum, SvREFCNT_inc(sv));
5499
5500         return sv;
5501 #endif
5502 }
5503
5504 /*
5505  * old_retrieve_array
5506  *
5507  * Retrieve a whole array in pre-0.6 binary format.
5508  *
5509  * Layout is SX_ARRAY <size> followed by each item, in increading index order.
5510  * Each item is stored as SX_ITEM <object> or SX_IT_UNDEF for "holes".
5511  *
5512  * When we come here, SX_ARRAY has been read already.
5513  */
5514 static SV *old_retrieve_array(pTHX_ stcxt_t *cxt, const char *cname)
5515 {
5516         I32 len;
5517         I32 i;
5518         AV *av;
5519         SV *sv;
5520         int c;
5521
5522         TRACEME(("old_retrieve_array (#%d)", cxt->tagnum));
5523
5524         /*
5525          * Read length, and allocate array, then pre-extend it.
5526          */
5527
5528         RLEN(len);
5529         TRACEME(("size = %d", len));
5530         av = newAV();
5531         SEEN(av, 0, 0);                         /* Will return if array not allocated nicely */
5532         if (len)
5533                 av_extend(av, len);
5534         else
5535                 return (SV *) av;               /* No data follow if array is empty */
5536
5537         /*
5538          * Now get each item in turn...
5539          */
5540
5541         for (i = 0; i < len; i++) {
5542                 GETMARK(c);
5543                 if (c == SX_IT_UNDEF) {
5544                         TRACEME(("(#%d) undef item", i));
5545                         continue;                       /* av_extend() already filled us with undef */
5546                 }
5547                 if (c != SX_ITEM)
5548                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5549                 TRACEME(("(#%d) item", i));
5550                 sv = retrieve(aTHX_ cxt, 0);                                            /* Retrieve item */
5551                 if (!sv)
5552                         return (SV *) 0;
5553                 if (av_store(av, i, sv) == 0)
5554                         return (SV *) 0;
5555         }
5556
5557         TRACEME(("ok (old_retrieve_array at 0x%"UVxf")", PTR2UV(av)));
5558
5559         return (SV *) av;
5560 }
5561
5562 /*
5563  * old_retrieve_hash
5564  *
5565  * Retrieve a whole hash table in pre-0.6 binary format.
5566  *
5567  * Layout is SX_HASH <size> followed by each key/value pair, in random order.
5568  * Keys are stored as SX_KEY <length> <data>, the <data> section being omitted
5569  * if length is 0.
5570  * Values are stored as SX_VALUE <object> or SX_VL_UNDEF for "holes".
5571  *
5572  * When we come here, SX_HASH has been read already.
5573  */
5574 static SV *old_retrieve_hash(pTHX_ stcxt_t *cxt, const char *cname)
5575 {
5576         I32 len;
5577         I32 size;
5578         I32 i;
5579         HV *hv;
5580         SV *sv = (SV *) 0;
5581         int c;
5582         SV *sv_h_undef = (SV *) 0;              /* hv_store() bug */
5583
5584         TRACEME(("old_retrieve_hash (#%d)", cxt->tagnum));
5585
5586         /*
5587          * Read length, allocate table.
5588          */
5589
5590         RLEN(len);
5591         TRACEME(("size = %d", len));
5592         hv = newHV();
5593         SEEN(hv, 0, 0);                 /* Will return if table not allocated properly */
5594         if (len == 0)
5595                 return (SV *) hv;       /* No data follow if table empty */
5596         hv_ksplit(hv, len);             /* pre-extend hash to save multiple splits */
5597
5598         /*
5599          * Now get each key/value pair in turn...
5600          */
5601
5602         for (i = 0; i < len; i++) {
5603                 /*
5604                  * Get value first.
5605                  */
5606
5607                 GETMARK(c);
5608                 if (c == SX_VL_UNDEF) {
5609                         TRACEME(("(#%d) undef value", i));
5610                         /*
5611                          * Due to a bug in hv_store(), it's not possible to pass
5612                          * &PL_sv_undef to hv_store() as a value, otherwise the
5613                          * associated key will not be creatable any more. -- RAM, 14/01/97
5614                          */
5615                         if (!sv_h_undef)
5616                                 sv_h_undef = newSVsv(&PL_sv_undef);
5617                         sv = SvREFCNT_inc(sv_h_undef);
5618                 } else if (c == SX_VALUE) {
5619                         TRACEME(("(#%d) value", i));
5620                         sv = retrieve(aTHX_ cxt, 0);
5621                         if (!sv)
5622                                 return (SV *) 0;
5623                 } else
5624                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5625
5626                 /*
5627                  * Get key.
5628                  * Since we're reading into kbuf, we must ensure we're not
5629                  * recursing between the read and the hv_store() where it's used.
5630                  * Hence the key comes after the value.
5631                  */
5632
5633                 GETMARK(c);
5634                 if (c != SX_KEY)
5635                         (void) retrieve_other(aTHX_ (stcxt_t *) 0, 0);  /* Will croak out */
5636                 RLEN(size);                                             /* Get key size */
5637                 KBUFCHK((STRLEN)size);                                  /* Grow hash key read pool if needed */
5638                 if (size)
5639                         READ(kbuf, size);
5640                 kbuf[size] = '\0';                              /* Mark string end, just in case */
5641                 TRACEME(("(#%d) key '%s'", i, kbuf));
5642
5643                 /*
5644                  * Enter key/value pair into hash table.
5645                  */
5646
5647                 if (hv_store(hv, kbuf, (U32) size, sv, 0) == 0)
5648                         return (SV *) 0;
5649         }
5650
5651         TRACEME(("ok (retrieve_hash at 0x%"UVxf")", PTR2UV(hv)));
5652
5653         return (SV *) hv;
5654 }
5655
5656 /***
5657  *** Retrieval engine.
5658  ***/
5659
5660 /*
5661  * magic_check
5662  *
5663  * Make sure the stored data we're trying to retrieve has been produced
5664  * on an ILP compatible system with the same byteorder. It croaks out in
5665  * case an error is detected. [ILP = integer-long-pointer sizes]
5666  * Returns null if error is detected, &PL_sv_undef otherwise.
5667  *
5668  * Note that there's no byte ordering info emitted when network order was
5669  * used at store time.
5670  */
5671 static SV *magic_check(pTHX_ stcxt_t *cxt)
5672 {
5673     /* The worst case for a malicious header would be old magic (which is
5674        longer), major, minor, byteorder length byte of 255, 255 bytes of
5675        garbage, sizeof int, long, pointer, NV.
5676        So the worse of that we can read is 255 bytes of garbage plus 4.
5677        Err, I am assuming 8 bit bytes here. Please file a bug report if you're
5678        compiling perl on a system with chars that are larger than 8 bits.
5679        (Even Crays aren't *that* perverse).
5680     */
5681     unsigned char buf[4 + 255];
5682     unsigned char *current;
5683     int c;
5684     int length;
5685     int use_network_order;
5686     int use_NV_size;
5687     int old_magic = 0;
5688     int version_major;
5689     int version_minor = 0;
5690
5691     TRACEME(("magic_check"));
5692
5693     /*
5694      * The "magic number" is only for files, not when freezing in memory.
5695      */
5696
5697     if (cxt->fio) {
5698         /* This includes the '\0' at the end.  I want to read the extra byte,
5699            which is usually going to be the major version number.  */
5700         STRLEN len = sizeof(magicstr);
5701         STRLEN old_len;
5702
5703         READ(buf, (SSize_t)(len));      /* Not null-terminated */
5704
5705         /* Point at the byte after the byte we read.  */
5706         current = buf + --len;  /* Do the -- outside of macros.  */
5707
5708         if (memNE(buf, magicstr, len)) {
5709             /*
5710              * Try to read more bytes to check for the old magic number, which
5711              * was longer.
5712              */
5713
5714             TRACEME(("trying for old magic number"));
5715
5716             old_len = sizeof(old_magicstr) - 1;
5717             READ(current + 1, (SSize_t)(old_len - len));
5718             
5719             if (memNE(buf, old_magicstr, old_len))
5720                 CROAK(("File is not a perl storable"));
5721             old_magic++;
5722             current = buf + old_len;
5723         }
5724         use_network_order = *current;
5725     } else
5726         GETMARK(use_network_order);
5727         
5728     /*
5729      * Starting with 0.6, the "use_network_order" byte flag is also used to
5730      * indicate the version number of the binary, and therefore governs the
5731      * setting of sv_retrieve_vtbl. See magic_write().
5732      */
5733     if (old_magic && use_network_order > 1) {
5734         /*  0.1 dump - use_network_order is really byte order length */
5735         version_major = -1;
5736     }
5737     else {
5738         version_major = use_network_order >> 1;
5739     }
5740     cxt->retrieve_vtbl = (SV*(**)(pTHX_ stcxt_t *cxt, const char *cname)) (version_major > 0 ? sv_retrieve : sv_old_retrieve);
5741
5742     TRACEME(("magic_check: netorder = 0x%x", use_network_order));
5743
5744
5745     /*
5746      * Starting with 0.7 (binary major 2), a full byte is dedicated to the
5747      * minor version of the protocol.  See magic_write().
5748      */
5749
5750     if (version_major > 1)
5751         GETMARK(version_minor);
5752
5753     cxt->ver_major = version_major;
5754     cxt->ver_minor = version_minor;
5755
5756     TRACEME(("binary image version is %d.%d", version_major, version_minor));
5757
5758     /*
5759      * Inter-operability sanity check: we can't retrieve something stored
5760      * using a format more recent than ours, because we have no way to
5761      * know what has changed, and letting retrieval go would mean a probable
5762      * failure reporting a "corrupted" storable file.
5763      */
5764
5765     if (
5766         version_major > STORABLE_BIN_MAJOR ||
5767         (version_major == STORABLE_BIN_MAJOR &&
5768          version_minor > STORABLE_BIN_MINOR)
5769         ) {
5770         int croak_now = 1;
5771         TRACEME(("but I am version is %d.%d", STORABLE_BIN_MAJOR,
5772                  STORABLE_BIN_MINOR));
5773
5774         if (version_major == STORABLE_BIN_MAJOR) {
5775             TRACEME(("cxt->accept_future_minor is %d",
5776                      cxt->accept_future_minor));
5777             if (cxt->accept_future_minor < 0)
5778                 cxt->accept_future_minor
5779                     = (SvTRUE(perl_get_sv("Storable::accept_future_minor",
5780                                           GV_ADD))
5781                        ? 1 : 0);
5782             if (cxt->accept_future_minor == 1)
5783                 croak_now = 0;  /* Don't croak yet.  */
5784         }
5785         if (croak_now) {
5786             CROAK(("Storable binary image v%d.%d more recent than I am (v%d.%d)",
5787                    version_major, version_minor,
5788                    STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR));
5789         }
5790     }
5791
5792     /*
5793      * If they stored using network order, there's no byte ordering
5794      * information to check.
5795      */
5796
5797     if ((cxt->netorder = (use_network_order & 0x1)))    /* Extra () for -Wall */
5798         return &PL_sv_undef;                    /* No byte ordering info */
5799
5800     /* In C truth is 1, falsehood is 0. Very convienient.  */
5801     use_NV_size = version_major >= 2 && version_minor >= 2;
5802
5803     if (version_major >= 0) {
5804         GETMARK(c);
5805     }
5806     else {
5807         c = use_network_order;
5808     }
5809     length = c + 3 + use_NV_size;
5810     READ(buf, length);  /* Not null-terminated */
5811
5812     TRACEME(("byte order '%.*s' %d", c, buf, c));
5813
5814 #ifdef USE_56_INTERWORK_KLUDGE
5815     /* No point in caching this in the context as we only need it once per
5816        retrieve, and we need to recheck it each read.  */
5817     if (SvTRUE(perl_get_sv("Storable::interwork_56_64bit", GV_ADD))) {
5818         if ((c != (sizeof (byteorderstr_56) - 1))
5819             || memNE(buf, byteorderstr_56, c))
5820             CROAK(("Byte order is not compatible"));
5821     } else
5822 #endif
5823     {
5824         if ((c != (sizeof (byteorderstr) - 1)) || memNE(buf, byteorderstr, c))
5825             CROAK(("Byte order is not compatible"));
5826     }
5827
5828     current = buf + c;
5829     
5830     /* sizeof(int) */
5831     if ((int) *current++ != sizeof(int))
5832         CROAK(("Integer size is not compatible"));
5833
5834     /* sizeof(long) */
5835     if ((int) *current++ != sizeof(long))
5836         CROAK(("Long integer size is not compatible"));
5837
5838     /* sizeof(char *) */
5839     if ((int) *current != sizeof(char *))
5840         CROAK(("Pointer size is not compatible"));
5841
5842     if (use_NV_size) {
5843         /* sizeof(NV) */
5844         if ((int) *++current != sizeof(NV))
5845             CROAK(("Double size is not compatible"));
5846     }
5847
5848     return &PL_sv_undef;        /* OK */
5849 }
5850
5851 /*
5852  * retrieve
5853  *
5854  * Recursively retrieve objects from the specified file and return their
5855  * root SV (which may be an AV or an HV for what we care).
5856  * Returns null if there is a problem.
5857  */
5858 static SV *retrieve(pTHX_ stcxt_t *cxt, const char *cname)
5859 {
5860         int type;
5861         SV **svh;
5862         SV *sv;
5863
5864         TRACEME(("retrieve"));
5865
5866         /*
5867          * Grab address tag which identifies the object if we are retrieving
5868          * an older format. Since the new binary format counts objects and no
5869          * longer explicitely tags them, we must keep track of the correspondance
5870          * ourselves.
5871          *
5872          * The following section will disappear one day when the old format is
5873          * no longer supported, hence the final "goto" in the "if" block.
5874          */
5875
5876         if (cxt->hseen) {                                               /* Retrieving old binary */
5877                 stag_t tag;
5878                 if (cxt->netorder) {
5879                         I32 nettag;
5880                         READ(&nettag, sizeof(I32));             /* Ordered sequence of I32 */
5881                         tag = (stag_t) nettag;
5882                 } else
5883                         READ(&tag, sizeof(stag_t));             /* Original address of the SV */
5884
5885                 GETMARK(type);
5886                 if (type == SX_OBJECT) {
5887                         I32 tagn;
5888                         svh = hv_fetch(cxt->hseen, (char *) &tag, sizeof(tag), FALSE);
5889                         if (!svh)
5890                                 CROAK(("Old tag 0x%"UVxf" should have been mapped already",
5891                                         (UV) tag));
5892                         tagn = SvIV(*svh);      /* Mapped tag number computed earlier below */
5893
5894                         /*
5895                          * The following code is common with the SX_OBJECT case below.
5896                          */
5897
5898                         svh = av_fetch(cxt->aseen, tagn, FALSE);
5899                         if (!svh)
5900                                 CROAK(("Object #%"IVdf" should have been retrieved already",
5901                                         (IV) tagn));
5902                         sv = *svh;
5903                         TRACEME(("has retrieved #%d at 0x%"UVxf, tagn, PTR2UV(sv)));
5904                         SvREFCNT_inc(sv);       /* One more reference to this same sv */
5905                         return sv;                      /* The SV pointer where object was retrieved */
5906                 }
5907
5908                 /*
5909                  * Map new object, but don't increase tagnum. This will be done
5910                  * by each of the retrieve_* functions when they call SEEN().
5911                  *
5912                  * The mapping associates the "tag" initially present with a unique
5913                  * tag number. See test for SX_OBJECT above to see how this is perused.
5914                  */
5915
5916                 if (!hv_store(cxt->hseen, (char *) &tag, sizeof(tag),
5917                                 newSViv(cxt->tagnum), 0))
5918                         return (SV *) 0;
5919
5920                 goto first_time;
5921         }
5922
5923         /*
5924          * Regular post-0.6 binary format.
5925          */
5926
5927         GETMARK(type);
5928
5929         TRACEME(("retrieve type = %d", type));
5930
5931         /*
5932          * Are we dealing with an object we should have already retrieved?
5933          */
5934
5935         if (type == SX_OBJECT) {
5936                 I32 tag;
5937                 READ_I32(tag);
5938                 tag = ntohl(tag);
5939                 svh = av_fetch(cxt->aseen, tag, FALSE);
5940                 if (!svh)
5941                         CROAK(("Object #%"IVdf" should have been retrieved already",
5942                                 (IV) tag));
5943                 sv = *svh;
5944                 TRACEME(("had retrieved #%d at 0x%"UVxf, tag, PTR2UV(sv)));
5945                 SvREFCNT_inc(sv);       /* One more reference to this same sv */
5946                 return sv;                      /* The SV pointer where object was retrieved */
5947         } else if (type >= SX_ERROR && cxt->ver_minor > STORABLE_BIN_MINOR) {
5948             if (cxt->accept_future_minor < 0)
5949                 cxt->accept_future_minor
5950                     = (SvTRUE(perl_get_sv("Storable::accept_future_minor",
5951                                           GV_ADD))
5952                        ? 1 : 0);
5953             if (cxt->accept_future_minor == 1) {
5954                 CROAK(("Storable binary image v%d.%d contains data of type %d. "
5955                        "This Storable is v%d.%d and can only handle data types up to %d",
5956                        cxt->ver_major, cxt->ver_minor, type,
5957                        STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR, SX_ERROR - 1));
5958             }
5959         }
5960
5961 first_time:             /* Will disappear when support for old format is dropped */
5962
5963         /*
5964          * Okay, first time through for this one.
5965          */
5966
5967         sv = RETRIEVE(cxt, type)(aTHX_ cxt, cname);
5968         if (!sv)
5969                 return (SV *) 0;                        /* Failed */
5970
5971         /*
5972          * Old binary formats (pre-0.7).
5973          *
5974          * Final notifications, ended by SX_STORED may now follow.
5975          * Currently, the only pertinent notification to apply on the
5976          * freshly retrieved object is either:
5977          *    SX_CLASS <char-len> <classname> for short classnames.
5978          *    SX_LG_CLASS <int-len> <classname> for larger one (rare!).
5979          * Class name is then read into the key buffer pool used by
5980          * hash table key retrieval.
5981          */
5982
5983         if (cxt->ver_major < 2) {
5984                 while ((type = GETCHAR()) != SX_STORED) {
5985                         I32 len;
5986                         switch (type) {
5987                         case SX_CLASS:
5988                                 GETMARK(len);                   /* Length coded on a single char */
5989                                 break;
5990                         case SX_LG_CLASS:                       /* Length coded on a regular integer */
5991                                 RLEN(len);
5992                                 break;
5993                         case EOF:
5994                         default:
5995                                 return (SV *) 0;                /* Failed */
5996                         }
5997                         KBUFCHK((STRLEN)len);                   /* Grow buffer as necessary */
5998                         if (len)
5999                                 READ(kbuf, len);
6000                         kbuf[len] = '\0';                       /* Mark string end */
6001                         BLESS(sv, kbuf);
6002                 }
6003         }
6004
6005         TRACEME(("ok (retrieved 0x%"UVxf", refcnt=%d, %s)", PTR2UV(sv),
6006                 SvREFCNT(sv) - 1, sv_reftype(sv, FALSE)));
6007
6008         return sv;      /* Ok */
6009 }
6010
6011 /*
6012  * do_retrieve
6013  *
6014  * Retrieve data held in file and return the root object.
6015  * Common routine for pretrieve and mretrieve.
6016  */
6017 static SV *do_retrieve(
6018         pTHX_
6019         PerlIO *f,
6020         SV *in,
6021         int optype)
6022 {
6023         dSTCXT;
6024         SV *sv;
6025         int is_tainted;                         /* Is input source tainted? */
6026         int pre_06_fmt = 0;                     /* True with pre Storable 0.6 formats */
6027
6028         TRACEME(("do_retrieve (optype = 0x%x)", optype));
6029
6030         optype |= ST_RETRIEVE;
6031
6032         /*
6033          * Sanity assertions for retrieve dispatch tables.
6034          */
6035
6036         ASSERT(sizeof(sv_old_retrieve) == sizeof(sv_retrieve),
6037                 ("old and new retrieve dispatch table have same size"));
6038         ASSERT(sv_old_retrieve[SX_ERROR] == retrieve_other,
6039                 ("SX_ERROR entry correctly initialized in old dispatch table"));
6040         ASSERT(sv_retrieve[SX_ERROR] == retrieve_other,
6041                 ("SX_ERROR entry correctly initialized in new dispatch table"));
6042
6043         /*
6044          * Workaround for CROAK leak: if they enter with a "dirty" context,
6045          * free up memory for them now.
6046          */
6047
6048         if (cxt->s_dirty)
6049                 clean_context(aTHX_ cxt);
6050
6051         /*
6052          * Now that STORABLE_xxx hooks exist, it is possible that they try to
6053          * re-enter retrieve() via the hooks.
6054          */
6055
6056         if (cxt->entry)
6057                 cxt = allocate_context(aTHX_ cxt);
6058
6059         cxt->entry++;
6060
6061         ASSERT(cxt->entry == 1, ("starting new recursion"));
6062         ASSERT(!cxt->s_dirty, ("clean context"));
6063
6064         /*
6065          * Prepare context.
6066          *
6067          * Data is loaded into the memory buffer when f is NULL, unless `in' is
6068          * also NULL, in which case we're expecting the data to already lie
6069          * in the buffer (dclone case).
6070          */
6071
6072         KBUFINIT();                                     /* Allocate hash key reading pool once */
6073
6074         if (!f && in) {
6075 #ifdef SvUTF8_on
6076                 if (SvUTF8(in)) {
6077                         STRLEN length;
6078                         const char *orig = SvPV(in, length);
6079                         char *asbytes;
6080                         /* This is quite deliberate. I want the UTF8 routines
6081                            to encounter the '\0' which perl adds at the end
6082                            of all scalars, so that any new string also has
6083                            this.
6084                         */
6085                         STRLEN klen_tmp = length + 1;
6086                         bool is_utf8 = TRUE;
6087
6088                         /* Just casting the &klen to (STRLEN) won't work
6089                            well if STRLEN and I32 are of different widths.
6090                            --jhi */
6091                         asbytes = (char*)bytes_from_utf8((U8*)orig,
6092                                                          &klen_tmp,
6093                                                          &is_utf8);
6094                         if (is_utf8) {
6095                                 CROAK(("Frozen string corrupt - contains characters outside 0-255"));
6096                         }
6097                         if (asbytes != orig) {
6098                                 /* String has been converted.
6099                                    There is no need to keep any reference to
6100                                    the old string.  */
6101                                 in = sv_newmortal();
6102                                 /* We donate the SV the malloc()ed string
6103                                    bytes_from_utf8 returned us.  */
6104                                 SvUPGRADE(in, SVt_PV);
6105                                 SvPOK_on(in);
6106                                 SvPV_set(in, asbytes);
6107                                 SvLEN_set(in, klen_tmp);
6108                                 SvCUR_set(in, klen_tmp - 1);
6109                         }
6110                 }
6111 #endif
6112                 MBUF_SAVE_AND_LOAD(in);
6113         }
6114
6115         /*
6116          * Magic number verifications.
6117          *
6118          * This needs to be done before calling init_retrieve_context()
6119          * since the format indication in the file are necessary to conduct
6120          * some of the initializations.
6121          */
6122
6123         cxt->fio = f;                           /* Where I/O are performed */
6124
6125         if (!magic_check(aTHX_ cxt))
6126                 CROAK(("Magic number checking on storable %s failed",
6127                         cxt->fio ? "file" : "string"));
6128
6129         TRACEME(("data stored in %s format",
6130                 cxt->netorder ? "net order" : "native"));
6131
6132         /*
6133          * Check whether input source is tainted, so that we don't wrongly
6134          * taint perfectly good values...
6135          *
6136          * We assume file input is always tainted.  If both `f' and `in' are
6137          * NULL, then we come from dclone, and tainted is already filled in
6138          * the context.  That's a kludge, but the whole dclone() thing is
6139          * already quite a kludge anyway! -- RAM, 15/09/2000.
6140          */
6141
6142         is_tainted = f ? 1 : (in ? SvTAINTED(in) : cxt->s_tainted);
6143         TRACEME(("input source is %s", is_tainted ? "tainted" : "trusted"));
6144         init_retrieve_context(aTHX_ cxt, optype, is_tainted);
6145
6146         ASSERT(is_retrieving(aTHX), ("within retrieve operation"));
6147
6148         sv = retrieve(aTHX_ cxt, 0);            /* Recursively retrieve object, get root SV */
6149
6150         /*
6151          * Final cleanup.
6152          */
6153
6154         if (!f && in)
6155                 MBUF_RESTORE();
6156
6157         pre_06_fmt = cxt->hseen != NULL;        /* Before we clean context */
6158
6159         /*
6160          * The "root" context is never freed.
6161          */
6162
6163         clean_retrieve_context(aTHX_ cxt);
6164         if (cxt->prev)                          /* This context was stacked */
6165                 free_context(aTHX_ cxt);                /* It was not the "root" context */
6166
6167         /*
6168          * Prepare returned value.
6169          */
6170
6171         if (!sv) {
6172                 TRACEME(("retrieve ERROR"));
6173 #if (PATCHLEVEL <= 4) 
6174                 /* perl 5.00405 seems to screw up at this point with an
6175                    'attempt to modify a read only value' error reported in the
6176                    eval { $self = pretrieve(*FILE) } in _retrieve.
6177                    I can't see what the cause of this error is, but I suspect a
6178                    bug in 5.004, as it seems to be capable of issuing spurious
6179                    errors or core dumping with matches on $@. I'm not going to
6180                    spend time on what could be a fruitless search for the cause,
6181                    so here's a bodge. If you're running 5.004 and don't like
6182                    this inefficiency, either upgrade to a newer perl, or you are
6183                    welcome to find the problem and send in a patch.
6184                  */
6185                 return newSV(0);
6186 #else
6187                 return &PL_sv_undef;            /* Something went wrong, return undef */
6188 #endif
6189         }
6190
6191         TRACEME(("retrieve got %s(0x%"UVxf")",
6192                 sv_reftype(sv, FALSE), PTR2UV(sv)));
6193
6194         /*
6195          * Backward compatibility with Storable-0.5@9 (which we know we
6196          * are retrieving if hseen is non-null): don't create an extra RV
6197          * for objects since we special-cased it at store time.
6198          *
6199          * Build a reference to the SV returned by pretrieve even if it is
6200          * already one and not a scalar, for consistency reasons.
6201          */
6202
6203         if (pre_06_fmt) {                       /* Was not handling overloading by then */
6204                 SV *rv;
6205                 TRACEME(("fixing for old formats -- pre 0.6"));
6206                 if (sv_type(aTHX_ sv) == svis_REF && (rv = SvRV(sv)) && SvOBJECT(rv)) {
6207                         TRACEME(("ended do_retrieve() with an object -- pre 0.6"));
6208                         return sv;
6209                 }
6210         }
6211
6212         /*
6213          * If reference is overloaded, restore behaviour.
6214          *
6215          * NB: minor glitch here: normally, overloaded refs are stored specially
6216          * so that we can croak when behaviour cannot be re-installed, and also
6217          * avoid testing for overloading magic at each reference retrieval.
6218          *
6219          * Unfortunately, the root reference is implicitely stored, so we must
6220          * check for possible overloading now.  Furthermore, if we don't restore
6221          * overloading, we cannot croak as if the original ref was, because we
6222          * have no way to determine whether it was an overloaded ref or not in
6223          * the first place.
6224          *
6225          * It's a pity that overloading magic is attached to the rv, and not to
6226          * the underlying sv as blessing is.
6227          */
6228
6229         if (SvOBJECT(sv)) {
6230                 HV *stash = (HV *) SvSTASH(sv);
6231                 SV *rv = newRV_noinc(sv);
6232                 if (stash && Gv_AMG(stash)) {
6233                         SvAMAGIC_on(rv);
6234                         TRACEME(("restored overloading on root reference"));
6235                 }
6236                 TRACEME(("ended do_retrieve() with an object"));
6237                 return rv;
6238         }
6239
6240         TRACEME(("regular do_retrieve() end"));
6241
6242         return newRV_noinc(sv);
6243 }
6244
6245 /*
6246  * pretrieve
6247  *
6248  * Retrieve data held in file and return the root object, undef on error.
6249  */
6250 static SV *pretrieve(pTHX_ PerlIO *f)
6251 {
6252         TRACEME(("pretrieve"));
6253         return do_retrieve(aTHX_ f, Nullsv, 0);
6254 }
6255
6256 /*
6257  * mretrieve
6258  *
6259  * Retrieve data held in scalar and return the root object, undef on error.
6260  */
6261 static SV *mretrieve(pTHX_ SV *sv)
6262 {
6263         TRACEME(("mretrieve"));
6264         return do_retrieve(aTHX_ (PerlIO*) 0, sv, 0);
6265 }
6266
6267 /***
6268  *** Deep cloning
6269  ***/
6270
6271 /*
6272  * dclone
6273  *
6274  * Deep clone: returns a fresh copy of the original referenced SV tree.
6275  *
6276  * This is achieved by storing the object in memory and restoring from
6277  * there. Not that efficient, but it should be faster than doing it from
6278  * pure perl anyway.
6279  */
6280 static SV *dclone(pTHX_ SV *sv)
6281 {
6282         dSTCXT;
6283         int size;
6284         stcxt_t *real_context;
6285         SV *out;
6286
6287         TRACEME(("dclone"));
6288
6289         /*
6290          * Workaround for CROAK leak: if they enter with a "dirty" context,
6291          * free up memory for them now.
6292          */
6293
6294         if (cxt->s_dirty)
6295                 clean_context(aTHX_ cxt);
6296
6297         /*
6298          * Tied elements seem to need special handling.
6299          */
6300
6301         if ((SvTYPE(sv) == SVt_PVLV
6302 #if PERL_VERSION < 8
6303              || SvTYPE(sv) == SVt_PVMG
6304 #endif
6305              ) && SvRMAGICAL(sv) && mg_find(sv, 'p')) {
6306                 mg_get(sv);
6307         }
6308
6309         /*
6310          * do_store() optimizes for dclone by not freeing its context, should
6311          * we need to allocate one because we're deep cloning from a hook.
6312          */
6313
6314         if (!do_store(aTHX_ (PerlIO*) 0, sv, ST_CLONE, FALSE, (SV**) 0))
6315                 return &PL_sv_undef;                            /* Error during store */
6316
6317         /*
6318          * Because of the above optimization, we have to refresh the context,
6319          * since a new one could have been allocated and stacked by do_store().
6320          */
6321
6322         { dSTCXT; real_context = cxt; }         /* Sub-block needed for macro */
6323         cxt = real_context;                                     /* And we need this temporary... */
6324
6325         /*
6326          * Now, `cxt' may refer to a new context.
6327          */
6328
6329         ASSERT(!cxt->s_dirty, ("clean context"));
6330         ASSERT(!cxt->entry, ("entry will not cause new context allocation"));
6331
6332         size = MBUF_SIZE();
6333         TRACEME(("dclone stored %d bytes", size));
6334         MBUF_INIT(size);
6335
6336         /*
6337          * Since we're passing do_retrieve() both a NULL file and sv, we need
6338          * to pre-compute the taintedness of the input by setting cxt->tainted
6339          * to whatever state our own input string was.  -- RAM, 15/09/2000
6340          *
6341          * do_retrieve() will free non-root context.
6342          */
6343
6344         cxt->s_tainted = SvTAINTED(sv);
6345         out = do_retrieve(aTHX_ (PerlIO*) 0, Nullsv, ST_CLONE);
6346
6347         TRACEME(("dclone returns 0x%"UVxf, PTR2UV(out)));
6348
6349         return out;
6350 }
6351
6352 /***
6353  *** Glue with perl.
6354  ***/
6355
6356 /*
6357  * The Perl IO GV object distinguishes between input and output for sockets
6358  * but not for plain files. To allow Storable to transparently work on
6359  * plain files and sockets transparently, we have to ask xsubpp to fetch the
6360  * right object for us. Hence the OutputStream and InputStream declarations.
6361  *
6362  * Before perl 5.004_05, those entries in the standard typemap are not
6363  * defined in perl include files, so we do that here.
6364  */
6365
6366 #ifndef OutputStream
6367 #define OutputStream    PerlIO *
6368 #define InputStream             PerlIO *
6369 #endif  /* !OutputStream */
6370
6371 MODULE = Storable       PACKAGE = Storable::Cxt
6372
6373 void
6374 DESTROY(self)
6375     SV *self
6376 PREINIT:
6377         stcxt_t *cxt = (stcxt_t *)SvPVX(SvRV(self));
6378 PPCODE:
6379         if (kbuf)
6380                 Safefree(kbuf);
6381         if (!cxt->membuf_ro && mbase)
6382                 Safefree(mbase);
6383         if (cxt->membuf_ro && (cxt->msaved).arena)
6384                 Safefree((cxt->msaved).arena);
6385
6386
6387 MODULE = Storable       PACKAGE = Storable
6388
6389 PROTOTYPES: ENABLE
6390
6391 BOOT:
6392 {
6393     HV *stash = gv_stashpvn("Storable", 8, GV_ADD);
6394     newCONSTSUB(stash, "BIN_MAJOR", newSViv(STORABLE_BIN_MAJOR));
6395     newCONSTSUB(stash, "BIN_MINOR", newSViv(STORABLE_BIN_MINOR));
6396     newCONSTSUB(stash, "BIN_WRITE_MINOR", newSViv(STORABLE_BIN_WRITE_MINOR));
6397
6398     init_perinterp(aTHX);
6399     gv_fetchpv("Storable::drop_utf8",   GV_ADDMULTI, SVt_PV);
6400 #ifdef DEBUGME
6401     /* Only disable the used only once warning if we are in debugging mode.  */
6402     gv_fetchpv("Storable::DEBUGME",   GV_ADDMULTI, SVt_PV);
6403 #endif
6404 #ifdef USE_56_INTERWORK_KLUDGE
6405     gv_fetchpv("Storable::interwork_56_64bit",   GV_ADDMULTI, SVt_PV);
6406 #endif
6407 }
6408
6409 void
6410 init_perinterp()
6411  CODE:
6412   init_perinterp(aTHX);
6413
6414 int
6415 pstore(f,obj)
6416 OutputStream    f
6417 SV *    obj
6418  CODE:
6419   RETVAL = pstore(aTHX_ f, obj);
6420  OUTPUT:
6421   RETVAL
6422
6423 int
6424 net_pstore(f,obj)
6425 OutputStream    f
6426 SV *    obj
6427  CODE:
6428   RETVAL = net_pstore(aTHX_ f, obj);
6429  OUTPUT:
6430   RETVAL
6431
6432 SV *
6433 mstore(obj)
6434 SV *    obj
6435  CODE:
6436   RETVAL = mstore(aTHX_ obj);
6437  OUTPUT:
6438   RETVAL
6439
6440 SV *
6441 net_mstore(obj)
6442 SV *    obj
6443  CODE:
6444   RETVAL = net_mstore(aTHX_ obj);
6445  OUTPUT:
6446   RETVAL
6447
6448 SV *
6449 pretrieve(f)
6450 InputStream     f
6451  CODE:
6452   RETVAL = pretrieve(aTHX_ f);
6453  OUTPUT:
6454   RETVAL
6455
6456 SV *
6457 mretrieve(sv)
6458 SV *    sv
6459  CODE:
6460   RETVAL = mretrieve(aTHX_ sv);
6461  OUTPUT:
6462   RETVAL
6463
6464 SV *
6465 dclone(sv)
6466 SV *    sv
6467  CODE:
6468   RETVAL = dclone(aTHX_ sv);
6469  OUTPUT:
6470   RETVAL
6471
6472 int
6473 last_op_in_netorder()
6474  CODE:
6475   RETVAL = last_op_in_netorder(aTHX);
6476  OUTPUT:
6477   RETVAL
6478
6479 int
6480 is_storing()
6481  CODE:
6482   RETVAL = is_storing(aTHX);
6483  OUTPUT:
6484   RETVAL
6485
6486 int
6487 is_retrieving()
6488  CODE:
6489   RETVAL = is_retrieving(aTHX);
6490  OUTPUT:
6491   RETVAL