mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 14:50:07 +01:00
For addresses (NMPlatformIPAddress) the @addr_source field is ignored on a platform level. That is, all addresses inside the platform cache have this value set to NM_IP_CONFIG_SOURCE_KERNEL. Maybe, for that reason, the source should not be a part of the NMPlatformIPAddress structure, but it is convenient for users to piggy back the source inside the platform address structure. For routes, the source is stored in NMPlatformIPRoute's @rt_source field. When adding a route to kernel, we set the @rtm_protocol of the route depending on the source. However, we want to map different source values to the same protocol value. On the other hand, when kernel sends us a route that gets put inside the cache, we must preserve the protocol value and must not map different protocol values to the same source. The reason is, that a user can add two routes that only differ by @rtm_protocol. In that sense, the @rtm_protocol fields is part of the unique ID of a kernel route, and thus different values must map to different sources. Fix this, by extending the range of NMIPConfigSource to contain a range of protocol fields.
63 lines
2.7 KiB
C
63 lines
2.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* nm-platform.c - Handle runtime kernel networking configuration
|
|
*
|
|
* 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, 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) 2015 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_PLATFORM_UTILS_H__
|
|
#define __NM_PLATFORM_UTILS_H__
|
|
|
|
#include <gudev/gudev.h>
|
|
|
|
#include "nm-platform.h"
|
|
#include "nm-setting-wired.h"
|
|
|
|
|
|
const char *nmp_utils_ethtool_get_driver (const char *ifname);
|
|
gboolean nmp_utils_ethtool_supports_carrier_detect (const char *ifname);
|
|
gboolean nmp_utils_ethtool_supports_vlans (const char *ifname);
|
|
int nmp_utils_ethtool_get_peer_ifindex (const char *ifname);
|
|
gboolean nmp_utils_ethtool_get_wake_on_lan (const char *ifname);
|
|
gboolean nmp_utils_ethtool_set_wake_on_lan (const char *ifname, NMSettingWiredWakeOnLan wol,
|
|
const char *wol_password);
|
|
|
|
gboolean nmp_utils_ethtool_get_link_speed (const char *ifname, guint32 *out_speed);
|
|
|
|
gboolean nmp_utils_ethtool_get_driver_info (const char *ifname,
|
|
char **out_driver_name,
|
|
char **out_driver_version,
|
|
char **out_fw_version);
|
|
|
|
gboolean nmp_utils_ethtool_get_permanent_address (const char *ifname,
|
|
guint8 *buf,
|
|
size_t *length);
|
|
|
|
|
|
gboolean nmp_utils_mii_supports_carrier_detect (const char *ifname);
|
|
|
|
|
|
const char *nmp_utils_udev_get_driver (GUdevDevice *device);
|
|
|
|
gboolean nmp_utils_device_exists (const char *name);
|
|
|
|
NMIPConfigSource nmp_utils_ip_config_source_from_rtprot (guint8 rtprot);
|
|
guint8 nmp_utils_ip_config_source_coerce_to_rtprot (NMIPConfigSource source);
|
|
NMIPConfigSource nmp_utils_ip_config_source_coerce_from_rtprot (NMIPConfigSource source);
|
|
NMIPConfigSource nmp_utils_ip_config_source_round_trip_rtprot (NMIPConfigSource source);
|
|
const char * nmp_utils_ip_config_source_to_string (NMIPConfigSource source, char *buf, gsize len);
|
|
|
|
#endif /* __NM_PLATFORM_UTILS_H__ */
|