2
0

os-posix.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. /*
  2. * os-posix.c
  3. *
  4. * Copyright (c) 2003-2008 Fabrice Bellard
  5. * Copyright (c) 2010 Red Hat, Inc.
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy
  8. * of this software and associated documentation files (the "Software"), to deal
  9. * in the Software without restriction, including without limitation the rights
  10. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the Software is
  12. * furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in
  15. * all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. * THE SOFTWARE.
  24. */
  25. #include "qemu/osdep.h"
  26. #include <sys/wait.h>
  27. #include <pwd.h>
  28. #include <grp.h>
  29. #include <libgen.h>
  30. /* Needed early for CONFIG_BSD etc. */
  31. #include "net/slirp.h"
  32. #include "qemu/qemu-options.h"
  33. #include "qemu/error-report.h"
  34. #include "qemu/log.h"
  35. #include "sysemu/runstate.h"
  36. #include "qemu/cutils.h"
  37. #ifdef CONFIG_LINUX
  38. #include <sys/prctl.h>
  39. #include "qemu/async-teardown.h"
  40. #endif
  41. /*
  42. * Must set all three of these at once.
  43. * Legal combinations are unset by name by uid
  44. */
  45. static struct passwd *user_pwd; /* NULL non-NULL NULL */
  46. static uid_t user_uid = (uid_t)-1; /* -1 -1 >=0 */
  47. static gid_t user_gid = (gid_t)-1; /* -1 -1 >=0 */
  48. static const char *chroot_dir;
  49. static int daemonize;
  50. static int daemon_pipe;
  51. void os_setup_early_signal_handling(void)
  52. {
  53. struct sigaction act;
  54. sigfillset(&act.sa_mask);
  55. act.sa_flags = 0;
  56. act.sa_handler = SIG_IGN;
  57. sigaction(SIGPIPE, &act, NULL);
  58. }
  59. static void termsig_handler(int signal, siginfo_t *info, void *c)
  60. {
  61. qemu_system_killed(info->si_signo, info->si_pid);
  62. }
  63. void os_setup_signal_handling(void)
  64. {
  65. struct sigaction act;
  66. memset(&act, 0, sizeof(act));
  67. act.sa_sigaction = termsig_handler;
  68. act.sa_flags = SA_SIGINFO;
  69. sigaction(SIGINT, &act, NULL);
  70. sigaction(SIGHUP, &act, NULL);
  71. sigaction(SIGTERM, &act, NULL);
  72. }
  73. void os_set_proc_name(const char *s)
  74. {
  75. #if defined(PR_SET_NAME)
  76. char name[16];
  77. if (!s)
  78. return;
  79. pstrcpy(name, sizeof(name), s);
  80. /* Could rewrite argv[0] too, but that's a bit more complicated.
  81. This simple way is enough for `top'. */
  82. if (prctl(PR_SET_NAME, name)) {
  83. error_report("unable to change process name: %s", strerror(errno));
  84. exit(1);
  85. }
  86. #else
  87. error_report("Change of process name not supported by your OS");
  88. exit(1);
  89. #endif
  90. }
  91. static bool os_parse_runas_uid_gid(const char *optarg)
  92. {
  93. unsigned long lv;
  94. const char *ep;
  95. uid_t got_uid;
  96. gid_t got_gid;
  97. int rc;
  98. rc = qemu_strtoul(optarg, &ep, 0, &lv);
  99. got_uid = lv; /* overflow here is ID in C99 */
  100. if (rc || *ep != ':' || got_uid != lv || got_uid == (uid_t)-1) {
  101. return false;
  102. }
  103. rc = qemu_strtoul(ep + 1, 0, 0, &lv);
  104. got_gid = lv; /* overflow here is ID in C99 */
  105. if (rc || got_gid != lv || got_gid == (gid_t)-1) {
  106. return false;
  107. }
  108. user_pwd = NULL;
  109. user_uid = got_uid;
  110. user_gid = got_gid;
  111. return true;
  112. }
  113. /*
  114. * Parse OS specific command line options.
  115. * return 0 if option handled, -1 otherwise
  116. */
  117. int os_parse_cmd_args(int index, const char *optarg)
  118. {
  119. switch (index) {
  120. case QEMU_OPTION_runas:
  121. user_pwd = getpwnam(optarg);
  122. if (user_pwd) {
  123. user_uid = -1;
  124. user_gid = -1;
  125. } else if (!os_parse_runas_uid_gid(optarg)) {
  126. error_report("User \"%s\" doesn't exist"
  127. " (and is not <uid>:<gid>)",
  128. optarg);
  129. exit(1);
  130. }
  131. break;
  132. case QEMU_OPTION_chroot:
  133. chroot_dir = optarg;
  134. break;
  135. case QEMU_OPTION_daemonize:
  136. daemonize = 1;
  137. break;
  138. #if defined(CONFIG_LINUX)
  139. case QEMU_OPTION_asyncteardown:
  140. init_async_teardown();
  141. break;
  142. #endif
  143. default:
  144. return -1;
  145. }
  146. return 0;
  147. }
  148. static void change_process_uid(void)
  149. {
  150. assert((user_uid == (uid_t)-1) || user_pwd == NULL);
  151. assert((user_uid == (uid_t)-1) ==
  152. (user_gid == (gid_t)-1));
  153. if (user_pwd || user_uid != (uid_t)-1) {
  154. gid_t intended_gid = user_pwd ? user_pwd->pw_gid : user_gid;
  155. uid_t intended_uid = user_pwd ? user_pwd->pw_uid : user_uid;
  156. if (setgid(intended_gid) < 0) {
  157. error_report("Failed to setgid(%d)", intended_gid);
  158. exit(1);
  159. }
  160. if (user_pwd) {
  161. if (initgroups(user_pwd->pw_name, user_pwd->pw_gid) < 0) {
  162. error_report("Failed to initgroups(\"%s\", %d)",
  163. user_pwd->pw_name, user_pwd->pw_gid);
  164. exit(1);
  165. }
  166. } else {
  167. if (setgroups(1, &user_gid) < 0) {
  168. error_report("Failed to setgroups(1, [%d])",
  169. user_gid);
  170. exit(1);
  171. }
  172. }
  173. if (setuid(intended_uid) < 0) {
  174. error_report("Failed to setuid(%d)", intended_uid);
  175. exit(1);
  176. }
  177. if (setuid(0) != -1) {
  178. error_report("Dropping privileges failed");
  179. exit(1);
  180. }
  181. }
  182. }
  183. static void change_root(void)
  184. {
  185. if (chroot_dir) {
  186. if (chroot(chroot_dir) < 0) {
  187. error_report("chroot failed");
  188. exit(1);
  189. }
  190. if (chdir("/")) {
  191. error_report("not able to chdir to /: %s", strerror(errno));
  192. exit(1);
  193. }
  194. }
  195. }
  196. void os_daemonize(void)
  197. {
  198. if (daemonize) {
  199. pid_t pid;
  200. int fds[2];
  201. if (!g_unix_open_pipe(fds, FD_CLOEXEC, NULL)) {
  202. exit(1);
  203. }
  204. pid = fork();
  205. if (pid > 0) {
  206. uint8_t status;
  207. ssize_t len;
  208. close(fds[1]);
  209. do {
  210. len = read(fds[0], &status, 1);
  211. } while (len < 0 && errno == EINTR);
  212. /* only exit successfully if our child actually wrote
  213. * a one-byte zero to our pipe, upon successful init */
  214. exit(len == 1 && status == 0 ? 0 : 1);
  215. } else if (pid < 0) {
  216. exit(1);
  217. }
  218. close(fds[0]);
  219. daemon_pipe = fds[1];
  220. setsid();
  221. pid = fork();
  222. if (pid > 0) {
  223. exit(0);
  224. } else if (pid < 0) {
  225. exit(1);
  226. }
  227. umask(027);
  228. signal(SIGTSTP, SIG_IGN);
  229. signal(SIGTTOU, SIG_IGN);
  230. signal(SIGTTIN, SIG_IGN);
  231. }
  232. }
  233. void os_setup_post(void)
  234. {
  235. int fd = 0;
  236. if (daemonize) {
  237. if (chdir("/")) {
  238. error_report("not able to chdir to /: %s", strerror(errno));
  239. exit(1);
  240. }
  241. TFR(fd = qemu_open_old("/dev/null", O_RDWR));
  242. if (fd == -1) {
  243. exit(1);
  244. }
  245. }
  246. change_root();
  247. change_process_uid();
  248. if (daemonize) {
  249. uint8_t status = 0;
  250. ssize_t len;
  251. dup2(fd, 0);
  252. dup2(fd, 1);
  253. /* In case -D is given do not redirect stderr to /dev/null */
  254. if (!qemu_log_enabled()) {
  255. dup2(fd, 2);
  256. }
  257. close(fd);
  258. do {
  259. len = write(daemon_pipe, &status, 1);
  260. } while (len < 0 && errno == EINTR);
  261. if (len != 1) {
  262. exit(1);
  263. }
  264. }
  265. }
  266. void os_set_line_buffering(void)
  267. {
  268. setvbuf(stdout, NULL, _IOLBF, 0);
  269. }
  270. bool is_daemonized(void)
  271. {
  272. return daemonize;
  273. }
  274. int os_set_daemonize(bool d)
  275. {
  276. daemonize = d;
  277. return 0;
  278. }
  279. int os_mlock(void)
  280. {
  281. #ifdef HAVE_MLOCKALL
  282. int ret = 0;
  283. ret = mlockall(MCL_CURRENT | MCL_FUTURE);
  284. if (ret < 0) {
  285. error_report("mlockall: %s", strerror(errno));
  286. }
  287. return ret;
  288. #else
  289. return -ENOSYS;
  290. #endif
  291. }