1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2014 Kay Sievers
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
29 #include "base-filesystem.h"
37 typedef struct BaseFilesystem {
44 static const BaseFilesystem table[] = {
45 { "bin", 0, "usr/bin\0", NULL },
46 { "lib", 0, "usr/lib\0", NULL },
47 { "root", 0755, NULL, NULL },
48 { "sbin", 0, "usr/sbin\0", NULL },
49 #if defined(__i386__) || defined(__x86_64__)
50 { "lib64", 0, "usr/lib/x86_64-linux-gnu\0"
51 "usr/lib64\0", "ld-linux-x86-64.so.2" },
55 int base_filesystem_create(const char *root) {
56 _cleanup_close_ int fd = -1;
60 fd = open(root, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW);
64 for (i = 0; i < ELEMENTSOF(table); i ++) {
65 if (table[i].target) {
66 const char *target = NULL;
69 if (faccessat(fd, table[i].dir, F_OK, AT_SYMLINK_NOFOLLOW) >= 0)
72 /* check if one of the targets exists */
73 NULSTR_FOREACH(s, table[i].target) {
74 if (faccessat(fd, s, F_OK, AT_SYMLINK_NOFOLLOW) < 0)
77 /* check if a specific file exists at the target path */
78 if (table[i].exists) {
79 _cleanup_free_ char *p = NULL;
81 p = strjoin(s, "/", table[i].exists, NULL);
85 if (faccessat(fd, p, F_OK, AT_SYMLINK_NOFOLLOW) < 0)
96 r = symlinkat(target, fd, table[i].dir);
97 if (r < 0 && errno != EEXIST) {
98 log_error("Failed to create symlink at %s/%s: %m", root, table[i].dir);
105 r = mkdirat(fd, table[i].dir, table[i].mode);
106 if (r < 0 && errno != EEXIST) {
107 log_error("Failed to create directory at %s/%s: %m", root, table[i].dir);