File: qla_opts.c

package info (click to toggle)
qla2x00 7.05.00-1
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 4,116 kB
  • ctags: 5,000
  • sloc: ansic: 73,996; makefile: 362
file content (1181 lines) | stat: -rw-r--r-- 25,421 bytes parent folder | download
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
/*
 * Program to display or modify configuration data for an executable.
 * In order for this to work, the main application or a library it contains
 * must have been built using the data structures provided by the
 * include file "configprog.h".
 *
 * Copyright (c) 2003 by David I. Bell.
 * Permission is granted to copy, distribute, modify, and use this source
 * file provided that this copyright notice remains intact.
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include <memory.h>
#include <string.h>
#define _GNU_SOURCE
#include <getopt.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/utsname.h>

#include "qla_opts.h"


/*
 * Make a typedef for our convenience.
 */
typedef	config_entry_t	ENTRY;


/*
 * Boolean definitions.
 */
typedef	int	BOOL;

#define	TRUE	((BOOL) 1)
#define	FALSE	((BOOL) 0)


/*
 * Useful macros to examine table entries.
 */
#define	TO_ENTRY(cp)		((ENTRY *) (cp))
#define	TO_CONST_ENTRY(cp)	((const ENTRY *) (cp))
#define	TO_CP(entry)		((char *) (entry))
#define	NEXT_ENTRY(entry)	TO_ENTRY(TO_CP(entry) + (entry)->next)
#define	NEXT_CONST_ENTRY(entry)	TO_CONST_ENTRY(TO_CP(entry) + (entry)->next)
#define	IS_LAST(entry)		((entry)->next <= 0)
#define	IS_PADDING(entry)	(!IS_LAST(entry) && ((entry)->name[0] == '\0'))
#define	IS_ID(entry)		(!IS_LAST(entry) && (strcmp((entry)->name, CONFIG_ID_MAGIC) == 0))


/*
 * Sizes and other definitions.
 */
#define	DEFAULT_TABLE	"MAIN"
#define	VALUE_SIZE	sizeof(CONFIG_VALUE_MAGIC)
#define	NULL_ENTRY	((ENTRY *) 0)
#define	BUF_SIZE	sizeof(config_table_def_t) + NAME_SIZE  /* enough to read in whole config table */
#define	ALIGNMENT	4


/*
 * Structure which holds information about one of the configuration
 * tables found in the executable.  The table name is usually a
 * pointer into the table data, and so should not be freed.
 */
typedef	struct TABLE	TABLE;

struct	TABLE
{
	const char *	name;		/* name of this table */
	off_t		offset;		/* file offset of table */
	long		size;		/* size of the table */
	char *		data;		/* data for the table */
	TABLE *		nextTable;	/* next table in list */
};


void
qldbg_print(char *);
/*
 * Local function definitions.
 */
static	void	usage(int);
static	void	printNames(void);
static	void	printValues(void);
static	void	setValues(void);
static	void	setTableValues(TABLE *);
static	void	printTableValues(const TABLE *);
static	void	openProgram(const char *, BOOL);
static	void	closeProgram(void);
static	TABLE *	getTable(const char *);
static	void	findTables(void);
static	void	readTable(TABLE *);
static	void	packTable(TABLE *);
static	int	getTotalSpace(const TABLE *);
static	ENTRY *	findEntry(const TABLE *, const char *);
static	ENTRY *	moveEntry(ENTRY *);
static	int	getEntrySize(const ENTRY *);
static	int	search(const char *, int);
static	void	fatalError(const char *);
static	void	systemError(const char *);


/*
 * Global variables.
 */
FILE *		dbghandle = NULL;
char		dbgstr[160];
static	int		fd;		/* opened file descriptor */
static	TABLE *		tableList;	/* linked list of configuration tables */
static	const char *	tableName;	/* configuration table name to process */

/*
 * Our version number.
 */
static const char *	version = CONFIG_VERSION;


/*
 * Usage text for the program.
 * This array must be terminated by a null pointer.
 */
