2007-02-14 01:40:09 +00:00
|
|
|
/*
|
2009-09-16 12:37:26 +01:00
|
|
|
* libvirtd.h: daemon data structure definitions
|
2007-02-14 01:40:09 +00:00
|
|
|
*
|
2014-01-05 12:37:17 -07:00
|
|
|
* Copyright (C) 2006-2014 Red Hat, Inc.
|
2007-02-14 01:40:09 +00:00
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 16:30:55 -06:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 18:06:23 +08:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2007-02-14 01:40:09 +00:00
|
|
|
*
|
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2012-01-20 11:43:28 -07:00
|
|
|
#ifndef LIBVIRTD_H__
|
|
|
|
|
# define LIBVIRTD_H__
|
|
|
|
|
|
|
|
|
|
# define VIR_ENUM_SENTINELS
|
2010-03-09 19:22:22 +01:00
|
|
|
|
|
|
|
|
# include <rpc/types.h>
|
|
|
|
|
# include <rpc/xdr.h>
|
|
|
|
|
# include "remote_protocol.h"
|
2012-12-21 14:20:04 +00:00
|
|
|
# include "lxc_protocol.h"
|
2010-04-16 22:09:25 -04:00
|
|
|
# include "qemu_protocol.h"
|
2012-12-13 15:49:48 +00:00
|
|
|
# include "virthread.h"
|
2012-09-20 12:58:29 +01:00
|
|
|
# if WITH_SASL
|
2011-07-05 17:30:09 +02:00
|
|
|
# include "virnetsaslcontext.h"
|
|
|
|
|
# endif
|
2011-05-16 18:13:11 +01:00
|
|
|
# include "virnetserverprogram.h"
|
2010-03-09 19:22:22 +01:00
|
|
|
|
2011-05-16 18:13:11 +01:00
|
|
|
typedef struct daemonClientStream daemonClientStream;
|
|
|
|
|
typedef daemonClientStream *daemonClientStreamPtr;
|
|
|
|
|
typedef struct daemonClientPrivate daemonClientPrivate;
|
|
|
|
|
typedef daemonClientPrivate *daemonClientPrivatePtr;
|
2014-01-05 12:37:17 -07:00
|
|
|
typedef struct daemonClientEventCallback daemonClientEventCallback;
|
|
|
|
|
typedef daemonClientEventCallback *daemonClientEventCallbackPtr;
|
2009-07-10 13:06:36 +01:00
|
|
|
|
2007-02-14 01:40:09 +00:00
|
|
|
/* Stores the per-client connection state */
|
2011-05-16 18:13:11 +01:00
|
|
|
struct daemonClientPrivate {
|
|
|
|
|
/* Hold while accessing any data except conn */
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutex lock;
|
2008-12-04 22:16:40 +00:00
|
|
|
|
2014-01-05 17:23:55 -07:00
|
|
|
daemonClientEventCallbackPtr *domainEventCallbacks;
|
|
|
|
|
size_t ndomainEventCallbacks;
|
2014-01-05 12:37:17 -07:00
|
|
|
daemonClientEventCallbackPtr *networkEventCallbacks;
|
|
|
|
|
size_t nnetworkEventCallbacks;
|
2014-01-29 15:30:44 -07:00
|
|
|
daemonClientEventCallbackPtr *qemuEventCallbacks;
|
|
|
|
|
size_t nqemuEventCallbacks;
|
2007-06-11 12:04:54 +00:00
|
|
|
|
2012-09-20 12:58:29 +01:00
|
|
|
# if WITH_SASL
|
2011-05-16 18:13:11 +01:00
|
|
|
virNetSASLSessionPtr sasl;
|
2011-07-05 17:30:09 +02:00
|
|
|
# endif
|
2009-07-10 13:06:36 +01:00
|
|
|
|
2007-06-11 12:04:54 +00:00
|
|
|
/* This is only valid if a remote open call has been made on this
|
|
|
|
|
* connection, otherwise it will be NULL. Also if remote close is
|
|
|
|
|
* called, it will be set back to NULL if that succeeds.
|
|
|
|
|
*/
|
|
|
|
|
virConnectPtr conn;
|
2007-02-14 01:40:09 +00:00
|
|
|
|
2011-05-16 18:13:11 +01:00
|
|
|
daemonClientStreamPtr streams;
|
2011-08-24 15:33:34 +02:00
|
|
|
bool keepalive_supported;
|
2007-02-14 01:40:09 +00:00
|
|
|
};
|
|
|
|
|
|
2012-09-20 12:58:29 +01:00
|
|
|
# if WITH_SASL
|
2011-05-16 18:13:11 +01:00
|
|
|
extern virNetSASLContextPtr saslCtxt;
|
2011-07-05 17:30:09 +02:00
|
|
|
# endif
|
2011-05-16 18:13:11 +01:00
|
|
|
extern virNetServerProgramPtr remoteProgram;
|
|
|
|
|
extern virNetServerProgramPtr qemuProgram;
|
2009-01-20 19:27:11 +00:00
|
|
|
|
2007-02-14 01:40:09 +00:00
|
|
|
#endif
|