network_conf.h 14.5 KB
Newer Older
1 2 3
/*
 * network_conf.h: network XML handling
 *
4
 * Copyright (C) 2006-2013 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 44 45 46

enum virNetworkForwardType {
    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 54 55

    VIR_NETWORK_FORWARD_LAST,
};

56 57 58 59 60 61 62 63 64
enum virNetworkForwardHostdevDeviceType {
    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,
};

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 111 112
    virSocketAddr ip;
    int nnames;
    char **names;
113
};
114

115 116
typedef struct _virNetworkDNSDef virNetworkDNSDef;
typedef virNetworkDNSDef *virNetworkDNSDefPtr;
117
struct _virNetworkDNSDef {
118 119 120 121 122 123
    size_t ntxts;
    virNetworkDNSTxtDefPtr txts;
    size_t nhosts;
    virNetworkDNSHostDefPtr hosts;
    size_t nsrvs;
    virNetworkDNSSrvDefPtr srvs;
124
};
125

126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
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 */

141
    size_t nranges;             /* Zero or more dhcp ranges */
142
    virSocketAddrRangePtr ranges;
143

144
    size_t nhosts;              /* Zero or more dhcp hosts */
145 146 147 148 149 150 151
    virNetworkDHCPHostDefPtr hosts;

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

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
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 */
   };

171 172 173
typedef struct _virNetworkForwardIfDef virNetworkForwardIfDef;
typedef virNetworkForwardIfDef *virNetworkForwardIfDefPtr;
struct _virNetworkForwardIfDef {
174 175 176 177 178 179 180
    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? */
181 182
};

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

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

    /* 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;
205

206
    /* ranges for NAT */
207 208
    virSocketAddrRange addr;
    virPortRange port;
209 210
};

211 212 213 214 215
typedef struct _virPortGroupDef virPortGroupDef;
typedef virPortGroupDef *virPortGroupDefPtr;
struct _virPortGroupDef {
    char *name;
    bool isDefault;
216
    virNetDevVPortProfilePtr virtPortProfile;
217
    virNetDevBandwidthPtr bandwidth;
218
    virNetDevVlan vlan;
219 220
};

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

    char *bridge;       /* Name of bridge device */
230
    char *domain;
231
    unsigned long delay;   /* Bridge forward delay (ms) */
232
    bool stp; /* Spanning tree protocol */
233
    virMacAddr mac; /* mac address of bridge device */
234
    bool mac_specified;
235

236 237 238 239 240
    /* specified if ip6tables rules added
     * when no ipv6 gateway addresses specified.
     */
    bool ipv6nogw;

241
    virNetworkForwardDef forward;
242

243 244
    size_t nips;
    virNetworkIpDefPtr ips; /* ptr to array of IP addresses on this network */
245

246 247 248
    size_t nroutes;
    virNetworkRouteDefPtr routes; /* ptr to array of static routes on this interface */

249
    virNetworkDNSDef dns;   /* dns related configuration */
250
    virNetDevVPortProfilePtr virtPortProfile;
251 252 253

    size_t nPortGroups;
    virPortGroupDefPtr portGroups;
254
    virNetDevBandwidthPtr bandwidth;
255
    virNetDevVlan vlan;
256 257 258 259 260
};

