mount-setup.c revision 670802d4b1d16c3785a695bea6e13b8bf8c8a822
/*-*- Mode: C; c-basic-offset: 8 -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <libgen.h>
#include <assert.h>
#include "mount-setup.h"
#include "log.h"
#include "macro.h"
#include "util.h"
typedef struct MountPoint {
const char *what;
const char *where;
const char *type;
const char *options;
unsigned long flags;
bool fatal;
} MountPoint;
static const MountPoint mount_table[] = {
};
bool mount_point_is_api(const char *path) {
unsigned i;
/* Checks if this mount point is considered "API", and hence
* should be ignored */
for (i = 0; i < ELEMENTSOF(mount_table); i ++)
return true;
}
static int mount_one(const MountPoint *p) {
int r;
assert(p);
if ((r = path_is_mount_point(p->where)) < 0)
return r;
if (r > 0)
return 0;
/* The access mode here doesn't really matter too much, since
* the mounted file system will take precedence anyway. */
log_debug("Mounting %s to %s of type %s with options %s.",
p->what,
p->where,
p->type,
p->where,
p->type,
p->flags,
p->options) < 0) {
}
return 0;
}
static int mount_cgroup_controllers(void) {
int r;
FILE *f;
char buf [256];
/* Mount all available cgroup controllers that are built into the kernel. */
return -ENOENT;
/* Ignore the header line */
for (;;) {
MountPoint p;
char *controller, *where;
if (feof(f))
break;
r = -EIO;
goto finish;
}
r = -ENOMEM;
goto finish;
}
zero(p);
p.what = "cgroup";
p.type = "cgroup";
p.options = controller;
p.fatal = false;
r = mount_one(&p);
if (r < 0)
goto finish;
}
r = 0;
fclose(f);
return r;
}
int mount_setup(void) {
int r;
unsigned i;
for (i = 0; i < ELEMENTSOF(mount_table); i ++)
if ((r = mount_one(mount_table+i)) < 0)
return r;
return mount_cgroup_controllers();
}