2008-11-14 17:41:16 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
|
/*
|
|
|
|
|
* libnm_glib -- Access network status & information from glib applications
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
2011-02-15 17:34:11 +01:00
|
|
|
* Copyright (C) 2007 - 2011 Red Hat, Inc.
|
2008-11-14 17:41:16 +00: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>
|
2007-10-05 20:54:13 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
#include "nm-device-wifi.h"
|
2007-02-12 09:23:43 +00:00
|
|
|
#include "nm-device-private.h"
|
2008-03-24 15:17:30 +00:00
|
|
|
#include "nm-object-private.h"
|
|
|
|
|
#include "nm-object-cache.h"
|
|
|
|
|
#include "nm-dbus-glib-types.h"
|
|
|
|
|
#include "nm-types-private.h"
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
#include "nm-device-wifi-bindings.h"
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
G_DEFINE_TYPE (NMDeviceWifi, nm_device_wifi, NM_TYPE_DEVICE)
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
#define NM_DEVICE_WIFI_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_DEVICE_WIFI, NMDeviceWifiPrivate))
|
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
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
static gboolean demarshal_active_ap (NMObject *object, GParamSpec *pspec, GValue *value, gpointer field);
|
|
|
|
|
|
2008-08-26 09:34:31 +00:00
|
|
|
void _nm_device_wifi_set_wireless_enabled (NMDeviceWifi *device, gboolean enabled);
|
2008-03-25 12:41:17 +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
|
|
|
typedef struct {
|
2008-03-24 15:17:30 +00:00
|
|
|
gboolean disposed;
|
|
|
|
|
DBusGProxy *proxy;
|
2007-03-16 09:37:53 +00:00
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
char *hw_address;
|
2010-06-22 14:21:25 +02:00
|
|
|
char *perm_hw_address;
|
2008-04-15 20:39:34 +00:00
|
|
|
NM80211Mode mode;
|
2007-10-27 02:58:32 +00:00
|
|
|
guint32 rate;
|
2008-03-24 15:17:30 +00:00
|
|
|
NMAccessPoint *active_ap;
|
2008-03-25 12:41:17 +00:00
|
|
|
gboolean null_active_ap;
|
2007-10-05 20:54:13 +00:00
|
|
|
guint32 wireless_caps;
|
2008-03-24 15:17:30 +00:00
|
|
|
GPtrArray *aps;
|
2008-03-25 12:41:17 +00:00
|
|
|
|
|
|
|
|
gboolean wireless_enabled;
|
2008-06-10 16:32:39 +00:00
|
|
|
} NMDeviceWifiPrivate;
|
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
|
|
|
|
2007-10-05 20:54:13 +00:00
|
|
|
enum {
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_HW_ADDRESS,
|
2010-06-22 14:21:25 +02:00
|
|
|
PROP_PERM_HW_ADDRESS,
|
2007-10-05 20:54:13 +00:00
|
|
|
PROP_MODE,
|
|
|
|
|
PROP_BITRATE,
|
|
|
|
|
PROP_ACTIVE_ACCESS_POINT,
|
|
|
|
|
PROP_WIRELESS_CAPABILITIES,
|
|
|
|
|
|
|
|
|
|
LAST_PROP
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define DBUS_PROP_HW_ADDRESS "HwAddress"
|
2010-06-22 14:21:25 +02:00
|
|
|
#define DBUS_PROP_PERM_HW_ADDRESS "PermHwAddress"
|
2007-10-05 20:54:13 +00:00
|
|
|
#define DBUS_PROP_MODE "Mode"
|
|
|
|
|
#define DBUS_PROP_BITRATE "Bitrate"
|
|
|
|
|
#define DBUS_PROP_ACTIVE_ACCESS_POINT "ActiveAccessPoint"
|
|
|
|
|
#define DBUS_PROP_WIRELESS_CAPABILITIES "WirelessCapabilities"
|
|
|
|
|
|
2007-02-20 15:24:42 +00:00
|
|
|
enum {
|
2007-10-03 18:20:35 +00:00
|
|
|
ACCESS_POINT_ADDED,
|
|
|
|
|
ACCESS_POINT_REMOVED,
|
2007-02-20 15:24:42 +00:00
|
|
|
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_new:
|
|
|
|
|
* @connection: the #DBusGConnection
|
|
|
|
|
* @path: the DBus object path of the device
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #NMDeviceWifi.
|
|
|
|
|
*
|
|
|
|
|
* Returns: a new device
|
|
|
|
|
**/
|
2008-03-24 15:17:30 +00:00
|
|
|
GObject *
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_new (DBusGConnection *connection, const char *path)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (connection != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (path != NULL, NULL);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
return g_object_new (NM_TYPE_DEVICE_WIFI,
|
2008-03-24 15:17:30 +00:00
|
|
|
NM_OBJECT_DBUS_CONNECTION, connection,
|
|
|
|
|
NM_OBJECT_DBUS_PATH, path,
|
|
|
|
|
NULL);
|
2007-10-05 20:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_hw_address:
|
|
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
*
|
2010-06-22 14:21:25 +02:00
|
|
|
* Gets the actual hardware (MAC) address of the #NMDeviceWifi
|
2008-08-12 08:05:21 +00:00
|
|
|
*
|
2010-06-22 14:21:25 +02:00
|
|
|
* Returns: the actual hardware address. This is the internal string used by the
|
2008-08-12 08:05:21 +00:00
|
|
|
* device, and must not be modified.
|
|
|
|
|
**/
|
2007-11-13 20:03:31 +00:00
|
|
|
const char *
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_get_hw_address (NMDeviceWifi *device)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-05 20:54:13 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2007-10-05 20:54:13 +00:00
|
|
|
if (!priv->hw_address) {
|
2008-08-26 09:34:31 +00:00
|
|
|
priv->hw_address = _nm_object_get_string_property (NM_OBJECT (device),
|
2007-10-05 20:54:13 +00:00
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_HW_ADDRESS,
|
|
|
|
|
NULL);
|
2007-10-05 20:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return priv->hw_address;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 14:21:25 +02:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_permanent_hw_address:
|
|
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
*
|
|
|
|
|
* Gets the permanent hardware (MAC) address of the #NMDeviceWifi
|
|
|
|
|
*
|
|
|
|
|
* Returns: the permanent hardware address. This is the internal string used by the
|
|
|
|
|
* device, and must not be modified.
|
|
|
|
|
**/
|
|
|
|
|
const char *
|
|
|
|
|
nm_device_wifi_get_permanent_hw_address (NMDeviceWifi *device)
|
|
|
|
|
{
|
|
|
|
|
NMDeviceWifiPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
|
|
|
|
|
|
|
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
|
|
|
|
if (!priv->perm_hw_address) {
|
|
|
|
|
priv->perm_hw_address = _nm_object_get_string_property (NM_OBJECT (device),
|
|
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_PERM_HW_ADDRESS,
|
|
|
|
|
NULL);
|
2010-06-22 14:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return priv->perm_hw_address;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_mode:
|
|
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
*
|
|
|
|
|
* Gets the #NMDeviceWifi mode.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the mode
|
|
|
|
|
**/
|
2008-04-15 20:39:34 +00:00
|
|
|
NM80211Mode
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_get_mode (NMDeviceWifi *device)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-05 20:54:13 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), 0);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2007-10-05 20:54:13 +00:00
|
|
|
if (!priv->mode) {
|
2008-08-26 09:34:31 +00:00
|
|
|
priv->mode = _nm_object_get_uint_property (NM_OBJECT (device),
|
2008-04-15 20:39:34 +00:00
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_MODE,
|
|
|
|
|
NULL);
|
2007-10-05 20:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return priv->mode;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_bitrate:
|
|
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
*
|
|
|
|
|
* Gets the bit rate of the #NMDeviceWifi.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the bit rate
|
|
|
|
|
**/
|
2007-10-27 02:58:32 +00:00
|
|
|
guint32
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_get_bitrate (NMDeviceWifi *device)
|
2007-02-16 11:23:49 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-05 20:54:13 +00:00
|
|
|
NMDeviceState state;
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), 0);
|
2007-02-16 11:23:49 +00:00
|
|
|
|
2007-10-05 20:54:13 +00:00
|
|
|
state = nm_device_get_state (NM_DEVICE (device));
|
|
|
|
|
switch (state) {
|
|
|
|
|
case NM_DEVICE_STATE_PREPARE:
|
|
|
|
|
case NM_DEVICE_STATE_CONFIG:
|
|
|
|
|
case NM_DEVICE_STATE_NEED_AUTH:
|
|
|
|
|
case NM_DEVICE_STATE_IP_CONFIG:
|
|
|
|
|
case NM_DEVICE_STATE_ACTIVATED:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2007-10-05 20:54:13 +00:00
|
|
|
if (!priv->rate) {
|
2008-08-26 09:34:31 +00:00
|
|
|
priv->rate = _nm_object_get_uint_property (NM_OBJECT (device),
|
2007-10-05 20:54:13 +00:00
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_BITRATE,
|
|
|
|
|
NULL);
|
2007-10-05 20:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return priv->rate;
|
2007-02-16 11:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_capabilities:
|
|
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
*
|
|
|
|
|
* Gets the WIFI capabilities of the #NMDeviceWifi.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the capabilities
|
|
|
|
|
**/
|
2007-03-05 08:49:30 +00:00
|
|
|
guint32
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_get_capabilities (NMDeviceWifi *device)
|
2007-03-05 08:49:30 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-05 20:54:13 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), 0);
|
2007-03-05 08:49:30 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2007-10-05 20:54:13 +00:00
|
|
|
if (!priv->wireless_caps) {
|
2008-08-26 09:34:31 +00:00
|
|
|
priv->wireless_caps = _nm_object_get_uint_property (NM_OBJECT (device),
|
2007-10-05 20:54:13 +00:00
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_WIRELESS_CAPABILITIES,
|
|
|
|
|
NULL);
|
2007-10-05 20:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return priv->wireless_caps;
|
2007-03-05 08:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_active_access_point:
|
2008-11-27 00:49:19 +00:00
|
|
|
* @device: a #NMDeviceWifi
|
2008-08-12 08:05:21 +00:00
|
|
|
*
|
|
|
|
|
* Gets the active #NMAccessPoint.
|
|
|
|
|
*
|
2011-01-21 14:46:09 -06:00
|
|
|
* Returns: (transfer none): the access point or %NULL if none is active
|
2008-08-12 08:05:21 +00:00
|
|
|
**/
|
2007-02-12 09:23:43 +00:00
|
|
|
NMAccessPoint *
|
2008-11-27 00:49:19 +00:00
|
|
|
nm_device_wifi_get_active_access_point (NMDeviceWifi *device)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-05 20:54:13 +00:00
|
|
|
NMDeviceState state;
|
2008-03-24 15:17:30 +00:00
|
|
|
char *path;
|
|
|
|
|
GValue value = { 0, };
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
state = nm_device_get_state (NM_DEVICE (device));
|
2007-10-05 20:54:13 +00:00
|
|
|
switch (state) {
|
|
|
|
|
case NM_DEVICE_STATE_PREPARE:
|
|
|
|
|
case NM_DEVICE_STATE_CONFIG:
|
|
|
|
|
case NM_DEVICE_STATE_NEED_AUTH:
|
|
|
|
|
case NM_DEVICE_STATE_IP_CONFIG:
|
|
|
|
|
case NM_DEVICE_STATE_ACTIVATED:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2008-03-24 15:17:30 +00:00
|
|
|
if (priv->active_ap)
|
|
|
|
|
return priv->active_ap;
|
2008-03-25 12:41:17 +00:00
|
|
|
if (priv->null_active_ap)
|
|
|
|
|
return NULL;
|
2007-03-26 12:42:29 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
path = _nm_object_get_object_path_property (NM_OBJECT (device),
|
2008-03-24 15:17:30 +00:00
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS,
|
2011-02-15 17:34:11 +01:00
|
|
|
DBUS_PROP_ACTIVE_ACCESS_POINT,
|
|
|
|
|
NULL);
|
2008-03-24 19:48:56 +00:00
|
|
|
if (path) {
|
|
|
|
|
g_value_init (&value, DBUS_TYPE_G_OBJECT_PATH);
|
|
|
|
|
g_value_take_boxed (&value, path);
|
2008-11-27 00:49:19 +00:00
|
|
|
demarshal_active_ap (NM_OBJECT (device), NULL, &value, &priv->active_ap);
|
2008-03-24 19:48:56 +00:00
|
|
|
g_value_unset (&value);
|
|
|
|
|
}
|
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
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
return priv->active_ap;
|
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
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_access_points:
|
2008-11-27 00:49:19 +00:00
|
|
|
* @device: a #NMDeviceWifi
|
2008-08-12 08:05:21 +00:00
|
|
|
*
|
|
|
|
|
* Gets all the scanned access points of the #NMDeviceWifi.
|
|
|
|
|
*
|
2011-01-21 14:46:09 -06:00
|
|
|
* Returns: (element-type NMClient.AccessPoint): a #GPtrArray containing all the
|
|
|
|
|
* scanned #NMAccessPoint<!-- -->s.
|
2008-08-12 08:05:21 +00:00
|
|
|
* The returned array is owned by the client and should not be modified.
|
|
|
|
|
**/
|
2008-03-27 14:10:43 +00:00
|
|
|
const GPtrArray *
|
2008-11-27 00:49:19 +00:00
|
|
|
nm_device_wifi_get_access_points (NMDeviceWifi *device)
|
2007-02-12 09:23:43 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2008-03-24 15:17:30 +00:00
|
|
|
DBusGConnection *connection;
|
|
|
|
|
GValue value = { 0, };
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *temp;
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2008-03-24 15:17:30 +00:00
|
|
|
if (priv->aps)
|
2008-03-27 14:10:43 +00:00
|
|
|
return handle_ptr_array_return (priv->aps);
|
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
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
if (!org_freedesktop_NetworkManager_Device_Wireless_get_access_points (priv->proxy, &temp, &error)) {
|
|
|
|
|
g_warning ("%s: error getting access points: %s", __func__, error->message);
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
return NULL;
|
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
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_init (&value, DBUS_TYPE_G_ARRAY_OF_OBJECT_PATH);
|
|
|
|
|
g_value_take_boxed (&value, temp);
|
2008-11-27 00:49:19 +00:00
|
|
|
connection = nm_object_get_connection (NM_OBJECT (device));
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_array_demarshal (&value, &priv->aps, connection, nm_access_point_new);
|
2008-03-24 15:17:30 +00:00
|
|
|
g_value_unset (&value);
|
2007-03-16 09:37:53 +00:00
|
|
|
|
2008-03-27 14:10:43 +00:00
|
|
|
return handle_ptr_array_return (priv->aps);
|
2008-03-24 15:17:30 +00:00
|
|
|
}
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* nm_device_wifi_get_access_point_by_path:
|
2008-11-27 00:49:19 +00:00
|
|
|
* @device: a #NMDeviceWifi
|
2008-08-12 08:05:21 +00:00
|
|
|
* @path: the object path of the access point
|
|
|
|
|
*
|
|
|
|
|
* Gets a #NMAccessPoint by path.
|
|
|
|
|
*
|
2011-01-21 14:46:09 -06:00
|
|
|
* Returns: (transfer none): the access point or %NULL if none is found.
|
2008-08-12 08:05:21 +00:00
|
|
|
**/
|
2008-03-24 15:17:30 +00:00
|
|
|
NMAccessPoint *
|
2008-11-27 00:49:19 +00:00
|
|
|
nm_device_wifi_get_access_point_by_path (NMDeviceWifi *device,
|
|
|
|
|
const char *path)
|
2008-03-24 15:17:30 +00:00
|
|
|
{
|
2008-03-27 14:10:43 +00:00
|
|
|
const GPtrArray *aps;
|
2008-03-24 15:17:30 +00:00
|
|
|
int i;
|
|
|
|
|
NMAccessPoint *ap = NULL;
|
|
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
g_return_val_if_fail (NM_IS_DEVICE_WIFI (device), NULL);
|
2008-03-24 15:17:30 +00:00
|
|
|
g_return_val_if_fail (path != NULL, NULL);
|
2007-02-12 09:23:43 +00:00
|
|
|
|
2008-11-27 00:49:19 +00:00
|
|
|
aps = nm_device_wifi_get_access_points (device);
|
2008-03-24 15:17:30 +00:00
|
|
|
if (!aps)
|
|
|
|
|
return NULL;
|
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
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
for (i = 0; i < aps->len; i++) {
|
|
|
|
|
NMAccessPoint *candidate = g_ptr_array_index (aps, i);
|
|
|
|
|
if (!strcmp (nm_object_get_path (NM_OBJECT (candidate)), path)) {
|
|
|
|
|
ap = candidate;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
return ap;
|
2007-02-12 09:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
2007-02-20 15:24:42 +00:00
|
|
|
static void
|
2007-10-03 18:20:35 +00:00
|
|
|
access_point_added_proxy (DBusGProxy *proxy, char *path, gpointer user_data)
|
2007-02-20 15:24:42 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifi *self = NM_DEVICE_WIFI (user_data);
|
|
|
|
|
NMDeviceWifiPrivate *priv;
|
2008-03-29 20:07:30 +00:00
|
|
|
GObject *ap;
|
2007-02-20 15:24:42 +00:00
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
g_return_if_fail (self != NULL);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
ap = G_OBJECT (nm_device_wifi_get_access_point_by_path (self, path));
|
2008-03-29 20:07:30 +00:00
|
|
|
if (!ap) {
|
|
|
|
|
DBusGConnection *connection = nm_object_get_connection (NM_OBJECT (self));
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
|
2008-08-26 09:34:31 +00:00
|
|
|
ap = G_OBJECT (_nm_object_cache_get (path));
|
2008-03-29 20:07:30 +00:00
|
|
|
if (ap) {
|
2011-02-15 22:15:35 -06:00
|
|
|
g_ptr_array_add (priv->aps, ap);
|
2008-03-29 20:07:30 +00:00
|
|
|
} else {
|
|
|
|
|
ap = G_OBJECT (nm_access_point_new (connection, path));
|
|
|
|
|
if (ap)
|
|
|
|
|
g_ptr_array_add (priv->aps, ap);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
if (ap)
|
2008-03-29 20:07:30 +00:00
|
|
|
g_signal_emit (self, signals[ACCESS_POINT_ADDED], 0, NM_ACCESS_POINT (ap));
|
2007-02-20 15:24:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2007-10-03 18:20:35 +00:00
|
|
|
access_point_removed_proxy (DBusGProxy *proxy, char *path, gpointer user_data)
|
2007-02-20 15:24:42 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifi *self = NM_DEVICE_WIFI (user_data);
|
|
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
|
2007-02-20 15:24:42 +00:00
|
|
|
NMAccessPoint *ap;
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
g_return_if_fail (self != NULL);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
ap = nm_device_wifi_get_access_point_by_path (self, path);
|
2008-03-24 15:17:30 +00:00
|
|
|
if (ap) {
|
2008-09-05 15:16:29 +00:00
|
|
|
if (ap == priv->active_ap) {
|
|
|
|
|
g_object_unref (priv->active_ap);
|
|
|
|
|
priv->active_ap = NULL;
|
|
|
|
|
priv->null_active_ap = FALSE;
|
|
|
|
|
|
|
|
|
|
_nm_object_queue_notify (NM_OBJECT (self), NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT);
|
|
|
|
|
priv->rate = 0;
|
|
|
|
|
_nm_object_queue_notify (NM_OBJECT (self), NM_DEVICE_WIFI_BITRATE);
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
g_signal_emit (self, signals[ACCESS_POINT_REMOVED], 0, ap);
|
|
|
|
|
g_ptr_array_remove (priv->aps, ap);
|
2008-06-10 01:56:14 +00:00
|
|
|
g_object_unref (G_OBJECT (ap));
|
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
|
|
|
}
|
2007-02-20 15:24:42 +00:00
|
|
|
}
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-03-25 12:41:17 +00:00
|
|
|
static void
|
2008-06-10 16:32:39 +00:00
|
|
|
clean_up_aps (NMDeviceWifi *self, gboolean notify)
|
2008-03-25 12:41:17 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2008-03-25 12:41:17 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_if_fail (NM_IS_DEVICE_WIFI (self));
|
2008-03-25 12:41:17 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
|
2008-03-25 12:41:17 +00:00
|
|
|
|
2008-09-05 15:16:29 +00:00
|
|
|
if (priv->active_ap) {
|
2008-03-25 12:41:17 +00:00
|
|
|
g_object_unref (priv->active_ap);
|
2008-09-05 15:16:29 +00:00
|
|
|
priv->active_ap = NULL;
|
|
|
|
|
}
|
2008-03-25 12:41:17 +00:00
|
|
|
|
|
|
|
|
if (priv->aps) {
|
|
|
|
|
while (priv->aps->len) {
|
|
|
|
|
NMAccessPoint *ap = NM_ACCESS_POINT (g_ptr_array_index (priv->aps, 0));
|
|
|
|
|
|
|
|
|
|
if (notify)
|
|
|
|
|
g_signal_emit (self, signals[ACCESS_POINT_REMOVED], 0, ap);
|
|
|
|
|
g_ptr_array_remove (priv->aps, ap);
|
|
|
|
|
g_object_unref (ap);
|
|
|
|
|
}
|
|
|
|
|
g_ptr_array_free (priv->aps, TRUE);
|
|
|
|
|
priv->aps = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
2008-08-26 09:34:31 +00:00
|
|
|
* _nm_device_wifi_set_wireless_enabled:
|
2008-08-12 08:05:21 +00:00
|
|
|
* @device: a #NMDeviceWifi
|
|
|
|
|
* @enabled: %TRUE to enable the device
|
|
|
|
|
*
|
|
|
|
|
* Enables or disables the wireless device.
|
|
|
|
|
**/
|
2008-03-25 12:41:17 +00:00
|
|
|
void
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_device_wifi_set_wireless_enabled (NMDeviceWifi *device,
|
2008-03-25 12:41:17 +00:00
|
|
|
gboolean enabled)
|
|
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
g_return_if_fail (NM_IS_DEVICE_WIFI (device));
|
2008-03-25 12:41:17 +00:00
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
|
clean_up_aps (device, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-12 10:18:46 +00:00
|
|
|
/**************************************************************/
|
|
|
|
|
|
|
|
|
|
static void
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_init (NMDeviceWifi *device)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
priv->disposed = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifi *self = NM_DEVICE_WIFI (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_HW_ADDRESS:
|
2008-06-10 16:32:39 +00:00
|
|
|
g_value_set_string (value, nm_device_wifi_get_hw_address (self));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
2010-06-22 14:21:25 +02:00
|
|
|
case PROP_PERM_HW_ADDRESS:
|
|
|
|
|
g_value_set_string (value, nm_device_wifi_get_permanent_hw_address (self));
|
|
|
|
|
break;
|
2007-10-12 10:18:46 +00:00
|
|
|
case PROP_MODE:
|
2008-06-10 16:32:39 +00:00
|
|
|
g_value_set_uint (value, nm_device_wifi_get_mode (self));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_BITRATE:
|
2008-06-10 16:32:39 +00:00
|
|
|
g_value_set_uint (value, nm_device_wifi_get_bitrate (self));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_ACTIVE_ACCESS_POINT:
|
2008-06-10 16:32:39 +00:00
|
|
|
g_value_set_object (value, nm_device_wifi_get_active_access_point (self));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
case PROP_WIRELESS_CAPABILITIES:
|
2008-06-10 16:32:39 +00:00
|
|
|
g_value_set_uint (value, nm_device_wifi_get_capabilities (self));
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-03-24 15:17:30 +00:00
|
|
|
state_changed_cb (NMDevice *device, GParamSpec *pspec, gpointer user_data)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifi *self = NM_DEVICE_WIFI (device);
|
|
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (self);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
switch (nm_device_get_state (device)) {
|
2007-10-12 10:18:46 +00:00
|
|
|
case NM_DEVICE_STATE_UNKNOWN:
|
2008-04-07 Dan Williams <dcbw@redhat.com>
* include/NetworkManager.h
- Remove the DOWN and CANCELLED device states
- Add UNMANAGED and UNAVAILABLE device states
- Document the device states
* introspection/nm-device.xml
src/nm-device-interface.c
src/nm-device-interface.h
- Add the 'managed' property
* test/nm-tool.c
- (detail_device): print out device state
* src/NetworkManagerSystem.h
src/backends/NetworkManagerArch.c
src/backends/NetworkManagerDebian.c
src/backends/NetworkManagerFrugalware.c
src/backends/NetworkManagerGentoo.c
src/backends/NetworkManagerMandriva.c
src/backends/NetworkManagerPaldo.c
src/backends/NetworkManagerRedHat.c
src/backends/NetworkManagerSlackware.c
src/backends/NetworkManagerSuSE.c
- (nm_system_device_get_system_config, nm_system_device_get_disabled
nm_system_device_free_system_config): remove; they were unused and
their functionality should be re-implemented in each distro's
system settings service plugin
* src/nm-gsm-device.c
src/nm-gsm-device.h
src/nm-cdma-device.c
src/nm-cdma-device.h
- (*_new): take the 'managed' argument
* src/nm-device.c
- (nm_device_set_address): remove, fold into nm_device_bring_up()
- (nm_device_init): start in unmanaged state, not disconnected
- (constructor): don't start device until the system settings service
has had a chance to figure out if the device is managed or not
- (nm_device_deactivate, nm_device_bring_up, nm_device_bring_down):
don't set device state here, let callers handle that as appropriate
- (nm_device_dispose): don't touch the device if it's not managed
- (set_property, get_property, nm_device_class_init): implement the
'managed' property
- (nm_device_state_changed): bring the device up if its now managed,
and deactivate it if it used to be active
- (nm_device_get_managed, nm_device_set_managed): do the right thing
with the managed state
* src/nm-hal-manager.c
- (wired_device_creator, wireless_device_creator, modem_device_creator):
take initial managed state and pass it along to device constructors
- (create_device_and_add_to_list): get managed state and pass to
type creators
* src/nm-device-802-11-wireless.c
- (real_can_activate): fold in most of
nm_device_802_11_wireless_can_activate()
- (can_scan): can't scan in UNAVAILABLE or UNMANAGED
- (link_timeout_cb): instead of deactivating, change device state and
let the device state handler to it
- (real_update_hw_address): clean up
- (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
handler to transition to DISCONNECTED if the device isn't rfkilled
* src/nm-device-802-3-ethernet.c
- (set_carrier): move above callers and get rid of prototype
- (device_state_changed): when entering UNAVAILABLE state, schedule an
idle handler to transition to DISCONNECTED if the device has a
carrier
- (real_update_hw_address): clean up
- (link_timeout_cb, ppp_state_changed): change state instead of calling
deactivation directly as deactivation doesn't change state anymore
* src/NetworkManagerPolicy.c
- (schedule_activate_check): yay, remove wireless_enabled hack since
the NMManager and wireless devices work that out themselves now
- (device_state_changed): change to a switch and update for new device
states
- (device_carrier_changed): remove; device handles this now through
state changes
- (device_added): don't care about carrier any more; the initial
activation check will happen when the device transitions to
DISCONNECTED
* src/nm-manager.c
- (dispose): clear unmanaged devices
- (handle_unmanaged_devices): update unmanaged device list and toggle
the managed property on each device when needed
- (system_settings_properties_changed_cb): handle signals from the
system settings service
- (system_settings_get_unmanaged_devices_cb): handle callback from
getting the unmanaged device list method call
- (query_unmanaged_devices): ask the system settings service for its
list of unmanaged devices
- (nm_manager_name_owner_changed, initial_get_connections): get unmanaged
devices
- (manager_set_wireless_enabled): push rfkill state down to wireless
devices directly and let them handle the necessary state transitions
- (manager_device_state_changed): update for new device states
- (nm_manager_add_device): set initial rfkill state on wireless devices
- (nm_manager_remove_device): don't touch the device if it's unmanaged
- (nm_manager_activate_connection): return error if the device is
unmanaged
- (nm_manager_sleep): handle new device states correctly; don't change
the state of unavailable/unmanaged devices
* libnm-glib/nm-device-802-11-wireless.c
- (state_changed_cb): update for new device states
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3540 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2008-04-08 02:58:02 +00:00
|
|
|
case NM_DEVICE_STATE_UNMANAGED:
|
|
|
|
|
case NM_DEVICE_STATE_UNAVAILABLE:
|
2007-10-12 10:18:46 +00:00
|
|
|
case NM_DEVICE_STATE_DISCONNECTED:
|
|
|
|
|
case NM_DEVICE_STATE_FAILED:
|
2008-03-25 12:41:17 +00:00
|
|
|
/* Just clear active AP; don't clear the AP list unless wireless is disabled completely */
|
2008-03-24 15:17:30 +00:00
|
|
|
if (priv->active_ap) {
|
|
|
|
|
g_object_unref (priv->active_ap);
|
|
|
|
|
priv->active_ap = NULL;
|
2008-03-25 12:41:17 +00:00
|
|
|
priv->null_active_ap = FALSE;
|
2008-03-24 15:17:30 +00:00
|
|
|
}
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_queue_notify (NM_OBJECT (device), NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT);
|
2008-03-24 15:17:30 +00:00
|
|
|
priv->rate = 0;
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_queue_notify (NM_OBJECT (device), NM_DEVICE_WIFI_BITRATE);
|
2007-10-12 10:18:46 +00:00
|
|
|
break;
|
2008-04-07 Dan Williams <dcbw@redhat.com>
* include/NetworkManager.h
- Remove the DOWN and CANCELLED device states
- Add UNMANAGED and UNAVAILABLE device states
- Document the device states
* introspection/nm-device.xml
src/nm-device-interface.c
src/nm-device-interface.h
- Add the 'managed' property
* test/nm-tool.c
- (detail_device): print out device state
* src/NetworkManagerSystem.h
src/backends/NetworkManagerArch.c
src/backends/NetworkManagerDebian.c
src/backends/NetworkManagerFrugalware.c
src/backends/NetworkManagerGentoo.c
src/backends/NetworkManagerMandriva.c
src/backends/NetworkManagerPaldo.c
src/backends/NetworkManagerRedHat.c
src/backends/NetworkManagerSlackware.c
src/backends/NetworkManagerSuSE.c
- (nm_system_device_get_system_config, nm_system_device_get_disabled
nm_system_device_free_system_config): remove; they were unused and
their functionality should be re-implemented in each distro's
system settings service plugin
* src/nm-gsm-device.c
src/nm-gsm-device.h
src/nm-cdma-device.c
src/nm-cdma-device.h
- (*_new): take the 'managed' argument
* src/nm-device.c
- (nm_device_set_address): remove, fold into nm_device_bring_up()
- (nm_device_init): start in unmanaged state, not disconnected
- (constructor): don't start device until the system settings service
has had a chance to figure out if the device is managed or not
- (nm_device_deactivate, nm_device_bring_up, nm_device_bring_down):
don't set device state here, let callers handle that as appropriate
- (nm_device_dispose): don't touch the device if it's not managed
- (set_property, get_property, nm_device_class_init): implement the
'managed' property
- (nm_device_state_changed): bring the device up if its now managed,
and deactivate it if it used to be active
- (nm_device_get_managed, nm_device_set_managed): do the right thing
with the managed state
* src/nm-hal-manager.c
- (wired_device_creator, wireless_device_creator, modem_device_creator):
take initial managed state and pass it along to device constructors
- (create_device_and_add_to_list): get managed state and pass to
type creators
* src/nm-device-802-11-wireless.c
- (real_can_activate): fold in most of
nm_device_802_11_wireless_can_activate()
- (can_scan): can't scan in UNAVAILABLE or UNMANAGED
- (link_timeout_cb): instead of deactivating, change device state and
let the device state handler to it
- (real_update_hw_address): clean up
- (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
handler to transition to DISCONNECTED if the device isn't rfkilled
* src/nm-device-802-3-ethernet.c
- (set_carrier): move above callers and get rid of prototype
- (device_state_changed): when entering UNAVAILABLE state, schedule an
idle handler to transition to DISCONNECTED if the device has a
carrier
- (real_update_hw_address): clean up
- (link_timeout_cb, ppp_state_changed): change state instead of calling
deactivation directly as deactivation doesn't change state anymore
* src/NetworkManagerPolicy.c
- (schedule_activate_check): yay, remove wireless_enabled hack since
the NMManager and wireless devices work that out themselves now
- (device_state_changed): change to a switch and update for new device
states
- (device_carrier_changed): remove; device handles this now through
state changes
- (device_added): don't care about carrier any more; the initial
activation check will happen when the device transitions to
DISCONNECTED
* src/nm-manager.c
- (dispose): clear unmanaged devices
- (handle_unmanaged_devices): update unmanaged device list and toggle
the managed property on each device when needed
- (system_settings_properties_changed_cb): handle signals from the
system settings service
- (system_settings_get_unmanaged_devices_cb): handle callback from
getting the unmanaged device list method call
- (query_unmanaged_devices): ask the system settings service for its
list of unmanaged devices
- (nm_manager_name_owner_changed, initial_get_connections): get unmanaged
devices
- (manager_set_wireless_enabled): push rfkill state down to wireless
devices directly and let them handle the necessary state transitions
- (manager_device_state_changed): update for new device states
- (nm_manager_add_device): set initial rfkill state on wireless devices
- (nm_manager_remove_device): don't touch the device if it's unmanaged
- (nm_manager_activate_connection): return error if the device is
unmanaged
- (nm_manager_sleep): handle new device states correctly; don't change
the state of unavailable/unmanaged devices
* libnm-glib/nm-device-802-11-wireless.c
- (state_changed_cb): update for new device states
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3540 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2008-04-08 02:58:02 +00:00
|
|
|
default:
|
|
|
|
|
break;
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
static gboolean
|
|
|
|
|
demarshal_active_ap (NMObject *object, GParamSpec *pspec, GValue *value, gpointer field)
|
|
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (object);
|
2008-03-24 15:17:30 +00:00
|
|
|
const char *path;
|
|
|
|
|
NMAccessPoint *ap = NULL;
|
|
|
|
|
DBusGConnection *connection;
|
|
|
|
|
|
|
|
|
|
if (!G_VALUE_HOLDS (value, DBUS_TYPE_G_OBJECT_PATH))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2008-03-25 12:41:17 +00:00
|
|
|
priv->null_active_ap = FALSE;
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
path = g_value_get_boxed (value);
|
2008-03-25 12:41:17 +00:00
|
|
|
if (path) {
|
|
|
|
|
if (!strcmp (path, "/"))
|
|
|
|
|
priv->null_active_ap = TRUE;
|
2008-03-24 15:17:30 +00:00
|
|
|
else {
|
2008-08-26 09:34:31 +00:00
|
|
|
ap = NM_ACCESS_POINT (_nm_object_cache_get (path));
|
2011-02-15 22:15:35 -06:00
|
|
|
if (!ap) {
|
2008-03-25 12:41:17 +00:00
|
|
|
connection = nm_object_get_connection (object);
|
|
|
|
|
ap = NM_ACCESS_POINT (nm_access_point_new (connection, path));
|
|
|
|
|
}
|
2008-03-24 15:17:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (priv->active_ap) {
|
|
|
|
|
g_object_unref (priv->active_ap);
|
|
|
|
|
priv->active_ap = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ap)
|
|
|
|
|
priv->active_ap = ap;
|
|
|
|
|
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_queue_notify (object, NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT);
|
2008-03-24 15:17:30 +00:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-06-10 16:32:39 +00:00
|
|
|
register_for_property_changed (NMDeviceWifi *device)
|
2008-03-24 15:17:30 +00:00
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (device);
|
2008-03-24 15:17:30 +00:00
|
|
|
const NMPropertiesChangedInfo property_changed_info[] = {
|
2010-06-22 14:21:25 +02:00
|
|
|
{ NM_DEVICE_WIFI_HW_ADDRESS, _nm_object_demarshal_generic, &priv->hw_address },
|
|
|
|
|
{ NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS, _nm_object_demarshal_generic, &priv->perm_hw_address },
|
|
|
|
|
{ NM_DEVICE_WIFI_MODE, _nm_object_demarshal_generic, &priv->mode },
|
|
|
|
|
{ NM_DEVICE_WIFI_BITRATE, _nm_object_demarshal_generic, &priv->rate },
|
|
|
|
|
{ NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT, demarshal_active_ap, &priv->active_ap },
|
|
|
|
|
{ NM_DEVICE_WIFI_CAPABILITIES, _nm_object_demarshal_generic, &priv->wireless_caps },
|
2008-03-24 15:17:30 +00:00
|
|
|
{ NULL },
|
|
|
|
|
};
|
|
|
|
|
|
2008-08-26 09:34:31 +00:00
|
|
|
_nm_object_handle_properties_changed (NM_OBJECT (device),
|
2008-03-24 15:17:30 +00:00
|
|
|
priv->proxy,
|
|
|
|
|
property_changed_info);
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-12 10:18:46 +00:00
|
|
|
static GObject*
|
|
|
|
|
constructor (GType type,
|
|
|
|
|
guint n_construct_params,
|
|
|
|
|
GObjectConstructParam *construct_params)
|
|
|
|
|
{
|
|
|
|
|
GObject *object;
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv;
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
object = G_OBJECT_CLASS (nm_device_wifi_parent_class)->constructor (type,
|
2007-10-12 10:18:46 +00:00
|
|
|
n_construct_params,
|
|
|
|
|
construct_params);
|
|
|
|
|
if (!object)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
priv = NM_DEVICE_WIFI_GET_PRIVATE (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
priv->proxy = dbus_g_proxy_new_for_name (nm_object_get_connection (NM_OBJECT (object)),
|
2007-10-12 10:18:46 +00:00
|
|
|
NM_DBUS_SERVICE,
|
|
|
|
|
nm_object_get_path (NM_OBJECT (object)),
|
|
|
|
|
NM_DBUS_INTERFACE_DEVICE_WIRELESS);
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
dbus_g_proxy_add_signal (priv->proxy, "AccessPointAdded",
|
2007-10-12 10:18:46 +00:00
|
|
|
DBUS_TYPE_G_OBJECT_PATH,
|
|
|
|
|
G_TYPE_INVALID);
|
2008-03-24 15:17:30 +00:00
|
|
|
dbus_g_proxy_connect_signal (priv->proxy, "AccessPointAdded",
|
2007-10-12 10:18:46 +00:00
|
|
|
G_CALLBACK (access_point_added_proxy),
|
|
|
|
|
object, NULL);
|
|
|
|
|
|
2008-03-24 15:17:30 +00:00
|
|
|
dbus_g_proxy_add_signal (priv->proxy, "AccessPointRemoved",
|
2007-10-12 10:18:46 +00:00
|
|
|
DBUS_TYPE_G_OBJECT_PATH,
|
|
|
|
|
G_TYPE_INVALID);
|
2008-03-24 15:17:30 +00:00
|
|
|
dbus_g_proxy_connect_signal (priv->proxy, "AccessPointRemoved",
|
2007-10-12 10:18:46 +00:00
|
|
|
G_CALLBACK (access_point_removed_proxy),
|
|
|
|
|
object, NULL);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
register_for_property_changed (NM_DEVICE_WIFI (object));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
g_signal_connect (NM_DEVICE (object),
|
2008-03-24 15:17:30 +00:00
|
|
|
"notify::" NM_DEVICE_STATE,
|
2007-10-12 10:18:46 +00:00
|
|
|
G_CALLBACK (state_changed_cb),
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
return object;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dispose (GObject *object)
|
|
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2007-12-07 15:32:45 +00:00
|
|
|
if (priv->disposed) {
|
2008-06-10 16:32:39 +00:00
|
|
|
G_OBJECT_CLASS (nm_device_wifi_parent_class)->dispose (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
return;
|
2007-12-07 15:32:45 +00:00
|
|
|
}
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
priv->disposed = TRUE;
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
clean_up_aps (NM_DEVICE_WIFI (object), FALSE);
|
2008-03-24 15:17:30 +00:00
|
|
|
g_object_unref (priv->proxy);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
G_OBJECT_CLASS (nm_device_wifi_parent_class)->dispose (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
finalize (GObject *object)
|
|
|
|
|
{
|
2008-06-10 16:32:39 +00:00
|
|
|
NMDeviceWifiPrivate *priv = NM_DEVICE_WIFI_GET_PRIVATE (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
if (priv->hw_address)
|
|
|
|
|
g_free (priv->hw_address);
|
|
|
|
|
|
2010-06-22 14:21:25 +02:00
|
|
|
if (priv->perm_hw_address)
|
|
|
|
|
g_free (priv->perm_hw_address);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
G_OBJECT_CLASS (nm_device_wifi_parent_class)->finalize (object);
|
2007-10-12 10:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-06-10 16:32:39 +00:00
|
|
|
nm_device_wifi_class_init (NMDeviceWifiClass *device_class)
|
2007-10-12 10:18:46 +00:00
|
|
|
{
|
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (device_class);
|
|
|
|
|
|
2008-06-10 16:32:39 +00:00
|
|
|
g_type_class_add_private (device_class, sizeof (NMDeviceWifiPrivate));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
/* virtual methods */
|
|
|
|
|
object_class->constructor = constructor;
|
|
|
|
|
object_class->get_property = get_property;
|
|
|
|
|
object_class->dispose = dispose;
|
|
|
|
|
object_class->finalize = finalize;
|
|
|
|
|
|
|
|
|
|
/* properties */
|
2008-08-12 08:05:21 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:hw-address:
|
|
|
|
|
*
|
|
|
|
|
* The hardware (MAC) address of the device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_HW_ADDRESS,
|
2008-06-10 16:32:39 +00:00
|
|
|
g_param_spec_string (NM_DEVICE_WIFI_HW_ADDRESS,
|
2010-06-22 14:21:25 +02:00
|
|
|
"Active MAC Address",
|
|
|
|
|
"Currently set hardware MAC address",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:perm-hw-address:
|
|
|
|
|
*
|
|
|
|
|
* The hardware (MAC) address of the device.
|
|
|
|
|
**/
|
|
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_PERM_HW_ADDRESS,
|
|
|
|
|
g_param_spec_string (NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS,
|
|
|
|
|
"Permanent MAC Address",
|
|
|
|
|
"Permanent hardware MAC address",
|
2007-10-12 10:18:46 +00:00
|
|
|
NULL,
|
2008-03-24 15:17:30 +00:00
|
|
|
G_PARAM_READABLE));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:mode:
|
|
|
|
|
*
|
|
|
|
|
* The mode of the device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_MODE,
|
2008-06-10 16:32:39 +00:00
|
|
|
g_param_spec_uint (NM_DEVICE_WIFI_MODE,
|
2007-10-12 10:18:46 +00:00
|
|
|
"Mode",
|
|
|
|
|
"Mode",
|
2008-04-15 20:39:34 +00:00
|
|
|
NM_802_11_MODE_UNKNOWN, NM_802_11_MODE_INFRA, NM_802_11_MODE_INFRA,
|
2008-03-24 15:17:30 +00:00
|
|
|
G_PARAM_READABLE));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:bitrate:
|
|
|
|
|
*
|
|
|
|
|
* The bit rate of the device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_BITRATE,
|
2008-06-10 16:32:39 +00:00
|
|
|
g_param_spec_uint (NM_DEVICE_WIFI_BITRATE,
|
2007-10-12 10:18:46 +00:00
|
|
|
"Bit Rate",
|
|
|
|
|
"Bit Rate",
|
2007-10-27 02:58:32 +00:00
|
|
|
0, G_MAXUINT32, 0,
|
2008-03-24 15:17:30 +00:00
|
|
|
G_PARAM_READABLE));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:active-access-point:
|
|
|
|
|
*
|
|
|
|
|
* The active #NMAccessPoint of the device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_ACTIVE_ACCESS_POINT,
|
2008-06-10 16:32:39 +00:00
|
|
|
g_param_spec_object (NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT,
|
2007-10-12 10:18:46 +00:00
|
|
|
"Active Access Point",
|
|
|
|
|
"Active Access Point",
|
2008-03-24 15:17:30 +00:00
|
|
|
NM_TYPE_ACCESS_POINT,
|
|
|
|
|
G_PARAM_READABLE));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi:wireless-capabilities:
|
|
|
|
|
*
|
|
|
|
|
* The wireless capabilities of the device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_WIRELESS_CAPABILITIES,
|
2008-06-10 16:32:39 +00:00
|
|
|
g_param_spec_uint (NM_DEVICE_WIFI_CAPABILITIES,
|
2007-10-12 10:18:46 +00:00
|
|
|
"Wireless Capabilities",
|
|
|
|
|
"Wireless Capabilities",
|
|
|
|
|
0, G_MAXUINT32, 0,
|
2008-03-24 15:17:30 +00:00
|
|
|
G_PARAM_READABLE));
|
2007-10-12 10:18:46 +00:00
|
|
|
|
|
|
|
|
/* signals */
|
2008-08-12 08:05:21 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi::access-point-added:
|
|
|
|
|
* @device: the wifi device that received the signal
|
|
|
|
|
* @ap: the new access point
|
|
|
|
|
*
|
|
|
|
|
* Notifies that a #NMAccessPoint is added to the wifi device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
signals[ACCESS_POINT_ADDED] =
|
|
|
|
|
g_signal_new ("access-point-added",
|
|
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
2008-06-10 16:32:39 +00:00
|
|
|
G_STRUCT_OFFSET (NMDeviceWifiClass, access_point_added),
|
2007-10-12 10:18:46 +00:00
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
|
G_TYPE_OBJECT);
|
|
|
|
|
|
2008-08-12 08:05:21 +00:00
|
|
|
/**
|
|
|
|
|
* NMDeviceWifi::access-point-removed:
|
|
|
|
|
* @device: the wifi device that received the signal
|
|
|
|
|
* @ap: the removed access point
|
|
|
|
|
*
|
|
|
|
|
* Notifies that a #NMAccessPoint is removed from the wifi device.
|
|
|
|
|
**/
|
2007-10-12 10:18:46 +00:00
|
|
|
signals[ACCESS_POINT_REMOVED] =
|
|
|
|
|
g_signal_new ("access-point-removed",
|
|
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
2008-06-10 16:32:39 +00:00
|
|
|
G_STRUCT_OFFSET (NMDeviceWifiClass, access_point_removed),
|
2007-10-12 10:18:46 +00:00
|
|
|
NULL, NULL,
|
|
|
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
|
G_TYPE_OBJECT);
|
|
|
|
|
}
|