提交 0766379d 编写于 作者: J Jes Sorensen 提交者: Blue Swirl

Move chroot handling to OS specific files.

Move chroot handling to OS specific files.
Signed-off-by: NJes Sorensen <Jes.Sorensen@redhat.com>
Acked-by: NJuan Quintela <quintela@redhat.com>
Acked-by: NRichard Henderson <rth@redhat.com>
Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 8847cfe8
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include "qemu-options.h" #include "qemu-options.h"
static struct passwd *user_pwd; static struct passwd *user_pwd;
static const char *chroot_dir;
void os_setup_early_signal_handling(void) void os_setup_early_signal_handling(void)
{ {
...@@ -156,6 +157,9 @@ void os_parse_cmd_args(int index, const char *optarg) ...@@ -156,6 +157,9 @@ void os_parse_cmd_args(int index, const char *optarg)
exit(1); exit(1);
} }
break; break;
case QEMU_OPTION_chroot:
chroot_dir = optarg;
break;
} }
return; return;
} }
...@@ -177,3 +181,18 @@ void os_change_process_uid(void) ...@@ -177,3 +181,18 @@ void os_change_process_uid(void)
} }
} }
} }
void os_change_root(void)
{
if (chroot_dir) {
if (chroot(chroot_dir) < 0) {
fprintf(stderr, "chroot failed\n");
exit(1);
}
if (chdir("/")) {
perror("not able to chdir to /");
exit(1);
}
}
}
...@@ -32,5 +32,6 @@ static inline void os_host_main_loop_wait(int *timeout) ...@@ -32,5 +32,6 @@ static inline void os_host_main_loop_wait(int *timeout)
void os_setup_signal_handling(void); void os_setup_signal_handling(void);
void os_change_process_uid(void); void os_change_process_uid(void);
void os_change_root(void);
#endif #endif
...@@ -44,5 +44,6 @@ void os_host_main_loop_wait(int *timeout); ...@@ -44,5 +44,6 @@ void os_host_main_loop_wait(int *timeout);
static inline void os_setup_signal_handling(void) {} static inline void os_setup_signal_handling(void) {}
static inline void os_change_process_uid(void) {} static inline void os_change_process_uid(void) {}
static inline void os_change_root(void) {}
#endif #endif
...@@ -2309,7 +2309,6 @@ int main(int argc, char **argv, char **envp) ...@@ -2309,7 +2309,6 @@ int main(int argc, char **argv, char **envp)
const char *incoming = NULL; const char *incoming = NULL;
#ifndef _WIN32 #ifndef _WIN32
int fd = 0; int fd = 0;
const char *chroot_dir = NULL;
#endif #endif
int show_vnc_port = 0; int show_vnc_port = 0;
int defconfig = 1; int defconfig = 1;
...@@ -3053,11 +3052,6 @@ int main(int argc, char **argv, char **envp) ...@@ -3053,11 +3052,6 @@ int main(int argc, char **argv, char **envp)
default_cdrom = 0; default_cdrom = 0;
default_sdcard = 0; default_sdcard = 0;
break; break;
#ifndef _WIN32
case QEMU_OPTION_chroot:
chroot_dir = optarg;
break;
#endif
case QEMU_OPTION_xen_domid: case QEMU_OPTION_xen_domid:
if (!(xen_available())) { if (!(xen_available())) {
printf("Option %s not supported for this target\n", popt->name); printf("Option %s not supported for this target\n", popt->name);
...@@ -3548,17 +3542,7 @@ int main(int argc, char **argv, char **envp) ...@@ -3548,17 +3542,7 @@ int main(int argc, char **argv, char **envp)
exit(1); exit(1);
} }
if (chroot_dir) { os_change_root();
if (chroot(chroot_dir) < 0) {
fprintf(stderr, "chroot failed\n");
exit(1);
}
if (chdir("/")) {
perror("not able to chdir to /");
exit(1);
}
}
os_change_process_uid(); os_change_process_uid();
if (daemonize) { if (daemonize) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册