diff options
Diffstat (limited to 'src/nm-ip6-config.h')
-rw-r--r-- | src/nm-ip6-config.h | 167 |
1 files changed, 86 insertions, 81 deletions
diff --git a/src/nm-ip6-config.h b/src/nm-ip6-config.h index 158f54945..b7b9d83ec 100644 --- a/src/nm-ip6-config.h +++ b/src/nm-ip6-config.h @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ -/* NetworkManager -- Network link manager +/* NetworkManager * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,23 +15,23 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * Copyright (C) 2008 Red Hat, Inc. + * Copyright (C) 2008–2013 Red Hat, Inc. */ #ifndef NM_IP6_CONFIG_H #define NM_IP6_CONFIG_H -#include <glib.h> #include <glib-object.h> +#include "nm-platform.h" #include "nm-setting-ip6-config.h" -#define NM_TYPE_IP6_CONFIG (nm_ip6_config_get_type ()) -#define NM_IP6_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_IP6_CONFIG, NMIP6Config)) -#define NM_IP6_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_IP6_CONFIG, NMIP6ConfigClass)) -#define NM_IS_IP6_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_IP6_CONFIG)) +#define NM_TYPE_IP6_CONFIG (nm_ip6_config_get_type ()) +#define NM_IP6_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_IP6_CONFIG, NMIP6Config)) +#define NM_IP6_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_IP6_CONFIG, NMIP6ConfigClass)) +#define NM_IS_IP6_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_IP6_CONFIG)) #define NM_IS_IP6_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_IP6_CONFIG)) -#define NM_IP6_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_IP6_CONFIG, NMIP6ConfigClass)) +#define NM_IP6_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_IP6_CONFIG, NMIP6ConfigClass)) typedef struct { GObject parent; @@ -41,85 +41,90 @@ typedef struct { GObjectClass parent; } NMIP6ConfigClass; +#define NM_IP6_CONFIG_GATEWAY "gateway" #define NM_IP6_CONFIG_ADDRESSES "addresses" +#define NM_IP6_CONFIG_ROUTES "routes" #define NM_IP6_CONFIG_NAMESERVERS "nameservers" #define NM_IP6_CONFIG_DOMAINS "domains" -#define NM_IP6_CONFIG_ROUTES "routes" +#define NM_IP6_CONFIG_SEARCHES "searches" GType nm_ip6_config_get_type (void); -NMIP6Config * nm_ip6_config_new (void); -void nm_ip6_config_export (NMIP6Config *config); -const char * nm_ip6_config_get_dbus_path (NMIP6Config *config); - -void nm_ip6_config_take_address (NMIP6Config *config, NMIP6Address *address); -void nm_ip6_config_add_address (NMIP6Config *config, NMIP6Address *address); -void nm_ip6_config_replace_address (NMIP6Config *config, guint32 i, NMIP6Address *new_address); -NMIP6Address *nm_ip6_config_get_address (NMIP6Config *config, guint32 i); -guint32 nm_ip6_config_get_num_addresses (NMIP6Config *config); - -const struct in6_addr *nm_ip6_config_get_ptp_address (NMIP6Config *config); -void nm_ip6_config_set_ptp_address (NMIP6Config *config, const struct in6_addr *ptp_addr); - -void nm_ip6_config_add_nameserver (NMIP6Config *config, const struct in6_addr *nameserver); -const struct in6_addr *nm_ip6_config_get_nameserver (NMIP6Config *config, guint i); -guint32 nm_ip6_config_get_num_nameservers (NMIP6Config *config); -void nm_ip6_config_reset_nameservers (NMIP6Config *config); - -void nm_ip6_config_set_gateway (NMIP6Config *config, const struct in6_addr *gateway); -const struct in6_addr *nm_ip6_config_get_gateway (NMIP6Config *config); - -void nm_ip6_config_take_route (NMIP6Config *config, NMIP6Route *route); -void nm_ip6_config_add_route (NMIP6Config *config, NMIP6Route *route); -void nm_ip6_config_replace_route (NMIP6Config *config, guint32 i, NMIP6Route *new_route); -NMIP6Route * nm_ip6_config_get_route (NMIP6Config *config, guint32 i); -guint32 nm_ip6_config_get_num_routes (NMIP6Config *config); -void nm_ip6_config_reset_routes (NMIP6Config *config); - -void nm_ip6_config_add_domain (NMIP6Config *config, const char *domain); -const char * nm_ip6_config_get_domain (NMIP6Config *config, guint i); -guint32 nm_ip6_config_get_num_domains (NMIP6Config *config); -void nm_ip6_config_reset_domains (NMIP6Config *config); - -void nm_ip6_config_add_search (NMIP6Config *config, const char *search); -const char * nm_ip6_config_get_search (NMIP6Config *config, guint i); -guint32 nm_ip6_config_get_num_searches (NMIP6Config *config); -void nm_ip6_config_reset_searches (NMIP6Config *config); - -guint32 nm_ip6_config_get_mss (NMIP6Config *config); -void nm_ip6_config_set_mss (NMIP6Config *config, guint32 mss); - -gboolean nm_ip6_config_get_never_default (NMIP6Config *config); -void nm_ip6_config_set_never_default (NMIP6Config *config, gboolean never_default); - -/* Flags for nm_ip6_config_to_rtnl_addr() */ -#define NM_RTNL_ADDR_NONE 0x0000 -#define NM_RTNL_ADDR_ADDR 0x0001 -#define NM_RTNL_ADDR_PTP_ADDR 0x0002 -#define NM_RTNL_ADDR_PREFIX 0x0004 -#define NM_RTNL_ADDR_BROADCAST 0x0008 - -#define NM_RTNL_ADDR_DEFAULT (NM_RTNL_ADDR_ADDR | NM_RTNL_ADDR_PREFIX | NM_RTNL_ADDR_BROADCAST) -#define NM_RTNL_ADDR_PTP_DEFAULT (NM_RTNL_ADDR_ADDR | NM_RTNL_ADDR_PREFIX | NM_RTNL_ADDR_PTP_ADDR) - -struct rtnl_addr *nm_ip6_config_to_rtnl_addr (NMIP6Config *config, guint32 i, guint32 flags); - -typedef enum { - NM_IP6_COMPARE_FLAG_NONE = 0x00000000, /* match nothing, kinda pointless */ - NM_IP6_COMPARE_FLAG_ADDRESSES = 0x00000001, - NM_IP6_COMPARE_FLAG_PTP_ADDRESS = 0x00000002, - NM_IP6_COMPARE_FLAG_NAMESERVERS = 0x00000004, - NM_IP6_COMPARE_FLAG_ROUTES = 0x00000008, - NM_IP6_COMPARE_FLAG_DOMAINS = 0x00000010, - NM_IP6_COMPARE_FLAG_SEARCHES = 0x00000020, - NM_IP6_COMPARE_FLAG_MSS = 0x00000080, - NM_IP6_COMPARE_FLAG_ALL = 0xFFFFFFFF /* match everything */ -} NMIP6ConfigCompareFlags; - -/* Returns a bitfield representing how the two IP6 configs differ */ -NMIP6ConfigCompareFlags nm_ip6_config_diff (NMIP6Config *a, NMIP6Config *b); - -void nm_ip6_config_hash (NMIP6Config *config, GChecksum *sum, gboolean dns_only); +NMIP6Config * nm_ip6_config_new (void); + +/* D-Bus integration */ +void nm_ip6_config_export (NMIP6Config *config); +const char * nm_ip6_config_get_dbus_path (const NMIP6Config *config); + +/* Integration with nm-platform and nm-setting */ +NMIP6Config *nm_ip6_config_capture (int ifindex, gboolean capture_resolv_conf, NMSettingIP6ConfigPrivacy use_temporary); +gboolean nm_ip6_config_commit (const NMIP6Config *config, int ifindex); +void nm_ip6_config_merge_setting (NMIP6Config *config, NMSettingIP6Config *setting, int default_route_metric); +NMSetting *nm_ip6_config_create_setting (const NMIP6Config *config); + +/* Utility functions */ +void nm_ip6_config_merge (NMIP6Config *dst, const NMIP6Config *src); +void nm_ip6_config_subtract (NMIP6Config *dst, const NMIP6Config *src); +gboolean nm_ip6_config_replace (NMIP6Config *dst, const NMIP6Config *src, gboolean *relevant_changes); +int nm_ip6_config_destination_is_direct (const NMIP6Config *config, const struct in6_addr *dest, int plen); +void nm_ip6_config_dump (const NMIP6Config *config, const char *detail); + +/* Gateways */ +void nm_ip6_config_set_never_default (NMIP6Config *config, gboolean never_default); +gboolean nm_ip6_config_get_never_default (const NMIP6Config *config); +void nm_ip6_config_set_gateway (NMIP6Config *config, const struct in6_addr *); +const struct in6_addr *nm_ip6_config_get_gateway (const NMIP6Config *config); + +/* Addresses */ +void nm_ip6_config_reset_addresses (NMIP6Config *config); +void nm_ip6_config_add_address (NMIP6Config *config, const NMPlatformIP6Address *address); +void nm_ip6_config_del_address (NMIP6Config *config, guint i); +guint nm_ip6_config_get_num_addresses (const NMIP6Config *config); +const NMPlatformIP6Address *nm_ip6_config_get_address (const NMIP6Config *config, guint i); +gboolean nm_ip6_config_address_exists (const NMIP6Config *config, const NMPlatformIP6Address *address); +gboolean nm_ip6_config_addresses_sort (NMIP6Config *config, NMSettingIP6ConfigPrivacy use_temporary); + + +/* Routes */ +void nm_ip6_config_reset_routes (NMIP6Config *config); +void nm_ip6_config_add_route (NMIP6Config *config, const NMPlatformIP6Route *route); +void nm_ip6_config_del_route (NMIP6Config *config, guint i); +guint32 nm_ip6_config_get_num_routes (const NMIP6Config *config); +const NMPlatformIP6Route *nm_ip6_config_get_route (const NMIP6Config *config, guint32 i); + +/* Nameservers */ +void nm_ip6_config_reset_nameservers (NMIP6Config *config); +void nm_ip6_config_add_nameserver (NMIP6Config *config, const struct in6_addr *nameserver); +void nm_ip6_config_del_nameserver (NMIP6Config *config, guint i); +guint32 nm_ip6_config_get_num_nameservers (const NMIP6Config *config); +const struct in6_addr *nm_ip6_config_get_nameserver (const NMIP6Config *config, guint i); + +/* Domains */ +void nm_ip6_config_reset_domains (NMIP6Config *config); +void nm_ip6_config_add_domain (NMIP6Config *config, const char *domain); +void nm_ip6_config_del_domain (NMIP6Config *config, guint i); +guint32 nm_ip6_config_get_num_domains (const NMIP6Config *config); +const char * nm_ip6_config_get_domain (const NMIP6Config *config, guint i); + +/* Search lists */ +void nm_ip6_config_reset_searches (NMIP6Config *config); +void nm_ip6_config_add_search (NMIP6Config *config, const char *search); +void nm_ip6_config_del_search (NMIP6Config *config, guint i); +guint32 nm_ip6_config_get_num_searches (const NMIP6Config *config); +const char * nm_ip6_config_get_search (const NMIP6Config *config, guint i); + +/* MSS */ +void nm_ip6_config_set_mss (NMIP6Config *config, guint32 mss); +guint32 nm_ip6_config_get_mss (const NMIP6Config *config); + +void nm_ip6_config_hash (const NMIP6Config *config, GChecksum *sum, gboolean dns_only); +gboolean nm_ip6_config_equal (const NMIP6Config *a, const NMIP6Config *b); + +/******************************************************/ +/* Testing-only functions */ + +gboolean nm_ip6_config_capture_resolv_conf (GArray *nameservers, + const char *rc_contents); #endif /* NM_IP6_CONFIG_H */ |