fstab-generator.c revision e0952d9d021234e79f3a70f33a9e5d201872a417
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2012 Lennart Poettering
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 <stdio.h>
#include <mntent.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include "log.h"
#include "util.h"
#include "unit-name.h"
#include "path-util.h"
#include "fstab-util.h"
#include "mount-setup.h"
#include "special.h"
#include "mkdir.h"
#include "generator.h"
#include "strv.h"
#include "virt.h"
static const char *arg_dest = "/tmp";
static bool arg_fstab_enabled = true;
static char *arg_root_what = NULL;
static char *arg_root_fstype = NULL;
static char *arg_root_options = NULL;
static int arg_root_rw = -1;
static char *arg_usr_what = NULL;
static char *arg_usr_fstype = NULL;
static char *arg_usr_options = NULL;
static int add_swap(
const char *what,
bool noauto,
bool nofail) {
int r, pri = -1;
const char *opts;
return 0;
}
if (detect_container(NULL) > 0) {
return 0;
}
if (r < 0) {
log_error_errno(r, "Failed to parse priority, ignoring: %m");
/* Remove invalid pri field */
if (r < 0)
return log_error_errno(r, "Failed to parse options: %m");
}
if (!name)
return log_oom();
if (!unit)
return log_oom();
if (!f) {
log_error("Failed to create swap unit file %s, as it already exists. Duplicate entry in /etc/fstab?", unit);
else
return -errno;
}
fprintf(f,
"# Automatically generated by systemd-fstab-generator\n\n"
"[Unit]\n"
"Documentation=man:fstab(5) man:systemd-fstab-generator(8)\n\n"
"[Swap]\n"
"What=%s\n",
what);
/* Note that we currently pass the priority field twice, once
* in Priority=, and once in Options= */
if (pri >= 0)
r = fflush_and_check(f);
if (r < 0)
/* use what as where, to have a nicer error message */
if (r < 0)
return r;
if (!noauto) {
if (!lnk)
return log_oom();
}
return 0;
}
}
}
static int add_mount(
const char *what,
const char *where,
const char *fstype,
const char *opts,
int passno,
bool noauto,
bool nofail,
bool automount,
const char *post,
const char *source) {
_cleanup_free_ char
int r;
return 0;
return 0;
}
if (mount_point_is_api(where) ||
return 0;
/* The root disk is not an option */
automount = false;
noauto = false;
nofail = false;
}
if (!name)
return log_oom();
if (!unit)
return log_oom();
if (!f) {
log_error("Failed to create mount unit file %s, as it already exists. Duplicate entry in /etc/fstab?", unit);
else
return -errno;
}
fprintf(f,
"# Automatically generated by systemd-fstab-generator\n\n"
"[Unit]\n"
"SourcePath=%s\n"
"Documentation=man:fstab(5) man:systemd-fstab-generator(8)\n",
source);
if (passno != 0) {
if (r < 0)
return r;
}
fprintf(f,
"\n"
"[Mount]\n"
"What=%s\n"
"Where=%s\n",
what,
where);
if (r < 0)
return r;
fflush(f);
if (ferror(f))
if (!lnk)
return log_oom();
}
if (automount) {
if (!automount_name)
return log_oom();
if (!automount_unit)
return log_oom();
fclose(f);
if (!f)
fprintf(f,
"# Automatically generated by systemd-fstab-generator\n\n"
"[Unit]\n"
"SourcePath=%s\n"
"Documentation=man:fstab(5) man:systemd-fstab-generator(8)\n",
source);
if (post)
fprintf(f,
"Before=%s\n",
post);
fprintf(f,
"[Automount]\n"
"Where=%s\n",
where);
fflush(f);
if (ferror(f))
if (!lnk)
return log_oom();
}
return 0;
}
static int parse_fstab(bool initrd) {
const char *fstab_path;
int r = 0;
if (!f) {
return 0;
return -errno;
}
int k;
continue;
if (!what)
return log_oom();
continue;
}
if (!where)
return log_oom();
log_debug("Found entry what=%s where=%s type=%s nofail=%s noauto=%s",
else {
bool automount;
const char *post;
"comment=systemd.automount\0"
"x-systemd.automount\0");
if (initrd)
else if (mount_in_initrd(me))
else if (mount_is_network(me))
else
me->mnt_passno,
post,
}
if (k < 0)
r = k;
}
return r;
}
static int add_root_mount(void) {
const char *opts;
if (isempty(arg_root_what)) {
log_debug("Could not find a root= entry on the kernel command line.");
return 0;
}
if (!path_is_absolute(what)) {
return 0;
}
if (!arg_root_options)
else if (arg_root_rw >= 0 ||
else
"/sysroot",
opts,
1,
false,
false,
false,
}
static int add_usr_mount(void) {
const char *opts;
return 0;
if (arg_root_what && !arg_usr_what) {
if (!arg_usr_what)
return log_oom();
}
if (arg_root_fstype && !arg_usr_fstype) {
if (!arg_usr_fstype)
return log_oom();
}
if (arg_root_options && !arg_usr_options) {
if (!arg_usr_options)
return log_oom();
}
if (!arg_usr_what)
return 0;
if (!path_is_absolute(what)) {
return -1;
}
if (!arg_usr_options)
else
opts,
1,
false,
false,
false,
}
int r;
/* root=, usr=, usrfstype= and roofstype= may occur more than once, the last
* instance should take precedence. In the case of multiple rootflags=
* or usrflags= the arguments should be concatenated */
r = parse_boolean(value);
if (r < 0)
else
arg_fstab_enabled = r;
return log_oom();
return log_oom();
char *o;
o = arg_root_options ?
if (!o)
return log_oom();
arg_root_options = o;
return log_oom();
return log_oom();
char *o;
o = arg_usr_options ?
if (!o)
return log_oom();
arg_usr_options = o;
arg_root_rw = true;
arg_root_rw = false;
return 0;
}
int r = 0;
log_error("This program takes three or no arguments.");
return EXIT_FAILURE;
}
if (argc > 1)
log_open();
umask(0022);
if (r < 0)
log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
/* Always honour root= and usr= in the kernel command line if we are in an initrd */
if (in_initrd()) {
r = add_root_mount();
if (r == 0)
r = add_usr_mount();
}
if (arg_fstab_enabled) {
int k;
k = parse_fstab(false);
if (k < 0)
r = k;
if (in_initrd()) {
k = parse_fstab(true);
if (k < 0)
r = k;
}
}
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}