internal.h 7.5 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * internal.h: daemon data structure definitions
 *
 * Copyright (C) 2006, 2007 Red Hat, Inc.
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */


#ifndef QEMUD_INTERNAL_H__
#define QEMUD_INTERNAL_H__

#include <sys/socket.h>
#include <netinet/in.h>

#include "protocol.h"
32
#include "bridge.h"
33
#include "iptables.h"
D
Daniel P. Berrange 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47

#ifdef __GNUC__
#ifdef HAVE_ANSIDECL_H
#include <ansidecl.h>
#endif
#ifndef ATTRIBUTE_UNUSED
#define ATTRIBUTE_UNUSED __attribute__((unused))
#endif
#else
#define ATTRIBUTE_UNUSED
#endif

#define UUID_LEN 16

48 49 50 51 52 53 54 55 56
typedef enum {
    QEMUD_ERR,
    QEMUD_WARN,
    QEMUD_INFO,
#ifdef ENABLE_DEBUG
    QEMUD_DEBUG
#endif
} qemudLogPriority;

D
Daniel P. Berrange 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/* Different types of QEMU acceleration possible */
enum qemud_vm_virt_type {
    QEMUD_VIRT_QEMU,
    QEMUD_VIRT_KQEMU,
    QEMUD_VIRT_KVM,
};


/* Two types of disk backends */
enum qemud_vm_disk_type {
    QEMUD_DISK_BLOCK,
    QEMUD_DISK_FILE
};

/* Three types of disk frontend */
enum qemud_vm_disk_device {
    QEMUD_DISK_DISK,
    QEMUD_DISK_CDROM,
    QEMUD_DISK_FLOPPY,
};

/* Stores the virtual disk configuration */
struct qemud_vm_disk_def {
    int type;
    int device;
    char src[PATH_MAX];
    char dst[NAME_MAX];
    int readonly;

    struct qemud_vm_disk_def *next;
};

#define QEMUD_MAC_ADDRESS_LEN 6
#define QEMUD_OS_TYPE_MAX_LEN 10
#define QEMUD_OS_ARCH_MAX_LEN 10
#define QEMUD_OS_MACHINE_MAX_LEN 10

/* 5 different types of networking config */
enum qemud_vm_net_type {
    QEMUD_NET_USER,
    QEMUD_NET_TAP,
    QEMUD_NET_SERVER,
    QEMUD_NET_CLIENT,
    QEMUD_NET_MCAST,
101
    QEMUD_NET_NETWORK,
D
Daniel P. Berrange 已提交
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
    /*  QEMUD_NET_VDE*/
};

/* Stores the virtual network interface configuration */
struct qemud_vm_net_def {
    int type;
    int vlan;
    unsigned char mac[QEMUD_MAC_ADDRESS_LEN];
    union {
        struct {
            char ifname[NAME_MAX];
            char script[PATH_MAX];
        } tap;
        struct {
            struct sockaddr_in listen;
            int port;
        } server;
        struct {
            struct sockaddr_in connect;
            int port;
        } client;
        struct {
            struct sockaddr_in group;
            int port;
        } mcast;
        struct {
            char vlan[PATH_MAX];
        } vde;
130 131 132 133
        struct {
            char name[QEMUD_MAX_NAME_LEN];
            char tapifname[BR_IFNAME_MAXLEN];
        } network;
D
Daniel P. Berrange 已提交
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
    } dst;

    struct qemud_vm_net_def *next;
};

#define QEMUD_MAX_BOOT_DEVS 4

/* 3 possible boot devices */
enum qemud_vm_boot_order {
    QEMUD_BOOT_FLOPPY,
    QEMUD_BOOT_CDROM,
    QEMUD_BOOT_DISK,
    QEMUD_BOOT_NET,
};
/* 3 possible graphics console modes */
enum qemud_vm_grapics_type {
    QEMUD_GRAPHICS_NONE,
    QEMUD_GRAPHICS_SDL,
    QEMUD_GRAPHICS_VNC,
};

enum qemud_vm_features {
    QEMUD_FEATURE_ACPI = 1,
};

/* Operating system configuration data & machine / arch */
struct qemud_vm_os_def {
    char type[QEMUD_OS_TYPE_MAX_LEN];
    char arch[QEMUD_OS_ARCH_MAX_LEN];
    char machine[QEMUD_OS_MACHINE_MAX_LEN];
    int nBootDevs;
    int bootDevs[QEMUD_MAX_BOOT_DEVS];
    char kernel[PATH_MAX];
    char initrd[PATH_MAX];
    char cmdline[PATH_MAX];
    char binary[PATH_MAX];
};

/* Guest VM main configuration */
struct qemud_vm_def {
    int virtType;
    unsigned char uuid[QEMUD_UUID_RAW_LEN];
    char name[QEMUD_MAX_NAME_LEN];

    int memory;
    int maxmem;
    int vcpus;

