libvirt_proxy.c 20.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * proxy_svr.c: root suid proxy server for Xen access to APIs with no
 *              side effects from unauthenticated clients.
 *
 * Copyright (C) 2006 Red Hat, Inc.
 *
 * See COPYING.LIB for the License of this software
 *
 * Daniel Veillard <veillard@redhat.com>
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/poll.h>
#include <sys/socket.h>
#include <sys/un.h>
20
#include <locale.h>
21
#include "internal.h"
22
#include "proxy_internal.h"
23
#include "xen_internal.h"
24
#include "xend_internal.h"
25
#include "xs_internal.h"
26 27 28

static int fdServer = -1;
static int debug = 0;
29
static int persist = 0;
30 31 32 33 34 35 36 37 38 39
static int done = 0;

#define MAX_CLIENT 64

static int nbClients = 0; /* client 0 is the unix listen socket */
static struct pollfd pollInfos[MAX_CLIENT + 1];

static virConnect conninfos;
static virConnectPtr conn = &conninfos;

40 41
static unsigned long xenVersion = 0;

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
/************************************************************************
 *									*
 *	Interfaces with the Xen hypervisor				*
 *									*
 ************************************************************************/

/**
 * proxyInitXen:
 *
 * Initialize the communication layer with Xen
 *
 * Returns 0 or -1 in case of error
 */
static int
proxyInitXen(void) {
    int ret;
58
    unsigned long xenVersion2;
59 60 61 62 63

    ret = xenHypervisorOpen(conn, NULL, VIR_DRV_OPEN_QUIET);
    if (ret < 0) {
        fprintf(stderr, "Failed to open Xen hypervisor\n");
        return(-1);
64 65 66 67 68 69
    } else {
        ret = xenHypervisorGetVersion(conn, &xenVersion);
	if (ret != 0) {
	    fprintf(stderr, "Failed to get Xen hypervisor version\n");
	    return(-1);
	}
70 71 72 73 74 75
    }
    ret = xenDaemonOpen_unix(conn, "/var/lib/xend/xend-socket");
    if (ret < 0) {
        fprintf(stderr, "Failed to connect to Xen daemon\n");
        return(-1);
    }
76 77 78 79 80
    ret = xenStoreOpen(conn, NULL, VIR_DRV_OPEN_QUIET | VIR_DRV_OPEN_RO);
    if (ret < 0) {
        fprintf(stderr, "Failed to open XenStore connection");
        return (-1);
    }
81 82 83 84 85 86 87 88 89 90
    ret = xenDaemonGetVersion(conn, &xenVersion2);
    if (ret != 0) {
	fprintf(stderr, "Failed to get Xen daemon version\n");
	return(-1);
    }
    if (debug)
        fprintf(stderr, "Connected to hypervisor %lu and daemon %lu\n",
	        xenVersion, xenVersion2);
    if (xenVersion2 > xenVersion)
        xenVersion = xenVersion2;
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    return(0);
}

/************************************************************************
 *									*
 *	Processing of the unix socket to listen for clients		*
 *									*
 ************************************************************************/

/**
 * proxyCloseUnixSocket:
 *
 * close the unix socket
 *
 * Returns 0 or -1 in case of error
 */
static int
proxyCloseUnixSocket(void) {
    int ret;

    if (fdServer < 0)
        return(0);
    
    ret = close(fdServer);
    if (debug > 0)
        fprintf(stderr, "closing unix socket %d: %d\n", fdServer, ret);
    fdServer = -1;
    pollInfos[0].fd = -1;
    return(ret);
}

/**
 * proxyListenUnixSocket:
 * @path: the fileame for the socket
 *
 * create a new abstract socket based on that path and listen on it
 *
 * Returns the associated file descriptor or -1 in case of failure
 */
