2019-09-10 11:19:01 +02:00
|
|
|
// SPDX-License-Identifier: LGPL-2.1+
|
2014-07-24 08:53:33 -04:00
|
|
|
/*
|
2019-10-01 09:20:35 +02:00
|
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
|
|
|
|
* Copyright (C) 2007 - 2011 Red Hat, Inc.
|
2014-07-24 08:53:33 -04:00
|
|
|
*/
|
|
|
|
|
|
2016-02-12 14:44:52 +01:00
|
|
|
#include "nm-default.h"
|
2016-02-19 14:57:48 +01:00
|
|
|
|
2016-02-12 14:44:52 +01:00
|
|
|
#include "nm-access-point.h"
|
|
|
|
|
|
|
|
|
|
#include "nm-connection.h"
|
|
|
|
|
#include "nm-setting-connection.h"
|
|
|
|
|
#include "nm-setting-wireless.h"
|
|
|
|
|
#include "nm-setting-wireless-security.h"
|
|
|
|
|
#include "nm-utils.h"
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2014-07-05 16:23:30 -04:00
|
|
|
#include "nm-dbus-interface.h"
|
2014-07-24 08:53:33 -04:00
|
|
|
#include "nm-object-private.h"
|
|
|
|
|
|
2019-10-18 08:12:01 +02:00
|
|
|
/*****************************************************************************/
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2019-10-18 08:12:01 +02:00
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE_BASE (
|
|
|
|
|
PROP_FLAGS,
|
|
|
|
|
PROP_WPA_FLAGS,
|
|
|
|
|
PROP_RSN_FLAGS,
|
|
|
|
|
PROP_SSID,
|
|
|
|
|
PROP_FREQUENCY,
|
|
|
|
|
PROP_HW_ADDRESS,
|
|
|
|
|
PROP_MODE,
|
|
|
|
|
PROP_MAX_BITRATE,
|
|
|
|
|
PROP_STRENGTH,
|
|
|
|
|
PROP_BSSID,
|
|
|
|
|
PROP_LAST_SEEN,
|
|
|
|
|
);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
NM80211ApFlags flags;
|
|
|
|
|
NM80211ApSecurityFlags wpa_flags;
|
|
|
|
|
NM80211ApSecurityFlags rsn_flags;
|
2014-07-02 14:25:43 -04:00
|
|
|
GBytes *ssid;
|
2014-07-24 08:53:33 -04:00
|
|
|
guint32 frequency;
|
|
|
|
|
char *bssid;
|
|
|
|
|
NM80211Mode mode;
|
|
|
|
|
guint32 max_bitrate;
|
|
|
|
|
guint8 strength;
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int last_seen;
|
2014-07-24 08:53:33 -04:00
|
|
|
} NMAccessPointPrivate;
|
|
|
|
|
|
2019-10-18 08:12:01 +02:00
|
|
|
struct _NMAccessPoint {
|
|
|
|
|
NMObject parent;
|
|
|
|
|
NMAccessPointPrivate _priv;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct _NMAccessPointClass {
|
|
|
|
|
NMObjectClass parent;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (NMAccessPoint, nm_access_point, NM_TYPE_OBJECT)
|
|
|
|
|
|
|
|
|
|
#define NM_ACCESS_POINT_GET_PRIVATE(self) _NM_GET_PRIVATE(self, NMAccessPoint, NM_IS_ACCESS_POINT, NMObject)
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the flags of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the flags
|
|
|
|
|
**/
|
|
|
|
|
NM80211ApFlags
|
|
|
|
|
nm_access_point_get_flags (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_FLAGS_NONE);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_wpa_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the WPA (version 1) flags of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the WPA flags
|
|
|
|
|
**/
|
|
|
|
|
NM80211ApSecurityFlags
|
|
|
|
|
nm_access_point_get_wpa_flags (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_SEC_NONE);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->wpa_flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_rsn_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the RSN (Robust Secure Network, ie WPA version 2) flags of the access
|
|
|
|
|
* point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the RSN flags
|
|
|
|
|
**/
|
|
|
|
|
NM80211ApSecurityFlags
|
|
|
|
|
nm_access_point_get_rsn_flags (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_SEC_NONE);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->rsn_flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_ssid:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the SSID of the access point.
|
|
|
|
|
*
|
2014-11-13 14:14:11 -05:00
|
|
|
* Returns: (transfer none): the #GBytes containing the SSID, or %NULL if the
|
|
|
|
|
* SSID is unknown.
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
2014-07-02 14:25:43 -04:00
|
|
|
GBytes *
|
2014-07-24 08:53:33 -04:00
|
|
|
nm_access_point_get_ssid (NMAccessPoint *ap)
|
|
|
|
|
{
|
2014-09-17 09:36:23 -04:00
|
|
|
NMAccessPointPrivate *priv;
|
|
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NULL);
|
|
|
|
|
|
2014-09-17 09:36:23 -04:00
|
|
|
priv = NM_ACCESS_POINT_GET_PRIVATE (ap);
|
|
|
|
|
if (!priv->ssid || g_bytes_get_size (priv->ssid) == 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return priv->ssid;
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_frequency:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Gets the frequency of the access point in MHz.
|
2014-07-24 08:53:33 -04:00
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Returns: the frequency in MHz
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
|
|
|
|
guint32
|
|
|
|
|
nm_access_point_get_frequency (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->frequency;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_bssid:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the Basic Service Set ID (BSSID) of the Wi-Fi access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the BSSID of the access point. This is an internal string and must
|
|
|
|
|
* not be modified or freed.
|
|
|
|
|
**/
|
|
|
|
|
const char *
|
|
|
|
|
nm_access_point_get_bssid (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NULL);
|
|
|
|
|
|
2016-10-12 19:50:32 +02:00
|
|
|
return nm_str_not_empty (NM_ACCESS_POINT_GET_PRIVATE (ap)->bssid);
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_mode:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the mode of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the mode
|
|
|
|
|
**/
|
|
|
|
|
NM80211Mode
|
|
|
|
|
nm_access_point_get_mode (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_max_bitrate:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the maximum bit rate of the access point in kbit/s.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the maximum bit rate (kbit/s)
|
|
|
|
|
**/
|
|
|
|
|
guint32
|
|
|
|
|
nm_access_point_get_max_bitrate (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->max_bitrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_strength:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Gets the current signal strength of the access point as a percentage.
|
2014-07-24 08:53:33 -04:00
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Returns: the signal strength (0 to 100)
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
|
|
|
|
guint8
|
|
|
|
|
nm_access_point_get_strength (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->strength;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-27 12:50:39 -05:00
|
|
|
/**
|
2015-07-17 17:32:28 -05:00
|
|
|
* nm_access_point_get_last_seen:
|
2015-04-27 12:50:39 -05:00
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Returns the timestamp (in CLOCK_BOOTTIME seconds) for the last time the
|
|
|
|
|
* access point was found in scan results. A value of -1 means the access
|
|
|
|
|
* point has not been found in a scan.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the last seen time in seconds
|
|
|
|
|
*
|
Revert "all: change "Since: 1.2" to "Since: 1.0.4"/"Since: 1.0.6" for backported API"
API should be added with "Since:" of the next release on the same branch.
That means, new API on 1.1 branch (development), should be "Since: 1.2"
and new API on 1.0 branch (stable) will be "Since: 1.0.x". Similarly, new
API on master is NM_AVAILABLE_IN_1_2 and will be added with the linker
version libnl_1_2 -- never the versions of minor releases.
It is also strongly advised that for the 1.0 branch, we only add API
that was previously formerly added on master. IOW, that we only do true
backports of API that already exists on master.
API that gets backported, must also be added to master via NM_BACKPORT_SYMBOL().
That gives ABI compatibility and an application that was build against 1.0.x
will work with 1.y.z version (y > 0) without need for recompiling -- provided
that 1.y.z also contains that API.
There is one important caveat: if a major branch (e.g. current master) has a
linker section of backported APIs (e.g. libnm_1_0_6), we must do the minor release
(1.0.6) before the next major release (1.2). The reason is that after the major
release, the linker section (libnm_1_0_6) must not be extended and thus
the minor release (1.0.6) must be already released at that point.
In general, users should avoid using backported API because it limits
the ability to upgrade to arbitrary later versions. But together with the
previous point (that we only backport API to minor releases), a user that
uses backported API can be sure that a 1.y.z version is ABI compatible with
1.0.x, if the 1.y.z release date was after the release date of 1.0.x.
This reverts commit 02a136682c749a0fd27853c0152d36c44635151f.
2015-08-22 00:57:30 +02:00
|
|
|
* Since: 1.2
|
2015-04-27 12:50:39 -05:00
|
|
|
**/
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int
|
2015-04-27 12:50:39 -05:00
|
|
|
nm_access_point_get_last_seen (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), -1);
|
|
|
|
|
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->last_seen;
|
|
|
|
|
}
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
NM_BACKPORT_SYMBOL (libnm_1_0_6, int, nm_access_point_get_last_seen, (NMAccessPoint *ap), (ap));
|
2015-04-27 12:50:39 -05:00
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_connection_valid:
|
|
|
|
|
* @ap: an #NMAccessPoint to validate @connection against
|
|
|
|
|
* @connection: an #NMConnection to validate against @ap
|
|
|
|
|
*
|
|
|
|
|
* Validates a given connection against a given Wi-Fi access point to ensure that
|
|
|
|
|
* the connection may be activated with that AP. The connection must match the
|
|
|
|
|
* @ap's SSID, (if given) BSSID, and other attributes like security settings,
|
|
|
|
|
* channel, band, etc.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the connection may be activated with this Wi-Fi AP,
|
|
|
|
|
* %FALSE if it cannot be.
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
nm_access_point_connection_valid (NMAccessPoint *ap, NMConnection *connection)
|
|
|
|
|
{
|
|
|
|
|
NMSettingConnection *s_con;
|
|
|
|
|
NMSettingWireless *s_wifi;
|
|
|
|
|
NMSettingWirelessSecurity *s_wsec;
|
2014-06-16 11:30:47 -04:00
|
|
|
const char *ctype, *ap_bssid;
|
2014-06-26 10:42:11 -04:00
|
|
|
GBytes *setting_ssid;
|
2014-07-02 14:25:43 -04:00
|
|
|
GBytes *ap_ssid;
|
2014-07-30 10:57:45 -04:00
|
|
|
const char *setting_bssid;
|
2014-07-24 08:53:33 -04:00
|
|
|
const char *setting_mode;
|
|
|
|
|
NM80211Mode ap_mode;
|
|
|
|
|
const char *setting_band;
|
|
|
|
|
guint32 ap_freq, setting_chan, ap_chan;
|
|
|
|
|
|
|
|
|
|
s_con = nm_connection_get_setting_connection (connection);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (!s_con)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
ctype = nm_setting_connection_get_connection_type (s_con);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (!ctype || !nm_streq (ctype, NM_SETTING_WIRELESS_SETTING_NAME))
|
2014-07-24 08:53:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
s_wifi = nm_connection_get_setting_wireless (connection);
|
|
|
|
|
if (!s_wifi)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* SSID checks */
|
|
|
|
|
ap_ssid = nm_access_point_get_ssid (ap);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (!ap_ssid)
|
2014-07-24 08:53:33 -04:00
|
|
|
return FALSE;
|
2017-01-28 15:44:09 +01:00
|
|
|
setting_ssid = nm_setting_wireless_get_ssid (s_wifi);
|
|
|
|
|
if ( !setting_ssid
|
|
|
|
|
|| !g_bytes_equal (ap_ssid, setting_ssid))
|
2014-07-24 08:53:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* BSSID checks */
|
2014-06-16 11:30:47 -04:00
|
|
|
ap_bssid = nm_access_point_get_bssid (ap);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (!ap_bssid)
|
|
|
|
|
return FALSE;
|
2014-07-24 08:53:33 -04:00
|
|
|
setting_bssid = nm_setting_wireless_get_bssid (s_wifi);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (setting_bssid) {
|
|
|
|
|
guint8 c[ETH_ALEN];
|
|
|
|
|
|
|
|
|
|
if ( !nm_utils_hwaddr_aton (ap_bssid, c, ETH_ALEN)
|
|
|
|
|
|| !nm_utils_hwaddr_matches (c, ETH_ALEN, setting_bssid, -1))
|
2014-06-16 11:30:47 -04:00
|
|
|
return FALSE;
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mode */
|
|
|
|
|
ap_mode = nm_access_point_get_mode (ap);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (ap_mode == NM_802_11_MODE_UNKNOWN)
|
|
|
|
|
return FALSE;
|
2014-07-24 08:53:33 -04:00
|
|
|
setting_mode = nm_setting_wireless_get_mode (s_wifi);
|
|
|
|
|
if (setting_mode && ap_mode) {
|
|
|
|
|
if (!strcmp (setting_mode, "infrastructure") && (ap_mode != NM_802_11_MODE_INFRA))
|
|
|
|
|
return FALSE;
|
|
|
|
|
if (!strcmp (setting_mode, "adhoc") && (ap_mode != NM_802_11_MODE_ADHOC))
|
|
|
|
|
return FALSE;
|
|
|
|
|
/* Hotspot never matches against APs as it's a device-specific mode. */
|
|
|
|
|
if (!strcmp (setting_mode, "ap"))
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Band and Channel/Frequency */
|
|
|
|
|
ap_freq = nm_access_point_get_frequency (ap);
|
|
|
|
|
if (ap_freq) {
|
|
|
|
|
setting_band = nm_setting_wireless_get_band (s_wifi);
|
|
|
|
|
if (g_strcmp0 (setting_band, "a") == 0) {
|
|
|
|
|
if (ap_freq < 4915 || ap_freq > 5825)
|
|
|
|
|
return FALSE;
|
|
|
|
|
} else if (g_strcmp0 (setting_band, "bg") == 0) {
|
|
|
|
|
if (ap_freq < 2412 || ap_freq > 2484)
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setting_chan = nm_setting_wireless_get_channel (s_wifi);
|
|
|
|
|
if (setting_chan) {
|
|
|
|
|
ap_chan = nm_utils_wifi_freq_to_channel (ap_freq);
|
|
|
|
|
if (setting_chan != ap_chan)
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s_wsec = nm_connection_get_setting_wireless_security (connection);
|
|
|
|
|
if (!nm_setting_wireless_ap_security_compatible (s_wifi,
|
|
|
|
|
s_wsec,
|
|
|
|
|
nm_access_point_get_flags (ap),
|
|
|
|
|
nm_access_point_get_wpa_flags (ap),
|
|
|
|
|
nm_access_point_get_rsn_flags (ap),
|
|
|
|
|
ap_mode))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_filter_connections:
|
|
|
|
|
* @ap: an #NMAccessPoint to filter connections for
|
2014-10-22 12:32:46 -04:00
|
|
|
* @connections: (element-type NMConnection): an array of #NMConnections to
|
|
|
|
|
* filter
|
2014-07-24 08:53:33 -04:00
|
|
|
*
|
2014-10-22 12:32:46 -04:00
|
|
|
* Filters a given array of connections for a given #NMAccessPoint object and
|
|
|
|
|
* returns connections which may be activated with the access point. Any
|
2014-07-24 08:53:33 -04:00
|
|
|
* returned connections will match the @ap's SSID and (if given) BSSID and
|
|
|
|
|
* other attributes like security settings, channel, etc.
|
|
|
|
|
*
|
|
|
|
|
* To obtain the list of connections that are compatible with this access point,
|
2014-10-22 12:32:46 -04:00
|
|
|
* use nm_client_get_connections() and then filter the returned list for a given
|
|
|
|
|
* #NMDevice using nm_device_filter_connections() and finally filter that list
|
|
|
|
|
* with this function.
|
2014-07-24 08:53:33 -04:00
|
|
|
*
|
2018-11-08 18:50:49 +01:00
|
|
|
* Returns: (transfer full) (element-type NMConnection): an array of
|
2014-10-22 12:32:46 -04:00
|
|
|
* #NMConnections that could be activated with the given @ap. The array should
|
|
|
|
|
* be freed with g_ptr_array_unref() when it is no longer required.
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
2014-10-22 12:32:46 -04:00
|
|
|
GPtrArray *
|
|
|
|
|
nm_access_point_filter_connections (NMAccessPoint *ap, const GPtrArray *connections)
|
2014-07-24 08:53:33 -04:00
|
|
|
{
|
2014-10-22 12:32:46 -04:00
|
|
|
GPtrArray *filtered;
|
|
|
|
|
int i;
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2014-10-22 12:32:46 -04:00
|
|
|
filtered = g_ptr_array_new_with_free_func (g_object_unref);
|
|
|
|
|
for (i = 0; i < connections->len; i++) {
|
|
|
|
|
NMConnection *candidate = connections->pdata[i];
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
if (nm_access_point_connection_valid (ap, candidate))
|
2014-10-22 12:32:46 -04:00
|
|
|
g_ptr_array_add (filtered, g_object_ref (candidate));
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
2014-10-22 12:32:46 -04:00
|
|
|
return filtered;
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_access_point_init (NMAccessPoint *ap)
|
|
|
|
|
{
|
2015-04-27 12:50:39 -05:00
|
|
|
NM_ACCESS_POINT_GET_PRIVATE (ap)->last_seen = -1;
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
NMAccessPointPrivate *priv = NM_ACCESS_POINT_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
|
|
if (priv->ssid)
|
2014-07-02 14:25:43 -04:00
|
|
|
g_bytes_unref (priv->ssid);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
g_free (priv->bssid);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (nm_access_point_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
NMAccessPoint *ap = NM_ACCESS_POINT (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_FLAGS:
|
2014-06-26 16:47:46 -04:00
|
|
|
g_value_set_flags (value, nm_access_point_get_flags (ap));
|
2014-07-24 08:53:33 -04:00
|
|
|
break;
|
|
|
|
|
case PROP_WPA_FLAGS:
|
2014-06-26 16:47:46 -04:00
|
|
|
g_value_set_flags (value, nm_access_point_get_wpa_flags (ap));
|
2014-07-24 08:53:33 -04:00
|
|
|
break;
|
|
|
|
|
case PROP_RSN_FLAGS:
|
2014-06-26 16:47:46 -04:00
|
|
|
g_value_set_flags (value, nm_access_point_get_rsn_flags (ap));
|
2014-07-24 08:53:33 -04:00
|
|
|
break;
|
|
|
|
|
case PROP_SSID:
|
|
|
|
|
g_value_set_boxed (value, nm_access_point_get_ssid (ap));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_FREQUENCY:
|
|
|
|
|
g_value_set_uint (value, nm_access_point_get_frequency (ap));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_HW_ADDRESS:
|
|
|
|
|
g_value_set_string (value, nm_access_point_get_bssid (ap));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_BSSID:
|
|
|
|
|
g_value_set_string (value, nm_access_point_get_bssid (ap));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_MODE:
|
2014-06-26 16:47:46 -04:00
|
|
|
g_value_set_enum (value, nm_access_point_get_mode (ap));
|
2014-07-24 08:53:33 -04:00
|
|
|
break;
|
|
|
|
|
case PROP_MAX_BITRATE:
|
|
|
|
|
g_value_set_uint (value, nm_access_point_get_max_bitrate (ap));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_STRENGTH:
|
|
|
|
|
g_value_set_uchar (value, nm_access_point_get_strength (ap));
|
|
|
|
|
break;
|
2015-04-27 12:50:39 -05:00
|
|
|
case PROP_LAST_SEEN:
|
|
|
|
|
g_value_set_int (value, nm_access_point_get_last_seen (ap));
|
|
|
|
|
break;
|
2014-07-24 08:53:33 -04:00
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2014-05-15 14:24:56 -04:00
|
|
|
init_dbus (NMObject *object)
|
2014-07-24 08:53:33 -04:00
|
|
|
{
|
2014-05-15 14:24:56 -04:00
|
|
|
NMAccessPointPrivate *priv = NM_ACCESS_POINT_GET_PRIVATE (object);
|
2014-07-24 08:53:33 -04:00
|
|
|
const NMPropertiesInfo property_info[] = {
|
|
|
|
|
{ NM_ACCESS_POINT_FLAGS, &priv->flags },
|
|
|
|
|
{ NM_ACCESS_POINT_WPA_FLAGS, &priv->wpa_flags },
|
|
|
|
|
{ NM_ACCESS_POINT_RSN_FLAGS, &priv->rsn_flags },
|
2014-07-02 14:25:43 -04:00
|
|
|
{ NM_ACCESS_POINT_SSID, &priv->ssid },
|
2014-07-24 08:53:33 -04:00
|
|
|
{ NM_ACCESS_POINT_FREQUENCY, &priv->frequency },
|
2014-05-09 15:02:57 -04:00
|
|
|
/* The D-Bus property is HwAddress, but the GObject property is "bssid" */
|
2014-07-24 08:53:33 -04:00
|
|
|
{ NM_ACCESS_POINT_HW_ADDRESS, &priv->bssid },
|
|
|
|
|
{ NM_ACCESS_POINT_MODE, &priv->mode },
|
|
|
|
|
{ NM_ACCESS_POINT_MAX_BITRATE, &priv->max_bitrate },
|
|
|
|
|
{ NM_ACCESS_POINT_STRENGTH, &priv->strength },
|
2015-04-27 12:50:39 -05:00
|
|
|
{ NM_ACCESS_POINT_LAST_SEEN, &priv->last_seen },
|
2014-07-24 08:53:33 -04:00
|
|
|
{ NULL },
|
|
|
|
|
};
|
|
|
|
|
|
2014-05-15 14:24:56 -04:00
|
|
|
NM_OBJECT_CLASS (nm_access_point_parent_class)->init_dbus (object);
|
|
|
|
|
|
|
|
|
|
_nm_object_register_properties (object,
|
2014-08-18 14:17:52 -04:00
|
|
|
NM_DBUS_INTERFACE_ACCESS_POINT,
|
2014-07-24 08:53:33 -04:00
|
|
|
property_info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_access_point_class_init (NMAccessPointClass *ap_class)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (ap_class);
|
2014-05-15 14:24:56 -04:00
|
|
|
NMObjectClass *nm_object_class = NM_OBJECT_CLASS (ap_class);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
object_class->get_property = get_property;
|
2019-10-10 17:57:30 +02:00
|
|
|
object_class->finalize = finalize;
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2014-05-15 14:24:56 -04:00
|
|
|
nm_object_class->init_dbus = init_dbus;
|
|
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:flags:
|
|
|
|
|
*
|
|
|
|
|
* The flags of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_FLAGS] =
|
|
|
|
|
g_param_spec_flags (NM_ACCESS_POINT_FLAGS, "", "",
|
|
|
|
|
NM_TYPE_802_11_AP_FLAGS,
|
|
|
|
|
NM_802_11_AP_FLAGS_NONE,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:wpa-flags:
|
|
|
|
|
*
|
|
|
|
|
* The WPA flags of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_WPA_FLAGS] =
|
|
|
|
|
g_param_spec_flags (NM_ACCESS_POINT_WPA_FLAGS, "", "",
|
|
|
|
|
NM_TYPE_802_11_AP_SECURITY_FLAGS,
|
|
|
|
|
NM_802_11_AP_SEC_NONE,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:rsn-flags:
|
|
|
|
|
*
|
|
|
|
|
* The RSN flags of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_RSN_FLAGS] =
|
|
|
|
|
g_param_spec_flags (NM_ACCESS_POINT_RSN_FLAGS, "", "",
|
|
|
|
|
NM_TYPE_802_11_AP_SECURITY_FLAGS,
|
|
|
|
|
NM_802_11_AP_SEC_NONE,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:ssid:
|
|
|
|
|
*
|
2014-09-17 09:36:23 -04:00
|
|
|
* The SSID of the access point, or %NULL if it is not known.
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_SSID] =
|
|
|
|
|
g_param_spec_boxed (NM_ACCESS_POINT_SSID, "", "",
|
|
|
|
|
G_TYPE_BYTES,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:frequency:
|
|
|
|
|
*
|
|
|
|
|
* The frequency of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_FREQUENCY] =
|
|
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_FREQUENCY, "", "",
|
|
|
|
|
0, 10000, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:bssid:
|
|
|
|
|
*
|
|
|
|
|
* The BSSID of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_BSSID] =
|
|
|
|
|
g_param_spec_string (NM_ACCESS_POINT_BSSID, "", "",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:hw-address:
|
|
|
|
|
*
|
2014-05-09 15:02:57 -04:00
|
|
|
* Alias for #NMAccessPoint:bssid.
|
|
|
|
|
*
|
|
|
|
|
* Deprecated: 1.0: use #NMAccessPoint:bssid.
|
2014-07-24 08:53:33 -04:00
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_HW_ADDRESS] =
|
|
|
|
|
g_param_spec_string (NM_ACCESS_POINT_HW_ADDRESS, "", "",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2018-02-02 10:55:34 +01:00
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:mode:
|
|
|
|
|
*
|
|
|
|
|
* The mode of the access point; either "infrastructure" (a central
|
|
|
|
|
* coordinator of the wireless network allowing clients to connect) or
|
|
|
|
|
* "ad-hoc" (a network with no central controller).
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_MODE] =
|
|
|
|
|
g_param_spec_enum (NM_ACCESS_POINT_MODE, "", "",
|
|
|
|
|
NM_TYPE_802_11_MODE,
|
2019-10-19 09:06:48 +02:00
|
|
|
NM_802_11_MODE_UNKNOWN,
|
2019-10-10 17:57:30 +02:00
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:max-bitrate:
|
|
|
|
|
*
|
|
|
|
|
* The maximum bit rate of the access point in kbit/s.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_MAX_BITRATE] =
|
|
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_MAX_BITRATE, "", "",
|
|
|
|
|
0, G_MAXUINT32, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:strength:
|
|
|
|
|
*
|
|
|
|
|
* The current signal strength of the access point.
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_STRENGTH] =
|
|
|
|
|
g_param_spec_uchar (NM_ACCESS_POINT_STRENGTH, "", "",
|
|
|
|
|
0, G_MAXUINT8, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2015-04-27 12:50:39 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:last-seen:
|
|
|
|
|
*
|
|
|
|
|
* The timestamp (in CLOCK_BOOTTIME seconds) for the last time the
|
|
|
|
|
* access point was found in scan results. A value of -1 means the
|
|
|
|
|
* access point has not been found in a scan.
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.2
|
|
|
|
|
**/
|
2019-10-10 17:57:30 +02:00
|
|
|
obj_properties[PROP_LAST_SEEN] =
|
|
|
|
|
g_param_spec_int (NM_ACCESS_POINT_LAST_SEEN, "", "",
|
|
|
|
|
-1, G_MAXINT, -1,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
|
|
g_object_class_install_properties (object_class, _PROPERTY_ENUMS_LAST, obj_properties);
|
2014-07-24 08:53:33 -04:00
|
|
|
}
|