static	const char *	usageText[] =
{
	"",
	"qla_opts -- QLogic driver options utility",
	"",
	"Usage: qla_opts [OPTIONS]... MODULE",
	"",
	"Description:",
	"  Configure/Display QLogic Driver option information for a MODULE.",
	"",
	"  -f, --file=[FILE]",
	"        use module FILE for operations",
	"  -h, --help",
	"        display this help and exit",
	"  -p, --print",
	"        display option data embedded in a module",
	"  -v, --verbose",
	"        display extra debug information during operations",
	"  -w, --write",
	"        write option data to a module",
	"",
	"  MODULE must be 'qla2100_conf', 'qla2200_conf', 'qla2300_conf'.",
	"   or 'qla200_conf'.",
	"",
	"Option Data:",
	"  Option data is read from one of the following files depending on the",
	"  value of the MODULE parameter:",
	"",
	"        FILE               MODULE",
	"        -----------------  -------",
	"        /etc/qla2100.conf  qla2100_conf",
	"        /etc/qla2200.conf  qla2200_conf",
	"        /etc/qla2300.conf  qla2300_conf",
	"        /etc/qla200.conf   qla20_conf",
	"",
	"  By default, the following directory is used to specify the location of",
	"  the modules to update:", 
	"",
	"        /lib/modules/`uname -r`/kernel/drivers/scsi",
	"",
	"  Where `uname -r` resolves to the release name of the currently running",
	"  kernel.",
	"",
	"  If a FILE is specified, MODULE instructs qla_opts to read option data ",
	"  from the appropriate configuration file.",
	"",
	"Examples:",
	"",
	"  Display option data for the default qla2300_conf module:",
	"",
	"        # qla_opts --print qla2300_conf",
	"",
	"  Write option data to the qla2300_conf module:",
	"",
	"        # qla_opts --write qla2300_conf",
	"",
	"  Write qla2300_conf type option data for a specified module:",
	"",
	"        # qla_opts --write --file=/usr/smith/driver/qla2300_conf.o qla2300_conf",
	"",
	0
};

#define OPT_PRINT	0
#define OPT_WRITE	1

#define MODULE_NONE	0
#define MODULE_QLA2100	1
#define MODULE_QLA2200_CONF	2
#define MODULE_QLA2300_CONF	3
#define MODULE_QLA200_CONF	4
struct module_info {

	char	*name;
	int	id;
	char	*conf_fname;

};
static struct module_info modules[] = {

	/* qla2100 not supported */
	{ "qla2200_conf", MODULE_QLA2200_CONF, "/etc/qla2200.conf" },
	{ "qla2300_conf", MODULE_QLA2300_CONF, "/etc/qla2300.conf" },
	{ "qla200_conf",  MODULE_QLA200_CONF, "/etc/qla200.conf" },
	{ NULL, 0, NULL }
};
struct	module_info *module = NULL;

int	operation = OPT_PRINT;
int	verbose;
struct utsname uts_info;
char	def_module_path[PATH_MAX];
char	module_name[PATH_MAX] = { 0 };

int
main(int argc, char * const argv[])
{
	int	next_opt;
	const char	*short_opts = "f:hpvw";
	const struct option long_opts[] = {

		{ "file", 1, NULL, 'f' },
		{ "help", 0, NULL, 'h' },
		{ "print", 0, NULL, 'p' },
		{ "verbose", 0, NULL, 'v' },
		{ "write", 0, NULL, 'w' },
		{ NULL, 0, NULL, 0 }
	};
	struct	module_info *mod_iter;

	if (uname(&uts_info)) {
		fprintf(stderr, "***Unable to retrieve uname() system information...exiting!\n");
		exit(1);
	}

	/* Prepare update defaults */
	verbose = 0;
	sprintf(def_module_path, "/lib/modules/%s/kernel/drivers/scsi", uts_info.release);

	/* Scan through options */
	do {
		next_opt = getopt_long(argc, argv, short_opts, long_opts, NULL);
		switch (next_opt) {
		case 'f':
			/* Use alternate module
			 *
			 *   -f <module file> or --file=<module file>
			 */
			strcpy(module_name, optarg);
			break;

		case 'h':
			/* Display usage
			 *
			 *   -h or --help
			 */
			usage(0);
			break;

		case 'p':
			/* Display option information
			 *
			 *   -p or --print
			 */
			operation = OPT_PRINT;
			break;

		case 'v':
			/* Verbose operations
			 *
			 *   -v or --verbose
			 */
			verbose++;
			break;

		case 'w':
			/* Perform option write
			 *
			 *   -w or --write
			 */
			operation = OPT_WRITE;
			break;

		case '?':
			/* Invalid option */
			usage(1);
			break;

		case -1:
			/* Done with options */
			break;

		default:
			/* Something bad happened! */
			abort();
			break;
		}
	} while (next_opt != -1);

	/* Determine module */
	if (optind == argc) {
		printf("*** No MODULE specified!\n");
		usage(2);
	}
	module = NULL;
	for (mod_iter = modules; mod_iter->name; mod_iter++) {
		if (strcmp(argv[optind], mod_iter->name) == 0) {
			module = mod_iter;
			/* Default, if no module specified */
			if (!module_name[0])
				sprintf(module_name, "%s/%s.o",
				    def_module_path, mod_iter->name);
			break;
		}
	}
	if (module == MODULE_NONE) {
		printf("*** Invalid MODULE specified (%s)!\n", argv[optind]);
		usage(3);
	}

	/* Determine operation */
	if (verbose)
		printf("Updating module: (%s)\n", module_name);

	if (operation == OPT_PRINT)
		printValues();
	else if (operation == OPT_WRITE)
		setValues();

	return 0;
}

