]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/boot/amd64/efi/copy.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / boot / amd64 / efi / copy.c
1 /*-
2  * Copyright (c) 2013 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Benno Rice under sponsorship from
6  * the FreeBSD Foundation.
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33
34 #include <stand.h>
35 #include <bootstrap.h>
36
37 #include <efi.h>
38 #include <efilib.h>
39
40 #ifndef EFI_STAGING_SIZE
41 #define EFI_STAGING_SIZE        32
42 #endif
43
44 #define STAGE_PAGES     ((EFI_STAGING_SIZE) * 1024 * 1024 / 4096)
45
46 EFI_PHYSICAL_ADDRESS    staging, staging_end;
47 int                     stage_offset_set = 0;
48 ssize_t                 stage_offset;
49
50 int
51 x86_efi_copy_init(void)
52 {
53         EFI_STATUS      status;
54
55         status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
56             STAGE_PAGES, &staging);
57         if (EFI_ERROR(status)) {
58                 printf("failed to allocate staging area: %lu\n",
59                     (unsigned long)(status & EFI_ERROR_MASK));
60                 return (status);
61         }
62         staging_end = staging + STAGE_PAGES * 4096;
63
64         return (0);
65 }
66
67 ssize_t
68 x86_efi_copyin(const void *src, vm_offset_t dest, const size_t len)
69 {
70
71         if (!stage_offset_set) {
72                 stage_offset = (vm_offset_t)staging - dest;
73                 stage_offset_set = 1;
74         }
75
76         /* XXX: Callers do not check for failure. */
77         if (dest + stage_offset + len > staging_end) {
78                 errno = ENOMEM;
79                 return (-1);
80         }
81         bcopy(src, (void *)(dest + stage_offset), len);
82         return (len);
83 }
84
85 ssize_t
86 x86_efi_copyout(const vm_offset_t src, void *dest, const size_t len)
87 {
88
89         /* XXX: Callers do not check for failure. */
90         if (src + stage_offset + len > staging_end) {
91                 errno = ENOMEM;
92                 return (-1);
93         }
94         bcopy((void *)(src + stage_offset), dest, len);
95         return (len);
96 }
97
98
99 ssize_t
100 x86_efi_readin(const int fd, vm_offset_t dest, const size_t len)
101 {
102
103         if (dest + stage_offset + len > staging_end) {
104                 errno = ENOMEM;
105                 return (-1);
106         }
107         return (read(fd, (void *)(dest + stage_offset), len));
108 }
109
110 void
111 x86_efi_copy_finish(void)
112 {
113         uint64_t        *src, *dst, *last;
114
115         src = (uint64_t *)staging;
116         dst = (uint64_t *)(staging - stage_offset);
117         last = (uint64_t *)(staging + STAGE_PAGES * EFI_PAGE_SIZE);
118
119         while (src < last)
120                 *dst++ = *src++;
121 }