blob: 6703b667a7bdb12fa73d97d08f6e9559a6ca8b02 (
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
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
#include <string.h>
#include "util.h"
int canonicalize_name(char *filename)
{
char *ptr = filename;
int i;
while (*ptr == '/')
++ptr;
if (ptr != filename) {
memmove(filename, ptr, strlen(ptr) + 1);
ptr = filename;
}
while (*ptr != '\0') {
if (*ptr == '/') {
for (i = 0; ptr[i] == '/'; ++i)
;
if (i > 1)
memmove(ptr + 1, ptr + i, strlen(ptr + i) + 1);
}
if (ptr[0] == '/' && ptr[1] == '\0') {
*ptr = '\0';
break;
}
++ptr;
}
ptr = filename;
while (*ptr != '\0') {
if (ptr[0] == '.') {
if (ptr[1] == '/' || ptr[1] == '\0')
return -1;
if (ptr[1] == '.' &&
(ptr[2] == '/' || ptr[2] == '\0')) {
return -1;
}
}
while (*ptr != '\0' && *ptr != '/')
++ptr;
if (*ptr == '/')
++ptr;
}
return 0;
}
|