efivar.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * Copyright(c) 2015, 2016 Intel Corporation.
  3. *
  4. * This file is provided under a dual BSD/GPLv2 license. When using or
  5. * redistributing this file, you may do so under either license.
  6. *
  7. * GPL LICENSE SUMMARY
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of version 2 of the GNU General Public License as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * BSD LICENSE
  19. *
  20. * Redistribution and use in source and binary forms, with or without
  21. * modification, are permitted provided that the following conditions
  22. * are met:
  23. *
  24. * - Redistributions of source code must retain the above copyright
  25. * notice, this list of conditions and the following disclaimer.
  26. * - Redistributions in binary form must reproduce the above copyright
  27. * notice, this list of conditions and the following disclaimer in
  28. * the documentation and/or other materials provided with the
  29. * distribution.
  30. * - Neither the name of Intel Corporation nor the names of its
  31. * contributors may be used to endorse or promote products derived
  32. * from this software without specific prior written permission.
  33. *
  34. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  35. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  36. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  37. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  38. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  39. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  40. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  41. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  42. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  43. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  44. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  45. *
  46. */
  47. #include <linux/ctype.h>
  48. #include "efivar.h"
  49. /* GUID for HFI1 variables in EFI */
  50. #define HFI1_EFIVAR_GUID EFI_GUID(0xc50a953e, 0xa8b2, 0x42a6, \
  51. 0xbf, 0x89, 0xd3, 0x33, 0xa6, 0xe9, 0xe6, 0xd4)
  52. /* largest EFI data size we expect */
  53. #define EFI_DATA_SIZE 4096
  54. /*
  55. * Read the named EFI variable. Return the size of the actual data in *size
  56. * and a kmalloc'ed buffer in *return_data. The caller must free the
  57. * data. It is guaranteed that *return_data will be NULL and *size = 0
  58. * if this routine fails.
  59. *
  60. * Return 0 on success, -errno on failure.
  61. */
  62. static int read_efi_var(const char *name, unsigned long *size,
  63. void **return_data)
  64. {
  65. efi_status_t status;
  66. efi_char16_t *uni_name;
  67. efi_guid_t guid;
  68. unsigned long temp_size;
  69. void *temp_buffer;
  70. void *data;
  71. int i;
  72. int ret;
  73. /* set failure return values */
  74. *size = 0;
  75. *return_data = NULL;
  76. if (!efi_enabled(EFI_RUNTIME_SERVICES))
  77. return -EOPNOTSUPP;
  78. uni_name = kcalloc(strlen(name) + 1, sizeof(efi_char16_t), GFP_KERNEL);
  79. temp_buffer = kzalloc(EFI_DATA_SIZE, GFP_KERNEL);
  80. if (!uni_name || !temp_buffer) {
  81. ret = -ENOMEM;
  82. goto fail;
  83. }
  84. /* input: the size of the buffer */
  85. temp_size = EFI_DATA_SIZE;
  86. /* convert ASCII to unicode - it is a 1:1 mapping */
  87. for (i = 0; name[i]; i++)
  88. uni_name[i] = name[i];
  89. /* need a variable for our GUID */
  90. guid = HFI1_EFIVAR_GUID;
  91. /* call into EFI runtime services */
  92. status = efi.get_variable(
  93. uni_name,
  94. &guid,
  95. NULL,
  96. &temp_size,
  97. temp_buffer);
  98. /*
  99. * It would be nice to call efi_status_to_err() here, but that
  100. * is in the EFIVAR_FS code and may not be compiled in.
  101. * However, even that is insufficient since it does not cover
  102. * EFI_BUFFER_TOO_SMALL which could be an important return.
  103. * For now, just split out succces or not found.
  104. */
  105. ret = status == EFI_SUCCESS ? 0 :
  106. status == EFI_NOT_FOUND ? -ENOENT :
  107. -EINVAL;
  108. if (ret)
  109. goto fail;
  110. /*
  111. * We have successfully read the EFI variable into our
  112. * temporary buffer. Now allocate a correctly sized
  113. * buffer.
  114. */
  115. data = kmemdup(temp_buffer, temp_size, GFP_KERNEL);
  116. if (!data) {
  117. ret = -ENOMEM;
  118. goto fail;
  119. }
  120. *size = temp_size;
  121. *return_data = data;
  122. fail:
  123. kfree(uni_name);
  124. kfree(temp_buffer);
  125. return ret;
  126. }
  127. /*
  128. * Read an HFI1 EFI variable of the form:
  129. * <PCIe address>-<kind>
  130. * Return an kalloc'ed array and size of the data.
  131. *
  132. * Returns 0 on success, -errno on failure.
  133. */
  134. int read_hfi1_efi_var(struct hfi1_devdata *dd, const char *kind,
  135. unsigned long *size, void **return_data)
  136. {
  137. char prefix_name[64];
  138. char name[64];
  139. int result;
  140. int i;
  141. /* create a common prefix */
  142. snprintf(prefix_name, sizeof(prefix_name), "%04x:%02x:%02x.%x",
  143. pci_domain_nr(dd->pcidev->bus),
  144. dd->pcidev->bus->number,
  145. PCI_SLOT(dd->pcidev->devfn),
  146. PCI_FUNC(dd->pcidev->devfn));
  147. snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
  148. result = read_efi_var(name, size, return_data);
  149. /*
  150. * If reading the lowercase EFI variable fail, read the uppercase
  151. * variable.
  152. */
  153. if (result) {
  154. /* Converting to uppercase */
  155. for (i = 0; prefix_name[i]; i++)
  156. if (isalpha(prefix_name[i]))
  157. prefix_name[i] = toupper(prefix_name[i]);
  158. snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
  159. result = read_efi_var(name, size, return_data);
  160. }
  161. return result;
  162. }