summaryrefslogtreecommitdiff
path: root/sys/kern/exec_elf64.c
blob: 4dbc3aa84fef9eb2470ce708241face17141741c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
 * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of Hyra nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/elf.h>
#include <sys/exec.h>
#include <sys/param.h>
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/errno.h>
#include <vm/pmap.h>
#include <vm/physmem.h>
#include <vm/dynalloc.h>
#include <vm/vm.h>
#include <vm/map.h>
#include <string.h>
#include <machine/pcb.h>

#define PHDR(HDRP, IDX) \
    (void *)((uintptr_t)HDRP + (HDRP)->e_phoff + (HDRP->e_phentsize * IDX))

struct elf_file {
    char *data;
    size_t size;
};

/*
 * Load the file and give back an "elf_file"
 * structure.
 */
static int
elf_get_file(const char *pathname, struct elf_file *res)
{
    struct vnode *vp = NULL;
    struct nameidata nd;
    struct vattr vattr;
    struct vop_getattr_args getattr_args;
    struct sio_txn read_txn;
    int status = 0;

    nd.path = pathname;
    nd.flags = 0;

    if (res == NULL)
        return -EINVAL;
    if ((status = namei(&nd)) != 0)
        return status;

    vp = nd.vp;

    getattr_args.res = &vattr;
    getattr_args.vp = vp;
    status = vfs_vop_getattr(vp, &getattr_args);
    if (status != 0)
        goto done;

    /* Can we use the size field? */
    if (vattr.size == VNOVAL) {
        status = -EIO;
        goto done;
    }

    res->size = vattr.size;
    res->data = dynalloc(sizeof(char) * res->size);
    if (res->data == NULL) {
        status = -ENOMEM;
        goto done;
    }

    /* Read data into our buffer */
    read_txn.buf = res->data;
    read_txn.len = res->size;
    read_txn.offset = 0;
    vfs_vop_read(vp, &read_txn);

done:
    if (vp != NULL) {
        vfs_release_vnode(nd.vp);
    }
    return status;
}

/*
 * Verify the validity of the ELF header.
 * Returns 0 on success.
 */
static int
elf64_verify(Elf64_Ehdr *hdr)
{
    const char *mag = &hdr->e_ident[EI_MAG0];

    if (memcmp(mag, ELFMAG, SELFMAG) != 0) {
        /* Bad magic */
        return -ENOEXEC;
    }

    if (hdr->e_ident[EI_OSABI] != ELFOSABI_SYSV) {
        /* ABI used is not System V */
        return -ENOEXEC;
    }

    if (hdr->e_ident[EI_DATA] != ELFDATA2LSB) {
        /* Not little-endian */
        return -ENOEXEC;
    }

    if (hdr->e_ident[EI_CLASS] != ELFCLASS64) {
        /* Not 64-bits */
        return -ENOEXEC;
    }

    if (hdr->e_type != ET_EXEC) {
        /* Not executable */
        return -ENOEXEC;
    }

    if (hdr->e_phnum > MAX_PHDRS) {
        /* Too many program headers */
        return -ENOEXEC;
    }

    return 0;
}

void
elf_unload(struct proc *td, struct exec_prog *prog)
{
    size_t map_len;
    struct pcb *pcbp = &td->pcb;
    struct auxval auxval = prog->auxval;
    struct exec_range *loadmap = prog->loadmap;

    for (size_t i = 0; i < auxval.at_phnum; ++i) {
        map_len = (loadmap[i].end - loadmap[i].start);
        vm_unmap(pcbp->addrsp, loadmap[i].start, map_len);
        vm_free_frame(loadmap[i].start, map_len / DEFAULT_PAGESIZE);
    }
}

int
elf64_load(const char *pathname, struct proc *td, struct exec_prog *prog)
{
    vm_prot_t prot = (PROT_READ | PROT_USER);
    Elf64_Ehdr *hdr;
    Elf64_Phdr *phdr;
    paddr_t physmem;
    off_t misalign;
    void *tmp;
    size_t page_count, map_len;
    struct elf_file file;
    struct pcb *pcbp;
    struct exec_range loadmap[MAX_PHDRS];
    struct auxval *auxvalp;
    size_t loadmap_idx = 0;
    int status = 0;

    if ((status = elf_get_file(pathname, &file)) != 0)
        return status;

    hdr = (Elf64_Ehdr *)file.data;
    if ((status = elf64_verify(hdr)) != 0)
        goto done;

    pcbp = &td->pcb;

    /* Load program headers */
    for (size_t i = 0; i < hdr->e_phnum; ++i) {
        phdr = PHDR(hdr, i);
        switch (phdr->p_type) {
        case PT_LOAD:
            if (ISSET(phdr->p_flags, PF_W))
                prot |= PROT_WRITE;
            if (ISSET(phdr->p_flags, PF_X))
                prot |= PROT_EXEC;

            misalign = phdr->p_vaddr & (DEFAULT_PAGESIZE - 1);
            map_len = ALIGN_UP(phdr->p_memsz + misalign, DEFAULT_PAGESIZE);
            page_count = map_len / DEFAULT_PAGESIZE;

            /* Try to allocate page frames */
            physmem = vm_alloc_frame(page_count);
            if (physmem == 0) {
                status = -ENOMEM;
                break;
            }

            status = vm_map(pcbp->addrsp, phdr->p_vaddr, physmem,
                prot, map_len);

            if (status != 0) {
                break;
            }

            tmp = (void *)((uintptr_t)hdr + phdr->p_offset);
            memcpy(PHYS_TO_VIRT(physmem), tmp, phdr->p_filesz);

            loadmap[loadmap_idx].start = physmem;
            loadmap[loadmap_idx].end = physmem + map_len;
            loadmap[loadmap_idx].vbase = phdr->p_vaddr;
        }
    }

    memcpy(prog->loadmap, loadmap, sizeof(loadmap));
    auxvalp = &prog->auxval;
    auxvalp->at_entry = hdr->e_entry;
    auxvalp->at_phent = hdr->e_phentsize;
    auxvalp->at_phnum = hdr->e_phnum;

    /* Did program header loading fail? */
    if (status != 0) {
        elf_unload(td, prog);
        goto done;
    }

done:
    dynfree(file.data);
    return status;
}