void
qldbg_print(char *string)
{
	if (dbghandle) {
		 fprintf(dbghandle, string);
	}
}


/*
 * Print out the usage text and exit.
 */
static void
usage(int ret_code)
{
	const char **	cpp;

	for (cpp = usageText; *cpp; cpp++)
		fprintf(stdout, "%s\n", *cpp);

	exit(ret_code);
}


/*
 * Print out all of the table names within the program.
 */
static void
printNames(void)
{
	const TABLE *	table;

	openProgram(module_name , FALSE);

	for (table = tableList; table; table = table->nextTable)
		printf("%s\n", table->name);

	closeProgram();
}


/*
 * Print out the configuration values in a program
 * for a table or all tables.
 */
static void
printValues(void)
{
	const TABLE *	table;

	openProgram(module_name, FALSE);

	if (tableName == 0)
	{
		if ((tableList == 0) && verbose)
		{
			printf("No configuration tables are present\n");

			return;
		}

		for (table = tableList; table; table = table->nextTable)
		{
			if (verbose && (table != tableList))
				printf("\n");

			printTableValues(table);
		}
	}
	else
	{
		table = getTable(tableName);

		printTableValues(table);
	}

	closeProgram();
}


/*
 * Set configuration values for one of the tables in a program.
 * Each value is of the form "name=value", where name must already
 * be present in the specified configuration table.
 */
static void
setValues(void)
{
	TABLE *	table;

	/*
	 * Open the program for writing.
	 */
	openProgram(module_name, TRUE);

	if (tableName == 0)
		tableName = module->name;

	table = getTable(tableName);

	setTableValues(table);

	closeProgram();
}


/*
 * Print the configuration values in the specified table.
 * This can be done in either brief or verbose format.
 */
static void
printTableValues(const TABLE * table)
{
	const ENTRY *	entry;
	int		totalSpace;
	const char *	format;

	format = "%s=%s\n";

	if (verbose)
	{
		format = "   %-16s %s\n";

		totalSpace = getTotalSpace(table);

		printf("Table \"%s\" (total %d bytes):\n",
			table->name, totalSpace);
	}

	entry = TO_CONST_ENTRY(table->data);
	entry = NEXT_CONST_ENTRY(entry);

	if (IS_ID(entry))
		entry = NEXT_CONST_ENTRY(entry);

	while (!IS_LAST(entry))
	{
		if (!IS_PADDING(entry)) {

			printf(format, entry->name, entry->value);
		}

		entry = NEXT_CONST_ENTRY(entry);
	}

}


/*
 * Set configuration values for the specified table in a program.
 * Each value is of the form "name=value", where name must already
 * be present in the specified configuration table.
 */
