network_conf.h 16.1 KB
Newer Older
1 2 3
/*
 * network_conf.h: network XML handling
 *
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006-2008 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#ifndef __NETWORK_CONF_H__
25
# define __NETWORK_CONF_H__
26

27
# define DNS_RECORD_LENGTH_SRV  (512 - 30)  /* Limit minus overhead as mentioned in RFC-2782 */
28

29 30 31
# include <libxml/parser.h>
# include <libxml/tree.h>
# include <libxml/xpath.h>
32

33
# include "internal.h"
34
# include "virthread.h"
35 36 37
# include "virsocketaddr.h"
# include "virnetdevbandwidth.h"
# include "virnetdevvportprofile.h"
38
# include "virnetdevvlan.h"
39
# include "virmacaddr.h"
40
# include "device_conf.h"
41
# include "virbitmap.h"
42

43
typedef enum {
44 45 46
    VIR_NETWORK_FORWARD_NONE   = 0,
    VIR_NETWORK_FORWARD_NAT,
    VIR_NETWORK_FORWARD_ROUTE,
47 48 49 50
    VIR_NETWORK_FORWARD_BRIDGE,
    VIR_NETWORK_FORWARD_PRIVATE,
    VIR_NETWORK_FORWARD_VEPA,
    VIR_NETWORK_FORWARD_PASSTHROUGH,
51
    VIR_NETWORK_FORWARD_HOSTDEV,
52 53

    VIR_NETWORK_FORWARD_LAST,
54
} virNetworkForwardType;
55

56
typedef enum {
57 58 59 60 61 62
    VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NONE = 0,
    VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_PCI,
    VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV,
    /* USB Device to be added here when supported */

    VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_LAST,
63
} virNetworkForwardHostdevDeviceType;
64

65 66 67 68 69 70 71 72 73 74 75 76 77 78
/* The backend driver used for devices from the pool. Currently used
 * only for PCI devices (vfio vs. kvm), but could be used for other
 * device types in the future.
 */
typedef enum {
    VIR_NETWORK_FORWARD_DRIVER_NAME_DEFAULT, /* kvm now, could change */
    VIR_NETWORK_FORWARD_DRIVER_NAME_KVM,    /* force legacy kvm style */
    VIR_NETWORK_FORWARD_DRIVER_NAME_VFIO,   /* force vfio */

    VIR_NETWORK_FORWARD_DRIVER_NAME_LAST
} virNetworkForwardDriverNameType;

VIR_ENUM_DECL(virNetworkForwardDriverName)

79 80 81 82
typedef struct _virNetworkDHCPHostDef virNetworkDHCPHostDef;
typedef virNetworkDHCPHostDef *virNetworkDHCPHostDefPtr;
struct _virNetworkDHCPHostDef {
    char *mac;
83
    char *id;
84
    char *name;
85
    virSocketAddr ip;
86 87
};

88 89 90
typedef struct _virNetworkDNSTxtDef virNetworkDNSTxtDef;
typedef virNetworkDNSTxtDef *virNetworkDNSTxtDefPtr;
struct _virNetworkDNSTxtDef {
91 92 93 94
    char *name;
    char *value;
};

95 96 97
typedef struct _virNetworkDNSSrvDef virNetworkDNSSrvDef;
typedef virNetworkDNSSrvDef *virNetworkDNSSrvDefPtr;
struct _virNetworkDNSSrvDef {
98 99 100 101
    char *domain;
    char *service;
    char *protocol;
    char *target;
102 103 104
    unsigned int port;
    unsigned int priority;
    unsigned int weight;
105 106
};

107 108 109
typedef struct _virNetworkDNSHostDef virNetworkDNSHostDef;
typedef virNetworkDNSHostDef *virNetworkDNSHostDefPtr;
struct _virNetworkDNSHostDef {
110
    virSocketAddr ip;
111
    size_t nnames;
112
    char **names;
113
};
114

