mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-14 14:50:30 +01:00
The implementation came with two flavors, where watcher could either specify a tag or no tag. That resulted in different usage patterns and behavior. Handles with tag are indexed by a dictionary and de-duplicated. Also the intended pattern is to delete them with nm_netns_watcher_remove_all(), Currently, nm_netns_watcher_remove_handle() was not permissible to tag-full handles, because of the de-duplication and because handles had no ref-counting implemented (the latter would be fixable, so nm_netns_watcher_remove_handle() would be made to work). On the other hand, handles without tag are never de-duplicated. They are also not indexed, so nm_netns_watcher_remove_all() doesn't work for them. They could only be removed via nm_netns_watcher_remove_handle(). Currently, the only user of the API will use tag-full handles. Drop the unused API. This is done as a separate commit, to potentially revert and restore tag-less handles (after they were already implemented).
104 lines
3.5 KiB
C
104 lines
3.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2017 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_NETNS_H__
|
|
#define __NM_NETNS_H__
|
|
|
|
#include "libnm-platform/nmp-base.h"
|
|
|
|
#define NM_TYPE_NETNS (nm_netns_get_type())
|
|
#define NM_NETNS(obj) (_NM_G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_NETNS, NMNetns))
|
|
#define NM_NETNS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_NETNS, NMNetnsClass))
|
|
#define NM_IS_NETNS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_NETNS))
|
|
#define NM_IS_NETNS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_NETNS))
|
|
#define NM_NETNS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_NETNS, NMNetnsClass))
|
|
|
|
#define NM_NETNS_PLATFORM "platform"
|
|
|
|
typedef struct _NMNetnsClass NMNetnsClass;
|
|
|
|
struct _NMPlatform;
|
|
|
|
GType nm_netns_get_type(void);
|
|
|
|
NMNetns *nm_netns_get(void);
|
|
NMNetns *nm_netns_new(struct _NMPlatform *platform);
|
|
|
|
struct _NMPlatform *nm_netns_get_platform(NMNetns *self);
|
|
NMPNetns *nm_netns_get_platform_netns(NMNetns *self);
|
|
|
|
struct _NMPGlobalTracker *nm_netns_get_global_tracker(NMNetns *self);
|
|
|
|
struct _NMDedupMultiIndex *nm_netns_get_multi_idx(NMNetns *self);
|
|
|
|
#define NM_NETNS_GET (nm_netns_get())
|
|
|
|
NML3Cfg *nm_netns_l3cfg_get(NMNetns *self, int ifindex);
|
|
|
|
NML3Cfg *nm_netns_l3cfg_acquire(NMNetns *netns, int ifindex);
|
|
|
|
/*****************************************************************************/
|
|
|
|
typedef struct {
|
|
in_addr_t addr;
|
|
int _ref_count;
|
|
NMNetns *_self;
|
|
} NMNetnsSharedIPHandle;
|
|
|
|
NMNetnsSharedIPHandle *nm_netns_shared_ip_reserve(NMNetns *self);
|
|
|
|
void nm_netns_shared_ip_release(NMNetnsSharedIPHandle *handle);
|
|
|
|
/*****************************************************************************/
|
|
|
|
void nm_netns_ip_route_ecmp_register(NMNetns *self, NML3Cfg *l3cfg, const NMPObject *obj);
|
|
void nm_netns_ip_route_ecmp_commit(NMNetns *self,
|
|
NML3Cfg *l3cfg,
|
|
GPtrArray **routes,
|
|
gboolean is_reapply);
|
|
|
|
/*****************************************************************************/
|
|
|
|
typedef enum {
|
|
NM_NETNS_WATCHER_TYPE_IP_ADDR,
|
|
} NMNetnsWatcherType;
|
|
|
|
typedef struct {
|
|
union {
|
|
struct {
|
|
NMIPAddrTyped addr;
|
|
} ip_addr;
|
|
};
|
|
} NMNetnsWatcherData;
|
|
|
|
typedef struct {
|
|
union {
|
|
struct {
|
|
const NMPObject *obj;
|
|
NMPlatformSignalChangeType change_type;
|
|
} ip_addr;
|
|
};
|
|
} NMNetnsWatcherEventData;
|
|
|
|
typedef struct _NMNetnsWatcherHandle NMNetnsWatcherHandle;
|
|
|
|
typedef void (*NMNetnsWatcherCallback)(NMNetns *self,
|
|
NMNetnsWatcherType watcher_type,
|
|
const NMNetnsWatcherData *watcher_data,
|
|
gconstpointer tag,
|
|
const NMNetnsWatcherEventData *event_data,
|
|
gpointer user_data);
|
|
|
|
void nm_netns_watcher_add(NMNetns *self,
|
|
NMNetnsWatcherType watcher_type,
|
|
const NMNetnsWatcherData *watcher_data,
|
|
gconstpointer tag,
|
|
NMNetnsWatcherCallback callback,
|
|
gpointer user_data);
|
|
|
|
void
|
|
nm_netns_watcher_remove_all(NMNetns *self, gconstpointer tag, gboolean all /* or only dirty */);
|
|
|
|
#endif /* __NM_NETNS_H__ */
|