Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
/*
|
2016-05-04 17:18:16 +00:00
|
|
|
* Copyright (C) 2007-2016 Red Hat, Inc.
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
*
|
|
|
|
* 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 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:48 +00:00
|
|
|
#pragma once
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
|
2019-06-18 16:12:48 +00:00
|
|
|
#include "virbitmap.h"
|
|
|
|
#include "virsocketaddr.h"
|
|
|
|
#include "virmacaddr.h"
|
|
|
|
#include "virpci.h"
|
|
|
|
#include "virnetdevvlan.h"
|
|
|
|
#include "virenum.h"
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
|
2020-09-01 11:27:44 +00:00
|
|
|
#ifdef WITH_NET_IF_H
|
2020-07-09 05:36:33 +00:00
|
|
|
# include <net/if.h>
|
|
|
|
#endif
|
|
|
|
|
2020-09-01 11:27:44 +00:00
|
|
|
#ifdef WITH_STRUCT_IFREQ
|
2013-06-13 06:26:20 +00:00
|
|
|
typedef struct ifreq virIfreq;
|
2019-06-18 16:12:48 +00:00
|
|
|
#else
|
2013-06-13 06:26:20 +00:00
|
|
|
typedef void virIfreq;
|
2019-06-18 16:12:48 +00:00
|
|
|
#endif
|
2013-06-13 06:26:20 +00:00
|
|
|
|
2017-04-25 18:43:24 +00:00
|
|
|
/* Used for prefix of ifname of any tap device name generated
|
|
|
|
* dynamically by libvirt, cannot be used for a persistent network name.
|
|
|
|
*/
|
2020-12-14 01:50:32 +00:00
|
|
|
#define VIR_NET_GENERATED_VNET_PREFIX "vnet"
|
|
|
|
|
|
|
|
/* libvirt will start macvtap/macvlan interface names with one of
|
|
|
|
* these prefixes when it auto-generates the name
|
|
|
|
*/
|
|
|
|
#define VIR_NET_GENERATED_MACVTAP_PREFIX "macvtap"
|
|
|
|
#define VIR_NET_GENERATED_MACVLAN_PREFIX "macvlan"
|
2017-04-25 18:43:24 +00:00
|
|
|
|
2014-09-20 18:39:44 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_NETDEV_RX_FILTER_MODE_NONE = 0,
|
|
|
|
VIR_NETDEV_RX_FILTER_MODE_NORMAL,
|
|
|
|
VIR_NETDEV_RX_FILTER_MODE_ALL,
|
|
|
|
|
|
|
|
VIR_NETDEV_RX_FILTER_MODE_LAST
|
|
|
|
} virNetDevRxFilterMode;
|
2019-01-20 16:04:56 +00:00
|
|
|
VIR_ENUM_DECL(virNetDevRxFilterMode);
|
2014-09-20 18:39:44 +00:00
|
|
|
|
|
|
|
typedef struct _virNetDevRxFilter virNetDevRxFilter;
|
|
|
|
struct _virNetDevRxFilter {
|
|
|
|
char *name; /* the alias used by qemu, *not* name used by guest */
|
|
|
|
virMacAddr mac;
|
|
|
|
bool promiscuous;
|
|
|
|
bool broadcastAllowed;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
int mode; /* enum virNetDevRxFilterMode */
|
|
|
|
bool overflow;
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr *table;
|
2014-09-20 18:39:44 +00:00
|
|
|
size_t nTable;
|
|
|
|
} unicast;
|
|
|
|
struct {
|
|
|
|
int mode; /* enum virNetDevRxFilterMode */
|
|
|
|
bool overflow;
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr *table;
|
2014-09-20 18:39:44 +00:00
|
|
|
size_t nTable;
|
|
|
|
} multicast;
|
|
|
|
struct {
|
|
|
|
int mode; /* enum virNetDevRxFilterMode */
|
|
|
|
unsigned int *table;
|
|
|
|
size_t nTable;
|
|
|
|
} vlan;
|
|
|
|
};
|
|
|
|
|
2016-06-13 17:06:15 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_NETDEV_IF_STATE_UNKNOWN = 1,
|
|
|
|
VIR_NETDEV_IF_STATE_NOT_PRESENT,
|
|
|
|
VIR_NETDEV_IF_STATE_DOWN,
|
|
|
|
VIR_NETDEV_IF_STATE_LOWER_LAYER_DOWN,
|
|
|
|
VIR_NETDEV_IF_STATE_TESTING,
|
|
|
|
VIR_NETDEV_IF_STATE_DORMANT,
|
|
|
|
VIR_NETDEV_IF_STATE_UP,
|
|
|
|
VIR_NETDEV_IF_STATE_LAST
|
|
|
|
} virNetDevIfState;
|
|
|
|
|
2019-01-20 16:04:56 +00:00
|
|
|
VIR_ENUM_DECL(virNetDevIfState);
|
2016-06-13 17:06:15 +00:00
|
|
|
|
2017-03-06 17:39:48 +00:00
|
|
|
typedef struct _virNetDevIfLink virNetDevIfLink;
|
|
|
|
struct _virNetDevIfLink {
|
2016-06-13 17:06:15 +00:00
|
|
|
virNetDevIfState state; /* link state */
|
|
|
|
unsigned int speed; /* link speed in Mbits per second */
|
2017-03-06 17:39:48 +00:00
|
|
|
};
|
2016-06-13 17:06:15 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
VIR_NET_DEV_FEAT_GRXCSUM,
|
|
|
|
VIR_NET_DEV_FEAT_GTXCSUM,
|
|
|
|
VIR_NET_DEV_FEAT_GSG,
|
|
|
|
VIR_NET_DEV_FEAT_GTSO,
|
|
|
|
VIR_NET_DEV_FEAT_GGSO,
|
|
|
|
VIR_NET_DEV_FEAT_GGRO,
|
|
|
|
VIR_NET_DEV_FEAT_LRO,
|
|
|
|
VIR_NET_DEV_FEAT_RXVLAN,
|
|
|
|
VIR_NET_DEV_FEAT_TXVLAN,
|
|
|
|
VIR_NET_DEV_FEAT_NTUPLE,
|
|
|
|
VIR_NET_DEV_FEAT_RXHASH,
|
|
|
|
VIR_NET_DEV_FEAT_RDMA,
|
|
|
|
VIR_NET_DEV_FEAT_TXUDPTNL,
|
2017-08-21 09:19:53 +00:00
|
|
|
VIR_NET_DEV_FEAT_SWITCHDEV,
|
2016-06-13 17:06:15 +00:00
|
|
|
VIR_NET_DEV_FEAT_LAST
|
|
|
|
} virNetDevFeature;
|
|
|
|
|
2019-01-20 16:04:56 +00:00
|
|
|
VIR_ENUM_DECL(virNetDevFeature);
|
2016-06-13 17:06:15 +00:00
|
|
|
|
2017-04-07 15:38:06 +00:00
|
|
|
/* Modeled after struct ethtool_coalesce, see linux/ethtool.h for explanations
|
|
|
|
* of particular fields */
|
|
|
|
typedef struct _virNetDevCoalesce virNetDevCoalesce;
|
|
|
|
struct _virNetDevCoalesce {
|
|
|
|
uint32_t rx_coalesce_usecs;
|
|
|
|
uint32_t rx_max_coalesced_frames;
|
|
|
|
uint32_t rx_coalesce_usecs_irq;
|
|
|
|
uint32_t rx_max_coalesced_frames_irq;
|
|
|
|
uint32_t tx_coalesce_usecs;
|
|
|
|
uint32_t tx_max_coalesced_frames;
|
|
|
|
uint32_t tx_coalesce_usecs_irq;
|
|
|
|
uint32_t tx_max_coalesced_frames_irq;
|
|
|
|
uint32_t stats_block_coalesce_usecs;
|
|
|
|
uint32_t use_adaptive_rx_coalesce;
|
|
|
|
uint32_t use_adaptive_tx_coalesce;
|
|
|
|
uint32_t pkt_rate_low;
|
|
|
|
uint32_t rx_coalesce_usecs_low;
|
|
|
|
uint32_t rx_max_coalesced_frames_low;
|
|
|
|
uint32_t tx_coalesce_usecs_low;
|
|
|
|
uint32_t tx_max_coalesced_frames_low;
|
|
|
|
uint32_t pkt_rate_high;
|
|
|
|
uint32_t rx_coalesce_usecs_high;
|
|
|
|
uint32_t rx_max_coalesced_frames_high;
|
|
|
|
uint32_t tx_coalesce_usecs_high;
|
|
|
|
uint32_t tx_max_coalesced_frames_high;
|
|
|
|
uint32_t rate_sample_interval;
|
|
|
|
};
|
|
|
|
|
2020-12-14 01:50:32 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_NET_DEV_GEN_NAME_VNET,
|
|
|
|
VIR_NET_DEV_GEN_NAME_MACVTAP,
|
|
|
|
VIR_NET_DEV_GEN_NAME_MACVLAN,
|
|
|
|
VIR_NET_DEV_GEN_NAME_LAST
|
|
|
|
} virNetDevGenNameType;
|
|
|
|
|
|
|
|
typedef struct _virNetDevGenName virNetDevGenName;
|
|
|
|
struct _virNetDevGenName {
|
|
|
|
int lastID; /* not "unsigned" because callers use %d */
|
|
|
|
const char *prefix;
|
|
|
|
virMutex mutex;
|
|
|
|
};
|
|
|
|
|
2017-04-07 15:38:06 +00:00
|
|
|
|
2013-06-13 06:26:20 +00:00
|
|
|
int virNetDevSetupControl(const char *ifname,
|
|
|
|
virIfreq *ifr)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2013-06-13 06:26:20 +00:00
|
|
|
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
int virNetDevExists(const char *brname)
|
2019-10-15 11:24:34 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT G_GNUC_NO_INLINE;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
|
|
|
|
int virNetDevSetOnline(const char *ifname,
|
|
|
|
bool online)
|
2019-10-15 11:24:34 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT G_GNUC_NO_INLINE;
|
2015-01-22 19:47:02 +00:00
|
|
|
int virNetDevGetOnline(const char *ifname,
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
bool *online)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
int virNetDevSetMAC(const char *ifname,
|
2013-10-05 19:41:44 +00:00
|
|
|
const virMacAddr *macaddr)
|
2019-10-15 11:24:34 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT G_GNUC_NO_INLINE;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
int virNetDevGetMAC(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr *macaddr)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-02 17:40:50 +00:00
|
|
|
|
2015-08-31 21:09:01 +00:00
|
|
|
int virNetDevReplaceMacAddress(const char *linkdev,
|
|
|
|
const virMacAddr *macaddress,
|
|
|
|
const char *stateDir)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2015-08-31 21:09:01 +00:00
|
|
|
|
|
|
|
int virNetDevRestoreMacAddress(const char *linkdev,
|
|
|
|
const char *stateDir)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2015-08-31 21:09:01 +00:00
|
|
|
|
2017-04-07 15:38:06 +00:00
|
|
|
int virNetDevSetCoalesce(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virNetDevCoalesce *coalesce,
|
2017-06-15 12:22:26 +00:00
|
|
|
bool update)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-07 15:38:06 +00:00
|
|
|
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
int virNetDevSetMTU(const char *ifname,
|
|
|
|
int mtu)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
int virNetDevSetMTUFromDevice(const char *ifname,
|
|
|
|
const char *otherifname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
int virNetDevGetMTU(const char *ifname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
build: use correct type for pid and similar types
No thanks to 64-bit windows, with 64-bit pid_t, we have to avoid
constructs like 'int pid'. Our API in libvirt-qemu cannot be
changed without breaking ABI; but then again, libvirt-qemu can
only be used on systems that support UNIX sockets, which rules
out Windows (even if qemu could be compiled there) - so for all
points on the call chain that interact with this API decision,
we require a different variable name to make it clear that we
audited the use for safety.
Adding a syntax-check rule only solves half the battle; anywhere
that uses printf on a pid_t still needs to be converted, but that
will be a separate patch.
* cfg.mk (sc_correct_id_types): New syntax check.
* src/libvirt-qemu.c (virDomainQemuAttach): Document why we didn't
use pid_t for pid, and validate for overflow.
* include/libvirt/libvirt-qemu.h (virDomainQemuAttach): Tweak name
for syntax check.
* src/vmware/vmware_conf.c (vmwareExtractPid): Likewise.
* src/driver.h (virDrvDomainQemuAttach): Likewise.
* tools/virsh.c (cmdQemuAttach): Likewise.
* src/remote/qemu_protocol.x (qemu_domain_attach_args): Likewise.
* src/qemu_protocol-structs (qemu_domain_attach_args): Likewise.
* src/util/cgroup.c (virCgroupPidCode, virCgroupKillInternal):
Likewise.
* src/qemu/qemu_command.c(qemuParseProcFileStrings): Likewise.
(qemuParseCommandLinePid): Use pid_t for pid.
* daemon/libvirtd.c (daemonForkIntoBackground): Likewise.
* src/conf/domain_conf.h (_virDomainObj): Likewise.
* src/probes.d (rpc_socket_new): Likewise.
* src/qemu/qemu_command.h (qemuParseCommandLinePid): Likewise.
* src/qemu/qemu_driver.c (qemudGetProcessInfo, qemuDomainAttach):
Likewise.
* src/qemu/qemu_process.c (qemuProcessAttach): Likewise.
* src/qemu/qemu_process.h (qemuProcessAttach): Likewise.
* src/uml/uml_driver.c (umlGetProcessInfo): Likewise.
* src/util/virnetdev.h (virNetDevSetNamespace): Likewise.
* src/util/virnetdev.c (virNetDevSetNamespace): Likewise.
* tests/testutils.c (virtTestCaptureProgramOutput): Likewise.
* src/conf/storage_conf.h (_virStoragePerms): Use mode_t, uid_t,
and gid_t rather than int.
* src/security/security_dac.c (virSecurityDACSetOwnership): Likewise.
* src/conf/storage_conf.c (virStorageDefParsePerms): Avoid
compiler warning.
2012-02-10 23:08:11 +00:00
|
|
|
int virNetDevSetNamespace(const char *ifname, pid_t pidInNs)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-02 16:03:09 +00:00
|
|
|
int virNetDevSetName(const char *ifname, const char *newifname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
Split bridge.h into three separate files
Following the renaming of the bridge management APIs, we can now
split the source file into 3 corresponding pieces
* src/util/virnetdev.c: APIs for any type of network interface
* src/util/virnetdevbridge.c: APIs for bridge interfaces
* src/util/virnetdevtap.c: APIs for TAP interfaces
* src/util/virnetdev.c, src/util/virnetdev.h,
src/util/virnetdevbridge.c, src/util/virnetdevbridge.h,
src/util/virnetdevtap.c, src/util/virnetdevtap.h: Copied
from bridge.{c,h}
* src/util/bridge.c, src/util/bridge.h: Split into 3 pieces
* src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/openvz/openvz_driver.c, src/qemu/qemu_command.c,
src/qemu/qemu_conf.h, src/uml/uml_conf.c, src/uml/uml_conf.h,
src/uml/uml_driver.c: Update #include directives
2011-11-02 13:41:58 +00:00
|
|
|
|
2017-03-15 13:46:56 +00:00
|
|
|
char *virNetDevGetName(int ifindex)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 09:27:45 +00:00
|
|
|
int virNetDevGetIndex(const char *ifname, int *ifindex)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 09:27:45 +00:00
|
|
|
|
|
|
|
int virNetDevGetVLanID(const char *ifname, int *vlanid)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 09:27:45 +00:00
|
|
|
|
2017-03-18 00:57:18 +00:00
|
|
|
int virNetDevGetMaster(const char *ifname, char **master)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2017-03-18 00:57:18 +00:00
|
|
|
|
2011-11-03 12:32:38 +00:00
|
|
|
int virNetDevValidateConfig(const char *ifname,
|
2013-10-05 19:41:44 +00:00
|
|
|
const virMacAddr *macaddr, int ifindex)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 12:32:38 +00:00
|
|
|
|
2011-11-03 12:40:33 +00:00
|
|
|
int virNetDevIsVirtualFunction(const char *ifname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 12:40:33 +00:00
|
|
|
|
|
|
|
int virNetDevGetVirtualFunctionIndex(const char *pfname, const char *vfname,
|
|
|
|
int *vf_index)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 12:40:33 +00:00
|
|
|
|
|
|
|
int virNetDevGetPhysicalFunction(const char *ifname, char **pfname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-11-03 09:27:45 +00:00
|
|
|
|
2017-03-02 19:55:01 +00:00
|
|
|
int virNetDevPFGetVF(const char *pfname, int vf, char **vfname)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2017-03-02 19:55:01 +00:00
|
|
|
|
2017-07-31 03:32:43 +00:00
|
|
|
int virNetDevGetPhysPortID(const char *ifname,
|
|
|
|
char **physPortID)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2021-01-21 12:15:21 +00:00
|
|
|
int virNetDevGetPhysPortName(const char *ifname,
|
|
|
|
char **physPortName)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-07-31 03:32:43 +00:00
|
|
|
|
2011-12-14 10:50:14 +00:00
|
|
|
int virNetDevGetVirtualFunctions(const char *pfname,
|
2021-08-04 15:37:50 +00:00
|
|
|
virPCIVirtualFunctionList **vfs)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-12-14 10:50:14 +00:00
|
|
|
|
2017-02-20 21:14:53 +00:00
|
|
|
int virNetDevSaveNetConfig(const char *linkdev, int vf,
|
|
|
|
const char *stateDir,
|
|
|
|
bool saveVlan)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3) G_GNUC_WARN_UNUSED_RESULT;
|
2017-02-20 21:14:53 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
virNetDevReadNetConfig(const char *linkdev, int vf,
|
|
|
|
const char *stateDir,
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr **adminMAC,
|
|
|
|
virNetDevVlan **vlan,
|
|
|
|
virMacAddr **MAC)
|
2017-02-20 21:14:53 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(5) ATTRIBUTE_NONNULL(6) G_GNUC_WARN_UNUSED_RESULT;
|
2017-02-20 21:14:53 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
virNetDevSetNetConfig(const char *linkdev, int vf,
|
|
|
|
const virMacAddr *adminMAC,
|
2019-10-01 16:25:47 +00:00
|
|
|
const virNetDevVlan *vlan,
|
2017-02-20 21:14:53 +00:00
|
|
|
const virMacAddr *MAC,
|
|
|
|
bool setVLan)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2017-02-20 21:14:53 +00:00
|
|
|
|
2012-03-06 01:12:34 +00:00
|
|
|
int virNetDevGetVirtualFunctionInfo(const char *vfname, char **pfname,
|
|
|
|
int *vf)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2015-02-23 15:38:29 +00:00
|
|
|
int virNetDevGetFeatures(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virBitmap **out)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2015-02-23 15:38:29 +00:00
|
|
|
|
2014-06-05 14:14:49 +00:00
|
|
|
int virNetDevGetLinkInfo(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virNetDevIfLink *lnk)
|
2014-06-05 14:14:49 +00:00
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virNetDevRxFilter *virNetDevRxFilterNew(void)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2021-03-11 07:16:13 +00:00
|
|
|
void virNetDevRxFilterFree(virNetDevRxFilter *filter);
|
2014-10-10 17:55:42 +00:00
|
|
|
int virNetDevGetRxFilter(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virNetDevRxFilter **filter)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2014-10-10 17:55:42 +00:00
|
|
|
|
|
|
|
int virNetDevAddMulti(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr *macaddr)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2014-10-10 17:55:42 +00:00
|
|
|
int virNetDevDelMulti(const char *ifname,
|
2021-03-11 07:16:13 +00:00
|
|
|
virMacAddr *macaddr)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2014-09-20 18:39:44 +00:00
|
|
|
|
2015-01-22 19:47:02 +00:00
|
|
|
int virNetDevSetPromiscuous(const char *ifname, bool promiscuous)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2015-01-22 19:47:02 +00:00
|
|
|
int virNetDevGetPromiscuous(const char *ifname, bool *promiscuous)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2015-01-22 19:47:02 +00:00
|
|
|
|
|
|
|
int virNetDevSetRcvMulti(const char *ifname, bool receive)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2015-01-22 19:47:02 +00:00
|
|
|
int virNetDevGetRcvMulti(const char *ifname, bool *receive)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2015-01-22 19:47:02 +00:00
|
|
|
|
|
|
|
int virNetDevSetRcvAllMulti(const char *ifname, bool receive)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
|
2015-01-22 19:47:02 +00:00
|
|
|
int virNetDevGetRcvAllMulti(const char *ifname, bool *receive)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2015-04-15 09:45:47 +00:00
|
|
|
|
2019-06-18 16:12:48 +00:00
|
|
|
#define SYSFS_NET_DIR "/sys/class/net/"
|
|
|
|
#define SYSFS_INFINIBAND_DIR "/sys/class/infiniband/"
|
2014-06-11 13:05:00 +00:00
|
|
|
int virNetDevSysfsFile(char **pf_sysfs_device_link,
|
|
|
|
const char *ifname,
|
|
|
|
const char *file)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
|
2019-10-15 11:24:34 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT G_GNUC_NO_INLINE;
|
2016-04-13 08:33:36 +00:00
|
|
|
|
2017-04-07 14:07:49 +00:00
|
|
|
int virNetDevRunEthernetScript(const char *ifname, const char *script)
|
2019-10-15 11:24:34 +00:00
|
|
|
G_GNUC_NO_INLINE;
|
2018-07-28 18:01:20 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int virNetDevVFInterfaceStats(virPCIDeviceAddress *vfAddr,
|
2020-10-15 11:21:14 +00:00
|
|
|
virDomainInterfaceStatsPtr stats)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2019-10-15 12:47:50 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virNetDevRxFilter, virNetDevRxFilterFree);
|
2020-12-14 01:50:32 +00:00
|
|
|
|
|
|
|
void virNetDevReserveName(const char *name);
|
|
|
|
|
|
|
|
int virNetDevGenerateName(char **ifname, virNetDevGenNameType type);
|