static void
setTableValues(TABLE * table)
{
	ENTRY *		entry;		/* current entry */
	const char *	name;		/* name of config variable */
	int		cc;		/* amount of data written */

	FILE	*conf_file;
	int	cnt;
	struct stat conf_stats;
	int	mod_max_size;
	int	data_size;
	char	*conf_data;


	conf_file = fopen(module->conf_fname, "r");
	if (conf_file == NULL) {
		fprintf(stderr,
		    "qla_opts: unable to load conf file (%s)!!!\n",
		    module->conf_fname);

		exit(1);
	}

	if (verbose)
		printf("Using conf file: (%s)\n", module->conf_fname);

	/* Determine max size to read */
	mod_max_size = getTotalSpace(table);
	fstat(fileno(conf_file), &conf_stats);
	data_size = conf_stats.st_size;
	if (conf_stats.st_size > mod_max_size) {
		fprintf(stderr,
		    "qla_opts: reduce conf file size --  (max=%d)!!!\n",
		    mod_max_size);

		exit(1);
	}

	conf_data = malloc(data_size);
	cnt = fread(conf_data, sizeof(char), data_size, conf_file);
	if (cnt != data_size) {
		fprintf(stderr,
		    "qla_opts: unable to read conf data!!!\n");
		free(conf_data);

		exit(1);
	}
	fclose(conf_file);

	if (verbose)
		printf("Read %d (%s)\n", cnt, conf_data);

	readTable(table);

	/*
	 * Find the configuration entry with that name.
	 */
	entry = findEntry(table, "OPTIONS");
	if (entry == NULL_ENTRY) {
		fprintf(stderr,
			"%s: configuration name \"%s\" undefined\n",
			module_name, "OPTIONS");
		free(conf_data);

		exit(1);
	}

	/*
	 * Make sure the new value will fit, and then copy the
	 * new value into the table.
	 */
	if ((entry->value + strlen(conf_data)) >=
	    (TO_CP(entry) + entry->next)) {
		free(conf_data);
		fatalError("Insufficient room in table for specified "
		    "config values");
	}

	strcpy(entry->value, conf_data);

	free(conf_data);

	/*
	 * All new values have been set, now write back out the table.
	 */

	if (lseek(fd, table->offset, 0) < 0)
		systemError("lseek");

	cc = write(fd, table->data, table->size);

	if (cc < 0)
		systemError("write");

	if (cc != table->size)
		fatalError("Short write");

	if (verbose)
		printf("Successful update...\n");
}


/*
 * Find the entry corresponding to the specifed name.
 * Returns a pointer to the found configuration entry, or
 * NULL_ENTRY if there is no entry with that name.
 */
static ENTRY *
findEntry(const TABLE * table, const char * entryName)
{
	ENTRY *	entry;

	entry = TO_ENTRY(table->data);
	entry = NEXT_ENTRY(entry);

	while (!IS_LAST(entry))
	{
		if (strcmp(entry->name, entryName) == 0)
			return entry;

		entry = NEXT_ENTRY(entry);
	}

	return NULL_ENTRY;
}


/*
 * Move the specified entry to the end of the configuration table so that it
 * will be able to use the free space at the end of the table if necessary.
 * Returns the new position of the entry.
 */
static ENTRY *
moveEntry(ENTRY * entry)
{
	ENTRY *	nextEntry;	/* next entry after the one to be moved */
	ENTRY *	lastEntry;	/* last non-terminating entry */
	ENTRY *	tempEntry;	/* temporary use */
	char *	savedEntry;	/* storage for entry while it is being moved */
	int	entrySize;	/* actual size of the entry */
	int	lastEntrySize;	/* actual size of the last entry */
	int	copySize;	/* amount of data to copy up over entry */
	int	freeSpace;	/* amount of free space after last entry */

	/*
	 * If this is the last entry, or is the last user-specified entry
	 * then no moving is needed.
	 */
	if (IS_LAST(entry))
		return entry;

	nextEntry = NEXT_ENTRY(entry);

	if (IS_LAST(nextEntry))
		return entry;

	/*
	 * Get the real size of the entry to be moved, allocate a temporary
	 * buffer for it, and copy the entry into the temporary buffer.
	 */
	entrySize = getEntrySize(entry);

	savedEntry = malloc(entrySize);

	if (savedEntry == 0)
		fatalError("Not enough memory");

	memcpy(savedEntry, TO_CP(entry), entrySize);

	/*
	 * Now find the last non-terminating entry in the table.
	 * Then remove all of it's free space since we will give that
	 * free space to the entry that we are moving.
	 */
	lastEntry = nextEntry;
	tempEntry = NEXT_ENTRY(nextEntry);

	while (!IS_LAST(tempEntry))
	{
		lastEntry = tempEntry;
		tempEntry = NEXT_ENTRY(lastEntry);
	}

	lastEntrySize = getEntrySize(lastEntry);
	freeSpace = lastEntry->next - lastEntrySize;
	lastEntry->next = lastEntrySize;

	/*
	 * Move all of the entries past the one we are moving on top
	 * of the entry that we are moving.
	 */
	copySize = TO_CP(lastEntry) - TO_CP(nextEntry) + lastEntrySize;

	memmove(TO_CP(entry), TO_CP(nextEntry), copySize);

	/*
	 * Position to the location for the moved entry to be put back,
	 * copy it back there and free the temporary buffer, and finally
	 * give it the free space that we removed above.
	 */
	entry = TO_ENTRY(TO_CP(entry) + copySize);

	memcpy(TO_CP(entry), savedEntry, entrySize);

	free(savedEntry);

	entry->next = entrySize + freeSpace;

	return entry;
}