115 116
typedef struct _virNetworkDNSDef virNetworkDNSDef;
typedef virNetworkDNSDef *virNetworkDNSDefPtr;
117
struct _virNetworkDNSDef {
J
Ján Tomko 已提交
118
    int forwardPlainNames; /* enum virTristateBool */
119 120 121 122 123 124
    size_t ntxts;
    virNetworkDNSTxtDefPtr txts;
    size_t nhosts;
    virNetworkDNSHostDefPtr hosts;
    size_t nsrvs;
    virNetworkDNSSrvDefPtr srvs;
125 126
    size_t nfwds;
    char **forwarders;
127
};
128

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
typedef struct _virNetworkIpDef virNetworkIpDef;
typedef virNetworkIpDef *virNetworkIpDefPtr;
struct _virNetworkIpDef {
    char *family;               /* ipv4 or ipv6 - default is ipv4 */
    virSocketAddr address;      /* Bridge IP address */

    /* One or the other of the following two will be used for a given
     * IP address, but never both. The parser guarantees this.
     * Use virNetworkIpDefPrefix/virNetworkIpDefNetmask rather
     * than accessing the data directly - these utility functions
     * will convert one into the other as necessary.
     */
    unsigned int prefix;        /* ipv6 - only prefix allowed */
    virSocketAddr netmask;      /* ipv4 - either netmask or prefix specified */

144
    size_t nranges;             /* Zero or more dhcp ranges */
145
    virSocketAddrRangePtr ranges;
146

147
    size_t nhosts;              /* Zero or more dhcp hosts */
148 149 150 151 152 153 154
    virNetworkDHCPHostDefPtr hosts;

    char *tftproot;
    char *bootfile;
    virSocketAddr bootserver;
   };

155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
typedef struct _virNetworkRouteDef virNetworkRouteDef;
typedef virNetworkRouteDef *virNetworkRouteDefPtr;
struct _virNetworkRouteDef {
    char *family;               /* ipv4 or ipv6 - default is ipv4 */
    virSocketAddr address;      /* Routed Network IP address */

    /* One or the other of the following two will be used for a given
     * Network address, but never both. The parser guarantees this.
     * The virSocketAddrGetIpPrefix() can be used to get a
     * valid prefix.
     */
    virSocketAddr netmask;      /* ipv4 - either netmask or prefix specified */
    unsigned int prefix;        /* ipv6 - only prefix allowed */
    bool has_prefix;            /* prefix= was specified */
    unsigned int metric;        /* value for metric (defaults to 1) */
    bool has_metric;            /* metric= was specified */
    virSocketAddr gateway;      /* gateway IP address for ip-route */
   };

174 175 176
typedef struct _virNetworkForwardIfDef virNetworkForwardIfDef;
typedef virNetworkForwardIfDef *virNetworkForwardIfDefPtr;
struct _virNetworkForwardIfDef {
177 178 179 180 181 182 183
    int type;
    union {
        virDevicePCIAddress pci; /*PCI Address of device */
        /* when USB devices are supported a new variable to be added here */
        char *dev;      /* name of device */
    }device;
    int connections; /* how many guest interfaces are connected to this device? */
184 185
};

186 187 188 189
typedef struct _virNetworkForwardPfDef virNetworkForwardPfDef;
typedef virNetworkForwardPfDef *virNetworkForwardPfDefPtr;
struct _virNetworkForwardPfDef {
    char *dev;      /* name of device */
190
    int connections; /* how many guest interfaces are connected to this device? */
191 192
};

193 194 195 196 197
typedef struct _virNetworkForwardDef virNetworkForwardDef;
typedef virNetworkForwardDef *virNetworkForwardDefPtr;
struct _virNetworkForwardDef {
    int type;     /* One of virNetworkForwardType constants */
    bool managed;  /* managed attribute for hostdev mode */
198
    int driverName; /* enum virNetworkForwardDriverNameType */
199 200 201 202 203 204 205 206 207

