Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * EFI Variables - efivars.c |
| 3 | * |
| 4 | * Copyright (C) 2001,2003,2004 Dell <Matt_Domsch@dell.com> |
| 5 | * Copyright (C) 2004 Intel Corporation <matthew.e.tolentino@intel.com> |
| 6 | * |
| 7 | * This code takes all variables accessible from EFI runtime and |
| 8 | * exports them via sysfs |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | * Changelog: |
| 25 | * |
| 26 | * 17 May 2004 - Matt Domsch <Matt_Domsch@dell.com> |
| 27 | * remove check for efi_enabled in exit |
| 28 | * add MODULE_VERSION |
| 29 | * |
| 30 | * 26 Apr 2004 - Matt Domsch <Matt_Domsch@dell.com> |
| 31 | * minor bug fixes |
| 32 | * |
| 33 | * 21 Apr 2004 - Matt Tolentino <matthew.e.tolentino@intel.com) |
| 34 | * converted driver to export variable information via sysfs |
| 35 | * and moved to drivers/firmware directory |
| 36 | * bumped revision number to v0.07 to reflect conversion & move |
| 37 | * |
| 38 | * 10 Dec 2002 - Matt Domsch <Matt_Domsch@dell.com> |
| 39 | * fix locking per Peter Chubb's findings |
| 40 | * |
| 41 | * 25 Mar 2002 - Matt Domsch <Matt_Domsch@dell.com> |
| 42 | * move uuid_unparse() to include/asm-ia64/efi.h:efi_guid_unparse() |
| 43 | * |
| 44 | * 12 Feb 2002 - Matt Domsch <Matt_Domsch@dell.com> |
| 45 | * use list_for_each_safe when deleting vars. |
| 46 | * remove ifdef CONFIG_SMP around include <linux/smp.h> |
| 47 | * v0.04 release to linux-ia64@linuxia64.org |
| 48 | * |
| 49 | * 20 April 2001 - Matt Domsch <Matt_Domsch@dell.com> |
| 50 | * Moved vars from /proc/efi to /proc/efi/vars, and made |
| 51 | * efi.c own the /proc/efi directory. |
| 52 | * v0.03 release to linux-ia64@linuxia64.org |
| 53 | * |
| 54 | * 26 March 2001 - Matt Domsch <Matt_Domsch@dell.com> |
| 55 | * At the request of Stephane, moved ownership of /proc/efi |
| 56 | * to efi.c, and now efivars lives under /proc/efi/vars. |
| 57 | * |
| 58 | * 12 March 2001 - Matt Domsch <Matt_Domsch@dell.com> |
| 59 | * Feedback received from Stephane Eranian incorporated. |
| 60 | * efivar_write() checks copy_from_user() return value. |
| 61 | * efivar_read/write() returns proper errno. |
| 62 | * v0.02 release to linux-ia64@linuxia64.org |
| 63 | * |
| 64 | * 26 February 2001 - Matt Domsch <Matt_Domsch@dell.com> |
| 65 | * v0.01 release to linux-ia64@linuxia64.org |
| 66 | */ |
| 67 | |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 68 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #include <linux/types.h> |
| 70 | #include <linux/errno.h> |
| 71 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include <linux/mm.h> |
| 73 | #include <linux/module.h> |
| 74 | #include <linux/string.h> |
| 75 | #include <linux/smp.h> |
| 76 | #include <linux/efi.h> |
| 77 | #include <linux/sysfs.h> |
| 78 | #include <linux/kobject.h> |
| 79 | #include <linux/device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 80 | #include <linux/slab.h> |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 81 | #include <linux/pstore.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | #include <asm/uaccess.h> |
| 84 | |
| 85 | #define EFIVARS_VERSION "0.08" |
| 86 | #define EFIVARS_DATE "2004-May-17" |
| 87 | |
| 88 | MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>"); |
| 89 | MODULE_DESCRIPTION("sysfs interface to EFI Variables"); |
| 90 | MODULE_LICENSE("GPL"); |
| 91 | MODULE_VERSION(EFIVARS_VERSION); |
| 92 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 93 | #define DUMP_NAME_LEN 52 |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* |
| 96 | * The maximum size of VariableName + Data = 1024 |
| 97 | * Therefore, it's reasonable to save that much |
| 98 | * space in each part of the structure, |
| 99 | * and we use a page for reading/writing. |
| 100 | */ |
| 101 | |
| 102 | struct efi_variable { |
| 103 | efi_char16_t VariableName[1024/sizeof(efi_char16_t)]; |
| 104 | efi_guid_t VendorGuid; |
| 105 | unsigned long DataSize; |
| 106 | __u8 Data[1024]; |
| 107 | efi_status_t Status; |
| 108 | __u32 Attributes; |
| 109 | } __attribute__((packed)); |
| 110 | |
| 111 | |
| 112 | struct efivar_entry { |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 113 | struct efivars *efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | struct efi_variable var; |
| 115 | struct list_head list; |
| 116 | struct kobject kobj; |
| 117 | }; |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | struct efivar_attribute { |
| 120 | struct attribute attr; |
| 121 | ssize_t (*show) (struct efivar_entry *entry, char *buf); |
| 122 | ssize_t (*store)(struct efivar_entry *entry, const char *buf, size_t count); |
| 123 | }; |
| 124 | |
Matt Fleming | 4025b05 | 2013-03-07 11:59:14 +0000 | [diff] [blame] | 125 | static struct efivars __efivars; |
| 126 | static struct efivar_operations ops; |
| 127 | |
Mike Waychison | 7644c16 | 2011-07-21 16:58:00 -0400 | [diff] [blame] | 128 | #define PSTORE_EFI_ATTRIBUTES \ |
| 129 | (EFI_VARIABLE_NON_VOLATILE | \ |
| 130 | EFI_VARIABLE_BOOTSERVICE_ACCESS | \ |
| 131 | EFI_VARIABLE_RUNTIME_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #define EFIVAR_ATTR(_name, _mode, _show, _store) \ |
| 134 | struct efivar_attribute efivar_attr_##_name = { \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 135 | .attr = {.name = __stringify(_name), .mode = _mode}, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | .show = _show, \ |
| 137 | .store = _store, \ |
| 138 | }; |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | #define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr) |
| 141 | #define to_efivar_entry(obj) container_of(obj, struct efivar_entry, kobj) |
| 142 | |
| 143 | /* |
| 144 | * Prototype for sysfs creation function |
| 145 | */ |
| 146 | static int |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 147 | efivar_create_sysfs_entry(struct efivars *efivars, |
| 148 | unsigned long variable_name_size, |
| 149 | efi_char16_t *variable_name, |
| 150 | efi_guid_t *vendor_guid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | /* Return the number of unicode characters in data */ |
| 153 | static unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 154 | utf16_strnlen(efi_char16_t *s, size_t maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | unsigned long length = 0; |
| 157 | |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 158 | while (*s++ != 0 && length < maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | length++; |
| 160 | return length; |
| 161 | } |
| 162 | |
Tony Luck | b728a5c | 2011-08-02 15:08:30 -0700 | [diff] [blame] | 163 | static inline unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 164 | utf16_strlen(efi_char16_t *s) |
| 165 | { |
| 166 | return utf16_strnlen(s, ~0UL); |
| 167 | } |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /* |
| 170 | * Return the number of bytes is the length of this string |
| 171 | * Note: this is NOT the same as the number of unicode characters |
| 172 | */ |
| 173 | static inline unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 174 | utf16_strsize(efi_char16_t *data, unsigned long maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 176 | return utf16_strnlen(data, maxlength/sizeof(efi_char16_t)) * sizeof(efi_char16_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Mike Waychison | 828aa1f | 2011-07-21 16:57:58 -0400 | [diff] [blame] | 179 | static inline int |
| 180 | utf16_strncmp(const efi_char16_t *a, const efi_char16_t *b, size_t len) |
| 181 | { |
| 182 | while (1) { |
| 183 | if (len == 0) |
| 184 | return 0; |
| 185 | if (*a < *b) |
| 186 | return -1; |
| 187 | if (*a > *b) |
| 188 | return 1; |
| 189 | if (*a == 0) /* implies *b == 0 */ |
| 190 | return 0; |
| 191 | a++; |
| 192 | b++; |
| 193 | len--; |
| 194 | } |
| 195 | } |
| 196 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 197 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 198 | validate_device_path(struct efi_variable *var, int match, u8 *buffer, |
| 199 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 200 | { |
| 201 | struct efi_generic_dev_path *node; |
| 202 | int offset = 0; |
| 203 | |
| 204 | node = (struct efi_generic_dev_path *)buffer; |
| 205 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 206 | if (len < sizeof(*node)) |
| 207 | return false; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 208 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 209 | while (offset <= len - sizeof(*node) && |
| 210 | node->length >= sizeof(*node) && |
| 211 | node->length <= len - offset) { |
| 212 | offset += node->length; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 213 | |
| 214 | if ((node->type == EFI_DEV_END_PATH || |
| 215 | node->type == EFI_DEV_END_PATH2) && |
| 216 | node->sub_type == EFI_DEV_END_ENTIRE) |
| 217 | return true; |
| 218 | |
| 219 | node = (struct efi_generic_dev_path *)(buffer + offset); |
| 220 | } |
| 221 | |
| 222 | /* |
| 223 | * If we're here then either node->length pointed past the end |
| 224 | * of the buffer or we reached the end of the buffer without |
| 225 | * finding a device path end node. |
| 226 | */ |
| 227 | return false; |
| 228 | } |
| 229 | |
| 230 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 231 | validate_boot_order(struct efi_variable *var, int match, u8 *buffer, |
| 232 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 233 | { |
| 234 | /* An array of 16-bit integers */ |
| 235 | if ((len % 2) != 0) |
| 236 | return false; |
| 237 | |
| 238 | return true; |
| 239 | } |
| 240 | |
| 241 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 242 | validate_load_option(struct efi_variable *var, int match, u8 *buffer, |
| 243 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 244 | { |
| 245 | u16 filepathlength; |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 246 | int i, desclength = 0, namelen; |
| 247 | |
| 248 | namelen = utf16_strnlen(var->VariableName, sizeof(var->VariableName)); |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 249 | |
| 250 | /* Either "Boot" or "Driver" followed by four digits of hex */ |
| 251 | for (i = match; i < match+4; i++) { |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 252 | if (var->VariableName[i] > 127 || |
| 253 | hex_to_bin(var->VariableName[i] & 0xff) < 0) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 254 | return true; |
| 255 | } |
| 256 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 257 | /* Reject it if there's 4 digits of hex and then further content */ |
| 258 | if (namelen > match + 4) |
| 259 | return false; |
| 260 | |
| 261 | /* A valid entry must be at least 8 bytes */ |
| 262 | if (len < 8) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 263 | return false; |
| 264 | |
| 265 | filepathlength = buffer[4] | buffer[5] << 8; |
| 266 | |
| 267 | /* |
| 268 | * There's no stored length for the description, so it has to be |
| 269 | * found by hand |
| 270 | */ |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 271 | desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 272 | |
| 273 | /* Each boot entry must have a descriptor */ |
| 274 | if (!desclength) |
| 275 | return false; |
| 276 | |
| 277 | /* |
| 278 | * If the sum of the length of the description, the claimed filepath |
| 279 | * length and the original header are greater than the length of the |
| 280 | * variable, it's malformed |
| 281 | */ |
| 282 | if ((desclength + filepathlength + 6) > len) |
| 283 | return false; |
| 284 | |
| 285 | /* |
| 286 | * And, finally, check the filepath |
| 287 | */ |
| 288 | return validate_device_path(var, match, buffer + desclength + 6, |
| 289 | filepathlength); |
| 290 | } |
| 291 | |
| 292 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 293 | validate_uint16(struct efi_variable *var, int match, u8 *buffer, |
| 294 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 295 | { |
| 296 | /* A single 16-bit integer */ |
| 297 | if (len != 2) |
| 298 | return false; |
| 299 | |
| 300 | return true; |
| 301 | } |
| 302 | |
| 303 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 304 | validate_ascii_string(struct efi_variable *var, int match, u8 *buffer, |
| 305 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 306 | { |
| 307 | int i; |
| 308 | |
| 309 | for (i = 0; i < len; i++) { |
| 310 | if (buffer[i] > 127) |
| 311 | return false; |
| 312 | |
| 313 | if (buffer[i] == 0) |
| 314 | return true; |
| 315 | } |
| 316 | |
| 317 | return false; |
| 318 | } |
| 319 | |
| 320 | struct variable_validate { |
| 321 | char *name; |
| 322 | bool (*validate)(struct efi_variable *var, int match, u8 *data, |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 323 | unsigned long len); |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 324 | }; |
| 325 | |
| 326 | static const struct variable_validate variable_validate[] = { |
| 327 | { "BootNext", validate_uint16 }, |
| 328 | { "BootOrder", validate_boot_order }, |
| 329 | { "DriverOrder", validate_boot_order }, |
| 330 | { "Boot*", validate_load_option }, |
| 331 | { "Driver*", validate_load_option }, |
| 332 | { "ConIn", validate_device_path }, |
| 333 | { "ConInDev", validate_device_path }, |
| 334 | { "ConOut", validate_device_path }, |
| 335 | { "ConOutDev", validate_device_path }, |
| 336 | { "ErrOut", validate_device_path }, |
| 337 | { "ErrOutDev", validate_device_path }, |
| 338 | { "Timeout", validate_uint16 }, |
| 339 | { "Lang", validate_ascii_string }, |
| 340 | { "PlatformLang", validate_ascii_string }, |
| 341 | { "", NULL }, |
| 342 | }; |
| 343 | |
| 344 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 345 | validate_var(struct efi_variable *var, u8 *data, unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 346 | { |
| 347 | int i; |
| 348 | u16 *unicode_name = var->VariableName; |
| 349 | |
| 350 | for (i = 0; variable_validate[i].validate != NULL; i++) { |
| 351 | const char *name = variable_validate[i].name; |
| 352 | int match; |
| 353 | |
| 354 | for (match = 0; ; match++) { |
| 355 | char c = name[match]; |
| 356 | u16 u = unicode_name[match]; |
| 357 | |
| 358 | /* All special variables are plain ascii */ |
| 359 | if (u > 127) |
| 360 | return true; |
| 361 | |
| 362 | /* Wildcard in the matching name means we've matched */ |
| 363 | if (c == '*') |
| 364 | return variable_validate[i].validate(var, |
| 365 | match, data, len); |
| 366 | |
| 367 | /* Case sensitive match */ |
| 368 | if (c != u) |
| 369 | break; |
| 370 | |
| 371 | /* Reached the end of the string while matching */ |
| 372 | if (!c) |
| 373 | return variable_validate[i].validate(var, |
| 374 | match, data, len); |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | return true; |
| 379 | } |
| 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | static efi_status_t |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 382 | get_var_data_locked(struct efivars *efivars, struct efi_variable *var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
| 384 | efi_status_t status; |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | var->DataSize = 1024; |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 387 | status = efivars->ops->get_variable(var->VariableName, |
| 388 | &var->VendorGuid, |
| 389 | &var->Attributes, |
| 390 | &var->DataSize, |
| 391 | var->Data); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 392 | return status; |
| 393 | } |
| 394 | |
| 395 | static efi_status_t |
| 396 | get_var_data(struct efivars *efivars, struct efi_variable *var) |
| 397 | { |
| 398 | efi_status_t status; |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 399 | unsigned long flags; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 400 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 401 | spin_lock_irqsave(&efivars->lock, flags); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 402 | status = get_var_data_locked(efivars, var); |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 403 | spin_unlock_irqrestore(&efivars->lock, flags); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | if (status != EFI_SUCCESS) { |
| 406 | printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n", |
| 407 | status); |
| 408 | } |
| 409 | return status; |
| 410 | } |
| 411 | |
| 412 | static ssize_t |
| 413 | efivar_guid_read(struct efivar_entry *entry, char *buf) |
| 414 | { |
| 415 | struct efi_variable *var = &entry->var; |
| 416 | char *str = buf; |
| 417 | |
| 418 | if (!entry || !buf) |
| 419 | return 0; |
| 420 | |
| 421 | efi_guid_unparse(&var->VendorGuid, str); |
| 422 | str += strlen(str); |
| 423 | str += sprintf(str, "\n"); |
| 424 | |
| 425 | return str - buf; |
| 426 | } |
| 427 | |
| 428 | static ssize_t |
| 429 | efivar_attr_read(struct efivar_entry *entry, char *buf) |
| 430 | { |
| 431 | struct efi_variable *var = &entry->var; |
| 432 | char *str = buf; |
| 433 | efi_status_t status; |
| 434 | |
| 435 | if (!entry || !buf) |
| 436 | return -EINVAL; |
| 437 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 438 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | if (status != EFI_SUCCESS) |
| 440 | return -EIO; |
| 441 | |
Khalid Aziz | ed02004 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 442 | if (var->Attributes & EFI_VARIABLE_NON_VOLATILE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n"); |
Khalid Aziz | ed02004 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 444 | if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n"); |
Khalid Aziz | ed02004 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 446 | if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n"); |
Khalid Aziz | ed02004 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 448 | if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) |
| 449 | str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n"); |
| 450 | if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) |
| 451 | str += sprintf(str, |
| 452 | "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n"); |
| 453 | if (var->Attributes & |
| 454 | EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) |
| 455 | str += sprintf(str, |
| 456 | "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n"); |
| 457 | if (var->Attributes & EFI_VARIABLE_APPEND_WRITE) |
| 458 | str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return str - buf; |
| 460 | } |
| 461 | |
| 462 | static ssize_t |
| 463 | efivar_size_read(struct efivar_entry *entry, char *buf) |
| 464 | { |
| 465 | struct efi_variable *var = &entry->var; |
| 466 | char *str = buf; |
| 467 | efi_status_t status; |
| 468 | |
| 469 | if (!entry || !buf) |
| 470 | return -EINVAL; |
| 471 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 472 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | if (status != EFI_SUCCESS) |
| 474 | return -EIO; |
| 475 | |
| 476 | str += sprintf(str, "0x%lx\n", var->DataSize); |
| 477 | return str - buf; |
| 478 | } |
| 479 | |
| 480 | static ssize_t |
| 481 | efivar_data_read(struct efivar_entry *entry, char *buf) |
| 482 | { |
| 483 | struct efi_variable *var = &entry->var; |
| 484 | efi_status_t status; |
| 485 | |
| 486 | if (!entry || !buf) |
| 487 | return -EINVAL; |
| 488 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 489 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | if (status != EFI_SUCCESS) |
| 491 | return -EIO; |
| 492 | |
| 493 | memcpy(buf, var->Data, var->DataSize); |
| 494 | return var->DataSize; |
| 495 | } |
| 496 | /* |
| 497 | * We allow each variable to be edited via rewriting the |
| 498 | * entire efi variable structure. |
| 499 | */ |
| 500 | static ssize_t |
| 501 | efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count) |
| 502 | { |
| 503 | struct efi_variable *new_var, *var = &entry->var; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 504 | struct efivars *efivars = entry->efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | efi_status_t status = EFI_NOT_FOUND; |
| 506 | |
| 507 | if (count != sizeof(struct efi_variable)) |
| 508 | return -EINVAL; |
| 509 | |
| 510 | new_var = (struct efi_variable *)buf; |
| 511 | /* |
| 512 | * If only updating the variable data, then the name |
| 513 | * and guid should remain the same |
| 514 | */ |
| 515 | if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) || |
| 516 | efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) { |
| 517 | printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n"); |
| 518 | return -EINVAL; |
| 519 | } |
| 520 | |
| 521 | if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){ |
| 522 | printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n"); |
| 523 | return -EINVAL; |
| 524 | } |
| 525 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 526 | if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || |
| 527 | validate_var(new_var, new_var->Data, new_var->DataSize) == false) { |
| 528 | printk(KERN_ERR "efivars: Malformed variable content\n"); |
| 529 | return -EINVAL; |
| 530 | } |
| 531 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 532 | spin_lock_irq(&efivars->lock); |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 533 | status = efivars->ops->set_variable(new_var->VariableName, |
| 534 | &new_var->VendorGuid, |
| 535 | new_var->Attributes, |
| 536 | new_var->DataSize, |
| 537 | new_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 539 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 541 | if (status != EFI_SUCCESS) { |
| 542 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 543 | status); |
| 544 | return -EIO; |
| 545 | } |
| 546 | |
| 547 | memcpy(&entry->var, new_var, count); |
| 548 | return count; |
| 549 | } |
| 550 | |
| 551 | static ssize_t |
| 552 | efivar_show_raw(struct efivar_entry *entry, char *buf) |
| 553 | { |
| 554 | struct efi_variable *var = &entry->var; |
| 555 | efi_status_t status; |
| 556 | |
| 557 | if (!entry || !buf) |
| 558 | return 0; |
| 559 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 560 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (status != EFI_SUCCESS) |
| 562 | return -EIO; |
| 563 | |
| 564 | memcpy(buf, var, sizeof(*var)); |
| 565 | return sizeof(*var); |
| 566 | } |
| 567 | |
| 568 | /* |
| 569 | * Generic read/write functions that call the specific functions of |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 570 | * the attributes... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | */ |
| 572 | static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr, |
| 573 | char *buf) |
| 574 | { |
| 575 | struct efivar_entry *var = to_efivar_entry(kobj); |
| 576 | struct efivar_attribute *efivar_attr = to_efivar_attr(attr); |
Dmitry Torokhov | 70f2817 | 2005-04-29 01:27:34 -0500 | [diff] [blame] | 577 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | if (!capable(CAP_SYS_ADMIN)) |
| 580 | return -EACCES; |
| 581 | |
| 582 | if (efivar_attr->show) { |
| 583 | ret = efivar_attr->show(var, buf); |
| 584 | } |
| 585 | return ret; |
| 586 | } |
| 587 | |
| 588 | static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr, |
| 589 | const char *buf, size_t count) |
| 590 | { |
| 591 | struct efivar_entry *var = to_efivar_entry(kobj); |
| 592 | struct efivar_attribute *efivar_attr = to_efivar_attr(attr); |
Dmitry Torokhov | 70f2817 | 2005-04-29 01:27:34 -0500 | [diff] [blame] | 593 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | if (!capable(CAP_SYS_ADMIN)) |
| 596 | return -EACCES; |
| 597 | |
| 598 | if (efivar_attr->store) |
| 599 | ret = efivar_attr->store(var, buf, count); |
| 600 | |
| 601 | return ret; |
| 602 | } |
| 603 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 604 | static const struct sysfs_ops efivar_attr_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | .show = efivar_attr_show, |
| 606 | .store = efivar_attr_store, |
| 607 | }; |
| 608 | |
| 609 | static void efivar_release(struct kobject *kobj) |
| 610 | { |
| 611 | struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | kfree(var); |
| 613 | } |
| 614 | |
| 615 | static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL); |
| 616 | static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL); |
| 617 | static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL); |
| 618 | static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL); |
| 619 | static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw); |
| 620 | |
| 621 | static struct attribute *def_attrs[] = { |
| 622 | &efivar_attr_guid.attr, |
| 623 | &efivar_attr_size.attr, |
| 624 | &efivar_attr_attributes.attr, |
| 625 | &efivar_attr_data.attr, |
| 626 | &efivar_attr_raw_var.attr, |
| 627 | NULL, |
| 628 | }; |
| 629 | |
Greg Kroah-Hartman | e89a411 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 630 | static struct kobj_type efivar_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | .release = efivar_release, |
| 632 | .sysfs_ops = &efivar_attr_ops, |
| 633 | .default_attrs = def_attrs, |
| 634 | }; |
| 635 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 636 | static struct pstore_info efi_pstore_info; |
| 637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | static inline void |
| 639 | efivar_unregister(struct efivar_entry *var) |
| 640 | { |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 641 | kobject_put(&var->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
| 643 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 644 | #ifdef CONFIG_PSTORE |
| 645 | |
| 646 | static int efi_pstore_open(struct pstore_info *psi) |
| 647 | { |
| 648 | struct efivars *efivars = psi->data; |
| 649 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 650 | spin_lock_irq(&efivars->lock); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 651 | efivars->walk_entry = list_first_entry(&efivars->list, |
| 652 | struct efivar_entry, list); |
| 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | static int efi_pstore_close(struct pstore_info *psi) |
| 657 | { |
| 658 | struct efivars *efivars = psi->data; |
| 659 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 660 | spin_unlock_irq(&efivars->lock); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 661 | return 0; |
| 662 | } |
| 663 | |
| 664 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 665 | struct timespec *timespec, |
| 666 | char **buf, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 667 | { |
| 668 | efi_guid_t vendor = LINUX_EFI_CRASH_GUID; |
| 669 | struct efivars *efivars = psi->data; |
| 670 | char name[DUMP_NAME_LEN]; |
| 671 | int i; |
| 672 | unsigned int part, size; |
| 673 | unsigned long time; |
| 674 | |
| 675 | while (&efivars->walk_entry->list != &efivars->list) { |
| 676 | if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid, |
| 677 | vendor)) { |
| 678 | for (i = 0; i < DUMP_NAME_LEN; i++) { |
| 679 | name[i] = efivars->walk_entry->var.VariableName[i]; |
| 680 | } |
| 681 | if (sscanf(name, "dump-type%u-%u-%lu", type, &part, &time) == 3) { |
| 682 | *id = part; |
| 683 | timespec->tv_sec = time; |
| 684 | timespec->tv_nsec = 0; |
| 685 | get_var_data_locked(efivars, &efivars->walk_entry->var); |
| 686 | size = efivars->walk_entry->var.DataSize; |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 687 | *buf = kmalloc(size, GFP_KERNEL); |
| 688 | if (*buf == NULL) |
| 689 | return -ENOMEM; |
| 690 | memcpy(*buf, efivars->walk_entry->var.Data, |
| 691 | size); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 692 | efivars->walk_entry = list_entry(efivars->walk_entry->list.next, |
| 693 | struct efivar_entry, list); |
| 694 | return size; |
| 695 | } |
| 696 | } |
| 697 | efivars->walk_entry = list_entry(efivars->walk_entry->list.next, |
| 698 | struct efivar_entry, list); |
| 699 | } |
| 700 | return 0; |
| 701 | } |
| 702 | |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 703 | static int efi_pstore_write(enum pstore_type_id type, |
| 704 | enum kmsg_dump_reason reason, u64 *id, |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 705 | unsigned int part, size_t size, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 706 | { |
| 707 | char name[DUMP_NAME_LEN]; |
| 708 | char stub_name[DUMP_NAME_LEN]; |
| 709 | efi_char16_t efi_name[DUMP_NAME_LEN]; |
| 710 | efi_guid_t vendor = LINUX_EFI_CRASH_GUID; |
| 711 | struct efivars *efivars = psi->data; |
| 712 | struct efivar_entry *entry, *found = NULL; |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 713 | int i, ret = 0; |
Seiji Aguchi | 8e74ecf | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 714 | u64 storage_space, remaining_space, max_variable_size; |
| 715 | efi_status_t status = EFI_NOT_FOUND; |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 716 | unsigned long flags; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 717 | |
| 718 | sprintf(stub_name, "dump-type%u-%u-", type, part); |
| 719 | sprintf(name, "%s%lu", stub_name, get_seconds()); |
| 720 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 721 | spin_lock_irqsave(&efivars->lock, flags); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 722 | |
Seiji Aguchi | 8e74ecf | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 723 | /* |
| 724 | * Check if there is a space enough to log. |
| 725 | * size: a size of logging data |
| 726 | * DUMP_NAME_LEN * 2: a maximum size of variable name |
| 727 | */ |
| 728 | status = efivars->ops->query_variable_info(PSTORE_EFI_ATTRIBUTES, |
| 729 | &storage_space, |
| 730 | &remaining_space, |
| 731 | &max_variable_size); |
| 732 | if (status || remaining_space < size + DUMP_NAME_LEN * 2) { |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 733 | spin_unlock_irqrestore(&efivars->lock, flags); |
Seiji Aguchi | 8e74ecf | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 734 | *id = part; |
| 735 | return -ENOSPC; |
| 736 | } |
| 737 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 738 | for (i = 0; i < DUMP_NAME_LEN; i++) |
| 739 | efi_name[i] = stub_name[i]; |
| 740 | |
| 741 | /* |
| 742 | * Clean up any entries with the same name |
| 743 | */ |
| 744 | |
| 745 | list_for_each_entry(entry, &efivars->list, list) { |
| 746 | get_var_data_locked(efivars, &entry->var); |
| 747 | |
Mike Waychison | c475594 | 2011-07-21 16:57:59 -0400 | [diff] [blame] | 748 | if (efi_guidcmp(entry->var.VendorGuid, vendor)) |
| 749 | continue; |
| 750 | if (utf16_strncmp(entry->var.VariableName, efi_name, |
| 751 | utf16_strlen(efi_name))) |
| 752 | continue; |
| 753 | /* Needs to be a prefix */ |
| 754 | if (entry->var.VariableName[utf16_strlen(efi_name)] == 0) |
| 755 | continue; |
| 756 | |
| 757 | /* found */ |
| 758 | found = entry; |
Mike Waychison | 7644c16 | 2011-07-21 16:58:00 -0400 | [diff] [blame] | 759 | efivars->ops->set_variable(entry->var.VariableName, |
| 760 | &entry->var.VendorGuid, |
| 761 | PSTORE_EFI_ATTRIBUTES, |
Mike Waychison | c475594 | 2011-07-21 16:57:59 -0400 | [diff] [blame] | 762 | 0, NULL); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | if (found) |
| 766 | list_del(&found->list); |
| 767 | |
| 768 | for (i = 0; i < DUMP_NAME_LEN; i++) |
| 769 | efi_name[i] = name[i]; |
| 770 | |
Mike Waychison | 7644c16 | 2011-07-21 16:58:00 -0400 | [diff] [blame] | 771 | efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES, |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 772 | size, psi->buf); |
| 773 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 774 | spin_unlock_irqrestore(&efivars->lock, flags); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 775 | |
| 776 | if (found) |
| 777 | efivar_unregister(found); |
| 778 | |
| 779 | if (size) |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 780 | ret = efivar_create_sysfs_entry(efivars, |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 781 | utf16_strsize(efi_name, |
| 782 | DUMP_NAME_LEN * 2), |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 783 | efi_name, &vendor); |
| 784 | |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 785 | *id = part; |
| 786 | return ret; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 787 | }; |
| 788 | |
| 789 | static int efi_pstore_erase(enum pstore_type_id type, u64 id, |
| 790 | struct pstore_info *psi) |
| 791 | { |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 792 | efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 793 | |
| 794 | return 0; |
| 795 | } |
| 796 | #else |
| 797 | static int efi_pstore_open(struct pstore_info *psi) |
| 798 | { |
| 799 | return 0; |
| 800 | } |
| 801 | |
| 802 | static int efi_pstore_close(struct pstore_info *psi) |
| 803 | { |
| 804 | return 0; |
| 805 | } |
| 806 | |
| 807 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, |
Christoph Fritz | eee628d | 2011-11-28 23:49:33 +0100 | [diff] [blame] | 808 | struct timespec *timespec, |
| 809 | char **buf, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 810 | { |
| 811 | return -1; |
| 812 | } |
| 813 | |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 814 | static int efi_pstore_write(enum pstore_type_id type, |
| 815 | enum kmsg_dump_reason reason, u64 *id, |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 816 | unsigned int part, size_t size, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 817 | { |
| 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | static int efi_pstore_erase(enum pstore_type_id type, u64 id, |
| 822 | struct pstore_info *psi) |
| 823 | { |
| 824 | return 0; |
| 825 | } |
| 826 | #endif |
| 827 | |
| 828 | static struct pstore_info efi_pstore_info = { |
| 829 | .owner = THIS_MODULE, |
| 830 | .name = "efi", |
| 831 | .open = efi_pstore_open, |
| 832 | .close = efi_pstore_close, |
| 833 | .read = efi_pstore_read, |
| 834 | .write = efi_pstore_write, |
| 835 | .erase = efi_pstore_erase, |
| 836 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 838 | static ssize_t efivar_create(struct file *filp, struct kobject *kobj, |
Greg Kroah-Hartman | 97fa5bb | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 839 | struct bin_attribute *bin_attr, |
| 840 | char *buf, loff_t pos, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | { |
| 842 | struct efi_variable *new_var = (struct efi_variable *)buf; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 843 | struct efivars *efivars = bin_attr->private; |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 844 | struct efivar_entry *search_efivar, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | unsigned long strsize1, strsize2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | efi_status_t status = EFI_NOT_FOUND; |
| 847 | int found = 0; |
| 848 | |
| 849 | if (!capable(CAP_SYS_ADMIN)) |
| 850 | return -EACCES; |
| 851 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 852 | if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || |
| 853 | validate_var(new_var, new_var->Data, new_var->DataSize) == false) { |
| 854 | printk(KERN_ERR "efivars: Malformed variable content\n"); |
| 855 | return -EINVAL; |
| 856 | } |
| 857 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 858 | spin_lock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
| 860 | /* |
| 861 | * Does this variable already exist? |
| 862 | */ |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 863 | list_for_each_entry_safe(search_efivar, n, &efivars->list, list) { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 864 | strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024); |
| 865 | strsize2 = utf16_strsize(new_var->VariableName, 1024); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | if (strsize1 == strsize2 && |
| 867 | !memcmp(&(search_efivar->var.VariableName), |
| 868 | new_var->VariableName, strsize1) && |
| 869 | !efi_guidcmp(search_efivar->var.VendorGuid, |
| 870 | new_var->VendorGuid)) { |
| 871 | found = 1; |
| 872 | break; |
| 873 | } |
| 874 | } |
| 875 | if (found) { |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 876 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | return -EINVAL; |
| 878 | } |
| 879 | |
| 880 | /* now *really* create the variable via EFI */ |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 881 | status = efivars->ops->set_variable(new_var->VariableName, |
| 882 | &new_var->VendorGuid, |
| 883 | new_var->Attributes, |
| 884 | new_var->DataSize, |
| 885 | new_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
| 887 | if (status != EFI_SUCCESS) { |
| 888 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 889 | status); |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 890 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return -EIO; |
| 892 | } |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 893 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
| 895 | /* Create the entry in sysfs. Locking is not required here */ |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 896 | status = efivar_create_sysfs_entry(efivars, |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 897 | utf16_strsize(new_var->VariableName, |
| 898 | 1024), |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 899 | new_var->VariableName, |
| 900 | &new_var->VendorGuid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | if (status) { |
| 902 | printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n"); |
| 903 | } |
| 904 | return count; |
| 905 | } |
| 906 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 907 | static ssize_t efivar_delete(struct file *filp, struct kobject *kobj, |
Greg Kroah-Hartman | 97fa5bb | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 908 | struct bin_attribute *bin_attr, |
| 909 | char *buf, loff_t pos, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | { |
| 911 | struct efi_variable *del_var = (struct efi_variable *)buf; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 912 | struct efivars *efivars = bin_attr->private; |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 913 | struct efivar_entry *search_efivar, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | unsigned long strsize1, strsize2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | efi_status_t status = EFI_NOT_FOUND; |
| 916 | int found = 0; |
| 917 | |
| 918 | if (!capable(CAP_SYS_ADMIN)) |
| 919 | return -EACCES; |
| 920 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 921 | spin_lock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | /* |
| 924 | * Does this variable already exist? |
| 925 | */ |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 926 | list_for_each_entry_safe(search_efivar, n, &efivars->list, list) { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 927 | strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024); |
| 928 | strsize2 = utf16_strsize(del_var->VariableName, 1024); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | if (strsize1 == strsize2 && |
| 930 | !memcmp(&(search_efivar->var.VariableName), |
| 931 | del_var->VariableName, strsize1) && |
| 932 | !efi_guidcmp(search_efivar->var.VendorGuid, |
| 933 | del_var->VendorGuid)) { |
| 934 | found = 1; |
| 935 | break; |
| 936 | } |
| 937 | } |
| 938 | if (!found) { |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 939 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | return -EINVAL; |
| 941 | } |
| 942 | /* force the Attributes/DataSize to 0 to ensure deletion */ |
| 943 | del_var->Attributes = 0; |
| 944 | del_var->DataSize = 0; |
| 945 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 946 | status = efivars->ops->set_variable(del_var->VariableName, |
| 947 | &del_var->VendorGuid, |
| 948 | del_var->Attributes, |
| 949 | del_var->DataSize, |
| 950 | del_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | |
| 952 | if (status != EFI_SUCCESS) { |
| 953 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 954 | status); |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 955 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | return -EIO; |
| 957 | } |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 958 | list_del(&search_efivar->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* We need to release this lock before unregistering. */ |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 960 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | efivar_unregister(search_efivar); |
| 962 | |
| 963 | /* It's dead Jim.... */ |
| 964 | return count; |
| 965 | } |
| 966 | |
Matt Fleming | 4025b05 | 2013-03-07 11:59:14 +0000 | [diff] [blame] | 967 | static bool variable_is_present(efi_char16_t *variable_name, efi_guid_t *vendor) |
| 968 | { |
| 969 | struct efivar_entry *entry, *n; |
| 970 | struct efivars *efivars = &__efivars; |
| 971 | unsigned long strsize1, strsize2; |
| 972 | bool found = false; |
| 973 | |
| 974 | strsize1 = utf16_strsize(variable_name, 1024); |
| 975 | list_for_each_entry_safe(entry, n, &efivars->list, list) { |
| 976 | strsize2 = utf16_strsize(entry->var.VariableName, 1024); |
| 977 | if (strsize1 == strsize2 && |
| 978 | !memcmp(variable_name, &(entry->var.VariableName), |
| 979 | strsize2) && |
| 980 | !efi_guidcmp(entry->var.VendorGuid, |
| 981 | *vendor)) { |
| 982 | found = true; |
| 983 | break; |
| 984 | } |
| 985 | } |
| 986 | return found; |
| 987 | } |
| 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | /* |
Matt Fleming | 5c44ddd | 2013-03-01 14:49:12 +0000 | [diff] [blame] | 990 | * Returns the size of variable_name, in bytes, including the |
| 991 | * terminating NULL character, or variable_name_size if no NULL |
| 992 | * character is found among the first variable_name_size bytes. |
| 993 | */ |
| 994 | static unsigned long var_name_strnsize(efi_char16_t *variable_name, |
| 995 | unsigned long variable_name_size) |
| 996 | { |
| 997 | unsigned long len; |
| 998 | efi_char16_t c; |
| 999 | |
| 1000 | /* |
| 1001 | * The variable name is, by definition, a NULL-terminated |
| 1002 | * string, so make absolutely sure that variable_name_size is |
| 1003 | * the value we expect it to be. If not, return the real size. |
| 1004 | */ |
| 1005 | for (len = 2; len <= variable_name_size; len += sizeof(c)) { |
| 1006 | c = variable_name[(len / sizeof(c)) - 1]; |
| 1007 | if (!c) |
| 1008 | break; |
| 1009 | } |
| 1010 | |
| 1011 | return min(len, variable_name_size); |
| 1012 | } |
| 1013 | |
| 1014 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | * Let's not leave out systab information that snuck into |
| 1016 | * the efivars driver |
| 1017 | */ |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1018 | static ssize_t systab_show(struct kobject *kobj, |
| 1019 | struct kobj_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | { |
| 1021 | char *str = buf; |
| 1022 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1023 | if (!kobj || !buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return -EINVAL; |
| 1025 | |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 1026 | if (efi.mps != EFI_INVALID_TABLE_ADDR) |
| 1027 | str += sprintf(str, "MPS=0x%lx\n", efi.mps); |
| 1028 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
| 1029 | str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20); |
| 1030 | if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
| 1031 | str += sprintf(str, "ACPI=0x%lx\n", efi.acpi); |
| 1032 | if (efi.smbios != EFI_INVALID_TABLE_ADDR) |
| 1033 | str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios); |
| 1034 | if (efi.hcdp != EFI_INVALID_TABLE_ADDR) |
| 1035 | str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp); |
| 1036 | if (efi.boot_info != EFI_INVALID_TABLE_ADDR) |
| 1037 | str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info); |
| 1038 | if (efi.uga != EFI_INVALID_TABLE_ADDR) |
| 1039 | str += sprintf(str, "UGA=0x%lx\n", efi.uga); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
| 1041 | return str - buf; |
| 1042 | } |
| 1043 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1044 | static struct kobj_attribute efi_attr_systab = |
| 1045 | __ATTR(systab, 0400, systab_show, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1047 | static struct attribute *efi_subsys_attrs[] = { |
| 1048 | &efi_attr_systab.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | NULL, /* maybe more in the future? */ |
| 1050 | }; |
| 1051 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1052 | static struct attribute_group efi_subsys_attr_group = { |
| 1053 | .attrs = efi_subsys_attrs, |
| 1054 | }; |
| 1055 | |
Greg Kroah-Hartman | bc87d2f | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1056 | static struct kobject *efi_kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
| 1058 | /* |
| 1059 | * efivar_create_sysfs_entry() |
| 1060 | * Requires: |
| 1061 | * variable_name_size = number of bytes required to hold |
| 1062 | * variable_name (not counting the NULL |
| 1063 | * character at the end. |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1064 | * efivars->lock is not held on entry or exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | * Returns 1 on failure, 0 on success |
| 1066 | */ |
| 1067 | static int |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1068 | efivar_create_sysfs_entry(struct efivars *efivars, |
| 1069 | unsigned long variable_name_size, |
| 1070 | efi_char16_t *variable_name, |
| 1071 | efi_guid_t *vendor_guid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | { |
| 1073 | int i, short_name_size = variable_name_size / sizeof(efi_char16_t) + 38; |
| 1074 | char *short_name; |
| 1075 | struct efivar_entry *new_efivar; |
| 1076 | |
Deepak Saxena | 9c21538 | 2005-11-07 01:01:24 -0800 | [diff] [blame] | 1077 | short_name = kzalloc(short_name_size + 1, GFP_KERNEL); |
| 1078 | new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
| 1080 | if (!short_name || !new_efivar) { |
Jesper Juhl | 0933ad9 | 2005-06-25 14:59:15 -0700 | [diff] [blame] | 1081 | kfree(short_name); |
| 1082 | kfree(new_efivar); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | return 1; |
| 1084 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1086 | new_efivar->efivars = efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | memcpy(new_efivar->var.VariableName, variable_name, |
| 1088 | variable_name_size); |
| 1089 | memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t)); |
| 1090 | |
| 1091 | /* Convert Unicode to normal chars (assume top bits are 0), |
| 1092 | ala UTF-8 */ |
| 1093 | for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) { |
| 1094 | short_name[i] = variable_name[i] & 0xFF; |
| 1095 | } |
| 1096 | /* This is ugly, but necessary to separate one vendor's |
| 1097 | private variables from another's. */ |
| 1098 | |
| 1099 | *(short_name + strlen(short_name)) = '-'; |
| 1100 | efi_guid_unparse(vendor_guid, short_name + strlen(short_name)); |
| 1101 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1102 | new_efivar->kobj.kset = efivars->kset; |
Greg Kroah-Hartman | d6d292c | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1103 | i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL, |
| 1104 | "%s", short_name); |
Jeff Garzik | 69b2186 | 2006-10-11 01:22:23 -0700 | [diff] [blame] | 1105 | if (i) { |
| 1106 | kfree(short_name); |
| 1107 | kfree(new_efivar); |
| 1108 | return 1; |
| 1109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | |
Greg Kroah-Hartman | d6d292c | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1111 | kobject_uevent(&new_efivar->kobj, KOBJ_ADD); |
Jesper Juhl | 0933ad9 | 2005-06-25 14:59:15 -0700 | [diff] [blame] | 1112 | kfree(short_name); |
| 1113 | short_name = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 1115 | spin_lock_irq(&efivars->lock); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1116 | list_add(&new_efivar->list, &efivars->list); |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 1117 | spin_unlock_irq(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
| 1119 | return 0; |
| 1120 | } |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1121 | |
| 1122 | static int |
| 1123 | create_efivars_bin_attributes(struct efivars *efivars) |
| 1124 | { |
| 1125 | struct bin_attribute *attr; |
| 1126 | int error; |
| 1127 | |
| 1128 | /* new_var */ |
| 1129 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
| 1130 | if (!attr) |
| 1131 | return -ENOMEM; |
| 1132 | |
| 1133 | attr->attr.name = "new_var"; |
| 1134 | attr->attr.mode = 0200; |
| 1135 | attr->write = efivar_create; |
| 1136 | attr->private = efivars; |
| 1137 | efivars->new_var = attr; |
| 1138 | |
| 1139 | /* del_var */ |
| 1140 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
| 1141 | if (!attr) { |
| 1142 | error = -ENOMEM; |
| 1143 | goto out_free; |
| 1144 | } |
| 1145 | attr->attr.name = "del_var"; |
| 1146 | attr->attr.mode = 0200; |
| 1147 | attr->write = efivar_delete; |
| 1148 | attr->private = efivars; |
| 1149 | efivars->del_var = attr; |
| 1150 | |
| 1151 | sysfs_bin_attr_init(efivars->new_var); |
| 1152 | sysfs_bin_attr_init(efivars->del_var); |
| 1153 | |
| 1154 | /* Register */ |
| 1155 | error = sysfs_create_bin_file(&efivars->kset->kobj, |
| 1156 | efivars->new_var); |
| 1157 | if (error) { |
| 1158 | printk(KERN_ERR "efivars: unable to create new_var sysfs file" |
| 1159 | " due to error %d\n", error); |
| 1160 | goto out_free; |
| 1161 | } |
| 1162 | error = sysfs_create_bin_file(&efivars->kset->kobj, |
| 1163 | efivars->del_var); |
| 1164 | if (error) { |
| 1165 | printk(KERN_ERR "efivars: unable to create del_var sysfs file" |
| 1166 | " due to error %d\n", error); |
| 1167 | sysfs_remove_bin_file(&efivars->kset->kobj, |
| 1168 | efivars->new_var); |
| 1169 | goto out_free; |
| 1170 | } |
| 1171 | |
| 1172 | return 0; |
| 1173 | out_free: |
Dan Carpenter | 051d51b | 2011-03-18 10:12:14 +0300 | [diff] [blame] | 1174 | kfree(efivars->del_var); |
| 1175 | efivars->del_var = NULL; |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1176 | kfree(efivars->new_var); |
| 1177 | efivars->new_var = NULL; |
| 1178 | return error; |
| 1179 | } |
| 1180 | |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1181 | void unregister_efivars(struct efivars *efivars) |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1182 | { |
| 1183 | struct efivar_entry *entry, *n; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1184 | |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1185 | list_for_each_entry_safe(entry, n, &efivars->list, list) { |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 1186 | spin_lock_irq(&efivars->lock); |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1187 | list_del(&entry->list); |
Josh Boyer | ff534f0 | 2013-03-11 17:47:42 -0400 | [diff] [blame^] | 1188 | spin_unlock_irq(&efivars->lock); |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1189 | efivar_unregister(entry); |
| 1190 | } |
| 1191 | if (efivars->new_var) |
| 1192 | sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var); |
| 1193 | if (efivars->del_var) |
| 1194 | sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var); |
| 1195 | kfree(efivars->new_var); |
| 1196 | kfree(efivars->del_var); |
| 1197 | kset_unregister(efivars->kset); |
| 1198 | } |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1199 | EXPORT_SYMBOL_GPL(unregister_efivars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
Matt Fleming | 4025b05 | 2013-03-07 11:59:14 +0000 | [diff] [blame] | 1201 | /* |
| 1202 | * Print a warning when duplicate EFI variables are encountered and |
| 1203 | * disable the sysfs workqueue since the firmware is buggy. |
| 1204 | */ |
| 1205 | static void dup_variable_bug(efi_char16_t *s16, efi_guid_t *vendor_guid, |
| 1206 | unsigned long len16) |
| 1207 | { |
| 1208 | size_t i, len8 = len16 / sizeof(efi_char16_t); |
| 1209 | char *s8; |
| 1210 | |
| 1211 | s8 = kzalloc(len8, GFP_KERNEL); |
| 1212 | if (!s8) |
| 1213 | return; |
| 1214 | |
| 1215 | for (i = 0; i < len8; i++) |
| 1216 | s8[i] = s16[i]; |
| 1217 | |
| 1218 | printk(KERN_WARNING "efivars: duplicate variable: %s-%pUl\n", |
| 1219 | s8, vendor_guid); |
| 1220 | kfree(s8); |
| 1221 | } |
| 1222 | |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1223 | int register_efivars(struct efivars *efivars, |
| 1224 | const struct efivar_operations *ops, |
| 1225 | struct kobject *parent_kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | { |
| 1227 | efi_status_t status = EFI_NOT_FOUND; |
| 1228 | efi_guid_t vendor_guid; |
| 1229 | efi_char16_t *variable_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | unsigned long variable_name_size = 1024; |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1231 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | |
Deepak Saxena | 9c21538 | 2005-11-07 01:01:24 -0800 | [diff] [blame] | 1233 | variable_name = kzalloc(variable_name_size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | if (!variable_name) { |
| 1235 | printk(KERN_ERR "efivars: Memory allocation failed.\n"); |
| 1236 | return -ENOMEM; |
| 1237 | } |
| 1238 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1239 | spin_lock_init(&efivars->lock); |
| 1240 | INIT_LIST_HEAD(&efivars->list); |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1241 | efivars->ops = ops; |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1242 | |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1243 | efivars->kset = kset_create_and_add("vars", NULL, parent_kobj); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1244 | if (!efivars->kset) { |
Greg Kroah-Hartman | 66ac831 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1245 | printk(KERN_ERR "efivars: Subsystem registration failed.\n"); |
| 1246 | error = -ENOMEM; |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1247 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | /* |
| 1251 | * Per EFI spec, the maximum storage allocated for both |
| 1252 | * the variable name and variable data is 1024 bytes. |
| 1253 | */ |
| 1254 | |
| 1255 | do { |
| 1256 | variable_name_size = 1024; |
| 1257 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1258 | status = ops->get_next_variable(&variable_name_size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | variable_name, |
| 1260 | &vendor_guid); |
| 1261 | switch (status) { |
| 1262 | case EFI_SUCCESS: |
Matt Fleming | 5c44ddd | 2013-03-01 14:49:12 +0000 | [diff] [blame] | 1263 | variable_name_size = var_name_strnsize(variable_name, |
| 1264 | variable_name_size); |
Matt Fleming | 4025b05 | 2013-03-07 11:59:14 +0000 | [diff] [blame] | 1265 | |
| 1266 | /* |
| 1267 | * Some firmware implementations return the |
| 1268 | * same variable name on multiple calls to |
| 1269 | * get_next_variable(). Terminate the loop |
| 1270 | * immediately as there is no guarantee that |
| 1271 | * we'll ever see a different variable name, |
| 1272 | * and may end up looping here forever. |
| 1273 | */ |
| 1274 | if (variable_is_present(variable_name, &vendor_guid)) { |
| 1275 | dup_variable_bug(variable_name, &vendor_guid, |
| 1276 | variable_name_size); |
| 1277 | status = EFI_NOT_FOUND; |
| 1278 | break; |
| 1279 | } |
| 1280 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1281 | efivar_create_sysfs_entry(efivars, |
| 1282 | variable_name_size, |
| 1283 | variable_name, |
| 1284 | &vendor_guid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | break; |
| 1286 | case EFI_NOT_FOUND: |
| 1287 | break; |
| 1288 | default: |
| 1289 | printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n", |
| 1290 | status); |
| 1291 | status = EFI_NOT_FOUND; |
| 1292 | break; |
| 1293 | } |
| 1294 | } while (status != EFI_NOT_FOUND); |
| 1295 | |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1296 | error = create_efivars_bin_attributes(efivars); |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1297 | if (error) |
| 1298 | unregister_efivars(efivars); |
| 1299 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1300 | efivars->efi_pstore_info = efi_pstore_info; |
| 1301 | |
| 1302 | efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL); |
| 1303 | if (efivars->efi_pstore_info.buf) { |
| 1304 | efivars->efi_pstore_info.bufsize = 1024; |
| 1305 | efivars->efi_pstore_info.data = efivars; |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 1306 | spin_lock_init(&efivars->efi_pstore_info.buf_lock); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1307 | pstore_register(&efivars->efi_pstore_info); |
| 1308 | } |
| 1309 | |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1310 | out: |
| 1311 | kfree(variable_name); |
| 1312 | |
| 1313 | return error; |
| 1314 | } |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1315 | EXPORT_SYMBOL_GPL(register_efivars); |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1316 | |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1317 | /* |
| 1318 | * For now we register the efi subsystem with the firmware subsystem |
| 1319 | * and the vars subsystem with the efi subsystem. In the future, it |
| 1320 | * might make sense to split off the efi subsystem into its own |
| 1321 | * driver, but for now only efivars will register with it, so just |
| 1322 | * include it here. |
| 1323 | */ |
| 1324 | |
| 1325 | static int __init |
| 1326 | efivars_init(void) |
| 1327 | { |
| 1328 | int error = 0; |
| 1329 | |
| 1330 | printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION, |
| 1331 | EFIVARS_DATE); |
| 1332 | |
Matt Fleming | 7392301 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 1333 | if (!efi_enabled(EFI_RUNTIME_SERVICES)) |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1334 | return 0; |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1335 | |
| 1336 | /* For now we'll register the efi directory at /sys/firmware/efi */ |
| 1337 | efi_kobj = kobject_create_and_add("efi", firmware_kobj); |
| 1338 | if (!efi_kobj) { |
| 1339 | printk(KERN_ERR "efivars: Firmware registration failed.\n"); |
| 1340 | return -ENOMEM; |
| 1341 | } |
| 1342 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1343 | ops.get_variable = efi.get_variable; |
| 1344 | ops.set_variable = efi.set_variable; |
| 1345 | ops.get_next_variable = efi.get_next_variable; |
Seiji Aguchi | 8e74ecf | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 1346 | ops.query_variable_info = efi.query_variable_info; |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1347 | error = register_efivars(&__efivars, &ops, efi_kobj); |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1348 | if (error) |
| 1349 | goto err_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
| 1351 | /* Don't forget the systab entry */ |
Greg Kroah-Hartman | bc87d2f | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1352 | error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group); |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1353 | if (error) { |
| 1354 | printk(KERN_ERR |
| 1355 | "efivars: Sysfs attribute export failed with error %d.\n", |
| 1356 | error); |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1357 | goto err_unregister; |
Mike Waychison | 76b53f7 | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1358 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1360 | return 0; |
| 1361 | |
| 1362 | err_unregister: |
| 1363 | unregister_efivars(&__efivars); |
| 1364 | err_put: |
| 1365 | kobject_put(efi_kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | return error; |
| 1367 | } |
| 1368 | |
| 1369 | static void __exit |
| 1370 | efivars_exit(void) |
| 1371 | { |
Matt Fleming | 7392301 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 1372 | if (efi_enabled(EFI_RUNTIME_SERVICES)) { |
Randy Dunlap | aabb6e1 | 2011-05-06 13:27:41 -0700 | [diff] [blame] | 1373 | unregister_efivars(&__efivars); |
| 1374 | kobject_put(efi_kobj); |
| 1375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | } |
| 1377 | |
| 1378 | module_init(efivars_init); |
| 1379 | module_exit(efivars_exit); |
| 1380 | |