/*
 * Return the actual size of an entry based on its configuration value.
 * The size is rounded up to the next multiple of ALIGNMENT bytes.
 */
static int
getEntrySize(const ENTRY * entry)
{
	int	valueSize;	/* space used by config value */
	int	entrySize;	/* space used by whole entry */

	valueSize = strlen(entry->value) + 1;

	entrySize = CONFIG_NAME_SIZE + sizeof(int) + sizeof(int) + valueSize;

	if (entrySize % ALIGNMENT)
		entrySize += ALIGNMENT - (entrySize % ALIGNMENT);

	return entrySize;
}

/*
 * Find out the amount of total space in the configuration table.
 */
static int
getTotalSpace(const TABLE * table)
{
	const ENTRY *	entry;
	int		totalSpace;

	entry = TO_CONST_ENTRY(table->data);

	totalSpace = entry->next;

	entry = NEXT_CONST_ENTRY(entry);

	while (!IS_LAST(entry))
	{
		totalSpace += entry->next;

		entry = NEXT_CONST_ENTRY(entry);
	}

	return totalSpace;
}

/*
 * Return information about the specified table name.
 * Exits if the table is not present or is duplicated.
 */
static TABLE *
getTable(const char * tableName)
{
	TABLE *	table;
	TABLE *	foundTable;

	foundTable = 0;

	for (table = tableList; table; table = table->nextTable)
	{
		if (strcmp(table->name, tableName) == 0)
		{
			if (foundTable)
			{
				fprintf(stderr,
				    "%s: Duplicate configuration "
				    "table \"%s\"\n",
				    module_name, tableName);

				exit(1);
			}

			foundTable = table;
		}
	}

	if (foundTable == 0)
	{
		fprintf(stderr,
			"%s: Configuration table \"%s\" does not exist\n",
			module_name, tableName);

		exit(1);
	}

	/*
	 * Return the unique table.
	 */
	return foundTable;
}


/*
 * Search an opened file for the offsets of all of the configuration
 * tables in the opened file, and read those tables into memory.
 * The tricky part is handling strings which cross buffer boundaries.
 */
static void
findTables(void)
{
	TABLE *		table;		/* table entry */
	const char *	data;		/* data left to examine in buffer */
	int		dataSize;	/* amount of data left to examine */
	int		cc;		/* amount of data read */
	int		searchIndex;	/* index of found string */
	off_t		currentOffset;	/* current file position */
	off_t		tableOffset;	/* position of table */
	char		*buffer;
	BOOL		found = FALSE;

	currentOffset = 0;
	buffer = malloc(BUF_SIZE + NAME_SIZE);
	if (buffer == NULL)
		fatalError("Memory allocation failed");
	memset(buffer, 0, NAME_SIZE);

	/*
	 * Read data from the file a buffer at a time and search it.
	 * Keep copying the last bit of data from the end of the previous
	 * buffer to the beginning of the next buffer so that the magic
	 * string value can be found even across buffer boundaries.
	 */
	while ((cc = read(fd, buffer + NAME_SIZE, BUF_SIZE)) > 0)
	{
		data = buffer;
		dataSize = cc + NAME_SIZE;

		while ((searchIndex = search(data, dataSize)) >= 0)
		{
			table = (TABLE *) malloc(sizeof(TABLE));

			if (table == 0)
				fatalError("Memory allocation failed");

			tableOffset = currentOffset + (data - buffer) +
				searchIndex - NAME_SIZE;

			table->name = "";
			table->offset = tableOffset;
			table->size = 0;
			table->nextTable = tableList;

			tableList = table;

			data += (searchIndex + NAME_SIZE);
			dataSize -= (searchIndex + NAME_SIZE);

			found = TRUE;
			break;
		}
		if (found)
			break;

		memcpy(buffer, buffer + BUF_SIZE, NAME_SIZE);

		currentOffset += cc;
	}

	free(buffer);
	if (cc < 0)
		systemError("read");
}


