aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/utfileio.c
diff options
context:
space:
mode:
authorLv Zheng <lv.zheng@intel.com>2014-07-07 22:06:12 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-07-08 08:22:25 -0400
commite740304c7cf389b5d498bd86865fc82518d9ea1a (patch)
treed47192e609837120d8b1cb275b51f2a9a56ac7a5 /drivers/acpi/acpica/utfileio.c
parentae8ffc7dbb7e2bb9cbf3d84ef4116c5f7901539a (diff)
ACPICA: Utilities: Add support to read table from files
After the new table reading utility functions are well tested, acpidump can also switch to use the generic acpi_ut_read_table_xxx() APIs. Currently this patch is no-op as acpidump does not link to the new APIs. This patch is only useful for ACPICA applications, most of which are not shipped in the Linux kernel. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/utfileio.c')
-rw-r--r--drivers/acpi/acpica/utfileio.c337
1 files changed, 337 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/utfileio.c b/drivers/acpi/acpica/utfileio.c
new file mode 100644
index 000000000000..c8f63594b198
--- /dev/null
+++ b/drivers/acpi/acpica/utfileio.c
@@ -0,0 +1,337 @@
1/*******************************************************************************
2 *
3 * Module Name: utfileio - simple file I/O routines
4 *
5 ******************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2014, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
45#include "accommon.h"
46#include "actables.h"
47#include "acapps.h"
48
49#ifdef ACPI_ASL_COMPILER
50#include "aslcompiler.h"
51#endif
52
53#define _COMPONENT ACPI_CA_DEBUGGER
54ACPI_MODULE_NAME("utfileio")
55
56#ifdef ACPI_APPLICATION
57/* Local prototypes */
58static acpi_status
59acpi_ut_check_text_mode_corruption(u8 *table,
60 u32 table_length, u32 file_length);
61
62static acpi_status
63acpi_ut_read_table(FILE * fp,
64 struct acpi_table_header **table, u32 *table_length);
65
66/*******************************************************************************
67 *
68 * FUNCTION: acpi_ut_check_text_mode_corruption
69 *
70 * PARAMETERS: table - Table buffer
71 * table_length - Length of table from the table header
72 * file_length - Length of the file that contains the table
73 *
74 * RETURN: Status
75 *
76 * DESCRIPTION: Check table for text mode file corruption where all linefeed
77 * characters (LF) have been replaced by carriage return linefeed
78 * pairs (CR/LF).
79 *
80 ******************************************************************************/
81
82static acpi_status
83acpi_ut_check_text_mode_corruption(u8 *table, u32 table_length, u32 file_length)
84{
85 u32 i;
86 u32 pairs = 0;
87
88 if (table_length != file_length) {
89 ACPI_WARNING((AE_INFO,
90 "File length (0x%X) is not the same as the table length (0x%X)",
91 file_length, table_length));
92 }
93
94 /* Scan entire table to determine if each LF has been prefixed with a CR */
95
96 for (i = 1; i < file_length; i++) {
97 if (table[i] == 0x0A) {
98 if (table[i - 1] != 0x0D) {
99
100 /* The LF does not have a preceding CR, table not corrupted */
101
102 return (AE_OK);
103 } else {
104 /* Found a CR/LF pair */
105
106 pairs++;
107 }
108 i++;
109 }
110 }
111
112 if (!pairs) {
113 return (AE_OK);
114 }
115
116 /*
117 * Entire table scanned, each CR is part of a CR/LF pair --
118 * meaning that the table was treated as a text file somewhere.
119 *
120 * NOTE: We can't "fix" the table, because any existing CR/LF pairs in the
121 * original table are left untouched by the text conversion process --
122 * meaning that we cannot simply replace CR/LF pairs with LFs.
123 */
124 acpi_os_printf("Table has been corrupted by text mode conversion\n");
125 acpi_os_printf("All LFs (%u) were changed to CR/LF pairs\n", pairs);
126 acpi_os_printf("Table cannot be repaired!\n");
127 return (AE_BAD_VALUE);
128}
129
130/*******************************************************************************
131 *
132 * FUNCTION: acpi_ut_read_table
133 *
134 * PARAMETERS: fp - File that contains table
135 * table - Return value, buffer with table
136 * table_length - Return value, length of table
137 *
138 * RETURN: Status
139 *
140 * DESCRIPTION: Load the DSDT from the file pointer
141 *
142 ******************************************************************************/
143
144static acpi_status
145acpi_ut_read_table(FILE * fp,
146 struct acpi_table_header **table, u32 *table_length)
147{
148 struct acpi_table_header table_header;
149 u32 actual;
150 acpi_status status;
151 u32 file_size;
152 u8 standard_header = TRUE;
153
154 /* Get the file size */
155
156 file_size = cm_get_file_size(fp);
157 if (file_size == ACPI_UINT32_MAX) {
158 return (AE_ERROR);
159 }
160
161 if (file_size < 4) {
162 return (AE_BAD_HEADER);
163 }
164
165 /* Read the signature */
166
167 if (fread(&table_header, 1, 4, fp) != 4) {
168 acpi_os_printf("Could not read the table signature\n");
169 return (AE_BAD_HEADER);
170 }
171
172 fseek(fp, 0, SEEK_SET);
173
174 /* The RSDP table does not have standard ACPI header */
175
176 if (ACPI_COMPARE_NAME(table_header.signature, "RSD ")) {
177 *table_length = file_size;
178 standard_header = FALSE;
179 } else {
180 /* Read the table header */
181
182 if (fread
183 (&table_header, 1, sizeof(struct acpi_table_header),
184 fp) != sizeof(struct acpi_table_header)) {
185 acpi_os_printf("Could not read the table header\n");
186 return (AE_BAD_HEADER);
187 }
188#if 0
189 /* Validate the table header/length */
190
191 status = acpi_tb_validate_table_header(&table_header);
192 if (ACPI_FAILURE(status)) {
193 acpi_os_printf("Table header is invalid!\n");
194 return (status);
195 }
196#endif
197
198 /* File size must be at least as long as the Header-specified length */
199
200 if (table_header.length > file_size) {
201 acpi_os_printf
202 ("TableHeader length [0x%X] greater than the input file size [0x%X]\n",
203 table_header.length, file_size);
204
205#ifdef ACPI_ASL_COMPILER
206 status = fl_check_for_ascii(fp, NULL, FALSE);
207 if (ACPI_SUCCESS(status)) {
208 acpi_os_printf
209 ("File appears to be ASCII only, must be binary\n",
210 table_header.length, file_size);
211 }
212#endif
213 return (AE_BAD_HEADER);
214 }
215#ifdef ACPI_OBSOLETE_CODE
216 /* We only support a limited number of table types */
217
218 if (!ACPI_COMPARE_NAME
219 ((char *)table_header.signature, ACPI_SIG_DSDT)
220 && !ACPI_COMPARE_NAME((char *)table_header.signature,
221 ACPI_SIG_PSDT)
222 && !ACPI_COMPARE_NAME((char *)table_header.signature,
223 ACPI_SIG_SSDT)) {
224 acpi_os_printf
225 ("Table signature [%4.4s] is invalid or not supported\n",
226 (char *)table_header.signature);
227 ACPI_DUMP_BUFFER(&table_header,
228 sizeof(struct acpi_table_header));
229 return (AE_ERROR);
230 }
231#endif
232
233 *table_length = table_header.length;
234 }
235
236 /* Allocate a buffer for the table */
237
238 *table = acpi_os_allocate((size_t) file_size);
239 if (!*table) {
240 acpi_os_printf
241 ("Could not allocate memory for ACPI table %4.4s (size=0x%X)\n",
242 table_header.signature, *table_length);
243 return (AE_NO_MEMORY);
244 }
245
246 /* Get the rest of the table */
247
248 fseek(fp, 0, SEEK_SET);
249 actual = fread(*table, 1, (size_t) file_size, fp);
250 if (actual == file_size) {
251 if (standard_header) {
252
253 /* Now validate the checksum */
254
255 status = acpi_tb_verify_checksum((void *)*table,
256 ACPI_CAST_PTR(struct
257 acpi_table_header,
258 *table)->
259 length);
260
261 if (status == AE_BAD_CHECKSUM) {
262 status =
263 acpi_ut_check_text_mode_corruption((u8 *)
264 *table,
265 file_size,
266 (*table)->
267 length);
268 return (status);
269 }
270 }
271 return (AE_OK);
272 }
273
274 if (actual > 0) {
275 acpi_os_printf("Warning - reading table, asked for %X got %X\n",
276 file_size, actual);
277 return (AE_OK);
278 }
279
280 acpi_os_printf("Error - could not read the table file\n");
281 acpi_os_free(*table);
282 *table = NULL;
283 *table_length = 0;
284 return (AE_ERROR);
285}
286
287/*******************************************************************************
288 *
289 * FUNCTION: acpi_ut_read_table_from_file
290 *
291 * PARAMETERS: filename - File where table is located
292 * table - Where a pointer to the table is returned
293 *
294 * RETURN: Status
295 *
296 * DESCRIPTION: Get an ACPI table from a file
297 *
298 ******************************************************************************/
299
300acpi_status
301acpi_ut_read_table_from_file(char *filename, struct acpi_table_header ** table)
302{
303 FILE *file;
304 u32 file_size;
305 u32 table_length;
306 acpi_status status = AE_ERROR;
307
308 /* Open the file, get current size */
309
310 file = fopen(filename, "rb");
311 if (!file) {
312 perror("Could not open input file");
313 return (status);
314 }
315
316 file_size = cm_get_file_size(file);
317 if (file_size == ACPI_UINT32_MAX) {
318 goto exit;
319 }
320
321 /* Get the entire file */
322
323 fprintf(stderr,
324 "Loading Acpi table from file %10s - Length %.8u (%06X)\n",
325 filename, file_size, file_size);
326
327 status = acpi_ut_read_table(file, table, &table_length);
328 if (ACPI_FAILURE(status)) {
329 acpi_os_printf("Could not get table from the file\n");
330 }
331
332exit:
333 fclose(file);
334 return (status);
335}
336
337#endif