static int
proxyListenUnixSocket(const char *path) {
    int fd;
    struct sockaddr_un addr;

    if (fdServer >= 0)
        return(fdServer);

    fd = socket(PF_UNIX, SOCK_STREAM, 0);
    if (fd < 0) {
        fprintf(stderr, "Failed to create unix socket");
	return(-1);
    }

    /*
     * Abstract socket do not hit the filesystem, way more secure and 
     * garanteed to be atomic
     */
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
    addr.sun_path[0] = '\0';
    strncpy(&addr.sun_path[1], path, (sizeof(addr) - 4) - 2);

    /*
     * now bind the socket to that address and listen on it
     */
    if (bind(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
        fprintf(stderr, "Failed to bind to socket %s\n", path);
	close(fd);
	return (-1);
    }
    if (listen(fd, 30 /* backlog */ ) < 0) {
        fprintf(stderr, "Failed to listen to socket %s\n", path);
	close(fd);
	return (-1);
    }

    if (debug > 0)
        fprintf(stderr, "opened and bound unix socket %d\n", fd);

    fdServer = fd;
    pollInfos[0].fd = fd;
    pollInfos[0].events = POLLIN | POLLERR | POLLHUP | POLLNVAL;
    return (fd);
}

/**
 * proxyAcceptClientSocket:
 *
 * Process a request to the unix socket
 *
 * Returns the filedescriptor of the new client or -1 in case of error
 */
static int
proxyAcceptClientSocket(void) {
    int client;
    socklen_t client_addrlen;
    struct sockaddr client_addr;

retry:
    client_addrlen = sizeof(client_addr);
    client = accept(pollInfos[0].fd, &client_addr, &client_addrlen);
    if (client < 0) {
        if (errno == EINTR) {
	    if (debug > 0)
	        fprintf(stderr, "accept connection on socket %d interrupted\n",
		        pollInfos[0].fd);
	    goto retry;
	}
        fprintf(stderr, "Failed to accept incoming connection on socket %d\n",
	        pollInfos[0].fd);
	done = 1;
	return(-1);
    }

    if (nbClients >= MAX_CLIENT) {
        fprintf(stderr, "Too many client registered\n");
	close(client);
	return(-1);
    }
    nbClients++;
    pollInfos[nbClients].fd = client;
    pollInfos[nbClients].events = POLLIN | POLLERR | POLLHUP | POLLNVAL;
    if (debug > 0)
	fprintf(stderr, "accept connection on socket %d for client %d\n",
		client, nbClients);
    return(client);
}

/************************************************************************
 *									*
 *		Processing of client sockets				*
 *									*
 ************************************************************************/

/**
 * proxyCloseClientSocket:
 * @nr: client number
 *
 * Close the socket from that client, and recompact the pollInfo array
 *
 * Returns 0 in case of success and -1 in case of error
 */
static int
proxyCloseClientSocket(int nr) {
    int ret;

    ret = close(pollInfos[nr].fd);
    if (ret != 0)
	fprintf(stderr, "Failed to close socket %d from client %d\n",
	        pollInfos[nr].fd, nr);
    else if (debug > 0)
	fprintf(stderr, "Closed socket %d from client %d\n",
	        pollInfos[nr].fd, nr);
    if (nr < nbClients) {
        memmove(&pollInfos[nr], &pollInfos[nr + 1],
	        (nbClients - nr) * sizeof(pollInfos[0]));
    }
    nbClients--;
    return(ret);
}

/**
 * proxyCloseClientSockets:
 *
 * Close all the sockets from the clients
 */
static void
proxyCloseClientSockets(void) {
    int i, ret;

    for (i = 1;i <= nbClients;i++) {
        ret = close(pollInfos[i].fd);
	if (ret != 0)
	    fprintf(stderr, "Failed to close socket %d from client %d\n",
	            pollInfos[i].fd, i);
	else if (debug > 0)
	    fprintf(stderr, "Closed socket %d from client %d\n",
	            pollInfos[i].fd, i);
    }
    nbClients = 0;
}

/**
 * proxyWriteClientSocket:
 * @nr: the client number
 * @req: pointer to the packet
 *
 * Send back a packet to the client. If it seems write would be blocking
 * then try to disconnect from it.
 *
 * Return 0 in case of success and -1 in case of error.
 */
static int
proxyWriteClientSocket(int nr, virProxyPacketPtr req) {
    int ret;

    if ((nr <= 0) || (nr > nbClients) || (req == NULL) ||
288 289
        (req->len < sizeof(virProxyPacket)) ||
	(req->len > sizeof(virProxyFullPacket)) ||
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
	(pollInfos[nr].fd < 0)) {
	fprintf(stderr, "write to client %d in error", nr);
	proxyCloseClientSocket(nr);
	return(-1);
    }

retry:
    ret = write(pollInfos[nr].fd, (char *) req, req->len);
    if (ret < 0) {
        if (errno == EINTR) {
	    if (debug > 0)
	        fprintf(stderr, "write socket %d to client %d interrupted\n",
		        pollInfos[nr].fd, nr);
	    goto retry;
	}
        fprintf(stderr, "write %d bytes to socket %d from client %d failed\n",
	        req->len, pollInfos[nr].fd, nr);
	proxyCloseClientSocket(nr);
	return(-1);
    }
    if (ret == 0) {
	if (debug)
	    fprintf(stderr, "end of stream from client %d on socket %d\n",
	            nr, pollInfos[nr].fd);
	proxyCloseClientSocket(nr);
	return(-1);
    }

    if (ret != req->len) {
        fprintf(stderr, "write %d of %d bytes to socket %d from client %d\n",
	        ret, req->len, pollInfos[nr].fd, nr);
	proxyCloseClientSocket(nr);
	return(-1);
    }
    if (debug)
        fprintf(stderr, "wrote %d bytes to client %d on socket %d\n",
	        ret, nr, pollInfos[nr].fd);
    
    return(0);
}
/**
 * proxyReadClientSocket:
 * @nr: the client number
 *
 * Process a read from a client socket
 */
static int
proxyReadClientSocket(int nr) {
338 339
    virProxyFullPacket request;
    virProxyPacketPtr req = (virProxyPacketPtr) &request;
340
    int ret;
341
    char *xml, *ostype;
342 343

retry:
344
    ret = read(pollInfos[nr].fd, req, sizeof(virProxyPacket));
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
    if (ret < 0) {
        if (errno == EINTR) {
	    if (debug > 0)
	        fprintf(stderr, "read socket %d from client %d interrupted\n",
		        pollInfos[nr].fd, nr);
	    goto retry;
	}
        fprintf(stderr, "Failed to read socket %d from client %d\n",
	        pollInfos[nr].fd, nr);
	proxyCloseClientSocket(nr);
	return(-1);
    }
    if (ret == 0) {
	if (debug)
	    fprintf(stderr, "end of stream from client %d on socket %d\n",
	            nr, pollInfos[nr].fd);
	proxyCloseClientSocket(nr);
	return(-1);
    }

    if (debug)
        fprintf(stderr, "read %d bytes from client %d on socket %d\n",
	        ret, nr, pollInfos[nr].fd);
    
    if ((req->version != PROXY_PROTO_VERSION) ||
370 371
        (req->len < sizeof(virProxyPacket)) ||
	(req->len > sizeof(virProxyFullPacket)))
372
	goto comm_error;
373

374 375
    
    if (debug)
376
        fprintf(stderr, "Got command %d from client %d\n", req->command, nr);
377

378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
    /*
     * complete reading the packet.
     * TODO: we should detect when blocking and abort connection if this happen
     */
    if (req->len > ret) {
        int total, extra;
	char *base = (char *) &request;

        total = ret;
	while (total < req->len) {
	    extra = req->len - total;
retry2:
	    ret = read(pollInfos[nr].fd, base + total, extra);
	    if (ret < 0) {
		if (errno == EINTR) {
		    if (debug > 0)
			fprintf(stderr,
			        "read socket %d from client %d interrupted\n",
				pollInfos[nr].fd, nr);
		    goto retry2;
		}
		fprintf(stderr, "Failed to read socket %d from client %d\n",
			pollInfos[nr].fd, nr);
		proxyCloseClientSocket(nr);
		return(-1);
	    }
	    if (ret == 0) {
		if (debug)
		    fprintf(stderr,
		            "end of stream from client %d on socket %d\n",
			    nr, pollInfos[nr].fd);
		proxyCloseClientSocket(nr);
		return(-1);
	    }
	    total += ret;
	}
    }
415 416 417 418 419 420 421 422
    switch (req->command) {
	case VIR_PROXY_NONE:
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
	    break;
	case VIR_PROXY_VERSION:
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
423
	    req->data.larg = xenVersion;
424
	    break;
425 426 427 428 429
	case VIR_PROXY_LIST: {
	    int maxids;

	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
430 431
	    maxids = sizeof(request.extra.arg) / sizeof(int);
	    ret = xenHypervisorListDomains(conn, &request.extra.arg[0],
432 433 434 435 436 437 438 439 440 441
				           maxids);
	    if (ret < 0) {
	        req->len = sizeof(virProxyPacket);
		req->data.arg = 0;
	    } else {
	        req->len = sizeof(virProxyPacket) + ret * sizeof(int);
		req->data.arg = ret;
	    }
	    break;
	}
442
	case VIR_PROXY_NUM_DOMAIN:
443 444 445 446 447
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
	    req->data.arg = xenHypervisorNumOfDomains(conn);
	    break;
	case VIR_PROXY_MAX_MEMORY:
448 449 450 451
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
	    req->data.larg = xenHypervisorGetDomMaxMemory(conn, req->data.arg);
	    break;
452
	case VIR_PROXY_DOMAIN_INFO:
453 454 455 456 457 458 459 460 461 462 463 464 465
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;
	    memset(&request.extra.dinfo, 0, sizeof(virDomainInfo));
	    ret = xenHypervisorGetDomInfo(conn, req->data.arg,
	                                  &request.extra.dinfo);
	    if (ret < 0) {
	        req->data.arg = -1;
	    } else {
	        req->len += sizeof(virDomainInfo);
	    }
	    break;
	case VIR_PROXY_LOOKUP_ID: {
	    char *name = NULL;
466
	    unsigned char uuid[VIR_UUID_BUFLEN];
467
	    int len;
468 469 470 471

	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;

472
	    if (xenDaemonDomainLookupByID(conn, req->data.arg, &name, uuid) < 0) {
473 474 475 476 477 478 479
                req->data.arg = -1;
            } else {
	        len = strlen(name);
		if (len > 1000) {
		    len = 1000;
		    name[1000] = 0;
		}
480 481 482
	        req->len += VIR_UUID_BUFLEN + len + 1;
		memcpy(&request.extra.str[0], uuid, VIR_UUID_BUFLEN);
		strcpy(&request.extra.str[VIR_UUID_BUFLEN], name);
483
	    }
484 485
	    if (name)
	        free(name);
486 487
	    break;
	}
488 489 490 491 492
	case VIR_PROXY_LOOKUP_UUID: {
	    char **names;
	    char **tmp;
	    int ident, len;
	    char *name = NULL;
493
	    unsigned char uuid[VIR_UUID_BUFLEN];
494

495
	    if (req->len != sizeof(virProxyPacket) + VIR_UUID_BUFLEN)
496 497 498 499 500 501 502 503 504 505 506 507
	        goto comm_error;

	    /*
	     * Xend API forces to collect the full domain list by names, and
             * then query each of them until the id is found
	     */
	    names = xenDaemonListDomainsOld(conn);
	    tmp = names;

	    if (names != NULL) {
	       while (*tmp != NULL) {
		  ident = xenDaemonDomainLookupByName_ids(conn, *tmp, &uuid[0]);
508
		  if (!memcmp(uuid, &request.extra.str[0], VIR_UUID_BUFLEN)) {
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
		     name = *tmp;
		     break;
		  }
		  tmp++;
	       }
	    }
            if (name == NULL) {
	        /* not found */
                req->data.arg = -1;
		req->len = sizeof(virProxyPacket);
            } else {
	        len = strlen(name);
		if (len > 1000) {
		    len = 1000;
		    name[1000] = 0;
		}
	        req->len = sizeof(virProxyPacket) + len + 1;
		strcpy(&request.extra.str[0], name);
                req->data.arg = ident;
	    }
	    free(names);
	    break;
	}
	case VIR_PROXY_LOOKUP_NAME: {
	    int ident;
534
	    unsigned char uuid[VIR_UUID_BUFLEN];
535 536 537 538 539 540 541 542 543 544 545

	    if (req->len > sizeof(virProxyPacket) + 1000)
	        goto comm_error;

	    ident = xenDaemonDomainLookupByName_ids(conn,
	                                    &request.extra.str[0], &uuid[0]);
	    if (ident < 0) {
	        /* not found */
                req->data.arg = -1;
		req->len = sizeof(virProxyPacket);
	    } else {
546 547
	        req->len = sizeof(virProxyPacket) + VIR_UUID_BUFLEN;
		memcpy(&request.extra.str[0], uuid, VIR_UUID_BUFLEN);
548 549 550 551
		req->data.arg = ident;
	    }
	    break;
	}
552
	case VIR_PROXY_NODE_INFO:
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;

	    /*
	     * Hum, could we expect those informations to be unmutable and
	     * cache them ? Since it's probably an unfrequent call better
	     * not make assumption and do the xend RPC each call.
	     */
	    ret = xenDaemonNodeGetInfo(conn, &request.extra.ninfo);
	    if (ret < 0) {
                req->data.arg = -1;
		req->len = sizeof(virProxyPacket);
	    } else {
                req->data.arg = 0;
		req->len = sizeof(virProxyPacket) + sizeof(virNodeInfo);
	    }
569
	    break;
570 571 572 573 574 575 576 577 578 579
	case VIR_PROXY_DOMAIN_XML:
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;

	    xml = xenDaemonDomainDumpXMLByID(conn, request.data.arg);
            if (!xml) {
                req->data.arg = -1;
                req->len = sizeof(virProxyPacket);
	    } else {
                int xmllen = strlen(xml);
580
                if (xmllen > (int) sizeof(request.extra.str)) {
581 582 583 584 585 586 587 588 589 590
                    req->data.arg = -2;
                    req->len = sizeof(virProxyPacket);
                } else {
                    req->data.arg = 0;
                    memmove(&request.extra.str[0], xml, xmllen);
                    req->len = sizeof(virProxyPacket) + xmllen;
                }
                free(xml);
	    }
	    break;
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
	case VIR_PROXY_DOMAIN_OSTYPE:
	    if (req->len != sizeof(virProxyPacket))
	        goto comm_error;

	    ostype = xenStoreDomainGetOSTypeID(conn, request.data.arg);
            if (!ostype) {
                req->data.arg = -1;
                req->len = sizeof(virProxyPacket);
	    } else {
                int ostypelen = strlen(ostype);
                if (ostypelen > (int) sizeof(request.extra.str)) {
                    req->data.arg = -2;
                    req->len = sizeof(virProxyPacket);
                } else {
                    req->data.arg = 0;
                    memmove(&request.extra.str[0], ostype, ostypelen);
                    req->len = sizeof(virProxyPacket) + ostypelen;
                }
                free(ostype);
	    }
	    break;
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
	default:
	    goto comm_error;
    }
    ret = proxyWriteClientSocket(nr, req);
    return(ret);

comm_error:
    fprintf(stderr,
	    "Communication error with client %d: malformed packet\n", nr);
    proxyCloseClientSocket(nr);
    return(-1);
}

/************************************************************************
 *									*
 *		Main loop processing					*
 *									*
 ************************************************************************/

/**
 * proxyProcessRequests:
 *
 * process requests and timers 
 */
static void
proxyProcessRequests(void) {
    int exit_timeout = 30;
    int ret, i;

    while (!done) {
        /*
	 * wait for requests, with a one second timeout
	 */
        ret = poll(&pollInfos[0], nbClients + 1, 1000);
	if (ret == 0) { /* timeout */
647
	    if ((nbClients == 0) && (persist == 0)) {
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
	        exit_timeout--;
		if (exit_timeout == 0) {
		    done = 1;
		    if (debug > 0) {
		        fprintf(stderr, "Exitting after 30s without clients\n");
		    }
		}
	    } else
	        exit_timeout = 30;
	    if (debug > 1)
	        fprintf(stderr, "poll timeout\n");
	    continue;
	} else if (ret < 0) {
	    if (errno == EINTR) {
	        if (debug > 0)
		    fprintf(stderr, "poll syscall interrupted\n");
		    continue;
	    }
	    fprintf(stderr, "poll syscall failed\n");
	    break;
	}
	/*
	 * there have been I/O to process
	 */
	exit_timeout = 30;
	if (pollInfos[0].revents != 0) {
	    if (pollInfos[0].revents & POLLIN) {
	        proxyAcceptClientSocket();
	    } else {
		fprintf(stderr, "Got an error %d on incoming socket %d\n",
		        pollInfos[0].revents, pollInfos[0].fd);
		break;
	    }
	}

	/*
	 * process the clients in reverse order since on error or disconnect
	 * pollInfos is compacted to remove the given client.
	 */
	for (i = nbClients;i > 0;i--) {
	    if (pollInfos[i].revents & POLLIN) {
		proxyReadClientSocket(i);
	    } else if (pollInfos[i].revents != 0) {
		fprintf(stderr, "Got an error %d on client %d socket %d\n",
		        pollInfos[i].revents, i, pollInfos[i].fd);
		proxyCloseClientSocket(i);
	    }
	}
	    
    }
}

/**
 * proxyMainLoop:
 *
 * main loop for the proxy, continually try to keep the unix socket
 * open, serve client requests, and process timing events.
 */

static void 
proxyMainLoop(void) {
    while (! done) {
	if (proxyListenUnixSocket(PROXY_SOCKET_PATH) < 0)
	    break;
	proxyProcessRequests();
    }
    proxyCloseClientSockets();
}

/**
 * usage:
 *
 * dump on stdout informations about the program
 */
static void
usage(const char *progname) {
    printf("Usage: %s [-v] [-v]\n", progname);
    printf("    option -v increase the verbosity level for debugging\n");
    printf("This is a proxy for xen services used by libvirt to offer\n");
    printf("safe and fast status information on the Xen virtualization.\n");
    printf("This need not be run manually it's started automatically.\n");
}

/**
 * main:
 *
 * Check that we are running with root priviledges, initialize the
 * connections to the daemon and or hypervisor, and then run the main loop
 */
int main(int argc, char **argv) {
    int i;

740 741 742 743 744 745 746 747 748 749 750 751 752
    if (!setlocale(LC_ALL, "")) {
        perror("setlocale");
	return -1;
    }
    if (!bindtextdomain(GETTEXT_PACKAGE, LOCALEBASEDIR)) {
        perror("bindtextdomain");
	return -1;
    }
    if (!textdomain(GETTEXT_PACKAGE)) {
        perror("textdomain");
	return -1;
    }

753 754 755
    for (i = 1; i < argc; i++) {
         if (!strcmp(argv[i], "-v")) {
	     debug++;
756 757
         } else if (!strcmp(argv[i], "-no-timeout")) {
	     persist = 1;
758 759 760 761 762
	 } else {
	     usage(argv[0]);
	     exit(1);
	 }
    }
763 764


765 766 767 768 769
    if (geteuid() != 0) {
        fprintf(stderr, "%s must be run as root or suid\n", argv[0]);
	/* exit(1); */
    }

770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
    /*
     * setup a connection block
     */
    memset(conn, 0, sizeof(conninfos));
    conn->magic = VIR_CONNECT_MAGIC;

    /*
     * very fist thing, use the socket as an exclusive lock, this then
     * allow to do timed exits, avoiding constant CPU usage in case of
     * failure.
     */
    if (proxyListenUnixSocket(PROXY_SOCKET_PATH) < 0)
        exit(0);
    if (proxyInitXen() == 0)
	proxyMainLoop();
    sleep(1);
    proxyCloseUnixSocket();
787 788
    exit(0);
}