8748 loader: ptblread() is broken with >512B sectors
[unleashed.git] / usr / src / boot / sys / boot / common / interp_backslash.c
blob3cbdd5b105ea5769590f4130e11f5bdaa772b435
1 /*-
2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that the following conditions
4 * are met:
5 * 1. Redistributions of source code must retain the above copyright
6 * notice, this list of conditions and the following disclaimer.
7 * 2. Redistributions in binary form must reproduce the above copyright
8 * notice, this list of conditions and the following disclaimer in the
9 * documentation and/or other materials provided with the distribution.
11 * Jordan K. Hubbard
12 * 29 August 1998
14 * Routine for doing backslash elimination.
17 #include <sys/cdefs.h>
18 __FBSDID("$FreeBSD$");
20 #include <stand.h>
21 #include <string.h>
22 #include "bootstrap.h"
24 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
27 * backslash: Return malloc'd copy of str with all standard "backslash
28 * processing" done on it. Original can be free'd if desired.
30 char *
31 backslash(char *str)
34 * Remove backslashes from the strings. Turn \040 etc. into a single
35 * character (we allow eight bit values). Currently NUL is not
36 * allowed.
38 * Turn "\n" and "\t" into '\n' and '\t' characters. Etc.
41 char *new_str;
42 int seenbs = 0;
43 int i = 0;
45 if ((new_str = strdup(str)) == NULL)
46 return NULL;
48 while (*str) {
49 if (seenbs) {
50 seenbs = 0;
51 switch (*str) {
52 case '\\':
53 new_str[i++] = '\\';
54 str++;
55 break;
57 /* preserve backslashed quotes, dollar signs */
58 case '\'':
59 case '"':
60 case '$':
61 new_str[i++] = '\\';
62 new_str[i++] = *str++;
63 break;
65 case 'b':
66 new_str[i++] = '\b';
67 str++;
68 break;
70 case 'f':
71 new_str[i++] = '\f';
72 str++;
73 break;
75 case 'r':
76 new_str[i++] = '\r';
77 str++;
78 break;
80 case 'n':
81 new_str[i++] = '\n';
82 str++;
83 break;
85 case 's':
86 new_str[i++] = ' ';
87 str++;
88 break;
90 case 't':
91 new_str[i++] = '\t';
92 str++;
93 break;
95 case 'v':
96 new_str[i++] = '\13';
97 str++;
98 break;
100 case 'z':
101 str++;
102 break;
104 case '0': case '1': case '2': case '3': case '4':
105 case '5': case '6': case '7': case '8': case '9': {
106 char val;
108 /* Three digit octal constant? */
109 if (*str >= '0' && *str <= '3' &&
110 *(str + 1) >= '0' && *(str + 1) <= '7' &&
111 *(str + 2) >= '0' && *(str + 2) <= '7') {
113 val = (DIGIT(*str) << 6) + (DIGIT(*(str + 1)) << 3) +
114 DIGIT(*(str + 2));
116 /* Allow null value if user really wants to shoot
117 at feet, but beware! */
118 new_str[i++] = val;
119 str += 3;
120 break;
123 /* One or two digit hex constant?
124 * If two are there they will both be taken.
125 * Use \z to split them up if this is not wanted.
127 if (*str == '0' &&
128 (*(str + 1) == 'x' || *(str + 1) == 'X') &&
129 isxdigit(*(str + 2))) {
130 val = DIGIT(*(str + 2));
131 if (isxdigit(*(str + 3))) {
132 val = (val << 4) + DIGIT(*(str + 3));
133 str += 4;
135 else
136 str += 3;
137 /* Yep, allow null value here too */
138 new_str[i++] = val;
139 break;
142 break;
144 default:
145 new_str[i++] = *str++;
146 break;
149 else {
150 if (*str == '\\') {
151 seenbs = 1;
152 str++;
154 else
155 new_str[i++] = *str++;
159 if (seenbs) {
161 * The final character was a '\'. Put it in as a single backslash.
163 new_str[i++] = '\\';
165 new_str[i] = '\0';
166 return new_str;