File: db_lookup.c

package info (click to toggle)
man-db 2.3.10-65
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,440 kB
  • ctags: 1,826
  • sloc: ansic: 12,508; lex: 925; makefile: 642; sh: 328; sed: 93; perl: 62
file content (335 lines) | stat: -rw-r--r-- 7,884 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
 * db_lookup.c: low level database interface routines for man.
 *  
 * Copyright (C), 1994, 1995, Graeme W. Wilford. (Wilf.)
 *
 * You may distribute under the terms of the GNU Library General Public
 * License as specified in the file COPYING.LIB that comes with this
 * distribution.
 *
 * Mon Aug  8 20:35:30 BST 1994  Wilf. (G.Wilford@ee.surrey.ac.uk) 
 */

#ifdef HAVE_CONFIG_H
#  include "config.h"
#endif /* HAVE_CONFIG_H */

#include <stdio.h>
#include <assert.h>
#include <errno.h>

#if defined(STDC_HEADERS)
#include <string.h>
#include <stdlib.h>
#elif defined(HAVE_STRING_H)
#include <string.h>
#elif defined(HAVE_STRINGS_H)
#include <strings.h>
#else /* no string(s) header file */
extern char *strtok();
extern char *strsep();
#endif /* STDC_HEADERS */

#if defined(HAVE_UNISTD_H)
#  include <unistd.h>
#endif /* HAVE_UNISTD_H */

#ifndef STDC_HEADERS
extern long atol();
extern char *strsep();
extern int errno;
#endif /* not STDC_HEADERS */

#define NLS_SET	db_lookupSet

#include <libintl.h>
#define _(String) gettext (String)

#include "manconfig.h"
#include "lib/error.h"
#include "mydbm.h"
#include "db_storage.h"

/* If using ndbm or BTREE, copy the static storage before doing anything 
   interesting with it */
#if defined(NDBM) || defined (BTREE)
datum copy_datum (datum dat)
{
	if (dat.dptr) 
		dat.dptr = memcpy (xmalloc (dat.dsize), dat.dptr, dat.dsize);
	return dat;
}

void gripe_lock(char *filename)
{
	error (0, errno,
	       _( "can't lock index cache %s"),
	       filename);
}
#endif /* NDBM || BTREE */

/* issue fatal message, then exit */
void gripe_corrupt_data(void)
{
	error (FATAL, 0,
	       _( "index cache %s corrupt"),
	       database);
}

/* deal with situation where we cannot replace a key */
void gripe_replace_key(char *data)
{
	error (0, 0,
	       _( "cannot replace key %s"),
	       data);
	gripe_corrupt_data();
}

/* Just print out what would be stored in the db */
void dbprintf(struct mandata *info)
{
	fprintf(stderr,
		"sec. ext:  %s\n"
		"section:   %s\n"
		"comp. ext: %s\n"
		"id:        %c\n"
		"st_mtime   %ld\n"
		"pointer:   %s\n"
		"whatis:    %s\n\n",
		info->ext, info->sec, info->comp,
		info->id, (long)info->_st_mtime, 
		info->pointer, info->whatis);
}

/* Form a multi-style key from page and extension info */
datum make_multi_key(char *page, char *ext)
{
	datum key;

	key.dsize = strlen(page) + strlen(ext) + 2;
	key.dptr = (char *) xmalloc (key.dsize);
	sprintf(key.dptr, "%s\t%s", page, ext);
	return key;
}

/* allocate a mandata structure */
struct mandata *infoalloc(void)
{
	return (struct mandata *) xmalloc (sizeof(struct mandata));
}

/* go through the linked list of structures, free()ing the `content' and the
   structs themselves */
void free_mandata_struct(struct mandata *pinfo)
{
	while(pinfo) {
		struct mandata *next;

		next = pinfo->next;
		if (pinfo->addr)
			free(pinfo->addr); 	/* free the `content' */
		free(pinfo);			/* free the structure */
		pinfo = next;
	}
}
 
/* return char ptr array to the data's fields */
char **split_data(char *content, char *start[])
{
        int count;

	/* initialise pointers to first N-1 fields */
	for (count = 0; count < FIELDS - 1 ; count++) {
		start[count] = strsep(&content, "\t");
		if (!start[count]) {
			error (0, 0,
			       _( "only %d fields in content"),
			       count);
			gripe_corrupt_data();
		}
	}

	/* initialise pointer to Nth field (whatis) */
	start[FIELDS - 1] = content;
	
	return start;
}

/* Parse the db-returned data and put it into a mandata format */
void split_content(char *cont_ptr, struct mandata *pinfo)
{
	char *start[FIELDS];
	char **data;

	data = split_data(cont_ptr, start);

	pinfo->ext = *(data++);
	pinfo->sec = *(data++);
	pinfo->_st_mtime = (time_t) atol(*(data++));	/* time_t format */
	pinfo->id = **(data++);				/* single char id */
	pinfo->pointer = *(data++);
	pinfo->comp = *(data++);
	pinfo->whatis = *(data);

	pinfo->addr = cont_ptr;
	pinfo->next = (struct mandata *) NULL;
}
	
