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> |
Matt Fleming | 47f531e | 2013-01-31 19:02:03 +0000 | [diff] [blame] | 82 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 84 | #include <linux/fs.h> |
| 85 | #include <linux/ramfs.h> |
| 86 | #include <linux/pagemap.h> |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #include <asm/uaccess.h> |
| 89 | |
| 90 | #define EFIVARS_VERSION "0.08" |
| 91 | #define EFIVARS_DATE "2004-May-17" |
| 92 | |
| 93 | MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>"); |
| 94 | MODULE_DESCRIPTION("sysfs interface to EFI Variables"); |
| 95 | MODULE_LICENSE("GPL"); |
| 96 | MODULE_VERSION(EFIVARS_VERSION); |
| 97 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 98 | #define DUMP_NAME_LEN 52 |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | /* |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 101 | * Length of a GUID string (strlen("aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee")) |
| 102 | * not including trailing NUL |
| 103 | */ |
| 104 | #define GUID_LEN 36 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * The maximum size of VariableName + Data = 1024 |
| 108 | * Therefore, it's reasonable to save that much |
| 109 | * space in each part of the structure, |
| 110 | * and we use a page for reading/writing. |
| 111 | */ |
| 112 | |
| 113 | struct efi_variable { |
| 114 | efi_char16_t VariableName[1024/sizeof(efi_char16_t)]; |
| 115 | efi_guid_t VendorGuid; |
| 116 | unsigned long DataSize; |
| 117 | __u8 Data[1024]; |
| 118 | efi_status_t Status; |
| 119 | __u32 Attributes; |
| 120 | } __attribute__((packed)); |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | struct efivar_entry { |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 123 | struct efivars *efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | struct efi_variable var; |
| 125 | struct list_head list; |
| 126 | struct kobject kobj; |
| 127 | }; |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | struct efivar_attribute { |
| 130 | struct attribute attr; |
| 131 | ssize_t (*show) (struct efivar_entry *entry, char *buf); |
| 132 | ssize_t (*store)(struct efivar_entry *entry, const char *buf, size_t count); |
| 133 | }; |
| 134 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 135 | static struct efivars __efivars; |
| 136 | static struct efivar_operations ops; |
| 137 | |
Mike Waychison | 7644c16 | 2011-07-21 16:58:00 -0400 | [diff] [blame] | 138 | #define PSTORE_EFI_ATTRIBUTES \ |
| 139 | (EFI_VARIABLE_NON_VOLATILE | \ |
| 140 | EFI_VARIABLE_BOOTSERVICE_ACCESS | \ |
| 141 | EFI_VARIABLE_RUNTIME_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | #define EFIVAR_ATTR(_name, _mode, _show, _store) \ |
| 144 | struct efivar_attribute efivar_attr_##_name = { \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 145 | .attr = {.name = __stringify(_name), .mode = _mode}, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | .show = _show, \ |
| 147 | .store = _store, \ |
| 148 | }; |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | #define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr) |
| 151 | #define to_efivar_entry(obj) container_of(obj, struct efivar_entry, kobj) |
| 152 | |
| 153 | /* |
| 154 | * Prototype for sysfs creation function |
| 155 | */ |
| 156 | static int |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 157 | efivar_create_sysfs_entry(struct efivars *efivars, |
| 158 | unsigned long variable_name_size, |
| 159 | efi_char16_t *variable_name, |
| 160 | efi_guid_t *vendor_guid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | /* Return the number of unicode characters in data */ |
| 163 | static unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 164 | utf16_strnlen(efi_char16_t *s, size_t maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
| 166 | unsigned long length = 0; |
| 167 | |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 168 | while (*s++ != 0 && length < maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | length++; |
| 170 | return length; |
| 171 | } |
| 172 | |
Tony Luck | b728a5c | 2011-08-02 15:08:30 -0700 | [diff] [blame] | 173 | static inline unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 174 | utf16_strlen(efi_char16_t *s) |
| 175 | { |
| 176 | return utf16_strnlen(s, ~0UL); |
| 177 | } |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* |
| 180 | * Return the number of bytes is the length of this string |
| 181 | * Note: this is NOT the same as the number of unicode characters |
| 182 | */ |
| 183 | static inline unsigned long |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 184 | utf16_strsize(efi_char16_t *data, unsigned long maxlength) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 186 | 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] | 187 | } |
| 188 | |
Mike Waychison | 828aa1f | 2011-07-21 16:57:58 -0400 | [diff] [blame] | 189 | static inline int |
| 190 | utf16_strncmp(const efi_char16_t *a, const efi_char16_t *b, size_t len) |
| 191 | { |
| 192 | while (1) { |
| 193 | if (len == 0) |
| 194 | return 0; |
| 195 | if (*a < *b) |
| 196 | return -1; |
| 197 | if (*a > *b) |
| 198 | return 1; |
| 199 | if (*a == 0) /* implies *b == 0 */ |
| 200 | return 0; |
| 201 | a++; |
| 202 | b++; |
| 203 | len--; |
| 204 | } |
| 205 | } |
| 206 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 207 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 208 | validate_device_path(struct efi_variable *var, int match, u8 *buffer, |
| 209 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 210 | { |
| 211 | struct efi_generic_dev_path *node; |
| 212 | int offset = 0; |
| 213 | |
| 214 | node = (struct efi_generic_dev_path *)buffer; |
| 215 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 216 | if (len < sizeof(*node)) |
| 217 | return false; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 218 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 219 | while (offset <= len - sizeof(*node) && |
| 220 | node->length >= sizeof(*node) && |
| 221 | node->length <= len - offset) { |
| 222 | offset += node->length; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 223 | |
| 224 | if ((node->type == EFI_DEV_END_PATH || |
| 225 | node->type == EFI_DEV_END_PATH2) && |
| 226 | node->sub_type == EFI_DEV_END_ENTIRE) |
| 227 | return true; |
| 228 | |
| 229 | node = (struct efi_generic_dev_path *)(buffer + offset); |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * If we're here then either node->length pointed past the end |
| 234 | * of the buffer or we reached the end of the buffer without |
| 235 | * finding a device path end node. |
| 236 | */ |
| 237 | return false; |
| 238 | } |
| 239 | |
| 240 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 241 | validate_boot_order(struct efi_variable *var, int match, u8 *buffer, |
| 242 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 243 | { |
| 244 | /* An array of 16-bit integers */ |
| 245 | if ((len % 2) != 0) |
| 246 | return false; |
| 247 | |
| 248 | return true; |
| 249 | } |
| 250 | |
| 251 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 252 | validate_load_option(struct efi_variable *var, int match, u8 *buffer, |
| 253 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 254 | { |
| 255 | u16 filepathlength; |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 256 | int i, desclength = 0, namelen; |
| 257 | |
| 258 | namelen = utf16_strnlen(var->VariableName, sizeof(var->VariableName)); |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 259 | |
| 260 | /* Either "Boot" or "Driver" followed by four digits of hex */ |
| 261 | for (i = match; i < match+4; i++) { |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 262 | if (var->VariableName[i] > 127 || |
| 263 | hex_to_bin(var->VariableName[i] & 0xff) < 0) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 264 | return true; |
| 265 | } |
| 266 | |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 267 | /* Reject it if there's 4 digits of hex and then further content */ |
| 268 | if (namelen > match + 4) |
| 269 | return false; |
| 270 | |
| 271 | /* A valid entry must be at least 8 bytes */ |
| 272 | if (len < 8) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 273 | return false; |
| 274 | |
| 275 | filepathlength = buffer[4] | buffer[5] << 8; |
| 276 | |
| 277 | /* |
| 278 | * There's no stored length for the description, so it has to be |
| 279 | * found by hand |
| 280 | */ |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 281 | desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2; |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 282 | |
| 283 | /* Each boot entry must have a descriptor */ |
| 284 | if (!desclength) |
| 285 | return false; |
| 286 | |
| 287 | /* |
| 288 | * If the sum of the length of the description, the claimed filepath |
| 289 | * length and the original header are greater than the length of the |
| 290 | * variable, it's malformed |
| 291 | */ |
| 292 | if ((desclength + filepathlength + 6) > len) |
| 293 | return false; |
| 294 | |
| 295 | /* |
| 296 | * And, finally, check the filepath |
| 297 | */ |
| 298 | return validate_device_path(var, match, buffer + desclength + 6, |
| 299 | filepathlength); |
| 300 | } |
| 301 | |
| 302 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 303 | validate_uint16(struct efi_variable *var, int match, u8 *buffer, |
| 304 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 305 | { |
| 306 | /* A single 16-bit integer */ |
| 307 | if (len != 2) |
| 308 | return false; |
| 309 | |
| 310 | return true; |
| 311 | } |
| 312 | |
| 313 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 314 | validate_ascii_string(struct efi_variable *var, int match, u8 *buffer, |
| 315 | unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 316 | { |
| 317 | int i; |
| 318 | |
| 319 | for (i = 0; i < len; i++) { |
| 320 | if (buffer[i] > 127) |
| 321 | return false; |
| 322 | |
| 323 | if (buffer[i] == 0) |
| 324 | return true; |
| 325 | } |
| 326 | |
| 327 | return false; |
| 328 | } |
| 329 | |
| 330 | struct variable_validate { |
| 331 | char *name; |
| 332 | bool (*validate)(struct efi_variable *var, int match, u8 *data, |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 333 | unsigned long len); |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 334 | }; |
| 335 | |
| 336 | static const struct variable_validate variable_validate[] = { |
| 337 | { "BootNext", validate_uint16 }, |
| 338 | { "BootOrder", validate_boot_order }, |
| 339 | { "DriverOrder", validate_boot_order }, |
| 340 | { "Boot*", validate_load_option }, |
| 341 | { "Driver*", validate_load_option }, |
| 342 | { "ConIn", validate_device_path }, |
| 343 | { "ConInDev", validate_device_path }, |
| 344 | { "ConOut", validate_device_path }, |
| 345 | { "ConOutDev", validate_device_path }, |
| 346 | { "ErrOut", validate_device_path }, |
| 347 | { "ErrOutDev", validate_device_path }, |
| 348 | { "Timeout", validate_uint16 }, |
| 349 | { "Lang", validate_ascii_string }, |
| 350 | { "PlatformLang", validate_ascii_string }, |
| 351 | { "", NULL }, |
| 352 | }; |
| 353 | |
| 354 | static bool |
Matthew Garrett | 54b3a4d | 2012-05-03 16:50:46 -0400 | [diff] [blame] | 355 | validate_var(struct efi_variable *var, u8 *data, unsigned long len) |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 356 | { |
| 357 | int i; |
| 358 | u16 *unicode_name = var->VariableName; |
| 359 | |
| 360 | for (i = 0; variable_validate[i].validate != NULL; i++) { |
| 361 | const char *name = variable_validate[i].name; |
| 362 | int match; |
| 363 | |
| 364 | for (match = 0; ; match++) { |
| 365 | char c = name[match]; |
| 366 | u16 u = unicode_name[match]; |
| 367 | |
| 368 | /* All special variables are plain ascii */ |
| 369 | if (u > 127) |
| 370 | return true; |
| 371 | |
| 372 | /* Wildcard in the matching name means we've matched */ |
| 373 | if (c == '*') |
| 374 | return variable_validate[i].validate(var, |
| 375 | match, data, len); |
| 376 | |
| 377 | /* Case sensitive match */ |
| 378 | if (c != u) |
| 379 | break; |
| 380 | |
| 381 | /* Reached the end of the string while matching */ |
| 382 | if (!c) |
| 383 | return variable_validate[i].validate(var, |
| 384 | match, data, len); |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | return true; |
| 389 | } |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | static efi_status_t |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 392 | get_var_data_locked(struct efivars *efivars, struct efi_variable *var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
| 394 | efi_status_t status; |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | var->DataSize = 1024; |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 397 | status = efivars->ops->get_variable(var->VariableName, |
| 398 | &var->VendorGuid, |
| 399 | &var->Attributes, |
| 400 | &var->DataSize, |
| 401 | var->Data); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 402 | return status; |
| 403 | } |
| 404 | |
| 405 | static efi_status_t |
| 406 | get_var_data(struct efivars *efivars, struct efi_variable *var) |
| 407 | { |
| 408 | efi_status_t status; |
| 409 | |
| 410 | spin_lock(&efivars->lock); |
| 411 | status = get_var_data_locked(efivars, var); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 412 | spin_unlock(&efivars->lock); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | if (status != EFI_SUCCESS) { |
| 415 | printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n", |
| 416 | status); |
| 417 | } |
| 418 | return status; |
| 419 | } |
| 420 | |
| 421 | static ssize_t |
| 422 | efivar_guid_read(struct efivar_entry *entry, char *buf) |
| 423 | { |
| 424 | struct efi_variable *var = &entry->var; |
| 425 | char *str = buf; |
| 426 | |
| 427 | if (!entry || !buf) |
| 428 | return 0; |
| 429 | |
| 430 | efi_guid_unparse(&var->VendorGuid, str); |
| 431 | str += strlen(str); |
| 432 | str += sprintf(str, "\n"); |
| 433 | |
| 434 | return str - buf; |
| 435 | } |
| 436 | |
| 437 | static ssize_t |
| 438 | efivar_attr_read(struct efivar_entry *entry, char *buf) |
| 439 | { |
| 440 | struct efi_variable *var = &entry->var; |
| 441 | char *str = buf; |
| 442 | efi_status_t status; |
| 443 | |
| 444 | if (!entry || !buf) |
| 445 | return -EINVAL; |
| 446 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 447 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | if (status != EFI_SUCCESS) |
| 449 | return -EIO; |
| 450 | |
Khalid Aziz | 7083909 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 451 | if (var->Attributes & EFI_VARIABLE_NON_VOLATILE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n"); |
Khalid Aziz | 7083909 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 453 | if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n"); |
Khalid Aziz | 7083909 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 455 | if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n"); |
Khalid Aziz | 7083909 | 2012-09-10 12:52:42 -0600 | [diff] [blame] | 457 | if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) |
| 458 | str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n"); |
| 459 | if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) |
| 460 | str += sprintf(str, |
| 461 | "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n"); |
| 462 | if (var->Attributes & |
| 463 | EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) |
| 464 | str += sprintf(str, |
| 465 | "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n"); |
| 466 | if (var->Attributes & EFI_VARIABLE_APPEND_WRITE) |
| 467 | str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return str - buf; |
| 469 | } |
| 470 | |
| 471 | static ssize_t |
| 472 | efivar_size_read(struct efivar_entry *entry, char *buf) |
| 473 | { |
| 474 | struct efi_variable *var = &entry->var; |
| 475 | char *str = buf; |
| 476 | efi_status_t status; |
| 477 | |
| 478 | if (!entry || !buf) |
| 479 | return -EINVAL; |
| 480 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 481 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | if (status != EFI_SUCCESS) |
| 483 | return -EIO; |
| 484 | |
| 485 | str += sprintf(str, "0x%lx\n", var->DataSize); |
| 486 | return str - buf; |
| 487 | } |
| 488 | |
| 489 | static ssize_t |
| 490 | efivar_data_read(struct efivar_entry *entry, char *buf) |
| 491 | { |
| 492 | struct efi_variable *var = &entry->var; |
| 493 | efi_status_t status; |
| 494 | |
| 495 | if (!entry || !buf) |
| 496 | return -EINVAL; |
| 497 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 498 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | if (status != EFI_SUCCESS) |
| 500 | return -EIO; |
| 501 | |
| 502 | memcpy(buf, var->Data, var->DataSize); |
| 503 | return var->DataSize; |
| 504 | } |
| 505 | /* |
| 506 | * We allow each variable to be edited via rewriting the |
| 507 | * entire efi variable structure. |
| 508 | */ |
| 509 | static ssize_t |
| 510 | efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count) |
| 511 | { |
| 512 | struct efi_variable *new_var, *var = &entry->var; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 513 | struct efivars *efivars = entry->efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | efi_status_t status = EFI_NOT_FOUND; |
| 515 | |
| 516 | if (count != sizeof(struct efi_variable)) |
| 517 | return -EINVAL; |
| 518 | |
| 519 | new_var = (struct efi_variable *)buf; |
| 520 | /* |
| 521 | * If only updating the variable data, then the name |
| 522 | * and guid should remain the same |
| 523 | */ |
| 524 | if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) || |
| 525 | efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) { |
| 526 | printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n"); |
| 527 | return -EINVAL; |
| 528 | } |
| 529 | |
| 530 | if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){ |
| 531 | printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n"); |
| 532 | return -EINVAL; |
| 533 | } |
| 534 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 535 | if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || |
| 536 | validate_var(new_var, new_var->Data, new_var->DataSize) == false) { |
| 537 | printk(KERN_ERR "efivars: Malformed variable content\n"); |
| 538 | return -EINVAL; |
| 539 | } |
| 540 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 541 | spin_lock(&efivars->lock); |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 542 | status = efivars->ops->set_variable(new_var->VariableName, |
| 543 | &new_var->VendorGuid, |
| 544 | new_var->Attributes, |
| 545 | new_var->DataSize, |
| 546 | new_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 548 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
| 550 | if (status != EFI_SUCCESS) { |
| 551 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 552 | status); |
| 553 | return -EIO; |
| 554 | } |
| 555 | |
| 556 | memcpy(&entry->var, new_var, count); |
| 557 | return count; |
| 558 | } |
| 559 | |
| 560 | static ssize_t |
| 561 | efivar_show_raw(struct efivar_entry *entry, char *buf) |
| 562 | { |
| 563 | struct efi_variable *var = &entry->var; |
| 564 | efi_status_t status; |
| 565 | |
| 566 | if (!entry || !buf) |
| 567 | return 0; |
| 568 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 569 | status = get_var_data(entry->efivars, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | if (status != EFI_SUCCESS) |
| 571 | return -EIO; |
| 572 | |
| 573 | memcpy(buf, var, sizeof(*var)); |
| 574 | return sizeof(*var); |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * Generic read/write functions that call the specific functions of |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 579 | * the attributes... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | */ |
| 581 | static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr, |
| 582 | char *buf) |
| 583 | { |
| 584 | struct efivar_entry *var = to_efivar_entry(kobj); |
| 585 | struct efivar_attribute *efivar_attr = to_efivar_attr(attr); |
Dmitry Torokhov | 70f2817 | 2005-04-29 01:27:34 -0500 | [diff] [blame] | 586 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
| 588 | if (!capable(CAP_SYS_ADMIN)) |
| 589 | return -EACCES; |
| 590 | |
| 591 | if (efivar_attr->show) { |
| 592 | ret = efivar_attr->show(var, buf); |
| 593 | } |
| 594 | return ret; |
| 595 | } |
| 596 | |
| 597 | static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr, |
| 598 | const char *buf, size_t count) |
| 599 | { |
| 600 | struct efivar_entry *var = to_efivar_entry(kobj); |
| 601 | struct efivar_attribute *efivar_attr = to_efivar_attr(attr); |
Dmitry Torokhov | 70f2817 | 2005-04-29 01:27:34 -0500 | [diff] [blame] | 602 | ssize_t ret = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | if (!capable(CAP_SYS_ADMIN)) |
| 605 | return -EACCES; |
| 606 | |
| 607 | if (efivar_attr->store) |
| 608 | ret = efivar_attr->store(var, buf, count); |
| 609 | |
| 610 | return ret; |
| 611 | } |
| 612 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 613 | static const struct sysfs_ops efivar_attr_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | .show = efivar_attr_show, |
| 615 | .store = efivar_attr_store, |
| 616 | }; |
| 617 | |
| 618 | static void efivar_release(struct kobject *kobj) |
| 619 | { |
| 620 | struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | kfree(var); |
| 622 | } |
| 623 | |
| 624 | static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL); |
| 625 | static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL); |
| 626 | static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL); |
| 627 | static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL); |
| 628 | static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw); |
| 629 | |
| 630 | static struct attribute *def_attrs[] = { |
| 631 | &efivar_attr_guid.attr, |
| 632 | &efivar_attr_size.attr, |
| 633 | &efivar_attr_attributes.attr, |
| 634 | &efivar_attr_data.attr, |
| 635 | &efivar_attr_raw_var.attr, |
| 636 | NULL, |
| 637 | }; |
| 638 | |
Greg Kroah-Hartman | e89a411 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 639 | static struct kobj_type efivar_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | .release = efivar_release, |
| 641 | .sysfs_ops = &efivar_attr_ops, |
| 642 | .default_attrs = def_attrs, |
| 643 | }; |
| 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | static inline void |
| 646 | efivar_unregister(struct efivar_entry *var) |
| 647 | { |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 648 | kobject_put(&var->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 651 | static int efivarfs_file_open(struct inode *inode, struct file *file) |
| 652 | { |
| 653 | file->private_data = inode->i_private; |
| 654 | return 0; |
| 655 | } |
| 656 | |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 657 | static int efi_status_to_err(efi_status_t status) |
| 658 | { |
| 659 | int err; |
| 660 | |
| 661 | switch (status) { |
| 662 | case EFI_INVALID_PARAMETER: |
| 663 | err = -EINVAL; |
| 664 | break; |
| 665 | case EFI_OUT_OF_RESOURCES: |
| 666 | err = -ENOSPC; |
| 667 | break; |
| 668 | case EFI_DEVICE_ERROR: |
| 669 | err = -EIO; |
| 670 | break; |
| 671 | case EFI_WRITE_PROTECTED: |
| 672 | err = -EROFS; |
| 673 | break; |
| 674 | case EFI_SECURITY_VIOLATION: |
| 675 | err = -EACCES; |
| 676 | break; |
| 677 | case EFI_NOT_FOUND: |
Matt Fleming | 1fa7e69 | 2013-01-16 13:47:05 +0000 | [diff] [blame] | 678 | err = -EIO; |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 679 | break; |
| 680 | default: |
| 681 | err = -EINVAL; |
| 682 | } |
| 683 | |
| 684 | return err; |
| 685 | } |
| 686 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 687 | static ssize_t efivarfs_file_write(struct file *file, |
| 688 | const char __user *userbuf, size_t count, loff_t *ppos) |
| 689 | { |
| 690 | struct efivar_entry *var = file->private_data; |
| 691 | struct efivars *efivars; |
| 692 | efi_status_t status; |
| 693 | void *data; |
| 694 | u32 attributes; |
| 695 | struct inode *inode = file->f_mapping->host; |
Matt Fleming | 07b1c5b | 2012-10-23 12:35:43 +0100 | [diff] [blame] | 696 | unsigned long datasize = count - sizeof(attributes); |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 697 | unsigned long newdatasize; |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 698 | u64 storage_size, remaining_size, max_size; |
Matt Fleming | cfcf2f1 | 2012-10-26 12:18:53 +0100 | [diff] [blame] | 699 | ssize_t bytes = 0; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 700 | |
| 701 | if (count < sizeof(attributes)) |
| 702 | return -EINVAL; |
| 703 | |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 704 | if (copy_from_user(&attributes, userbuf, sizeof(attributes))) |
| 705 | return -EFAULT; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 706 | |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 707 | if (attributes & ~(EFI_VARIABLE_MASK)) |
| 708 | return -EINVAL; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 709 | |
| 710 | efivars = var->efivars; |
| 711 | |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 712 | /* |
| 713 | * Ensure that the user can't allocate arbitrarily large |
| 714 | * amounts of memory. Pick a default size of 64K if |
| 715 | * QueryVariableInfo() isn't supported by the firmware. |
| 716 | */ |
| 717 | spin_lock(&efivars->lock); |
| 718 | |
| 719 | if (!efivars->ops->query_variable_info) |
| 720 | status = EFI_UNSUPPORTED; |
| 721 | else { |
| 722 | const struct efivar_operations *fops = efivars->ops; |
| 723 | status = fops->query_variable_info(attributes, &storage_size, |
| 724 | &remaining_size, &max_size); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 725 | } |
| 726 | |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 727 | spin_unlock(&efivars->lock); |
| 728 | |
| 729 | if (status != EFI_SUCCESS) { |
| 730 | if (status != EFI_UNSUPPORTED) |
| 731 | return efi_status_to_err(status); |
| 732 | |
| 733 | remaining_size = 65536; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 734 | } |
| 735 | |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 736 | if (datasize > remaining_size) |
| 737 | return -ENOSPC; |
| 738 | |
| 739 | data = kmalloc(datasize, GFP_KERNEL); |
| 740 | if (!data) |
| 741 | return -ENOMEM; |
| 742 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 743 | if (copy_from_user(data, userbuf + sizeof(attributes), datasize)) { |
Matt Fleming | cfcf2f1 | 2012-10-26 12:18:53 +0100 | [diff] [blame] | 744 | bytes = -EFAULT; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 745 | goto out; |
| 746 | } |
| 747 | |
| 748 | if (validate_var(&var->var, data, datasize) == false) { |
Matt Fleming | cfcf2f1 | 2012-10-26 12:18:53 +0100 | [diff] [blame] | 749 | bytes = -EINVAL; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 750 | goto out; |
| 751 | } |
| 752 | |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 753 | /* |
| 754 | * The lock here protects the get_variable call, the conditional |
| 755 | * set_variable call, and removal of the variable from the efivars |
| 756 | * list (in the case of an authenticated delete). |
| 757 | */ |
| 758 | spin_lock(&efivars->lock); |
| 759 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 760 | status = efivars->ops->set_variable(var->var.VariableName, |
| 761 | &var->var.VendorGuid, |
| 762 | attributes, datasize, |
| 763 | data); |
| 764 | |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 765 | if (status != EFI_SUCCESS) { |
| 766 | spin_unlock(&efivars->lock); |
| 767 | kfree(data); |
| 768 | |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 769 | return efi_status_to_err(status); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 770 | } |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 771 | |
Matt Fleming | cfcf2f1 | 2012-10-26 12:18:53 +0100 | [diff] [blame] | 772 | bytes = count; |
| 773 | |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 774 | /* |
| 775 | * Writing to the variable may have caused a change in size (which |
| 776 | * could either be an append or an overwrite), or the variable to be |
| 777 | * deleted. Perform a GetVariable() so we can tell what actually |
| 778 | * happened. |
| 779 | */ |
| 780 | newdatasize = 0; |
| 781 | status = efivars->ops->get_variable(var->var.VariableName, |
| 782 | &var->var.VendorGuid, |
| 783 | NULL, &newdatasize, |
| 784 | NULL); |
| 785 | |
| 786 | if (status == EFI_BUFFER_TOO_SMALL) { |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 787 | spin_unlock(&efivars->lock); |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 788 | mutex_lock(&inode->i_mutex); |
| 789 | i_size_write(inode, newdatasize + sizeof(attributes)); |
| 790 | mutex_unlock(&inode->i_mutex); |
| 791 | |
| 792 | } else if (status == EFI_NOT_FOUND) { |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 793 | list_del(&var->list); |
| 794 | spin_unlock(&efivars->lock); |
| 795 | efivar_unregister(var); |
| 796 | drop_nlink(inode); |
Matt Fleming | 791eb56 | 2013-01-16 21:55:36 +0000 | [diff] [blame] | 797 | d_delete(file->f_dentry); |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 798 | dput(file->f_dentry); |
| 799 | |
| 800 | } else { |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 801 | spin_unlock(&efivars->lock); |
Jeremy Kerr | 0c542ed | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 802 | pr_warn("efivarfs: inconsistent EFI variable implementation? " |
| 803 | "status = %lx\n", status); |
| 804 | } |
| 805 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 806 | out: |
| 807 | kfree(data); |
| 808 | |
Matt Fleming | cfcf2f1 | 2012-10-26 12:18:53 +0100 | [diff] [blame] | 809 | return bytes; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | static ssize_t efivarfs_file_read(struct file *file, char __user *userbuf, |
| 813 | size_t count, loff_t *ppos) |
| 814 | { |
| 815 | struct efivar_entry *var = file->private_data; |
| 816 | struct efivars *efivars = var->efivars; |
| 817 | efi_status_t status; |
| 818 | unsigned long datasize = 0; |
| 819 | u32 attributes; |
| 820 | void *data; |
Andy Whitcroft | d142df0 | 2012-10-11 11:32:17 +0100 | [diff] [blame] | 821 | ssize_t size = 0; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 822 | |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 823 | spin_lock(&efivars->lock); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 824 | status = efivars->ops->get_variable(var->var.VariableName, |
| 825 | &var->var.VendorGuid, |
| 826 | &attributes, &datasize, NULL); |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 827 | spin_unlock(&efivars->lock); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 828 | |
| 829 | if (status != EFI_BUFFER_TOO_SMALL) |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 830 | return efi_status_to_err(status); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 831 | |
Matt Fleming | d292384 | 2012-10-22 15:23:29 +0100 | [diff] [blame] | 832 | data = kmalloc(datasize + sizeof(attributes), GFP_KERNEL); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 833 | |
| 834 | if (!data) |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 835 | return -ENOMEM; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 836 | |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 837 | spin_lock(&efivars->lock); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 838 | status = efivars->ops->get_variable(var->var.VariableName, |
| 839 | &var->var.VendorGuid, |
| 840 | &attributes, &datasize, |
Matt Fleming | d292384 | 2012-10-22 15:23:29 +0100 | [diff] [blame] | 841 | (data + sizeof(attributes))); |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 842 | spin_unlock(&efivars->lock); |
| 843 | |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 844 | if (status != EFI_SUCCESS) { |
| 845 | size = efi_status_to_err(status); |
Andy Whitcroft | d142df0 | 2012-10-11 11:32:17 +0100 | [diff] [blame] | 846 | goto out_free; |
Matt Fleming | 7253eab | 2012-10-16 15:58:07 +0100 | [diff] [blame] | 847 | } |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 848 | |
Matt Fleming | d292384 | 2012-10-22 15:23:29 +0100 | [diff] [blame] | 849 | memcpy(data, &attributes, sizeof(attributes)); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 850 | size = simple_read_from_buffer(userbuf, count, ppos, |
Matt Fleming | d292384 | 2012-10-22 15:23:29 +0100 | [diff] [blame] | 851 | data, datasize + sizeof(attributes)); |
Andy Whitcroft | d142df0 | 2012-10-11 11:32:17 +0100 | [diff] [blame] | 852 | out_free: |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 853 | kfree(data); |
| 854 | |
| 855 | return size; |
| 856 | } |
| 857 | |
| 858 | static void efivarfs_evict_inode(struct inode *inode) |
| 859 | { |
| 860 | clear_inode(inode); |
| 861 | } |
| 862 | |
| 863 | static const struct super_operations efivarfs_ops = { |
| 864 | .statfs = simple_statfs, |
| 865 | .drop_inode = generic_delete_inode, |
| 866 | .evict_inode = efivarfs_evict_inode, |
| 867 | .show_options = generic_show_options, |
| 868 | }; |
| 869 | |
| 870 | static struct super_block *efivarfs_sb; |
| 871 | |
| 872 | static const struct inode_operations efivarfs_dir_inode_operations; |
| 873 | |
| 874 | static const struct file_operations efivarfs_file_operations = { |
| 875 | .open = efivarfs_file_open, |
| 876 | .read = efivarfs_file_read, |
| 877 | .write = efivarfs_file_write, |
| 878 | .llseek = no_llseek, |
| 879 | }; |
| 880 | |
| 881 | static struct inode *efivarfs_get_inode(struct super_block *sb, |
| 882 | const struct inode *dir, int mode, dev_t dev) |
| 883 | { |
| 884 | struct inode *inode = new_inode(sb); |
| 885 | |
| 886 | if (inode) { |
| 887 | inode->i_ino = get_next_ino(); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 888 | inode->i_mode = mode; |
| 889 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
| 890 | switch (mode & S_IFMT) { |
| 891 | case S_IFREG: |
| 892 | inode->i_fop = &efivarfs_file_operations; |
| 893 | break; |
| 894 | case S_IFDIR: |
| 895 | inode->i_op = &efivarfs_dir_inode_operations; |
| 896 | inode->i_fop = &simple_dir_operations; |
| 897 | inc_nlink(inode); |
| 898 | break; |
| 899 | } |
| 900 | } |
| 901 | return inode; |
| 902 | } |
| 903 | |
Matt Fleming | 47f531e | 2013-01-31 19:02:03 +0000 | [diff] [blame] | 904 | /* |
| 905 | * Return true if 'str' is a valid efivarfs filename of the form, |
| 906 | * |
| 907 | * VariableName-12345678-1234-1234-1234-1234567891bc |
| 908 | */ |
| 909 | static bool efivarfs_valid_name(const char *str, int len) |
| 910 | { |
| 911 | static const char dashes[GUID_LEN] = { |
| 912 | [8] = 1, [13] = 1, [18] = 1, [23] = 1 |
| 913 | }; |
| 914 | const char *s = str + len - GUID_LEN; |
| 915 | int i; |
| 916 | |
| 917 | /* |
| 918 | * We need a GUID, plus at least one letter for the variable name, |
| 919 | * plus the '-' separator |
| 920 | */ |
| 921 | if (len < GUID_LEN + 2) |
| 922 | return false; |
| 923 | |
| 924 | /* GUID should be right after the first '-' */ |
| 925 | if (s - 1 != strchr(str, '-')) |
| 926 | return false; |
| 927 | |
| 928 | /* |
| 929 | * Validate that 's' is of the correct format, e.g. |
| 930 | * |
| 931 | * 12345678-1234-1234-1234-123456789abc |
| 932 | */ |
| 933 | for (i = 0; i < GUID_LEN; i++) { |
| 934 | if (dashes[i]) { |
| 935 | if (*s++ != '-') |
| 936 | return false; |
| 937 | } else { |
| 938 | if (!isxdigit(*s++)) |
| 939 | return false; |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | return true; |
| 944 | } |
| 945 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 946 | static void efivarfs_hex_to_guid(const char *str, efi_guid_t *guid) |
| 947 | { |
| 948 | guid->b[0] = hex_to_bin(str[6]) << 4 | hex_to_bin(str[7]); |
| 949 | guid->b[1] = hex_to_bin(str[4]) << 4 | hex_to_bin(str[5]); |
| 950 | guid->b[2] = hex_to_bin(str[2]) << 4 | hex_to_bin(str[3]); |
| 951 | guid->b[3] = hex_to_bin(str[0]) << 4 | hex_to_bin(str[1]); |
| 952 | guid->b[4] = hex_to_bin(str[11]) << 4 | hex_to_bin(str[12]); |
| 953 | guid->b[5] = hex_to_bin(str[9]) << 4 | hex_to_bin(str[10]); |
| 954 | guid->b[6] = hex_to_bin(str[16]) << 4 | hex_to_bin(str[17]); |
| 955 | guid->b[7] = hex_to_bin(str[14]) << 4 | hex_to_bin(str[15]); |
| 956 | guid->b[8] = hex_to_bin(str[19]) << 4 | hex_to_bin(str[20]); |
| 957 | guid->b[9] = hex_to_bin(str[21]) << 4 | hex_to_bin(str[22]); |
| 958 | guid->b[10] = hex_to_bin(str[24]) << 4 | hex_to_bin(str[25]); |
| 959 | guid->b[11] = hex_to_bin(str[26]) << 4 | hex_to_bin(str[27]); |
| 960 | guid->b[12] = hex_to_bin(str[28]) << 4 | hex_to_bin(str[29]); |
| 961 | guid->b[13] = hex_to_bin(str[30]) << 4 | hex_to_bin(str[31]); |
| 962 | guid->b[14] = hex_to_bin(str[32]) << 4 | hex_to_bin(str[33]); |
| 963 | guid->b[15] = hex_to_bin(str[34]) << 4 | hex_to_bin(str[35]); |
| 964 | } |
| 965 | |
| 966 | static int efivarfs_create(struct inode *dir, struct dentry *dentry, |
| 967 | umode_t mode, bool excl) |
| 968 | { |
Andy Whitcroft | 45a937a | 2012-10-11 11:32:18 +0100 | [diff] [blame] | 969 | struct inode *inode; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 970 | struct efivars *efivars = &__efivars; |
| 971 | struct efivar_entry *var; |
| 972 | int namelen, i = 0, err = 0; |
| 973 | |
Matt Fleming | 47f531e | 2013-01-31 19:02:03 +0000 | [diff] [blame] | 974 | if (!efivarfs_valid_name(dentry->d_name.name, dentry->d_name.len)) |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 975 | return -EINVAL; |
| 976 | |
Andy Whitcroft | 45a937a | 2012-10-11 11:32:18 +0100 | [diff] [blame] | 977 | inode = efivarfs_get_inode(dir->i_sb, dir, mode, 0); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 978 | if (!inode) |
Matt Fleming | aeeaa8d | 2012-10-23 12:41:03 +0100 | [diff] [blame] | 979 | return -ENOMEM; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 980 | |
| 981 | var = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL); |
Andy Whitcroft | 45a937a | 2012-10-11 11:32:18 +0100 | [diff] [blame] | 982 | if (!var) { |
| 983 | err = -ENOMEM; |
| 984 | goto out; |
| 985 | } |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 986 | |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 987 | /* length of the variable name itself: remove GUID and separator */ |
| 988 | namelen = dentry->d_name.len - GUID_LEN - 1; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 989 | |
| 990 | efivarfs_hex_to_guid(dentry->d_name.name + namelen + 1, |
| 991 | &var->var.VendorGuid); |
| 992 | |
| 993 | for (i = 0; i < namelen; i++) |
| 994 | var->var.VariableName[i] = dentry->d_name.name[i]; |
| 995 | |
| 996 | var->var.VariableName[i] = '\0'; |
| 997 | |
| 998 | inode->i_private = var; |
| 999 | var->efivars = efivars; |
| 1000 | var->kobj.kset = efivars->kset; |
| 1001 | |
| 1002 | err = kobject_init_and_add(&var->kobj, &efivar_ktype, NULL, "%s", |
| 1003 | dentry->d_name.name); |
| 1004 | if (err) |
| 1005 | goto out; |
| 1006 | |
| 1007 | kobject_uevent(&var->kobj, KOBJ_ADD); |
| 1008 | spin_lock(&efivars->lock); |
| 1009 | list_add(&var->list, &efivars->list); |
| 1010 | spin_unlock(&efivars->lock); |
| 1011 | d_instantiate(dentry, inode); |
| 1012 | dget(dentry); |
| 1013 | out: |
Andy Whitcroft | 45a937a | 2012-10-11 11:32:18 +0100 | [diff] [blame] | 1014 | if (err) { |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1015 | kfree(var); |
Andy Whitcroft | 45a937a | 2012-10-11 11:32:18 +0100 | [diff] [blame] | 1016 | iput(inode); |
| 1017 | } |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1018 | return err; |
| 1019 | } |
| 1020 | |
| 1021 | static int efivarfs_unlink(struct inode *dir, struct dentry *dentry) |
| 1022 | { |
| 1023 | struct efivar_entry *var = dentry->d_inode->i_private; |
| 1024 | struct efivars *efivars = var->efivars; |
| 1025 | efi_status_t status; |
| 1026 | |
| 1027 | spin_lock(&efivars->lock); |
| 1028 | |
| 1029 | status = efivars->ops->set_variable(var->var.VariableName, |
| 1030 | &var->var.VendorGuid, |
| 1031 | 0, 0, NULL); |
| 1032 | |
| 1033 | if (status == EFI_SUCCESS || status == EFI_NOT_FOUND) { |
| 1034 | list_del(&var->list); |
| 1035 | spin_unlock(&efivars->lock); |
| 1036 | efivar_unregister(var); |
Lingzhu Xiang | de5fe95 | 2013-01-05 13:59:52 +0800 | [diff] [blame] | 1037 | drop_nlink(dentry->d_inode); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1038 | dput(dentry); |
| 1039 | return 0; |
| 1040 | } |
| 1041 | |
| 1042 | spin_unlock(&efivars->lock); |
| 1043 | return -EINVAL; |
| 1044 | }; |
| 1045 | |
Matt Fleming | da27a24 | 2013-02-01 11:02:28 +0000 | [diff] [blame^] | 1046 | /* |
| 1047 | * Compare two efivarfs file names. |
| 1048 | * |
| 1049 | * An efivarfs filename is composed of two parts, |
| 1050 | * |
| 1051 | * 1. A case-sensitive variable name |
| 1052 | * 2. A case-insensitive GUID |
| 1053 | * |
| 1054 | * So we need to perform a case-sensitive match on part 1 and a |
| 1055 | * case-insensitive match on part 2. |
| 1056 | */ |
| 1057 | static int efivarfs_d_compare(const struct dentry *parent, const struct inode *pinode, |
| 1058 | const struct dentry *dentry, const struct inode *inode, |
| 1059 | unsigned int len, const char *str, |
| 1060 | const struct qstr *name) |
| 1061 | { |
| 1062 | int guid = len - GUID_LEN; |
| 1063 | |
| 1064 | if (name->len != len) |
| 1065 | return 1; |
| 1066 | |
| 1067 | /* Case-sensitive compare for the variable name */ |
| 1068 | if (memcmp(str, name->name, guid)) |
| 1069 | return 1; |
| 1070 | |
| 1071 | /* Case-insensitive compare for the GUID */ |
| 1072 | return strncasecmp(name->name + guid, str + guid, GUID_LEN); |
| 1073 | } |
| 1074 | |
| 1075 | static int efivarfs_d_hash(const struct dentry *dentry, |
| 1076 | const struct inode *inode, struct qstr *qstr) |
| 1077 | { |
| 1078 | unsigned long hash = init_name_hash(); |
| 1079 | const unsigned char *s = qstr->name; |
| 1080 | unsigned int len = qstr->len; |
| 1081 | |
| 1082 | if (!efivarfs_valid_name(s, len)) |
| 1083 | return -EINVAL; |
| 1084 | |
| 1085 | while (len-- > GUID_LEN) |
| 1086 | hash = partial_name_hash(*s++, hash); |
| 1087 | |
| 1088 | /* GUID is case-insensitive. */ |
| 1089 | while (len--) |
| 1090 | hash = partial_name_hash(tolower(*s++), hash); |
| 1091 | |
| 1092 | qstr->hash = end_name_hash(hash); |
| 1093 | return 0; |
| 1094 | } |
| 1095 | |
| 1096 | /* |
| 1097 | * Retaining negative dentries for an in-memory filesystem just wastes |
| 1098 | * memory and lookup time: arrange for them to be deleted immediately. |
| 1099 | */ |
| 1100 | static int efivarfs_delete_dentry(const struct dentry *dentry) |
| 1101 | { |
| 1102 | return 1; |
| 1103 | } |
| 1104 | |
| 1105 | static struct dentry_operations efivarfs_d_ops = { |
| 1106 | .d_compare = efivarfs_d_compare, |
| 1107 | .d_hash = efivarfs_d_hash, |
| 1108 | .d_delete = efivarfs_delete_dentry, |
| 1109 | }; |
| 1110 | |
| 1111 | static struct dentry *efivarfs_alloc_dentry(struct dentry *parent, char *name) |
| 1112 | { |
| 1113 | struct qstr q; |
| 1114 | |
| 1115 | q.name = name; |
| 1116 | q.len = strlen(name); |
| 1117 | |
| 1118 | if (efivarfs_d_hash(NULL, NULL, &q)) |
| 1119 | return NULL; |
| 1120 | |
| 1121 | return d_alloc(parent, &q); |
| 1122 | } |
| 1123 | |
Matt Fleming | e83af1f | 2012-11-15 20:03:16 +0000 | [diff] [blame] | 1124 | static int efivarfs_fill_super(struct super_block *sb, void *data, int silent) |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1125 | { |
| 1126 | struct inode *inode = NULL; |
| 1127 | struct dentry *root; |
| 1128 | struct efivar_entry *entry, *n; |
| 1129 | struct efivars *efivars = &__efivars; |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1130 | char *name; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1131 | |
| 1132 | efivarfs_sb = sb; |
| 1133 | |
| 1134 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 1135 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 1136 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
Matt Fleming | 9171632 | 2012-10-22 15:51:45 +0100 | [diff] [blame] | 1137 | sb->s_magic = EFIVARFS_MAGIC; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1138 | sb->s_op = &efivarfs_ops; |
Matt Fleming | da27a24 | 2013-02-01 11:02:28 +0000 | [diff] [blame^] | 1139 | sb->s_d_op = &efivarfs_d_ops; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1140 | sb->s_time_gran = 1; |
| 1141 | |
| 1142 | inode = efivarfs_get_inode(sb, NULL, S_IFDIR | 0755, 0); |
Andy Whitcroft | 5c9b50a | 2012-10-11 11:32:19 +0100 | [diff] [blame] | 1143 | if (!inode) |
| 1144 | return -ENOMEM; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1145 | inode->i_op = &efivarfs_dir_inode_operations; |
| 1146 | |
| 1147 | root = d_make_root(inode); |
| 1148 | sb->s_root = root; |
Andy Whitcroft | 5c9b50a | 2012-10-11 11:32:19 +0100 | [diff] [blame] | 1149 | if (!root) |
| 1150 | return -ENOMEM; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1151 | |
| 1152 | list_for_each_entry_safe(entry, n, &efivars->list, list) { |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1153 | struct dentry *dentry, *root = efivarfs_sb->s_root; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1154 | unsigned long size = 0; |
| 1155 | int len, i; |
| 1156 | |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1157 | inode = NULL; |
| 1158 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1159 | len = utf16_strlen(entry->var.VariableName); |
| 1160 | |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 1161 | /* name, plus '-', plus GUID, plus NUL*/ |
| 1162 | name = kmalloc(len + 1 + GUID_LEN + 1, GFP_ATOMIC); |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1163 | if (!name) |
| 1164 | goto fail; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1165 | |
| 1166 | for (i = 0; i < len; i++) |
| 1167 | name[i] = entry->var.VariableName[i] & 0xFF; |
| 1168 | |
| 1169 | name[len] = '-'; |
| 1170 | |
| 1171 | efi_guid_unparse(&entry->var.VendorGuid, name + len + 1); |
| 1172 | |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 1173 | name[len+GUID_LEN+1] = '\0'; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1174 | |
| 1175 | inode = efivarfs_get_inode(efivarfs_sb, root->d_inode, |
| 1176 | S_IFREG | 0644, 0); |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1177 | if (!inode) |
| 1178 | goto fail_name; |
| 1179 | |
Matt Fleming | da27a24 | 2013-02-01 11:02:28 +0000 | [diff] [blame^] | 1180 | dentry = efivarfs_alloc_dentry(root, name); |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1181 | if (!dentry) |
| 1182 | goto fail_inode; |
| 1183 | |
Andy Whitcroft | c0359db | 2012-10-11 11:32:20 +0100 | [diff] [blame] | 1184 | /* copied by the above to local storage in the dentry. */ |
| 1185 | kfree(name); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1186 | |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 1187 | spin_lock(&efivars->lock); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1188 | efivars->ops->get_variable(entry->var.VariableName, |
| 1189 | &entry->var.VendorGuid, |
| 1190 | &entry->var.Attributes, |
| 1191 | &size, |
| 1192 | NULL); |
Jeremy Kerr | f5f6a60 | 2012-10-11 21:19:11 +0800 | [diff] [blame] | 1193 | spin_unlock(&efivars->lock); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1194 | |
| 1195 | mutex_lock(&inode->i_mutex); |
| 1196 | inode->i_private = entry; |
Matt Fleming | 94a193f | 2013-01-11 13:30:46 +0000 | [diff] [blame] | 1197 | i_size_write(inode, size + sizeof(entry->var.Attributes)); |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1198 | mutex_unlock(&inode->i_mutex); |
| 1199 | d_add(dentry, inode); |
| 1200 | } |
| 1201 | |
| 1202 | return 0; |
Andy Whitcroft | 5ba6e29 | 2012-10-11 11:32:21 +0100 | [diff] [blame] | 1203 | |
| 1204 | fail_inode: |
| 1205 | iput(inode); |
| 1206 | fail_name: |
| 1207 | kfree(name); |
| 1208 | fail: |
| 1209 | return -ENOMEM; |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1210 | } |
| 1211 | |
| 1212 | static struct dentry *efivarfs_mount(struct file_system_type *fs_type, |
| 1213 | int flags, const char *dev_name, void *data) |
| 1214 | { |
| 1215 | return mount_single(fs_type, flags, data, efivarfs_fill_super); |
| 1216 | } |
| 1217 | |
| 1218 | static void efivarfs_kill_sb(struct super_block *sb) |
| 1219 | { |
| 1220 | kill_litter_super(sb); |
| 1221 | efivarfs_sb = NULL; |
| 1222 | } |
| 1223 | |
| 1224 | static struct file_system_type efivarfs_type = { |
| 1225 | .name = "efivarfs", |
| 1226 | .mount = efivarfs_mount, |
| 1227 | .kill_sb = efivarfs_kill_sb, |
| 1228 | }; |
| 1229 | |
Matt Fleming | da27a24 | 2013-02-01 11:02:28 +0000 | [diff] [blame^] | 1230 | /* |
| 1231 | * Handle negative dentry. |
| 1232 | */ |
| 1233 | static struct dentry *efivarfs_lookup(struct inode *dir, struct dentry *dentry, |
| 1234 | unsigned int flags) |
| 1235 | { |
| 1236 | if (dentry->d_name.len > NAME_MAX) |
| 1237 | return ERR_PTR(-ENAMETOOLONG); |
| 1238 | d_add(dentry, NULL); |
| 1239 | return NULL; |
| 1240 | } |
| 1241 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1242 | static const struct inode_operations efivarfs_dir_inode_operations = { |
Matt Fleming | da27a24 | 2013-02-01 11:02:28 +0000 | [diff] [blame^] | 1243 | .lookup = efivarfs_lookup, |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1244 | .unlink = efivarfs_unlink, |
| 1245 | .create = efivarfs_create, |
| 1246 | }; |
| 1247 | |
| 1248 | static struct pstore_info efi_pstore_info; |
| 1249 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1250 | #ifdef CONFIG_PSTORE |
| 1251 | |
| 1252 | static int efi_pstore_open(struct pstore_info *psi) |
| 1253 | { |
| 1254 | struct efivars *efivars = psi->data; |
| 1255 | |
| 1256 | spin_lock(&efivars->lock); |
| 1257 | efivars->walk_entry = list_first_entry(&efivars->list, |
| 1258 | struct efivar_entry, list); |
| 1259 | return 0; |
| 1260 | } |
| 1261 | |
| 1262 | static int efi_pstore_close(struct pstore_info *psi) |
| 1263 | { |
| 1264 | struct efivars *efivars = psi->data; |
| 1265 | |
| 1266 | spin_unlock(&efivars->lock); |
| 1267 | return 0; |
| 1268 | } |
| 1269 | |
| 1270 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1271 | int *count, struct timespec *timespec, |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 1272 | char **buf, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1273 | { |
| 1274 | efi_guid_t vendor = LINUX_EFI_CRASH_GUID; |
| 1275 | struct efivars *efivars = psi->data; |
| 1276 | char name[DUMP_NAME_LEN]; |
| 1277 | int i; |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1278 | int cnt; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1279 | unsigned int part, size; |
| 1280 | unsigned long time; |
| 1281 | |
| 1282 | while (&efivars->walk_entry->list != &efivars->list) { |
| 1283 | if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid, |
| 1284 | vendor)) { |
| 1285 | for (i = 0; i < DUMP_NAME_LEN; i++) { |
| 1286 | name[i] = efivars->walk_entry->var.VariableName[i]; |
| 1287 | } |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1288 | if (sscanf(name, "dump-type%u-%u-%d-%lu", |
| 1289 | type, &part, &cnt, &time) == 4) { |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1290 | *id = part; |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1291 | *count = cnt; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1292 | timespec->tv_sec = time; |
| 1293 | timespec->tv_nsec = 0; |
Seiji Aguchi | 0f7de85 | 2012-11-14 20:28:50 +0000 | [diff] [blame] | 1294 | } else if (sscanf(name, "dump-type%u-%u-%lu", |
| 1295 | type, &part, &time) == 3) { |
| 1296 | /* |
| 1297 | * Check if an old format, |
| 1298 | * which doesn't support holding |
| 1299 | * multiple logs, remains. |
| 1300 | */ |
| 1301 | *id = part; |
| 1302 | *count = 0; |
| 1303 | timespec->tv_sec = time; |
| 1304 | timespec->tv_nsec = 0; |
| 1305 | } else { |
| 1306 | efivars->walk_entry = list_entry( |
| 1307 | efivars->walk_entry->list.next, |
| 1308 | struct efivar_entry, list); |
| 1309 | continue; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1310 | } |
Seiji Aguchi | 0f7de85 | 2012-11-14 20:28:50 +0000 | [diff] [blame] | 1311 | |
| 1312 | get_var_data_locked(efivars, &efivars->walk_entry->var); |
| 1313 | size = efivars->walk_entry->var.DataSize; |
| 1314 | *buf = kmalloc(size, GFP_KERNEL); |
| 1315 | if (*buf == NULL) |
| 1316 | return -ENOMEM; |
| 1317 | memcpy(*buf, efivars->walk_entry->var.Data, |
| 1318 | size); |
| 1319 | efivars->walk_entry = list_entry( |
| 1320 | efivars->walk_entry->list.next, |
| 1321 | struct efivar_entry, list); |
| 1322 | return size; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1323 | } |
| 1324 | efivars->walk_entry = list_entry(efivars->walk_entry->list.next, |
| 1325 | struct efivar_entry, list); |
| 1326 | } |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 1330 | static int efi_pstore_write(enum pstore_type_id type, |
| 1331 | enum kmsg_dump_reason reason, u64 *id, |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1332 | unsigned int part, int count, size_t size, |
| 1333 | struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1334 | { |
| 1335 | char name[DUMP_NAME_LEN]; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1336 | efi_char16_t efi_name[DUMP_NAME_LEN]; |
| 1337 | efi_guid_t vendor = LINUX_EFI_CRASH_GUID; |
| 1338 | struct efivars *efivars = psi->data; |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 1339 | int i, ret = 0; |
Seiji Aguchi | d80a361 | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 1340 | u64 storage_space, remaining_space, max_variable_size; |
| 1341 | efi_status_t status = EFI_NOT_FOUND; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1342 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1343 | spin_lock(&efivars->lock); |
| 1344 | |
Seiji Aguchi | d80a361 | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 1345 | /* |
| 1346 | * Check if there is a space enough to log. |
| 1347 | * size: a size of logging data |
| 1348 | * DUMP_NAME_LEN * 2: a maximum size of variable name |
| 1349 | */ |
| 1350 | status = efivars->ops->query_variable_info(PSTORE_EFI_ATTRIBUTES, |
| 1351 | &storage_space, |
| 1352 | &remaining_space, |
| 1353 | &max_variable_size); |
| 1354 | if (status || remaining_space < size + DUMP_NAME_LEN * 2) { |
| 1355 | spin_unlock(&efivars->lock); |
| 1356 | *id = part; |
| 1357 | return -ENOSPC; |
| 1358 | } |
| 1359 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1360 | sprintf(name, "dump-type%u-%u-%d-%lu", type, part, count, |
Seiji Aguchi | 96480d9 | 2012-11-14 20:26:46 +0000 | [diff] [blame] | 1361 | get_seconds()); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1362 | |
| 1363 | for (i = 0; i < DUMP_NAME_LEN; i++) |
| 1364 | efi_name[i] = name[i]; |
| 1365 | |
Mike Waychison | 7644c16 | 2011-07-21 16:58:00 -0400 | [diff] [blame] | 1366 | efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES, |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1367 | size, psi->buf); |
| 1368 | |
| 1369 | spin_unlock(&efivars->lock); |
| 1370 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1371 | if (size) |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 1372 | ret = efivar_create_sysfs_entry(efivars, |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 1373 | utf16_strsize(efi_name, |
| 1374 | DUMP_NAME_LEN * 2), |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1375 | efi_name, &vendor); |
| 1376 | |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 1377 | *id = part; |
| 1378 | return ret; |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1379 | }; |
| 1380 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1381 | static int efi_pstore_erase(enum pstore_type_id type, u64 id, int count, |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1382 | struct timespec time, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1383 | { |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1384 | char name[DUMP_NAME_LEN]; |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1385 | efi_char16_t efi_name[DUMP_NAME_LEN]; |
Seiji Aguchi | f94ec0c | 2012-11-14 20:29:21 +0000 | [diff] [blame] | 1386 | char name_old[DUMP_NAME_LEN]; |
| 1387 | efi_char16_t efi_name_old[DUMP_NAME_LEN]; |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1388 | efi_guid_t vendor = LINUX_EFI_CRASH_GUID; |
| 1389 | struct efivars *efivars = psi->data; |
| 1390 | struct efivar_entry *entry, *found = NULL; |
| 1391 | int i; |
| 1392 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1393 | sprintf(name, "dump-type%u-%u-%d-%lu", type, (unsigned int)id, count, |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1394 | time.tv_sec); |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1395 | |
| 1396 | spin_lock(&efivars->lock); |
| 1397 | |
| 1398 | for (i = 0; i < DUMP_NAME_LEN; i++) |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1399 | efi_name[i] = name[i]; |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1400 | |
| 1401 | /* |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1402 | * Clean up an entry with the same name |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1403 | */ |
| 1404 | |
| 1405 | list_for_each_entry(entry, &efivars->list, list) { |
| 1406 | get_var_data_locked(efivars, &entry->var); |
| 1407 | |
| 1408 | if (efi_guidcmp(entry->var.VendorGuid, vendor)) |
| 1409 | continue; |
| 1410 | if (utf16_strncmp(entry->var.VariableName, efi_name, |
Seiji Aguchi | f94ec0c | 2012-11-14 20:29:21 +0000 | [diff] [blame] | 1411 | utf16_strlen(efi_name))) { |
| 1412 | /* |
| 1413 | * Check if an old format, |
| 1414 | * which doesn't support holding |
| 1415 | * multiple logs, remains. |
| 1416 | */ |
| 1417 | sprintf(name_old, "dump-type%u-%u-%lu", type, |
| 1418 | (unsigned int)id, time.tv_sec); |
| 1419 | |
| 1420 | for (i = 0; i < DUMP_NAME_LEN; i++) |
| 1421 | efi_name_old[i] = name_old[i]; |
| 1422 | |
| 1423 | if (utf16_strncmp(entry->var.VariableName, efi_name_old, |
| 1424 | utf16_strlen(efi_name_old))) |
| 1425 | continue; |
| 1426 | } |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1427 | |
| 1428 | /* found */ |
| 1429 | found = entry; |
| 1430 | efivars->ops->set_variable(entry->var.VariableName, |
| 1431 | &entry->var.VendorGuid, |
| 1432 | PSTORE_EFI_ATTRIBUTES, |
| 1433 | 0, NULL); |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1434 | break; |
Seiji Aguchi | dd230fe | 2012-11-14 20:26:21 +0000 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | if (found) |
| 1438 | list_del(&found->list); |
| 1439 | |
| 1440 | spin_unlock(&efivars->lock); |
| 1441 | |
| 1442 | if (found) |
| 1443 | efivar_unregister(found); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1444 | |
| 1445 | return 0; |
| 1446 | } |
| 1447 | #else |
| 1448 | static int efi_pstore_open(struct pstore_info *psi) |
| 1449 | { |
| 1450 | return 0; |
| 1451 | } |
| 1452 | |
| 1453 | static int efi_pstore_close(struct pstore_info *psi) |
| 1454 | { |
| 1455 | return 0; |
| 1456 | } |
| 1457 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1458 | static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type, int *count, |
Christoph Fritz | eee628d | 2011-11-28 23:49:33 +0100 | [diff] [blame] | 1459 | struct timespec *timespec, |
| 1460 | char **buf, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1461 | { |
| 1462 | return -1; |
| 1463 | } |
| 1464 | |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 1465 | static int efi_pstore_write(enum pstore_type_id type, |
| 1466 | enum kmsg_dump_reason reason, u64 *id, |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1467 | unsigned int part, int count, size_t size, |
| 1468 | struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1469 | { |
| 1470 | return 0; |
| 1471 | } |
| 1472 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 1473 | static int efi_pstore_erase(enum pstore_type_id type, u64 id, int count, |
Seiji Aguchi | a9efd39 | 2012-11-14 20:27:28 +0000 | [diff] [blame] | 1474 | struct timespec time, struct pstore_info *psi) |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1475 | { |
| 1476 | return 0; |
| 1477 | } |
| 1478 | #endif |
| 1479 | |
| 1480 | static struct pstore_info efi_pstore_info = { |
| 1481 | .owner = THIS_MODULE, |
| 1482 | .name = "efi", |
| 1483 | .open = efi_pstore_open, |
| 1484 | .close = efi_pstore_close, |
| 1485 | .read = efi_pstore_read, |
| 1486 | .write = efi_pstore_write, |
| 1487 | .erase = efi_pstore_erase, |
| 1488 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1490 | static ssize_t efivar_create(struct file *filp, struct kobject *kobj, |
Greg Kroah-Hartman | 97fa5bb | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1491 | struct bin_attribute *bin_attr, |
| 1492 | char *buf, loff_t pos, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | { |
| 1494 | struct efi_variable *new_var = (struct efi_variable *)buf; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1495 | struct efivars *efivars = bin_attr->private; |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 1496 | struct efivar_entry *search_efivar, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | unsigned long strsize1, strsize2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | efi_status_t status = EFI_NOT_FOUND; |
| 1499 | int found = 0; |
| 1500 | |
| 1501 | if (!capable(CAP_SYS_ADMIN)) |
| 1502 | return -EACCES; |
| 1503 | |
Matthew Garrett | fec6c20 | 2012-04-30 16:11:30 -0400 | [diff] [blame] | 1504 | if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || |
| 1505 | validate_var(new_var, new_var->Data, new_var->DataSize) == false) { |
| 1506 | printk(KERN_ERR "efivars: Malformed variable content\n"); |
| 1507 | return -EINVAL; |
| 1508 | } |
| 1509 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1510 | spin_lock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | |
| 1512 | /* |
| 1513 | * Does this variable already exist? |
| 1514 | */ |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1515 | list_for_each_entry_safe(search_efivar, n, &efivars->list, list) { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 1516 | strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024); |
| 1517 | strsize2 = utf16_strsize(new_var->VariableName, 1024); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | if (strsize1 == strsize2 && |
| 1519 | !memcmp(&(search_efivar->var.VariableName), |
| 1520 | new_var->VariableName, strsize1) && |
| 1521 | !efi_guidcmp(search_efivar->var.VendorGuid, |
| 1522 | new_var->VendorGuid)) { |
| 1523 | found = 1; |
| 1524 | break; |
| 1525 | } |
| 1526 | } |
| 1527 | if (found) { |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1528 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | return -EINVAL; |
| 1530 | } |
| 1531 | |
| 1532 | /* now *really* create the variable via EFI */ |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1533 | status = efivars->ops->set_variable(new_var->VariableName, |
| 1534 | &new_var->VendorGuid, |
| 1535 | new_var->Attributes, |
| 1536 | new_var->DataSize, |
| 1537 | new_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | |
| 1539 | if (status != EFI_SUCCESS) { |
| 1540 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 1541 | status); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1542 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | return -EIO; |
| 1544 | } |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1545 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
| 1547 | /* Create the entry in sysfs. Locking is not required here */ |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1548 | status = efivar_create_sysfs_entry(efivars, |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 1549 | utf16_strsize(new_var->VariableName, |
| 1550 | 1024), |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1551 | new_var->VariableName, |
| 1552 | &new_var->VendorGuid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | if (status) { |
| 1554 | printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n"); |
| 1555 | } |
| 1556 | return count; |
| 1557 | } |
| 1558 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1559 | static ssize_t efivar_delete(struct file *filp, struct kobject *kobj, |
Greg Kroah-Hartman | 97fa5bb | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1560 | struct bin_attribute *bin_attr, |
| 1561 | char *buf, loff_t pos, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | { |
| 1563 | struct efi_variable *del_var = (struct efi_variable *)buf; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1564 | struct efivars *efivars = bin_attr->private; |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 1565 | struct efivar_entry *search_efivar, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | unsigned long strsize1, strsize2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | efi_status_t status = EFI_NOT_FOUND; |
| 1568 | int found = 0; |
| 1569 | |
| 1570 | if (!capable(CAP_SYS_ADMIN)) |
| 1571 | return -EACCES; |
| 1572 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1573 | spin_lock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
| 1575 | /* |
| 1576 | * Does this variable already exist? |
| 1577 | */ |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1578 | list_for_each_entry_safe(search_efivar, n, &efivars->list, list) { |
Mike Waychison | a294090 | 2011-07-21 16:57:57 -0400 | [diff] [blame] | 1579 | strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024); |
| 1580 | strsize2 = utf16_strsize(del_var->VariableName, 1024); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | if (strsize1 == strsize2 && |
| 1582 | !memcmp(&(search_efivar->var.VariableName), |
| 1583 | del_var->VariableName, strsize1) && |
| 1584 | !efi_guidcmp(search_efivar->var.VendorGuid, |
| 1585 | del_var->VendorGuid)) { |
| 1586 | found = 1; |
| 1587 | break; |
| 1588 | } |
| 1589 | } |
| 1590 | if (!found) { |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1591 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | return -EINVAL; |
| 1593 | } |
| 1594 | /* force the Attributes/DataSize to 0 to ensure deletion */ |
| 1595 | del_var->Attributes = 0; |
| 1596 | del_var->DataSize = 0; |
| 1597 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1598 | status = efivars->ops->set_variable(del_var->VariableName, |
| 1599 | &del_var->VendorGuid, |
| 1600 | del_var->Attributes, |
| 1601 | del_var->DataSize, |
| 1602 | del_var->Data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | |
| 1604 | if (status != EFI_SUCCESS) { |
| 1605 | printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n", |
| 1606 | status); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1607 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | return -EIO; |
| 1609 | } |
Matt Domsch | 496a0fc | 2007-01-26 00:57:18 -0800 | [diff] [blame] | 1610 | list_del(&search_efivar->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | /* We need to release this lock before unregistering. */ |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1612 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | efivar_unregister(search_efivar); |
| 1614 | |
| 1615 | /* It's dead Jim.... */ |
| 1616 | return count; |
| 1617 | } |
| 1618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | /* |
| 1620 | * Let's not leave out systab information that snuck into |
| 1621 | * the efivars driver |
| 1622 | */ |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1623 | static ssize_t systab_show(struct kobject *kobj, |
| 1624 | struct kobj_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | { |
| 1626 | char *str = buf; |
| 1627 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1628 | if (!kobj || !buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | return -EINVAL; |
| 1630 | |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 1631 | if (efi.mps != EFI_INVALID_TABLE_ADDR) |
| 1632 | str += sprintf(str, "MPS=0x%lx\n", efi.mps); |
| 1633 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
| 1634 | str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20); |
| 1635 | if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
| 1636 | str += sprintf(str, "ACPI=0x%lx\n", efi.acpi); |
| 1637 | if (efi.smbios != EFI_INVALID_TABLE_ADDR) |
| 1638 | str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios); |
| 1639 | if (efi.hcdp != EFI_INVALID_TABLE_ADDR) |
| 1640 | str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp); |
| 1641 | if (efi.boot_info != EFI_INVALID_TABLE_ADDR) |
| 1642 | str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info); |
| 1643 | if (efi.uga != EFI_INVALID_TABLE_ADDR) |
| 1644 | str += sprintf(str, "UGA=0x%lx\n", efi.uga); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | |
| 1646 | return str - buf; |
| 1647 | } |
| 1648 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1649 | static struct kobj_attribute efi_attr_systab = |
| 1650 | __ATTR(systab, 0400, systab_show, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1652 | static struct attribute *efi_subsys_attrs[] = { |
| 1653 | &efi_attr_systab.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | NULL, /* maybe more in the future? */ |
| 1655 | }; |
| 1656 | |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1657 | static struct attribute_group efi_subsys_attr_group = { |
| 1658 | .attrs = efi_subsys_attrs, |
| 1659 | }; |
| 1660 | |
Greg Kroah-Hartman | bc87d2f | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1661 | static struct kobject *efi_kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | |
| 1663 | /* |
| 1664 | * efivar_create_sysfs_entry() |
| 1665 | * Requires: |
| 1666 | * variable_name_size = number of bytes required to hold |
| 1667 | * variable_name (not counting the NULL |
| 1668 | * character at the end. |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1669 | * efivars->lock is not held on entry or exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | * Returns 1 on failure, 0 on success |
| 1671 | */ |
| 1672 | static int |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1673 | efivar_create_sysfs_entry(struct efivars *efivars, |
| 1674 | unsigned long variable_name_size, |
| 1675 | efi_char16_t *variable_name, |
| 1676 | efi_guid_t *vendor_guid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | { |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 1678 | int i, short_name_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | char *short_name; |
| 1680 | struct efivar_entry *new_efivar; |
| 1681 | |
Jeremy Kerr | 310ad75 | 2012-10-19 15:16:45 +0800 | [diff] [blame] | 1682 | /* |
| 1683 | * Length of the variable bytes in ASCII, plus the '-' separator, |
| 1684 | * plus the GUID, plus trailing NUL |
| 1685 | */ |
| 1686 | short_name_size = variable_name_size / sizeof(efi_char16_t) |
| 1687 | + 1 + GUID_LEN + 1; |
| 1688 | |
| 1689 | short_name = kzalloc(short_name_size, GFP_KERNEL); |
Deepak Saxena | 9c21538 | 2005-11-07 01:01:24 -0800 | [diff] [blame] | 1690 | new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | |
| 1692 | if (!short_name || !new_efivar) { |
Jesper Juhl | 0933ad9 | 2005-06-25 14:59:15 -0700 | [diff] [blame] | 1693 | kfree(short_name); |
| 1694 | kfree(new_efivar); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | return 1; |
| 1696 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1698 | new_efivar->efivars = efivars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | memcpy(new_efivar->var.VariableName, variable_name, |
| 1700 | variable_name_size); |
| 1701 | memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t)); |
| 1702 | |
| 1703 | /* Convert Unicode to normal chars (assume top bits are 0), |
| 1704 | ala UTF-8 */ |
| 1705 | for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) { |
| 1706 | short_name[i] = variable_name[i] & 0xFF; |
| 1707 | } |
| 1708 | /* This is ugly, but necessary to separate one vendor's |
| 1709 | private variables from another's. */ |
| 1710 | |
| 1711 | *(short_name + strlen(short_name)) = '-'; |
| 1712 | efi_guid_unparse(vendor_guid, short_name + strlen(short_name)); |
| 1713 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1714 | new_efivar->kobj.kset = efivars->kset; |
Greg Kroah-Hartman | d6d292c | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1715 | i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL, |
| 1716 | "%s", short_name); |
Jeff Garzik | 69b2186 | 2006-10-11 01:22:23 -0700 | [diff] [blame] | 1717 | if (i) { |
| 1718 | kfree(short_name); |
| 1719 | kfree(new_efivar); |
| 1720 | return 1; |
| 1721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | |
Greg Kroah-Hartman | d6d292c | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1723 | kobject_uevent(&new_efivar->kobj, KOBJ_ADD); |
Jesper Juhl | 0933ad9 | 2005-06-25 14:59:15 -0700 | [diff] [blame] | 1724 | kfree(short_name); |
| 1725 | short_name = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1727 | spin_lock(&efivars->lock); |
| 1728 | list_add(&new_efivar->list, &efivars->list); |
| 1729 | spin_unlock(&efivars->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | |
| 1731 | return 0; |
| 1732 | } |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1733 | |
| 1734 | static int |
| 1735 | create_efivars_bin_attributes(struct efivars *efivars) |
| 1736 | { |
| 1737 | struct bin_attribute *attr; |
| 1738 | int error; |
| 1739 | |
| 1740 | /* new_var */ |
| 1741 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
| 1742 | if (!attr) |
| 1743 | return -ENOMEM; |
| 1744 | |
| 1745 | attr->attr.name = "new_var"; |
| 1746 | attr->attr.mode = 0200; |
| 1747 | attr->write = efivar_create; |
| 1748 | attr->private = efivars; |
| 1749 | efivars->new_var = attr; |
| 1750 | |
| 1751 | /* del_var */ |
| 1752 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
| 1753 | if (!attr) { |
| 1754 | error = -ENOMEM; |
| 1755 | goto out_free; |
| 1756 | } |
| 1757 | attr->attr.name = "del_var"; |
| 1758 | attr->attr.mode = 0200; |
| 1759 | attr->write = efivar_delete; |
| 1760 | attr->private = efivars; |
| 1761 | efivars->del_var = attr; |
| 1762 | |
| 1763 | sysfs_bin_attr_init(efivars->new_var); |
| 1764 | sysfs_bin_attr_init(efivars->del_var); |
| 1765 | |
| 1766 | /* Register */ |
| 1767 | error = sysfs_create_bin_file(&efivars->kset->kobj, |
| 1768 | efivars->new_var); |
| 1769 | if (error) { |
| 1770 | printk(KERN_ERR "efivars: unable to create new_var sysfs file" |
| 1771 | " due to error %d\n", error); |
| 1772 | goto out_free; |
| 1773 | } |
| 1774 | error = sysfs_create_bin_file(&efivars->kset->kobj, |
| 1775 | efivars->del_var); |
| 1776 | if (error) { |
| 1777 | printk(KERN_ERR "efivars: unable to create del_var sysfs file" |
| 1778 | " due to error %d\n", error); |
| 1779 | sysfs_remove_bin_file(&efivars->kset->kobj, |
| 1780 | efivars->new_var); |
| 1781 | goto out_free; |
| 1782 | } |
| 1783 | |
| 1784 | return 0; |
| 1785 | out_free: |
Dan Carpenter | 051d51b | 2011-03-18 10:12:14 +0300 | [diff] [blame] | 1786 | kfree(efivars->del_var); |
| 1787 | efivars->del_var = NULL; |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1788 | kfree(efivars->new_var); |
| 1789 | efivars->new_var = NULL; |
| 1790 | return error; |
| 1791 | } |
| 1792 | |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1793 | void unregister_efivars(struct efivars *efivars) |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1794 | { |
| 1795 | struct efivar_entry *entry, *n; |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1796 | |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1797 | list_for_each_entry_safe(entry, n, &efivars->list, list) { |
| 1798 | spin_lock(&efivars->lock); |
| 1799 | list_del(&entry->list); |
| 1800 | spin_unlock(&efivars->lock); |
| 1801 | efivar_unregister(entry); |
| 1802 | } |
| 1803 | if (efivars->new_var) |
| 1804 | sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var); |
| 1805 | if (efivars->del_var) |
| 1806 | sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var); |
| 1807 | kfree(efivars->new_var); |
| 1808 | kfree(efivars->del_var); |
Lee, Chun-Yi | 605e70c | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1809 | kobject_put(efivars->kobject); |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1810 | kset_unregister(efivars->kset); |
| 1811 | } |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1812 | EXPORT_SYMBOL_GPL(unregister_efivars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1814 | int register_efivars(struct efivars *efivars, |
| 1815 | const struct efivar_operations *ops, |
| 1816 | struct kobject *parent_kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | { |
| 1818 | efi_status_t status = EFI_NOT_FOUND; |
| 1819 | efi_guid_t vendor_guid; |
| 1820 | efi_char16_t *variable_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | unsigned long variable_name_size = 1024; |
Greg Kroah-Hartman | 334c630 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1822 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
Deepak Saxena | 9c21538 | 2005-11-07 01:01:24 -0800 | [diff] [blame] | 1824 | variable_name = kzalloc(variable_name_size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | if (!variable_name) { |
| 1826 | printk(KERN_ERR "efivars: Memory allocation failed.\n"); |
| 1827 | return -ENOMEM; |
| 1828 | } |
| 1829 | |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1830 | spin_lock_init(&efivars->lock); |
| 1831 | INIT_LIST_HEAD(&efivars->list); |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1832 | efivars->ops = ops; |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1833 | |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1834 | efivars->kset = kset_create_and_add("vars", NULL, parent_kobj); |
Mike Waychison | 2942269 | 2011-03-11 17:43:00 -0800 | [diff] [blame] | 1835 | if (!efivars->kset) { |
Greg Kroah-Hartman | 66ac831 | 2007-11-02 13:20:40 -0700 | [diff] [blame] | 1836 | printk(KERN_ERR "efivars: Subsystem registration failed.\n"); |
| 1837 | error = -ENOMEM; |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1838 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | } |
| 1840 | |
Lee, Chun-Yi | 605e70c | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1841 | efivars->kobject = kobject_create_and_add("efivars", parent_kobj); |
| 1842 | if (!efivars->kobject) { |
| 1843 | pr_err("efivars: Subsystem registration failed.\n"); |
| 1844 | error = -ENOMEM; |
| 1845 | kset_unregister(efivars->kset); |
| 1846 | goto out; |
| 1847 | } |
| 1848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | /* |
| 1850 | * Per EFI spec, the maximum storage allocated for both |
| 1851 | * the variable name and variable data is 1024 bytes. |
| 1852 | */ |
| 1853 | |
| 1854 | do { |
| 1855 | variable_name_size = 1024; |
| 1856 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1857 | status = ops->get_next_variable(&variable_name_size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | variable_name, |
| 1859 | &vendor_guid); |
| 1860 | switch (status) { |
| 1861 | case EFI_SUCCESS: |
Mike Waychison | 4142ef1 | 2011-03-11 17:43:11 -0800 | [diff] [blame] | 1862 | efivar_create_sysfs_entry(efivars, |
| 1863 | variable_name_size, |
| 1864 | variable_name, |
| 1865 | &vendor_guid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | break; |
| 1867 | case EFI_NOT_FOUND: |
| 1868 | break; |
| 1869 | default: |
| 1870 | printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n", |
| 1871 | status); |
| 1872 | status = EFI_NOT_FOUND; |
| 1873 | break; |
| 1874 | } |
| 1875 | } while (status != EFI_NOT_FOUND); |
| 1876 | |
Mike Waychison | d502fbb | 2011-03-11 17:43:06 -0800 | [diff] [blame] | 1877 | error = create_efivars_bin_attributes(efivars); |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1878 | if (error) |
| 1879 | unregister_efivars(efivars); |
| 1880 | |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1881 | efivars->efi_pstore_info = efi_pstore_info; |
| 1882 | |
| 1883 | efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL); |
| 1884 | if (efivars->efi_pstore_info.buf) { |
| 1885 | efivars->efi_pstore_info.bufsize = 1024; |
| 1886 | efivars->efi_pstore_info.data = efivars; |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 1887 | spin_lock_init(&efivars->efi_pstore_info.buf_lock); |
Matthew Garrett | 5ee9c19 | 2011-07-21 16:57:56 -0400 | [diff] [blame] | 1888 | pstore_register(&efivars->efi_pstore_info); |
| 1889 | } |
| 1890 | |
Matthew Garrett | 5d9db88 | 2012-10-05 13:54:56 +0800 | [diff] [blame] | 1891 | register_filesystem(&efivarfs_type); |
| 1892 | |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1893 | out: |
| 1894 | kfree(variable_name); |
| 1895 | |
| 1896 | return error; |
| 1897 | } |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1898 | EXPORT_SYMBOL_GPL(register_efivars); |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1899 | |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1900 | /* |
| 1901 | * For now we register the efi subsystem with the firmware subsystem |
| 1902 | * and the vars subsystem with the efi subsystem. In the future, it |
| 1903 | * might make sense to split off the efi subsystem into its own |
| 1904 | * driver, but for now only efivars will register with it, so just |
| 1905 | * include it here. |
| 1906 | */ |
| 1907 | |
| 1908 | static int __init |
| 1909 | efivars_init(void) |
| 1910 | { |
| 1911 | int error = 0; |
| 1912 | |
| 1913 | printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION, |
| 1914 | EFIVARS_DATE); |
| 1915 | |
Matt Fleming | 83e6818 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 1916 | if (!efi_enabled(EFI_RUNTIME_SERVICES)) |
Mike Waychison | 4fc756b | 2011-03-11 17:43:27 -0800 | [diff] [blame] | 1917 | return 0; |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1918 | |
| 1919 | /* For now we'll register the efi directory at /sys/firmware/efi */ |
| 1920 | efi_kobj = kobject_create_and_add("efi", firmware_kobj); |
| 1921 | if (!efi_kobj) { |
| 1922 | printk(KERN_ERR "efivars: Firmware registration failed.\n"); |
| 1923 | return -ENOMEM; |
| 1924 | } |
| 1925 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1926 | ops.get_variable = efi.get_variable; |
| 1927 | ops.set_variable = efi.set_variable; |
| 1928 | ops.get_next_variable = efi.get_next_variable; |
Seiji Aguchi | d80a361 | 2012-11-14 20:25:37 +0000 | [diff] [blame] | 1929 | ops.query_variable_info = efi.query_variable_info; |
Matt Fleming | 89d1666 | 2012-11-09 21:02:56 +0000 | [diff] [blame] | 1930 | |
Mike Waychison | 3295814 | 2011-03-11 17:43:21 -0800 | [diff] [blame] | 1931 | error = register_efivars(&__efivars, &ops, efi_kobj); |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1932 | if (error) |
| 1933 | goto err_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | |
| 1935 | /* Don't forget the systab entry */ |
Greg Kroah-Hartman | bc87d2f | 2007-11-07 13:56:19 -0800 | [diff] [blame] | 1936 | error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group); |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1937 | if (error) { |
| 1938 | printk(KERN_ERR |
| 1939 | "efivars: Sysfs attribute export failed with error %d.\n", |
| 1940 | error); |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1941 | goto err_unregister; |
Mike Waychison | 76b53f7c | 2011-03-11 17:43:16 -0800 | [diff] [blame] | 1942 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | |
Dan Carpenter | 3116aab | 2011-03-18 10:12:38 +0300 | [diff] [blame] | 1944 | return 0; |
| 1945 | |
| 1946 | err_unregister: |
| 1947 | unregister_efivars(&__efivars); |
| 1948 | err_put: |
| 1949 | kobject_put(efi_kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | return error; |
| 1951 | } |
| 1952 | |
| 1953 | static void __exit |
| 1954 | efivars_exit(void) |
| 1955 | { |
Matt Fleming | 83e6818 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 1956 | if (efi_enabled(EFI_RUNTIME_SERVICES)) { |
Randy Dunlap | aabb6e1 | 2011-05-06 13:27:41 -0700 | [diff] [blame] | 1957 | unregister_efivars(&__efivars); |
| 1958 | kobject_put(efi_kobj); |
| 1959 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | } |
| 1961 | |
| 1962 | module_init(efivars_init); |
| 1963 | module_exit(efivars_exit); |
| 1964 | |