mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 12:50:17 +01:00
This is a tool for automatically configuring networking in a cloud environment. Currently it only supports IPv4 on EC2, but it's intended for extending to other cloud providers (Azure). See [1] and [2] for how to configure secondary IP addresses on EC2. This is what the tool currently aims to do (but in the future it might do more). [1] https://aws.amazon.com/premiumsupport/knowledge-center/ec2-ubuntu-secondary-network-interface/ It is inspired by SuSE's cloud-netconfig ([1], [2]) and ec2-net-utils package on Amazon Linux ([3], [4]). [1] https://www.suse.com/c/multi-nic-cloud-netconfig-ec2-azure/ [2] https://github.com/SUSE-Enceladus/cloud-netconfig [3] https://github.com/aws/ec2-net-utils [4] https://github.com/lorengordon/ec2-net-utils.git It is also intended to work without configuration. The main point is that you boot an image with NetworkManager and nm-cloud-setup enabled, and it just works.
107 lines
3.5 KiB
C
107 lines
3.5 KiB
C
// SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
#ifndef __NMCS_PROVIDER_H__
|
|
#define __NMCS_PROVIDER_H__
|
|
|
|
/*****************************************************************************/
|
|
|
|
#include "nm-http-client.h"
|
|
|
|
/*****************************************************************************/
|
|
|
|
typedef struct {
|
|
in_addr_t *ipv4s_arr;
|
|
gsize ipv4s_len;
|
|
gssize iface_idx;
|
|
in_addr_t cidr_addr;
|
|
guint8 cidr_prefix;
|
|
bool has_ipv4s:1;
|
|
bool has_cidr:1;
|
|
|
|
/* TRUE, if the configuration was requested via hwaddrs argument to
|
|
* nmcs_provider_get_config(). */
|
|
bool was_requested:1;
|
|
|
|
} NMCSProviderGetConfigIfaceData;
|
|
|
|
static inline gboolean
|
|
nmcs_provider_get_config_iface_data_is_valid (const NMCSProviderGetConfigIfaceData *config_data)
|
|
{
|
|
return config_data
|
|
&& config_data->iface_idx >= 0
|
|
&& config_data->has_cidr
|
|
&& config_data->has_ipv4s;
|
|
}
|
|
|
|
NMCSProviderGetConfigIfaceData *nmcs_provider_get_config_iface_data_new (gboolean was_requested);
|
|
|
|
typedef struct {
|
|
GTask *task;
|
|
GHashTable *result_dict;
|
|
gpointer extra_data;
|
|
GDestroyNotify extra_destroy;
|
|
bool any:1;
|
|
} NMCSProviderGetConfigTaskData;
|
|
|
|
#define NMCS_TYPE_PROVIDER (nmcs_provider_get_type ())
|
|
#define NMCS_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NMCS_TYPE_PROVIDER, NMCSProvider))
|
|
#define NMCS_PROVIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NMCS_TYPE_PROVIDER, NMCSProviderClass))
|
|
#define NMCS_IS_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NMCS_TYPE_PROVIDER))
|
|
#define NMCS_IS_PROVIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NMCS_TYPE_PROVIDER))
|
|
#define NMCS_PROVIDER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NMCS_TYPE_PROVIDER, NMCSProviderClass))
|
|
|
|
#define NMCS_PROVIDER_HTTP_CLIENT "http-client"
|
|
|
|
struct _NMCSProviderPrivate;
|
|
|
|
typedef struct {
|
|
GObject parent;
|
|
struct _NMCSProviderPrivate *_priv;
|
|
} NMCSProvider;
|
|
|
|
typedef struct {
|
|
GObjectClass parent;
|
|
const char *_name;
|
|
|
|
void (*detect) (NMCSProvider *self,
|
|
GTask *task);
|
|
|
|
void (*get_config) (NMCSProvider *self,
|
|
NMCSProviderGetConfigTaskData *get_config_data);
|
|
|
|
} NMCSProviderClass;
|
|
|
|
GType nmcs_provider_get_type (void);
|
|
|
|
/*****************************************************************************/
|
|
|
|
const char *nmcs_provider_get_name (NMCSProvider *provider);
|
|
|
|
NMHttpClient *nmcs_provider_get_http_client (NMCSProvider *provider);
|
|
GMainContext *nmcs_provider_get_main_context (NMCSProvider *provider);
|
|
|
|
/*****************************************************************************/
|
|
|
|
void nmcs_provider_detect (NMCSProvider *provider,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
|
|
gboolean nmcs_provider_detect_finish (NMCSProvider *provider,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
|
|
/*****************************************************************************/
|
|
|
|
void nmcs_provider_get_config (NMCSProvider *provider,
|
|
gboolean any,
|
|
const char *const*hwaddrs,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
|
|
GHashTable *nmcs_provider_get_config_finish (NMCSProvider *provider,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
|
|
#endif /* __NMCS_PROVIDER_H__ */
|