/* The compliment of split_content */
datum make_content(struct mandata *in)
{
	datum cont;
	static char dash[] = "-";

	if (!in->pointer)
		in->pointer = dash;
	if (!in->comp)
		in->comp = dash;
	if (!in->whatis)
		in->whatis = dash + 1;

	cont.dsize = strlen(in->ext) + 
	             strlen(in->sec) + 
	          /* strlen(in->_st_mtime) */ + 11 +
	          /* strlen(in->id) */ + 1 + 
	             strlen(in->pointer) + 
	             strlen(in->comp) + 
	             strlen(in->whatis) + 7;  
	cont.dptr = (char *) xmalloc (cont.dsize);
#ifdef ANSI_SPRINTF
	cont.dsize = 1 + sprintf(cont.dptr, "%s\t%s\t%ld\t%c\t%s\t%s\t%s", 
	        in->ext,
	        in->sec,
	        in->_st_mtime,
	        in->id, 
	        in->pointer, 
	        in->comp, 
	        in->whatis);

	assert(strlen(cont.dptr) + 1 == cont.dsize);
#else /* !ANSI_SPRINTF */
	sprintf(cont.dptr, "%s\t%s\t%ld\t%c\t%s\t%s\t%s", 
	        in->ext,
	        in->sec,
	        (long)in->_st_mtime,
	        in->id, 
	        in->pointer, 
	        in->comp, 
	        in->whatis);

	cont.dsize = strlen(cont.dptr) + 1;	/* to be sure (st_mtime) */
#endif /* ANSI_SPRINTF */

#ifdef NDBM
	/* limit of 4096 bytes of data using ndbm */
	if (cont.dsize > 4095) {
		cont.dptr[4095] = '\0';
		cont.dsize = 4096;
	}
#endif
	return cont;
}

/* Extract all of the extensions associated with this key */
int list_extensions(char *data, char *ext[])
{  
	int count = 0;

	while ( (ext[count] = strsep(&data, "\t")) )
		count++;

	if (debug)
		fprintf(stderr, "found %d extensions\n", count);
	return count;
}

#define	EXACT	1
#define ALL	0

/*
 There are three possibilities on lookup:

 1) No data exists, lookup will fail, returned structure will be NULL.
 2) One data item exists. Item is returned as first in set of structures.
 3) Many items exist. They are all returned, in a multiple structure set.
 */
#ifndef FAST_BTREE
static struct mandata *dblookup(char *page, char *section, int flags)
{
	struct mandata *info = NULL;
	datum key, cont;

	key.dptr = page;
	key.dsize = strlen(page) + 1;
	cont = MYDBM_FETCH(dbf, key);

	if (cont.dptr == NULL) {		/* No entries at all */
		return info;			/* indicate no entries */
	} else if (*cont.dptr != '\t') {	/* Just one entry */
		info = infoalloc();
		split_content(cont.dptr, info);
		if (section == NULL || 
		      strncmp(section, info->ext, 
		              flags & EXACT ? strlen(info->ext) : 
		                              strlen(section)) == 0) {
		      	return info;
		}
		free_mandata_struct(info);
		return NULL;
	} else {				/* multiple entries */
		char *ext[ENTRIES], **e;
		struct mandata *ret = NULL;

		/* Extract all of the extensions associated with this key */

		(void) list_extensions(cont.dptr + 1, e = ext);

		/* Make the multi keys and look them up */
		
		while (*e) {
			if (section == NULL || 
			    strncmp(section, *e, 
			            flags & EXACT ? strlen(*e)
			                          : strlen(section)) == 0) {
		                datum multi_cont;
			                
			  	key = make_multi_key(page, *e);
			  	if (debug)
			  		fprintf(stderr, 
			  			"multi key lookup (%s)\n", 
			  		        key.dptr);
				multi_cont = MYDBM_FETCH(dbf, key);
				if (multi_cont.dptr == NULL) {
					error (0, 0,
					       _(
						       "bad fetch on multi key %s"),
					       key.dptr);
					gripe_corrupt_data();
				}
				free(key.dptr);
					
				/* allocate info struct, fill it in and
				   point info to the next in the list */
				if (!ret)
					ret = info = infoalloc();
				else
					info = info->next = infoalloc();
				split_content(multi_cont.dptr, info);
			}
			e++;
		}
		MYDBM_FREE(cont.dptr);
		return ret;
	}
}
#endif /* !FAST_BTREE */

struct mandata *dblookup_all(char *page, char *section)
{
	return dblookup(page, section, ALL);
}

struct mandata *dblookup_exact(char *page, char *section)
{
	return dblookup(page, section, EXACT);
}