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
|
/*
* Copyright 2005-2020 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*
* Copyright 2005-2008 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2014 Mike Frysinger - <vapier@gentoo.org>
* Copyright 2018- Fabian Groffen - <grobian@gentoo.org>
*/
#include "main.h"
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include "contents.h"
/*
* Parse a line of CONTENTS file and provide access to the individual fields
*/
contents_entry *
contents_parse_line(char *line)
{
static contents_entry e;
char *p;
if (line == NULL || *line == '\0' || *line == '\n')
return NULL;
/* chop trailing newline */
p = &line[strlen(line) - 1];
if (*p == '\n')
*p = '\0';
memset(&e, 0x00, sizeof(e));
e._data = line;
if (!strncmp(e._data, "obj ", 4))
e.type = CONTENTS_OBJ;
else if (!strncmp(e._data, "dir ", 4))
e.type = CONTENTS_DIR;
else if (!strncmp(e._data, "sym ", 4))
e.type = CONTENTS_SYM;
else
return NULL;
e.name = e._data + 4;
switch (e.type) {
/* dir /bin */
case CONTENTS_DIR:
break;
/* obj /bin/bash 62ed51c8b23866777552643ec57614b0 1120707577 */
case CONTENTS_OBJ:
if ((e.mtime_str = strrchr(e.name, ' ')) == NULL)
return NULL;
*e.mtime_str++ = '\0';
if ((e.digest = strrchr(e.name, ' ')) == NULL)
return NULL;
*e.digest++ = '\0';
break;
/* sym /bin/sh -> bash 1120707577 */
case CONTENTS_SYM:
if ((e.mtime_str = strrchr(e.name, ' ')) == NULL)
return NULL;
*e.mtime_str++ = '\0';
if ((e.sym_target = strstr(e.name, " -> ")) == NULL)
return NULL;
*e.sym_target = '\0';
e.sym_target += 4;
break;
}
if (e.mtime_str) {
e.mtime = strtol(e.mtime_str, NULL, 10);
if (e.mtime == LONG_MAX) {
e.mtime = 0;
e.mtime_str = NULL;
}
}
return &e;
}
|