2008-11-14 17:41:16 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
|
/*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301 USA.
|
|
|
|
|
*
|
2014-07-04 13:33:18 -04:00
|
|
|
* Copyright 2007 - 2008 Novell, Inc.
|
|
|
|
|
* Copyright 2007 - 2011 Red Hat, Inc.
|
2008-11-14 17:41:16 +00:00
|
|
|
*/
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2016-02-19 14:57:48 +01:00
|
|
|
#include "nm-default.h"
|
2014-11-13 10:07:02 -05:00
|
|
|
|
2008-03-14 Dan Williams <dcbw@redhat.com>
* include/wireless-helper.h
include/Makefile.am
- One place for all the junk needed for #including wireless.h
* test/nm-tool.c
src/NetworkManagerAP.c
src/wpa.c
src/Makefile.am
libnm-util/nm-utils.c
libnm-util/nm-setting-wireless.c
libnm-glib/nm-device-802-11-wireless.c
libnm-glib/nm-access-point.c
libnm-glib/libnm-glib-test.c
- include wireless-helper.h, not iwlib.h
* configure.in
- Don't need libiw really, just need to check for wireless.h
* src/kernel-types.h
- Remove; used types moved into wpa.c
* src/nm-device-802-11-wireless.c
- (nm_device_802_11_wireless_update_signal_strength,
real_get_generic_capabilities, nm_device_802_11_wireless_get_mode,
nm_device_802_11_wireless_set_mode,
nm_device_802_11_wireless_get_frequency,
nm_device_802_11_wireless_get_ssid,
nm_device_802_11_wireless_set_ssid,
nm_device_802_11_wireless_get_bitrate,
nm_device_802_11_wireless_get_bssid,
nm_device_802_11_wireless_disable_encryption): use ioctl() directly
instead of iwlib functions
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3462 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2008-03-14 21:12:03 +00:00
|
|
|
#include <string.h>
|
2011-03-11 09:36:41 -06:00
|
|
|
#include <netinet/ether.h>
|
|
|
|
|
|
2017-03-09 13:02:20 +01:00
|
|
|
#include "nm-connection.h"
|
|
|
|
|
#include "nm-setting-connection.h"
|
|
|
|
|
#include "nm-setting-wireless.h"
|
|
|
|
|
#include "nm-setting-wireless-security.h"
|
|
|
|
|
#include "nm-utils.h"
|
2007-09-19 20:44:37 +00:00
|
|
|
|
2007-02-12 09:23:43 +00:00
|
|
|
#include "nm-access-point.h"
|
|
|
|
|
#include "NetworkManager.h"
|
2008-03-24 15:17:30 +00:00
|
|
|
#include "nm-types-private.h"
|
|
|
|
|
#include "nm-object-private.h"
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2007-06-22 15:09:02 +00:00
|
|
|
G_DEFINE_TYPE (NMAccessPoint, nm_access_point, NM_TYPE_OBJECT)
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2007-03-02 Tambet Ingo <tambet@ximian.com>
* libnm-glib/nm-device-802-11-wireless.c: Cache networks (bssids) list.
We get signalled when it changes.
* libnm-glib/nm-client.c: Cache NMState and device list, we get signalled
when it changes.
* libnm-glib/nm-device.c: Cache the device state property.
* libnm-glib/nm-access-point.c: Cache the strength property.
* src/nm-device-802-11-wireless.c: Fix wireless device scanning scheduler.
The new algorithm is to start from SCAN_INTERVAL_MIN (currently defined as 0)
and add a SCAN_INTERVAL_STEP (currently 20 seconds) with each successful scan
until SCAN_INTERVAL_MAX (currently 120 seconds) is reached. Do not scan while
the device is down, activating, or activated (in case of A/B/G cards).
Remove some old dead ifdef'ed out code that used to configure wireless devices,
it's all done through supplicant now.
* src/supplicant-manager/nm-supplicant-interface.c: Fix the reference
counting issues with pending calls which caused leaks and crashes when
interface was removed (now that the interface actually gets removed).
* src/nm-call-store.c: Make a copy of data before running a foreach
with user callback on it - The most common usage pattern is to cancel
(and thus remove) all pending calls with foreach which would modify
the hash table we're iterating over.
* src/nm-manager.c: When a device is added, make sure it is "up". When
it's removed or disabled due to disabling wireless or networking, bring
it down.
* include/NetworkManager.h: Add new device state NM_DEVICE_STATE_DOWN.
* src/nm-device-802-11-wireless.c:
* src/nm-device-802-3-ethernet.c:
* src/nm-device.c:
- Remove "init" virtual function, all gobjects have a place for that
already (constructor).
- Replace "start" virtual function with "bring_up", devices can be
brought up and down more than just on startup now.
- Add "is_up" virtual function.
- Implement one way to bring a device down instead of previous 4 different
ways, each of witch did something different.
* src/NetworkManagerUtils.c (nm_dev_sock_open): This doesn't need an NMDevice,
all it needs is the device interface.
Get rid of NMData.dev_list (3 members to go).
Get rif of NMData in a lot of places.
* gnome/libnm_glib/libnm_glib.c: Make it compile again.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2395 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2007-03-02 09:30:48 +00:00
|
|
|
#define NM_ACCESS_POINT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_ACCESS_POINT, NMAccessPointPrivate))
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2008-03-24 15:17:30 +00:00
|
|
|
DBusGProxy *proxy;
|
|
|
|
|
|
2011-02-18 11:42:55 -06:00
|
|
|
NM80211ApFlags flags;
|
|
|
|
|
NM80211ApSecurityFlags wpa_flags;
|
|
|
|
|
NM80211ApSecurityFlags rsn_flags;
|
2007-09-19 20:44:37 +00:00
|
|
|
GByteArray *ssid;
|
|
|
|
|
guint32 frequency;
|
2011-03-11 09:36:41 -06:00
|
|
|
char *bssid;
|
2008-04-15 20:39:34 +00:00
|
|
|
NM80211Mode mode;
|
2008-03-12 17:44:39 +00:00
|
|
|
guint32 max_bitrate;
|
2008-03-24 15:17:30 +00:00
|
|
|
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;
|
2007-03-02 Tambet Ingo <tambet@ximian.com>
* libnm-glib/nm-device-802-11-wireless.c: Cache networks (bssids) list.
We get signalled when it changes.
* libnm-glib/nm-client.c: Cache NMState and device list, we get signalled
when it changes.
* libnm-glib/nm-device.c: Cache the device state property.
* libnm-glib/nm-access-point.c: Cache the strength property.
* src/nm-device-802-11-wireless.c: Fix wireless device scanning scheduler.
The new algorithm is to start from SCAN_INTERVAL_MIN (currently defined as 0)
and add a SCAN_INTERVAL_STEP (currently 20 seconds) with each successful scan
until SCAN_INTERVAL_MAX (currently 120 seconds) is reached. Do not scan while
the device is down, activating, or activated (in case of A/B/G cards).
Remove some old dead ifdef'ed out code that used to configure wireless devices,
it's all done through supplicant now.
* src/supplicant-manager/nm-supplicant-interface.c: Fix the reference
counting issues with pending calls which caused leaks and crashes when
interface was removed (now that the interface actually gets removed).
* src/nm-call-store.c: Make a copy of data before running a foreach
with user callback on it - The most common usage pattern is to cancel
(and thus remove) all pending calls with foreach which would modify
the hash table we're iterating over.
* src/nm-manager.c: When a device is added, make sure it is "up". When
it's removed or disabled due to disabling wireless or networking, bring
it down.
* include/NetworkManager.h: Add new device state NM_DEVICE_STATE_DOWN.
* src/nm-device-802-11-wireless.c:
* src/nm-device-802-3-ethernet.c:
* src/nm-device.c:
- Remove "init" virtual function, all gobjects have a place for that
already (constructor).
- Replace "start" virtual function with "bring_up", devices can be
brought up and down more than just on startup now.
- Add "is_up" virtual function.
- Implement one way to bring a device down instead of previous 4 different
ways, each of witch did something different.
* src/NetworkManagerUtils.c (nm_dev_sock_open): This doesn't need an NMDevice,
all it needs is the device interface.
Get rid of NMData.dev_list (3 members to go).
Get rif of NMData in a lot of places.
* gnome/libnm_glib/libnm_glib.c: Make it compile again.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2395 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2007-03-02 09:30:48 +00:00
|
|
|
} NMAccessPointPrivate;
|
|
|
|
|
|
2007-02-20 15:24:42 +00:00
|
|
|
enum {
|
2007-09-19 20:44:37 +00:00
|
|
|
PROP_0,
|
|
|
|
|
PROP_FLAGS,
|
|
|
|
|
PROP_WPA_FLAGS,
|
|
|
|
|
PROP_RSN_FLAGS,
|
|
|
|
|
PROP_SSID,
|
|
|
|
|
PROP_FREQUENCY,
|
|
|
|
|
PROP_HW_ADDRESS,
|
|
|
|
|
PROP_MODE,
|
2008-03-12 17:44:39 +00:00
|
|
|
PROP_MAX_BITRATE,
|
2007-09-19 20:44:37 +00:00
|
|
|
PROP_STRENGTH,
|
2011-03-11 09:36:41 -06:00
|
|
|
PROP_BSSID,
|
2015-04-21 11:48:26 -04:00
|
|
|
PROP_LAST_SEEN,
|
2007-09-19 20:44:37 +00:00
|
|
|
|
|
|
|
|
LAST_PROP
|
2007-02-20 15:24:42 +00:00
|
|
|
};
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_new:
|
|
|
|
|
* @connection: the #DBusGConnection
|
|
|
|
|
* @path: the DBusobject path of the access point
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #NMAccessPoint.
|
|
|
|
|
*
|
2011-03-10 12:35:43 -06:00
|
|
|
* Returns: (transfer full): a new access point
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2008-03-24 15:17:30 +00:00
|
|
|
GObject *
|
2007-02-12 09:23:43 +00:00
|
|
|
nm_access_point_new (DBusGConnection *connection, const char *path)
|
|
|
|
|
{
|
2008-03-24 15:17:30 +00:00
|
|
|
g_return_val_if_fail (connection != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (path != NULL, NULL);
|
2007-09-19 20:44:37 +00:00
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
return (GObject *) g_object_new (NM_TYPE_ACCESS_POINT,
|
2014-05-09 14:45:59 -04:00
|
|
|
NM_OBJECT_DBUS_CONNECTION, connection,
|
|
|
|
|
NM_OBJECT_DBUS_PATH, path,
|
|
|
|
|
NULL);
|
2007-09-19 20:44:37 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2011-02-18 11:42:55 -06:00
|
|
|
* Gets the flags of the access point.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
|
|
|
|
* Returns: the flags
|
|
|
|
|
**/
|
2011-02-18 11:42:55 -06:00
|
|
|
NM80211ApFlags
|
2007-08-28 14:47:31 +00:00
|
|
|
nm_access_point_get_flags (NMAccessPoint *ap)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2007-08-28 14:47:31 +00:00
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_FLAGS_NONE);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->flags;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_wpa_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2011-02-18 11:42:55 -06:00
|
|
|
* Gets the WPA (version 1) flags of the access point.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
|
|
|
|
* Returns: the WPA flags
|
|
|
|
|
**/
|
2011-02-18 11:42:55 -06:00
|
|
|
NM80211ApSecurityFlags
|
2007-08-28 14:47:31 +00:00
|
|
|
nm_access_point_get_wpa_flags (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_SEC_NONE);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->wpa_flags;
|
2007-08-28 14:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_rsn_flags:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2011-02-18 11:42:55 -06:00
|
|
|
* Gets the RSN (Robust Secure Network, ie WPA version 2) flags of the access
|
|
|
|
|
* point.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
|
|
|
|
* Returns: the RSN flags
|
|
|
|
|
**/
|
2011-02-18 11:42:55 -06:00
|
|
|
NM80211ApSecurityFlags
|
2007-08-28 14:47:31 +00:00
|
|
|
nm_access_point_get_rsn_flags (NMAccessPoint *ap)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2007-08-28 14:47:31 +00:00
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NM_802_11_AP_SEC_NONE);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->rsn_flags;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_ssid:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the SSID of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #GByteArray containing the SSID. This is the internal copy used by the
|
|
|
|
|
* access point, and must not be modified.
|
|
|
|
|
**/
|
2007-09-19 20:44:37 +00:00
|
|
|
const GByteArray *
|
2007-06-27 16:18:52 +00:00
|
|
|
nm_access_point_get_ssid (NMAccessPoint *ap)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NULL);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->ssid;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00: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.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Returns: the frequency in MHz
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2007-09-11 19:31:59 +00:00
|
|
|
guint32
|
2007-02-12 09:23:43 +00:00
|
|
|
nm_access_point_get_frequency (NMAccessPoint *ap)
|
|
|
|
|
{
|
2007-06-22 15:09:02 +00:00
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
2007-02-16 11:23:49 +00:00
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->frequency;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
2011-03-11 09:36:41 -06:00
|
|
|
* nm_access_point_get_bssid:
|
2008-08-12 12:59:33 +00:00
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2014-06-04 17:25:52 -04:00
|
|
|
* Gets the Basic Service Set ID (BSSID) of the Wi-Fi access point.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
2011-03-11 09:36:41 -06:00
|
|
|
* Returns: the BSSID of the access point. This is an internal string and must
|
|
|
|
|
* not be modified or freed.
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2007-10-05 16:00:06 +00:00
|
|
|
const char *
|
2011-03-11 09:36:41 -06:00
|
|
|
nm_access_point_get_bssid (NMAccessPoint *ap)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), NULL);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->bssid;
|
2011-03-11 09:36:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_hw_address:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the hardware (MAC) address of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the hardware address of the access point. This is the internal string used by the
|
|
|
|
|
* access point and must not be modified.
|
|
|
|
|
*
|
|
|
|
|
* Deprecated: 0.9: Use nm_access_point_get_bssid() instead.
|
|
|
|
|
**/
|
|
|
|
|
const char *
|
|
|
|
|
nm_access_point_get_hw_address (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
return nm_access_point_get_bssid (ap);
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_mode:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
|
|
|
|
* Gets the mode of the access point.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the mode
|
|
|
|
|
**/
|
2008-04-15 20:39:34 +00:00
|
|
|
NM80211Mode
|
2007-02-12 09:23:43 +00:00
|
|
|
nm_access_point_get_mode (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->mode;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_max_bitrate:
|
|
|
|
|
* @ap: a #NMAccessPoint
|
|
|
|
|
*
|
2014-04-01 14:53:00 +02:00
|
|
|
* Gets the maximum bit rate of the access point in kbit/s.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
2014-04-01 14:53:00 +02:00
|
|
|
* Returns: the maximum bit rate (kbit/s)
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2007-02-16 11:23:49 +00:00
|
|
|
guint32
|
2008-03-12 17:44:39 +00:00
|
|
|
nm_access_point_get_max_bitrate (NMAccessPoint *ap)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->max_bitrate;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_strength:
|
2009-11-23 15:02:56 -08:00
|
|
|
* @ap: a #NMAccessPoint
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Gets the current signal strength of the access point as a percentage.
|
2008-08-12 12:59:33 +00:00
|
|
|
*
|
2018-05-22 17:52:36 +01:00
|
|
|
* Returns: the signal strength (0 to 100)
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2008-03-24 15:17:30 +00:00
|
|
|
guint8
|
2007-02-12 09:23:43 +00:00
|
|
|
nm_access_point_get_strength (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), 0);
|
|
|
|
|
|
2012-01-19 18:23:28 -05:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->strength;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2015-04-21 11:48:26 -04:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_get_last_seen:
|
|
|
|
|
* @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
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.2
|
|
|
|
|
**/
|
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-21 11:48:26 -04:00
|
|
|
nm_access_point_get_last_seen (NMAccessPoint *ap)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_ACCESS_POINT (ap), -1);
|
|
|
|
|
|
|
|
|
|
_nm_object_ensure_inited (NM_OBJECT (ap));
|
|
|
|
|
return NM_ACCESS_POINT_GET_PRIVATE (ap)->last_seen;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-25 17:07:38 -05:00
|
|
|
/**
|
2012-01-13 09:40:26 -06:00
|
|
|
* nm_access_point_connection_valid:
|
2011-04-25 17:07:38 -05:00
|
|
|
* @ap: an #NMAccessPoint to validate @connection against
|
2012-01-26 18:16:14 +01:00
|
|
|
* @connection: an #NMConnection to validate against @ap
|
2011-04-25 17:07:38 -05:00
|
|
|
*
|
2014-06-04 17:25:52 -04:00
|
|
|
* Validates a given connection against a given Wi-Fi access point to ensure that
|
2011-04-25 17:07:38 -05:00
|
|
|
* 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.
|
|
|
|
|
*
|
2014-06-04 17:25:52 -04:00
|
|
|
* Returns: %TRUE if the connection may be activated with this Wi-Fi AP,
|
2011-04-25 17:07:38 -05:00
|
|
|
* %FALSE if it cannot be.
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
nm_access_point_connection_valid (NMAccessPoint *ap, NMConnection *connection)
|
|
|
|
|
{
|
|
|
|
|
NMSettingConnection *s_con;
|
|
|
|
|
NMSettingWireless *s_wifi;
|
|
|
|
|
NMSettingWirelessSecurity *s_wsec;
|
|
|
|
|
const char *ctype, *ap_bssid_str;
|
|
|
|
|
const GByteArray *setting_ssid;
|
|
|
|
|
const GByteArray *ap_ssid;
|
|
|
|
|
const GByteArray *setting_bssid;
|
|
|
|
|
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;
|
|
|
|
|
|
2011-04-25 17:07:38 -05: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))
|
2011-04-25 17:07:38 -05: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)
|
2011-04-25 17:07:38 -05:00
|
|
|
return FALSE;
|
2017-01-28 15:44:09 +01:00
|
|
|
setting_ssid = nm_setting_wireless_get_ssid (s_wifi);
|
|
|
|
|
if ( !setting_ssid
|
|
|
|
|
|| setting_ssid->len != ap_ssid->len
|
|
|
|
|
|| memcmp (setting_ssid->data, ap_ssid->data, ap_ssid->len) != 0)
|
2011-04-25 17:07:38 -05:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* BSSID checks */
|
|
|
|
|
ap_bssid_str = nm_access_point_get_bssid (ap);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (!ap_bssid_str)
|
|
|
|
|
return FALSE;
|
2011-04-25 17:07:38 -05:00
|
|
|
setting_bssid = nm_setting_wireless_get_bssid (s_wifi);
|
2017-01-28 15:44:09 +01:00
|
|
|
if (setting_bssid) {
|
|
|
|
|
struct ether_addr addr;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (setting_bssid->len == ETH_ALEN, FALSE);
|
|
|
|
|
|
|
|
|
|
if (!ether_aton_r (ap_bssid_str, &addr))
|
|
|
|
|
return FALSE;
|
|
|
|
|
if (memcmp (addr.ether_addr_octet, setting_bssid->data, ETH_ALEN) != 0)
|
|
|
|
|
return FALSE;
|
2011-04-25 17:07:38 -05: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;
|
2011-04-25 17:07:38 -05: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;
|
2012-07-06 14:47:48 +02:00
|
|
|
/* Hotspot never matches against APs as it's a device-specific mode. */
|
|
|
|
|
if (!strcmp (setting_mode, "ap"))
|
|
|
|
|
return FALSE;
|
2011-04-25 17:07:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-11 09:36:41 -06:00
|
|
|
/**
|
|
|
|
|
* nm_access_point_filter_connections:
|
|
|
|
|
* @ap: an #NMAccessPoint to filter connections for
|
2014-07-07 14:09:04 -04:00
|
|
|
* @connections: (element-type NMConnection): a list of
|
2011-04-25 17:07:38 -05:00
|
|
|
* #NMConnection objects to filter
|
2011-03-11 09:36:41 -06:00
|
|
|
*
|
|
|
|
|
* Filters a given list of connections for a given #NMAccessPoint object and
|
|
|
|
|
* return connections which may be activated with the access point. Any
|
|
|
|
|
* returned connections will match the @ap's SSID and (if given) BSSID and
|
|
|
|
|
* other attributes like security settings, channel, etc.
|
|
|
|
|
*
|
2012-01-13 09:40:26 -06:00
|
|
|
* To obtain the list of connections that are compatible with this access point,
|
|
|
|
|
* use nm_remote_settings_list_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-07 14:09:04 -04:00
|
|
|
* Returns: (transfer container) (element-type NMConnection): a
|
2011-03-11 09:36:41 -06:00
|
|
|
* list of #NMConnection objects that could be activated with the given @ap.
|
|
|
|
|
* The elements of the list are owned by their creator and should not be freed
|
|
|
|
|
* by the caller, but the returned list itself is owned by the caller and should
|
|
|
|
|
* be freed with g_slist_free() when it is no longer required.
|
|
|
|
|
**/
|
|
|
|
|
GSList *
|
|
|
|
|
nm_access_point_filter_connections (NMAccessPoint *ap, const GSList *connections)
|
|
|
|
|
{
|
|
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
const GSList *iter;
|
|
|
|
|
|
|
|
|
|
for (iter = connections; iter; iter = g_slist_next (iter)) {
|
|
|
|
|
NMConnection *candidate = NM_CONNECTION (iter->data);
|
|
|
|
|
|
2011-04-25 17:07:38 -05:00
|
|
|
if (nm_access_point_connection_valid (ap, candidate))
|
|
|
|
|
filtered = g_slist_prepend (filtered, candidate);
|
2011-03-11 09:36:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return g_slist_reverse (filtered);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-02 18:22:50 +02:00
|
|
|
/*****************************************************************************/
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_access_point_init (NMAccessPoint *ap)
|
|
|
|
|
{
|
2015-04-21 11:48:26 -04:00
|
|
|
NM_ACCESS_POINT_GET_PRIVATE (ap)->last_seen = -1;
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dispose (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
NMAccessPointPrivate *priv = NM_ACCESS_POINT_GET_PRIVATE (object);
|
|
|
|
|
|
2012-04-23 11:02:48 -04:00
|
|
|
g_clear_object (&priv->proxy);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (nm_access_point_parent_class)->dispose (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
NMAccessPointPrivate *priv = NM_ACCESS_POINT_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
|
|
if (priv->ssid)
|
|
|
|
|
g_byte_array_free (priv->ssid, TRUE);
|
|
|
|
|
|
2011-03-15 00:08:58 -05:00
|
|
|
g_free (priv->bssid);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (nm_access_point_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-03-24 15:17:30 +00:00
|
|
|
get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
|
|
|
|
NMAccessPoint *ap = NM_ACCESS_POINT (object);
|
|
|
|
|
|
2012-03-28 09:06:12 -04:00
|
|
|
_nm_object_ensure_inited (NM_OBJECT (object));
|
|
|
|
|
|
2007-10-12 10:18:46 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_FLAGS:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_flags (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_WPA_FLAGS:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_wpa_flags (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_RSN_FLAGS:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_rsn_flags (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_SSID:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_boxed (value, nm_access_point_get_ssid (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_FREQUENCY:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_frequency (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_HW_ADDRESS:
|
2011-03-11 09:36:41 -06:00
|
|
|
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));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_MODE:
|
2008-04-15 20:39:34 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_mode (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
2008-03-12 17:44:39 +00:00
|
|
|
case PROP_MAX_BITRATE:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uint (value, nm_access_point_get_max_bitrate (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_STRENGTH:
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_set_uchar (value, nm_access_point_get_strength (ap));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
2015-04-21 11:48:26 -04:00
|
|
|
case PROP_LAST_SEEN:
|
|
|
|
|
g_value_set_int (value, nm_access_point_get_last_seen (ap));
|
|
|
|
|
break;
|
2007-10-12 10:18:46 +00:00
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
static gboolean
|
|
|
|
|
demarshal_ssid (NMObject *object, GParamSpec *pspec, GValue *value, gpointer field)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
2008-08-26 09:34:31 +00:00
|
|
|
if (!_nm_ssid_demarshal (value, (GByteArray **) field))
|
2008-03-24 15:17:30 +00:00
|
|
|
return FALSE;
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_queue_notify (object, NM_ACCESS_POINT_SSID);
|
2008-03-24 15:17:30 +00:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-01-20 07:52:17 -05:00
|
|
|
register_properties (NMAccessPoint *ap)
|
2008-03-24 15:17:30 +00:00
|
|
|
{
|
|
|
|
|
NMAccessPointPrivate *priv = NM_ACCESS_POINT_GET_PRIVATE (ap);
|
2012-01-20 07:52:17 -05: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 },
|
|
|
|
|
{ NM_ACCESS_POINT_SSID, &priv->ssid, demarshal_ssid },
|
|
|
|
|
{ NM_ACCESS_POINT_FREQUENCY, &priv->frequency },
|
|
|
|
|
{ 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-21 11:48:26 -04:00
|
|
|
{ NM_ACCESS_POINT_LAST_SEEN, &priv->last_seen },
|
2008-03-24 15:17:30 +00:00
|
|
|
{ NULL },
|
|
|
|
|
};
|
|
|
|
|
|
2012-01-20 07:52:17 -05:00
|
|
|
_nm_object_register_properties (NM_OBJECT (ap),
|
|
|
|
|
priv->proxy,
|
|
|
|
|
property_info);
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
2011-12-20 15:15:42 -05:00
|
|
|
static void
|
|
|
|
|
constructed (GObject *object)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
|
|
|
|
NMAccessPointPrivate *priv;
|
|
|
|
|
|
2011-12-20 15:15:42 -05:00
|
|
|
G_OBJECT_CLASS (nm_access_point_parent_class)->constructed (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
priv = NM_ACCESS_POINT_GET_PRIVATE (object);
|
2013-03-01 22:58:31 +01:00
|
|
|
priv->proxy = _nm_object_new_proxy (NM_OBJECT (object), NULL, NM_DBUS_INTERFACE_ACCESS_POINT);
|
2012-01-20 07:52:17 -05:00
|
|
|
register_properties (NM_ACCESS_POINT (object));
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_access_point_class_init (NMAccessPointClass *ap_class)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (ap_class);
|
|
|
|
|
|
|
|
|
|
g_type_class_add_private (ap_class, sizeof (NMAccessPointPrivate));
|
|
|
|
|
|
|
|
|
|
/* virtual methods */
|
2011-12-20 15:15:42 -05:00
|
|
|
object_class->constructed = constructed;
|
2007-10-12 10:18:46 +00:00
|
|
|
object_class->get_property = get_property;
|
|
|
|
|
object_class->dispose = dispose;
|
|
|
|
|
object_class->finalize = finalize;
|
|
|
|
|
|
|
|
|
|
/* properties */
|
2008-08-12 12:59:33 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:flags:
|
|
|
|
|
*
|
|
|
|
|
* The flags of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_FLAGS,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_FLAGS, "", "",
|
2007-10-12 10:18:46 +00:00
|
|
|
NM_802_11_AP_FLAGS_NONE,
|
|
|
|
|
NM_802_11_AP_FLAGS_PRIVACY,
|
|
|
|
|
NM_802_11_AP_FLAGS_NONE,
|
2014-06-09 16:17:37 -04:00
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:wpa-flags:
|
|
|
|
|
*
|
|
|
|
|
* The WPA flags of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_WPA_FLAGS,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_WPA_FLAGS, "", "",
|
2007-10-12 10:18:46 +00:00
|
|
|
0, G_MAXUINT32, 0,
|
2014-06-09 16:17:37 -04:00
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:rsn-flags:
|
|
|
|
|
*
|
|
|
|
|
* The RSN flags of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_RSN_FLAGS,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_RSN_FLAGS, "", "",
|
2007-10-12 10:18:46 +00:00
|
|
|
0, G_MAXUINT32, 0,
|
2014-06-09 16:17:37 -04:00
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:ssid:
|
|
|
|
|
*
|
|
|
|
|
* The SSID of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_SSID,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_boxed (NM_ACCESS_POINT_SSID, "", "",
|
|
|
|
|
NM_TYPE_SSID,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:frequency:
|
|
|
|
|
*
|
|
|
|
|
* The frequency of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_FREQUENCY,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_FREQUENCY, "", "",
|
|
|
|
|
0, 10000, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2011-03-11 09:36:41 -06:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:bssid:
|
|
|
|
|
*
|
|
|
|
|
* The BSSID of the access point.
|
|
|
|
|
**/
|
|
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_BSSID,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_string (NM_ACCESS_POINT_BSSID, "", "",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2011-03-11 09:36:41 -06:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:hw-address:
|
|
|
|
|
*
|
|
|
|
|
* The hardware address of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_HW_ADDRESS,
|
2014-06-09 16:17:37 -04:00
|
|
|
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
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:mode:
|
|
|
|
|
*
|
2012-07-06 14:47:48 +02:00
|
|
|
* 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).
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_MODE,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_MODE, "", "",
|
|
|
|
|
NM_802_11_MODE_ADHOC, NM_802_11_MODE_INFRA, NM_802_11_MODE_INFRA,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:max-bitrate:
|
|
|
|
|
*
|
2014-04-01 14:53:00 +02:00
|
|
|
* The maximum bit rate of the access point in kbit/s.
|
2008-08-12 12:59:33 +00:00
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
2008-03-12 17:44:39 +00:00
|
|
|
(object_class, PROP_MAX_BITRATE,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uint (NM_ACCESS_POINT_MAX_BITRATE, "", "",
|
|
|
|
|
0, G_MAXUINT32, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 12:59:33 +00:00
|
|
|
/**
|
|
|
|
|
* NMAccessPoint:strength:
|
|
|
|
|
*
|
|
|
|
|
* The current signal strength of the access point.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_STRENGTH,
|
2014-06-09 16:17:37 -04:00
|
|
|
g_param_spec_uchar (NM_ACCESS_POINT_STRENGTH, "", "",
|
|
|
|
|
0, G_MAXUINT8, 0,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2015-04-21 11:48:26 -04: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
|
|
|
|
|
**/
|
|
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_LAST_SEEN,
|
|
|
|
|
g_param_spec_int (NM_ACCESS_POINT_LAST_SEEN, "", "",
|
|
|
|
|
-1, G_MAXINT, -1,
|
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|