]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - sys/boot/efi/loader/copy.c
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / sys / boot / efi / loader / 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 #include "loader_efi.h"
41
42 #ifndef EFI_STAGING_SIZE
43 #define EFI_STAGING_SIZE        48
44 #endif
45
46 #define STAGE_PAGES     EFI_SIZE_TO_PAGES((EFI_STAGING_SIZE) * 1024 * 1024)
47
48 EFI_PHYSICAL_ADDRESS    staging, staging_end;
49 int                     stage_offset_set = 0;
50 ssize_t                 stage_offset;
51
52 int
53 efi_copy_init(void)
54 {
55         EFI_STATUS      status;
56
57         status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
58             STAGE_PAGES, &staging);
59         if (EFI_ERROR(status)) {
60                 printf("failed to allocate staging area: %lu\n",
61                     EFI_ERROR_CODE(status));
62                 return (status);
63         }
64         staging_end = staging + STAGE_PAGES * EFI_PAGE_SIZE;
65
66         return (0);
67 }
68
69 ssize_t
70 efi_copyin(const void *src, vm_offset_t dest, const size_t len)
71 {
72
73         if (!stage_offset_set) {
74                 stage_offset = (vm_offset_t)staging - dest;
75                 stage_offset_set = 1;
76         }
77
78         /* XXX: Callers do not check for failure. */
79         if (dest + stage_offset + len > staging_end) {
80                 errno = ENOMEM;
81                 return (-1);
82         }
83         bcopy(src, (void *)(dest + stage_offset), len);
84         return (len);
85 }
86
87 ssize_t
88 efi_copyout(const vm_offset_t src, void *dest, const size_t len)
89 {
90
91         /* XXX: Callers do not check for failure. */
92         if (src + stage_offset + len > staging_end) {
93                 errno = ENOMEM;
94                 return (-1);
95         }
96         bcopy((void *)(src + stage_offset), dest, len);
97         return (len);
98 }
99
100
101 ssize_t
102 efi_readin(const int fd, vm_offset_t dest, const size_t len)
103 {
104
105         if (dest + stage_offset + len > staging_end) {
106                 errno = ENOMEM;
107                 return (-1);
108         }
109         return (read(fd, (void *)(dest + stage_offset), len));
110 }
111
112 void
113 efi_copy_finish(void)
114 {
115         uint64_t        *src, *dst, *last;
116
117         src = (uint64_t *)staging;
118         dst = (uint64_t *)(staging - stage_offset);
119         last = (uint64_t *)staging_end;
120
121         while (src < last)
122                 *dst++ = *src++;
123 }