    /* If there are multiple forward devices (i.e. a pool of
     * interfaces), they will be listed here.
     */
    size_t npfs;
    virNetworkForwardPfDefPtr pfs;

    size_t nifs;
    virNetworkForwardIfDefPtr ifs;
208

209
    /* ranges for NAT */
210 211
    virSocketAddrRange addr;
    virPortRange port;
212 213
};

214 215 216 217 218
typedef struct _virPortGroupDef virPortGroupDef;
typedef virPortGroupDef *virPortGroupDefPtr;
struct _virPortGroupDef {
    char *name;
    bool isDefault;
219
    virNetDevVPortProfilePtr virtPortProfile;
220
    virNetDevBandwidthPtr bandwidth;
221
    virNetDevVlan vlan;
222
    int trustGuestRxFilters; /* enum virTristateBool */
223 224
};

225 226 227 228
typedef struct _virNetworkDef virNetworkDef;
typedef virNetworkDef *virNetworkDefPtr;
struct _virNetworkDef {
    unsigned char uuid[VIR_UUID_BUFLEN];
M
Matthias Bolte 已提交
229
    bool uuid_specified;
230
    char *name;
231
    int   connections; /* # of guest interfaces connected to this network */
232 233

    char *bridge;       /* Name of bridge device */
234
    char *domain;
235
    unsigned long delay;   /* Bridge forward delay (ms) */
236
    bool stp; /* Spanning tree protocol */
237
    virMacAddr mac; /* mac address of bridge device */
238
    bool mac_specified;
239

240 241 242 243 244
    /* specified if ip6tables rules added
     * when no ipv6 gateway addresses specified.
     */
    bool ipv6nogw;

245
    virNetworkForwardDef forward;
246

247 248
    size_t nips;
    virNetworkIpDefPtr ips; /* ptr to array of IP addresses on this network */
249

250 251 252
    size_t nroutes;
    virNetworkRouteDefPtr routes; /* ptr to array of static routes on this interface */

253
    virNetworkDNSDef dns;   /* dns related configuration */
254
    virNetDevVPortProfilePtr virtPortProfile;
255 256 257

    size_t nPortGroups;
    virPortGroupDefPtr portGroups;
258
    virNetDevBandwidthPtr bandwidth;
259
    virNetDevVlan vlan;
260
    int trustGuestRxFilters; /* enum virTristateBool */
261 262 263 264 265
};

typedef struct _virNetworkObj virNetworkObj;
typedef virNetworkObj *virNetworkObjPtr;
struct _virNetworkObj {
266
    virMutex lock;
267

268
    pid_t dnsmasqPid;
269
    pid_t radvdPid;
270 271 272 273 274 275
    unsigned int active : 1;
    unsigned int autostart : 1;
    unsigned int persistent : 1;

    virNetworkDefPtr def; /* The current definition */
    virNetworkDefPtr newDef; /* New definition to activate at shutdown */
276 277 278

    virBitmapPtr class_id; /* bitmap of class IDs for QoS */
    unsigned long long floor_sum; /* sum of all 'floor'-s of attached NICs */
279 280

    unsigned int taint;
281
};
282

283 284 285
typedef struct _virNetworkObjList virNetworkObjList;
typedef virNetworkObjList *virNetworkObjListPtr;
struct _virNetworkObjList {
286
    size_t count;
287
    virNetworkObjPtr *objs;
288 289
};

290
typedef enum {
291 292 293 294 295 296 297 298
    VIR_NETWORK_TAINT_HOOK,                 /* Hook script was executed over
                                               network. We can't guarantee
                                               connectivity or other settings
                                               as the script may have played
                                               with iptables, tc, you name it.
                                             */

    VIR_NETWORK_TAINT_LAST
299
} virNetworkTaintFlags;
300

301
static inline int
E
Eric Blake 已提交
302
virNetworkObjIsActive(const virNetworkObj *net)
303 304 305 306
{
    return net->active;
}

307
bool virNetworkObjTaint(virNetworkObjPtr obj,
308
                        virNetworkTaintFlags taint);
