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