aslascii.c revision 1.1 1 1.1 christos /******************************************************************************
2 1.1 christos *
3 1.1 christos * Module Name: aslascii - ASCII detection and support routines
4 1.1 christos *
5 1.1 christos *****************************************************************************/
6 1.1 christos
7 1.1 christos /*
8 1.1 christos * Copyright (C) 2000 - 2014, Intel Corp.
9 1.1 christos * All rights reserved.
10 1.1 christos *
11 1.1 christos * Redistribution and use in source and binary forms, with or without
12 1.1 christos * modification, are permitted provided that the following conditions
13 1.1 christos * are met:
14 1.1 christos * 1. Redistributions of source code must retain the above copyright
15 1.1 christos * notice, this list of conditions, and the following disclaimer,
16 1.1 christos * without modification.
17 1.1 christos * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1 christos * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1 christos * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1 christos * including a substantially similar Disclaimer requirement for further
21 1.1 christos * binary redistribution.
22 1.1 christos * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1 christos * of any contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * Alternatively, this software may be distributed under the terms of the
27 1.1 christos * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1 christos * Software Foundation.
29 1.1 christos *
30 1.1 christos * NO WARRANTY
31 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1 christos * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1 christos * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1 christos * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1 christos * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1 christos * POSSIBILITY OF SUCH DAMAGES.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include "aslcompiler.h"
45 1.1 christos #include <acapps.h>
46 1.1 christos
47 1.1 christos #define _COMPONENT ACPI_COMPILER
48 1.1 christos ACPI_MODULE_NAME ("aslascii")
49 1.1 christos
50 1.1 christos
51 1.1 christos /* Local prototypes */
52 1.1 christos
53 1.1 christos static void
54 1.1 christos FlConsumeAnsiComment (
55 1.1 christos FILE *Handle,
56 1.1 christos ASL_FILE_STATUS *Status);
57 1.1 christos
58 1.1 christos static void
59 1.1 christos FlConsumeNewComment (
60 1.1 christos FILE *Handle,
61 1.1 christos ASL_FILE_STATUS *Status);
62 1.1 christos
63 1.1 christos
64 1.1 christos /*******************************************************************************
65 1.1 christos *
66 1.1 christos * FUNCTION: FlCheckForAcpiTable
67 1.1 christos *
68 1.1 christos * PARAMETERS: Handle - Open input file
69 1.1 christos *
70 1.1 christos * RETURN: Status
71 1.1 christos *
72 1.1 christos * DESCRIPTION: Determine if a file seems to be a binary ACPI table, via the
73 1.1 christos * following checks on what would be the table header:
74 1.1 christos * 0) File must be at least as long as an ACPI_TABLE_HEADER
75 1.1 christos * 1) The header length field must match the file size
76 1.1 christos * 2) Signature, OemId, OemTableId, AslCompilerId must be ASCII
77 1.1 christos *
78 1.1 christos ******************************************************************************/
79 1.1 christos
80 1.1 christos ACPI_STATUS
81 1.1 christos FlCheckForAcpiTable (
82 1.1 christos FILE *Handle)
83 1.1 christos {
84 1.1 christos ACPI_TABLE_HEADER Table;
85 1.1 christos UINT32 FileSize;
86 1.1 christos size_t Actual;
87 1.1 christos UINT32 i;
88 1.1 christos
89 1.1 christos
90 1.1 christos /* Read a potential table header */
91 1.1 christos
92 1.1 christos Actual = fread (&Table, 1, sizeof (ACPI_TABLE_HEADER), Handle);
93 1.1 christos fseek (Handle, 0, SEEK_SET);
94 1.1 christos
95 1.1 christos if (Actual < sizeof (ACPI_TABLE_HEADER))
96 1.1 christos {
97 1.1 christos return (AE_ERROR);
98 1.1 christos }
99 1.1 christos
100 1.1 christos /* Header length field must match the file size */
101 1.1 christos
102 1.1 christos FileSize = CmGetFileSize (Handle);
103 1.1 christos if (Table.Length != FileSize)
104 1.1 christos {
105 1.1 christos return (AE_ERROR);
106 1.1 christos }
107 1.1 christos
108 1.1 christos /*
109 1.1 christos * These fields must be ASCII:
110 1.1 christos * Signature, OemId, OemTableId, AslCompilerId.
111 1.1 christos * We allow a NULL terminator in OemId and OemTableId.
112 1.1 christos */
113 1.1 christos for (i = 0; i < ACPI_NAME_SIZE; i++)
114 1.1 christos {
115 1.1 christos if (!ACPI_IS_ASCII ((UINT8) Table.Signature[i]))
116 1.1 christos {
117 1.1 christos return (AE_ERROR);
118 1.1 christos }
119 1.1 christos
120 1.1 christos if (!ACPI_IS_ASCII ((UINT8) Table.AslCompilerId[i]))
121 1.1 christos {
122 1.1 christos return (AE_ERROR);
123 1.1 christos }
124 1.1 christos }
125 1.1 christos
126 1.1 christos for (i = 0; (i < ACPI_OEM_ID_SIZE) && (Table.OemId[i]); i++)
127 1.1 christos {
128 1.1 christos if (!ACPI_IS_ASCII ((UINT8) Table.OemId[i]))
129 1.1 christos {
130 1.1 christos return (AE_ERROR);
131 1.1 christos }
132 1.1 christos }
133 1.1 christos
134 1.1 christos for (i = 0; (i < ACPI_OEM_TABLE_ID_SIZE) && (Table.OemTableId[i]); i++)
135 1.1 christos {
136 1.1 christos if (!ACPI_IS_ASCII ((UINT8) Table.OemTableId[i]))
137 1.1 christos {
138 1.1 christos return (AE_ERROR);
139 1.1 christos }
140 1.1 christos }
141 1.1 christos
142 1.1 christos printf ("Binary file appears to be a valid ACPI table, disassembling\n");
143 1.1 christos return (AE_OK);
144 1.1 christos }
145 1.1 christos
146 1.1 christos
147 1.1 christos /*******************************************************************************
148 1.1 christos *
149 1.1 christos * FUNCTION: FlCheckForAscii
150 1.1 christos *
151 1.1 christos * PARAMETERS: Handle - Open input file
152 1.1 christos * Filename - Input filename
153 1.1 christos * DisplayErrors - TRUE if error messages desired
154 1.1 christos *
155 1.1 christos * RETURN: Status
156 1.1 christos *
157 1.1 christos * DESCRIPTION: Verify that the input file is entirely ASCII. Ignores characters
158 1.1 christos * within comments. Note: does not handle nested comments and does
159 1.1 christos * not handle comment delimiters within string literals. However,
160 1.1 christos * on the rare chance this happens and an invalid character is
161 1.1 christos * missed, the parser will catch the error by failing in some
162 1.1 christos * spectactular manner.
163 1.1 christos *
164 1.1 christos ******************************************************************************/
165 1.1 christos
166 1.1 christos ACPI_STATUS
167 1.1 christos FlCheckForAscii (
168 1.1 christos FILE *Handle,
169 1.1 christos char *Filename,
170 1.1 christos BOOLEAN DisplayErrors)
171 1.1 christos {
172 1.1 christos UINT8 Byte;
173 1.1 christos ACPI_SIZE BadBytes = 0;
174 1.1 christos BOOLEAN OpeningComment = FALSE;
175 1.1 christos ASL_FILE_STATUS Status;
176 1.1 christos
177 1.1 christos
178 1.1 christos Status.Line = 1;
179 1.1 christos Status.Offset = 0;
180 1.1 christos
181 1.1 christos /* Read the entire file */
182 1.1 christos
183 1.1 christos while (fread (&Byte, 1, 1, Handle) == 1)
184 1.1 christos {
185 1.1 christos /* Ignore comment fields (allow non-ascii within) */
186 1.1 christos
187 1.1 christos if (OpeningComment)
188 1.1 christos {
189 1.1 christos /* Check for second comment open delimiter */
190 1.1 christos
191 1.1 christos if (Byte == '*')
192 1.1 christos {
193 1.1 christos FlConsumeAnsiComment (Handle, &Status);
194 1.1 christos }
195 1.1 christos
196 1.1 christos if (Byte == '/')
197 1.1 christos {
198 1.1 christos FlConsumeNewComment (Handle, &Status);
199 1.1 christos }
200 1.1 christos
201 1.1 christos /* Reset */
202 1.1 christos
203 1.1 christos OpeningComment = FALSE;
204 1.1 christos }
205 1.1 christos else if (Byte == '/')
206 1.1 christos {
207 1.1 christos OpeningComment = TRUE;
208 1.1 christos }
209 1.1 christos
210 1.1 christos /* Check for an ASCII character */
211 1.1 christos
212 1.1 christos if (!ACPI_IS_ASCII (Byte))
213 1.1 christos {
214 1.1 christos if ((BadBytes < 10) && (DisplayErrors))
215 1.1 christos {
216 1.1 christos AcpiOsPrintf (
217 1.1 christos "Non-ASCII character [0x%2.2X] found in line %u, file offset 0x%.2X\n",
218 1.1 christos Byte, Status.Line, Status.Offset);
219 1.1 christos }
220 1.1 christos
221 1.1 christos BadBytes++;
222 1.1 christos }
223 1.1 christos
224 1.1 christos /* Update line counter */
225 1.1 christos
226 1.1 christos else if (Byte == 0x0A)
227 1.1 christos {
228 1.1 christos Status.Line++;
229 1.1 christos }
230 1.1 christos
231 1.1 christos Status.Offset++;
232 1.1 christos }
233 1.1 christos
234 1.1 christos /* Seek back to the beginning of the source file */
235 1.1 christos
236 1.1 christos fseek (Handle, 0, SEEK_SET);
237 1.1 christos
238 1.1 christos /* Were there any non-ASCII characters in the file? */
239 1.1 christos
240 1.1 christos if (BadBytes)
241 1.1 christos {
242 1.1 christos if (DisplayErrors)
243 1.1 christos {
244 1.1 christos AcpiOsPrintf (
245 1.1 christos "%u non-ASCII characters found in input source text, could be a binary file\n",
246 1.1 christos BadBytes);
247 1.1 christos AslError (ASL_ERROR, ASL_MSG_NON_ASCII, NULL, Filename);
248 1.1 christos }
249 1.1 christos
250 1.1 christos return (AE_BAD_CHARACTER);
251 1.1 christos }
252 1.1 christos
253 1.1 christos /* File is OK (100% ASCII) */
254 1.1 christos
255 1.1 christos return (AE_OK);
256 1.1 christos }
257 1.1 christos
258 1.1 christos
259 1.1 christos /*******************************************************************************
260 1.1 christos *
261 1.1 christos * FUNCTION: FlConsumeAnsiComment
262 1.1 christos *
263 1.1 christos * PARAMETERS: Handle - Open input file
264 1.1 christos * Status - File current status struct
265 1.1 christos *
266 1.1 christos * RETURN: Number of lines consumed
267 1.1 christos *
268 1.1 christos * DESCRIPTION: Step over a normal slash-star type comment
269 1.1 christos *
270 1.1 christos ******************************************************************************/
271 1.1 christos
272 1.1 christos static void
273 1.1 christos FlConsumeAnsiComment (
274 1.1 christos FILE *Handle,
275 1.1 christos ASL_FILE_STATUS *Status)
276 1.1 christos {
277 1.1 christos UINT8 Byte;
278 1.1 christos BOOLEAN ClosingComment = FALSE;
279 1.1 christos
280 1.1 christos
281 1.1 christos while (fread (&Byte, 1, 1, Handle) == 1)
282 1.1 christos {
283 1.1 christos /* Scan until comment close is found */
284 1.1 christos
285 1.1 christos if (ClosingComment)
286 1.1 christos {
287 1.1 christos if (Byte == '/')
288 1.1 christos {
289 1.1 christos return;
290 1.1 christos }
291 1.1 christos
292 1.1 christos if (Byte != '*')
293 1.1 christos {
294 1.1 christos /* Reset */
295 1.1 christos
296 1.1 christos ClosingComment = FALSE;
297 1.1 christos }
298 1.1 christos }
299 1.1 christos else if (Byte == '*')
300 1.1 christos {
301 1.1 christos ClosingComment = TRUE;
302 1.1 christos }
303 1.1 christos
304 1.1 christos /* Maintain line count */
305 1.1 christos
306 1.1 christos if (Byte == 0x0A)
307 1.1 christos {
308 1.1 christos Status->Line++;
309 1.1 christos }
310 1.1 christos
311 1.1 christos Status->Offset++;
312 1.1 christos }
313 1.1 christos }
314 1.1 christos
315 1.1 christos
316 1.1 christos /*******************************************************************************
317 1.1 christos *
318 1.1 christos * FUNCTION: FlConsumeNewComment
319 1.1 christos *
320 1.1 christos * PARAMETERS: Handle - Open input file
321 1.1 christos * Status - File current status struct
322 1.1 christos *
323 1.1 christos * RETURN: Number of lines consumed
324 1.1 christos *
325 1.1 christos * DESCRIPTION: Step over a slash-slash type of comment
326 1.1 christos *
327 1.1 christos ******************************************************************************/
328 1.1 christos
329 1.1 christos static void
330 1.1 christos FlConsumeNewComment (
331 1.1 christos FILE *Handle,
332 1.1 christos ASL_FILE_STATUS *Status)
333 1.1 christos {
334 1.1 christos UINT8 Byte;
335 1.1 christos
336 1.1 christos
337 1.1 christos while (fread (&Byte, 1, 1, Handle) == 1)
338 1.1 christos {
339 1.1 christos Status->Offset++;
340 1.1 christos
341 1.1 christos /* Comment ends at newline */
342 1.1 christos
343 1.1 christos if (Byte == 0x0A)
344 1.1 christos {
345 1.1 christos Status->Line++;
346 1.1 christos return;
347 1.1 christos }
348 1.1 christos }
349 1.1 christos }
350