/*
 * Read in the complete table data for the specified table given
 * its beginning offset.
 */
static void
readTable(TABLE * table)
{
	const ENTRY *	entry;		/* current config entry */
	char *		data;		/* current table data */
	int		dataSize;	/* current table data size */
	int		maxSize;	/* current max size of table */
	int		growSize;	/* amount to grow table by */
	int		cc;		/* amount read */

	/*
	 * Allocate the initial buffer which will be reallocated as needed.
	 */
	maxSize = BUF_SIZE;

	data = malloc(BUF_SIZE);
	if (data == 0)
		fatalError("Cannot allocate table");

	/*
	 * Seek to the correct position and read the first bit of the table.
	 * If the end of the file is reached early, then zero the buffer
	 * and an error will be detected later.
	 */
	if (lseek(fd, table->offset, 0) < 0)
		systemError("lseek");

	cc = read(fd, data, BUF_SIZE);

	if (cc < 0)
		systemError("read");

	if (cc < BUF_SIZE)
		memset(data + cc, 0, BUF_SIZE - cc);

	/*
	 * Verify more completely that this is really a valid table.
	 */
	entry = TO_ENTRY(data);

	if (memcmp(entry->name, CONFIG_NAME_MAGIC, NAME_SIZE))
		fatalError("Bad table magic name");

	if (memcmp(entry->value, CONFIG_VALUE_MAGIC, VALUE_SIZE))
		fatalError("Bad table magic value");

	if (entry->next <= NAME_SIZE + VALUE_SIZE) 
		fatalError("Bad next value or variable in table");

	/*
	 * Walk through the configuration table entries and check them
	 * slightly, while keeping track of the total length, and reading
	 * more of the file if necessary.
	 */
	dataSize = 0;
	while (!IS_LAST(entry))
	{
		if (getEntrySize(entry) > entry->next)
			fatalError("Bad offset to next value");

		dataSize += entry->next;

		entry = NEXT_ENTRY(entry);
		growSize = dataSize + entry->next - maxSize;

		if (growSize <= 0)
			continue;

		/*
		 * Getting near the end of our array.
		 * Grow it some more and read in the next bit of the table.
		 * Be sure to reposition the structure pointer since the
		 * table may have moved.
		 */
		growSize += (BUF_SIZE - growSize % BUF_SIZE);

		data = realloc(data, maxSize + growSize);

		if (data == 0)
			fatalError("Cannot reallocate table");

		entry = TO_ENTRY(data + maxSize);

		cc = read(fd, data + maxSize, growSize);

		if (cc < 0)
			systemError("read");

		if (cc < growSize)
			memset(data + maxSize + cc, 0, growSize - cc);

		maxSize += growSize;
	}

	/*
	 * Verify that the end of the table looks reasonable.
	 */
	if (strcmp(entry->name, CONFIG_END_NAME) ||
	    entry->value[0])
		fatalError("Bad end of table");

	/*
	 * Save the table information.
	 */
	table->data = data;
	table->size = dataSize;

	/*
	 * Find and save the table name if it is present.
	 * This can only be done when we are done reading the table since
	 * the table name is a pointer into the table data buffer.
	 */
	entry = TO_ENTRY(data);
	entry = NEXT_ENTRY(entry);

	if (IS_ID(entry))
		table->name = entry->value;
	else
		table->name = "unknown";
}


