1 /* 2 * Copyright 6WIND S.A., 2014 3 * 4 * This work is licensed under the terms of the GNU GPL, version 2 or 5 * (at your option) any later version. See the COPYING file in the 6 * top-level directory. 7 */ 8 9 #include "qemu-common.h" 10 11 #include "ivshmem-server.h" 12 13 #define IVSHMEM_SERVER_DEFAULT_VERBOSE 0 14 #define IVSHMEM_SERVER_DEFAULT_FOREGROUND 0 15 #define IVSHMEM_SERVER_DEFAULT_PID_FILE "/var/run/ivshmem-server.pid" 16 #define IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH "/tmp/ivshmem_socket" 17 #define IVSHMEM_SERVER_DEFAULT_SHM_PATH "ivshmem" 18 #define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4*1024*1024) 19 #define IVSHMEM_SERVER_DEFAULT_N_VECTORS 1 20 21 /* used to quit on signal SIGTERM */ 22 static int ivshmem_server_quit; 23 24 /* arguments given by the user */ 25 typedef struct IvshmemServerArgs { 26 bool verbose; 27 bool foreground; 28 const char *pid_file; 29 const char *unix_socket_path; 30 const char *shm_path; 31 uint64_t shm_size; 32 unsigned n_vectors; 33 } IvshmemServerArgs; 34 35 /* show ivshmem_server_usage and exit with given error code */ 36 static void 37 ivshmem_server_usage(const char *name, int code) 38 { 39 fprintf(stderr, "%s [opts]\n", name); 40 fprintf(stderr, " -h: show this help\n"); 41 fprintf(stderr, " -v: verbose mode\n"); 42 fprintf(stderr, " -F: foreground mode (default is to daemonize)\n"); 43 fprintf(stderr, " -p <pid_file>: path to the PID file (used in daemon\n" 44 " mode only).\n" 45 " Default=%s\n", IVSHMEM_SERVER_DEFAULT_SHM_PATH); 46 fprintf(stderr, " -S <unix_socket_path>: path to the unix socket\n" 47 " to listen to.\n" 48 " Default=%s\n", IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH); 49 fprintf(stderr, " -m <shm_path>: path to the shared memory.\n" 50 " The path corresponds to a POSIX shm name or a\n" 51 " hugetlbfs mount point.\n" 52 " default=%s\n", IVSHMEM_SERVER_DEFAULT_SHM_PATH); 53 fprintf(stderr, " -l <size>: size of shared memory in bytes. The suffix\n" 54 " K, M and G can be used (ex: 1K means 1024).\n" 55 " default=%u\n", IVSHMEM_SERVER_DEFAULT_SHM_SIZE); 56 fprintf(stderr, " -n <n_vects>: number of vectors.\n" 57 " default=%u\n", IVSHMEM_SERVER_DEFAULT_N_VECTORS); 58 59 exit(code); 60 } 61 62 /* parse the program arguments, exit on error */ 63 static void 64 ivshmem_server_parse_args(IvshmemServerArgs *args, int argc, char *argv[]) 65 { 66 int c; 67 unsigned long long v; 68 Error *errp = NULL; 69 70 while ((c = getopt(argc, argv, 71 "h" /* help */ 72 "v" /* verbose */ 73 "F" /* foreground */ 74 "p:" /* pid_file */ 75 "S:" /* unix_socket_path */ 76 "m:" /* shm_path */ 77 "l:" /* shm_size */ 78 "n:" /* n_vectors */ 79 )) != -1) { 80 81 switch (c) { 82 case 'h': /* help */ 83 ivshmem_server_usage(argv[0], 0); 84 break; 85 86 case 'v': /* verbose */ 87 args->verbose = 1; 88 break; 89 90 case 'F': /* foreground */ 91 args->foreground = 1; 92 break; 93 94 case 'p': /* pid_file */ 95 args->pid_file = optarg; 96 break; 97 98 case 'S': /* unix_socket_path */ 99 args->unix_socket_path = optarg; 100 break; 101 102 case 'm': /* shm_path */ 103 args->shm_path = optarg; 104 break; 105 106 case 'l': /* shm_size */ 107 parse_option_size("shm_size", optarg, &args->shm_size, &errp); 108 if (errp) { 109 fprintf(stderr, "cannot parse shm size: %s\n", 110 error_get_pretty(errp)); 111 error_free(errp); 112 ivshmem_server_usage(argv[0], 1); 113 } 114 break; 115 116 case 'n': /* n_vectors */ 117 if (parse_uint_full(optarg, &v, 0) < 0) { 118 fprintf(stderr, "cannot parse n_vectors\n"); 119 ivshmem_server_usage(argv[0], 1); 120 } 121 args->n_vectors = v; 122 break; 123 124 default: 125 ivshmem_server_usage(argv[0], 1); 126 break; 127 } 128 } 129 130 if (args->n_vectors > IVSHMEM_SERVER_MAX_VECTORS) { 131 fprintf(stderr, "too many requested vectors (max is %d)\n", 132 IVSHMEM_SERVER_MAX_VECTORS); 133 ivshmem_server_usage(argv[0], 1); 134 } 135 136 if (args->verbose == 1 && args->foreground == 0) { 137 fprintf(stderr, "cannot use verbose in daemon mode\n"); 138 ivshmem_server_usage(argv[0], 1); 139 } 140 } 141 142 /* wait for events on listening server unix socket and connected client 143 * sockets */ 144 static int 145 ivshmem_server_poll_events(IvshmemServer *server) 146 { 147 fd_set fds; 148 int ret = 0, maxfd; 149 150 while (!ivshmem_server_quit) { 151 152 FD_ZERO(&fds); 153 maxfd = 0; 154 ivshmem_server_get_fds(server, &fds, &maxfd); 155 156 ret = select(maxfd, &fds, NULL, NULL, NULL); 157 158 if (ret < 0) { 159 if (errno == EINTR) { 160 continue; 161 } 162 163 fprintf(stderr, "select error: %s\n", strerror(errno)); 164 break; 165 } 166 if (ret == 0) { 167 continue; 168 } 169 170 if (ivshmem_server_handle_fds(server, &fds, maxfd) < 0) { 171 fprintf(stderr, "ivshmem_server_handle_fds() failed\n"); 172 break; 173 } 174 } 175 176 return ret; 177 } 178 179 static void 180 ivshmem_server_quit_cb(int signum) 181 { 182 ivshmem_server_quit = 1; 183 } 184 185 int 186 main(int argc, char *argv[]) 187 { 188 IvshmemServer server; 189 struct sigaction sa, sa_quit; 190 IvshmemServerArgs args = { 191 .verbose = IVSHMEM_SERVER_DEFAULT_VERBOSE, 192 .foreground = IVSHMEM_SERVER_DEFAULT_FOREGROUND, 193 .pid_file = IVSHMEM_SERVER_DEFAULT_PID_FILE, 194 .unix_socket_path = IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH, 195 .shm_path = IVSHMEM_SERVER_DEFAULT_SHM_PATH, 196 .shm_size = IVSHMEM_SERVER_DEFAULT_SHM_SIZE, 197 .n_vectors = IVSHMEM_SERVER_DEFAULT_N_VECTORS, 198 }; 199 int ret = 1; 200 201 /* parse arguments, will exit on error */ 202 ivshmem_server_parse_args(&args, argc, argv); 203 204 /* Ignore SIGPIPE, see this link for more info: 205 * http://www.mail-archive.com/libevent-users@monkey.org/msg01606.html */ 206 sa.sa_handler = SIG_IGN; 207 sa.sa_flags = 0; 208 if (sigemptyset(&sa.sa_mask) == -1 || 209 sigaction(SIGPIPE, &sa, 0) == -1) { 210 perror("failed to ignore SIGPIPE; sigaction"); 211 goto err; 212 } 213 214 sa_quit.sa_handler = ivshmem_server_quit_cb; 215 sa_quit.sa_flags = 0; 216 if (sigemptyset(&sa_quit.sa_mask) == -1 || 217 sigaction(SIGTERM, &sa_quit, 0) == -1) { 218 perror("failed to add SIGTERM handler; sigaction"); 219 goto err; 220 } 221 222 /* init the ivshms structure */ 223 if (ivshmem_server_init(&server, args.unix_socket_path, args.shm_path, 224 args.shm_size, args.n_vectors, args.verbose) < 0) { 225 fprintf(stderr, "cannot init server\n"); 226 goto err; 227 } 228 229 /* start the ivshmem server (open shm & unix socket) */ 230 if (ivshmem_server_start(&server) < 0) { 231 fprintf(stderr, "cannot bind\n"); 232 goto err; 233 } 234 235 /* daemonize if asked to */ 236 if (!args.foreground) { 237 FILE *fp; 238 239 if (qemu_daemon(1, 1) < 0) { 240 fprintf(stderr, "cannot daemonize: %s\n", strerror(errno)); 241 goto err_close; 242 } 243 244 /* write pid file */ 245 fp = fopen(args.pid_file, "w"); 246 if (fp == NULL) { 247 fprintf(stderr, "cannot write pid file: %s\n", strerror(errno)); 248 goto err_close; 249 } 250 251 fprintf(fp, "%d\n", (int) getpid()); 252 fclose(fp); 253 } 254 255 ivshmem_server_poll_events(&server); 256 fprintf(stdout, "server disconnected\n"); 257 ret = 0; 258 259 err_close: 260 ivshmem_server_close(&server); 261 err: 262 return ret; 263 } 264