Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000-2002 Alan Cox <alan@redhat.com> |
| 5 | * Copyright (C) 2002-2010 Jean Delvare <khali@linux-fr.org> |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 6 | * Copyright (C) 2009,2010 Michael Karcher |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 7 | * Copyright (C) 2011-2013 Stefan Tauner |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
Stefan Tauner | dc62793 | 2015-01-27 18:07:50 +0000 | [diff] [blame] | 20 | /* strnlen is in POSIX but was a GNU extension up to glibc 2.10 */ |
| 21 | #if (__GLIBC__ == 2 && __GLIBC_MINOR__ < 10) || __GLIBC__ < 2 |
| 22 | #define _GNU_SOURCE |
| 23 | #else |
| 24 | #define _POSIX_C_SOURCE 200809L |
| 25 | #endif |
| 26 | |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 27 | #include <strings.h> |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 28 | #include <string.h> |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 29 | #include <ctype.h> |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 30 | #include <stdio.h> |
| 31 | #include <stdlib.h> |
| 32 | |
Stefan Tauner | 4f44479 | 2011-06-27 11:44:03 +0000 | [diff] [blame] | 33 | #include "platform.h" |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 34 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 35 | #include "programmer.h" |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 36 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 37 | /* Enable SMBIOS decoding. Currently legacy DMI decoding is enough. */ |
| 38 | #define SM_SUPPORT 0 |
| 39 | |
| 40 | /* Strings longer than 4096 in DMI are just insane. */ |
| 41 | #define DMI_MAX_ANSWER_LEN 4096 |
| 42 | |
Carl-Daniel Hailfinger | e1fdff4 | 2010-06-23 23:14:44 +0000 | [diff] [blame] | 43 | int has_dmi_support = 0; |
| 44 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 45 | static struct { |
| 46 | const char *const keyword; |
| 47 | const uint8_t type; |
| 48 | const uint8_t offset; |
| 49 | char *value; |
| 50 | } dmi_strings[] = { |
| 51 | { "system-manufacturer", 1, 0x04, NULL }, |
| 52 | { "system-product-name", 1, 0x05, NULL }, |
| 53 | { "system-version", 1, 0x06, NULL }, |
| 54 | { "baseboard-manufacturer", 2, 0x04, NULL }, |
| 55 | { "baseboard-product-name", 2, 0x05, NULL }, |
| 56 | { "baseboard-version", 2, 0x06, NULL }, |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 59 | /* This list is used to identify supposed laptops. The is_laptop field has the |
| 60 | * following meaning: |
Elyes HAOUAS | ac01baa | 2018-05-28 16:52:21 +0200 | [diff] [blame] | 61 | * - 0: in all likelihood not a laptop |
| 62 | * - 1: in all likelihood a laptop |
| 63 | * - 2: chassis-type is not specific enough |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 64 | * A full list of chassis types can be found in the System Management BIOS |
Carl-Daniel Hailfinger | cb3eb05 | 2010-09-26 21:43:53 +0000 | [diff] [blame] | 65 | * (SMBIOS) Reference Specification 2.7.0 section 7.4.1 "Chassis Types" at |
| 66 | * http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.0.pdf |
| 67 | * The types below are the most common ones. |
| 68 | */ |
| 69 | static const struct { |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 70 | uint8_t type; |
| 71 | uint8_t is_laptop; |
| 72 | char *name; |
Carl-Daniel Hailfinger | cb3eb05 | 2010-09-26 21:43:53 +0000 | [diff] [blame] | 73 | } dmi_chassis_types[] = { |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 74 | {0x01, 2, "Other"}, |
| 75 | {0x02, 2, "Unknown"}, |
Stefan Tauner | 4c5665f | 2012-02-17 20:03:37 +0000 | [diff] [blame] | 76 | {0x03, 0, "Desktop"}, |
| 77 | {0x04, 0, "Low Profile Desktop"}, |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 78 | {0x06, 0, "Mini Tower"}, |
| 79 | {0x07, 0, "Tower"}, |
Carl-Daniel Hailfinger | cb3eb05 | 2010-09-26 21:43:53 +0000 | [diff] [blame] | 80 | {0x08, 1, "Portable"}, |
| 81 | {0x09, 1, "Laptop"}, |
| 82 | {0x0a, 1, "Notebook"}, |
| 83 | {0x0b, 1, "Hand Held"}, |
| 84 | {0x0e, 1, "Sub Notebook"}, |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 85 | {0x11, 0, "Main Server Chassis"}, |
| 86 | {0x17, 0, "Rack Mount Chassis"}, |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 87 | {0x18, 0, "Sealed-case PC"}, /* used by Supermicro (X8SIE) */ |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 88 | {0x19, 0, "Multi-system"}, /* used by Supermicro (X7DWT) */ |
Carl-Daniel Hailfinger | cb3eb05 | 2010-09-26 21:43:53 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 91 | #if CONFIG_INTERNAL_DMI == 1 |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 92 | static bool dmi_checksum(const uint8_t * const buf, size_t len) |
| 93 | { |
| 94 | uint8_t sum = 0; |
| 95 | size_t a; |
| 96 | |
| 97 | for (a = 0; a < len; a++) |
| 98 | sum += buf[a]; |
| 99 | return (sum == 0); |
| 100 | } |
| 101 | |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 102 | /** Retrieve a DMI string. |
| 103 | * |
| 104 | * See SMBIOS spec. section 6.1.3 "Text strings". |
| 105 | * The table will be unmapped ASAP, hence return a duplicated & sanitized string that needs to be freed later. |
| 106 | * |
| 107 | * \param buf the buffer to search through (usually appended directly to a DMI structure) |
| 108 | * \param string_id index of the string to look for |
| 109 | * \param limit pointer to the first byte beyond \em buf |
| 110 | */ |
| 111 | static char *dmi_string(const char *buf, uint8_t string_id, const char *limit) |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 112 | { |
| 113 | size_t i, len; |
| 114 | |
| 115 | if (string_id == 0) |
Stefan Tauner | 778c6d8 | 2014-09-05 16:14:11 +0000 | [diff] [blame] | 116 | return strdup("Not Specified"); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 117 | |
| 118 | while (string_id > 1 && string_id--) { |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 119 | if (buf >= limit) { |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 120 | msg_perr("DMI table is broken (string portion out of bounds)!\n"); |
Stefan Tauner | 778c6d8 | 2014-09-05 16:14:11 +0000 | [diff] [blame] | 121 | return strdup("<OUT OF BOUNDS>"); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 122 | } |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 123 | buf += strnlen(buf, limit - buf) + 1; |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | if (!*buf) /* as long as the current byte we're on isn't null */ |
Stefan Tauner | 778c6d8 | 2014-09-05 16:14:11 +0000 | [diff] [blame] | 127 | return strdup("<BAD INDEX>"); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 128 | |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 129 | len = strnlen(buf, limit - buf); |
| 130 | char *newbuf = malloc(len + 1); |
| 131 | if (newbuf == NULL) { |
| 132 | msg_perr("Out of memory!\n"); |
| 133 | return NULL; |
| 134 | } |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 135 | |
| 136 | /* fix junk bytes in the string */ |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 137 | for (i = 0; i < len && buf[i] != '\0'; i++) { |
Stefan Tauner | ff9e6c3 | 2014-10-19 07:54:27 +0000 | [diff] [blame] | 138 | if (isprint((unsigned char)buf[i])) |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 139 | newbuf[i] = buf[i]; |
| 140 | else |
| 141 | newbuf[i] = ' '; |
| 142 | } |
| 143 | newbuf[i] = '\0'; |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 144 | |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 145 | return newbuf; |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | static void dmi_chassis_type(uint8_t code) |
| 149 | { |
| 150 | int i; |
| 151 | code &= 0x7f; /* bits 6:0 are chassis type, 7th bit is the lock bit */ |
| 152 | is_laptop = 2; |
| 153 | for (i = 0; i < ARRAY_SIZE(dmi_chassis_types); i++) { |
| 154 | if (code == dmi_chassis_types[i].type) { |
| 155 | msg_pdbg("DMI string chassis-type: \"%s\"\n", dmi_chassis_types[i].name); |
| 156 | is_laptop = dmi_chassis_types[i].is_laptop; |
| 157 | break; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | static void dmi_table(uint32_t base, uint16_t len, uint16_t num) |
| 163 | { |
| 164 | int i = 0, j = 0; |
| 165 | |
Carl-Daniel Hailfinger | 43eac03 | 2014-03-05 00:16:16 +0000 | [diff] [blame] | 166 | uint8_t *dmi_table_mem = physmap_ro("DMI Table", base, len); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 167 | if (dmi_table_mem == NULL) { |
| 168 | msg_perr("Unable to access DMI Table\n"); |
| 169 | return; |
| 170 | } |
| 171 | |
| 172 | uint8_t *data = dmi_table_mem; |
| 173 | uint8_t *limit = dmi_table_mem + len; |
| 174 | |
| 175 | /* SMBIOS structure header is always 4 B long and contains: |
| 176 | * - uint8_t type; // see dmi_chassis_types's type |
| 177 | * - uint8_t length; // data section w/ header w/o strings |
| 178 | * - uint16_t handle; |
| 179 | */ |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 180 | while (i < num && data + 4 < limit) { |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 181 | /* - If a short entry is found (less than 4 bytes), not only it |
| 182 | * is invalid, but we cannot reliably locate the next entry. |
| 183 | * - If the length value indicates that this structure spreads |
Stefan Tauner | 6697f71 | 2014-08-06 15:09:15 +0000 | [diff] [blame] | 184 | * across the table border, something is fishy too. |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 185 | * Better stop at this point, and let the user know his/her |
| 186 | * table is broken. |
| 187 | */ |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 188 | if (data[1] < 4 || data + data[1] >= limit) { |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 189 | msg_perr("DMI table is broken (bogus header)!\n"); |
| 190 | break; |
| 191 | } |
| 192 | |
| 193 | if(data[0] == 3) { |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 194 | if (data + 5 < limit) |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 195 | dmi_chassis_type(data[5]); |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 196 | else /* the table is broken, but laptop detection is optional, hence continue. */ |
| 197 | msg_pwarn("DMI table is broken (chassis_type out of bounds)!\n"); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 198 | } else |
| 199 | for (j = 0; j < ARRAY_SIZE(dmi_strings); j++) { |
| 200 | uint8_t offset = dmi_strings[j].offset; |
| 201 | uint8_t type = dmi_strings[j].type; |
| 202 | |
| 203 | if (data[0] != type) |
| 204 | continue; |
| 205 | |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 206 | if (data[1] <= offset || data + offset >= limit) { |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 207 | msg_perr("DMI table is broken (offset out of bounds)!\n"); |
| 208 | goto out; |
| 209 | } |
| 210 | |
Stefan Tauner | 9972d15 | 2014-07-13 12:52:15 +0000 | [diff] [blame] | 211 | dmi_strings[j].value = dmi_string((const char *)(data + data[1]), data[offset], |
| 212 | (const char *)limit); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 213 | } |
| 214 | /* Find next structure by skipping data and string sections */ |
| 215 | data += data[1]; |
| 216 | while (data + 1 <= limit) { |
| 217 | if (data[0] == 0 && data[1] == 0) |
| 218 | break; |
| 219 | data++; |
| 220 | } |
| 221 | data += 2; |
| 222 | i++; |
| 223 | } |
| 224 | out: |
| 225 | physunmap(dmi_table_mem, len); |
| 226 | } |
| 227 | |
| 228 | #if SM_SUPPORT |
| 229 | static int smbios_decode(uint8_t *buf) |
| 230 | { |
| 231 | /* TODO: other checks mentioned in the conformance guidelines? */ |
| 232 | if (!dmi_checksum(buf, buf[0x05]) || |
| 233 | (memcmp(buf + 0x10, "_DMI_", 5) != 0) || |
| 234 | !dmi_checksum(buf + 0x10, 0x0F)) |
| 235 | return 0; |
| 236 | |
| 237 | dmi_table(mmio_readl(buf + 0x18), mmio_readw(buf + 0x16), mmio_readw(buf + 0x1C)); |
| 238 | |
| 239 | return 1; |
| 240 | } |
| 241 | #endif |
| 242 | |
| 243 | static int legacy_decode(uint8_t *buf) |
| 244 | { |
| 245 | if (!dmi_checksum(buf, 0x0F)) |
| 246 | return 1; |
| 247 | |
| 248 | dmi_table(mmio_readl(buf + 0x08), mmio_readw(buf + 0x06), mmio_readw(buf + 0x0C)); |
| 249 | |
| 250 | return 0; |
| 251 | } |
| 252 | |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 253 | static int dmi_fill(void) |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 254 | { |
| 255 | size_t fp; |
| 256 | uint8_t *dmi_mem; |
| 257 | int ret = 1; |
| 258 | |
| 259 | msg_pdbg("Using Internal DMI decoder.\n"); |
| 260 | /* There are two ways specified to gain access to the SMBIOS table: |
| 261 | * - EFI's configuration table contains a pointer to the SMBIOS table. On linux it can be obtained from |
| 262 | * sysfs. EFI's SMBIOS GUID is: {0xeb9d2d31,0x2d88,0x11d3,0x9a,0x16,0x0,0x90,0x27,0x3f,0xc1,0x4d} |
| 263 | * - Scanning physical memory address range 0x000F0000h to 0x000FFFFF for the anchor-string(s). */ |
Niklas Söderlund | 5d30720 | 2013-09-14 09:02:27 +0000 | [diff] [blame] | 264 | dmi_mem = physmap_ro("DMI", 0xF0000, 0x10000); |
| 265 | if (dmi_mem == ERROR_PTR) |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 266 | return ret; |
| 267 | |
| 268 | for (fp = 0; fp <= 0xFFF0; fp += 16) { |
| 269 | #if SM_SUPPORT |
| 270 | if (memcmp(dmi_mem + fp, "_SM_", 4) == 0 && fp <= 0xFFE0) { |
| 271 | if (smbios_decode(dmi_mem + fp)) // FIXME: length check |
| 272 | goto out; |
| 273 | } else |
| 274 | #endif |
| 275 | if (memcmp(dmi_mem + fp, "_DMI_", 5) == 0) |
| 276 | if (legacy_decode(dmi_mem + fp) == 0) { |
| 277 | ret = 0; |
| 278 | goto out; |
| 279 | } |
| 280 | } |
| 281 | msg_pinfo("No DMI table found.\n"); |
| 282 | out: |
| 283 | physunmap(dmi_mem, 0x10000); |
| 284 | return ret; |
| 285 | } |
| 286 | |
| 287 | #else /* CONFIG_INTERNAL_DMI */ |
| 288 | |
| 289 | #define DMI_COMMAND_LEN_MAX 300 |
Stefan Tauner | 4f44479 | 2011-06-27 11:44:03 +0000 | [diff] [blame] | 290 | #if IS_WINDOWS |
| 291 | static const char *dmidecode_command = "dmidecode.exe 2>NUL"; |
| 292 | #else |
| 293 | static const char *dmidecode_command = "dmidecode 2>/dev/null"; |
| 294 | #endif |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 295 | |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 296 | static char *get_dmi_string(const char *string_name) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 297 | { |
| 298 | FILE *dmidecode_pipe; |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 299 | char *result; |
| 300 | char answerbuf[DMI_MAX_ANSWER_LEN]; |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 301 | char commandline[DMI_COMMAND_LEN_MAX]; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 302 | |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 303 | snprintf(commandline, sizeof(commandline), |
| 304 | "%s -s %s", dmidecode_command, string_name); |
| 305 | dmidecode_pipe = popen(commandline, "r"); |
| 306 | if (!dmidecode_pipe) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 307 | msg_perr("Opening DMI pipe failed!\n"); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 308 | return NULL; |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 309 | } |
Michael Karcher | d9f266d | 2010-08-08 21:56:52 +0000 | [diff] [blame] | 310 | |
| 311 | /* Kill lines starting with '#', as recent dmidecode versions |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 312 | * have the quirk to emit a "# SMBIOS implementations newer..." |
| 313 | * message even on "-s" if the SMBIOS declares a |
| 314 | * newer-than-supported version number, while it *should* only print |
| 315 | * the requested string. |
| 316 | */ |
Michael Karcher | d9f266d | 2010-08-08 21:56:52 +0000 | [diff] [blame] | 317 | do { |
| 318 | if (!fgets(answerbuf, DMI_MAX_ANSWER_LEN, dmidecode_pipe)) { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 319 | if (ferror(dmidecode_pipe)) { |
Michael Karcher | d9f266d | 2010-08-08 21:56:52 +0000 | [diff] [blame] | 320 | msg_perr("DMI pipe read error\n"); |
| 321 | pclose(dmidecode_pipe); |
| 322 | return NULL; |
Michael Karcher | d9f266d | 2010-08-08 21:56:52 +0000 | [diff] [blame] | 323 | } |
Elyes HAOUAS | a67ac58 | 2019-06-09 17:06:50 +0200 | [diff] [blame] | 324 | answerbuf[0] = 0; /* Hit EOF */ |
Michael Karcher | 45f79cb | 2010-03-24 17:55:04 +0000 | [diff] [blame] | 325 | } |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 326 | } while (answerbuf[0] == '#'); |
Michael Karcher | d9f266d | 2010-08-08 21:56:52 +0000 | [diff] [blame] | 327 | |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 328 | /* Discard all output exceeding DMI_MAX_ANSWER_LEN to prevent deadlock on pclose. */ |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 329 | while (!feof(dmidecode_pipe)) |
| 330 | getc(dmidecode_pipe); |
| 331 | if (pclose(dmidecode_pipe) != 0) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 332 | msg_pwarn("dmidecode execution unsuccessful - continuing without DMI info\n"); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 333 | return NULL; |
| 334 | } |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 335 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 336 | /* Chomp trailing newline. */ |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 337 | if (answerbuf[0] != 0 && answerbuf[strlen(answerbuf) - 1] == '\n') |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 338 | answerbuf[strlen(answerbuf) - 1] = 0; |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 339 | |
| 340 | result = strdup(answerbuf); |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 341 | if (result == NULL) |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 342 | msg_pwarn("Warning: Out of memory - DMI support fails"); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 343 | |
| 344 | return result; |
| 345 | } |
| 346 | |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 347 | static int dmi_fill(void) |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 348 | { |
| 349 | int i; |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 350 | char *chassis_type; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 351 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 352 | msg_pdbg("Using External DMI decoder.\n"); |
| 353 | for (i = 0; i < ARRAY_SIZE(dmi_strings); i++) { |
| 354 | dmi_strings[i].value = get_dmi_string(dmi_strings[i].keyword); |
| 355 | if (dmi_strings[i].value == NULL) |
| 356 | return 1; |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 357 | } |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 358 | |
| 359 | chassis_type = get_dmi_string("chassis-type"); |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 360 | if (chassis_type == NULL) |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 361 | return 0; /* chassis-type handling is optional anyway */ |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 362 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 363 | msg_pdbg("DMI string chassis-type: \"%s\"\n", chassis_type); |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 364 | is_laptop = 2; |
| 365 | for (i = 0; i < ARRAY_SIZE(dmi_chassis_types); i++) { |
| 366 | if (strcasecmp(chassis_type, dmi_chassis_types[i].name) == 0) { |
| 367 | is_laptop = dmi_chassis_types[i].is_laptop; |
| 368 | break; |
Carl-Daniel Hailfinger | cb3eb05 | 2010-09-26 21:43:53 +0000 | [diff] [blame] | 369 | } |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 370 | } |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 371 | free(chassis_type); |
| 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | #endif /* CONFIG_INTERNAL_DMI */ |
| 376 | |
| 377 | static int dmi_shutdown(void *data) |
| 378 | { |
| 379 | int i; |
| 380 | for (i = 0; i < ARRAY_SIZE(dmi_strings); i++) { |
| 381 | free(dmi_strings[i].value); |
| 382 | dmi_strings[i].value = NULL; |
| 383 | } |
| 384 | return 0; |
| 385 | } |
| 386 | |
| 387 | void dmi_init(void) |
| 388 | { |
| 389 | /* Register shutdown function before we allocate anything. */ |
| 390 | if (register_shutdown(dmi_shutdown, NULL)) { |
| 391 | msg_pwarn("Warning: Could not register DMI shutdown function - continuing without DMI info.\n"); |
| 392 | return; |
| 393 | } |
| 394 | |
| 395 | /* dmi_fill fills the dmi_strings array, and if possible sets the global is_laptop variable. */ |
| 396 | if (dmi_fill() != 0) |
| 397 | return; |
Stefan Tauner | a34d719 | 2011-07-26 00:54:42 +0000 | [diff] [blame] | 398 | |
| 399 | switch (is_laptop) { |
| 400 | case 1: |
| 401 | msg_pdbg("Laptop detected via DMI.\n"); |
| 402 | break; |
| 403 | case 2: |
| 404 | msg_pdbg("DMI chassis-type is not specific enough.\n"); |
| 405 | break; |
| 406 | } |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 407 | |
| 408 | has_dmi_support = 1; |
| 409 | int i; |
| 410 | for (i = 0; i < ARRAY_SIZE(dmi_strings); i++) { |
| 411 | msg_pdbg("DMI string %s: \"%s\"\n", dmi_strings[i].keyword, |
| 412 | (dmi_strings[i].value == NULL) ? "" : dmi_strings[i].value); |
| 413 | } |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Does an substring/prefix/postfix/whole-string match. |
| 418 | * |
| 419 | * The pattern is matched as-is. The only metacharacters supported are '^' |
| 420 | * at the beginning and '$' at the end. So you can look for "^prefix", |
| 421 | * "suffix$", "substring" or "^complete string$". |
| 422 | * |
Stefan Tauner | d1045d8 | 2013-10-29 01:38:45 +0000 | [diff] [blame] | 423 | * @param value The non-NULL string to check. |
| 424 | * @param pattern The non-NULL pattern. |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 425 | * @return Nonzero if pattern matches. |
| 426 | */ |
| 427 | static int dmi_compare(const char *value, const char *pattern) |
| 428 | { |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 429 | int anchored = 0; |
| 430 | int patternlen; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 431 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 432 | msg_pspew("matching %s against %s\n", value, pattern); |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 433 | /* The empty string is part of all strings! */ |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 434 | if (pattern[0] == 0) |
| 435 | return 1; |
| 436 | |
| 437 | if (pattern[0] == '^') { |
| 438 | anchored = 1; |
| 439 | pattern++; |
| 440 | } |
| 441 | |
| 442 | patternlen = strlen(pattern); |
| 443 | if (pattern[patternlen - 1] == '$') { |
| 444 | int valuelen = strlen(value); |
| 445 | patternlen--; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 446 | if (patternlen > valuelen) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 447 | return 0; |
| 448 | |
| 449 | /* full string match: require same length */ |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 450 | if (anchored && (valuelen != patternlen)) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 451 | return 0; |
| 452 | |
| 453 | /* start character to make ends match */ |
| 454 | value += valuelen - patternlen; |
| 455 | anchored = 1; |
| 456 | } |
| 457 | |
| 458 | if (anchored) |
| 459 | return strncmp(value, pattern, patternlen) == 0; |
| 460 | else |
| 461 | return strstr(value, pattern) != NULL; |
| 462 | } |
| 463 | |
| 464 | int dmi_match(const char *pattern) |
| 465 | { |
| 466 | int i; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 467 | |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 468 | if (!has_dmi_support) |
| 469 | return 0; |
| 470 | |
Stefan Tauner | d1045d8 | 2013-10-29 01:38:45 +0000 | [diff] [blame] | 471 | for (i = 0; i < ARRAY_SIZE(dmi_strings); i++) { |
| 472 | if (dmi_strings[i].value == NULL) |
| 473 | continue; |
| 474 | |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 475 | if (dmi_compare(dmi_strings[i].value, pattern)) |
Michael Karcher | 4dfa093 | 2010-02-12 05:44:18 +0000 | [diff] [blame] | 476 | return 1; |
Stefan Tauner | d1045d8 | 2013-10-29 01:38:45 +0000 | [diff] [blame] | 477 | } |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 478 | |
| 479 | return 0; |
| 480 | } |