    struct qemud_vm_os_def os;

    int features;
    int graphicsType;
    int vncPort;
    int vncActivePort;

    int ndisks;
    struct qemud_vm_disk_def *disks;

    int nnets;
    struct qemud_vm_net_def *nets;
};

/* Guest VM runtime state */
struct qemud_vm {
    int stdout;
    int stderr;
    int monitor;
    int pid;
202
    int id;
D
Daniel P. Berrange 已提交
203

204 205 206
    int *tapfds;
    int ntapfds;

D
Daniel P. Berrange 已提交
207 208
    char configFile[PATH_MAX];

209 210
    struct qemud_vm_def *def; /* The current definition */
    struct qemud_vm_def *newDef; /* New definition to activate at shutdown */
D
Daniel P. Berrange 已提交
211

212 213
    unsigned int autostart : 1;

D
Daniel P. Berrange 已提交
214 215 216
    struct qemud_vm *next;
};

217 218 219 220 221 222 223 224
/* Store start and end addresses of a dhcp range */
struct qemud_dhcp_range_def {
    char start[BR_INET_ADDR_MAXLEN];
    char end[BR_INET_ADDR_MAXLEN];

    struct qemud_dhcp_range_def *next;
};

225 226 227 228
/* Virtual Network main configuration */
struct qemud_network_def {
    unsigned char uuid[QEMUD_UUID_RAW_LEN];
    char name[QEMUD_MAX_NAME_LEN];
229 230 231 232 233 234 235

    char bridge[BR_IFNAME_MAXLEN];
    int disableSTP;
    int forwardDelay;

    char ipAddress[BR_INET_ADDR_MAXLEN];
    char netmask[BR_INET_ADDR_MAXLEN];
236 237 238

    int nranges;
    struct qemud_dhcp_range_def *ranges;
239 240 241 242
};

/* Virtual Network runtime state */
struct qemud_network {
243 244
    char configFile[PATH_MAX];

245 246
    struct qemud_network_def *def; /* The current definition */
    struct qemud_network_def *newDef; /* New definition to activate at shutdown */
247 248

    char bridge[BR_IFNAME_MAXLEN];
249
    int dnsmasqPid;
250 251

    unsigned int active : 1;
252
    unsigned int autostart : 1;
253

254 255 256
    struct qemud_network *next;
};

D
Daniel P. Berrange 已提交
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
/* Stores the per-client connection state */
struct qemud_client {
    int fd;
    int readonly;
    struct qemud_packet incoming;
    unsigned int incomingReceived;
    struct qemud_packet outgoing;
    unsigned int outgoingSent;
    int tx;
    struct qemud_client *next;
};


struct qemud_socket {
    int fd;
    int readonly;
    struct qemud_socket *next;
};

/* Main server state */
struct qemud_server {
    int nsockets;
    struct qemud_socket *sockets;
    int qemuVersion;
    int nclients;
    struct qemud_client *clients;
283
    int sigread;
D
Daniel P. Berrange 已提交
284 285 286
    int nvmfds;
    int nactivevms;
    int ninactivevms;
287
    struct qemud_vm *vms;
D
Daniel P. Berrange 已提交
288
    int nextvmid;
289 290
    int nactivenetworks;
    int ninactivenetworks;
291
    struct qemud_network *networks;
292
    brControl *brctl;
293
    iptablesContext *iptables;
D
Daniel P. Berrange 已提交
294
    char configDir[PATH_MAX];
295
    char networkConfigDir[PATH_MAX];
D
Daniel P. Berrange 已提交
296 297
    char errorMessage[QEMUD_MAX_ERROR_LEN];
    int errorCode;
298
    unsigned int shutdown : 1;
D
Daniel P. Berrange 已提交
299 300 301 302 303 304 305 306
};

int qemudStartVMDaemon(struct qemud_server *server,
                       struct qemud_vm *vm);

int qemudShutdownVMDaemon(struct qemud_server *server,
                          struct qemud_vm *vm);

307 308 309 310 311 312
int qemudStartNetworkDaemon(struct qemud_server *server,
                            struct qemud_network *network);

int qemudShutdownNetworkDaemon(struct qemud_server *server,
                               struct qemud_network *network);

313 314 315 316 317 318 319
void qemudLog(int priority, const char *fmt, ...);

#ifdef ENABLE_DEBUG
#define qemudDebug(...) qemudLog(QEMUD_DEBUG, __VA_ARGS__)
#else
#define qemudDebug(fmt, ...) do { } while(0);
#endif
320

321 322 323 324 325 326 327 328 329 330 331 332
static inline int
qemudIsActiveVM(struct qemud_vm *vm)
{
    return vm->id != -1;
}

static inline int
qemudIsActiveNetwork(struct qemud_network *network)
{
    return network->active;
}

D
Daniel P. Berrange 已提交
333 334 335 336 337 338 339 340 341 342
#endif

/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */