From: Asias He Date: Wed, 22 Aug 2012 12:48:17 +0000 (+0800) Subject: kvm tools: Make 'lkvm setup' work outside kernel/tools/kvm dir X-Git-Tag: next-20120824~7^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=94fbe88d2f283bf5c2b821fa50d9068f61af3bc0;p=karo-tx-linux.git kvm tools: Make 'lkvm setup' work outside kernel/tools/kvm dir Generate ~/.lkvm/$guest/virt/etc/passwd ~/.lkvm/$guest/virt/init on the fly. Signed-off-by: Asias He Signed-off-by: Pekka Enberg --- diff --git a/tools/kvm/builtin-setup.c b/tools/kvm/builtin-setup.c index 232aa6018985..11aa676a3b52 100644 --- a/tools/kvm/builtin-setup.c +++ b/tools/kvm/builtin-setup.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include @@ -19,6 +20,9 @@ #include #include +extern char _binary_guest_init_start; +extern char _binary_guest_init_size; + static const char *instance_name; static const char * const setup_usage[] = { @@ -126,19 +130,44 @@ static const char *guestfs_symlinks[] = { static int copy_init(const char *guestfs_name) { char path[PATH_MAX]; + size_t size; + int fd, ret; + char *data; + size = (size_t)&_binary_guest_init_size; + data = (char *)&_binary_guest_init_start; snprintf(path, PATH_MAX, "%s%s/virt/init", kvm__get_dir(), guestfs_name); + remove(path); + fd = open(path, O_CREAT | O_WRONLY, 0755); + if (fd < 0) + die("Fail to setup %s", path); + ret = xwrite(fd, data, size); + if (ret < 0) + die("Fail to setup %s", path); + close(fd); - return copy_file("guest/init", path); + return 0; } static int copy_passwd(const char *guestfs_name) { char path[PATH_MAX]; + FILE *file; + int ret; snprintf(path, PATH_MAX, "%s%s/etc/passwd", kvm__get_dir(), guestfs_name); - return copy_file("guest/passwd", path); + file = fopen(path, "w"); + if (!file) + return -1; + + ret = fprintf(file, "root:x:0:0:root:/root:/bin/sh\n"); + if (ret < 0) + return ret; + + fclose(file); + + return 0; } static int make_guestfs_symlink(const char *guestfs_name, const char *path) diff --git a/tools/kvm/guest/passwd b/tools/kvm/guest/passwd deleted file mode 100644 index eb85a552ad2a..000000000000 --- a/tools/kvm/guest/passwd +++ /dev/null @@ -1 +0,0 @@ -root:x:0:0:root:/root:/bin/sh