Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/stringTable.c

1/*
2 * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24/*
25 * Copyright 1993 NeXT, Inc.
26 * All rights reserved.
27 */
28
29#include "bootstruct.h"
30#include "libsaio.h"
31#include "boot.h"
32#include "xml.h"
33
34extern char *Language;
35extern char *LoadableFamilies;
36
37bool sysConfigValid;
38
39/*
40 * Compare a string to a key with quoted characters
41 */
42static inline int
43keyncmp(const char *str, const char *key, int n)
44{
45 int c;
46 while (n--) {
47c = *key++;
48if (c == '\\') {
49 switch(c = *key++) {
50 case 'n':
51c = '\n';
52break;
53 case 'r':
54c = '\r';
55break;
56 case 't':
57c = '\t';
58break;
59 default:
60break;
61 }
62} else if (c == '\"') {
63 /* Premature end of key */
64 return 1;
65}
66if (c != *str++) {
67 return 1;
68}
69 }
70 return 0;
71}
72
73#if UNUSED
74
75static void eatThru(char val, const char **table_p)
76{
77register const char *table = *table_p;
78register bool found = false;
79
80while (*table && !found)
81{
82if (*table == '\\') table += 2;
83else
84{
85if (*table == val) found = true;
86table++;
87}
88}
89*table_p = table;
90}
91
92/* Remove key and its associated value from the table. */
93
94bool
95removeKeyFromTable(const char *key, char *table)
96{
97 register int len;
98 register char *tab;
99 char *buf;
100
101 len = strlen(key);
102 tab = (char *)table;
103 buf = (char *)malloc(len + 3);
104
105 sprintf(buf, "\"%s\"", key);
106 len = strlen(buf);
107
108 while(*tab) {
109 if(strncmp(buf, tab, len) == 0) {
110 char c;
111
112 while((c = *(tab + len)) != ';') {
113 if(c == 0) {
114 len = -1;
115 goto out;
116 }
117 len++;
118 }
119 len++;
120 if(*(tab + len) == '\n') len++;
121 goto out;
122 }
123 tab++;
124 }
125 len = -1;
126out:
127 free(buf);
128
129 if(len == -1) return false;
130
131 while((*tab = *(tab + len))) {
132 tab++;
133 }
134
135 return true;
136}
137
138char *
139newStringFromList(
140 char **list,
141 int *size
142)
143{
144 char *begin = *list, *end;
145 char *newstr;
146 int newsize = *size;
147 int bufsize;
148
149 while (*begin && newsize && isspace(*begin)) {
150begin++;
151newsize--;
152 }
153 end = begin;
154 while (*end && newsize && !isspace(*end)) {
155end++;
156newsize--;
157 }
158 if (begin == end)
159return 0;
160 bufsize = end - begin + 1;
161 newstr = malloc(bufsize);
162 strlcpy(newstr, begin, bufsize);
163 *list = end;
164 *size = newsize;
165 return newstr;
166}
167
168#endif
169
170/*
171 * compress == compress escaped characters to one character
172 */
173int stringLength(const char *table, int compress)
174{
175int ret = 0;
176
177while (*table)
178{
179if (*table == '\\')
180{
181table += 2;
182ret += 1 + (compress ? 0 : 1);
183}
184else
185{
186if (*table == '\"') return ret;
187ret++;
188table++;
189}
190}
191return ret;
192}
193
194
195bool getValueForConfigTableKey(config_file_t *config, const char *key, const char **val, int *size)
196{
197if (config->dictionary != 0 ) {
198// Look up key in XML dictionary
199TagPtr value;
200value = XMLGetProperty(config->dictionary, key);
201if (value != 0) {
202if (value->type != kTagTypeString) {
203error("Non-string tag '%s' found in config file\n",
204 key);
205return false;
206}
207*val = value->string;
208*size = strlen(value->string);
209return true;
210}
211} else {
212
213// Legacy plist-style table
214
215}
216
217return false;
218}
219
220#if UNUSED
221
222/*
223 * Returns a new malloc'ed string if one is found
224 * in the string table matching 'key'. Also translates
225 * \n escapes in the string.
226 */
227char *newStringForStringTableKey(
228char *table,
229char *key,
230config_file_t *config
231)
232{
233 const char *val;
234 char *newstr, *p;
235 int size;
236
237 if (getValueForConfigTableKey(config, key, &val, &size)) {
238newstr = (char *)malloc(size+1);
239for (p = newstr; size; size--, p++, val++) {
240 if ((*p = *val) == '\\') {
241switch (*++val) {
242case 'r':
243 *p = '\r';
244 break;
245case 'n':
246 *p = '\n';
247 break;
248case 't':
249 *p = '\t';
250 break;
251default:
252 *p = *val;
253 break;
254}
255size--;
256 }
257}
258*p = '\0';
259return newstr;
260 } else {
261return 0;
262 }
263}
264
265#endif
266
267char *
268newStringForKey(char *key, config_file_t *config)
269{
270 const char *val;
271 char *newstr;
272 int size;
273
274 if (getValueForKey(key, &val, &size, config) && size) {
275newstr = (char *)malloc(size + 1);
276strlcpy(newstr, val, size + 1);
277return newstr;
278 } else {
279return 0;
280 }
281}
282
283/* parse a command line
284 * in the form: [<argument> ...] [<option>=<value> ...]
285 * both <option> and <value> must be either composed of
286 * non-whitespace characters, or enclosed in quotes.
287 */
288
289static const char *getToken(const char *line, const char **begin, int *len)
290{
291 if (*line == '\"') {
292*begin = ++line;
293while (*line && *line != '\"')
294 line++;
295*len = line++ - *begin;
296 } else {
297*begin = line;
298while (*line && !isspace(*line) && *line != '=')
299 line++;
300*len = line - *begin;
301 }
302 return line;
303}
304
305bool getValueForBootKey(const char *line, const char *match, const char **matchval, int *len)
306{
307 const char *key, *value;
308 int key_len, value_len;
309 bool retval = false;
310
311 while (*line) {
312/* look for keyword or argument */
313while (isspace(*line)) line++;
314
315/* now look for '=' or whitespace */
316line = getToken(line, &key, &key_len);
317/* line now points to '=' or space */
318if (*line && !isspace(*line)) {
319 line = getToken(++line, &value, &value_len);
320} else {
321 value = line;
322 value_len = 0;
323}
324if ((strlen(match) == key_len)
325 && strncmp(match, key, key_len) == 0) {
326 *matchval = value;
327 *len = value_len;
328 retval = true;
329 /* Continue to look for this key; last one wins. */
330}
331 }
332 return retval;
333}
334
335/* Return NULL if no option has been successfully retrieved, or the string otherwise */
336const char * getStringForKey(const char * key, config_file_t *config)
337{
338 static const char* value =0;
339 int len=0;
340 if(!getValueForKey(key, &value, &len, config)) value = 0;
341 return value;
342}
343
344
345/* Returns TRUE if a value was found, FALSE otherwise.
346 * The boolean value of the key is stored in 'val'.
347 */
348
349bool getBoolForKey( const char *key, bool *result_val, config_file_t *config )
350{
351 const char *key_val;
352 int size;
353
354 if (getValueForKey(key, &key_val, &size, config)) {
355 if ( (size >= 1) && (key_val[0] == 'Y' || key_val[0] == 'y') ) {
356 *result_val = true;
357 } else {
358 *result_val = false;
359 }
360 return true;
361 }
362 return false;
363}
364
365bool getIntForKey( const char *key, int *value, config_file_t *config )
366{
367 const char *val;
368 int size, sum;
369 bool negative = false;
370
371 if (getValueForKey(key, &val, &size, config))
372{
373if ( size )
374{
375if (*val == '-')
376{
377negative = true;
378val++;
379size--;
380}
381
382for (sum = 0; size > 0; size--)
383{
384if (*val < '0' || *val > '9')
385return false;
386
387sum = (sum * 10) + (*val++ - '0');
388}
389
390if (negative)
391sum = -sum;
392
393*value = sum;
394return true;
395}
396}
397 return false;
398}
399
400/*
401 *
402 */
403
404bool getDimensionForKey( const char *key, unsigned int *value, config_file_t *config, unsigned int dimension_max, unsigned int object_size )
405{
406const char *val;
407
408 int size = 0;
409int sum = 0;
410
411bool negative = false;
412bool percentage = false;
413
414 if (getValueForKey(key, &val, &size, config))
415{
416if ( size )
417{
418if (*val == '-')
419{
420negative = true;
421val++;
422size--;
423}
424
425if (val[size-1] == '%')
426{
427percentage = true;
428size--;
429}
430
431// convert string to integer
432for (sum = 0; size > 0; size--)
433{
434if (*val < '0' || *val > '9')
435return false;
436
437sum = (sum * 10) + (*val++ - '0');
438}
439
440if (percentage)
441sum = ( dimension_max * sum ) / 100;
442
443// calculate offset from opposite origin
444if (negative)
445sum = ( ( dimension_max - object_size ) - sum );
446
447} else {
448
449// null value calculate center
450sum = ( dimension_max - object_size ) / 2;
451
452}
453
454*value = (uint16_t) sum;
455return true;
456}
457
458// key not found
459 return false;
460}
461
462/*
463 *get color value from plist format #RRGGBB
464 */
465
466bool getColorForKey( const char *key, unsigned int *value, config_file_t *config )
467{
468 const char *val;
469 int size;
470
471 if (getValueForKey(key, &val, &size, config))
472{
473if (*val == '#')
474{
475 val++;
476*value = strtol(val, NULL, 16);
477return true;
478 }
479 }
480 return false;
481}
482
483bool getValueForKey( const char *key, const char **val, int *size, config_file_t *config )
484{
485 const char *overrideVal;
486 int overrideSize;
487 bool override, ret;
488
489 if (getValueForBootKey(bootArgs->CommandLine, key, val, size))
490 return true;
491
492 ret = getValueForConfigTableKey(config, key, val, size);
493
494 // Try to find alternate keys in bootInfo->overrideConfig
495 // and prefer its values with the exceptions for
496 // "Kernel"="mach_kernel" and "Kernel Flags"="".
497
498 if (config->canOverride)
499 {
500 if (getValueForConfigTableKey(&bootInfo->overrideConfig, key, &overrideVal, &overrideSize))
501 {
502 override = true;
503
504 if (ret && (strcmp(key, "Kernel") == 0) && (strcmp(overrideVal, "mach_kernel") == 0))
505 override = false;
506
507 if (ret && (strcmp(key, "Kernel Flags") == 0) && (overrideSize == 0))
508 override = false;
509
510 if (override)
511 {
512 *val = overrideVal;
513 *size = overrideSize;
514 return true;
515 }
516 }
517 }
518
519 return ret;
520}
521
522
523#if UNUSED
524void
525printSystemConfig(char *p1)
526{
527 char *p2 = p1, tmp;
528
529 while (*p1 != '\0') {
530while (*p2 != '\0' && *p2 != '\n') p2++;
531tmp = *p2;
532*p2 = '\0';
533printf("%s\n", p1);
534*p2 = tmp;
535if (tmp == '\0') break;
536p1 = ++p2;
537 }
538}
539#endif
540
541//==========================================================================
542// ParseXMLFile
543// Modifies the input buffer.
544// Expects to see one dictionary in the XML file.
545// Puts the first dictionary it finds in the
546// tag pointer and returns 0, or returns -1 if not found
547// (and does not modify dict pointer).
548// Prints an error message if there is a parsing error.
549//
550int ParseXMLFile( char * buffer, TagPtr * dict )
551{
552 long length, pos;
553 TagPtr tag;
554 pos = 0;
555 char *configBuffer;
556
557 configBuffer = malloc(strlen(buffer)+1);
558 strcpy(configBuffer, buffer);
559
560 while (1)
561 {
562 length = XMLParseNextTag(configBuffer + pos, &tag);
563 if (length == -1) break;
564
565 pos += length;
566
567 if (tag == 0) continue;
568 if (tag->type == kTagTypeDict) break;
569
570 XMLFreeTag(tag);
571 }
572 free(configBuffer);
573 if (length < 0) {
574 error ("Error parsing plist file\n");
575 return -1;
576 }
577 *dict = tag;
578 return 0;
579}
580
581/* loadConfigFile
582 *
583 * Returns 0 - successful.
584 * -1 - unsuccesful.
585 */
586int loadConfigFile (const char *configFile, config_file_t *config)
587{
588int fd, count;
589
590if ((fd = open_bvdev("bt(0,0)", configFile, 0)) < 0) {
591return -1;
592}
593// read file
594count = read(fd, config->plist, IO_CONFIG_DATA_SIZE);
595close(fd);
596
597// build xml dictionary
598ParseXMLFile(config->plist, &config->dictionary);
599return 0;
600}
601
602
603/* loadSystemConfig
604 *
605 * Returns 0 - successful.
606 * -1 - unsuccesful.
607 */
608int loadSystemConfig(config_file_t *config)
609{
610char *dirspec[] = {
611"/Library/Preferences/SystemConfiguration/com.apple.Boot.plist",
612};
613
614int i, fd, count, ret=-1;
615
616for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++)
617{
618if ((fd = open(dirspec[i], 0)) >= 0)
619{
620// read file
621count = read(fd, config->plist, IO_CONFIG_DATA_SIZE);
622close(fd);
623
624// build xml dictionary
625ParseXMLFile(config->plist, &config->dictionary);
626sysConfigValid = true;
627ret=0;
628
629// enable canOverride flag
630config->canOverride = true;
631
632break;
633}
634}
635return ret;
636}
637
638/* loadChameleonConfig
639 *
640 * Returns 0 - successful.
641 * -1 - unsuccesful.
642 */
643int loadChameleonConfig(config_file_t *config)
644{
645char *dirspec[] = {
646"rd(0,0)/Extra/org.chameleon.Boot.plist",
647"/Extra/org.chameleon.Boot.plist",
648"rd(0,0)/Extra/com.apple.Boot.plist", /* DEPRECIATED */
649"/Extra/com.apple.Boot.plist", /* DEPRECIATED */
650};
651
652int i, fd, count, ret=-1;
653
654for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++)
655{
656if ((fd = open(dirspec[i], 0)) >= 0)
657{
658 // Check for depreciated file names and annoy the user about it.
659 if(strstr(dirspec[i], "com.apple.Boot.plist"))
660 {
661 printf("%s is depreciated.\n", dirspec[i]);
662 dirspec[i][strlen(dirspec[i]) - strlen("com.apple.Boot.plist")] = 0;
663 printf("Please us the file %sorg.chameleon.Boot.plist instead\n", dirspec[i]);
664 pause();
665 }
666// read file
667count = read(fd, config->plist, IO_CONFIG_DATA_SIZE);
668close(fd);
669
670// build xml dictionary
671ParseXMLFile(config->plist, &config->dictionary);
672sysConfigValid = true;
673ret=0;
674break;
675}
676}
677return ret;
678}
679
680/* loadHelperConfig
681 *
682 * Returns 0 - successful.
683 * -1 - unsuccesful.
684 */
685int loadHelperConfig(config_file_t *config)
686{
687char *dirspec[] = {
688"/com.apple.boot.P/Library/Preferences/SystemConfiguration/com.apple.Boot.plist",
689"/com.apple.boot.R/Library/Preferences/SystemConfiguration/com.apple.Boot.plist",
690"/com.apple.boot.S/Library/Preferences/SystemConfiguration/com.apple.Boot.plist"
691};
692
693int i, fd, count, ret=-1;
694
695for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++)
696{
697if ((fd = open(dirspec[i], 0)) >= 0)
698{
699// read file
700count = read(fd, config->plist, IO_CONFIG_DATA_SIZE);
701close(fd);
702
703// build xml dictionary
704ParseXMLFile(config->plist, &config->dictionary);
705sysConfigValid = true;
706ret=0;
707break;
708}
709}
710return ret;
711}
712
713char * newString(const char * oldString)
714{
715 if ( oldString )
716 return strcpy(malloc(strlen(oldString)+1), oldString);
717 else
718 return NULL;
719}
720
721/*
722 * Extracts the next argument from the command line, double quotes are allowed here.
723 */
724char * getNextArg(char ** argPtr, char * val)
725{
726 char * ptr = *argPtr;
727 const char * strStart;
728 int len = 0;
729 bool isQuoted = false;
730
731 *val = '\0';
732
733 // Scan for the next non-whitespace character.
734 while ( *ptr && (*ptr == ' ' || *ptr == '=') )
735 {
736 ptr++;
737 }
738
739 strStart = ptr;
740
741 // Skip the leading double quote character.
742 if (*ptr == '\"')
743 {
744 isQuoted = true;
745 ptr++;
746 strStart++;
747 }
748
749 // Scan for the argument terminator character.
750 // This can be either a NULL character - in case we reach the end of the string,
751 // a double quote in case of quoted argument,
752 // or a whitespace character (' ' or '=') for non-quoted argument.
753 while (*ptr && !( (isQuoted && (*ptr == '\"')) ||
754 (!isQuoted && (*ptr == ' ' || *ptr == '=')) )
755 )
756 {
757 ptr++;
758 }
759
760 len = ptr - strStart;
761
762 // Skip the closing double quote character and adjust
763 // the starting pointer for the next getNextArg call.
764 if (*ptr && isQuoted && *ptr == '\"')
765 ptr++;
766
767 // Copy the extracted argument to val.
768 strncat(val, strStart, len);
769
770 // Set command line pointer.
771 *argPtr = ptr;
772
773 return ptr;
774}
775

Archive Download this file

Revision: 1105