Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 1 | /* |
| 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" |
| 26 | |
Michael Karcher | fd41670 | 2010-03-14 17:57:52 +0000 | [diff] [blame] | 27 | const char *dmidecode_names[] = { |
Michael Karcher | f6498d7 | 2010-02-24 22:43:44 +0000 | [diff] [blame] | 28 | "system-manufacturer", |
| 29 | "system-product-name", |
| 30 | "system-version", |
| 31 | "baseboard-manufacturer", |
| 32 | "baseboard-product-name", |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 33 | "baseboard-version", |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | #define DMI_COMMAND_LEN_MAX 260 |
| 37 | const char *dmidecode_command = "dmidecode"; |
| 38 | |
| 39 | int has_dmi_support = 0; |
Michael Karcher | fd41670 | 2010-03-14 17:57:52 +0000 | [diff] [blame] | 40 | char *dmistrings[ARRAY_SIZE(dmidecode_names)]; |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 41 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 42 | /* Strings longer than 4096 in DMI are just insane. */ |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 43 | #define DMI_MAX_ANSWER_LEN 4096 |
| 44 | |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 45 | static char *get_dmi_string(const char *string_name) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 46 | { |
| 47 | FILE *dmidecode_pipe; |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 48 | char *result; |
| 49 | char answerbuf[DMI_MAX_ANSWER_LEN]; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 50 | char commandline[DMI_COMMAND_LEN_MAX + 40]; |
| 51 | |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 52 | snprintf(commandline, sizeof(commandline), |
| 53 | "%s -s %s", dmidecode_command, string_name); |
| 54 | dmidecode_pipe = popen(commandline, "r"); |
| 55 | if (!dmidecode_pipe) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 56 | msg_perr("DMI pipe open error\n"); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 57 | return NULL; |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 58 | } |
Michael Karcher | 45f79cb | 2010-03-24 17:55:04 +0000 | [diff] [blame] | 59 | if (!fgets(answerbuf, DMI_MAX_ANSWER_LEN, dmidecode_pipe)) { |
| 60 | if(ferror(dmidecode_pipe)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 61 | msg_perr("DMI pipe read error\n"); |
Michael Karcher | 45f79cb | 2010-03-24 17:55:04 +0000 | [diff] [blame] | 62 | pclose(dmidecode_pipe); |
| 63 | return NULL; |
| 64 | } else { |
| 65 | answerbuf[0] = 0; /* Hit EOF */ |
| 66 | } |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 67 | } |
| 68 | /* Toss all output above DMI_MAX_ANSWER_LEN away to prevent |
| 69 | deadlock on pclose. */ |
| 70 | while (!feof(dmidecode_pipe)) |
| 71 | getc(dmidecode_pipe); |
| 72 | if (pclose(dmidecode_pipe) != 0) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 73 | msg_pinfo("dmidecode execution unsucessfull - continuing " |
| 74 | "without DMI info\n"); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 75 | return NULL; |
| 76 | } |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 77 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 78 | /* Chomp trailing newline. */ |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 79 | if (answerbuf[0] != 0 && |
| 80 | answerbuf[strlen(answerbuf) - 1] == '\n') |
| 81 | answerbuf[strlen(answerbuf) - 1] = 0; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 82 | msg_pdbg("DMI string %s: \"%s\"\n", string_name, answerbuf); |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 83 | |
| 84 | result = strdup(answerbuf); |
| 85 | if (!result) |
| 86 | puts("WARNING: Out of memory - DMI support fails"); |
| 87 | |
| 88 | return result; |
| 89 | } |
| 90 | |
| 91 | void dmi_init(void) |
| 92 | { |
| 93 | int i; |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 94 | char *chassis_type; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 95 | |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 96 | has_dmi_support = 1; |
Michael Karcher | fd41670 | 2010-03-14 17:57:52 +0000 | [diff] [blame] | 97 | for (i = 0; i < ARRAY_SIZE(dmidecode_names); i++) { |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 98 | dmistrings[i] = get_dmi_string(dmidecode_names[i]); |
| 99 | if (!dmistrings[i]) { |
| 100 | has_dmi_support = 0; |
Michael Karcher | fd41670 | 2010-03-14 17:57:52 +0000 | [diff] [blame] | 101 | return; |
Michael Karcher | 0d7fb7c | 2010-02-26 09:51:16 +0000 | [diff] [blame] | 102 | } |
| 103 | } |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 104 | |
| 105 | chassis_type = get_dmi_string("chassis-type"); |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 106 | if (chassis_type && (!strcmp(chassis_type, "Notebook") || |
| 107 | !strcmp(chassis_type, "Portable"))) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 108 | msg_pdbg("Laptop detected via DMI\n"); |
Michael Karcher | 8c1df28 | 2010-02-26 09:51:20 +0000 | [diff] [blame] | 109 | is_laptop = 1; |
| 110 | } |
| 111 | free(chassis_type); |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Does an substring/prefix/postfix/whole-string match. |
| 116 | * |
| 117 | * The pattern is matched as-is. The only metacharacters supported are '^' |
| 118 | * at the beginning and '$' at the end. So you can look for "^prefix", |
| 119 | * "suffix$", "substring" or "^complete string$". |
| 120 | * |
| 121 | * @param value The string to check. |
| 122 | * @param pattern The pattern. |
| 123 | * @return Nonzero if pattern matches. |
| 124 | */ |
| 125 | static int dmi_compare(const char *value, const char *pattern) |
| 126 | { |
| 127 | int anchored = 0; |
| 128 | int patternlen; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 129 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 130 | msg_pspew("matching %s against %s\n", value, pattern); |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 131 | /* The empty string is part of all strings! */ |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 132 | if (pattern[0] == 0) |
| 133 | return 1; |
| 134 | |
| 135 | if (pattern[0] == '^') { |
| 136 | anchored = 1; |
| 137 | pattern++; |
| 138 | } |
| 139 | |
| 140 | patternlen = strlen(pattern); |
| 141 | if (pattern[patternlen - 1] == '$') { |
| 142 | int valuelen = strlen(value); |
| 143 | patternlen--; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 144 | if (patternlen > valuelen) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 145 | return 0; |
| 146 | |
| 147 | /* full string match: require same length */ |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 148 | if (anchored && (valuelen != patternlen)) |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 149 | return 0; |
| 150 | |
| 151 | /* start character to make ends match */ |
| 152 | value += valuelen - patternlen; |
| 153 | anchored = 1; |
| 154 | } |
| 155 | |
| 156 | if (anchored) |
| 157 | return strncmp(value, pattern, patternlen) == 0; |
| 158 | else |
| 159 | return strstr(value, pattern) != NULL; |
| 160 | } |
| 161 | |
| 162 | int dmi_match(const char *pattern) |
| 163 | { |
| 164 | int i; |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 165 | |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 166 | if (!has_dmi_support) |
| 167 | return 0; |
| 168 | |
Michael Karcher | fd41670 | 2010-03-14 17:57:52 +0000 | [diff] [blame] | 169 | for (i = 0; i < ARRAY_SIZE(dmidecode_names); i++) |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 170 | if (dmi_compare(dmistrings[i], pattern)) |
Michael Karcher | 4dfa093 | 2010-02-12 05:44:18 +0000 | [diff] [blame] | 171 | return 1; |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 172 | |
| 173 | return 0; |
| 174 | } |