blob: 5f64b94b3f27237df753987cd1daafedbe66f21f [file] [log] [blame]
Michael Karcher6701ee82010-01-20 14:14:11 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009,2010 Michael Karcher
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <string.h>
22#include <stdio.h>
23#include <stdlib.h>
24
25#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000026#include "programmer.h"
Michael Karcher6701ee82010-01-20 14:14:11 +000027
Carl-Daniel Hailfingere1fdff42010-06-23 23:14:44 +000028int has_dmi_support = 0;
29
30#if STANDALONE
31
32/* Stub to indicate missing DMI functionality.
33 * has_dmi_support is 0 by default, so nothing to do here.
34 * Because dmidecode is not available on all systems, the goal is to implement
35 * the DMI subset we need directly in this file.
36 */
37void dmi_init(void)
38{
39}
40
41int dmi_match(const char *pattern)
42{
43 return 0;
44}
45
46#else /* STANDALONE */
47
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000048static const char *dmidecode_names[] = {
Michael Karcherf6498d72010-02-24 22:43:44 +000049 "system-manufacturer",
50 "system-product-name",
51 "system-version",
52 "baseboard-manufacturer",
53 "baseboard-product-name",
Uwe Hermann43959702010-03-13 17:28:29 +000054 "baseboard-version",
Michael Karcher6701ee82010-01-20 14:14:11 +000055};
56
Stefan Taunera34d7192011-07-26 00:54:42 +000057/* This list is used to identify supposed laptops. The is_laptop field has the
58 * following meaning:
59 * - 0: in all likelihood not a laptop
60 * - 1: in all likelihood a laptop
61 * - 2: chassis-type is not specific enough
62 * A full list of chassis types can be found in the System Management BIOS
Carl-Daniel Hailfingercb3eb052010-09-26 21:43:53 +000063 * (SMBIOS) Reference Specification 2.7.0 section 7.4.1 "Chassis Types" at
64 * http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.0.pdf
65 * The types below are the most common ones.
66 */
67static const struct {
68 unsigned char type;
69 unsigned char is_laptop;
70 const char *name;
71} dmi_chassis_types[] = {
Stefan Taunera34d7192011-07-26 00:54:42 +000072 {0x01, 2, "Other"},
73 {0x02, 2, "Unknown"},
Carl-Daniel Hailfingercb3eb052010-09-26 21:43:53 +000074 {0x03, 0, "Desktop",},
Stefan Taunera34d7192011-07-26 00:54:42 +000075 {0x06, 0, "Mini Tower"},
76 {0x07, 0, "Tower"},
Carl-Daniel Hailfingercb3eb052010-09-26 21:43:53 +000077 {0x08, 1, "Portable"},
78 {0x09, 1, "Laptop"},
79 {0x0a, 1, "Notebook"},
80 {0x0b, 1, "Hand Held"},
81 {0x0e, 1, "Sub Notebook"},
Stefan Taunera34d7192011-07-26 00:54:42 +000082 {0x11, 0, "Main Server Chassis"},
83 {0x17, 0, "Rack Mount Chassis"},
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +000084 {0x18, 0, "Sealed-case PC"}, /* used by Supermicro (X8SIE) */
Carl-Daniel Hailfingercb3eb052010-09-26 21:43:53 +000085};
86
Michael Karcher6701ee82010-01-20 14:14:11 +000087#define DMI_COMMAND_LEN_MAX 260
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000088static const char *dmidecode_command = "dmidecode";
Michael Karcher6701ee82010-01-20 14:14:11 +000089
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000090static char *dmistrings[ARRAY_SIZE(dmidecode_names)];
Michael Karcher6701ee82010-01-20 14:14:11 +000091
Uwe Hermann43959702010-03-13 17:28:29 +000092/* Strings longer than 4096 in DMI are just insane. */
Michael Karcher6701ee82010-01-20 14:14:11 +000093#define DMI_MAX_ANSWER_LEN 4096
94
Michael Karcher0d7fb7c2010-02-26 09:51:16 +000095static char *get_dmi_string(const char *string_name)
Michael Karcher6701ee82010-01-20 14:14:11 +000096{
97 FILE *dmidecode_pipe;
Michael Karcher0d7fb7c2010-02-26 09:51:16 +000098 char *result;
99 char answerbuf[DMI_MAX_ANSWER_LEN];
Uwe Hermann43959702010-03-13 17:28:29 +0000100 char commandline[DMI_COMMAND_LEN_MAX + 40];
101
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000102 snprintf(commandline, sizeof(commandline),
103 "%s -s %s", dmidecode_command, string_name);
104 dmidecode_pipe = popen(commandline, "r");
105 if (!dmidecode_pipe) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000106 msg_perr("DMI pipe open error\n");
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000107 return NULL;
Michael Karcher6701ee82010-01-20 14:14:11 +0000108 }
Michael Karcherd9f266d2010-08-08 21:56:52 +0000109
110 /* Kill lines starting with '#', as recent dmidecode versions
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000111 * have the quirk to emit a "# SMBIOS implementations newer..."
112 * message even on "-s" if the SMBIOS declares a
113 * newer-than-supported version number, while it *should* only print
114 * the requested string.
115 */
Michael Karcherd9f266d2010-08-08 21:56:52 +0000116 do {
117 if (!fgets(answerbuf, DMI_MAX_ANSWER_LEN, dmidecode_pipe)) {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000118 if (ferror(dmidecode_pipe)) {
Michael Karcherd9f266d2010-08-08 21:56:52 +0000119 msg_perr("DMI pipe read error\n");
120 pclose(dmidecode_pipe);
121 return NULL;
122 } else {
123 answerbuf[0] = 0; /* Hit EOF */
124 }
Michael Karcher45f79cb2010-03-24 17:55:04 +0000125 }
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000126 } while (answerbuf[0] == '#');
Michael Karcherd9f266d2010-08-08 21:56:52 +0000127
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000128 /* Toss all output above DMI_MAX_ANSWER_LEN away to prevent
129 deadlock on pclose. */
130 while (!feof(dmidecode_pipe))
131 getc(dmidecode_pipe);
132 if (pclose(dmidecode_pipe) != 0) {
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000133 msg_pinfo("dmidecode execution unsuccessful - continuing "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000134 "without DMI info\n");
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000135 return NULL;
136 }
Michael Karcher6701ee82010-01-20 14:14:11 +0000137
Uwe Hermann43959702010-03-13 17:28:29 +0000138 /* Chomp trailing newline. */
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000139 if (answerbuf[0] != 0 && answerbuf[strlen(answerbuf) - 1] == '\n')
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000140 answerbuf[strlen(answerbuf) - 1] = 0;
Sean Nelson316a29f2010-05-07 20:09:04 +0000141 msg_pdbg("DMI string %s: \"%s\"\n", string_name, answerbuf);
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000142
143 result = strdup(answerbuf);
144 if (!result)
145 puts("WARNING: Out of memory - DMI support fails");
146
147 return result;
148}
149
150void dmi_init(void)
151{
152 int i;
Michael Karcher8c1df282010-02-26 09:51:20 +0000153 char *chassis_type;
Uwe Hermann43959702010-03-13 17:28:29 +0000154
Michael Karcher6701ee82010-01-20 14:14:11 +0000155 has_dmi_support = 1;
Michael Karcherfd416702010-03-14 17:57:52 +0000156 for (i = 0; i < ARRAY_SIZE(dmidecode_names); i++) {
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000157 dmistrings[i] = get_dmi_string(dmidecode_names[i]);
158 if (!dmistrings[i]) {
159 has_dmi_support = 0;
Michael Karcherfd416702010-03-14 17:57:52 +0000160 return;
Michael Karcher0d7fb7c2010-02-26 09:51:16 +0000161 }
162 }
Michael Karcher8c1df282010-02-26 09:51:20 +0000163
164 chassis_type = get_dmi_string("chassis-type");
Stefan Taunera34d7192011-07-26 00:54:42 +0000165 if (chassis_type == NULL)
166 return;
167
168 is_laptop = 2;
169 for (i = 0; i < ARRAY_SIZE(dmi_chassis_types); i++) {
170 if (strcasecmp(chassis_type, dmi_chassis_types[i].name) == 0) {
171 is_laptop = dmi_chassis_types[i].is_laptop;
172 break;
Carl-Daniel Hailfingercb3eb052010-09-26 21:43:53 +0000173 }
Michael Karcher8c1df282010-02-26 09:51:20 +0000174 }
Stefan Taunera34d7192011-07-26 00:54:42 +0000175
176 switch (is_laptop) {
177 case 1:
178 msg_pdbg("Laptop detected via DMI.\n");
179 break;
180 case 2:
181 msg_pdbg("DMI chassis-type is not specific enough.\n");
182 break;
183 }
Michael Karcher8c1df282010-02-26 09:51:20 +0000184 free(chassis_type);
Michael Karcher6701ee82010-01-20 14:14:11 +0000185}
186
187/**
188 * Does an substring/prefix/postfix/whole-string match.
189 *
190 * The pattern is matched as-is. The only metacharacters supported are '^'
191 * at the beginning and '$' at the end. So you can look for "^prefix",
192 * "suffix$", "substring" or "^complete string$".
193 *
194 * @param value The string to check.
195 * @param pattern The pattern.
196 * @return Nonzero if pattern matches.
197 */
198static int dmi_compare(const char *value, const char *pattern)
199{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000200 int anchored = 0;
201 int patternlen;
Uwe Hermann43959702010-03-13 17:28:29 +0000202
Sean Nelson316a29f2010-05-07 20:09:04 +0000203 msg_pspew("matching %s against %s\n", value, pattern);
Uwe Hermann43959702010-03-13 17:28:29 +0000204 /* The empty string is part of all strings! */
Michael Karcher6701ee82010-01-20 14:14:11 +0000205 if (pattern[0] == 0)
206 return 1;
207
208 if (pattern[0] == '^') {
209 anchored = 1;
210 pattern++;
211 }
212
213 patternlen = strlen(pattern);
214 if (pattern[patternlen - 1] == '$') {
215 int valuelen = strlen(value);
216 patternlen--;
Uwe Hermann43959702010-03-13 17:28:29 +0000217 if (patternlen > valuelen)
Michael Karcher6701ee82010-01-20 14:14:11 +0000218 return 0;
219
220 /* full string match: require same length */
Uwe Hermann43959702010-03-13 17:28:29 +0000221 if (anchored && (valuelen != patternlen))
Michael Karcher6701ee82010-01-20 14:14:11 +0000222 return 0;
223
224 /* start character to make ends match */
225 value += valuelen - patternlen;
226 anchored = 1;
227 }
228
229 if (anchored)
230 return strncmp(value, pattern, patternlen) == 0;
231 else
232 return strstr(value, pattern) != NULL;
233}
234
235int dmi_match(const char *pattern)
236{
237 int i;
Uwe Hermann43959702010-03-13 17:28:29 +0000238
Michael Karcher6701ee82010-01-20 14:14:11 +0000239 if (!has_dmi_support)
240 return 0;
241
Michael Karcherfd416702010-03-14 17:57:52 +0000242 for (i = 0; i < ARRAY_SIZE(dmidecode_names); i++)
Uwe Hermann43959702010-03-13 17:28:29 +0000243 if (dmi_compare(dmistrings[i], pattern))
Michael Karcher4dfa0932010-02-12 05:44:18 +0000244 return 1;
Michael Karcher6701ee82010-01-20 14:14:11 +0000245
246 return 0;
247}
Carl-Daniel Hailfingere1fdff42010-06-23 23:14:44 +0000248
249#endif /* STANDALONE */