/*
 * Pack the entries in the configuration table to leave no gaps.
 * All the free space will be given to the last real entry in the table.
 * This also removes any padding entries that may exist.
 */
static void
packTable(TABLE * table)
{
	ENTRY *	entry;		/* current entry being squeezed */
	ENTRY *	oldNextEntry;	/* old location of next entry */
	ENTRY *	newNextEntry;	/* new location of next entry */
	int	entrySize;	/* real size of current entry */
	int	freeSize;	/* space freed from this entry */

	entry = TO_ENTRY(table->data);

	while (!IS_LAST(entry))
	{
		/*
		 * Examine the next entry following the current one.
		 * If it is the last entry, then we are done.
		 * Otherwise, if it is a padding entry, then delete it
		 * by giving it's space to the current entry, and then
		 * check again.
		 */
		oldNextEntry = NEXT_ENTRY(entry);

		if (IS_LAST(oldNextEntry))
			return;

		if (IS_PADDING(oldNextEntry))
		{
			entry->next += oldNextEntry->next;

			continue;
		}

		/*
		 * Get the size of the current entry, and calculate how
		 * much free space the entry contains.  If there is no
		 * free space, then go on to the next entry.
		 */
		entrySize = getEntrySize(entry);
		freeSize = (entry->next - entrySize);

		if (freeSize <= 0)
		{
			entry = oldNextEntry;

			continue;
		}

		/*
		 * There is some free space in this entry.
		 * Remove it by moving the next entry up on top of the
		 * free space, and give the free space to that entry.
		 */
		entry->next = entrySize;

		newNextEntry = NEXT_ENTRY(entry);

		memmove(TO_CP(newNextEntry), TO_CP(oldNextEntry),
		    oldNextEntry->next);

		newNextEntry->next += freeSize;

		entry = newNextEntry;
	}
}


/*
 * Open the specified module_name for reading or writing, and read in all
 * of the configuration tables found in the program so that they can
 * be examined or updated.
 */
static void
openProgram(const char * module_name, BOOL writeFlag)
{
	TABLE *	table;
	int	openMode;

	/*
	 * Open the file for reading or writing as specified.
	 */
	openMode = (writeFlag ? O_RDWR : O_RDONLY);

	fd = open(module_name, openMode);

	if (fd < 0)
		systemError("open");

	/*
	 * Find all of the tables in the program.
	 */
	findTables();

	/*
	 * Read in all of the tables.
	 */
	for (table = tableList; table; table = table->nextTable)
		readTable(table);
}



/*
 * Close the program if necessary.
 * Doesn't return on an error.
 */
static void
closeProgram(void)
{
	TABLE *	table;
	TABLE *	nexttable;

	if ((fd >= 0) && (close(fd) < 0))
		systemError("close");

	for (table = tableList; table; table = nexttable) {
		nexttable = table->nextTable;
		free(table);
	}
}


/*
 * Search the specified buffer for the first instance of the magic
 * CONFIG_NAME_MAGIC string.  Returns the index into the buffer of
 * the string, or -1 if it was not found.
 */
static int
search(const char * buffer, int bufferSize)
{
	const char *	data;		/* current location in buffer */
	const char *	oldData;	/* previous location in buffer */

	data = buffer;
	oldData = buffer;
	bufferSize -= NAME_SIZE;

	while (bufferSize > 0)
	{
		data = memchr(oldData, CONFIG_NAME_MAGIC[0], bufferSize);

		if (data == NULL)
			return -1;

		if ((data[1] == CONFIG_NAME_MAGIC[1]) &&
			(memcmp(data, CONFIG_NAME_MAGIC, NAME_SIZE) == 0))
		{
			return (data - buffer);
		}

		bufferSize -= (data - oldData) + 1;
		oldData = data + 1;
	}

	return -1;
}


/*
 * Complain about something being wrong and exit.
 */
static void
fatalError(const char * msg)
{
	fprintf(stderr, "%s: %s\n", module_name, msg);

	exit(1);
}


/*
 * Complain about an operating system error and exit.
 */
static void
systemError(const char * msg)
{
	fprintf(stderr, "%s: ", module_name);
	perror(msg);

	exit(1);
}

/* END CODE */