309

E
Eric Blake 已提交
310
virNetworkObjPtr virNetworkFindByUUID(virNetworkObjListPtr nets,
311
                                      const unsigned char *uuid);
E
Eric Blake 已提交
312
virNetworkObjPtr virNetworkFindByName(virNetworkObjListPtr nets,
313 314 315 316 317
                                      const char *name);


void virNetworkDefFree(virNetworkDefPtr def);
void virNetworkObjFree(virNetworkObjPtr net);
318
void virNetworkObjListFree(virNetworkObjListPtr vms);
319

320 321 322 323

typedef bool (*virNetworkObjListFilter)(virConnectPtr conn,
                                        virNetworkDefPtr def);

324
virNetworkObjPtr virNetworkAssignDef(virNetworkObjListPtr nets,
E
Eric Blake 已提交
325
                                     virNetworkDefPtr def,
326
                                     bool live);
327 328 329
void virNetworkObjAssignDef(virNetworkObjPtr network,
                            virNetworkDefPtr def,
                            bool live);
330
int virNetworkObjSetDefTransient(virNetworkObjPtr network, bool live);
331
void virNetworkObjUnsetDefTransient(virNetworkObjPtr network);
332 333 334 335 336 337
virNetworkDefPtr virNetworkObjGetPersistentDef(virNetworkObjPtr network);
int virNetworkObjReplacePersistentDef(virNetworkObjPtr network,
                                      virNetworkDefPtr def);
virNetworkDefPtr virNetworkDefCopy(virNetworkDefPtr def, unsigned int flags);
int virNetworkConfigChangeSetup(virNetworkObjPtr dom, unsigned int flags);

338
void virNetworkRemoveInactive(virNetworkObjListPtr nets,
E
Eric Blake 已提交
339
                              virNetworkObjPtr net);
340

341 342 343
virNetworkDefPtr virNetworkDefParseString(const char *xmlStr);
virNetworkDefPtr virNetworkDefParseFile(const char *filename);
virNetworkDefPtr virNetworkDefParseNode(xmlDocPtr xml,
344
                                        xmlNodePtr root);
E
Eric Blake 已提交
345
char *virNetworkDefFormat(const virNetworkDef *def, unsigned int flags);
346 347 348
int virNetworkDefFormatBuf(virBufferPtr buf,
                           const virNetworkDef *def,
                           unsigned int flags);
349

350
static inline const char *
E
Eric Blake 已提交
351
virNetworkDefForwardIf(const virNetworkDef *def, size_t n)
352
{
353 354 355
    return ((def->forward.ifs && (def->forward.nifs > n) &&
             def->forward.ifs[n].type == VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV)
            ? def->forward.ifs[n].device.dev : NULL);
356 357 358 359 360
}

virPortGroupDefPtr virPortGroupFindByName(virNetworkDefPtr net,
                                          const char *portgroup);

361
virNetworkIpDefPtr
E
Eric Blake 已提交
362
virNetworkDefGetIpByIndex(const virNetworkDef *def,
363
                          int family, size_t n);
E
Eric Blake 已提交
364 365
int virNetworkIpDefPrefix(const virNetworkIpDef *def);
int virNetworkIpDefNetmask(const virNetworkIpDef *def,
366
                           virSocketAddrPtr netmask);
367

368
int virNetworkSaveXML(const char *configDir,
369 370 371
                      virNetworkDefPtr def,
                      const char *xml);

372
int virNetworkSaveConfig(const char *configDir,
373
                         virNetworkDefPtr def);
374

375 376 377
int virNetworkSaveStatus(const char *statusDir,
                         virNetworkObjPtr net) ATTRIBUTE_RETURN_CHECK;

378
virNetworkObjPtr virNetworkLoadConfig(virNetworkObjListPtr nets,
379 380 381 382
                                      const char *configDir,
                                      const char *autostartDir,
                                      const char *file);

