include/qemu/osdep.h: Don't include qapi/error.h
[qemu/ar7.git] / contrib / ivshmem-server / main.c
blob4c9a11f2c5ce2b9ccc7f6b08cd19c0460f0ad18f
1 /*
2 * Copyright 6WIND S.A., 2014
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 */
9 #include "qemu/osdep.h"
10 #include "qapi/error.h"
11 #include "qemu-common.h"
13 #include "ivshmem-server.h"
15 #define IVSHMEM_SERVER_DEFAULT_VERBOSE 0
16 #define IVSHMEM_SERVER_DEFAULT_FOREGROUND 0
17 #define IVSHMEM_SERVER_DEFAULT_PID_FILE "/var/run/ivshmem-server.pid"
18 #define IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH "/tmp/ivshmem_socket"
19 #define IVSHMEM_SERVER_DEFAULT_SHM_PATH "ivshmem"
20 #define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4*1024*1024)
21 #define IVSHMEM_SERVER_DEFAULT_N_VECTORS 1
23 /* used to quit on signal SIGTERM */
24 static int ivshmem_server_quit;
26 /* arguments given by the user */
27 typedef struct IvshmemServerArgs {
28 bool verbose;
29 bool foreground;
30 const char *pid_file;
31 const char *unix_socket_path;
32 const char *shm_path;
33 uint64_t shm_size;
34 unsigned n_vectors;
35 } IvshmemServerArgs;
37 /* show ivshmem_server_usage and exit with given error code */
38 static void
39 ivshmem_server_usage(const char *name, int code)
41 fprintf(stderr, "%s [opts]\n", name);
42 fprintf(stderr, " -h: show this help\n");
43 fprintf(stderr, " -v: verbose mode\n");
44 fprintf(stderr, " -F: foreground mode (default is to daemonize)\n");
45 fprintf(stderr, " -p <pid_file>: path to the PID file (used in daemon\n"
46 " mode only).\n"
47 " Default=%s\n", IVSHMEM_SERVER_DEFAULT_SHM_PATH);
48 fprintf(stderr, " -S <unix_socket_path>: path to the unix socket\n"
49 " to listen to.\n"
50 " Default=%s\n", IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH);
51 fprintf(stderr, " -m <shm_path>: path to the shared memory.\n"
52 " The path corresponds to a POSIX shm name or a\n"
53 " hugetlbfs mount point.\n"
54 " default=%s\n", IVSHMEM_SERVER_DEFAULT_SHM_PATH);
55 fprintf(stderr, " -l <size>: size of shared memory in bytes. The suffix\n"
56 " K, M and G can be used (ex: 1K means 1024).\n"
57 " default=%u\n", IVSHMEM_SERVER_DEFAULT_SHM_SIZE);
58 fprintf(stderr, " -n <n_vects>: number of vectors.\n"
59 " default=%u\n", IVSHMEM_SERVER_DEFAULT_N_VECTORS);
61 exit(code);
64 /* parse the program arguments, exit on error */
65 static void
66 ivshmem_server_parse_args(IvshmemServerArgs *args, int argc, char *argv[])
68 int c;
69 unsigned long long v;
70 Error *err = NULL;
72 while ((c = getopt(argc, argv,
73 "h" /* help */
74 "v" /* verbose */
75 "F" /* foreground */
76 "p:" /* pid_file */
77 "S:" /* unix_socket_path */
78 "m:" /* shm_path */
79 "l:" /* shm_size */
80 "n:" /* n_vectors */
81 )) != -1) {
83 switch (c) {
84 case 'h': /* help */
85 ivshmem_server_usage(argv[0], 0);
86 break;
88 case 'v': /* verbose */
89 args->verbose = 1;
90 break;
92 case 'F': /* foreground */
93 args->foreground = 1;
94 break;
96 case 'p': /* pid_file */
97 args->pid_file = optarg;
98 break;
100 case 'S': /* unix_socket_path */
101 args->unix_socket_path = optarg;
102 break;
104 case 'm': /* shm_path */
105 args->shm_path = optarg;
106 break;
108 case 'l': /* shm_size */
109 parse_option_size("shm_size", optarg, &args->shm_size, &err);
110 if (err) {
111 error_report_err(err);
112 ivshmem_server_usage(argv[0], 1);
114 break;
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);
121 args->n_vectors = v;
122 break;
124 default:
125 ivshmem_server_usage(argv[0], 1);
126 break;
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);
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);
142 /* wait for events on listening server unix socket and connected client
143 * sockets */
144 static int
145 ivshmem_server_poll_events(IvshmemServer *server)
147 fd_set fds;
148 int ret = 0, maxfd;
150 while (!ivshmem_server_quit) {
152 FD_ZERO(&fds);
153 maxfd = 0;
154 ivshmem_server_get_fds(server, &fds, &maxfd);
156 ret = select(maxfd, &fds, NULL, NULL, NULL);
158 if (ret < 0) {
159 if (errno == EINTR) {
160 continue;
163 fprintf(stderr, "select error: %s\n", strerror(errno));
164 break;
166 if (ret == 0) {
167 continue;
170 if (ivshmem_server_handle_fds(server, &fds, maxfd) < 0) {
171 fprintf(stderr, "ivshmem_server_handle_fds() failed\n");
172 break;
176 return ret;
179 static void
180 ivshmem_server_quit_cb(int signum)
182 ivshmem_server_quit = 1;
186 main(int argc, char *argv[])
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,
199 int ret = 1;
201 /* parse arguments, will exit on error */
202 ivshmem_server_parse_args(&args, argc, argv);
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;
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;
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;
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;
235 /* daemonize if asked to */
236 if (!args.foreground) {
237 FILE *fp;
239 if (qemu_daemon(1, 1) < 0) {
240 fprintf(stderr, "cannot daemonize: %s\n", strerror(errno));
241 goto err_close;
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;
251 fprintf(fp, "%d\n", (int) getpid());
252 fclose(fp);
255 ivshmem_server_poll_events(&server);
256 fprintf(stdout, "server disconnected\n");
257 ret = 0;
259 err_close:
260 ivshmem_server_close(&server);
261 err:
262 return ret;