about summary refs log tree commit diff
path: root/src/modem-manager/nm-modem-cdma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modem-manager/nm-modem-cdma.c')
-rw-r--r--src/modem-manager/nm-modem-cdma.c358
1 files changed, 0 insertions, 358 deletions
diff --git a/src/modem-manager/nm-modem-cdma.c b/src/modem-manager/nm-modem-cdma.c
deleted file mode 100644
index 6bed8c2a..00000000
--- a/src/modem-manager/nm-modem-cdma.c
+++ /dev/null
@@ -1,358 +0,0 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
-/* 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.
- * Copyright (C) 2009 Novell, Inc.
- */
-
-#include "config.h"
-
-#include <string.h>
-#include <glib/gi18n.h>
-
-#include "nm-dbus-glib-types.h"
-#include "nm-modem-cdma.h"
-#include "nm-modem-types.h"
-#include "nm-enum-types.h"
-#include "nm-device.h"
-#include "nm-device-private.h"
-#include "nm-dbus-manager.h"
-#include "nm-setting-connection.h"
-#include "nm-setting-cdma.h"
-#include "nm-setting-ppp.h"
-#include "NetworkManagerUtils.h"
-#include "nm-logging.h"
-
-G_DEFINE_TYPE (NMModemCdma, nm_modem_cdma, NM_TYPE_MODEM_GENERIC)
-
-#define NM_MODEM_CDMA_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_MODEM_CDMA, NMModemCdmaPrivate))
-
-typedef struct {
-	DBusGProxyCall *call;
-
-	GHashTable *connect_properties;
-} NMModemCdmaPrivate;
-
-
-#define NM_CDMA_ERROR (nm_cdma_error_quark ())
-
-static GQuark
-nm_cdma_error_quark (void)
-{
-	static GQuark quark = 0;
-	if (!quark)
-		quark = g_quark_from_static_string ("nm-cdma-error");
-	return quark;
-}
-
-
-NMModem *
-nm_modem_cdma_new (const char *path,
-                   const char *data_device,
-                   guint32 ip_method,
-                   NMModemState state)
-{
-	g_return_val_if_fail (path != NULL, NULL);
-	g_return_val_if_fail (data_device != NULL, NULL);
-
-	return (NMModem *) g_object_new (NM_TYPE_MODEM_CDMA,
-	                                 NM_MODEM_PATH, path,
-	                                 NM_MODEM_UID, data_device,
-	                                 NM_MODEM_CONTROL_PORT, NULL,
-	                                 NM_MODEM_DATA_PORT, data_device,
-	                                 NM_MODEM_IP_METHOD, ip_method,
-	                                 NM_MODEM_CONNECTED, (state == NM_MODEM_STATE_CONNECTED),
-	                                 NULL);
-}
-
-static void
-stage1_prepare_done (DBusGProxy *proxy, DBusGProxyCall *call, gpointer user_data)
-{
-	NMModemCdma *self = NM_MODEM_CDMA (user_data);
-	NMModemCdmaPrivate *priv = NM_MODEM_CDMA_GET_PRIVATE (self);
-	GError *error = NULL;
-
-	priv->call = NULL;
-
-	if (priv->connect_properties) {
-		g_hash_table_destroy (priv->connect_properties);
-		priv->connect_properties = NULL;
-	}
-
-	if (dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_INVALID))
-		g_signal_emit_by_name (self, NM_MODEM_PREPARE_RESULT, TRUE, NM_DEVICE_STATE_REASON_NONE);
-	else {
-		nm_log_warn (LOGD_MB, "CDMA connection failed: (%d) %s",
-		             error ? error->code : -1,
-		             error && error->message ? error->message : "(unknown)");
-		g_error_free (error);
-		g_signal_emit_by_name (self, NM_MODEM_PREPARE_RESULT, FALSE, NM_DEVICE_STATE_REASON_NONE);
-	}
-}
-
-static void
-do_connect (NMModemCdma *self)
-{
-	NMModemCdmaPrivate *priv = NM_MODEM_CDMA_GET_PRIVATE (self);
-	DBusGProxy *proxy;
-
-	proxy = nm_modem_generic_get_proxy (NM_MODEM_GENERIC (self), MM_OLD_DBUS_INTERFACE_MODEM_SIMPLE);
-	priv->call = dbus_g_proxy_begin_call_with_timeout (proxy,
-	                                                   "Connect", stage1_prepare_done,
-	                                                   self, NULL, 120000,
-	                                                   DBUS_TYPE_G_MAP_OF_VARIANT, priv->connect_properties,
-	                                                   G_TYPE_INVALID);
-}
-
-static void
-stage1_enable_done (DBusGProxy *proxy, DBusGProxyCall *call_id, gpointer user_data)
-{
-	NMModemCdma *self = NM_MODEM_CDMA (user_data);
-	GError *error = NULL;
-
-	if (dbus_g_proxy_end_call (proxy, call_id, &error, G_TYPE_INVALID))
-		do_connect (self);
-	else {
-		nm_log_warn (LOGD_MB, "CDMA modem enable failed: (%d) %s",
-		             error ? error->code : -1,
-		             error && error->message ? error->message : "(unknown)");
-		g_error_free (error);
-		g_signal_emit_by_name (self, NM_MODEM_PREPARE_RESULT, FALSE, NM_DEVICE_STATE_REASON_MODEM_INIT_FAILED);
-	}
-}
-
-static GHashTable *
-create_connect_properties (NMConnection *connection)
-{
-	NMSettingCdma *setting;
-	GHashTable *properties;
-	const char *str;
-
-	setting = nm_connection_get_setting_cdma (connection);
-	properties = value_hash_create ();
-
-	str = nm_setting_cdma_get_number (setting);
-	if (str)
-		value_hash_add_str (properties, "number", str);
-
-	return properties;
-}
-
-static NMActStageReturn
-act_stage1_prepare (NMModem *modem,
-                    NMActRequest *req,
-                    GPtrArray **out_hints,
-                    const char **out_setting_name,
-                    NMDeviceStateReason *reason)
-{
-	NMModemCdma *self = NM_MODEM_CDMA (modem);
-	NMModemCdmaPrivate *priv = NM_MODEM_CDMA_GET_PRIVATE (self);
-	NMConnection *connection;
-
-	connection = nm_act_request_get_connection (req);
-	g_assert (connection);
-
-	*out_setting_name = nm_connection_need_secrets (connection, out_hints);
-	if (!*out_setting_name) {
-		gboolean enabled = nm_modem_get_mm_enabled (modem);
-		DBusGProxy *proxy;
-
-		if (priv->connect_properties)
-			g_hash_table_destroy (priv->connect_properties);
-		priv->connect_properties = create_connect_properties (connection);
-
-		if (enabled)
-			do_connect (self);
-		else {
-			proxy = nm_modem_generic_get_proxy (NM_MODEM_GENERIC (modem), MM_OLD_DBUS_INTERFACE_MODEM);
-			dbus_g_proxy_begin_call_with_timeout (proxy,
-			                                      "Enable", stage1_enable_done,
-			                                      modem, NULL, 20000,
-			                                      G_TYPE_BOOLEAN, TRUE,
-			                                      G_TYPE_INVALID);
-		}
-	} else {
-		/* NMModem will handle requesting secrets... */
-	}
-
-	return NM_ACT_STAGE_RETURN_POSTPONE;
-}
-
-static NMConnection *
-get_best_auto_connection (NMModem *modem,
-                          GSList *connections,
-                          char **specific_object)
-{
-	GSList *iter;
-
-	for (iter = connections; iter; iter = g_slist_next (iter)) {
-		NMConnection *connection = NM_CONNECTION (iter->data);
-
-		if (nm_connection_is_type (connection, NM_SETTING_CDMA_SETTING_NAME))
-			return connection;
-	}
-	return NULL;
-}
-
-static gboolean
-check_connection_compatible (NMModem *modem,
-                             NMConnection *connection,
-                             GError **error)
-{
-	NMSettingConnection *s_con;
-	NMSettingCdma *s_cdma;
-
-	s_con = nm_connection_get_setting_connection (connection);
-	g_assert (s_con);
-
-	if (strcmp (nm_setting_connection_get_connection_type (s_con), NM_SETTING_CDMA_SETTING_NAME)) {
-		g_set_error (error,
-		             NM_CDMA_ERROR, NM_CDMA_ERROR_CONNECTION_NOT_CDMA,
-		             "The connection was not a CDMA connection.");
-		return FALSE;
-	}
-
-	s_cdma = nm_connection_get_setting_cdma (connection);
-	if (!s_cdma) {
-		g_set_error (error,
-		             NM_CDMA_ERROR, NM_CDMA_ERROR_CONNECTION_INVALID,
-		             "The connection was not a valid CDMA connection.");
-		return FALSE;
-	}
-
-	return TRUE;
-}
-
-static gboolean
-complete_connection (NMModem *modem,
-                     NMConnection *connection,
-                     const GSList *existing_connections,
-                     GError **error)
-{
-	NMSettingCdma *s_cdma;
-	NMSettingPPP *s_ppp;
-
-	s_cdma = nm_connection_get_setting_cdma (connection);
-	if (!s_cdma) {
-		s_cdma = (NMSettingCdma *) nm_setting_cdma_new ();
-		nm_connection_add_setting (connection, NM_SETTING (s_cdma));
-	}
-
-	if (!nm_setting_cdma_get_number (s_cdma))
-		g_object_set (G_OBJECT (s_cdma), NM_SETTING_CDMA_NUMBER, "#777", NULL);
-
-	s_ppp = nm_connection_get_setting_ppp (connection);
-	if (!s_ppp) {
-		s_ppp = (NMSettingPPP *) nm_setting_ppp_new ();
-		g_object_set (G_OBJECT (s_ppp),
-		              NM_SETTING_PPP_LCP_ECHO_FAILURE, 5,
-		              NM_SETTING_PPP_LCP_ECHO_INTERVAL, 30,
-		              NULL);
-		nm_connection_add_setting (connection, NM_SETTING (s_ppp));
-	}
-
-	nm_utils_complete_generic (connection,
-	                           NM_SETTING_CDMA_SETTING_NAME,
-	                           existing_connections,
-	                           _("CDMA connection %d"),
-	                           NULL,
-	                           FALSE); /* No IPv6 yet by default */
-
-	return TRUE;
-}
-
-static gboolean
-get_user_pass (NMModem *modem,
-               NMConnection *connection,
-               const char **user,
-               const char **pass)
-{
-	NMSettingCdma *s_cdma;
-
-	s_cdma = nm_connection_get_setting_cdma (connection);
-	if (!s_cdma)
-		return FALSE;
-
-	if (user)
-		*user = nm_setting_cdma_get_username (s_cdma);
-	if (pass)
-		*pass = nm_setting_cdma_get_password (s_cdma);
-
-	return TRUE;
-}
-
-static const char *
-get_setting_name (NMModem *modem)
-{
-	return NM_SETTING_CDMA_SETTING_NAME;
-}
-
-static void
-deactivate (NMModem *modem, NMDevice *device)
-{
-	NMModemCdmaPrivate *priv = NM_MODEM_CDMA_GET_PRIVATE (modem);
-
-	if (priv->call) {
-		DBusGProxy *proxy;
-
-		proxy = nm_modem_generic_get_proxy (NM_MODEM_GENERIC (modem), MM_OLD_DBUS_INTERFACE_MODEM_SIMPLE);
-		dbus_g_proxy_cancel_call (proxy, priv->call);
-		priv->call = NULL;
-	}
-
-	NM_MODEM_CLASS (nm_modem_cdma_parent_class)->deactivate (modem, device);
-}
-
-/*****************************************************************************/
-
-static void
-nm_modem_cdma_init (NMModemCdma *self)
-{
-}
-
-static void
-dispose (GObject *object)
-{
-	NMModemCdma *self = NM_MODEM_CDMA (object);
-	NMModemCdmaPrivate *priv = NM_MODEM_CDMA_GET_PRIVATE (self);
-
-	if (priv->connect_properties)
-		g_hash_table_destroy (priv->connect_properties);
-
-	G_OBJECT_CLASS (nm_modem_cdma_parent_class)->dispose (object);
-}
-
-static void
-nm_modem_cdma_class_init (NMModemCdmaClass *klass)
-{
-	GObjectClass *object_class = G_OBJECT_CLASS (klass);
-	NMModemClass *modem_class = NM_MODEM_CLASS (klass);
-
-	g_type_class_add_private (object_class, sizeof (NMModemCdmaPrivate));
-
-	/* Virtual methods */
-	object_class->dispose = dispose;
-	modem_class->get_user_pass = get_user_pass;
-	modem_class->get_setting_name = get_setting_name;
-	modem_class->get_best_auto_connection = get_best_auto_connection;
-	modem_class->check_connection_compatible = check_connection_compatible;
-	modem_class->complete_connection = complete_connection;
-	modem_class->act_stage1_prepare = act_stage1_prepare;
-	modem_class->deactivate = deactivate;
-
-	dbus_g_error_domain_register (NM_CDMA_ERROR, NULL, NM_TYPE_CDMA_ERROR);
-}