2 * EFI capsule loader driver.
4 * Copyright 2015 Intel Corporation
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
10 #define pr_fmt(fmt) "efi: " fmt
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/miscdevice.h>
15 #include <linux/highmem.h>
16 #include <linux/slab.h>
17 #include <linux/mutex.h>
18 #include <linux/efi.h>
19 #include <linux/vmalloc.h>
21 #define NO_FURTHER_WRITE_ACTION -1
24 * efi_free_all_buff_pages - free all previous allocated buffer pages
25 * @cap_info: pointer to current instance of capsule_info structure
27 * In addition to freeing buffer pages, it flags NO_FURTHER_WRITE_ACTION
28 * to cease processing data in subsequent write(2) calls until close(2)
31 static void efi_free_all_buff_pages(struct capsule_info *cap_info)
33 while (cap_info->index > 0)
34 __free_page(cap_info->pages[--cap_info->index]);
36 cap_info->index = NO_FURTHER_WRITE_ACTION;
39 int __efi_capsule_setup_info(struct capsule_info *cap_info)
45 pages_needed = ALIGN(cap_info->total_size, PAGE_SIZE) / PAGE_SIZE;
47 if (pages_needed == 0) {
48 pr_err("invalid capsule size\n");
52 /* Check if the capsule binary supported */
53 ret = efi_capsule_supported(cap_info->header.guid,
54 cap_info->header.flags,
55 cap_info->header.imagesize,
56 &cap_info->reset_type);
58 pr_err("capsule not supported\n");
62 temp_page = krealloc(cap_info->pages,
63 pages_needed * sizeof(void *),
64 GFP_KERNEL | __GFP_ZERO);
68 cap_info->pages = temp_page;
70 temp_page = krealloc(cap_info->phys,
71 pages_needed * sizeof(phys_addr_t *),
72 GFP_KERNEL | __GFP_ZERO);
76 cap_info->phys = temp_page;
82 * efi_capsule_setup_info - obtain the efi capsule header in the binary and
83 * setup capsule_info structure
84 * @cap_info: pointer to current instance of capsule_info structure
85 * @kbuff: a mapped first page buffer pointer
86 * @hdr_bytes: the total received number of bytes for efi header
88 * Platforms with non-standard capsule update mechanisms can override
89 * this __weak function so they can perform any required capsule
90 * image munging. See quark_quirk_function() for an example.
92 int __weak efi_capsule_setup_info(struct capsule_info *cap_info, void *kbuff,
95 /* Only process data block that is larger than efi header size */
96 if (hdr_bytes < sizeof(efi_capsule_header_t))
99 memcpy(&cap_info->header, kbuff, sizeof(cap_info->header));
100 cap_info->total_size = cap_info->header.imagesize;
102 return __efi_capsule_setup_info(cap_info);
106 * efi_capsule_submit_update - invoke the efi_capsule_update API once binary
108 * @cap_info: pointer to current instance of capsule_info structure
110 static ssize_t efi_capsule_submit_update(struct capsule_info *cap_info)
112 bool do_vunmap = false;
116 * cap_info->capsule may have been assigned already by a quirk
117 * handler, so only overwrite it if it is NULL
119 if (!cap_info->capsule) {
120 cap_info->capsule = vmap(cap_info->pages, cap_info->index,
121 VM_MAP, PAGE_KERNEL);
122 if (!cap_info->capsule)
127 ret = efi_capsule_update(cap_info->capsule, cap_info->phys);
129 vunmap(cap_info->capsule);
131 pr_err("capsule update failed\n");
135 /* Indicate capsule binary uploading is done */
136 cap_info->index = NO_FURTHER_WRITE_ACTION;
138 if (cap_info->header.flags & EFI_CAPSULE_PERSIST_ACROSS_RESET) {
139 pr_info("Successfully uploaded capsule file with reboot type '%s'\n",
140 !cap_info->reset_type ? "RESET_COLD" :
141 cap_info->reset_type == 1 ? "RESET_WARM" :
144 pr_info("Successfully processed capsule file\n");
151 * efi_capsule_write - store the capsule binary and pass it to
152 * efi_capsule_update() API
153 * @file: file pointer
154 * @buff: buffer pointer
155 * @count: number of bytes in @buff
159 * - A user space tool should start at the beginning of capsule binary and
160 * pass data in sequentially.
161 * - Users should close and re-open this file note in order to upload more
163 * - After an error returned, user should close the file and restart the
164 * operation for the next try otherwise -EIO will be returned until the
166 * - An EFI capsule header must be located at the beginning of capsule
167 * binary file and passed in as first block data of write operation.
169 static ssize_t efi_capsule_write(struct file *file, const char __user *buff,
170 size_t count, loff_t *offp)
173 struct capsule_info *cap_info = file->private_data;
181 /* Return error while NO_FURTHER_WRITE_ACTION is flagged */
182 if (cap_info->index < 0)
185 /* Only alloc a new page when previous page is full */
186 if (!cap_info->page_bytes_remain) {
187 page = alloc_page(GFP_KERNEL);
193 cap_info->pages[cap_info->index] = page;
194 cap_info->phys[cap_info->index] = page_to_phys(page);
195 cap_info->page_bytes_remain = PAGE_SIZE;
198 page = cap_info->pages[cap_info->index - 1];
202 kbuff += PAGE_SIZE - cap_info->page_bytes_remain;
204 /* Copy capsule binary data from user space to kernel space buffer */
205 write_byte = min_t(size_t, count, cap_info->page_bytes_remain);
206 if (copy_from_user(kbuff, buff, write_byte)) {
210 cap_info->page_bytes_remain -= write_byte;
212 /* Setup capsule binary info structure */
213 if (cap_info->header.headersize == 0) {
214 ret = efi_capsule_setup_info(cap_info, kbuff - cap_info->count,
215 cap_info->count + write_byte);
220 cap_info->count += write_byte;
223 /* Submit the full binary to efi_capsule_update() API */
224 if (cap_info->header.headersize > 0 &&
225 cap_info->count >= cap_info->total_size) {
226 if (cap_info->count > cap_info->total_size) {
227 pr_err("capsule upload size exceeded header defined size\n");
232 ret = efi_capsule_submit_update(cap_info);
242 efi_free_all_buff_pages(cap_info);
247 * efi_capsule_release - called by file close
249 * @file: file pointer
251 * We will not free successfully submitted pages since efi update
252 * requires data to be maintained across system reboot.
254 static int efi_capsule_release(struct inode *inode, struct file *file)
256 struct capsule_info *cap_info = file->private_data;
258 if (cap_info->index > 0 &&
259 (cap_info->header.headersize == 0 ||
260 cap_info->count < cap_info->total_size)) {
261 pr_err("capsule upload not complete\n");
262 efi_free_all_buff_pages(cap_info);
265 kfree(cap_info->pages);
266 kfree(cap_info->phys);
267 kfree(file->private_data);
268 file->private_data = NULL;
273 * efi_capsule_open - called by file open
275 * @file: file pointer
277 * Will allocate each capsule_info memory for each file open call.
278 * This provided the capability to support multiple file open feature
279 * where user is not needed to wait for others to finish in order to
280 * upload their capsule binary.
282 static int efi_capsule_open(struct inode *inode, struct file *file)
284 struct capsule_info *cap_info;
286 cap_info = kzalloc(sizeof(*cap_info), GFP_KERNEL);
290 cap_info->pages = kzalloc(sizeof(void *), GFP_KERNEL);
291 if (!cap_info->pages) {
296 cap_info->phys = kzalloc(sizeof(phys_addr_t), GFP_KERNEL);
297 if (!cap_info->phys) {
298 kfree(cap_info->pages);
303 file->private_data = cap_info;
308 static const struct file_operations efi_capsule_fops = {
309 .owner = THIS_MODULE,
310 .open = efi_capsule_open,
311 .write = efi_capsule_write,
312 .release = efi_capsule_release,
316 static struct miscdevice efi_capsule_misc = {
317 .minor = MISC_DYNAMIC_MINOR,
318 .name = "efi_capsule_loader",
319 .fops = &efi_capsule_fops,
322 static int __init efi_capsule_loader_init(void)
326 if (!efi_enabled(EFI_RUNTIME_SERVICES))
329 ret = misc_register(&efi_capsule_misc);
331 pr_err("Unable to register capsule loader device\n");
335 module_init(efi_capsule_loader_init);
337 static void __exit efi_capsule_loader_exit(void)
339 misc_deregister(&efi_capsule_misc);
341 module_exit(efi_capsule_loader_exit);
343 MODULE_DESCRIPTION("EFI capsule firmware binary loader");
344 MODULE_LICENSE("GPL v2");