base-filesystem.c revision e1ae9755ab70a58b8fb84973e084296b1d2df3d5
/*-*- 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;
static const BaseFilesystem table[] = {
#if defined(__i386__) || defined(__x86_64__)
{ "lib64", 0, "usr/lib/x86_64-linux-gnu\0usr/lib64" },
#endif
};
int base_filesystem_create(const char *root) {
unsigned i;
int r;
if (fd < 0)
return -errno;
for (i = 0; i < ELEMENTSOF(table); i ++) {
const char *s;
/* check if one of the targets exists */
continue;
target = s;
break;
}
if (!target)
continue;
return -errno;
}
continue;
}
RUN_WITH_UMASK(0000)
return -errno;
}
}
return 0;
}