383 384 385 386
virNetworkObjPtr virNetworkLoadState(virNetworkObjListPtr nets,
                                     const char *stateDir,
                                     const char *name);

387
int virNetworkLoadAllConfigs(virNetworkObjListPtr nets,
388 389 390
                             const char *configDir,
                             const char *autostartDir);

391 392 393
int virNetworkLoadAllState(virNetworkObjListPtr nets,
                           const char *stateDir);

394
int virNetworkDeleteConfig(const char *configDir,
395
                           const char *autostartDir,
396 397
                           virNetworkObjPtr net);

398
char *virNetworkConfigFile(const char *dir,
399 400
                           const char *name);

E
Eric Blake 已提交
401
int virNetworkBridgeInUse(virNetworkObjListPtr nets,
402 403 404
                          const char *bridge,
                          const char *skipname);

E
Eric Blake 已提交
405
char *virNetworkAllocateBridge(virNetworkObjListPtr nets,
406
                               const char *template);
407

E
Eric Blake 已提交
408
int virNetworkSetBridgeName(virNetworkObjListPtr nets,
409 410
                            virNetworkDefPtr def,
                            int check_collision);
411

412 413
void virNetworkSetBridgeMacAddr(virNetworkDefPtr def);

414 415 416 417 418 419 420 421
int
virNetworkObjUpdate(virNetworkObjPtr obj,
                    unsigned int command, /* virNetworkUpdateCommand */
                    unsigned int section, /* virNetworkUpdateSection */
                    int parentIndex,
                    const char *xml,
                    unsigned int flags);  /* virNetworkUpdateFlags */

422 423
int virNetworkObjIsDuplicate(virNetworkObjListPtr doms,
                             virNetworkDefPtr def,
424
                             bool check_active);
425

D
Daniel P. Berrange 已提交
426 427 428
void virNetworkObjLock(virNetworkObjPtr obj);
void virNetworkObjUnlock(virNetworkObjPtr obj);

M
Matthias Bolte 已提交
429 430
VIR_ENUM_DECL(virNetworkForward)

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
# define VIR_CONNECT_LIST_NETWORKS_FILTERS_ACTIVE   \
                (VIR_CONNECT_LIST_NETWORKS_ACTIVE | \
                 VIR_CONNECT_LIST_NETWORKS_INACTIVE)

# define VIR_CONNECT_LIST_NETWORKS_FILTERS_PERSISTENT   \
                (VIR_CONNECT_LIST_NETWORKS_PERSISTENT | \
                 VIR_CONNECT_LIST_NETWORKS_TRANSIENT)

# define VIR_CONNECT_LIST_NETWORKS_FILTERS_AUTOSTART    \
                (VIR_CONNECT_LIST_NETWORKS_AUTOSTART |  \
                 VIR_CONNECT_LIST_NETWORKS_NO_AUTOSTART)

# define VIR_CONNECT_LIST_NETWORKS_FILTERS_ALL                  \
                (VIR_CONNECT_LIST_NETWORKS_FILTERS_ACTIVE     | \
                 VIR_CONNECT_LIST_NETWORKS_FILTERS_PERSISTENT | \
                 VIR_CONNECT_LIST_NETWORKS_FILTERS_AUTOSTART)

448 449 450 451 452
int virNetworkObjListExport(virConnectPtr conn,
                            virNetworkObjList netobjs,
                            virNetworkPtr **nets,
                            virNetworkObjListFilter filter,
                            unsigned int flags);
453

J
Ján Tomko 已提交
454 455 456 457 458 459 460 461 462
/* for testing */
int
virNetworkDefUpdateSection(virNetworkDefPtr def,
                           unsigned int command, /* virNetworkUpdateCommand */
                           unsigned int section, /* virNetworkUpdateSection */
                           int parentIndex,
                           const char *xml,
                           unsigned int flags);  /* virNetworkUpdateFlags */

463
VIR_ENUM_DECL(virNetworkTaint)
464
#endif /* __NETWORK_CONF_H__ */