makemandb.c revision 1.23
1/*	$NetBSD: makemandb.c,v 1.23 2014/05/24 21:01:58 wiz Exp $	*/
2/*
3 * Copyright (c) 2011 Abhinav Upadhyay <er.abhinav.upadhyay@gmail.com>
4 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#include <sys/cdefs.h>
20__RCSID("$NetBSD: makemandb.c,v 1.23 2014/05/24 21:01:58 wiz Exp $");
21
22#include <sys/stat.h>
23#include <sys/types.h>
24
25#include <assert.h>
26#include <ctype.h>
27#include <dirent.h>
28#include <err.h>
29#include <archive.h>
30#include <libgen.h>
31#include <md5.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <string.h>
35#include <unistd.h>
36#include <util.h>
37
38#include "apropos-utils.h"
39#include "dist/man.h"
40#include "dist/mandoc.h"
41#include "dist/mdoc.h"
42#include "sqlite3.h"
43
44#define BUFLEN 1024
45#define MDOC 0	//If the page is of mdoc(7) type
46#define MAN 1	//If the page  is of man(7) type
47
48/*
49 * A data structure for holding section specific data.
50 */
51typedef struct secbuff {
52	char *data;
53	size_t buflen;	//Total length of buffer allocated initially
54	size_t offset;	// Current offset in the buffer.
55} secbuff;
56
57typedef struct makemandb_flags {
58	int optimize;
59	int limit;	// limit the indexing to only NAME section
60	int recreate;	// Database was created from scratch
61	int verbosity;	// 0: quiet, 1: default, 2: verbose
62} makemandb_flags;
63
64typedef struct mandb_rec {
65	/* Fields for mandb table */
66	char *name;	// for storing the name of the man page
67	char *name_desc; // for storing the one line description (.Nd)
68	secbuff desc; // for storing the DESCRIPTION section
69	secbuff lib; // for the LIBRARY section
70	secbuff return_vals; // RETURN VALUES
71	secbuff env; // ENVIRONMENT
72	secbuff files; // FILES
73	secbuff exit_status; // EXIT STATUS
74	secbuff diagnostics; // DIAGNOSTICS
75	secbuff errors; // ERRORS
76	char section[2];
77
78	int xr_found;
79
80	/* Fields for mandb_meta table */
81	char *md5_hash;
82	dev_t device;
83	ino_t inode;
84	time_t mtime;
85
86	/* Fields for mandb_links table */
87	char *machine;
88	char *links; //all the links to a page in a space separated form
89	char *file_path;
90
91	/* Non-db fields */
92	int page_type; //Indicates the type of page: mdoc or man
93} mandb_rec;
94
95static void append(secbuff *sbuff, const char *src);
96static void init_secbuffs(mandb_rec *);
97static void free_secbuffs(mandb_rec *);
98static int check_md5(const char *, sqlite3 *, const char *, char **, void *, size_t);
99static void cleanup(mandb_rec *);
100static void set_section(const struct mdoc *, const struct man *, mandb_rec *);
101static void set_machine(const struct mdoc *, mandb_rec *);
102static int insert_into_db(sqlite3 *, mandb_rec *);
103static	void begin_parse(const char *, struct mparse *, mandb_rec *,
104			 const void *, size_t len);
105static void pmdoc_node(const struct mdoc_node *, mandb_rec *);
106static void pmdoc_Nm(const struct mdoc_node *, mandb_rec *);
107static void pmdoc_Nd(const struct mdoc_node *, mandb_rec *);
108static void pmdoc_Sh(const struct mdoc_node *, mandb_rec *);
109static void pmdoc_Xr(const struct mdoc_node *, mandb_rec *);
110static void pmdoc_Pp(const struct mdoc_node *, mandb_rec *);
111static void pmdoc_macro_handler(const struct mdoc_node *, mandb_rec *,
112				enum mdoct);
113static void pman_node(const struct man_node *n, mandb_rec *);
114static void pman_parse_node(const struct man_node *, secbuff *);
115static void pman_parse_name(const struct man_node *, mandb_rec *);
116static void pman_sh(const struct man_node *, mandb_rec *);
117static void pman_block(const struct man_node *, mandb_rec *);
118static void traversedir(const char *, const char *, sqlite3 *, struct mparse *);
119static void mdoc_parse_section(enum mdoc_sec, const char *, mandb_rec *);
120static void man_parse_section(enum man_sec, const struct man_node *, mandb_rec *);
121static void build_file_cache(sqlite3 *, const char *, const char *,
122			     struct stat *);
123static void update_db(sqlite3 *, struct mparse *, mandb_rec *);
124__dead static void usage(void);
125static void optimize(sqlite3 *);
126static char *parse_escape(const char *);
127static void replace_hyph(char *);
128static makemandb_flags mflags = { .verbosity = 1 };
129
130typedef	void (*pman_nf)(const struct man_node *n, mandb_rec *);
131typedef	void (*pmdoc_nf)(const struct mdoc_node *n, mandb_rec *);
132static	const pmdoc_nf mdocs[MDOC_MAX] = {
133	NULL, /* Ap */
134	NULL, /* Dd */
135	NULL, /* Dt */
136	NULL, /* Os */
137	pmdoc_Sh, /* Sh */
138	NULL, /* Ss */
139	pmdoc_Pp, /* Pp */
140	NULL, /* D1 */
141	NULL, /* Dl */
142	NULL, /* Bd */
143	NULL, /* Ed */
144	NULL, /* Bl */
145	NULL, /* El */
146	NULL, /* It */
147	NULL, /* Ad */
148	NULL, /* An */
149	NULL, /* Ar */
150	NULL, /* Cd */
151	NULL, /* Cm */
152	NULL, /* Dv */
153	NULL, /* Er */
154	NULL, /* Ev */
155	NULL, /* Ex */
156	NULL, /* Fa */
157	NULL, /* Fd */
158	NULL, /* Fl */
159	NULL, /* Fn */
160	NULL, /* Ft */
161	NULL, /* Ic */
162	NULL, /* In */
163	NULL, /* Li */
164	pmdoc_Nd, /* Nd */
165	pmdoc_Nm, /* Nm */
166	NULL, /* Op */
167	NULL, /* Ot */
168	NULL, /* Pa */
169	NULL, /* Rv */
170	NULL, /* St */
171	NULL, /* Va */
172	NULL, /* Vt */
173	pmdoc_Xr, /* Xr */
174	NULL, /* %A */
175	NULL, /* %B */
176	NULL, /* %D */
177	NULL, /* %I */
178	NULL, /* %J */
179	NULL, /* %N */
180	NULL, /* %O */
181	NULL, /* %P */
182	NULL, /* %R */
183	NULL, /* %T */
184	NULL, /* %V */
185	NULL, /* Ac */
186	NULL, /* Ao */
187	NULL, /* Aq */
188	NULL, /* At */
189	NULL, /* Bc */
190	NULL, /* Bf */
191	NULL, /* Bo */
192	NULL, /* Bq */
193	NULL, /* Bsx */
194	NULL, /* Bx */
195	NULL, /* Db */
196	NULL, /* Dc */
197	NULL, /* Do */
198	NULL, /* Dq */
199	NULL, /* Ec */
200	NULL, /* Ef */
201	NULL, /* Em */
202	NULL, /* Eo */
203	NULL, /* Fx */
204	NULL, /* Ms */
205	NULL, /* No */
206	NULL, /* Ns */
207	NULL, /* Nx */
208	NULL, /* Ox */
209	NULL, /* Pc */
210	NULL, /* Pf */
211	NULL, /* Po */
212	NULL, /* Pq */
213	NULL, /* Qc */
214	NULL, /* Ql */
215	NULL, /* Qo */
216	NULL, /* Qq */
217	NULL, /* Re */
218	NULL, /* Rs */
219	NULL, /* Sc */
220	NULL, /* So */
221	NULL, /* Sq */
222	NULL, /* Sm */
223	NULL, /* Sx */
224	NULL, /* Sy */
225	NULL, /* Tn */
226	NULL, /* Ux */
227	NULL, /* Xc */
228	NULL, /* Xo */
229	NULL, /* Fo */
230	NULL, /* Fc */
231	NULL, /* Oo */
232	NULL, /* Oc */
233	NULL, /* Bk */
234	NULL, /* Ek */
235	NULL, /* Bt */
236	NULL, /* Hf */
237	NULL, /* Fr */
238	NULL, /* Ud */
239	NULL, /* Lb */
240	NULL, /* Lp */
241	NULL, /* Lk */
242	NULL, /* Mt */
243	NULL, /* Brq */
244	NULL, /* Bro */
245	NULL, /* Brc */
246	NULL, /* %C */
247	NULL, /* Es */
248	NULL, /* En */
249	NULL, /* Dx */
250	NULL, /* %Q */
251	NULL, /* br */
252	NULL, /* sp */
253	NULL, /* %U */
254	NULL, /* Ta */
255};
256
257static	const pman_nf mans[MAN_MAX] = {
258	NULL,	//br
259	NULL,	//TH
260	pman_sh, //SH
261	NULL,	//SS
262	NULL,	//TP
263	NULL,	//LP
264	NULL,	//PP
265	NULL,	//P
266	NULL,	//IP
267	NULL,	//HP
268	NULL,	//SM
269	NULL,	//SB
270	NULL,	//BI
271	NULL,	//IB
272	NULL,	//BR
273	NULL,	//RB
274	NULL,	//R
275	pman_block,	//B
276	NULL,	//I
277	NULL,	//IR
278	NULL,	//RI
279	NULL,	//na
280	NULL,	//sp
281	NULL,	//nf
282	NULL,	//fi
283	NULL,	//RE
284	NULL,	//RS
285	NULL,	//DT
286	NULL,	//UC
287	NULL,	//PD
288	NULL,	//AT
289	NULL,	//in
290	NULL,	//ft
291};
292
293
294int
295main(int argc, char *argv[])
296{
297	FILE *file;
298	const char *sqlstr, *manconf = NULL;
299	char *line, *command, *parent;
300	char *errmsg;
301	int ch;
302	struct mparse *mp;
303	sqlite3 *db;
304	ssize_t len;
305	size_t linesize;
306	struct mandb_rec rec;
307
308	while ((ch = getopt(argc, argv, "C:floQqv")) != -1) {
309		switch (ch) {
310		case 'C':
311			manconf = optarg;
312			break;
313		case 'f':
314			mflags.recreate = 1;
315			break;
316		case 'l':
317			mflags.limit = 1;
318			break;
319		case 'o':
320			mflags.optimize = 1;
321			break;
322		case 'Q':
323			mflags.verbosity = 0;
324			break;
325		case 'q':
326			mflags.verbosity = 1;
327			break;
328		case 'v':
329			mflags.verbosity = 2;
330			break;
331		default:
332			usage();
333		}
334	}
335
336	memset(&rec, 0, sizeof(rec));
337
338	init_secbuffs(&rec);
339	mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, NULL);
340
341	if (manconf) {
342		char *arg;
343		size_t command_len = shquote(manconf, NULL, 0) + 1;
344		arg = emalloc(command_len);
345		shquote(manconf, arg, command_len);
346		easprintf(&command, "man -p -C %s", arg);
347		free(arg);
348	} else {
349		command = estrdup("man -p");
350		manconf = MANCONF;
351	}
352
353	if (mflags.recreate) {
354		char *dbp = get_dbpath(manconf);
355		/* No error here, it will fail in init_db in the same call */
356		if (dbp != NULL)
357			remove(dbp);
358	}
359
360	if ((db = init_db(MANDB_CREATE, manconf)) == NULL)
361		exit(EXIT_FAILURE);
362
363	sqlite3_exec(db, "PRAGMA synchronous = 0", NULL, NULL, 	&errmsg);
364	if (errmsg != NULL) {
365		warnx("%s", errmsg);
366		free(errmsg);
367		close_db(db);
368		exit(EXIT_FAILURE);
369	}
370
371	sqlite3_exec(db, "ATTACH DATABASE \':memory:\' AS metadb", NULL, NULL,
372	    &errmsg);
373	if (errmsg != NULL) {
374		warnx("%s", errmsg);
375		free(errmsg);
376		close_db(db);
377		exit(EXIT_FAILURE);
378	}
379
380
381	/* Call man -p to get the list of man page dirs */
382	if ((file = popen(command, "r")) == NULL) {
383		close_db(db);
384		err(EXIT_FAILURE, "fopen failed");
385	}
386	free(command);
387
388	/* Begin the transaction for indexing the pages	*/
389	sqlite3_exec(db, "BEGIN", NULL, NULL, &errmsg);
390	if (errmsg != NULL) {
391		warnx("%s", errmsg);
392		free(errmsg);
393		exit(EXIT_FAILURE);
394	}
395
396	sqlstr = "CREATE TABLE metadb.file_cache(device, inode, mtime, parent,"
397		 " file PRIMARY KEY);"
398		 "CREATE UNIQUE INDEX metadb.index_file_cache_dev"
399		 " ON file_cache (device, inode)";
400
401	sqlite3_exec(db, sqlstr, NULL, NULL, &errmsg);
402	if (errmsg != NULL) {
403		warnx("%s", errmsg);
404		free(errmsg);
405		close_db(db);
406		exit(EXIT_FAILURE);
407	}
408
409	if (mflags.verbosity)
410		printf("Building temporary file cache\n");
411	line = NULL;
412	linesize = 0;
413	while ((len = getline(&line, &linesize, file)) != -1) {
414		/* Replace the new line character at the end of string with '\0' */
415		line[len - 1] = '\0';
416		parent = estrdup(line);
417		char *pdir = estrdup(dirname(parent));
418		free(parent);
419		/* Traverse the man page directories and parse the pages */
420		traversedir(pdir, line, db, mp);
421		free(pdir);
422	}
423	free(line);
424
425	if (pclose(file) == -1) {
426		close_db(db);
427		cleanup(&rec);
428		free_secbuffs(&rec);
429		err(EXIT_FAILURE, "pclose error");
430	}
431
432	if (mflags.verbosity)
433		printf("Performing index update\n");
434	update_db(db, mp, &rec);
435	mparse_free(mp);
436	free_secbuffs(&rec);
437
438	/* Commit the transaction */
439	sqlite3_exec(db, "COMMIT", NULL, NULL, &errmsg);
440	if (errmsg != NULL) {
441		warnx("%s", errmsg);
442		free(errmsg);
443		exit(EXIT_FAILURE);
444	}
445
446	if (mflags.optimize)
447		optimize(db);
448
449	close_db(db);
450	return 0;
451}
452
453/*
454 * traversedir --
455 *  Traverses the given directory recursively and passes all the man page files
456 *  in the way to build_file_cache()
457 */
458static void
459traversedir(const char *parent, const char *file, sqlite3 *db,
460            struct mparse *mp)
461{
462	struct stat sb;
463	struct dirent *dirp;
464	DIR *dp;
465	char *buf;
466
467	if (stat(file, &sb) < 0) {
468		if (mflags.verbosity)
469			warn("stat failed: %s", file);
470		return;
471	}
472
473	/* If it is a directory, traverse it recursively */
474	if (S_ISDIR(sb.st_mode)) {
475		if ((dp = opendir(file)) == NULL) {
476			if (mflags.verbosity)
477				warn("opendir error: %s", file);
478			return;
479		}
480
481		while ((dirp = readdir(dp)) != NULL) {
482			/* Avoid . and .. entries in a directory */
483			if (strncmp(dirp->d_name, ".", 1)) {
484				easprintf(&buf, "%s/%s", file, dirp->d_name);
485				traversedir(parent, buf, db, mp);
486				free(buf);
487			}
488		}
489		closedir(dp);
490	}
491
492	if (!S_ISREG(sb.st_mode) && !S_ISLNK(sb.st_mode))
493		return;
494
495	if (sb.st_size == 0) {
496		if (mflags.verbosity)
497			warnx("Empty file: %s", file);
498		return;
499	}
500	build_file_cache(db, parent, file, &sb);
501}
502
503/* build_file_cache --
504 *   This function generates an md5 hash of the file passed as it's 2nd parameter
505 *   and stores it in a temporary table file_cache along with the full file path.
506 *   This is done to support incremental updation of the database.
507 *   The temporary table file_cache is dropped thereafter in the function
508 *   update_db(), once the database has been updated.
509 */
510static void
511build_file_cache(sqlite3 *db, const char *parent, const char *file,
512		 struct stat *sb)
513{
514	const char *sqlstr;
515	sqlite3_stmt *stmt = NULL;
516	int rc, idx;
517	assert(file != NULL);
518	dev_t device_cache = sb->st_dev;
519	ino_t inode_cache = sb->st_ino;
520	time_t mtime_cache = sb->st_mtime;
521
522	sqlstr = "INSERT INTO metadb.file_cache VALUES (:device, :inode,"
523		 " :mtime, :parent, :file)";
524	rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
525	if (rc != SQLITE_OK) {
526		if (mflags.verbosity)
527			warnx("%s", sqlite3_errmsg(db));
528		return;
529	}
530
531	idx = sqlite3_bind_parameter_index(stmt, ":device");
532	rc = sqlite3_bind_int64(stmt, idx, device_cache);
533	if (rc != SQLITE_OK) {
534		if (mflags.verbosity)
535			warnx("%s", sqlite3_errmsg(db));
536		sqlite3_finalize(stmt);
537		return;
538	}
539
540	idx = sqlite3_bind_parameter_index(stmt, ":inode");
541	rc = sqlite3_bind_int64(stmt, idx, inode_cache);
542	if (rc != SQLITE_OK) {
543		if (mflags.verbosity)
544			warnx("%s", sqlite3_errmsg(db));
545		sqlite3_finalize(stmt);
546		return;
547	}
548
549	idx = sqlite3_bind_parameter_index(stmt, ":mtime");
550	rc = sqlite3_bind_int64(stmt, idx, mtime_cache);
551	if (rc != SQLITE_OK) {
552		if (mflags.verbosity)
553			warnx("%s", sqlite3_errmsg(db));
554		sqlite3_finalize(stmt);
555		return;
556	}
557
558	idx = sqlite3_bind_parameter_index(stmt, ":parent");
559	rc = sqlite3_bind_text(stmt, idx, parent, -1, NULL);
560	if (rc != SQLITE_OK) {
561		if (mflags.verbosity)
562			warnx("%s", sqlite3_errmsg(db));
563		sqlite3_finalize(stmt);
564		return;
565	}
566
567	idx = sqlite3_bind_parameter_index(stmt, ":file");
568	rc = sqlite3_bind_text(stmt, idx, file, -1, NULL);
569	if (rc != SQLITE_OK) {
570		if (mflags.verbosity)
571			warnx("%s", sqlite3_errmsg(db));
572		sqlite3_finalize(stmt);
573		return;
574	}
575
576	sqlite3_step(stmt);
577	sqlite3_finalize(stmt);
578}
579
580static void
581update_existing_entry(sqlite3 *db, const char *file, const char *hash,
582    mandb_rec *rec, int *new_count, int *link_count, int *err_count)
583{
584	int update_count, rc, idx;
585	const char *inner_sqlstr;
586	sqlite3_stmt *inner_stmt;
587
588	update_count = sqlite3_total_changes(db);
589	inner_sqlstr = "UPDATE mandb_meta SET device = :device,"
590		       " inode = :inode, mtime = :mtime WHERE"
591		       " md5_hash = :md5 AND file = :file AND"
592		       " (device <> :device2 OR inode <> "
593		       "  :inode2 OR mtime <> :mtime2)";
594	rc = sqlite3_prepare_v2(db, inner_sqlstr, -1, &inner_stmt, NULL);
595	if (rc != SQLITE_OK) {
596		if (mflags.verbosity)
597			warnx("%s", sqlite3_errmsg(db));
598		return;
599	}
600	idx = sqlite3_bind_parameter_index(inner_stmt, ":device");
601	sqlite3_bind_int64(inner_stmt, idx, rec->device);
602	idx = sqlite3_bind_parameter_index(inner_stmt, ":inode");
603	sqlite3_bind_int64(inner_stmt, idx, rec->inode);
604	idx = sqlite3_bind_parameter_index(inner_stmt, ":mtime");
605	sqlite3_bind_int64(inner_stmt, idx, rec->mtime);
606	idx = sqlite3_bind_parameter_index(inner_stmt, ":md5");
607	sqlite3_bind_text(inner_stmt, idx, hash, -1, NULL);
608	idx = sqlite3_bind_parameter_index(inner_stmt, ":file");
609	sqlite3_bind_text(inner_stmt, idx, file, -1, NULL);
610	idx = sqlite3_bind_parameter_index(inner_stmt, ":device2");
611	sqlite3_bind_int64(inner_stmt, idx, rec->device);
612	idx = sqlite3_bind_parameter_index(inner_stmt, ":inode2");
613	sqlite3_bind_int64(inner_stmt, idx, rec->inode);
614	idx = sqlite3_bind_parameter_index(inner_stmt, ":mtime2");
615	sqlite3_bind_int64(inner_stmt, idx, rec->mtime);
616
617	rc = sqlite3_step(inner_stmt);
618	if (rc == SQLITE_DONE) {
619		/* Check if an update has been performed. */
620		if (update_count != sqlite3_total_changes(db)) {
621			if (mflags.verbosity == 2)
622				printf("Updated %s\n", file);
623			(*new_count)++;
624		} else {
625			/* Otherwise it was a hardlink. */
626			(*link_count)++;
627		}
628	} else {
629		if (mflags.verbosity == 2)
630			warnx("Could not update the meta data for %s", file);
631		(*err_count)++;
632	}
633	sqlite3_finalize(inner_stmt);
634}
635
636/* read_and_decompress --
637 *	Reads the given file into memory. If it is compressed, decompress
638 *	it before returning to the caller.
639 */
640static int
641read_and_decompress(const char *file, void **bufp, size_t *len)
642{
643	size_t off;
644	ssize_t r;
645	struct archive *a;
646	struct archive_entry *ae;
647	char *buf;
648
649	if ((a = archive_read_new()) == NULL)
650		errx(EXIT_FAILURE, "memory allocation failed");
651
652	*bufp = NULL;
653	if (archive_read_support_compression_all(a) != ARCHIVE_OK ||
654	    archive_read_support_format_raw(a) != ARCHIVE_OK ||
655	    archive_read_open_filename(a, file, 65536) != ARCHIVE_OK ||
656	    archive_read_next_header(a, &ae) != ARCHIVE_OK)
657		goto archive_error;
658	*len = 65536;
659	buf = emalloc(*len);
660	off = 0;
661	for (;;) {
662		r = archive_read_data(a, buf + off, *len - off);
663		if (r == ARCHIVE_OK) {
664			archive_read_close(a);
665			*bufp = buf;
666			*len = off;
667			return 0;
668		}
669		if (r <= 0) {
670			free(buf);
671			break;
672		}
673		off += r;
674		if (off == *len) {
675			*len *= 2;
676			if (*len < off) {
677				if (mflags.verbosity)
678					warnx("File too large: %s", file);
679				free(buf);
680				archive_read_close(a);
681				return -1;
682			}
683			buf = erealloc(buf, *len);
684		}
685	}
686
687archive_error:
688	warnx("Error while reading `%s': %s", file, archive_error_string(a));
689	archive_read_close(a);
690	return -1;
691}
692
693/* update_db --
694 *	Does an incremental updation of the database by checking the file_cache.
695 *	It parses and adds the pages which are present in file_cache,
696 *	but not in the database.
697 *	It also removes the pages which are present in the databse,
698 *	but not in the file_cache.
699 */
700static void
701update_db(sqlite3 *db, struct mparse *mp, mandb_rec *rec)
702{
703	const char *sqlstr;
704	sqlite3_stmt *stmt = NULL;
705	char *file;
706	char *parent;
707	char *errmsg = NULL;
708	char *md5sum;
709	void *buf;
710	size_t buflen;
711	struct sql_row {
712		struct sql_row *next;
713		dev_t device;
714		ino_t inode;
715		time_t mtime;
716		char *parent;
717		char *file;
718	} *rows, *row;
719	int new_count = 0;	/* Counter for newly indexed/updated pages */
720	int total_count = 0;	/* Counter for total number of pages */
721	int err_count = 0;	/* Counter for number of failed pages */
722	int link_count = 0;	/* Counter for number of hard/sym links */
723	int md5_status;
724	int rc;
725
726	sqlstr = "SELECT device, inode, mtime, parent, file"
727	         " FROM metadb.file_cache fc"
728	         " WHERE NOT EXISTS(SELECT 1 FROM mandb_meta WHERE"
729	         "  device = fc.device AND inode = fc.inode AND "
730	         "  mtime = fc.mtime AND file = fc.file)";
731
732	rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
733	if (rc != SQLITE_OK) {
734		if (mflags.verbosity)
735		warnx("%s", sqlite3_errmsg(db));
736		close_db(db);
737		errx(EXIT_FAILURE, "Could not query file cache");
738	}
739
740	buf = NULL;
741	rows = NULL;
742	while (sqlite3_step(stmt) == SQLITE_ROW) {
743		row = emalloc(sizeof(struct sql_row));
744		row->device = sqlite3_column_int64(stmt, 0);
745		row->inode = sqlite3_column_int64(stmt, 1);
746		row->mtime = sqlite3_column_int64(stmt, 2);
747		row->parent = estrdup((const char *) sqlite3_column_text(stmt, 3));
748		row->file = estrdup((const char *) sqlite3_column_text(stmt, 4));
749		row->next = rows;
750		rows = row;
751		total_count++;
752	}
753	sqlite3_finalize(stmt);
754
755	for ( ; rows != NULL; free(parent), free(file), free(buf)) {
756		row = rows;
757		rows = rows->next;
758
759		rec->device = row->device;
760		rec->inode = row->inode;
761		rec->mtime = row->mtime;
762		parent = row->parent;
763		file = row->file;
764		free(row);
765
766		if (read_and_decompress(file, &buf, &buflen)) {
767			err_count++;
768			continue;
769		}
770		md5_status = check_md5(file, db, "mandb_meta", &md5sum, buf, buflen);
771		assert(md5sum != NULL);
772		if (md5_status == -1) {
773			if (mflags.verbosity)
774				warnx("An error occurred in checking md5 value"
775			      " for file %s", file);
776			err_count++;
777			continue;
778		}
779
780		if (md5_status == 0) {
781			/*
782			 * The MD5 hash is already present in the database,
783			 * so simply update the metadata, ignoring symlinks.
784			 */
785			struct stat sb;
786			stat(file, &sb);
787			if (S_ISLNK(sb.st_mode)) {
788				free(md5sum);
789				link_count++;
790				continue;
791			}
792			update_existing_entry(db, file, md5sum, rec,
793			    &new_count, &link_count, &err_count);
794			free(md5sum);
795			continue;
796		}
797
798		if (md5_status == 1) {
799			/*
800			 * The MD5 hash was not present in the database.
801			 * This means is either a new file or an updated file.
802			 * We should go ahead with parsing.
803			 */
804			if (mflags.verbosity == 2)
805				printf("Parsing: %s\n", file);
806			rec->md5_hash = md5sum;
807			rec->file_path = estrdup(file);
808			// file_path is freed by insert_into_db itself.
809			chdir(parent);
810			begin_parse(file, mp, rec, buf, buflen);
811			if (insert_into_db(db, rec) < 0) {
812				if (mflags.verbosity)
813					warnx("Error in indexing %s", file);
814				err_count++;
815			} else {
816				new_count++;
817			}
818		}
819	}
820
821	if (mflags.verbosity == 2) {
822		printf("Total Number of new or updated pages encountered = %d\n"
823			"Total number of (hard or symbolic) links found = %d\n"
824			"Total number of pages that were successfully"
825			" indexed/updated = %d\n"
826			"Total number of pages that could not be indexed"
827			" due to errors = %d\n",
828			total_count - link_count, link_count, new_count, err_count);
829	}
830
831	if (mflags.recreate)
832		return;
833
834	if (mflags.verbosity == 2)
835		printf("Deleting stale index entries\n");
836
837	sqlstr = "DELETE FROM mandb_meta WHERE file NOT IN"
838		 " (SELECT file FROM metadb.file_cache);"
839		 "DELETE FROM mandb_links WHERE md5_hash NOT IN"
840		 " (SELECT md5_hash from mandb_meta);"
841		 "DROP TABLE metadb.file_cache;"
842		 "DELETE FROM mandb WHERE rowid NOT IN"
843		 " (SELECT id FROM mandb_meta);";
844
845	sqlite3_exec(db, sqlstr, NULL, NULL, &errmsg);
846	if (errmsg != NULL) {
847		warnx("Removing old entries failed: %s", errmsg);
848		warnx("Please rebuild database from scratch with -f.");
849		free(errmsg);
850		return;
851	}
852}
853
854/*
855 * begin_parse --
856 *  parses the man page using libmandoc
857 */
858static void
859begin_parse(const char *file, struct mparse *mp, mandb_rec *rec,
860    const void *buf, size_t len)
861{
862	struct mdoc *mdoc;
863	struct man *man;
864	mparse_reset(mp);
865
866	rec->xr_found = 0;
867
868	if (mparse_readmem(mp, buf, len, file) >= MANDOCLEVEL_FATAL) {
869		/* Printing this warning at verbosity level 2
870		 * because some packages from pkgsrc might trigger several
871		 * of such warnings.
872		 */
873		if (mflags.verbosity == 2)
874			warnx("%s: Parse failure", file);
875		return;
876	}
877
878	mparse_result(mp, &mdoc, &man);
879	if (mdoc == NULL && man == NULL) {
880		if (mflags.verbosity == 2)
881			warnx("Not a man(7) or mdoc(7) page");
882		return;
883	}
884
885	set_machine(mdoc, rec);
886	set_section(mdoc, man, rec);
887	if (mdoc) {
888		rec->page_type = MDOC;
889		pmdoc_node(mdoc_node(mdoc), rec);
890	} else {
891		rec->page_type = MAN;
892		pman_node(man_node(man), rec);
893	}
894}
895
896/*
897 * set_section --
898 *  Extracts the section number and normalizes it to only the numeric part
899 *  (Which should be the first character of the string).
900 */
901static void
902set_section(const struct mdoc *md, const struct man *m, mandb_rec *rec)
903{
904	if (md) {
905		const struct mdoc_meta *md_meta = mdoc_meta(md);
906		rec->section[0] = md_meta->msec[0];
907	} else if (m) {
908		const struct man_meta *m_meta = man_meta(m);
909		rec->section[0] = m_meta->msec[0];
910	}
911}
912
913/*
914 * get_machine --
915 *  Extracts the machine architecture information if available.
916 */
917static void
918set_machine(const struct mdoc *md, mandb_rec *rec)
919{
920	if (md == NULL)
921		return;
922	const struct mdoc_meta *md_meta = mdoc_meta(md);
923	if (md_meta->arch)
924		rec->machine = estrdup(md_meta->arch);
925}
926
927static void
928pmdoc_node(const struct mdoc_node *n, mandb_rec *rec)
929{
930
931	if (n == NULL)
932		return;
933
934	switch (n->type) {
935	case (MDOC_BODY):
936		/* FALLTHROUGH */
937	case (MDOC_TAIL):
938		/* FALLTHROUGH */
939	case (MDOC_ELEM):
940		if (mdocs[n->tok] == NULL)
941			break;
942		(*mdocs[n->tok])(n, rec);
943		break;
944	default:
945		break;
946	}
947
948	pmdoc_node(n->child, rec);
949	pmdoc_node(n->next, rec);
950}
951
952/*
953 * pmdoc_Nm --
954 *  Extracts the Name of the manual page from the .Nm macro
955 */
956static void
957pmdoc_Nm(const struct mdoc_node *n, mandb_rec *rec)
958{
959	if (n->sec != SEC_NAME)
960		return;
961
962	for (n = n->child; n; n = n->next) {
963		if (n->type == MDOC_TEXT) {
964			concat(&rec->name, n->string);
965		}
966	}
967}
968
969/*
970 * pmdoc_Nd --
971 *  Extracts the one line description of the man page from the .Nd macro
972 */
973static void
974pmdoc_Nd(const struct mdoc_node *n, mandb_rec *rec)
975{
976	/*
977	 * A static variable for keeping track of whether a Xr macro was seen
978	 * previously.
979	 */
980	char *buf = NULL;
981	char *temp;
982	char *nd_text;
983
984	if (n == NULL)
985		return;
986
987	if (n->type == MDOC_TEXT) {
988		if (rec->xr_found && n->next) {
989			/*
990			 * An Xr macro was seen previously, so parse this
991			 * and the next node.
992			 */
993			temp = estrdup(n->string);
994			n = n->next;
995			easprintf(&buf, "%s(%s)", temp, n->string);
996			concat(&rec->name_desc, buf);
997			free(buf);
998			free(temp);
999		} else {
1000			nd_text = estrdup(n->string);
1001			replace_hyph(nd_text);
1002			concat(&rec->name_desc, nd_text);
1003			free(nd_text);
1004		}
1005		rec->xr_found = 0;
1006	} else if (mdocs[n->tok] == pmdoc_Xr) {
1007		/* Remember that we have encountered an Xr macro */
1008		rec->xr_found = 1;
1009	}
1010
1011	if (n->child)
1012		pmdoc_Nd(n->child, rec);
1013
1014	if(n->next)
1015		pmdoc_Nd(n->next, rec);
1016}
1017
1018/*
1019 * pmdoc_macro_handler--
1020 *  This function is a single point of handling all the special macros that we
1021 *  want to handle especially. For example the .Xr macro for properly parsing
1022 *  the referenced page name along with the section number, or the .Pp macro
1023 *  for adding a new line whenever we encounter it.
1024 */
1025static void
1026pmdoc_macro_handler(const struct mdoc_node *n, mandb_rec *rec, enum mdoct doct)
1027{
1028	const struct mdoc_node *sn;
1029	assert(n);
1030
1031	switch (doct) {
1032	/*  Parse the man page references.
1033	 * Basically the .Xr macros are used like:
1034	 *  .Xr ls 1
1035 	 *  and formatted like this:
1036	 *  ls(1)
1037	 *  Prepare a buffer to format the data like the above example and call
1038	 *  pmdoc_parse_section to append it.
1039	 */
1040	case MDOC_Xr:
1041		n = n->child;
1042		while (n->type != MDOC_TEXT && n->next)
1043			n = n->next;
1044
1045		if (n && n->type != MDOC_TEXT)
1046			return;
1047		sn = n;
1048		if (n->next)
1049			n = n->next;
1050
1051		while (n->type != MDOC_TEXT && n->next)
1052			n = n->next;
1053
1054		if (n && n->type == MDOC_TEXT) {
1055			size_t len = strlen(sn->string);
1056			char *buf = emalloc(len + 4);
1057			memcpy(buf, sn->string, len);
1058			buf[len] = '(';
1059			buf[len + 1] = n->string[0];
1060			buf[len + 2] = ')';
1061			buf[len + 3] = 0;
1062			mdoc_parse_section(n->sec, buf, rec);
1063			free(buf);
1064		}
1065
1066		break;
1067
1068	/* Parse the .Pp macro to add a new line */
1069	case MDOC_Pp:
1070		if (n->type == MDOC_TEXT)
1071			mdoc_parse_section(n->sec, "\n", rec);
1072		break;
1073	default:
1074		break;
1075	}
1076
1077}
1078
1079/*
1080 * pmdoc_Xr, pmdoc_Pp--
1081 *  Empty stubs.
1082 *  The parser calls these functions each time it encounters
1083 *  a .Xr or .Pp macro. We are parsing all the data from
1084 *  the pmdoc_Sh function, so don't do anything here.
1085 *  (See if else blocks in pmdoc_Sh.)
1086 */
1087static void
1088pmdoc_Xr(const struct mdoc_node *n, mandb_rec *rec)
1089{
1090}
1091
1092static void
1093pmdoc_Pp(const struct mdoc_node *n, mandb_rec *rec)
1094{
1095}
1096
1097/*
1098 * pmdoc_Sh --
1099 *  Called when a .Sh macro is encountered and loops through its body, calling
1100 *  mdoc_parse_section to append the data to the section specific buffer.
1101 *  Two special macros which may occur inside the body of Sh are .Nm and .Xr and
1102 *  they need special handling, thus the separate if branches for them.
1103 */
1104static void
1105pmdoc_Sh(const struct mdoc_node *n, mandb_rec *rec)
1106{
1107	if (n == NULL)
1108		return;
1109	int xr_found = 0;
1110
1111	if (n->type == MDOC_TEXT) {
1112		mdoc_parse_section(n->sec, n->string, rec);
1113	} else if (mdocs[n->tok] == pmdoc_Nm && rec->name != NULL) {
1114		/*
1115		 * When encountering a .Nm macro, substitute it
1116		 * with its previously cached value of the argument.
1117		 */
1118		mdoc_parse_section(n->sec, rec->name, rec);
1119	} else if (mdocs[n->tok] == pmdoc_Xr) {
1120		/*
1121		 * When encountering other inline macros,
1122		 * call pmdoc_macro_handler.
1123		 */
1124		pmdoc_macro_handler(n, rec, MDOC_Xr);
1125		xr_found = 1;
1126	} else if (mdocs[n->tok] == pmdoc_Pp) {
1127		pmdoc_macro_handler(n, rec, MDOC_Pp);
1128	}
1129
1130	/*
1131	 * If an Xr macro was encountered then the child node has
1132	 * already been explored by pmdoc_macro_handler.
1133	 */
1134	if (xr_found == 0)
1135		pmdoc_Sh(n->child, rec);
1136	pmdoc_Sh(n->next, rec);
1137}
1138
1139/*
1140 * mdoc_parse_section--
1141 *  Utility function for parsing sections of the mdoc type pages.
1142 *  Takes two params:
1143 *   1. sec is an enum which indicates the section in which we are present
1144 *   2. string is the string which we need to append to the secbuff for this
1145 *      particular section.
1146 *  The function appends string to the global section buffer and returns.
1147 */
1148static void
1149mdoc_parse_section(enum mdoc_sec sec, const char *string, mandb_rec *rec)
1150{
1151	/*
1152	 * If the user specified the 'l' flag, then parse and store only the
1153	 * NAME section. Ignore the rest.
1154	 */
1155	if (mflags.limit)
1156		return;
1157
1158	switch (sec) {
1159	case SEC_LIBRARY:
1160		append(&rec->lib, string);
1161		break;
1162	case SEC_RETURN_VALUES:
1163		append(&rec->return_vals, string);
1164		break;
1165	case SEC_ENVIRONMENT:
1166		append(&rec->env, string);
1167		break;
1168	case SEC_FILES:
1169		append(&rec->files, string);
1170		break;
1171	case SEC_EXIT_STATUS:
1172		append(&rec->exit_status, string);
1173		break;
1174	case SEC_DIAGNOSTICS:
1175		append(&rec->diagnostics, string);
1176		break;
1177	case SEC_ERRORS:
1178		append(&rec->errors, string);
1179		break;
1180	case SEC_NAME:
1181	case SEC_SYNOPSIS:
1182	case SEC_EXAMPLES:
1183	case SEC_STANDARDS:
1184	case SEC_HISTORY:
1185	case SEC_AUTHORS:
1186	case SEC_BUGS:
1187		break;
1188	default:
1189		append(&rec->desc, string);
1190		break;
1191	}
1192}
1193
1194static void
1195pman_node(const struct man_node *n, mandb_rec *rec)
1196{
1197	if (n == NULL)
1198		return;
1199
1200	switch (n->type) {
1201	case (MAN_BODY):
1202		/* FALLTHROUGH */
1203	case (MAN_TAIL):
1204		/* FALLTHROUGH */
1205	case (MAN_BLOCK):
1206		/* FALLTHROUGH */
1207	case (MAN_ELEM):
1208		if (mans[n->tok] != NULL)
1209			(*mans[n->tok])(n, rec);
1210		break;
1211	default:
1212		break;
1213	}
1214
1215	pman_node(n->child, rec);
1216	pman_node(n->next, rec);
1217}
1218
1219/*
1220 * pman_parse_name --
1221 *  Parses the NAME section and puts the complete content in the name_desc
1222 *  variable.
1223 */
1224static void
1225pman_parse_name(const struct man_node *n, mandb_rec *rec)
1226{
1227	if (n == NULL)
1228		return;
1229
1230	if (n->type == MAN_TEXT) {
1231		char *tmp = parse_escape(n->string);
1232		concat(&rec->name_desc, tmp);
1233		free(tmp);
1234	}
1235
1236	if (n->child)
1237		pman_parse_name(n->child, rec);
1238
1239	if(n->next)
1240		pman_parse_name(n->next, rec);
1241}
1242
1243/*
1244 * A stub function to be able to parse the macros like .B embedded inside
1245 * a section.
1246 */
1247static void
1248pman_block(const struct man_node *n, mandb_rec *rec)
1249{
1250}
1251
1252/*
1253 * pman_sh --
1254 * This function does one of the two things:
1255 *  1. If the present section is NAME, then it will:
1256 *    (a) Extract the name of the page (in case of multiple comma separated
1257 *        names, it will pick up the first one).
1258 *    (b) Build a space spearated list of all the symlinks/hardlinks to
1259 *        this page and store in the buffer 'links'. These are extracted from
1260 *        the comma separated list of names in the NAME section as well.
1261 *    (c) Move on to the one line description section, which is after the list
1262 *        of names in the NAME section.
1263 *  2. Otherwise, it will check the section name and call the man_parse_section
1264 *     function, passing the enum corresponding that section.
1265 */
1266static void
1267pman_sh(const struct man_node *n, mandb_rec *rec)
1268{
1269	static const struct {
1270		enum man_sec section;
1271		const char *header;
1272	} mapping[] = {
1273	    { MANSEC_DESCRIPTION, "DESCRIPTION" },
1274	    { MANSEC_SYNOPSIS, "SYNOPSIS" },
1275	    { MANSEC_LIBRARY, "LIBRARY" },
1276	    { MANSEC_ERRORS, "ERRORS" },
1277	    { MANSEC_FILES, "FILES" },
1278	    { MANSEC_RETURN_VALUES, "RETURN VALUE" },
1279	    { MANSEC_RETURN_VALUES, "RETURN VALUES" },
1280	    { MANSEC_EXIT_STATUS, "EXIT STATUS" },
1281	    { MANSEC_EXAMPLES, "EXAMPLES" },
1282	    { MANSEC_EXAMPLES, "EXAMPLE" },
1283	    { MANSEC_STANDARDS, "STANDARDS" },
1284	    { MANSEC_HISTORY, "HISTORY" },
1285	    { MANSEC_BUGS, "BUGS" },
1286	    { MANSEC_AUTHORS, "AUTHORS" },
1287	    { MANSEC_COPYRIGHT, "COPYRIGHT" },
1288	};
1289	const struct man_node *head;
1290	char *name_desc;
1291	int sz;
1292	size_t i;
1293
1294	if ((head = n->parent->head) == NULL || (head = head->child) == NULL ||
1295	    head->type != MAN_TEXT)
1296		return;
1297
1298	/*
1299	 * Check if this section should be extracted and
1300	 * where it should be stored. Handled the trival cases first.
1301	 */
1302	for (i = 0; i < sizeof(mapping) / sizeof(mapping[0]); ++i) {
1303		if (strcmp(head->string, mapping[i].header) == 0) {
1304			man_parse_section(mapping[i].section, n, rec);
1305			return;
1306		}
1307	}
1308
1309	if (strcmp(head->string, "NAME") == 0) {
1310		/*
1311		 * We are in the NAME section.
1312		 * pman_parse_name will put the complete content in name_desc.
1313		 */
1314		pman_parse_name(n, rec);
1315
1316		name_desc = rec->name_desc;
1317		if (name_desc == NULL)
1318			return;
1319
1320		/* Remove any leading spaces. */
1321		while (name_desc[0] == ' ')
1322			name_desc++;
1323
1324		/* If the line begins with a "\&", avoid those */
1325		if (name_desc[0] == '\\' && name_desc[1] == '&')
1326			name_desc += 2;
1327
1328		/* Now name_desc should be left with a comma-space
1329		 * separated list of names and the one line description
1330		 * of the page:
1331		 *     "a, b, c \- sample description"
1332		 * Take out the first name, before the first comma
1333		 * (or space) and store it in rec->name.
1334		 * If the page has aliases then they should be
1335		 * in the form of a comma separated list.
1336		 * Keep looping while there is a comma in name_desc,
1337		 * extract the alias name and store in rec->links.
1338		 * When there are no more commas left, break out.
1339		 */
1340		int has_alias = 0;	// Any more aliases left?
1341		while (*name_desc) {
1342			/* Remove any leading spaces or hyphens. */
1343			if (name_desc[0] == ' ' || name_desc[0] =='-') {
1344				name_desc++;
1345				continue;
1346			}
1347			sz = strcspn(name_desc, ", ");
1348
1349			/* Extract the first term and store it in rec->name. */
1350			if (rec->name == NULL) {
1351				if (name_desc[sz] == ',')
1352					has_alias = 1;
1353				name_desc[sz] = 0;
1354				rec->name = emalloc(sz + 1);
1355				memcpy(rec->name, name_desc, sz + 1);
1356				name_desc += sz + 1;
1357				continue;
1358			}
1359
1360			/*
1361			 * Once rec->name is set, rest of the names
1362			 * are to be treated as links or aliases.
1363			 */
1364			if (rec->name && has_alias) {
1365				if (name_desc[sz] != ',') {
1366					/* No more commas left -->
1367					 * no more aliases to take out
1368					 */
1369					has_alias = 0;
1370				}
1371				name_desc[sz] = 0;
1372				concat2(&rec->links, name_desc, sz);
1373				name_desc += sz + 1;
1374				continue;
1375			}
1376			break;
1377		}
1378
1379		/* Parse any escape sequences that might be there */
1380		char *temp = parse_escape(name_desc);
1381		free(rec->name_desc);
1382		rec->name_desc = temp;
1383		temp = parse_escape(rec->name);
1384		free(rec->name);
1385		rec->name = temp;
1386		return;
1387	}
1388
1389	/* The RETURN VALUE section might be specified in multiple ways */
1390	if (strcmp(head->string, "RETURN") == 0 &&
1391	    head->next != NULL && head->next->type == MAN_TEXT &&
1392	    (strcmp(head->next->string, "VALUE") == 0 ||
1393	    strcmp(head->next->string, "VALUES") == 0)) {
1394		man_parse_section(MANSEC_RETURN_VALUES, n, rec);
1395		return;
1396	}
1397
1398	/*
1399	 * EXIT STATUS section can also be specified all on one line or on two
1400	 * separate lines.
1401	 */
1402	if (strcmp(head->string, "EXIT") == 0 &&
1403	    head->next != NULL && head->next->type == MAN_TEXT &&
1404	    strcmp(head->next->string, "STATUS") == 0) {
1405		man_parse_section(MANSEC_EXIT_STATUS, n, rec);
1406		return;
1407	}
1408
1409	/* Store the rest of the content in desc. */
1410	man_parse_section(MANSEC_NONE, n, rec);
1411}
1412
1413/*
1414 * pman_parse_node --
1415 *  Generic function to iterate through a node. Usually called from
1416 *  man_parse_section to parse a particular section of the man page.
1417 */
1418static void
1419pman_parse_node(const struct man_node *n, secbuff *s)
1420{
1421	if (n == NULL)
1422		return;
1423
1424	if (n->type == MAN_TEXT)
1425		append(s, n->string);
1426
1427	pman_parse_node(n->child, s);
1428	pman_parse_node(n->next, s);
1429}
1430
1431/*
1432 * man_parse_section --
1433 *  Takes two parameters:
1434 *   sec: Tells which section we are present in
1435 *   n: Is the present node of the AST.
1436 * Depending on the section, we call pman_parse_node to parse that section and
1437 * concatenate the content from that section into the buffer for that section.
1438 */
1439static void
1440man_parse_section(enum man_sec sec, const struct man_node *n, mandb_rec *rec)
1441{
1442	/*
1443	 * If the user sepecified the 'l' flag then just parse
1444	 * the NAME section, ignore the rest.
1445	 */
1446	if (mflags.limit)
1447		return;
1448
1449	switch (sec) {
1450	case MANSEC_LIBRARY:
1451		pman_parse_node(n, &rec->lib);
1452		break;
1453	case MANSEC_RETURN_VALUES:
1454		pman_parse_node(n, &rec->return_vals);
1455		break;
1456	case MANSEC_ENVIRONMENT:
1457		pman_parse_node(n, &rec->env);
1458		break;
1459	case MANSEC_FILES:
1460		pman_parse_node(n, &rec->files);
1461		break;
1462	case MANSEC_EXIT_STATUS:
1463		pman_parse_node(n, &rec->exit_status);
1464		break;
1465	case MANSEC_DIAGNOSTICS:
1466		pman_parse_node(n, &rec->diagnostics);
1467		break;
1468	case MANSEC_ERRORS:
1469		pman_parse_node(n, &rec->errors);
1470		break;
1471	case MANSEC_NAME:
1472	case MANSEC_SYNOPSIS:
1473	case MANSEC_EXAMPLES:
1474	case MANSEC_STANDARDS:
1475	case MANSEC_HISTORY:
1476	case MANSEC_BUGS:
1477	case MANSEC_AUTHORS:
1478	case MANSEC_COPYRIGHT:
1479		break;
1480	default:
1481		pman_parse_node(n, &rec->desc);
1482		break;
1483	}
1484
1485}
1486
1487/*
1488 * insert_into_db --
1489 *  Inserts the parsed data of the man page in the Sqlite databse.
1490 *  If any of the values is NULL, then we cleanup and return -1 indicating
1491 *  an error.
1492 *  Otherwise, store the data in the database and return 0.
1493 */
1494static int
1495insert_into_db(sqlite3 *db, mandb_rec *rec)
1496{
1497	int rc = 0;
1498	int idx = -1;
1499	const char *sqlstr = NULL;
1500	sqlite3_stmt *stmt = NULL;
1501	char *ln = NULL;
1502	char *errmsg = NULL;
1503	long int mandb_rowid;
1504
1505	/*
1506	 * At the very minimum we want to make sure that we store
1507	 * the following data:
1508	 *   Name, one line description, and the MD5 hash
1509	 */
1510	if (rec->name == NULL || rec->name_desc == NULL ||
1511	    rec->md5_hash == NULL) {
1512		cleanup(rec);
1513		return -1;
1514	}
1515
1516	/* Write null byte at the end of all the sec_buffs */
1517	rec->desc.data[rec->desc.offset] = 0;
1518	rec->lib.data[rec->lib.offset] = 0;
1519	rec->env.data[rec->env.offset] = 0;
1520	rec->return_vals.data[rec->return_vals.offset] = 0;
1521	rec->exit_status.data[rec->exit_status.offset] = 0;
1522	rec->files.data[rec->files.offset] = 0;
1523	rec->diagnostics.data[rec->diagnostics.offset] = 0;
1524	rec->errors.data[rec->errors.offset] = 0;
1525
1526	/*
1527	 * In case of a mdoc page: (sorry, no better place to put this code)
1528	 * parse the comma separated list of names of man pages,
1529	 * the first name will be stored in the mandb table, rest will be
1530	 * treated as links and put in the mandb_links table.
1531	 */
1532	if (rec->page_type == MDOC) {
1533		char *tmp;
1534		rec->links = estrdup(rec->name);
1535		free(rec->name);
1536		int sz = strcspn(rec->links, " \0");
1537		rec->name = emalloc(sz + 1);
1538		memcpy(rec->name, rec->links, sz);
1539		if(rec->name[sz - 1] == ',')
1540			rec->name[sz - 1] = 0;
1541		else
1542			rec->name[sz] = 0;
1543		while (rec->links[sz] == ' ')
1544			++sz;
1545		tmp = estrdup(rec->links + sz);
1546		free(rec->links);
1547		rec->links = tmp;
1548	}
1549
1550/*------------------------ Populate the mandb table---------------------------*/
1551	sqlstr = "INSERT INTO mandb VALUES (:section, :name, :name_desc, :desc,"
1552		 " :lib, :return_vals, :env, :files, :exit_status,"
1553		 " :diagnostics, :errors, :md5_hash, :machine)";
1554
1555	rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
1556	if (rc != SQLITE_OK)
1557		goto Out;
1558
1559	idx = sqlite3_bind_parameter_index(stmt, ":name");
1560	rc = sqlite3_bind_text(stmt, idx, rec->name, -1, NULL);
1561	if (rc != SQLITE_OK) {
1562		sqlite3_finalize(stmt);
1563		goto Out;
1564	}
1565
1566	idx = sqlite3_bind_parameter_index(stmt, ":section");
1567	rc = sqlite3_bind_text(stmt, idx, rec->section, -1, NULL);
1568	if (rc != SQLITE_OK) {
1569		sqlite3_finalize(stmt);
1570		goto Out;
1571	}
1572
1573	idx = sqlite3_bind_parameter_index(stmt, ":name_desc");
1574	rc = sqlite3_bind_text(stmt, idx, rec->name_desc, -1, NULL);
1575	if (rc != SQLITE_OK) {
1576		sqlite3_finalize(stmt);
1577		goto Out;
1578	}
1579
1580	idx = sqlite3_bind_parameter_index(stmt, ":desc");
1581	rc = sqlite3_bind_text(stmt, idx, rec->desc.data,
1582	                       rec->desc.offset + 1, NULL);
1583	if (rc != SQLITE_OK) {
1584		sqlite3_finalize(stmt);
1585		goto Out;
1586	}
1587
1588	idx = sqlite3_bind_parameter_index(stmt, ":lib");
1589	rc = sqlite3_bind_text(stmt, idx, rec->lib.data, rec->lib.offset + 1, NULL);
1590	if (rc != SQLITE_OK) {
1591		sqlite3_finalize(stmt);
1592		goto Out;
1593	}
1594
1595	idx = sqlite3_bind_parameter_index(stmt, ":return_vals");
1596	rc = sqlite3_bind_text(stmt, idx, rec->return_vals.data,
1597	                      rec->return_vals.offset + 1, NULL);
1598	if (rc != SQLITE_OK) {
1599		sqlite3_finalize(stmt);
1600		goto Out;
1601	}
1602
1603	idx = sqlite3_bind_parameter_index(stmt, ":env");
1604	rc = sqlite3_bind_text(stmt, idx, rec->env.data, rec->env.offset + 1, NULL);
1605	if (rc != SQLITE_OK) {
1606		sqlite3_finalize(stmt);
1607		goto Out;
1608	}
1609
1610	idx = sqlite3_bind_parameter_index(stmt, ":files");
1611	rc = sqlite3_bind_text(stmt, idx, rec->files.data,
1612	                       rec->files.offset + 1, NULL);
1613	if (rc != SQLITE_OK) {
1614		sqlite3_finalize(stmt);
1615		goto Out;
1616	}
1617
1618	idx = sqlite3_bind_parameter_index(stmt, ":exit_status");
1619	rc = sqlite3_bind_text(stmt, idx, rec->exit_status.data,
1620	                       rec->exit_status.offset + 1, NULL);
1621	if (rc != SQLITE_OK) {
1622		sqlite3_finalize(stmt);
1623		goto Out;
1624	}
1625
1626	idx = sqlite3_bind_parameter_index(stmt, ":diagnostics");
1627	rc = sqlite3_bind_text(stmt, idx, rec->diagnostics.data,
1628	                       rec->diagnostics.offset + 1, NULL);
1629	if (rc != SQLITE_OK) {
1630		sqlite3_finalize(stmt);
1631		goto Out;
1632	}
1633
1634	idx = sqlite3_bind_parameter_index(stmt, ":errors");
1635	rc = sqlite3_bind_text(stmt, idx, rec->errors.data,
1636	                       rec->errors.offset + 1, NULL);
1637	if (rc != SQLITE_OK) {
1638		sqlite3_finalize(stmt);
1639		goto Out;
1640	}
1641
1642	idx = sqlite3_bind_parameter_index(stmt, ":md5_hash");
1643	rc = sqlite3_bind_text(stmt, idx, rec->md5_hash, -1, NULL);
1644	if (rc != SQLITE_OK) {
1645		sqlite3_finalize(stmt);
1646		goto Out;
1647	}
1648
1649	idx = sqlite3_bind_parameter_index(stmt, ":machine");
1650	if (rec->machine)
1651		rc = sqlite3_bind_text(stmt, idx, rec->machine, -1, NULL);
1652	else
1653		rc = sqlite3_bind_null(stmt, idx);
1654	if (rc != SQLITE_OK) {
1655		sqlite3_finalize(stmt);
1656		goto Out;
1657	}
1658
1659	rc = sqlite3_step(stmt);
1660	if (rc != SQLITE_DONE) {
1661		sqlite3_finalize(stmt);
1662		goto Out;
1663	}
1664
1665	sqlite3_finalize(stmt);
1666
1667	/* Get the row id of the last inserted row */
1668	mandb_rowid = sqlite3_last_insert_rowid(db);
1669
1670/*------------------------Populate the mandb_meta table-----------------------*/
1671	sqlstr = "INSERT INTO mandb_meta VALUES (:device, :inode, :mtime,"
1672		 " :file, :md5_hash, :id)";
1673	rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
1674	if (rc != SQLITE_OK)
1675		goto Out;
1676
1677	idx = sqlite3_bind_parameter_index(stmt, ":device");
1678	rc = sqlite3_bind_int64(stmt, idx, rec->device);
1679	if (rc != SQLITE_OK) {
1680		sqlite3_finalize(stmt);
1681		goto Out;
1682	}
1683
1684	idx = sqlite3_bind_parameter_index(stmt, ":inode");
1685	rc = sqlite3_bind_int64(stmt, idx, rec->inode);
1686	if (rc != SQLITE_OK) {
1687		sqlite3_finalize(stmt);
1688		goto Out;
1689	}
1690
1691	idx = sqlite3_bind_parameter_index(stmt, ":mtime");
1692	rc = sqlite3_bind_int64(stmt, idx, rec->mtime);
1693	if (rc != SQLITE_OK) {
1694		sqlite3_finalize(stmt);
1695		goto Out;
1696	}
1697
1698	idx = sqlite3_bind_parameter_index(stmt, ":file");
1699	rc = sqlite3_bind_text(stmt, idx, rec->file_path, -1, NULL);
1700	if (rc != SQLITE_OK) {
1701		sqlite3_finalize(stmt);
1702		goto Out;
1703	}
1704
1705	idx = sqlite3_bind_parameter_index(stmt, ":md5_hash");
1706	rc = sqlite3_bind_text(stmt, idx, rec->md5_hash, -1, NULL);
1707	if (rc != SQLITE_OK) {
1708		sqlite3_finalize(stmt);
1709		goto Out;
1710	}
1711
1712	idx = sqlite3_bind_parameter_index(stmt, ":id");
1713	rc = sqlite3_bind_int64(stmt, idx, mandb_rowid);
1714	if (rc != SQLITE_OK) {
1715		sqlite3_finalize(stmt);
1716		goto Out;
1717	}
1718
1719	rc = sqlite3_step(stmt);
1720	sqlite3_finalize(stmt);
1721	if (rc == SQLITE_CONSTRAINT) {
1722		/* The *most* probable reason for reaching here is that
1723		 * the UNIQUE contraint on the file column of the mandb_meta
1724		 * table was violated.
1725		 * This can happen when a file was updated/modified.
1726		 * To fix this we need to do two things:
1727		 * 1. Delete the row for the older version of this file
1728		 *    from mandb table.
1729		 * 2. Run an UPDATE query to update the row for this file
1730		 *    in the mandb_meta table.
1731		 */
1732		warnx("Trying to update index for %s", rec->file_path);
1733		char *sql = sqlite3_mprintf("DELETE FROM mandb "
1734					    "WHERE rowid = (SELECT id"
1735					    "  FROM mandb_meta"
1736					    "  WHERE file = %Q)",
1737					    rec->file_path);
1738		sqlite3_exec(db, sql, NULL, NULL, &errmsg);
1739		sqlite3_free(sql);
1740		if (errmsg != NULL) {
1741			if (mflags.verbosity)
1742				warnx("%s", errmsg);
1743			free(errmsg);
1744		}
1745		sqlstr = "UPDATE mandb_meta SET device = :device,"
1746			 " inode = :inode, mtime = :mtime, id = :id,"
1747			 " md5_hash = :md5 WHERE file = :file";
1748		rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
1749		if (rc != SQLITE_OK) {
1750			if (mflags.verbosity)
1751				warnx("Update failed with error: %s",
1752			    sqlite3_errmsg(db));
1753			close_db(db);
1754			cleanup(rec);
1755			errx(EXIT_FAILURE,
1756			    "Consider running makemandb with -f option");
1757		}
1758
1759		idx = sqlite3_bind_parameter_index(stmt, ":device");
1760		sqlite3_bind_int64(stmt, idx, rec->device);
1761		idx = sqlite3_bind_parameter_index(stmt, ":inode");
1762		sqlite3_bind_int64(stmt, idx, rec->inode);
1763		idx = sqlite3_bind_parameter_index(stmt, ":mtime");
1764		sqlite3_bind_int64(stmt, idx, rec->mtime);
1765		idx = sqlite3_bind_parameter_index(stmt, ":id");
1766		sqlite3_bind_int64(stmt, idx, mandb_rowid);
1767		idx = sqlite3_bind_parameter_index(stmt, ":md5");
1768		sqlite3_bind_text(stmt, idx, rec->md5_hash, -1, NULL);
1769		idx = sqlite3_bind_parameter_index(stmt, ":file");
1770		sqlite3_bind_text(stmt, idx, rec->file_path, -1, NULL);
1771		rc = sqlite3_step(stmt);
1772		sqlite3_finalize(stmt);
1773
1774		if (rc != SQLITE_DONE) {
1775			if (mflags.verbosity)
1776				warnx("%s", sqlite3_errmsg(db));
1777			close_db(db);
1778			cleanup(rec);
1779			errx(EXIT_FAILURE,
1780			    "Consider running makemandb with -f option");
1781		}
1782	} else if (rc != SQLITE_DONE) {
1783		/* Otherwise make this error fatal */
1784		warnx("Failed at %s\n%s", rec->file_path, sqlite3_errmsg(db));
1785		cleanup(rec);
1786		close_db(db);
1787		exit(EXIT_FAILURE);
1788	}
1789
1790/*------------------------ Populate the mandb_links table---------------------*/
1791	char *str = NULL;
1792	char *links;
1793	if (rec->links && strlen(rec->links)) {
1794		links = rec->links;
1795		for(ln = strtok(links, " "); ln; ln = strtok(NULL, " ")) {
1796			if (ln[0] == ',')
1797				ln++;
1798			if(ln[strlen(ln) - 1] == ',')
1799				ln[strlen(ln) - 1] = 0;
1800
1801			str = sqlite3_mprintf("INSERT INTO mandb_links"
1802					      " VALUES (%Q, %Q, %Q, %Q, %Q)",
1803					      ln, rec->name, rec->section,
1804					      rec->machine, rec->md5_hash);
1805			sqlite3_exec(db, str, NULL, NULL, &errmsg);
1806			sqlite3_free(str);
1807			if (errmsg != NULL) {
1808				warnx("%s", errmsg);
1809				cleanup(rec);
1810				free(errmsg);
1811				return -1;
1812			}
1813		}
1814	}
1815
1816	cleanup(rec);
1817	return 0;
1818
1819  Out:
1820	if (mflags.verbosity)
1821		warnx("%s", sqlite3_errmsg(db));
1822	cleanup(rec);
1823	return -1;
1824}
1825
1826/*
1827 * check_md5--
1828 *  Generates the md5 hash of the file and checks if it already doesn't exist
1829 *  in the table (passed as the 3rd parameter).
1830 *  This function is being used to avoid hardlinks.
1831 *  On successful completion it will also set the value of the fourth parameter
1832 *  to the md5 hash of the file (computed previously). It is the responsibility
1833 *  of the caller to free this buffer.
1834 *  Return values:
1835 *  -1: If an error occurs somewhere and sets the md5 return buffer to NULL.
1836 *  0: If the md5 hash does not exist in the table.
1837 *  1: If the hash exists in the database.
1838 */
1839static int
1840check_md5(const char *file, sqlite3 *db, const char *table, char **md5sum,
1841    void *buf, size_t buflen)
1842{
1843	int rc = 0;
1844	int idx = -1;
1845	char *sqlstr = NULL;
1846	sqlite3_stmt *stmt = NULL;
1847
1848	assert(file != NULL);
1849	*md5sum = MD5Data(buf, buflen, NULL);
1850	if (*md5sum == NULL) {
1851		if (mflags.verbosity)
1852			warn("md5 failed: %s", file);
1853		return -1;
1854	}
1855
1856	easprintf(&sqlstr, "SELECT * FROM %s WHERE md5_hash = :md5_hash",
1857	    table);
1858	rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
1859	if (rc != SQLITE_OK) {
1860		free(sqlstr);
1861		free(*md5sum);
1862		*md5sum = NULL;
1863		return -1;
1864	}
1865
1866	idx = sqlite3_bind_parameter_index(stmt, ":md5_hash");
1867	rc = sqlite3_bind_text(stmt, idx, *md5sum, -1, NULL);
1868	if (rc != SQLITE_OK) {
1869		if (mflags.verbosity)
1870			warnx("%s", sqlite3_errmsg(db));
1871		sqlite3_finalize(stmt);
1872		free(sqlstr);
1873		free(*md5sum);
1874		*md5sum = NULL;
1875		return -1;
1876	}
1877
1878	if (sqlite3_step(stmt) == SQLITE_ROW) {
1879		sqlite3_finalize(stmt);
1880		free(sqlstr);
1881		return 0;
1882	}
1883
1884	sqlite3_finalize(stmt);
1885	free(sqlstr);
1886	return 1;
1887}
1888
1889/* Optimize the index for faster search */
1890static void
1891optimize(sqlite3 *db)
1892{
1893	const char *sqlstr;
1894	char *errmsg = NULL;
1895
1896	if (mflags.verbosity == 2)
1897		printf("Optimizing the database index\n");
1898	sqlstr = "INSERT INTO mandb(mandb) VALUES (\'optimize\');"
1899		 "VACUUM";
1900	sqlite3_exec(db, sqlstr, NULL, NULL, &errmsg);
1901	if (errmsg != NULL) {
1902		if (mflags.verbosity)
1903			warnx("%s", errmsg);
1904		free(errmsg);
1905		return;
1906	}
1907}
1908
1909/*
1910 * cleanup --
1911 *  cleans up the global buffers
1912 */
1913static void
1914cleanup(mandb_rec *rec)
1915{
1916	rec->desc.offset = 0;
1917	rec->lib.offset = 0;
1918	rec->return_vals.offset = 0;
1919	rec->env.offset = 0;
1920	rec->exit_status.offset = 0;
1921	rec->diagnostics.offset = 0;
1922	rec->errors.offset = 0;
1923	rec->files.offset = 0;
1924
1925	free(rec->machine);
1926	rec->machine = NULL;
1927
1928	free(rec->links);
1929	rec->links = NULL;
1930
1931	free(rec->file_path);
1932	rec->file_path = NULL;
1933
1934	free(rec->name);
1935	rec->name = NULL;
1936
1937	free(rec->name_desc);
1938	rec->name_desc = NULL;
1939
1940	free(rec->md5_hash);
1941	rec->md5_hash = NULL;
1942}
1943
1944/*
1945 * init_secbuffs--
1946 *  Sets the value of buflen for all the sec_buff field of rec. And then
1947 *  allocate memory to each sec_buff member of rec.
1948 */
1949static void
1950init_secbuffs(mandb_rec *rec)
1951{
1952	/*
1953	 * Some sec_buff might need more memory, for example desc,
1954	 * which stores the data of the DESCRIPTION section,
1955	 * while some might need very small amount of memory.
1956	 * Therefore explicitly setting the value of buflen field for
1957	 * each sec_buff.
1958	 */
1959	rec->desc.buflen = 10 * BUFLEN;
1960	rec->desc.data = emalloc(rec->desc.buflen);
1961	rec->desc.offset = 0;
1962
1963	rec->lib.buflen = BUFLEN / 2;
1964	rec->lib.data = emalloc(rec->lib.buflen);
1965	rec->lib.offset = 0;
1966
1967	rec->return_vals.buflen = BUFLEN;
1968	rec->return_vals.data = emalloc(rec->return_vals.buflen);
1969	rec->return_vals.offset = 0;
1970
1971	rec->exit_status.buflen = BUFLEN;
1972	rec->exit_status.data = emalloc(rec->exit_status.buflen);
1973	rec->exit_status.offset = 0;
1974
1975	rec->env.buflen = BUFLEN;
1976	rec->env.data = emalloc(rec->env.buflen);
1977	rec->env.offset = 0;
1978
1979	rec->files.buflen = BUFLEN;
1980	rec->files.data = emalloc(rec->files.buflen);
1981	rec->files.offset = 0;
1982
1983	rec->diagnostics.buflen = BUFLEN;
1984	rec->diagnostics.data = emalloc(rec->diagnostics.buflen);
1985	rec->diagnostics.offset = 0;
1986
1987	rec->errors.buflen = BUFLEN;
1988	rec->errors.data = emalloc(rec->errors.buflen);
1989	rec->errors.offset = 0;
1990}
1991
1992/*
1993 * free_secbuffs--
1994 *  This function should be called at the end, when all the pages have been
1995 *  parsed.
1996 *  It frees the memory allocated to sec_buffs by init_secbuffs in the starting.
1997 */
1998static void
1999free_secbuffs(mandb_rec *rec)
2000{
2001	free(rec->desc.data);
2002	free(rec->lib.data);
2003	free(rec->return_vals.data);
2004	free(rec->exit_status.data);
2005	free(rec->env.data);
2006	free(rec->files.data);
2007	free(rec->diagnostics.data);
2008	free(rec->errors.data);
2009}
2010
2011static void
2012replace_hyph(char *str)
2013{
2014	char *iter = str;
2015	while ((iter = strchr(iter, ASCII_HYPH)) != NULL)
2016		*iter = '-';
2017
2018	iter = str;
2019	while ((iter = strchr(iter, ASCII_NBRSP)) != NULL)
2020		*iter = '-';
2021}
2022
2023static char *
2024parse_escape(const char *str)
2025{
2026	const char *backslash, *last_backslash;
2027	char *result, *iter;
2028	size_t len;
2029
2030	assert(str);
2031
2032	last_backslash = str;
2033	backslash = strchr(str, '\\');
2034	if (backslash == NULL) {
2035		result = estrdup(str);
2036		replace_hyph(result);
2037		return result;
2038	}
2039
2040	result = emalloc(strlen(str) + 1);
2041	iter = result;
2042
2043	do {
2044		len = backslash - last_backslash;
2045		memcpy(iter, last_backslash, len);
2046		iter += len;
2047		if (backslash[1] == '-' || backslash[1] == ' ') {
2048			*iter++ = backslash[1];
2049			last_backslash = backslash + 2;
2050			backslash = strchr(backslash + 2, '\\');
2051		} else {
2052			++backslash;
2053			mandoc_escape(&backslash, NULL, NULL);
2054			last_backslash = backslash;
2055			if (backslash == NULL)
2056				break;
2057			backslash = strchr(last_backslash, '\\');
2058		}
2059	} while (backslash != NULL);
2060	if (last_backslash != NULL)
2061		strcpy(iter, last_backslash);
2062
2063	replace_hyph(result);
2064	return result;
2065}
2066
2067/*
2068 * append--
2069 *  Concatenates a space and src at the end of sbuff->data (much like concat in
2070 *  apropos-utils.c).
2071 *  Rather than reallocating space for writing data, it uses the value of the
2072 *  offset field of sec_buff to write new data at the free space left in the
2073 *  buffer.
2074 *  In case the size of the data to be appended exceeds the number of bytes left
2075 *  in the buffer, it reallocates buflen number of bytes and then continues.
2076 *  Value of offset field should be adjusted as new data is written.
2077 *
2078 *  NOTE: This function does not write the null byte at the end of the buffers,
2079 *  write a null byte at the position pointed to by offset before inserting data
2080 *  in the db.
2081 */
2082static void
2083append(secbuff *sbuff, const char *src)
2084{
2085	short flag = 0;
2086	size_t srclen, newlen;
2087	char *temp;
2088
2089	assert(src != NULL);
2090	temp = parse_escape(src);
2091	srclen = strlen(temp);
2092
2093	if (sbuff->data == NULL) {
2094		sbuff->data = emalloc(sbuff->buflen);
2095		sbuff->offset = 0;
2096	}
2097
2098	newlen = sbuff->offset + srclen + 2;
2099	if (newlen >= sbuff->buflen) {
2100		while (sbuff->buflen < newlen)
2101			sbuff->buflen += sbuff->buflen;
2102		sbuff->data = erealloc(sbuff->data, sbuff->buflen);
2103		flag = 1;
2104	}
2105
2106	/* Append a space at the end of the buffer. */
2107	if (sbuff->offset || flag)
2108		sbuff->data[sbuff->offset++] = ' ';
2109	/* Now, copy src at the end of the buffer. */
2110	memcpy(sbuff->data + sbuff->offset, temp, srclen);
2111	sbuff->offset += srclen;
2112	free(temp);
2113}
2114
2115static void
2116usage(void)
2117{
2118	fprintf(stderr, "Usage: %s [-floQqv] [-C path]\n", getprogname());
2119	exit(1);
2120}
2121