aboutsummaryrefslogtreecommitdiffstats
path: root/old/initrd.c
blob: 8b0c80b9c7d6ead945fb12aae024cb5bc486af55 (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
/**
 * @file initrd.c
 * Initrd image support
 *
 * Copyright (C) 2018 Clyne Sullivan
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

/**
 * The format of the initrd file is custom; made with the 'rba' utility.
 */

#include <initrd.h>
#include <heap.h>
#include <string.h>

extern uint8_t _binary_initrd_img_start[];
extern uint8_t _binary_initrd_img_size[];

static const uint8_t *initrd_start = (uint8_t *)_binary_initrd_img_start;
static const uint32_t initrd_size = (uint32_t)_binary_initrd_img_size;

uint8_t initrd_validate(void)
{
	return 1; // TODO maybe add header/signature to archiver?
}

char *initrd_getfile(uint32_t offset)
{
	char *ptr = initrd_start;
	for (uint32_t i = 0; i < offset; i++) {
		uint32_t len = *((uint32_t *)ptr);
		uint32_t datalen = *((uint32_t *)(ptr + 4 + len));
		ptr += len + datalen + 8;
		if (ptr >= (char *)(initrd_start + initrd_size))
			return 0;
	}

	return ptr;
}

char *initrd_getname(uint32_t offset)
{
	char *file = initrd_getfile(offset);
	if (file == 0)
		return 0;
	uint32_t len = *((uint32_t *)file);
	char *buf = malloc(len + 1);
	strncpy(buf, file + 4, len);
	buf[len] = '\0';
	return buf;
}

char *initrd_readfile(const char *name)
{
	char *ptr;
	for (uint32_t i = 0; ptr = initrd_getfile(i), ptr != 0; i++) {
		uint32_t len = *((uint32_t *)ptr);
		if (!strncmp(name, ptr + 4, len))
			return ptr + len + 8;
	}
	return 0;
}

uint32_t initrd_filesize(const char *name)
{
	char *ptr;
	for (uint32_t i = 0; ptr = initrd_getfile(i), ptr != 0; i++) {
		uint32_t len = *((uint32_t *)ptr);
		if (!strncmp(name, ptr + 4, len))
			return *((uint32_t *)(ptr + len + 4));
	}
	return 0;
}