base-filesystem.c revision 6dc2852c643df4aa2580d42fc2d268bea0c5f57b
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2014 Kay Sievers
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include "base-filesystem.h"
#include "log.h"
#include "macro.h"
#include "strv.h"
#include "util.h"
#include "label.h"
#include "mkdir.h"
typedef struct BaseFilesystem {
const char *dir;
const char *target;
const char *exists;
static const BaseFilesystem table[] = {
#if defined(__i386__) || defined(__x86_64__)
{ "lib64", 0, "usr/lib/x86_64-linux-gnu\0"
"usr/lib64\0", "ld-linux-x86-64.so.2" },
#endif
};
int base_filesystem_create(const char *root) {
unsigned i;
int r;
if (fd < 0) {
log_error("Failed to open root file system: %m");
return -errno;
}
for (i = 0; i < ELEMENTSOF(table); i ++) {
continue;
/* check if one of the targets exists */
continue;
/* check if a specific file exists at the target path */
_cleanup_free_ char *p = NULL;
if (!p)
return log_oom();
continue;
}
target = s;
break;
}
if (!target)
continue;
return -errno;
}
continue;
}
RUN_WITH_UMASK(0000)
return -errno;
}
}
return 0;
}