Gather up another utility.
[u/mdw/catacomb] / key-fetch.c
CommitLineData
1aaed0ba 1/* -*-c-*-
2 *
b817bfc6 3 * $Id: key-fetch.c,v 1.2 2004/04/08 01:36:15 mdw Exp $
1aaed0ba 4 *
5 * Higher-level key unpacking
6 *
7 * (c) 2000 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
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.
18 *
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.
23 *
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,
27 * MA 02111-1307, USA.
28 */
29
1aaed0ba 30/*----- Header files ------------------------------------------------------*/
31
32#include <mLib/dstr.h>
33
34#include "key.h"
35#include "key-data.h"
36
37/*----- Main code ---------------------------------------------------------*/
38
39/* --- @key_fetchinit@ --- *
40 *
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
44 *
45 * Returns: Pointer to packing definition.
46 *
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.
50 */
51
52static size_t kfcount(const key_fetchdef *kf)
53{
54 size_t n = 1;
55 while (kf->name) {
56 n++;
57 if (kf->kf)
58 n += kfcount(kf->kf);
59 kf++;
60 }
61 return (n);
62}
63
64key_packdef *key_fetchinit(const key_fetchdef *kf,
65 key_packstruct *kp, void *p)
66{
67 size_t n = 1 + kfcount(kf);
68 key_packdef *kpd;
69 key_packstruct *kps;
70 char *cp = p;
71
72 /* --- If @kps@ is null, count the entries and allocate --- */
73
74 if (kp)
75 kp->name = 0;
76 else {
77 kp = xmalloc(n * sizeof(*kp));
78 kp->name = (char *)kp;
79 }
80
81 /* --- Fill in the top part --- */
82
83 kp->kp.kd.e = KENC_STRUCT;
84 kp->kp.p = &kp[1];
85 kpd = &kp->kp;
86
87 /* --- Initialize for the main loop --- */
88
89 kps = kp + n;
90 n = 0;
91 kp++;
92
93 /* --- Iterate over the entries in the table --- *
94 *
95 * The end of the target block is used as a stack to record where
96 * substructure is meant to occur. The integer @n@ is the depth of the
97 * stack; @kps@ is a full descending stack pointer. The @kp.p@ member of a
98 * stack element points back to an entry with substructure, the @kp.p@
99 * member of which refers to the @kf@ table for the substructure.
100 *
101 * This should all be about as clear as mud.
102 */
103
104 for (;;) {
105
106 /* --- Blat out a level's worth --- */
107
108 while (kf->name) {
109 kp->name = kf->name;
110 kp->kp.kd.e = kf->e;
111 if ((kf->e & KF_ENCMASK) != KENC_STRUCT)
112 kp->kp.p = cp + kf->off;
113 else {
114 (--kps)->kp.p = kp;
115 kp->kp.p = (void *)kf->kf;
116 n++;
117 }
118 kf++;
119 kp++;
120 }
121 (kp++)->name = 0;
122 if (!n)
123 break;
124
125 /* --- Pop an entry from the stack --- */
126
127 {
128 key_packstruct *kkp = (kps++)->kp.p;
129 kf = kkp->kp.p;
130 kkp->kp.p = kp;
131 n--;
132 }
133 }
134
135 /* --- We're done --- */
136
137 return (kpd);
138}
139
140/* --- @key_fetch@ --- *
141 *
142 * Arguments: @key_packdef *kp@ = pointer to packing structure
143 * @key *k@ = key file containing desired key
144 *
145 * Returns: Error code, or zero.
146 *
147 * Use: Fetches an unpacked key from a packed one.
148 */
149
150int key_fetch(key_packdef *kp, key *k)
151{
152 dstr d = DSTR_INIT;
153 int e;
154
155 key_fulltag(k, &d);
156 e = key_unpack(kp, &k->k, &d);
157 dstr_destroy(&d);
158 return (e);
159}
160
161/* --- @key_fetchbyname@ --- *
162 *
163 * Arguments: @key_packdef *kp@ = pointer to packing structure
164 * @key_file *kf@ = key file containing desired key
165 * @const char *tag@ = user's tag describing the key
166 *
167 * Returns: Error code, or zero.
168 *
169 * Use: Fetches a named key from a key file and unpacks it
170 * conveniently.
171 */
172
173int key_fetchbyname(key_packdef *kp, key_file *kf, const char *tag)
174{
175 dstr d = DSTR_INIT;
176 key_data *kd;
177 int e;
178
179 if (key_qtag(kf, tag, &d, 0, &kd))
180 e = KERR_NOTFOUND;
181 else
182 e = key_unpack(kp, kd, &d);
183 dstr_destroy(&d);
184 return (e);
185}
186
187/* --- @key_fetchdone@ --- *
188 *
189 * Arguments: @key_packdef *kp@ = pointer to packing structure
190 *
191 * Returns: ---
192 *
193 * Use: Frees a packing structure. If the structure was allocated by
194 * @key_fetchinit@ then it is freed.
195 */
196
197void key_fetchdone(key_packdef *kp)
198{
199 key_packstruct *kps = (key_packstruct *)(((char *)kp) -
200 offsetof(key_packstruct, kp));
201 key_unpackdone(kp);
202 if (kps->name)
203 free(kps);
204}
205
206/*----- That's all, folks -------------------------------------------------*/