efivars.c 44 KB

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