5 * Higher-level key unpacking
7 * (c) 2000 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of Catacomb.
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30 /*----- Header files ------------------------------------------------------*/
32 #include <mLib/dstr.h>
37 /*----- Main code ---------------------------------------------------------*/
39 /* --- @key_fetchinit@ --- *
41 * Arguments: @const key_fetchdef *kf@ = pointer to base definition
42 * @key_packstruct *kps@ = pointer to destination packing def
43 * @void *p@ = pointer to destination block
45 * Returns: Pointer to packing definition.
47 * Use: Initializes a packing definition (@key_packdef@ structure).
48 * If @kps@ is null on entry, an appropriately sized block is
49 * allocated automatically. Otherwise it must be large enough.
52 static size_t kfcount(const key_fetchdef *kf)
64 key_packdef *key_fetchinit(const key_fetchdef *kf,
65 key_packstruct *kp, void *p)
67 size_t n = 1 + kfcount(kf);
72 /* --- If @kps@ is null, count the entries and allocate --- */
77 kp = xmalloc(n * sizeof(*kp));
78 kp->name = (char *)kp;
81 /* --- Fill in the top part --- */
83 kp->kp.e = KENC_STRUCT;
88 /* --- Initialize for the main loop --- */
94 /* --- Iterate over the entries in the table --- *
96 * The end of the target block is used as a stack to record where
97 * substructure is meant to occur. The integer @n@ is the depth of the
98 * stack; @kps@ is a full descending stack pointer. The @kp.p@ member of a
99 * stack element points back to an entry with substructure, the @kp.p@
100 * member of which refers to the @kf@ table for the substructure.
102 * This should all be about as clear as mud.
107 /* --- Blat out a level's worth --- */
113 if ((kf->e & KF_ENCMASK) != KENC_STRUCT)
114 kp->kp.p = cp + kf->off;
117 kp->kp.p = (void *)kf->kf;
127 /* --- Pop an entry from the stack --- */
130 key_packstruct *kkp = (kps++)->kp.p;
137 /* --- We're done --- */
142 /* --- @key_fetch@ --- *
144 * Arguments: @key_packdef *kp@ = pointer to packing structure
145 * @key *k@ = key file containing desired key
147 * Returns: Error code, or zero.
149 * Use: Fetches an unpacked key from a packed one.
152 int key_fetch(key_packdef *kp, key *k)
158 e = key_unpack(kp, k->k, &d);
163 /* --- @key_fetchbyname@ --- *
165 * Arguments: @key_packdef *kp@ = pointer to packing structure
166 * @key_file *kf@ = key file containing desired key
167 * @const char *tag@ = user's tag describing the key
169 * Returns: Error code, or zero.
171 * Use: Fetches a named key from a key file and unpacks it
175 int key_fetchbyname(key_packdef *kp, key_file *kf, const char *tag)
181 if (key_qtag(kf, tag, &d, 0, &kd))
184 e = key_unpack(kp, *kd, &d);
189 /* --- @key_fetchdone@ --- *
191 * Arguments: @key_packdef *kp@ = pointer to packing structure
195 * Use: Frees a packing structure. If the structure was allocated by
196 * @key_fetchinit@ then it is freed.
199 void key_fetchdone(key_packdef *kp)
201 key_packstruct *kps =
202 (key_packstruct *)(((char *)kp) - offsetof(key_packstruct, kp));
208 /*----- That's all, folks -------------------------------------------------*/