mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-17 20:28:18 +02:00
Get rid of NM_UNMANAGED_DEFAULT and refine the interaction between unmanaged flags, device state and managed property. Previously, the NM_UNMANAGED_DEFAULT was special in that a device was still considered managed if it had solely the NM_UNMANAGED_DEFAULT flag set and its state was managed. Thus, whether the device (state) was managed, depended on the device state too. Now, a device is considered managed (or unmanaged) based on the unmanaged flags and realization state alone. At the same time, the device state directly corresponds to the managed property of the device. Of course, while changing the unmanaged flags, that invariant is shortly violated until the state transistion is complete. Introduce more unmanaged flags whereas some of them are non-authorative. For example, the EXTERNAL_DOWN flag has only effect as long as the user didn't explicitly manage the device (NM_UNMANAGED_USER_EXPLICIT). In other words, certain flags can render other flags ineffective. Whether the device is considered managed depends on the flags but also at the explicitly unset flags. In a way, this is similar to previous where NM_UNMANAGED_DEFAULT was ignored (if no other flags were present). Also, previously a device that was NM_UNMANAGED_DEFAULT and in disconnected state would transition back to unmanaged. No longer do that. Once a device is managed, it stays managed as long as the flags indicate it should be managed. However, the user can also modify the unmanaged flags via the D-Bus API. Also get rid or nm_device_finish_init(). That was previously called by NMManager after add_device(). As we now realize devices (possibly multiple times) this should be handled during realization. https://bugzilla.gnome.org/show_bug.cgi?id=746566
115 lines
4.6 KiB
C
115 lines
4.6 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* NetworkManager -- Network link manager
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
|
* Copyright (C) 2007 - 2011 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NETWORKMANAGER_DEVICE_PRIVATE_H__
|
|
#define __NETWORKMANAGER_DEVICE_PRIVATE_H__
|
|
|
|
#include "nm-device.h"
|
|
|
|
#include "nm-default.h"
|
|
|
|
/* This file should only be used by subclasses of NMDevice */
|
|
|
|
enum NMActStageReturn {
|
|
NM_ACT_STAGE_RETURN_FAILURE = 0,
|
|
NM_ACT_STAGE_RETURN_SUCCESS, /* Activation stage done */
|
|
NM_ACT_STAGE_RETURN_POSTPONE, /* Long-running operation in progress */
|
|
NM_ACT_STAGE_RETURN_WAIT, /* Not ready to start stage; wait */
|
|
NM_ACT_STAGE_RETURN_STOP, /* Activation not wanted */
|
|
NM_ACT_STAGE_RETURN_FINISH /* Activation stage done; nothing to do */
|
|
};
|
|
|
|
#define NM_DEVICE_CAP_NONSTANDARD_CARRIER 0x80000000
|
|
#define NM_DEVICE_CAP_IS_NON_KERNEL 0x40000000
|
|
|
|
#define NM_DEVICE_CAP_INTERNAL_MASK 0xc0000000
|
|
|
|
void nm_device_set_ip_iface (NMDevice *self, const char *iface);
|
|
|
|
void nm_device_activate_schedule_stage3_ip_config_start (NMDevice *device);
|
|
|
|
gboolean nm_device_activate_stage3_ip4_start (NMDevice *self);
|
|
|
|
gboolean nm_device_activate_stage3_ip6_start (NMDevice *self);
|
|
|
|
gboolean nm_device_bring_up (NMDevice *self, gboolean wait, gboolean *no_firmware);
|
|
|
|
void nm_device_take_down (NMDevice *self, gboolean block);
|
|
|
|
gboolean nm_device_set_hw_addr (NMDevice *device, const char *addr,
|
|
const char *detail, guint64 hw_log_domain);
|
|
|
|
void nm_device_set_firmware_missing (NMDevice *self, gboolean missing);
|
|
|
|
void nm_device_activate_schedule_stage1_device_prepare (NMDevice *device);
|
|
void nm_device_activate_schedule_stage2_device_config (NMDevice *device);
|
|
|
|
void nm_device_activate_schedule_ip4_config_result(NMDevice *device, NMIP4Config *config);
|
|
void nm_device_activate_schedule_ip4_config_timeout (NMDevice *device);
|
|
|
|
void nm_device_activate_schedule_ip6_config_result (NMDevice *device);
|
|
void nm_device_activate_schedule_ip6_config_timeout (NMDevice *device);
|
|
|
|
gboolean nm_device_activate_ip4_state_in_conf (NMDevice *device);
|
|
gboolean nm_device_activate_ip4_state_in_wait (NMDevice *device);
|
|
|
|
gboolean nm_device_activate_ip6_state_in_conf (NMDevice *device);
|
|
gboolean nm_device_activate_ip6_state_in_wait (NMDevice *device);
|
|
|
|
void nm_device_set_dhcp_timeout (NMDevice *device, guint32 timeout);
|
|
void nm_device_set_dhcp_anycast_address (NMDevice *device, const char *addr);
|
|
|
|
gboolean nm_device_dhcp4_renew (NMDevice *device, gboolean release);
|
|
gboolean nm_device_dhcp6_renew (NMDevice *device, gboolean release);
|
|
|
|
void nm_device_recheck_available_connections (NMDevice *device);
|
|
|
|
void nm_device_queued_state_clear (NMDevice *device);
|
|
|
|
NMDeviceState nm_device_queued_state_peek (NMDevice *device);
|
|
|
|
gboolean nm_device_get_enslaved (NMDevice *device);
|
|
|
|
NMDevice *nm_device_master_get_slave_by_ifindex (NMDevice *dev, int ifindex);
|
|
|
|
void nm_device_master_check_slave_physical_port (NMDevice *self, NMDevice *slave,
|
|
NMLogDomain log_domain);
|
|
|
|
void nm_device_set_carrier (NMDevice *self, gboolean carrier);
|
|
|
|
void nm_device_queue_recheck_assume (NMDevice *device);
|
|
void nm_device_queue_recheck_available (NMDevice *device,
|
|
NMDeviceStateReason available_reason,
|
|
NMDeviceStateReason unavailable_reason);
|
|
|
|
void nm_device_set_wwan_ip4_config (NMDevice *device, NMIP4Config *config);
|
|
void nm_device_set_wwan_ip6_config (NMDevice *device, NMIP6Config *config);
|
|
|
|
gboolean nm_device_ipv6_sysctl_set (NMDevice *self, const char *property, const char *value);
|
|
|
|
#define NM_DEVICE_CLASS_DECLARE_TYPES(klass, conn_type, ...) \
|
|
NM_DEVICE_CLASS (klass)->connection_type = conn_type; \
|
|
{ \
|
|
static const NMLinkType link_types[] = { __VA_ARGS__, NM_LINK_TYPE_NONE }; \
|
|
NM_DEVICE_CLASS (klass)->link_types = link_types; \
|
|
}
|
|
|
|
#endif /* NM_DEVICE_PRIVATE_H */
|