os-posix.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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 <unistd.h>
  26. #include <fcntl.h>
  27. #include <signal.h>
  28. #include <sys/types.h>
  29. #include <sys/wait.h>
  30. /*needed for MAP_POPULATE before including qemu-options.h */
  31. #include <sys/mman.h>
  32. #include <pwd.h>
  33. #include <grp.h>
  34. #include <libgen.h>
  35. /* Needed early for CONFIG_BSD etc. */
  36. #include "config-host.h"
  37. #include "sysemu/sysemu.h"
  38. #include "net/slirp.h"
  39. #include "qemu-options.h"
  40. #ifdef CONFIG_LINUX
  41. #include <sys/prctl.h>
  42. #endif
  43. static struct passwd *user_pwd;
  44. static const char *chroot_dir;
  45. static int daemonize;
  46. static int daemon_pipe;
  47. void os_setup_early_signal_handling(void)
  48. {
  49. struct sigaction act;
  50. sigfillset(&act.sa_mask);
  51. act.sa_flags = 0;
  52. act.sa_handler = SIG_IGN;
  53. sigaction(SIGPIPE, &act, NULL);
  54. }
  55. static void termsig_handler(int signal, siginfo_t *info, void *c)
  56. {
  57. qemu_system_killed(info->si_signo, info->si_pid);
  58. }
  59. void os_setup_signal_handling(void)
  60. {
  61. struct sigaction act;
  62. memset(&act, 0, sizeof(act));
  63. act.sa_sigaction = termsig_handler;
  64. act.sa_flags = SA_SIGINFO;
  65. sigaction(SIGINT, &act, NULL);
  66. sigaction(SIGHUP, &act, NULL);
  67. sigaction(SIGTERM, &act, NULL);
  68. }
  69. /* Find a likely location for support files using the location of the binary.
  70. For installed binaries this will be "$bindir/../share/qemu". When
  71. running from the build tree this will be "$bindir/../pc-bios". */
  72. #define SHARE_SUFFIX "/share/qemu"
  73. #define BUILD_SUFFIX "/pc-bios"
  74. char *os_find_datadir(void)
  75. {
  76. char *dir, *exec_dir;
  77. char *res;
  78. size_t max_len;
  79. exec_dir = qemu_get_exec_dir();
  80. if (exec_dir == NULL) {
  81. return NULL;
  82. }
  83. dir = dirname(exec_dir);
  84. max_len = strlen(dir) +
  85. MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
  86. res = g_malloc0(max_len);
  87. snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
  88. if (access(res, R_OK)) {
  89. snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
  90. if (access(res, R_OK)) {
  91. g_free(res);
  92. res = NULL;
  93. }
  94. }
  95. g_free(exec_dir);
  96. return res;
  97. }
  98. #undef SHARE_SUFFIX
  99. #undef BUILD_SUFFIX
  100. void os_set_proc_name(const char *s)
  101. {
  102. #if defined(PR_SET_NAME)
  103. char name[16];
  104. if (!s)
  105. return;
  106. pstrcpy(name, sizeof(name), s);
  107. /* Could rewrite argv[0] too, but that's a bit more complicated.
  108. This simple way is enough for `top'. */
  109. if (prctl(PR_SET_NAME, name)) {
  110. perror("unable to change process name");
  111. exit(1);
  112. }
  113. #else
  114. fprintf(stderr, "Change of process name not supported by your OS\n");
  115. exit(1);
  116. #endif
  117. }
  118. /*
  119. * Parse OS specific command line options.
  120. * return 0 if option handled, -1 otherwise
  121. */
  122. void os_parse_cmd_args(int index, const char *optarg)
  123. {
  124. switch (index) {
  125. #ifdef CONFIG_SLIRP
  126. case QEMU_OPTION_smb:
  127. if (net_slirp_smb(optarg) < 0)
  128. exit(1);
  129. break;
  130. #endif
  131. case QEMU_OPTION_runas:
  132. user_pwd = getpwnam(optarg);
  133. if (!user_pwd) {
  134. fprintf(stderr, "User \"%s\" doesn't exist\n", optarg);
  135. exit(1);
  136. }
  137. break;
  138. case QEMU_OPTION_chroot:
  139. chroot_dir = optarg;
  140. break;
  141. case QEMU_OPTION_daemonize:
  142. daemonize = 1;
  143. break;
  144. #if defined(CONFIG_LINUX)
  145. case QEMU_OPTION_enablefips:
  146. fips_set_state(true);
  147. break;
  148. #endif
  149. }
  150. }
  151. static void change_process_uid(void)
  152. {
  153. if (user_pwd) {
  154. if (setgid(user_pwd->pw_gid) < 0) {
  155. fprintf(stderr, "Failed to setgid(%d)\n", user_pwd->pw_gid);
  156. exit(1);
  157. }
  158. if (initgroups(user_pwd->pw_name, user_pwd->pw_gid) < 0) {
  159. fprintf(stderr, "Failed to initgroups(\"%s\", %d)\n",
  160. user_pwd->pw_name, user_pwd->pw_gid);
  161. exit(1);
  162. }
  163. if (setuid(user_pwd->pw_uid) < 0) {
  164. fprintf(stderr, "Failed to setuid(%d)\n", user_pwd->pw_uid);
  165. exit(1);
  166. }
  167. if (setuid(0) != -1) {
  168. fprintf(stderr, "Dropping privileges failed\n");
  169. exit(1);
  170. }
  171. }
  172. }
  173. static void change_root(void)
  174. {
  175. if (chroot_dir) {
  176. if (chroot(chroot_dir) < 0) {
  177. fprintf(stderr, "chroot failed\n");
  178. exit(1);
  179. }
  180. if (chdir("/")) {
  181. perror("not able to chdir to /");
  182. exit(1);
  183. }
  184. }
  185. }
  186. void os_daemonize(void)
  187. {
  188. if (daemonize) {
  189. pid_t pid;
  190. int fds[2];
  191. if (pipe(fds) == -1) {
  192. exit(1);
  193. }
  194. pid = fork();
  195. if (pid > 0) {
  196. uint8_t status;
  197. ssize_t len;
  198. close(fds[1]);
  199. do {
  200. len = read(fds[0], &status, 1);
  201. } while (len < 0 && errno == EINTR);
  202. /* only exit successfully if our child actually wrote
  203. * a one-byte zero to our pipe, upon successful init */
  204. exit(len == 1 && status == 0 ? 0 : 1);
  205. } else if (pid < 0) {
  206. exit(1);
  207. }
  208. close(fds[0]);
  209. daemon_pipe = fds[1];
  210. qemu_set_cloexec(daemon_pipe);
  211. setsid();
  212. pid = fork();
  213. if (pid > 0) {
  214. exit(0);
  215. } else if (pid < 0) {
  216. exit(1);
  217. }
  218. umask(027);
  219. signal(SIGTSTP, SIG_IGN);
  220. signal(SIGTTOU, SIG_IGN);
  221. signal(SIGTTIN, SIG_IGN);
  222. }
  223. }
  224. void os_setup_post(void)
  225. {
  226. int fd = 0;
  227. if (daemonize) {
  228. if (chdir("/")) {
  229. perror("not able to chdir to /");
  230. exit(1);
  231. }
  232. TFR(fd = qemu_open("/dev/null", O_RDWR));
  233. if (fd == -1) {
  234. exit(1);
  235. }
  236. }
  237. change_root();
  238. change_process_uid();
  239. if (daemonize) {
  240. uint8_t status = 0;
  241. ssize_t len;
  242. dup2(fd, 0);
  243. dup2(fd, 1);
  244. dup2(fd, 2);
  245. close(fd);
  246. do {
  247. len = write(daemon_pipe, &status, 1);
  248. } while (len < 0 && errno == EINTR);
  249. if (len != 1) {
  250. exit(1);
  251. }
  252. }
  253. }
  254. void os_set_line_buffering(void)
  255. {
  256. setvbuf(stdout, NULL, _IOLBF, 0);
  257. }
  258. int qemu_create_pidfile(const char *filename)
  259. {
  260. char buffer[128];
  261. int len;
  262. int fd;
  263. fd = qemu_open(filename, O_RDWR | O_CREAT, 0600);
  264. if (fd == -1) {
  265. return -1;
  266. }
  267. if (lockf(fd, F_TLOCK, 0) == -1) {
  268. close(fd);
  269. return -1;
  270. }
  271. len = snprintf(buffer, sizeof(buffer), FMT_pid "\n", getpid());
  272. if (write(fd, buffer, len) != len) {
  273. close(fd);
  274. return -1;
  275. }
  276. /* keep pidfile open & locked forever */
  277. return 0;
  278. }
  279. bool is_daemonized(void)
  280. {
  281. return daemonize;
  282. }
  283. int os_mlock(void)
  284. {
  285. int ret = 0;
  286. ret = mlockall(MCL_CURRENT | MCL_FUTURE);
  287. if (ret < 0) {
  288. perror("mlockall");
  289. }
  290. return ret;
  291. }