forked from chris-se/tiny-initramfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fstab.c
114 lines (99 loc) · 3.1 KB
/
fstab.c
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
/*
* tiny_initramfs - Minimalistic initramfs implementation
* Copyright (C) 2016 Christian Seiler <[email protected]>
*
* io.c: I/O helper functions
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include "tiny_initramfs.h"
typedef struct fstab_find_fs_data {
const char *dest;
fstab_info *info;
int found;
} fstab_find_fs_data;
static int process_fstab_entry(fstab_find_fs_data *data, const char *line, int line_is_incomplete);
int fstab_find_fs(const char *dest, fstab_info *info)
{
int r;
fstab_find_fs_data data = { dest, info, 0 };
r = traverse_file_by_line(TARGET_DIRECTORY FSTAB_FILENAME, (traverse_line_t)process_fstab_entry, &data);
if (r < 0)
return r;
if (!data.found)
return -ENOENT;
return 0;
}
int process_fstab_entry(fstab_find_fs_data *data, const char *orig_line, int line_is_incomplete)
{
char *saveptr;
char *token;
int had_nws, i;
char line[MAX_LINE_LEN] = { 0 };
char *fields[6] = { 0 };
/* more than MAX_LINE_LEN in fstab? just ignore it */
if (line_is_incomplete)
return 0;
/* ignore comments and empty lines */
if (!orig_line || !*orig_line || *orig_line == '#')
return 0;
/* ignore whitespace-only lines */
had_nws = 0;
for (token = (char *)orig_line; *token; token++) {
if (*token != ' ' && *token != '\t') {
had_nws = 1;
break;
}
}
if (!had_nws)
return 0;
set_buf(line, MAX_LINE_LEN, orig_line, NULL);
i = 0;
for (token = strtok_r(line, " \t", &saveptr); token != NULL; token = strtok_r(NULL, " \t", &saveptr)) {
if (i < 6) {
fields[i] = token;
}
i++;
}
if (i != 6)
return 0;
/* we are only interested in /usr */
if (strcmp(fields[1], data->dest) != 0)
return 0;
if (
#ifdef ENABLE_NFS4
strcmp(fields[2], "nfs") != 0 && strcmp(fields[2], "nfs4") != 0
#else
1
#endif
) {
if (!is_valid_device_name(fields[0], NULL, NULL, NULL, NULL))
return -ENODEV;
}
/* NOTE: for the /usr use case this is sufficient, but in general
* one needs to de-escape the source and dest fields, see e.g.
* the fstab-decode utility.
*/
set_buf(data->info->source, MAX_PATH_LEN, fields[0], NULL);
set_buf(data->info->dest, MAX_PATH_LEN, fields[1], NULL);
set_buf(data->info->type, MAX_PATH_LEN, fields[2], NULL);
set_buf(data->info->options, MAX_LINE_LEN, fields[3], NULL);
data->info->dump = strtoul(fields[4], NULL, 10);
data->info->pass = strtoul(fields[5], NULL, 10);
data->found = 1;
return 1;
}