started own cowfs implementation
This commit is contained in:
+2
-2
@@ -1,3 +1,3 @@
|
||||
|
||||
dumm: dumm.c dumm.h guest.c guest.h iface.c iface.h bridge.c bridge.h mconsole.c mconsole.h main.c
|
||||
gcc -o dumm dumm.c guest.c iface.c bridge.c mconsole.c main.c -lreadline -lbridge -lstrongswan -I../libstrongswan/ -g -O2 -Wall -Wno-format -Wno-strict-aliasing
|
||||
dumm: dumm.c dumm.h guest.c guest.h iface.c iface.h bridge.c bridge.h mconsole.c mconsole.h cowfs.h cowfs.c main.c
|
||||
gcc -o dumm dumm.c guest.c iface.c bridge.c mconsole.c cowfs.c main.c `pkg-config fuse --cflags --libs` -lreadline -lbridge -lpthread -lstrongswan -I../libstrongswan/ -g -O2 -Wall -Wno-format -Wno-strict-aliasing
|
||||
|
||||
@@ -0,0 +1,413 @@
|
||||
/*
|
||||
* Copyright (C) 2007 Martin Willi
|
||||
* Hochschule fuer Technik Rapperswil
|
||||
* Copyright (C) 2001-2007 Miklos Szeredi
|
||||
*
|
||||
* Based on example shipped with FUSE.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
|
||||
*
|
||||
* This program 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.
|
||||
*/
|
||||
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
||||
#include <fuse.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
#include <sys/time.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include "cowfs.h"
|
||||
|
||||
#include <library.h>
|
||||
#include <debug.h>
|
||||
|
||||
typedef struct private_cowfs_t private_cowfs_t;
|
||||
|
||||
struct private_cowfs_t {
|
||||
/** public cowfs interface */
|
||||
cowfs_t public;
|
||||
/** fuse channel to mountpoint */
|
||||
struct fuse_chan *chan;
|
||||
/** fuse handle */
|
||||
struct fuse *fuse;
|
||||
/** mountpoint of cowfs FUSE */
|
||||
char *mount;
|
||||
/** read only master filesystem */
|
||||
char *master;
|
||||
/** copy on write overlay to master */
|
||||
char *host;
|
||||
/** optional scenario COW overlay */
|
||||
char *scenario;
|
||||
/** thread processing FUSE */
|
||||
pthread_t thread;
|
||||
};
|
||||
|
||||
|
||||
static int cowfs_getattr(const char *path, struct stat *stbuf)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = lstat(path, stbuf);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_access(const char *path, int mask)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = access(path, mask);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_readlink(const char *path, char *buf, size_t size)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = readlink(path, buf, size - 1);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
buf[res] = '\0';
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int cowfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
|
||||
off_t offset, struct fuse_file_info *fi)
|
||||
{
|
||||
DIR *dp;
|
||||
struct dirent *de;
|
||||
|
||||
(void) offset;
|
||||
(void) fi;
|
||||
|
||||
dp = opendir(path);
|
||||
if (dp == NULL)
|
||||
return -errno;
|
||||
|
||||
while ((de = readdir(dp)) != NULL) {
|
||||
struct stat st;
|
||||
memset(&st, 0, sizeof(st));
|
||||
st.st_ino = de->d_ino;
|
||||
st.st_mode = de->d_type << 12;
|
||||
if (filler(buf, de->d_name, &st, 0))
|
||||
break;
|
||||
}
|
||||
|
||||
closedir(dp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_mknod(const char *path, mode_t mode, dev_t rdev)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = mknod(path, mode, rdev);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_mkdir(const char *path, mode_t mode)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = mkdir(path, mode);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_unlink(const char *path)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = unlink(path);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_rmdir(const char *path)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = rmdir(path);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_symlink(const char *from, const char *to)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = symlink(from, to);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_rename(const char *from, const char *to)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = rename(from, to);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_link(const char *from, const char *to)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = link(from, to);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_chmod(const char *path, mode_t mode)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = chmod(path, mode);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_chown(const char *path, uid_t uid, gid_t gid)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = lchown(path, uid, gid);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_truncate(const char *path, off_t size)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = truncate(path, size);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_utimens(const char *path, const struct timespec ts[2])
|
||||
{
|
||||
int res;
|
||||
struct timeval tv[2];
|
||||
|
||||
tv[0].tv_sec = ts[0].tv_sec;
|
||||
tv[0].tv_usec = ts[0].tv_nsec / 1000;
|
||||
tv[1].tv_sec = ts[1].tv_sec;
|
||||
tv[1].tv_usec = ts[1].tv_nsec / 1000;
|
||||
|
||||
res = utimes(path, tv);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_open(const char *path, struct fuse_file_info *fi)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = open(path, fi->flags);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
close(res);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cowfs_read(const char *path, char *buf, size_t size, off_t offset,
|
||||
struct fuse_file_info *fi)
|
||||
{
|
||||
int fd;
|
||||
int res;
|
||||
|
||||
(void) fi;
|
||||
fd = open(path, O_RDONLY);
|
||||
if (fd == -1)
|
||||
return -errno;
|
||||
|
||||
res = pread(fd, buf, size, offset);
|
||||
if (res == -1)
|
||||
res = -errno;
|
||||
|
||||
close(fd);
|
||||
return res;
|
||||
}
|
||||
|
||||
static int cowfs_write(const char *path, const char *buf, size_t size,
|
||||
off_t offset, struct fuse_file_info *fi)
|
||||
{
|
||||
int fd;
|
||||
int res;
|
||||
|
||||
(void) fi;
|
||||
fd = open(path, O_WRONLY);
|
||||
if (fd == -1)
|
||||
return -errno;
|
||||
|
||||
res = pwrite(fd, buf, size, offset);
|
||||
if (res == -1)
|
||||
res = -errno;
|
||||
|
||||
close(fd);
|
||||
return res;
|
||||
}
|
||||
|
||||
static int cowfs_statfs(const char *path, struct statvfs *stbuf)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = statvfs(path, stbuf);
|
||||
if (res == -1)
|
||||
return -errno;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *cowfs_init(struct fuse_conn_info *conn)
|
||||
{
|
||||
struct fuse_context *ctx;
|
||||
|
||||
ctx = fuse_get_context();
|
||||
|
||||
return ctx->private_data;
|
||||
}
|
||||
|
||||
static struct fuse_operations cowfs_operations = {
|
||||
.getattr = cowfs_getattr,
|
||||
.access = cowfs_access,
|
||||
.readlink = cowfs_readlink,
|
||||
.readdir = cowfs_readdir,
|
||||
.mknod = cowfs_mknod,
|
||||
.mkdir = cowfs_mkdir,
|
||||
.symlink = cowfs_symlink,
|
||||
.unlink = cowfs_unlink,
|
||||
.rmdir = cowfs_rmdir,
|
||||
.rename = cowfs_rename,
|
||||
.link = cowfs_link,
|
||||
.chmod = cowfs_chmod,
|
||||
.chown = cowfs_chown,
|
||||
.truncate = cowfs_truncate,
|
||||
.utimens = cowfs_utimens,
|
||||
.open = cowfs_open,
|
||||
.read = cowfs_read,
|
||||
.write = cowfs_write,
|
||||
.statfs = cowfs_statfs,
|
||||
.init = cowfs_init,
|
||||
};
|
||||
|
||||
/**
|
||||
* Implementation of cowfs_t.set_scenario.
|
||||
*/
|
||||
static void set_scenario(private_cowfs_t *this, char *path)
|
||||
{
|
||||
free(this->scenario);
|
||||
this->scenario = path ? strdup(path) : NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* stop, umount and destroy a cowfs FUSE filesystem
|
||||
*/
|
||||
static void destroy(private_cowfs_t *this)
|
||||
{
|
||||
fuse_exit(this->fuse);
|
||||
pthread_join(this->thread, NULL);
|
||||
fuse_unmount(this->mount, this->chan);
|
||||
fuse_destroy(this->fuse);
|
||||
free(this->mount);
|
||||
free(this->master);
|
||||
free(this->host);
|
||||
free(this->scenario);
|
||||
free(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* creates a new cowfs fuse instance
|
||||
*/
|
||||
cowfs_t *cowfs_create(char *master, char *host, char *mount)
|
||||
{
|
||||
struct fuse_args args = {0, NULL, 0};
|
||||
private_cowfs_t *this = malloc_thing(private_cowfs_t);
|
||||
|
||||
this->public.set_scenario = (void(*)(cowfs_t*, char *path))set_scenario;
|
||||
this->public.destroy = (void(*)(cowfs_t*))destroy;
|
||||
|
||||
this->chan = fuse_mount(mount, &args);
|
||||
if (this->chan == NULL)
|
||||
{
|
||||
DBG1("mounting cowfs FUSE on '%s' failed", mount);
|
||||
free(this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
this->fuse = fuse_new(this->chan, &args, &cowfs_operations,
|
||||
sizeof(cowfs_operations), this);
|
||||
if (this->fuse == NULL)
|
||||
{
|
||||
DBG1("creating cowfs FUSE handle failed");
|
||||
fuse_unmount(mount, this->chan);
|
||||
free(this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
this->mount = strdup(mount);
|
||||
this->master = strdup(master);
|
||||
this->host = strdup(host);
|
||||
this->scenario = NULL;
|
||||
|
||||
if (pthread_create(&this->thread, NULL, (void*)fuse_loop_mt, this->fuse) != 0)
|
||||
{
|
||||
DBG1("creating thread to handle FUSE failed");
|
||||
fuse_unmount(mount, this->chan);
|
||||
free(this->mount);
|
||||
free(this->master);
|
||||
free(this->host);
|
||||
free(this);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return &this->public;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (C) 2007 Martin Willi
|
||||
* Hochschule fuer Technik Rapperswil
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
|
||||
*
|
||||
* This program 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.
|
||||
*/
|
||||
|
||||
#ifndef COWFS_H
|
||||
#define COWFS_H
|
||||
|
||||
|
||||
typedef struct cowfs_t cowfs_t;
|
||||
|
||||
/**
|
||||
* @brief cowfs - Copy on write FUSE filesystem.
|
||||
*
|
||||
*/
|
||||
struct cowfs_t {
|
||||
|
||||
/**
|
||||
* @brief Set the scenario copy on write overlay.
|
||||
*
|
||||
* @param path path of the overlay
|
||||
*/
|
||||
void (*set_scenario)(cowfs_t *this, char *path);
|
||||
|
||||
/**
|
||||
* @brief Stop, umount and destroy a cowfs FUSE filesystem.
|
||||
*/
|
||||
void (*destroy) (cowfs_t *this);
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Mount a cowfs FUSE filesystem.
|
||||
*
|
||||
* @param master read only master file system directory
|
||||
* @param host copy on write host directory
|
||||
* @param mount mountpoint where union is mounted
|
||||
* @return instance, or NULL if FUSE initalization failed
|
||||
*/
|
||||
cowfs_t *cowfs_create(char *master, char *host, char *mount);
|
||||
|
||||
#endif /* COWFS_H */
|
||||
|
||||
+21
-27
@@ -31,6 +31,7 @@
|
||||
#include "dumm.h"
|
||||
#include "guest.h"
|
||||
#include "mconsole.h"
|
||||
#include "cowfs.h"
|
||||
|
||||
#define PERME (S_IRWXU | S_IRWXG)
|
||||
#define PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP)
|
||||
@@ -54,8 +55,8 @@ struct private_guest_t {
|
||||
guest_state_t state;
|
||||
/** log file for console 0 */
|
||||
int bootlog;
|
||||
/** has the unionfs been mounted */
|
||||
bool mounted;
|
||||
/** FUSE cowfs instance */
|
||||
cowfs_t *cowfs;
|
||||
/** mconsole to control running UML */
|
||||
mconsole_t *mconsole;
|
||||
/** list of interfaces attached to the guest */
|
||||
@@ -259,21 +260,13 @@ static void sigchild(private_guest_t *this)
|
||||
*/
|
||||
static bool umount_unionfs(private_guest_t *this)
|
||||
{
|
||||
char cmd[128];
|
||||
size_t len;
|
||||
|
||||
if (this->mounted)
|
||||
if (this->cowfs)
|
||||
{
|
||||
len = snprintf(cmd, sizeof(cmd), "fusermount -u %s/%s",
|
||||
this->dirname, UNION_DIR);
|
||||
if (len < 0 || len >= sizeof(cmd) || system(cmd) != 0)
|
||||
{
|
||||
DBG1("unmounting guest unionfs failed");
|
||||
return FALSE;
|
||||
}
|
||||
this->mounted = FALSE;
|
||||
this->cowfs->destroy(this->cowfs);
|
||||
this->cowfs = NULL;
|
||||
return TRUE;
|
||||
}
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -281,22 +274,23 @@ static bool umount_unionfs(private_guest_t *this)
|
||||
*/
|
||||
static bool mount_unionfs(private_guest_t *this)
|
||||
{
|
||||
char cmd[256];
|
||||
size_t len;
|
||||
char master[PATH_MAX];
|
||||
char diff[PATH_MAX];
|
||||
char mount[PATH_MAX];
|
||||
|
||||
if (!this->mounted)
|
||||
snprintf(master, sizeof(master), "%s/%s", this->dirname, MASTER_DIR);
|
||||
snprintf(diff, sizeof(diff), "%s/%s", this->dirname, DIFF_DIR);
|
||||
snprintf(mount, sizeof(mount), "%s/%s", this->dirname, UNION_DIR);
|
||||
|
||||
if (this->cowfs == NULL)
|
||||
{
|
||||
len = snprintf(cmd, sizeof(cmd), "unionfs %s/%s:%s/%s %s/%s",
|
||||
this->dirname, MASTER_DIR, this->dirname, DIFF_DIR,
|
||||
this->dirname, UNION_DIR);
|
||||
if (len < 0 || len >= sizeof(cmd) || system(cmd) != 0)
|
||||
this->cowfs = cowfs_create(master, diff, mount);
|
||||
if (this->cowfs)
|
||||
{
|
||||
DBG1("mounting guest unionfs failed");
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
this->mounted = TRUE;
|
||||
}
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -423,7 +417,7 @@ static private_guest_t *guest_create_generic(char *parent, char *name,
|
||||
this->mem = 0;
|
||||
this->bootlog = open_bootlog(this);
|
||||
this->name = strdup(name);
|
||||
this->mounted = FALSE;
|
||||
this->cowfs = NULL;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user