acpixtract.c revision 1.1 1 1.1 jruoho
2 1.1 jruoho /******************************************************************************
3 1.1 jruoho *
4 1.1 jruoho * Module Name: acpixtract - convert ascii ACPI tables to binary
5 1.1 jruoho *
6 1.1 jruoho *****************************************************************************/
7 1.1 jruoho
8 1.1 jruoho /******************************************************************************
9 1.1 jruoho *
10 1.1 jruoho * 1. Copyright Notice
11 1.1 jruoho *
12 1.1 jruoho * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
13 1.1 jruoho * All rights reserved.
14 1.1 jruoho *
15 1.1 jruoho * 2. License
16 1.1 jruoho *
17 1.1 jruoho * 2.1. This is your license from Intel Corp. under its intellectual property
18 1.1 jruoho * rights. You may have additional license terms from the party that provided
19 1.1 jruoho * you this software, covering your right to use that party's intellectual
20 1.1 jruoho * property rights.
21 1.1 jruoho *
22 1.1 jruoho * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 1.1 jruoho * copy of the source code appearing in this file ("Covered Code") an
24 1.1 jruoho * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 1.1 jruoho * base code distributed originally by Intel ("Original Intel Code") to copy,
26 1.1 jruoho * make derivatives, distribute, use and display any portion of the Covered
27 1.1 jruoho * Code in any form, with the right to sublicense such rights; and
28 1.1 jruoho *
29 1.1 jruoho * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 1.1 jruoho * license (with the right to sublicense), under only those claims of Intel
31 1.1 jruoho * patents that are infringed by the Original Intel Code, to make, use, sell,
32 1.1 jruoho * offer to sell, and import the Covered Code and derivative works thereof
33 1.1 jruoho * solely to the minimum extent necessary to exercise the above copyright
34 1.1 jruoho * license, and in no event shall the patent license extend to any additions
35 1.1 jruoho * to or modifications of the Original Intel Code. No other license or right
36 1.1 jruoho * is granted directly or by implication, estoppel or otherwise;
37 1.1 jruoho *
38 1.1 jruoho * The above copyright and patent license is granted only if the following
39 1.1 jruoho * conditions are met:
40 1.1 jruoho *
41 1.1 jruoho * 3. Conditions
42 1.1 jruoho *
43 1.1 jruoho * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 1.1 jruoho * Redistribution of source code of any substantial portion of the Covered
45 1.1 jruoho * Code or modification with rights to further distribute source must include
46 1.1 jruoho * the above Copyright Notice, the above License, this list of Conditions,
47 1.1 jruoho * and the following Disclaimer and Export Compliance provision. In addition,
48 1.1 jruoho * Licensee must cause all Covered Code to which Licensee contributes to
49 1.1 jruoho * contain a file documenting the changes Licensee made to create that Covered
50 1.1 jruoho * Code and the date of any change. Licensee must include in that file the
51 1.1 jruoho * documentation of any changes made by any predecessor Licensee. Licensee
52 1.1 jruoho * must include a prominent statement that the modification is derived,
53 1.1 jruoho * directly or indirectly, from Original Intel Code.
54 1.1 jruoho *
55 1.1 jruoho * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 1.1 jruoho * Redistribution of source code of any substantial portion of the Covered
57 1.1 jruoho * Code or modification without rights to further distribute source must
58 1.1 jruoho * include the following Disclaimer and Export Compliance provision in the
59 1.1 jruoho * documentation and/or other materials provided with distribution. In
60 1.1 jruoho * addition, Licensee may not authorize further sublicense of source of any
61 1.1 jruoho * portion of the Covered Code, and must include terms to the effect that the
62 1.1 jruoho * license from Licensee to its licensee is limited to the intellectual
63 1.1 jruoho * property embodied in the software Licensee provides to its licensee, and
64 1.1 jruoho * not to intellectual property embodied in modifications its licensee may
65 1.1 jruoho * make.
66 1.1 jruoho *
67 1.1 jruoho * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 1.1 jruoho * substantial portion of the Covered Code or modification must reproduce the
69 1.1 jruoho * above Copyright Notice, and the following Disclaimer and Export Compliance
70 1.1 jruoho * provision in the documentation and/or other materials provided with the
71 1.1 jruoho * distribution.
72 1.1 jruoho *
73 1.1 jruoho * 3.4. Intel retains all right, title, and interest in and to the Original
74 1.1 jruoho * Intel Code.
75 1.1 jruoho *
76 1.1 jruoho * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 1.1 jruoho * Intel shall be used in advertising or otherwise to promote the sale, use or
78 1.1 jruoho * other dealings in products derived from or relating to the Covered Code
79 1.1 jruoho * without prior written authorization from Intel.
80 1.1 jruoho *
81 1.1 jruoho * 4. Disclaimer and Export Compliance
82 1.1 jruoho *
83 1.1 jruoho * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 1.1 jruoho * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 1.1 jruoho * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 1.1 jruoho * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 1.1 jruoho * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 1.1 jruoho * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89 1.1 jruoho * PARTICULAR PURPOSE.
90 1.1 jruoho *
91 1.1 jruoho * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 1.1 jruoho * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 1.1 jruoho * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 1.1 jruoho * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 1.1 jruoho * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 1.1 jruoho * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 1.1 jruoho * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98 1.1 jruoho * LIMITED REMEDY.
99 1.1 jruoho *
100 1.1 jruoho * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 1.1 jruoho * software or system incorporating such software without first obtaining any
102 1.1 jruoho * required license or other approval from the U. S. Department of Commerce or
103 1.1 jruoho * any other agency or department of the United States Government. In the
104 1.1 jruoho * event Licensee exports any such software from the United States or
105 1.1 jruoho * re-exports any such software from a foreign destination, Licensee shall
106 1.1 jruoho * ensure that the distribution and export/re-export of the software is in
107 1.1 jruoho * compliance with all laws, regulations, orders, or other restrictions of the
108 1.1 jruoho * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 1.1 jruoho * any of its subsidiaries will export/re-export any technical data, process,
110 1.1 jruoho * software, or service, directly or indirectly, to any country for which the
111 1.1 jruoho * United States government or any agency thereof requires an export license,
112 1.1 jruoho * other governmental approval, or letter of assurance, without first obtaining
113 1.1 jruoho * such license, approval or letter.
114 1.1 jruoho *
115 1.1 jruoho *****************************************************************************/
116 1.1 jruoho
117 1.1 jruoho #include <stdio.h>
118 1.1 jruoho #include <stdlib.h>
119 1.1 jruoho #include <string.h>
120 1.1 jruoho #include <ctype.h>
121 1.1 jruoho
122 1.1 jruoho
123 1.1 jruoho /* Note: This is a 32-bit program only */
124 1.1 jruoho
125 1.1 jruoho #define VERSION 0x20100107
126 1.1 jruoho #define FIND_HEADER 0
127 1.1 jruoho #define EXTRACT_DATA 1
128 1.1 jruoho #define BUFFER_SIZE 256
129 1.1 jruoho
130 1.1 jruoho
131 1.1 jruoho /* Local prototypes */
132 1.1 jruoho
133 1.1 jruoho void
134 1.1 jruoho CheckAscii (
135 1.1 jruoho char *Name,
136 1.1 jruoho int Count);
137 1.1 jruoho
138 1.1 jruoho void
139 1.1 jruoho NormalizeSignature (
140 1.1 jruoho char *Signature);
141 1.1 jruoho
142 1.1 jruoho unsigned int
143 1.1 jruoho GetNextInstance (
144 1.1 jruoho char *InputPathname,
145 1.1 jruoho char *Signature);
146 1.1 jruoho
147 1.1 jruoho int
148 1.1 jruoho ExtractTables (
149 1.1 jruoho char *InputPathname,
150 1.1 jruoho char *Signature,
151 1.1 jruoho unsigned int MinimumInstances);
152 1.1 jruoho
153 1.1 jruoho size_t
154 1.1 jruoho GetTableHeader (
155 1.1 jruoho FILE *InputFile,
156 1.1 jruoho unsigned char *OutputData);
157 1.1 jruoho
158 1.1 jruoho unsigned int
159 1.1 jruoho CountTableInstances (
160 1.1 jruoho char *InputPathname,
161 1.1 jruoho char *Signature);
162 1.1 jruoho
163 1.1 jruoho int
164 1.1 jruoho ListTables (
165 1.1 jruoho char *InputPathname);
166 1.1 jruoho
167 1.1 jruoho size_t
168 1.1 jruoho ConvertLine (
169 1.1 jruoho char *InputLine,
170 1.1 jruoho unsigned char *OutputData);
171 1.1 jruoho
172 1.1 jruoho void
173 1.1 jruoho DisplayUsage (
174 1.1 jruoho void);
175 1.1 jruoho
176 1.1 jruoho
177 1.1 jruoho typedef struct acpi_table_header
178 1.1 jruoho {
179 1.1 jruoho char Signature[4];
180 1.1 jruoho int Length;
181 1.1 jruoho unsigned char Revision;
182 1.1 jruoho unsigned char Checksum;
183 1.1 jruoho char OemId[6];
184 1.1 jruoho char OemTableId[8];
185 1.1 jruoho int OemRevision;
186 1.1 jruoho char AslCompilerId[4];
187 1.1 jruoho int AslCompilerRevision;
188 1.1 jruoho
189 1.1 jruoho } ACPI_TABLE_HEADER;
190 1.1 jruoho
191 1.1 jruoho struct TableInfo
192 1.1 jruoho {
193 1.1 jruoho unsigned int Signature;
194 1.1 jruoho unsigned int Instances;
195 1.1 jruoho unsigned int NextInstance;
196 1.1 jruoho struct TableInfo *Next;
197 1.1 jruoho };
198 1.1 jruoho
199 1.1 jruoho struct TableInfo *ListHead = NULL;
200 1.1 jruoho char Filename[16];
201 1.1 jruoho unsigned char Data[16];
202 1.1 jruoho
203 1.1 jruoho
204 1.1 jruoho /******************************************************************************
205 1.1 jruoho *
206 1.1 jruoho * FUNCTION: DisplayUsage
207 1.1 jruoho *
208 1.1 jruoho * DESCRIPTION: Usage message
209 1.1 jruoho *
210 1.1 jruoho ******************************************************************************/
211 1.1 jruoho
212 1.1 jruoho void
213 1.1 jruoho DisplayUsage (
214 1.1 jruoho void)
215 1.1 jruoho {
216 1.1 jruoho
217 1.1 jruoho printf ("Usage: acpixtract [option] <InputFile>\n");
218 1.1 jruoho printf ("\nExtract binary ACPI tables from text acpidump output\n");
219 1.1 jruoho printf ("Default invocation extracts all DSDTs and SSDTs\n");
220 1.1 jruoho printf ("Version %8.8X\n\n", VERSION);
221 1.1 jruoho printf ("Options:\n");
222 1.1 jruoho printf (" -a Extract all tables, not just DSDT/SSDT\n");
223 1.1 jruoho printf (" -l List table summaries, do not extract\n");
224 1.1 jruoho printf (" -s<Signature> Extract all tables named <Signature>\n");
225 1.1 jruoho printf ("\n");
226 1.1 jruoho }
227 1.1 jruoho
228 1.1 jruoho
229 1.1 jruoho /*******************************************************************************
230 1.1 jruoho *
231 1.1 jruoho * FUNCTION: CheckAscii
232 1.1 jruoho *
233 1.1 jruoho * PARAMETERS: Name - Ascii string, at least as long as Count
234 1.1 jruoho * Count - Number of characters to check
235 1.1 jruoho *
236 1.1 jruoho * RETURN: None
237 1.1 jruoho *
238 1.1 jruoho * DESCRIPTION: Ensure that the requested number of characters are printable
239 1.1 jruoho * Ascii characters. Sets non-printable and null chars to <space>.
240 1.1 jruoho *
241 1.1 jruoho ******************************************************************************/
242 1.1 jruoho
243 1.1 jruoho void
244 1.1 jruoho CheckAscii (
245 1.1 jruoho char *Name,
246 1.1 jruoho int Count)
247 1.1 jruoho {
248 1.1 jruoho int i;
249 1.1 jruoho
250 1.1 jruoho
251 1.1 jruoho for (i = 0; i < Count; i++)
252 1.1 jruoho {
253 1.1 jruoho if (!Name[i] || !isprint ((int) Name[i]))
254 1.1 jruoho {
255 1.1 jruoho Name[i] = ' ';
256 1.1 jruoho }
257 1.1 jruoho }
258 1.1 jruoho }
259 1.1 jruoho
260 1.1 jruoho
261 1.1 jruoho /*******************************************************************************
262 1.1 jruoho *
263 1.1 jruoho * FUNCTION: NormalizeSignature
264 1.1 jruoho *
265 1.1 jruoho * PARAMETERS: Name - Ascii string containing an ACPI signature
266 1.1 jruoho *
267 1.1 jruoho * RETURN: None
268 1.1 jruoho *
269 1.1 jruoho * DESCRIPTION: Change "RSD PTR" to "RSDP"
270 1.1 jruoho *
271 1.1 jruoho ******************************************************************************/
272 1.1 jruoho
273 1.1 jruoho void
274 1.1 jruoho NormalizeSignature (
275 1.1 jruoho char *Signature)
276 1.1 jruoho {
277 1.1 jruoho
278 1.1 jruoho if (!strncmp (Signature, "RSD ", 4))
279 1.1 jruoho {
280 1.1 jruoho Signature[3] = 'P';
281 1.1 jruoho }
282 1.1 jruoho }
283 1.1 jruoho
284 1.1 jruoho
285 1.1 jruoho /******************************************************************************
286 1.1 jruoho *
287 1.1 jruoho * FUNCTION: ConvertLine
288 1.1 jruoho *
289 1.1 jruoho * PARAMETERS: InputLine - One line from the input acpidump file
290 1.1 jruoho * OutputData - Where the converted data is returned
291 1.1 jruoho *
292 1.1 jruoho * RETURN: The number of bytes actually converted
293 1.1 jruoho *
294 1.1 jruoho * DESCRIPTION: Convert one line of ascii text binary (up to 16 bytes)
295 1.1 jruoho *
296 1.1 jruoho ******************************************************************************/
297 1.1 jruoho
298 1.1 jruoho size_t
299 1.1 jruoho ConvertLine (
300 1.1 jruoho char *InputLine,
301 1.1 jruoho unsigned char *OutputData)
302 1.1 jruoho {
303 1.1 jruoho char *End;
304 1.1 jruoho int BytesConverted;
305 1.1 jruoho int Converted[16];
306 1.1 jruoho int i;
307 1.1 jruoho
308 1.1 jruoho
309 1.1 jruoho /* Terminate the input line at the end of the actual data (for sscanf) */
310 1.1 jruoho
311 1.1 jruoho End = strstr (InputLine + 2, " ");
312 1.1 jruoho if (!End)
313 1.1 jruoho {
314 1.1 jruoho return (0); /* Don't understand the format */
315 1.1 jruoho }
316 1.1 jruoho *End = 0;
317 1.1 jruoho
318 1.1 jruoho /*
319 1.1 jruoho * Convert one line of table data, of the form:
320 1.1 jruoho * <offset>: <up to 16 bytes of hex data> <ASCII representation> <newline>
321 1.1 jruoho *
322 1.1 jruoho * Example:
323 1.1 jruoho * 02C0: 5F 53 42 5F 4C 4E 4B 44 00 12 13 04 0C FF FF 08 _SB_LNKD........
324 1.1 jruoho */
325 1.1 jruoho BytesConverted = sscanf (InputLine,
326 1.1 jruoho "%*s %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x",
327 1.1 jruoho &Converted[0], &Converted[1], &Converted[2], &Converted[3],
328 1.1 jruoho &Converted[4], &Converted[5], &Converted[6], &Converted[7],
329 1.1 jruoho &Converted[8], &Converted[9], &Converted[10], &Converted[11],
330 1.1 jruoho &Converted[12], &Converted[13], &Converted[14], &Converted[15]);
331 1.1 jruoho
332 1.1 jruoho /* Pack converted data into a byte array */
333 1.1 jruoho
334 1.1 jruoho for (i = 0; i < BytesConverted; i++)
335 1.1 jruoho {
336 1.1 jruoho OutputData[i] = (unsigned char) Converted[i];
337 1.1 jruoho }
338 1.1 jruoho
339 1.1 jruoho return ((size_t) BytesConverted);
340 1.1 jruoho }
341 1.1 jruoho
342 1.1 jruoho
343 1.1 jruoho /******************************************************************************
344 1.1 jruoho *
345 1.1 jruoho * FUNCTION: GetTableHeader
346 1.1 jruoho *
347 1.1 jruoho * PARAMETERS: InputFile - Handle for the input acpidump file
348 1.1 jruoho * OutputData - Where the table header is returned
349 1.1 jruoho *
350 1.1 jruoho * RETURN: The actual number of bytes converted
351 1.1 jruoho *
352 1.1 jruoho * DESCRIPTION: Extract and convert an ACPI table header
353 1.1 jruoho *
354 1.1 jruoho ******************************************************************************/
355 1.1 jruoho
356 1.1 jruoho size_t
357 1.1 jruoho GetTableHeader (
358 1.1 jruoho FILE *InputFile,
359 1.1 jruoho unsigned char *OutputData)
360 1.1 jruoho {
361 1.1 jruoho size_t BytesConverted;
362 1.1 jruoho size_t TotalConverted = 0;
363 1.1 jruoho char Buffer[BUFFER_SIZE];
364 1.1 jruoho int i;
365 1.1 jruoho
366 1.1 jruoho
367 1.1 jruoho /* Get the full 36 byte header, requires 3 lines */
368 1.1 jruoho
369 1.1 jruoho for (i = 0; i < 3; i++)
370 1.1 jruoho {
371 1.1 jruoho if (!fgets (Buffer, BUFFER_SIZE, InputFile))
372 1.1 jruoho {
373 1.1 jruoho return (TotalConverted);
374 1.1 jruoho }
375 1.1 jruoho
376 1.1 jruoho BytesConverted = ConvertLine (Buffer, OutputData);
377 1.1 jruoho TotalConverted += BytesConverted;
378 1.1 jruoho OutputData += 16;
379 1.1 jruoho
380 1.1 jruoho if (BytesConverted != 16)
381 1.1 jruoho {
382 1.1 jruoho return (TotalConverted);
383 1.1 jruoho }
384 1.1 jruoho }
385 1.1 jruoho
386 1.1 jruoho return (TotalConverted);
387 1.1 jruoho }
388 1.1 jruoho
389 1.1 jruoho
390 1.1 jruoho /******************************************************************************
391 1.1 jruoho *
392 1.1 jruoho * FUNCTION: CountTableInstances
393 1.1 jruoho *
394 1.1 jruoho * PARAMETERS: InputPathname - Filename for acpidump file
395 1.1 jruoho * Signature - Requested signature to count
396 1.1 jruoho *
397 1.1 jruoho * RETURN: The number of instances of the signature
398 1.1 jruoho *
399 1.1 jruoho * DESCRIPTION: Count the instances of tables with the given signature within
400 1.1 jruoho * the input acpidump file.
401 1.1 jruoho *
402 1.1 jruoho ******************************************************************************/
403 1.1 jruoho
404 1.1 jruoho unsigned int
405 1.1 jruoho CountTableInstances (
406 1.1 jruoho char *InputPathname,
407 1.1 jruoho char *Signature)
408 1.1 jruoho {
409 1.1 jruoho char Buffer[BUFFER_SIZE];
410 1.1 jruoho FILE *InputFile;
411 1.1 jruoho unsigned int Instances = 0;
412 1.1 jruoho
413 1.1 jruoho
414 1.1 jruoho InputFile = fopen (InputPathname, "rt");
415 1.1 jruoho if (!InputFile)
416 1.1 jruoho {
417 1.1 jruoho printf ("Could not open %s\n", InputPathname);
418 1.1 jruoho return (0);
419 1.1 jruoho }
420 1.1 jruoho
421 1.1 jruoho /* Count the number of instances of this signature */
422 1.1 jruoho
423 1.1 jruoho while (fgets (Buffer, BUFFER_SIZE, InputFile))
424 1.1 jruoho {
425 1.1 jruoho /* Ignore empty lines and lines that start with a space */
426 1.1 jruoho
427 1.1 jruoho if ((Buffer[0] == ' ') ||
428 1.1 jruoho (Buffer[0] == '\n'))
429 1.1 jruoho {
430 1.1 jruoho continue;
431 1.1 jruoho }
432 1.1 jruoho
433 1.1 jruoho NormalizeSignature (Buffer);
434 1.1 jruoho if (!strncmp (Buffer, Signature, 4))
435 1.1 jruoho {
436 1.1 jruoho Instances++;
437 1.1 jruoho }
438 1.1 jruoho }
439 1.1 jruoho
440 1.1 jruoho fclose (InputFile);
441 1.1 jruoho return (Instances);
442 1.1 jruoho }
443 1.1 jruoho
444 1.1 jruoho
445 1.1 jruoho /******************************************************************************
446 1.1 jruoho *
447 1.1 jruoho * FUNCTION: GetNextInstance
448 1.1 jruoho *
449 1.1 jruoho * PARAMETERS: InputPathname - Filename for acpidump file
450 1.1 jruoho * Signature - Requested ACPI signature
451 1.1 jruoho *
452 1.1 jruoho * RETURN: The next instance number for this signature. Zero if this
453 1.1 jruoho * is the first instance of this signature.
454 1.1 jruoho *
455 1.1 jruoho * DESCRIPTION: Get the next instance number of the specified table. If this
456 1.1 jruoho * is the first instance of the table, create a new instance
457 1.1 jruoho * block. Note: only SSDT and PSDT tables can have multiple
458 1.1 jruoho * instances.
459 1.1 jruoho *
460 1.1 jruoho ******************************************************************************/
461 1.1 jruoho
462 1.1 jruoho unsigned int
463 1.1 jruoho GetNextInstance (
464 1.1 jruoho char *InputPathname,
465 1.1 jruoho char *Signature)
466 1.1 jruoho {
467 1.1 jruoho struct TableInfo *Info;
468 1.1 jruoho
469 1.1 jruoho
470 1.1 jruoho Info = ListHead;
471 1.1 jruoho while (Info)
472 1.1 jruoho {
473 1.1 jruoho if (*(unsigned int *) Signature == Info->Signature)
474 1.1 jruoho {
475 1.1 jruoho break;
476 1.1 jruoho }
477 1.1 jruoho
478 1.1 jruoho Info = Info->Next;
479 1.1 jruoho }
480 1.1 jruoho
481 1.1 jruoho if (!Info)
482 1.1 jruoho {
483 1.1 jruoho /* Signature not found, create new table info block */
484 1.1 jruoho
485 1.1 jruoho Info = malloc (sizeof (struct TableInfo));
486 1.1 jruoho if (!Info)
487 1.1 jruoho {
488 1.1 jruoho printf ("Could not allocate memory\n");
489 1.1 jruoho exit (0);
490 1.1 jruoho }
491 1.1 jruoho
492 1.1 jruoho Info->Signature = *(unsigned int *) Signature;
493 1.1 jruoho Info->Instances = CountTableInstances (InputPathname, Signature);
494 1.1 jruoho Info->NextInstance = 1;
495 1.1 jruoho Info->Next = ListHead;
496 1.1 jruoho ListHead = Info;
497 1.1 jruoho }
498 1.1 jruoho
499 1.1 jruoho if (Info->Instances > 1)
500 1.1 jruoho {
501 1.1 jruoho return (Info->NextInstance++);
502 1.1 jruoho }
503 1.1 jruoho
504 1.1 jruoho return (0);
505 1.1 jruoho }
506 1.1 jruoho
507 1.1 jruoho
508 1.1 jruoho /******************************************************************************
509 1.1 jruoho *
510 1.1 jruoho * FUNCTION: ExtractTables
511 1.1 jruoho *
512 1.1 jruoho * PARAMETERS: InputPathname - Filename for acpidump file
513 1.1 jruoho * Signature - Requested ACPI signature to extract.
514 1.1 jruoho * NULL means extract ALL tables.
515 1.1 jruoho * MinimumInstances - Min instances that are acceptable
516 1.1 jruoho *
517 1.1 jruoho * RETURN: Status
518 1.1 jruoho *
519 1.1 jruoho * DESCRIPTION: Convert text ACPI tables to binary
520 1.1 jruoho *
521 1.1 jruoho ******************************************************************************/
522 1.1 jruoho
523 1.1 jruoho int
524 1.1 jruoho ExtractTables (
525 1.1 jruoho char *InputPathname,
526 1.1 jruoho char *Signature,
527 1.1 jruoho unsigned int MinimumInstances)
528 1.1 jruoho {
529 1.1 jruoho char Buffer[BUFFER_SIZE];
530 1.1 jruoho FILE *InputFile;
531 1.1 jruoho FILE *OutputFile = NULL;
532 1.1 jruoho size_t BytesWritten;
533 1.1 jruoho size_t TotalBytesWritten = 0;
534 1.1 jruoho size_t BytesConverted;
535 1.1 jruoho unsigned int State = FIND_HEADER;
536 1.1 jruoho unsigned int FoundTable = 0;
537 1.1 jruoho unsigned int Instances = 0;
538 1.1 jruoho unsigned int ThisInstance;
539 1.1 jruoho char ThisSignature[4];
540 1.1 jruoho int Status = 0;
541 1.1 jruoho
542 1.1 jruoho
543 1.1 jruoho /* Open input in text mode, output is in binary mode */
544 1.1 jruoho
545 1.1 jruoho InputFile = fopen (InputPathname, "rt");
546 1.1 jruoho if (!InputFile)
547 1.1 jruoho {
548 1.1 jruoho printf ("Could not open %s\n", InputPathname);
549 1.1 jruoho return (-1);
550 1.1 jruoho }
551 1.1 jruoho
552 1.1 jruoho if (Signature)
553 1.1 jruoho {
554 1.1 jruoho /* Are there enough instances of the table to continue? */
555 1.1 jruoho
556 1.1 jruoho NormalizeSignature (Signature);
557 1.1 jruoho
558 1.1 jruoho Instances = CountTableInstances (InputPathname, Signature);
559 1.1 jruoho if (Instances < MinimumInstances)
560 1.1 jruoho {
561 1.1 jruoho printf ("Table %s was not found in %s\n", Signature, InputPathname);
562 1.1 jruoho Status = -1;
563 1.1 jruoho goto CleanupAndExit;
564 1.1 jruoho }
565 1.1 jruoho
566 1.1 jruoho if (Instances == 0)
567 1.1 jruoho {
568 1.1 jruoho goto CleanupAndExit;
569 1.1 jruoho }
570 1.1 jruoho }
571 1.1 jruoho
572 1.1 jruoho /* Convert all instances of the table to binary */
573 1.1 jruoho
574 1.1 jruoho while (fgets (Buffer, BUFFER_SIZE, InputFile))
575 1.1 jruoho {
576 1.1 jruoho switch (State)
577 1.1 jruoho {
578 1.1 jruoho case FIND_HEADER:
579 1.1 jruoho
580 1.1 jruoho /* Ignore empty lines and lines that start with a space */
581 1.1 jruoho
582 1.1 jruoho if ((Buffer[0] == ' ') ||
583 1.1 jruoho (Buffer[0] == '\n'))
584 1.1 jruoho {
585 1.1 jruoho continue;
586 1.1 jruoho }
587 1.1 jruoho
588 1.1 jruoho NormalizeSignature (Buffer);
589 1.1 jruoho strncpy (ThisSignature, Buffer, 4);
590 1.1 jruoho
591 1.1 jruoho if (Signature)
592 1.1 jruoho {
593 1.1 jruoho /* Ignore signatures that don't match */
594 1.1 jruoho
595 1.1 jruoho if (strncmp (ThisSignature, Signature, 4))
596 1.1 jruoho {
597 1.1 jruoho continue;
598 1.1 jruoho }
599 1.1 jruoho }
600 1.1 jruoho
601 1.1 jruoho /*
602 1.1 jruoho * Get the instance number for this signature. Only the
603 1.1 jruoho * SSDT and PSDT tables can have multiple instances.
604 1.1 jruoho */
605 1.1 jruoho ThisInstance = GetNextInstance (InputPathname, ThisSignature);
606 1.1 jruoho
607 1.1 jruoho /* Build an output filename and create/open the output file */
608 1.1 jruoho
609 1.1 jruoho if (ThisInstance > 0)
610 1.1 jruoho {
611 1.1 jruoho sprintf (Filename, "%4.4s%u.dat", ThisSignature, ThisInstance);
612 1.1 jruoho }
613 1.1 jruoho else
614 1.1 jruoho {
615 1.1 jruoho sprintf (Filename, "%4.4s.dat", ThisSignature);
616 1.1 jruoho }
617 1.1 jruoho
618 1.1 jruoho OutputFile = fopen (Filename, "w+b");
619 1.1 jruoho if (!OutputFile)
620 1.1 jruoho {
621 1.1 jruoho printf ("Could not open %s\n", Filename);
622 1.1 jruoho Status = -1;
623 1.1 jruoho goto CleanupAndExit;
624 1.1 jruoho }
625 1.1 jruoho
626 1.1 jruoho State = EXTRACT_DATA;
627 1.1 jruoho TotalBytesWritten = 0;
628 1.1 jruoho FoundTable = 1;
629 1.1 jruoho continue;
630 1.1 jruoho
631 1.1 jruoho case EXTRACT_DATA:
632 1.1 jruoho
633 1.1 jruoho /* Empty line or non-data line terminates the data */
634 1.1 jruoho
635 1.1 jruoho if ((Buffer[0] == '\n') ||
636 1.1 jruoho (Buffer[0] != ' '))
637 1.1 jruoho {
638 1.1 jruoho fclose (OutputFile);
639 1.1 jruoho OutputFile = NULL;
640 1.1 jruoho State = FIND_HEADER;
641 1.1 jruoho
642 1.1 jruoho printf ("Acpi table [%4.4s] - % 7d bytes written to %s\n",
643 1.1 jruoho ThisSignature, TotalBytesWritten, Filename);
644 1.1 jruoho continue;
645 1.1 jruoho }
646 1.1 jruoho
647 1.1 jruoho /* Convert the ascii data (one line of text) to binary */
648 1.1 jruoho
649 1.1 jruoho BytesConverted = ConvertLine (Buffer, Data);
650 1.1 jruoho
651 1.1 jruoho /* Write the binary data */
652 1.1 jruoho
653 1.1 jruoho BytesWritten = fwrite (Data, 1, BytesConverted, OutputFile);
654 1.1 jruoho if (BytesWritten != BytesConverted)
655 1.1 jruoho {
656 1.1 jruoho printf ("Write error on %s\n", Filename);
657 1.1 jruoho fclose (OutputFile);
658 1.1 jruoho OutputFile = NULL;
659 1.1 jruoho Status = -1;
660 1.1 jruoho goto CleanupAndExit;
661 1.1 jruoho }
662 1.1 jruoho
663 1.1 jruoho TotalBytesWritten += BytesConverted;
664 1.1 jruoho continue;
665 1.1 jruoho
666 1.1 jruoho default:
667 1.1 jruoho Status = -1;
668 1.1 jruoho goto CleanupAndExit;
669 1.1 jruoho }
670 1.1 jruoho }
671 1.1 jruoho
672 1.1 jruoho if (!FoundTable)
673 1.1 jruoho {
674 1.1 jruoho printf ("Table %s was not found in %s\n", Signature, InputPathname);
675 1.1 jruoho }
676 1.1 jruoho
677 1.1 jruoho
678 1.1 jruoho CleanupAndExit:
679 1.1 jruoho
680 1.1 jruoho if (OutputFile)
681 1.1 jruoho {
682 1.1 jruoho fclose (OutputFile);
683 1.1 jruoho if (State == EXTRACT_DATA)
684 1.1 jruoho {
685 1.1 jruoho /* Received an EOF while extracting data */
686 1.1 jruoho
687 1.1 jruoho printf ("Acpi table [%4.4s] - % 7d bytes written to %s\n",
688 1.1 jruoho ThisSignature, TotalBytesWritten, Filename);
689 1.1 jruoho }
690 1.1 jruoho }
691 1.1 jruoho
692 1.1 jruoho fclose (InputFile);
693 1.1 jruoho return (Status);
694 1.1 jruoho }
695 1.1 jruoho
696 1.1 jruoho
697 1.1 jruoho /******************************************************************************
698 1.1 jruoho *
699 1.1 jruoho * FUNCTION: ListTables
700 1.1 jruoho *
701 1.1 jruoho * PARAMETERS: InputPathname - Filename for acpidump file
702 1.1 jruoho *
703 1.1 jruoho * RETURN: Status
704 1.1 jruoho *
705 1.1 jruoho * DESCRIPTION: Display info for all ACPI tables found in input. Does not
706 1.1 jruoho * perform an actual extraction of the tables.
707 1.1 jruoho *
708 1.1 jruoho ******************************************************************************/
709 1.1 jruoho
710 1.1 jruoho int
711 1.1 jruoho ListTables (
712 1.1 jruoho char *InputPathname)
713 1.1 jruoho {
714 1.1 jruoho FILE *InputFile;
715 1.1 jruoho char Buffer[BUFFER_SIZE];
716 1.1 jruoho size_t HeaderSize;
717 1.1 jruoho unsigned char Header[48];
718 1.1 jruoho int TableCount = 0;
719 1.1 jruoho ACPI_TABLE_HEADER *TableHeader = (ACPI_TABLE_HEADER *) (void *) Header;
720 1.1 jruoho
721 1.1 jruoho
722 1.1 jruoho /* Open input in text mode, output is in binary mode */
723 1.1 jruoho
724 1.1 jruoho InputFile = fopen (InputPathname, "rt");
725 1.1 jruoho if (!InputFile)
726 1.1 jruoho {
727 1.1 jruoho printf ("Could not open %s\n", InputPathname);
728 1.1 jruoho return (-1);
729 1.1 jruoho }
730 1.1 jruoho
731 1.1 jruoho /* Dump the headers for all tables found in the input file */
732 1.1 jruoho
733 1.1 jruoho printf ("\nSignature Length Revision OemId OemTableId"
734 1.1 jruoho " OemRevision CompilerId CompilerRevision\n\n");
735 1.1 jruoho
736 1.1 jruoho while (fgets (Buffer, BUFFER_SIZE, InputFile))
737 1.1 jruoho {
738 1.1 jruoho /* Ignore empty lines and lines that start with a space */
739 1.1 jruoho
740 1.1 jruoho if ((Buffer[0] == ' ') ||
741 1.1 jruoho (Buffer[0] == '\n'))
742 1.1 jruoho {
743 1.1 jruoho continue;
744 1.1 jruoho }
745 1.1 jruoho
746 1.1 jruoho /* Get the 36 byte header and display the fields */
747 1.1 jruoho
748 1.1 jruoho HeaderSize = GetTableHeader (InputFile, Header);
749 1.1 jruoho if (HeaderSize < 16)
750 1.1 jruoho {
751 1.1 jruoho continue;
752 1.1 jruoho }
753 1.1 jruoho
754 1.1 jruoho /* RSDP has an oddball signature and header */
755 1.1 jruoho
756 1.1 jruoho if (!strncmp (TableHeader->Signature, "RSD PTR ", 8))
757 1.1 jruoho {
758 1.1 jruoho CheckAscii ((char *) &Header[9], 6);
759 1.1 jruoho printf ("%8.4s \"%6.6s\"\n", "RSDP", &Header[9]);
760 1.1 jruoho TableCount++;
761 1.1 jruoho continue;
762 1.1 jruoho }
763 1.1 jruoho
764 1.1 jruoho /* Minimum size for table with standard header */
765 1.1 jruoho
766 1.1 jruoho if (HeaderSize < 36)
767 1.1 jruoho {
768 1.1 jruoho continue;
769 1.1 jruoho }
770 1.1 jruoho
771 1.1 jruoho /* Signature and Table length */
772 1.1 jruoho
773 1.1 jruoho TableCount++;
774 1.1 jruoho printf ("%8.4s % 7d", TableHeader->Signature, TableHeader->Length);
775 1.1 jruoho
776 1.1 jruoho /* FACS has only signature and length */
777 1.1 jruoho
778 1.1 jruoho if (!strncmp (TableHeader->Signature, "FACS", 4))
779 1.1 jruoho {
780 1.1 jruoho printf ("\n");
781 1.1 jruoho continue;
782 1.1 jruoho }
783 1.1 jruoho
784 1.1 jruoho /* OEM IDs and Compiler IDs */
785 1.1 jruoho
786 1.1 jruoho CheckAscii (TableHeader->OemId, 6);
787 1.1 jruoho CheckAscii (TableHeader->OemTableId, 8);
788 1.1 jruoho CheckAscii (TableHeader->AslCompilerId, 4);
789 1.1 jruoho
790 1.1 jruoho printf (" %2.2X \"%6.6s\" \"%8.8s\" %8.8X \"%4.4s\" %8.8X\n",
791 1.1 jruoho TableHeader->Revision, TableHeader->OemId,
792 1.1 jruoho TableHeader->OemTableId, TableHeader->OemRevision,
793 1.1 jruoho TableHeader->AslCompilerId, TableHeader->AslCompilerRevision);
794 1.1 jruoho }
795 1.1 jruoho
796 1.1 jruoho printf ("\nFound %u ACPI tables [%8.8X]\n", TableCount, VERSION);
797 1.1 jruoho fclose (InputFile);
798 1.1 jruoho return (0);
799 1.1 jruoho }
800 1.1 jruoho
801 1.1 jruoho
802 1.1 jruoho /******************************************************************************
803 1.1 jruoho *
804 1.1 jruoho * FUNCTION: main
805 1.1 jruoho *
806 1.1 jruoho * DESCRIPTION: C main function
807 1.1 jruoho *
808 1.1 jruoho ******************************************************************************/
809 1.1 jruoho
810 1.1 jruoho int
811 1.1 jruoho main (
812 1.1 jruoho int argc,
813 1.1 jruoho char *argv[])
814 1.1 jruoho {
815 1.1 jruoho int Status;
816 1.1 jruoho
817 1.1 jruoho
818 1.1 jruoho if (argc < 2)
819 1.1 jruoho {
820 1.1 jruoho DisplayUsage ();
821 1.1 jruoho return (0);
822 1.1 jruoho }
823 1.1 jruoho
824 1.1 jruoho if (argv[1][0] == '-')
825 1.1 jruoho {
826 1.1 jruoho if (argc < 3)
827 1.1 jruoho {
828 1.1 jruoho DisplayUsage ();
829 1.1 jruoho return (0);
830 1.1 jruoho }
831 1.1 jruoho
832 1.1 jruoho switch (argv[1][1])
833 1.1 jruoho {
834 1.1 jruoho case 'a':
835 1.1 jruoho
836 1.1 jruoho /* Extract all tables found */
837 1.1 jruoho
838 1.1 jruoho return (ExtractTables (argv[2], NULL, 0));
839 1.1 jruoho
840 1.1 jruoho case 'l':
841 1.1 jruoho
842 1.1 jruoho /* List tables only, do not extract */
843 1.1 jruoho
844 1.1 jruoho return (ListTables (argv[2]));
845 1.1 jruoho
846 1.1 jruoho case 's':
847 1.1 jruoho
848 1.1 jruoho /* Extract only tables with this signature */
849 1.1 jruoho
850 1.1 jruoho return (ExtractTables (argv[2], &argv[1][2], 1));
851 1.1 jruoho
852 1.1 jruoho default:
853 1.1 jruoho DisplayUsage ();
854 1.1 jruoho return (0);
855 1.1 jruoho }
856 1.1 jruoho }
857 1.1 jruoho
858 1.1 jruoho /*
859 1.1 jruoho * Default output is the DSDT and all SSDTs. One DSDT is required,
860 1.1 jruoho * any SSDTs are optional.
861 1.1 jruoho */
862 1.1 jruoho Status = ExtractTables (argv[1], "DSDT", 1);
863 1.1 jruoho if (Status)
864 1.1 jruoho {
865 1.1 jruoho return (Status);
866 1.1 jruoho }
867 1.1 jruoho
868 1.1 jruoho Status = ExtractTables (argv[1], "SSDT", 0);
869 1.1 jruoho return (Status);
870 1.1 jruoho }
871 1.1 jruoho
872 1.1 jruoho
873