mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-10 04:20:30 +01:00
We no longer add these. If you use Emacs, configure it yourself.
Also, due to our "smart-tab" usage the editor anyway does a subpar
job handling our tabs. However, on the upside every user can choose
whatever tab-width he/she prefers. If "smart-tabs" are used properly
(like we do), every tab-width will work.
No manual changes, just ran commands:
F=($(git grep -l -e '-\*-'))
sed '1 { /\/\* *-\*- *[mM]ode.*\*\/$/d }' -i "${F[@]}"
sed '1,4 { /^\(#\|--\|dnl\) *-\*- [mM]ode/d }' -i "${F[@]}"
Check remaining lines with:
git grep -e '-\*-'
The ultimate purpose of this is to cleanup our files and eventually use
SPDX license identifiers. For that, first get rid of the boilerplate lines.
1241 lines
39 KiB
C
1241 lines
39 KiB
C
/* NetworkManager -- Network link manager
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright (C) 2009 - 2011 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include "nm-device-bt.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "nm-bluez-common.h"
|
|
#include "nm-bluez-device.h"
|
|
#include "devices/nm-device-private.h"
|
|
#include "ppp/nm-ppp-manager.h"
|
|
#include "nm-setting-connection.h"
|
|
#include "nm-setting-bluetooth.h"
|
|
#include "nm-setting-cdma.h"
|
|
#include "nm-setting-gsm.h"
|
|
#include "nm-setting-serial.h"
|
|
#include "nm-setting-ppp.h"
|
|
#include "NetworkManagerUtils.h"
|
|
#include "settings/nm-settings-connection.h"
|
|
#include "nm-utils.h"
|
|
#include "nm-bt-error.h"
|
|
#include "nm-ip4-config.h"
|
|
#include "platform/nm-platform.h"
|
|
|
|
#include "devices/wwan/nm-modem-manager.h"
|
|
#include "devices/wwan/nm-modem.h"
|
|
|
|
#include "devices/nm-device-logging.h"
|
|
_LOG_DECLARE_SELF(NMDeviceBt);
|
|
|
|
/*****************************************************************************/
|
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE_BASE (
|
|
PROP_BT_NAME,
|
|
PROP_BT_CAPABILITIES,
|
|
PROP_BT_DEVICE,
|
|
);
|
|
|
|
enum {
|
|
PPP_STATS,
|
|
LAST_SIGNAL,
|
|
};
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
typedef struct {
|
|
NMModemManager *modem_manager;
|
|
|
|
gboolean mm_running;
|
|
|
|
NMBluezDevice *bt_device;
|
|
|
|
char *bdaddr;
|
|
char *name;
|
|
guint32 capabilities;
|
|
|
|
gboolean connected;
|
|
gboolean have_iface;
|
|
|
|
char *rfcomm_iface;
|
|
NMModem *modem;
|
|
guint timeout_id;
|
|
|
|
GCancellable *cancellable;
|
|
|
|
guint32 bt_type; /* BT type of the current connection */
|
|
} NMDeviceBtPrivate;
|
|
|
|
struct _NMDeviceBt {
|
|
NMDevice parent;
|
|
NMDeviceBtPrivate _priv;
|
|
};
|
|
|
|
struct _NMDeviceBtClass {
|
|
NMDeviceClass parent;
|
|
};
|
|
|
|
G_DEFINE_TYPE (NMDeviceBt, nm_device_bt, NM_TYPE_DEVICE)
|
|
|
|
#define NM_DEVICE_BT_GET_PRIVATE(self) _NM_GET_PRIVATE (self, NMDeviceBt, NM_IS_DEVICE_BT)
|
|
|
|
/*****************************************************************************/
|
|
|
|
static gboolean modem_stage1 (NMDeviceBt *self, NMModem *modem, NMDeviceStateReason *out_failure_reason);
|
|
|
|
/*****************************************************************************/
|
|
|
|
guint32 nm_device_bt_get_capabilities (NMDeviceBt *self)
|
|
{
|
|
g_return_val_if_fail (NM_IS_DEVICE_BT (self), NM_BT_CAPABILITY_NONE);
|
|
|
|
return NM_DEVICE_BT_GET_PRIVATE (self)->capabilities;
|
|
}
|
|
|
|
static guint32
|
|
get_connection_bt_type (NMConnection *connection)
|
|
{
|
|
NMSettingBluetooth *s_bt;
|
|
const char *bt_type;
|
|
|
|
s_bt = nm_connection_get_setting_bluetooth (connection);
|
|
if (!s_bt)
|
|
return NM_BT_CAPABILITY_NONE;
|
|
|
|
bt_type = nm_setting_bluetooth_get_connection_type (s_bt);
|
|
g_assert (bt_type);
|
|
|
|
if (!strcmp (bt_type, NM_SETTING_BLUETOOTH_TYPE_DUN))
|
|
return NM_BT_CAPABILITY_DUN;
|
|
else if (!strcmp (bt_type, NM_SETTING_BLUETOOTH_TYPE_PANU))
|
|
return NM_BT_CAPABILITY_NAP;
|
|
|
|
return NM_BT_CAPABILITY_NONE;
|
|
}
|
|
|
|
static NMDeviceCapabilities
|
|
get_generic_capabilities (NMDevice *device)
|
|
{
|
|
return NM_DEVICE_CAP_IS_NON_KERNEL;
|
|
}
|
|
|
|
static gboolean
|
|
can_auto_connect (NMDevice *device,
|
|
NMSettingsConnection *sett_conn,
|
|
char **specific_object)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
guint32 bt_type;
|
|
|
|
nm_assert (!specific_object || !*specific_object);
|
|
|
|
if (!NM_DEVICE_CLASS (nm_device_bt_parent_class)->can_auto_connect (device, sett_conn, NULL))
|
|
return FALSE;
|
|
|
|
/* Can't auto-activate a DUN connection without ModemManager */
|
|
bt_type = get_connection_bt_type (nm_settings_connection_get_connection (sett_conn));
|
|
if (bt_type == NM_BT_CAPABILITY_DUN && priv->mm_running == FALSE)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
check_connection_compatible (NMDevice *device, NMConnection *connection, GError **error)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
NMSettingBluetooth *s_bt;
|
|
const char *bdaddr;
|
|
guint32 bt_type;
|
|
|
|
if (!NM_DEVICE_CLASS (nm_device_bt_parent_class)->check_connection_compatible (device, connection, error))
|
|
return FALSE;
|
|
|
|
bt_type = get_connection_bt_type (connection);
|
|
if (!NM_FLAGS_ALL (priv->capabilities, bt_type)) {
|
|
nm_utils_error_set_literal (error, NM_UTILS_ERROR_CONNECTION_AVAILABLE_TEMPORARY,
|
|
"device does not support bluetooth type of profile");
|
|
return FALSE;
|
|
}
|
|
|
|
s_bt = nm_connection_get_setting_bluetooth (connection);
|
|
|
|
bdaddr = nm_setting_bluetooth_get_bdaddr (s_bt);
|
|
if (!bdaddr) {
|
|
nm_utils_error_set_literal (error, NM_UTILS_ERROR_CONNECTION_AVAILABLE_TEMPORARY,
|
|
"profile lacks bdaddr setting");
|
|
return FALSE;
|
|
}
|
|
if (!nm_utils_hwaddr_matches (priv->bdaddr, -1, bdaddr, -1)) {
|
|
nm_utils_error_set_literal (error, NM_UTILS_ERROR_CONNECTION_AVAILABLE_TEMPORARY,
|
|
"devices bdaddr setting mismatches");
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
check_connection_available (NMDevice *device,
|
|
NMConnection *connection,
|
|
NMDeviceCheckConAvailableFlags flags,
|
|
const char *specific_object,
|
|
GError **error)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
guint32 bt_type;
|
|
|
|
bt_type = get_connection_bt_type (connection);
|
|
if (!(bt_type & priv->capabilities)) {
|
|
nm_utils_error_set_literal (error, NM_UTILS_ERROR_CONNECTION_AVAILABLE_TEMPORARY,
|
|
"device does not support bluetooth type");
|
|
return FALSE;
|
|
}
|
|
|
|
/* DUN connections aren't available without ModemManager */
|
|
if (bt_type == NM_BT_CAPABILITY_DUN && priv->mm_running == FALSE) {
|
|
nm_utils_error_set_literal (error, NM_UTILS_ERROR_CONNECTION_AVAILABLE_TEMPORARY,
|
|
"ModemManager missing for DUN profile");
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
complete_connection (NMDevice *device,
|
|
NMConnection *connection,
|
|
const char *specific_object,
|
|
NMConnection *const*existing_connections,
|
|
GError **error)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
NMSettingBluetooth *s_bt;
|
|
const char *setting_bdaddr;
|
|
const char *ctype;
|
|
gboolean is_dun = FALSE, is_pan = FALSE;
|
|
NMSettingGsm *s_gsm;
|
|
NMSettingCdma *s_cdma;
|
|
NMSettingSerial *s_serial;
|
|
NMSettingPpp *s_ppp;
|
|
const char *fallback_prefix = NULL, *preferred = NULL;
|
|
|
|
s_gsm = nm_connection_get_setting_gsm (connection);
|
|
s_cdma = nm_connection_get_setting_cdma (connection);
|
|
s_serial = nm_connection_get_setting_serial (connection);
|
|
s_ppp = nm_connection_get_setting_ppp (connection);
|
|
|
|
s_bt = nm_connection_get_setting_bluetooth (connection);
|
|
if (!s_bt) {
|
|
s_bt = (NMSettingBluetooth *) nm_setting_bluetooth_new ();
|
|
nm_connection_add_setting (connection, NM_SETTING (s_bt));
|
|
}
|
|
|
|
ctype = nm_setting_bluetooth_get_connection_type (s_bt);
|
|
if (ctype) {
|
|
if (!strcmp (ctype, NM_SETTING_BLUETOOTH_TYPE_DUN))
|
|
is_dun = TRUE;
|
|
else if (!strcmp (ctype, NM_SETTING_BLUETOOTH_TYPE_PANU))
|
|
is_pan = TRUE;
|
|
} else {
|
|
if (s_gsm || s_cdma)
|
|
is_dun = TRUE;
|
|
else if (priv->capabilities & NM_BT_CAPABILITY_NAP)
|
|
is_pan = TRUE;
|
|
}
|
|
|
|
if (is_pan) {
|
|
/* Make sure the device supports PAN */
|
|
if (!(priv->capabilities & NM_BT_CAPABILITY_NAP)) {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
_("PAN requested, but Bluetooth device does not support NAP"));
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_BLUETOOTH_TYPE);
|
|
return FALSE;
|
|
}
|
|
|
|
/* PAN can't use any DUN-related settings */
|
|
if (s_gsm || s_cdma || s_serial || s_ppp) {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_SETTING,
|
|
_("PAN connections cannot specify GSM, CDMA, or serial settings"));
|
|
g_prefix_error (error, "%s: ",
|
|
s_gsm ? NM_SETTING_GSM_SETTING_NAME :
|
|
s_cdma ? NM_SETTING_CDMA_SETTING_NAME :
|
|
s_serial ? NM_SETTING_SERIAL_SETTING_NAME :
|
|
NM_SETTING_PPP_SETTING_NAME);
|
|
return FALSE;
|
|
}
|
|
|
|
g_object_set (G_OBJECT (s_bt),
|
|
NM_SETTING_BLUETOOTH_TYPE, NM_SETTING_BLUETOOTH_TYPE_PANU,
|
|
NULL);
|
|
|
|
fallback_prefix = _("PAN connection");
|
|
} else if (is_dun) {
|
|
/* Make sure the device supports PAN */
|
|
if (!(priv->capabilities & NM_BT_CAPABILITY_DUN)) {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
_("DUN requested, but Bluetooth device does not support DUN"));
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_BLUETOOTH_TYPE);
|
|
return FALSE;
|
|
}
|
|
|
|
/* Need at least a GSM or a CDMA setting */
|
|
if (!s_gsm && !s_cdma) {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_SETTING,
|
|
_("DUN connection must include a GSM or CDMA setting"));
|
|
g_prefix_error (error, "%s: ", NM_SETTING_BLUETOOTH_SETTING_NAME);
|
|
return FALSE;
|
|
}
|
|
|
|
g_object_set (G_OBJECT (s_bt),
|
|
NM_SETTING_BLUETOOTH_TYPE, NM_SETTING_BLUETOOTH_TYPE_DUN,
|
|
NULL);
|
|
|
|
if (s_gsm) {
|
|
fallback_prefix = _("GSM connection");
|
|
} else {
|
|
fallback_prefix = _("CDMA connection");
|
|
if (!nm_setting_cdma_get_number (s_cdma))
|
|
g_object_set (G_OBJECT (s_cdma), NM_SETTING_CDMA_NUMBER, "#777", NULL);
|
|
}
|
|
} else {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
_("Unknown/unhandled Bluetooth connection type"));
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_BLUETOOTH_TYPE);
|
|
return FALSE;
|
|
}
|
|
|
|
nm_utils_complete_generic (nm_device_get_platform (device),
|
|
connection,
|
|
NM_SETTING_BLUETOOTH_SETTING_NAME,
|
|
existing_connections,
|
|
preferred,
|
|
fallback_prefix,
|
|
NULL,
|
|
NULL,
|
|
is_dun ? FALSE : TRUE); /* No IPv6 yet for DUN */
|
|
|
|
setting_bdaddr = nm_setting_bluetooth_get_bdaddr (s_bt);
|
|
if (setting_bdaddr) {
|
|
/* Make sure the setting BT Address (if any) matches the device's */
|
|
if (!nm_utils_hwaddr_matches (setting_bdaddr, -1, priv->bdaddr, -1)) {
|
|
g_set_error_literal (error,
|
|
NM_CONNECTION_ERROR,
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
_("connection does not match device"));
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_BLUETOOTH_SETTING_NAME, NM_SETTING_BLUETOOTH_BDADDR);
|
|
return FALSE;
|
|
}
|
|
} else {
|
|
/* Lock the connection to this device by default */
|
|
if (!nm_utils_hwaddr_matches (priv->bdaddr, -1, NULL, ETH_ALEN))
|
|
g_object_set (G_OBJECT (s_bt), NM_SETTING_BLUETOOTH_BDADDR, priv->bdaddr, NULL);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* IP method PPP */
|
|
|
|
static void
|
|
ppp_stats (NMModem *modem,
|
|
guint i_in_bytes,
|
|
guint i_out_bytes,
|
|
gpointer user_data)
|
|
{
|
|
guint32 in_bytes = i_in_bytes;
|
|
guint32 out_bytes = i_out_bytes;
|
|
|
|
g_signal_emit (NM_DEVICE_BT (user_data), signals[PPP_STATS], 0, (guint) in_bytes, (guint) out_bytes);
|
|
}
|
|
|
|
static void
|
|
ppp_failed (NMModem *modem,
|
|
guint i_reason,
|
|
gpointer user_data)
|
|
{
|
|
NMDevice *device = NM_DEVICE (user_data);
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDeviceStateReason reason = i_reason;
|
|
|
|
switch (nm_device_get_state (device)) {
|
|
case NM_DEVICE_STATE_PREPARE:
|
|
case NM_DEVICE_STATE_CONFIG:
|
|
case NM_DEVICE_STATE_NEED_AUTH:
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, reason);
|
|
break;
|
|
case NM_DEVICE_STATE_IP_CONFIG:
|
|
case NM_DEVICE_STATE_IP_CHECK:
|
|
case NM_DEVICE_STATE_SECONDARIES:
|
|
case NM_DEVICE_STATE_ACTIVATED:
|
|
if (nm_device_activate_ip4_state_in_conf (device))
|
|
nm_device_activate_schedule_ip_config_timeout (device, AF_INET);
|
|
else if (nm_device_activate_ip6_state_in_conf (device))
|
|
nm_device_activate_schedule_ip_config_timeout (device, AF_INET6);
|
|
else if (nm_device_activate_ip4_state_done (device)) {
|
|
nm_device_ip_method_failed (device,
|
|
AF_INET,
|
|
NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
|
|
} else if (nm_device_activate_ip6_state_done (device)) {
|
|
nm_device_ip_method_failed (device,
|
|
AF_INET6,
|
|
NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
|
|
} else {
|
|
_LOGW (LOGD_MB, "PPP failure in unexpected state %u", (guint) nm_device_get_state (device));
|
|
nm_device_state_changed (device,
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
modem_auth_requested (NMModem *modem, gpointer user_data)
|
|
{
|
|
NMDevice *device = NM_DEVICE (user_data);
|
|
|
|
/* Auth requests (PIN, PAP/CHAP passwords, etc) only get handled
|
|
* during activation.
|
|
*/
|
|
if (!nm_device_is_activating (device))
|
|
return;
|
|
|
|
nm_device_state_changed (device,
|
|
NM_DEVICE_STATE_NEED_AUTH,
|
|
NM_DEVICE_STATE_REASON_NONE);
|
|
}
|
|
|
|
static void
|
|
modem_auth_result (NMModem *modem, GError *error, gpointer user_data)
|
|
{
|
|
NMDevice *device = NM_DEVICE (user_data);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
|
|
if (error) {
|
|
nm_device_state_changed (device,
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_NO_SECRETS);
|
|
} else {
|
|
NMDeviceStateReason failure_reason = NM_DEVICE_STATE_REASON_NONE;
|
|
|
|
/* Otherwise, on success for GSM/CDMA secrets we need to schedule modem stage1 again */
|
|
g_return_if_fail (nm_device_get_state (device) == NM_DEVICE_STATE_NEED_AUTH);
|
|
if (!modem_stage1 (NM_DEVICE_BT (device), priv->modem, &failure_reason))
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, failure_reason);
|
|
}
|
|
}
|
|
|
|
static void
|
|
modem_prepare_result (NMModem *modem,
|
|
gboolean success,
|
|
guint i_reason,
|
|
gpointer user_data)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDevice *device = NM_DEVICE (self);
|
|
NMDeviceStateReason reason = i_reason;
|
|
NMDeviceState state;
|
|
|
|
state = nm_device_get_state (device);
|
|
g_return_if_fail (state == NM_DEVICE_STATE_CONFIG || state == NM_DEVICE_STATE_NEED_AUTH);
|
|
|
|
if (success) {
|
|
NMActRequest *req;
|
|
NMActStageReturn ret;
|
|
NMDeviceStateReason failure_reason = NM_DEVICE_STATE_REASON_NONE;
|
|
|
|
req = nm_device_get_act_request (device);
|
|
g_return_if_fail (req);
|
|
|
|
ret = nm_modem_act_stage2_config (modem, req, &failure_reason);
|
|
switch (ret) {
|
|
case NM_ACT_STAGE_RETURN_POSTPONE:
|
|
break;
|
|
case NM_ACT_STAGE_RETURN_SUCCESS:
|
|
nm_device_activate_schedule_stage3_ip_config_start (device);
|
|
break;
|
|
case NM_ACT_STAGE_RETURN_FAILURE:
|
|
default:
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, failure_reason);
|
|
break;
|
|
}
|
|
} else {
|
|
if (nm_device_state_reason_check (reason) == NM_DEVICE_STATE_REASON_SIM_PIN_INCORRECT) {
|
|
/* If the connect failed because the SIM PIN was wrong don't allow
|
|
* the device to be auto-activated anymore, which would risk locking
|
|
* the SIM if the incorrect PIN continues to be used.
|
|
*/
|
|
nm_device_autoconnect_blocked_set (device, NM_DEVICE_AUTOCONNECT_BLOCKED_WRONG_PIN);
|
|
}
|
|
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, reason);
|
|
}
|
|
}
|
|
|
|
static void
|
|
device_state_changed (NMDevice *device,
|
|
NMDeviceState new_state,
|
|
NMDeviceState old_state,
|
|
NMDeviceStateReason reason)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
|
|
if (priv->modem)
|
|
nm_modem_device_state_changed (priv->modem, new_state, old_state);
|
|
|
|
/* Need to recheck available connections whenever MM appears or disappears,
|
|
* since the device could be both DUN and NAP capable and thus may not
|
|
* change state (which rechecks available connections) when MM comes and goes.
|
|
*/
|
|
if (priv->mm_running && (priv->capabilities & NM_BT_CAPABILITY_DUN))
|
|
nm_device_recheck_available_connections (device);
|
|
}
|
|
|
|
static void
|
|
modem_ip4_config_result (NMModem *modem,
|
|
NMIP4Config *config,
|
|
GError *error,
|
|
gpointer user_data)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDevice *device = NM_DEVICE (self);
|
|
|
|
g_return_if_fail (nm_device_activate_ip4_state_in_conf (device) == TRUE);
|
|
|
|
if (error) {
|
|
_LOGW (LOGD_MB | LOGD_IP4 | LOGD_BT,
|
|
"retrieving IP4 configuration failed: %s",
|
|
error->message);
|
|
nm_device_ip_method_failed (device,
|
|
AF_INET,
|
|
NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
|
|
} else
|
|
nm_device_activate_schedule_ip_config_result (device, AF_INET, NM_IP_CONFIG_CAST (config));
|
|
}
|
|
|
|
static void
|
|
ip_ifindex_changed_cb (NMModem *modem, GParamSpec *pspec, gpointer user_data)
|
|
{
|
|
NMDevice *device = NM_DEVICE (user_data);
|
|
|
|
if (!nm_device_set_ip_ifindex (device,
|
|
nm_modem_get_ip_ifindex (modem))) {
|
|
nm_device_state_changed (device,
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE);
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
modem_stage1 (NMDeviceBt *self, NMModem *modem, NMDeviceStateReason *out_failure_reason)
|
|
{
|
|
NMActRequest *req;
|
|
NMActStageReturn ret;
|
|
|
|
req = nm_device_get_act_request (NM_DEVICE (self));
|
|
g_return_val_if_fail (req, FALSE);
|
|
|
|
ret = nm_modem_act_stage1_prepare (modem, req, out_failure_reason);
|
|
switch (ret) {
|
|
case NM_ACT_STAGE_RETURN_POSTPONE:
|
|
case NM_ACT_STAGE_RETURN_SUCCESS:
|
|
/* Success, wait for the 'prepare-result' signal */
|
|
return TRUE;
|
|
case NM_ACT_STAGE_RETURN_FAILURE:
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
modem_cleanup (NMDeviceBt *self)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
|
|
if (priv->modem) {
|
|
g_signal_handlers_disconnect_matched (priv->modem, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, self);
|
|
g_clear_object (&priv->modem);
|
|
}
|
|
}
|
|
|
|
static void
|
|
modem_state_cb (NMModem *modem,
|
|
int new_state_i,
|
|
int old_state_i,
|
|
gpointer user_data)
|
|
{
|
|
NMModemState new_state = new_state_i;
|
|
NMModemState old_state = old_state_i;
|
|
NMDevice *device = NM_DEVICE (user_data);
|
|
NMDeviceState dev_state = nm_device_get_state (device);
|
|
|
|
if (new_state <= NM_MODEM_STATE_DISABLING && old_state > NM_MODEM_STATE_DISABLING) {
|
|
/* Will be called whenever something external to NM disables the
|
|
* modem directly through ModemManager.
|
|
*/
|
|
if (nm_device_is_activating (device) || dev_state == NM_DEVICE_STATE_ACTIVATED) {
|
|
nm_device_state_changed (device,
|
|
NM_DEVICE_STATE_DISCONNECTED,
|
|
NM_DEVICE_STATE_REASON_USER_REQUESTED);
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (new_state < NM_MODEM_STATE_CONNECTING &&
|
|
old_state >= NM_MODEM_STATE_CONNECTING &&
|
|
dev_state >= NM_DEVICE_STATE_NEED_AUTH &&
|
|
dev_state <= NM_DEVICE_STATE_ACTIVATED) {
|
|
/* Fail the device if the modem disconnects unexpectedly while the
|
|
* device is activating/activated. */
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_REASON_MODEM_NO_CARRIER);
|
|
return;
|
|
}
|
|
}
|
|
|
|
static void
|
|
modem_removed_cb (NMModem *modem, gpointer user_data)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDeviceState state;
|
|
|
|
/* Fail the device if the modem was removed while active */
|
|
state = nm_device_get_state (NM_DEVICE (self));
|
|
if ( state == NM_DEVICE_STATE_ACTIVATED
|
|
|| nm_device_is_activating (NM_DEVICE (self))) {
|
|
nm_device_state_changed (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_BT_FAILED);
|
|
} else
|
|
modem_cleanup (self);
|
|
}
|
|
|
|
static gboolean
|
|
component_added (NMDevice *device, GObject *component)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (device);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
NMModem *modem;
|
|
NMDeviceState state;
|
|
NMDeviceStateReason failure_reason = NM_DEVICE_STATE_REASON_NONE;
|
|
|
|
if ( !component
|
|
|| !NM_IS_MODEM (component))
|
|
return FALSE;
|
|
|
|
modem = NM_MODEM (component);
|
|
if (!priv->rfcomm_iface)
|
|
return FALSE;
|
|
|
|
{
|
|
gs_free char *base = NULL;
|
|
|
|
base = g_path_get_basename (priv->rfcomm_iface);
|
|
if (!nm_streq (base, nm_modem_get_control_port (modem)))
|
|
return FALSE;
|
|
}
|
|
|
|
/* Got the modem */
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
/* Can only accept the modem in stage2, but since the interface matched
|
|
* what we were expecting, don't let anything else claim the modem either.
|
|
*/
|
|
state = nm_device_get_state (NM_DEVICE (self));
|
|
if (state != NM_DEVICE_STATE_CONFIG) {
|
|
_LOGW (LOGD_BT | LOGD_MB,
|
|
"modem found but device not in correct state (%d)",
|
|
nm_device_get_state (NM_DEVICE (self)));
|
|
return TRUE;
|
|
}
|
|
|
|
_LOGI (LOGD_BT | LOGD_MB,
|
|
"Activation: (bluetooth) Stage 2 of 5 (Device Configure) modem found.");
|
|
|
|
if (priv->modem) {
|
|
g_warn_if_reached ();
|
|
modem_cleanup (self);
|
|
}
|
|
|
|
priv->modem = g_object_ref (modem);
|
|
g_signal_connect (modem, NM_MODEM_PPP_STATS, G_CALLBACK (ppp_stats), self);
|
|
g_signal_connect (modem, NM_MODEM_PPP_FAILED, G_CALLBACK (ppp_failed), self);
|
|
g_signal_connect (modem, NM_MODEM_PREPARE_RESULT, G_CALLBACK (modem_prepare_result), self);
|
|
g_signal_connect (modem, NM_MODEM_IP4_CONFIG_RESULT, G_CALLBACK (modem_ip4_config_result), self);
|
|
g_signal_connect (modem, NM_MODEM_AUTH_REQUESTED, G_CALLBACK (modem_auth_requested), self);
|
|
g_signal_connect (modem, NM_MODEM_AUTH_RESULT, G_CALLBACK (modem_auth_result), self);
|
|
g_signal_connect (modem, NM_MODEM_STATE_CHANGED, G_CALLBACK (modem_state_cb), self);
|
|
g_signal_connect (modem, NM_MODEM_REMOVED, G_CALLBACK (modem_removed_cb), self);
|
|
|
|
g_signal_connect (modem, "notify::" NM_MODEM_IP_IFINDEX, G_CALLBACK (ip_ifindex_changed_cb), self);
|
|
|
|
/* Kick off the modem connection */
|
|
if (!modem_stage1 (self, modem, &failure_reason))
|
|
nm_device_state_changed (NM_DEVICE (self), NM_DEVICE_STATE_FAILED, failure_reason);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
modem_find_timeout (gpointer user_data)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
|
|
priv->timeout_id = 0;
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
nm_device_state_changed (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_MODEM_NOT_FOUND);
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
check_connect_continue (NMDeviceBt *self)
|
|
{
|
|
NMDevice *device = NM_DEVICE (self);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
gboolean pan = (priv->bt_type == NM_BT_CAPABILITY_NAP);
|
|
gboolean dun = (priv->bt_type == NM_BT_CAPABILITY_DUN);
|
|
|
|
if (!priv->connected || !priv->have_iface)
|
|
return;
|
|
|
|
_LOGI (LOGD_BT,
|
|
"Activation: (bluetooth) Stage 2 of 5 (Device Configure) successful. Will connect via %s.",
|
|
dun ? "DUN" : (pan ? "PAN" : "unknown"));
|
|
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
if (pan) {
|
|
/* Bluez says we're connected now. Start IP config. */
|
|
nm_device_activate_schedule_stage3_ip_config_start (device);
|
|
} else if (dun) {
|
|
/* Wait for ModemManager to find the modem */
|
|
priv->timeout_id = g_timeout_add_seconds (30, modem_find_timeout, self);
|
|
|
|
_LOGI (LOGD_BT | LOGD_MB,
|
|
"Activation: (bluetooth) Stage 2 of 5 (Device Configure) waiting for modem to appear.");
|
|
} else
|
|
g_assert_not_reached ();
|
|
}
|
|
|
|
static void
|
|
bluez_connect_cb (NMBluezDevice *bt_device,
|
|
const char *device_name,
|
|
GError *error,
|
|
gpointer user_data)
|
|
{
|
|
gs_unref_object NMDeviceBt *self = user_data;
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
|
|
if (nm_utils_error_is_cancelled (error, FALSE))
|
|
return;
|
|
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
g_clear_object (&priv->cancellable);
|
|
|
|
if (!nm_device_is_activating (NM_DEVICE (self)))
|
|
return;
|
|
|
|
if (!device_name) {
|
|
_LOGW (LOGD_BT, "Error connecting with bluez: %s", error->message);
|
|
nm_device_state_changed (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_BT_FAILED);
|
|
return;
|
|
}
|
|
|
|
if (priv->bt_type == NM_BT_CAPABILITY_DUN) {
|
|
g_free (priv->rfcomm_iface);
|
|
priv->rfcomm_iface = g_strdup (device_name);
|
|
} else if (priv->bt_type == NM_BT_CAPABILITY_NAP) {
|
|
if (!nm_device_set_ip_iface (NM_DEVICE (self), device_name)) {
|
|
_LOGW (LOGD_BT, "Error connecting with bluez: cannot find device %s", device_name);
|
|
nm_device_state_changed (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_BT_FAILED);
|
|
return;
|
|
}
|
|
}
|
|
|
|
_LOGD (LOGD_BT, "connect request successful");
|
|
|
|
/* Stage 3 gets scheduled when Bluez says we're connected */
|
|
priv->have_iface = TRUE;
|
|
check_connect_continue (self);
|
|
}
|
|
|
|
static void
|
|
bluez_connected_changed (NMBluezDevice *bt_device,
|
|
GParamSpec *pspec,
|
|
NMDevice *device)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (device);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
gboolean connected;
|
|
NMDeviceState state;
|
|
|
|
state = nm_device_get_state (device);
|
|
connected = nm_bluez_device_get_connected (bt_device);
|
|
if (connected) {
|
|
if (state == NM_DEVICE_STATE_CONFIG) {
|
|
_LOGD (LOGD_BT, "connected to the device");
|
|
|
|
priv->connected = TRUE;
|
|
check_connect_continue (self);
|
|
}
|
|
} else {
|
|
gboolean fail = FALSE;
|
|
|
|
/* Bluez says we're disconnected from the device. Suck. */
|
|
|
|
if (nm_device_is_activating (device)) {
|
|
_LOGI (LOGD_BT, "Activation: (bluetooth) bluetooth link disconnected.");
|
|
fail = TRUE;
|
|
} else if (state == NM_DEVICE_STATE_ACTIVATED) {
|
|
_LOGI (LOGD_BT, "bluetooth link disconnected.");
|
|
fail = TRUE;
|
|
}
|
|
|
|
if (fail) {
|
|
nm_device_state_changed (device, NM_DEVICE_STATE_FAILED, NM_DEVICE_STATE_REASON_CARRIER);
|
|
priv->connected = FALSE;
|
|
}
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
bt_connect_timeout (gpointer user_data)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (user_data);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
|
|
_LOGD (LOGD_BT, "initial connection timed out");
|
|
|
|
priv->timeout_id = 0;
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
nm_device_state_changed (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_FAILED,
|
|
NM_DEVICE_STATE_REASON_BT_FAILED);
|
|
return FALSE;
|
|
}
|
|
|
|
static NMActStageReturn
|
|
act_stage2_config (NMDevice *device, NMDeviceStateReason *out_failure_reason)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (device);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
NMConnection *connection;
|
|
|
|
connection = nm_device_get_applied_connection (device);
|
|
g_return_val_if_fail (connection, NM_ACT_STAGE_RETURN_FAILURE);
|
|
|
|
priv->bt_type = get_connection_bt_type (connection);
|
|
if (priv->bt_type == NM_BT_CAPABILITY_NONE) {
|
|
// FIXME: set a reason code
|
|
return NM_ACT_STAGE_RETURN_FAILURE;
|
|
}
|
|
|
|
if (priv->bt_type == NM_BT_CAPABILITY_DUN && !priv->mm_running) {
|
|
NM_SET_OUT (out_failure_reason, NM_DEVICE_STATE_REASON_MODEM_MANAGER_UNAVAILABLE);
|
|
return NM_ACT_STAGE_RETURN_FAILURE;
|
|
}
|
|
|
|
_LOGD (LOGD_BT, "requesting connection to the device");
|
|
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
priv->timeout_id = g_timeout_add_seconds (30, bt_connect_timeout, device);
|
|
priv->cancellable = g_cancellable_new ();
|
|
|
|
nm_bluez_device_connect_async (priv->bt_device,
|
|
priv->bt_type & (NM_BT_CAPABILITY_DUN | NM_BT_CAPABILITY_NAP),
|
|
priv->cancellable,
|
|
bluez_connect_cb,
|
|
g_object_ref (self));
|
|
|
|
return NM_ACT_STAGE_RETURN_POSTPONE;
|
|
}
|
|
|
|
static NMActStageReturn
|
|
act_stage3_ip_config_start (NMDevice *device,
|
|
int addr_family,
|
|
gpointer *out_config,
|
|
NMDeviceStateReason *out_failure_reason)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
|
|
nm_assert_addr_family (addr_family);
|
|
|
|
if (priv->bt_type == NM_BT_CAPABILITY_DUN) {
|
|
if (addr_family == AF_INET) {
|
|
return nm_modem_stage3_ip4_config_start (priv->modem,
|
|
device,
|
|
NM_DEVICE_CLASS (nm_device_bt_parent_class),
|
|
out_failure_reason);
|
|
} else {
|
|
return nm_modem_stage3_ip6_config_start (priv->modem,
|
|
device,
|
|
out_failure_reason);
|
|
}
|
|
}
|
|
|
|
return NM_DEVICE_CLASS (nm_device_bt_parent_class)->act_stage3_ip_config_start (device, addr_family, out_config, out_failure_reason);
|
|
}
|
|
|
|
static void
|
|
deactivate (NMDevice *device)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) device);
|
|
|
|
priv->have_iface = FALSE;
|
|
priv->connected = FALSE;
|
|
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
if (priv->bt_type == NM_BT_CAPABILITY_DUN) {
|
|
if (priv->modem) {
|
|
nm_modem_deactivate (priv->modem, device);
|
|
|
|
/* Since we're killing the Modem object before it'll get the
|
|
* state change signal, simulate the state change here.
|
|
*/
|
|
nm_modem_device_state_changed (priv->modem,
|
|
NM_DEVICE_STATE_DISCONNECTED,
|
|
NM_DEVICE_STATE_ACTIVATED);
|
|
modem_cleanup (NM_DEVICE_BT (device));
|
|
}
|
|
}
|
|
|
|
if (priv->bt_type != NM_BT_CAPABILITY_NONE)
|
|
nm_bluez_device_disconnect (priv->bt_device);
|
|
|
|
priv->bt_type = NM_BT_CAPABILITY_NONE;
|
|
|
|
g_free (priv->rfcomm_iface);
|
|
priv->rfcomm_iface = NULL;
|
|
|
|
if (NM_DEVICE_CLASS (nm_device_bt_parent_class)->deactivate)
|
|
NM_DEVICE_CLASS (nm_device_bt_parent_class)->deactivate (device);
|
|
}
|
|
|
|
static void
|
|
bluez_device_removed (NMBluezDevice *bdev, gpointer user_data)
|
|
{
|
|
g_signal_emit_by_name (NM_DEVICE_BT (user_data), NM_DEVICE_REMOVED);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static gboolean
|
|
is_available (NMDevice *dev, NMDeviceCheckDevAvailableFlags flags)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (dev);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
|
|
/* PAN doesn't need ModemManager, so devices that support it are always available */
|
|
if (priv->capabilities & NM_BT_CAPABILITY_NAP)
|
|
return TRUE;
|
|
|
|
/* DUN requires ModemManager */
|
|
return priv->mm_running;
|
|
}
|
|
|
|
static void
|
|
set_mm_running (NMDeviceBt *self)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
gboolean running;
|
|
|
|
running = (nm_modem_manager_name_owner_get (priv->modem_manager) != NULL);
|
|
|
|
if (priv->mm_running != running) {
|
|
_LOGD (LOGD_BT, "ModemManager now %s",
|
|
running ? "available" : "unavailable");
|
|
|
|
priv->mm_running = running;
|
|
nm_device_queue_recheck_available (NM_DEVICE (self),
|
|
NM_DEVICE_STATE_REASON_NONE,
|
|
NM_DEVICE_STATE_REASON_MODEM_MANAGER_UNAVAILABLE);
|
|
}
|
|
}
|
|
|
|
static void
|
|
mm_name_owner_changed_cb (GObject *object,
|
|
GParamSpec *pspec,
|
|
gpointer user_data)
|
|
{
|
|
set_mm_running (user_data);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
get_property (GObject *object, guint prop_id,
|
|
GValue *value, GParamSpec *pspec)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) object);
|
|
|
|
switch (prop_id) {
|
|
case PROP_BT_NAME:
|
|
g_value_set_string (value, priv->name);
|
|
break;
|
|
case PROP_BT_CAPABILITIES:
|
|
g_value_set_uint (value, priv->capabilities);
|
|
break;
|
|
case PROP_BT_DEVICE:
|
|
g_value_set_object (value, priv->bt_device);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
set_property (GObject *object, guint prop_id,
|
|
const GValue *value, GParamSpec *pspec)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) object);
|
|
|
|
switch (prop_id) {
|
|
case PROP_BT_NAME:
|
|
/* construct-only */
|
|
priv->name = g_value_dup_string (value);
|
|
break;
|
|
case PROP_BT_CAPABILITIES:
|
|
/* construct-only */
|
|
priv->capabilities = g_value_get_uint (value);
|
|
break;
|
|
case PROP_BT_DEVICE:
|
|
/* construct-only */
|
|
priv->bt_device = g_value_dup_object (value);
|
|
if (!priv->bt_device)
|
|
g_return_if_reached ();
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
nm_device_bt_init (NMDeviceBt *self)
|
|
{
|
|
}
|
|
|
|
static void
|
|
constructed (GObject *object)
|
|
{
|
|
NMDeviceBt *self = NM_DEVICE_BT (object);
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE (self);
|
|
const char *my_hwaddr;
|
|
|
|
G_OBJECT_CLASS (nm_device_bt_parent_class)->constructed (object);
|
|
|
|
priv->modem_manager = g_object_ref (nm_modem_manager_get ());
|
|
|
|
nm_modem_manager_name_owner_ref (priv->modem_manager);
|
|
|
|
g_signal_connect (priv->modem_manager,
|
|
"notify::"NM_MODEM_MANAGER_NAME_OWNER,
|
|
G_CALLBACK (mm_name_owner_changed_cb),
|
|
self);
|
|
|
|
if (priv->bt_device) {
|
|
/* Watch for BT device property changes */
|
|
g_signal_connect (priv->bt_device, "notify::" NM_BLUEZ_DEVICE_CONNECTED,
|
|
G_CALLBACK (bluez_connected_changed),
|
|
object);
|
|
g_signal_connect (priv->bt_device, NM_BLUEZ_DEVICE_REMOVED,
|
|
G_CALLBACK (bluez_device_removed), object);
|
|
}
|
|
|
|
my_hwaddr = nm_device_get_hw_address (NM_DEVICE (object));
|
|
if (my_hwaddr)
|
|
priv->bdaddr = g_strdup (my_hwaddr);
|
|
else
|
|
g_warn_if_reached ();
|
|
|
|
set_mm_running (self);
|
|
}
|
|
|
|
NMDevice *
|
|
nm_device_bt_new (NMBluezDevice *bt_device,
|
|
const char *udi,
|
|
const char *bdaddr,
|
|
const char *name,
|
|
guint32 capabilities)
|
|
{
|
|
g_return_val_if_fail (udi != NULL, NULL);
|
|
g_return_val_if_fail (bdaddr != NULL, NULL);
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
g_return_val_if_fail (capabilities != NM_BT_CAPABILITY_NONE, NULL);
|
|
g_return_val_if_fail (NM_IS_BLUEZ_DEVICE (bt_device), NULL);
|
|
|
|
return (NMDevice *) g_object_new (NM_TYPE_DEVICE_BT,
|
|
NM_DEVICE_UDI, udi,
|
|
NM_DEVICE_IFACE, bdaddr,
|
|
NM_DEVICE_DRIVER, "bluez",
|
|
NM_DEVICE_PERM_HW_ADDRESS, bdaddr,
|
|
NM_DEVICE_BT_DEVICE, bt_device,
|
|
NM_DEVICE_BT_NAME, name,
|
|
NM_DEVICE_BT_CAPABILITIES, capabilities,
|
|
NM_DEVICE_TYPE_DESC, "Bluetooth",
|
|
NM_DEVICE_DEVICE_TYPE, NM_DEVICE_TYPE_BT,
|
|
NULL);
|
|
}
|
|
|
|
static void
|
|
dispose (GObject *object)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) object);
|
|
|
|
nm_clear_g_source (&priv->timeout_id);
|
|
nm_clear_g_cancellable (&priv->cancellable);
|
|
|
|
g_signal_handlers_disconnect_matched (priv->bt_device, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, object);
|
|
|
|
if (priv->modem_manager) {
|
|
g_signal_handlers_disconnect_by_func (priv->modem_manager, G_CALLBACK (mm_name_owner_changed_cb), object);
|
|
nm_modem_manager_name_owner_unref (priv->modem_manager);
|
|
g_clear_object (&priv->modem_manager);
|
|
}
|
|
|
|
modem_cleanup (NM_DEVICE_BT (object));
|
|
g_clear_object (&priv->bt_device);
|
|
|
|
G_OBJECT_CLASS (nm_device_bt_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
finalize (GObject *object)
|
|
{
|
|
NMDeviceBtPrivate *priv = NM_DEVICE_BT_GET_PRIVATE ((NMDeviceBt *) object);
|
|
|
|
g_free (priv->rfcomm_iface);
|
|
g_free (priv->name);
|
|
g_free (priv->bdaddr);
|
|
|
|
G_OBJECT_CLASS (nm_device_bt_parent_class)->finalize (object);
|
|
}
|
|
|
|
static const NMDBusInterfaceInfoExtended interface_info_device_bluetooth = {
|
|
.parent = NM_DEFINE_GDBUS_INTERFACE_INFO_INIT (
|
|
NM_DBUS_INTERFACE_DEVICE_BLUETOOTH,
|
|
.signals = NM_DEFINE_GDBUS_SIGNAL_INFOS (
|
|
&nm_signal_info_property_changed_legacy,
|
|
),
|
|
.properties = NM_DEFINE_GDBUS_PROPERTY_INFOS (
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("HwAddress", "s", NM_DEVICE_HW_ADDRESS),
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("Name", "s", NM_DEVICE_BT_NAME),
|
|
NM_DEFINE_DBUS_PROPERTY_INFO_EXTENDED_READABLE_L ("BtCapabilities", "u", NM_DEVICE_BT_CAPABILITIES),
|
|
),
|
|
),
|
|
.legacy_property_changed = TRUE,
|
|
};
|
|
|
|
static void
|
|
nm_device_bt_class_init (NMDeviceBtClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
NMDBusObjectClass *dbus_object_class = NM_DBUS_OBJECT_CLASS (klass);
|
|
NMDeviceClass *device_class = NM_DEVICE_CLASS (klass);
|
|
|
|
object_class->constructed = constructed;
|
|
object_class->get_property = get_property;
|
|
object_class->set_property = set_property;
|
|
object_class->dispose = dispose;
|
|
object_class->finalize = finalize;
|
|
|
|
dbus_object_class->interface_infos = NM_DBUS_INTERFACE_INFOS (&interface_info_device_bluetooth);
|
|
|
|
device_class->connection_type_check_compatible = NM_SETTING_BLUETOOTH_SETTING_NAME;
|
|
|
|
device_class->get_generic_capabilities = get_generic_capabilities;
|
|
device_class->can_auto_connect = can_auto_connect;
|
|
device_class->deactivate = deactivate;
|
|
device_class->act_stage2_config = act_stage2_config;
|
|
device_class->act_stage3_ip_config_start = act_stage3_ip_config_start;
|
|
device_class->check_connection_compatible = check_connection_compatible;
|
|
device_class->check_connection_available = check_connection_available;
|
|
device_class->complete_connection = complete_connection;
|
|
device_class->is_available = is_available;
|
|
device_class->component_added = component_added;
|
|
device_class->get_configured_mtu = nm_modem_get_configured_mtu;
|
|
|
|
device_class->state_changed = device_state_changed;
|
|
|
|
obj_properties[PROP_BT_NAME] =
|
|
g_param_spec_string (NM_DEVICE_BT_NAME, "", "",
|
|
NULL,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_BT_CAPABILITIES] =
|
|
g_param_spec_uint (NM_DEVICE_BT_CAPABILITIES, "", "",
|
|
NM_BT_CAPABILITY_NONE, G_MAXUINT, NM_BT_CAPABILITY_NONE,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
obj_properties[PROP_BT_DEVICE] =
|
|
g_param_spec_object (NM_DEVICE_BT_DEVICE, "", "",
|
|
NM_TYPE_BLUEZ_DEVICE,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
G_PARAM_STATIC_STRINGS);
|
|
|
|
g_object_class_install_properties (object_class, _PROPERTY_ENUMS_LAST, obj_properties);
|
|
|
|
signals[PPP_STATS] =
|
|
g_signal_new (NM_DEVICE_BT_PPP_STATS,
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
G_SIGNAL_RUN_FIRST,
|
|
0, NULL, NULL, NULL,
|
|
G_TYPE_NONE, 2,
|
|
G_TYPE_UINT /*guint32 in_bytes*/,
|
|
G_TYPE_UINT /*guint32 out_bytes*/);
|
|
}
|