typedef struct _virNetworkObj virNetworkObj;
typedef virNetworkObj *virNetworkObjPtr;
struct _virNetworkObj {
261
    virMutex lock;
262

263
    pid_t dnsmasqPid;
264
    pid_t radvdPid;
265 266 267 268 269 270
    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 */
271 272 273

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

276 277 278 279 280
typedef struct _virNetworkObjList virNetworkObjList;
typedef virNetworkObjList *virNetworkObjListPtr;
struct _virNetworkObjList {
    unsigned int count;
    virNetworkObjPtr *objs;
281 282 283
};

static inline int
D
Daniel P. Berrange 已提交
284
virNetworkObjIsActive(const virNetworkObjPtr net)
285 286 287 288
{
    return net->active;
}

289
virNetworkObjPtr virNetworkFindByUUID(const virNetworkObjListPtr nets,
290
                                      const unsigned char *uuid);
291
virNetworkObjPtr virNetworkFindByName(const virNetworkObjListPtr nets,
292 293 294 295 296
                                      const char *name);


void virNetworkDefFree(virNetworkDefPtr def);
void virNetworkObjFree(virNetworkObjPtr net);
297
void virNetworkObjListFree(virNetworkObjListPtr vms);
298

299
virNetworkObjPtr virNetworkAssignDef(virNetworkObjListPtr nets,
300 301 302 303 304 305
                                     const virNetworkDefPtr def,
                                     bool live);
int virNetworkObjAssignDef(virNetworkObjPtr network,
                           const virNetworkDefPtr def,
                           bool live);
int virNetworkObjSetDefTransient(virNetworkObjPtr network, bool live);
306
void virNetworkObjUnsetDefTransient(virNetworkObjPtr network);
307 308 309 310 311 312
virNetworkDefPtr virNetworkObjGetPersistentDef(virNetworkObjPtr network);
int virNetworkObjReplacePersistentDef(virNetworkObjPtr network,
                                      virNetworkDefPtr def);
virNetworkDefPtr virNetworkDefCopy(virNetworkDefPtr def, unsigned int flags);
int virNetworkConfigChangeSetup(virNetworkObjPtr dom, unsigned int flags);

313
void virNetworkRemoveInactive(virNetworkObjListPtr nets,
314 315
                              const virNetworkObjPtr net);

316 317 318
virNetworkDefPtr virNetworkDefParseString(const char *xmlStr);
virNetworkDefPtr virNetworkDefParseFile(const char *filename);
virNetworkDefPtr virNetworkDefParseNode(xmlDocPtr xml,
319
                                        xmlNodePtr root);
320
char *virNetworkDefFormat(const virNetworkDefPtr def, unsigned int flags);
321

322 323 324
static inline const char *
virNetworkDefForwardIf(const virNetworkDefPtr def, size_t n)
{
325 326 327
    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);
328 329 330 331 332
}

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

333 334 335 336 337 338
virNetworkIpDefPtr
virNetworkDefGetIpByIndex(const virNetworkDefPtr def,
                          int family, size_t n);
int virNetworkIpDefPrefix(const virNetworkIpDefPtr def);
int virNetworkIpDefNetmask(const virNetworkIpDefPtr def,
                           virSocketAddrPtr netmask);
339

340
int virNetworkSaveXML(const char *configDir,
341 342 343
                      virNetworkDefPtr def,
                      const char *xml);

344
int virNetworkSaveConfig(const char *configDir,
345
                         virNetworkDefPtr def);
346

347 348 349
int virNetworkSaveStatus(const char *statusDir,
                         virNetworkObjPtr net) ATTRIBUTE_RETURN_CHECK;

350
virNetworkObjPtr virNetworkLoadConfig(virNetworkObjListPtr nets,
351 352 353 354
                                      const char *configDir,
                                      const char *autostartDir,
                                      const char *file);

355 356 357 358
virNetworkObjPtr virNetworkLoadState(virNetworkObjListPtr nets,
                                     const char *stateDir,
                                     const char *name);

359
int virNetworkLoadAllConfigs(virNetworkObjListPtr nets,
360 361 362
                             const char *configDir,
                             const char *autostartDir);

363 364 365
int virNetworkLoadAllState(virNetworkObjListPtr nets,
                           const char *stateDir);

366
int virNetworkDeleteConfig(const char *configDir,
367
                           const char *autostartDir,
368 369
                           virNetworkObjPtr net);

370
char *virNetworkConfigFile(const char *dir,
371 372
                           const char *name);

373 374 375 376
int virNetworkBridgeInUse(const virNetworkObjListPtr nets,
                          const char *bridge,
                          const char *skipname);

377
char *virNetworkAllocateBridge(const virNetworkObjListPtr nets,
378
                               const char *template);
379

380
int virNetworkSetBridgeName(const virNetworkObjListPtr nets,
381 382
                            virNetworkDefPtr def,
                            int check_collision);
383

384 385
void virNetworkSetBridgeMacAddr(virNetworkDefPtr def);

386 387 388 389 390 391 392 393
int
virNetworkObjUpdate(virNetworkObjPtr obj,
                    unsigned int command, /* virNetworkUpdateCommand */
                    unsigned int section, /* virNetworkUpdateSection */
                    int parentIndex,
                    const char *xml,
                    unsigned int flags);  /* virNetworkUpdateFlags */

394 395
int virNetworkObjIsDuplicate(virNetworkObjListPtr doms,
                             virNetworkDefPtr def,
396
                             bool check_active);
397

D
Daniel P. Berrange 已提交
398 399 400
void virNetworkObjLock(virNetworkObjPtr obj);
void virNetworkObjUnlock(virNetworkObjPtr obj);

M
Matthias Bolte 已提交
401 402
VIR_ENUM_DECL(virNetworkForward)

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
# 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)

int virNetworkList(virConnectPtr conn,
                   virNetworkObjList netobjs,
                   virNetworkPtr **nets,
                   unsigned int flags);

425
#endif /* __NETWORK_CONF_H__ */