blob: 9ed27a41ce97a014d6ee4f9294db432e3b3bbb9a (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
void
liberror_chdir_failed(const char *path)
{
const char *desc;
switch (errno) {
case EFAULT:
if (!path)
desc = "Path parameter is NULL";
else
desc = "Path parameter is an invalid pointer";
break;
case EACCES:
desc = "Search permission is denied for any component of the path";
break;
case ELOOP:
desc = "A symbolic link chain in the path too long or circular";
break;
case ENAMETOOLONG:
desc = "The canonical path or intermediate result in pathname resolution is too long";
break;
case ENOENT:
if (!*path)
desc = "Path parameter is the empty string";
else
desc = "A component of path does not name an existing directory";
break;
case ENOTDIR:
desc = "A component of path is not a directory";
break;
case ENOMEM:
desc = "Insufficient kernel memory was available";
break;
case EIO:
default:
desc = "";
break;
}
liberror_libc_set_error_one_file(desc, "chdir", "Directory file", -1, path);
}
int
liberror_chdir(const char *path)
{
if (!chdir(path))
return 0;
liberror_save_backtrace(NULL);
liberror_chdir_failed(path);
return -1;
}
|