2009-12-14 13:51:50 +02:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301 USA.
|
|
|
|
|
*
|
2014-07-04 13:33:18 -04:00
|
|
|
* Copyright 2011 - 2013 Red Hat, Inc.
|
|
|
|
|
* Copyright 2009 Novell, Inc.
|
2009-12-14 13:51:50 +02:00
|
|
|
*/
|
|
|
|
|
|
2014-11-13 10:07:02 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2011-01-12 15:54:56 -06:00
|
|
|
#include <string.h>
|
2009-12-14 13:51:50 +02:00
|
|
|
#include <net/ethernet.h>
|
|
|
|
|
#include <dbus/dbus-glib.h>
|
2011-01-12 15:54:56 -06:00
|
|
|
|
2009-12-14 13:51:50 +02:00
|
|
|
#include "nm-setting-wimax.h"
|
|
|
|
|
#include "nm-param-spec-specialized.h"
|
2012-10-22 12:36:09 -05:00
|
|
|
#include "nm-setting-private.h"
|
2009-12-14 13:51:50 +02:00
|
|
|
|
2011-07-02 15:38:27 -05:00
|
|
|
/**
|
|
|
|
|
* SECTION:nm-setting-wimax
|
|
|
|
|
* @short_description: Describes 802.16e Mobile WiMAX connection properties
|
|
|
|
|
* @include: nm-setting-wimax.h
|
|
|
|
|
*
|
|
|
|
|
* The #NMSettingWimax object is a #NMSetting subclass that describes properties
|
|
|
|
|
* necessary for connection to 802.16e Mobile WiMAX networks.
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* NetworkManager no longer supports WiMAX; while this API remains available for
|
|
|
|
|
* backward-compatibility reasons, it serves no real purpose, since WiMAX
|
|
|
|
|
* connections cannot be activated.
|
2011-07-02 15:38:27 -05:00
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_setting_wimax_error_quark:
|
|
|
|
|
*
|
|
|
|
|
* Registers an error quark for #NMSettingWimax if necessary.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the error quark used for #NMSettingWimax errors.
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2011-07-02 15:38:27 -05:00
|
|
|
**/
|
2009-12-14 13:51:50 +02:00
|
|
|
GQuark
|
|
|
|
|
nm_setting_wimax_error_quark (void)
|
|
|
|
|
{
|
|
|
|
|
static GQuark quark;
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!quark))
|
|
|
|
|
quark = g_quark_from_static_string ("nm-setting-wimax-error-quark");
|
|
|
|
|
return quark;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-10-22 12:36:09 -05:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (NMSettingWimax, nm_setting_wimax, NM_TYPE_SETTING,
|
|
|
|
|
_nm_register_setting (NM_SETTING_WIMAX_SETTING_NAME,
|
|
|
|
|
g_define_type_id,
|
|
|
|
|
1,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR))
|
|
|
|
|
NM_SETTING_REGISTER_TYPE (NM_TYPE_SETTING_WIMAX)
|
2009-12-14 13:51:50 +02:00
|
|
|
|
|
|
|
|
#define NM_SETTING_WIMAX_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_SETTING_WIMAX, NMSettingWimaxPrivate))
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
char *network_name;
|
|
|
|
|
GByteArray *mac_address;
|
|
|
|
|
} NMSettingWimaxPrivate;
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_NETWORK_NAME,
|
|
|
|
|
PROP_MAC_ADDRESS,
|
|
|
|
|
|
|
|
|
|
LAST_PROP
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-02 15:38:27 -05:00
|
|
|
/**
|
|
|
|
|
* nm_setting_wimax_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #NMSettingWimax object with default values.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the new empty #NMSettingWimax object
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2011-07-02 15:38:27 -05:00
|
|
|
**/
|
2009-12-14 13:51:50 +02:00
|
|
|
NMSetting *
|
|
|
|
|
nm_setting_wimax_new (void)
|
|
|
|
|
{
|
|
|
|
|
return (NMSetting *) g_object_new (NM_TYPE_SETTING_WIMAX, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-02 15:38:27 -05:00
|
|
|
/**
|
|
|
|
|
* nm_setting_wimax_get_network_name:
|
|
|
|
|
* @setting: the #NMSettingWimax
|
|
|
|
|
*
|
|
|
|
|
* Returns the WiMAX NSP name (ex "Sprint" or "CLEAR") which identifies the
|
|
|
|
|
* specific WiMAX network this setting describes a connection to.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the WiMAX NSP name
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2011-07-02 15:38:27 -05:00
|
|
|
**/
|
2009-12-14 13:51:50 +02:00
|
|
|
const char *
|
|
|
|
|
nm_setting_wimax_get_network_name (NMSettingWimax *setting)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_SETTING_WIMAX (setting), NULL);
|
|
|
|
|
|
|
|
|
|
return NM_SETTING_WIMAX_GET_PRIVATE (setting)->network_name;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-02 15:38:27 -05:00
|
|
|
/**
|
|
|
|
|
* nm_setting_wimax_get_mac_address:
|
|
|
|
|
* @setting: the #NMSettingWimax
|
|
|
|
|
*
|
|
|
|
|
* Returns the MAC address of a WiMAX device which this connection is locked
|
|
|
|
|
* to.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the MAC address
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2011-07-02 15:38:27 -05:00
|
|
|
**/
|
2009-12-14 13:51:50 +02:00
|
|
|
const GByteArray *
|
|
|
|
|
nm_setting_wimax_get_mac_address (NMSettingWimax *setting)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (NM_IS_SETTING_WIMAX (setting), NULL);
|
|
|
|
|
|
|
|
|
|
return NM_SETTING_WIMAX_GET_PRIVATE (setting)->mac_address;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
verify (NMSetting *setting, GSList *all_settings, GError **error)
|
|
|
|
|
{
|
|
|
|
|
NMSettingWimaxPrivate *priv = NM_SETTING_WIMAX_GET_PRIVATE (setting);
|
|
|
|
|
|
|
|
|
|
if (!priv->network_name) {
|
2013-02-07 14:49:53 +01:00
|
|
|
g_set_error_literal (error,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR_MISSING_PROPERTY,
|
|
|
|
|
_("property is missing"));
|
2013-06-10 09:51:25 +02:00
|
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_WIMAX_SETTING_NAME, NM_SETTING_WIMAX_NETWORK_NAME);
|
2009-12-14 13:51:50 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 15:54:56 -06:00
|
|
|
if (!strlen (priv->network_name)) {
|
2013-02-07 14:49:53 +01:00
|
|
|
g_set_error_literal (error,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("property is empty"));
|
2013-06-10 09:51:25 +02:00
|
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_WIMAX_SETTING_NAME, NM_SETTING_WIMAX_NETWORK_NAME);
|
2011-01-12 15:54:56 -06:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-14 13:51:50 +02:00
|
|
|
if (priv->mac_address && priv->mac_address->len != ETH_ALEN) {
|
2013-02-07 14:49:53 +01:00
|
|
|
g_set_error_literal (error,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR,
|
|
|
|
|
NM_SETTING_WIMAX_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("property is invalid"));
|
2013-06-10 09:51:25 +02:00
|
|
|
g_prefix_error (error, "%s.%s: ", NM_SETTING_WIMAX_SETTING_NAME, NM_SETTING_WIMAX_MAC_ADDRESS);
|
2009-12-14 13:51:50 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_setting_wimax_init (NMSettingWimax *setting)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
NMSettingWimaxPrivate *priv = NM_SETTING_WIMAX_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
|
|
g_free (priv->network_name);
|
|
|
|
|
if (priv->mac_address)
|
|
|
|
|
g_byte_array_free (priv->mac_address, TRUE);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (nm_setting_wimax_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
set_property (GObject *object, guint prop_id,
|
2014-05-09 14:45:59 -04:00
|
|
|
const GValue *value, GParamSpec *pspec)
|
2009-12-14 13:51:50 +02:00
|
|
|
{
|
|
|
|
|
NMSettingWimaxPrivate *priv = NM_SETTING_WIMAX_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_NETWORK_NAME:
|
|
|
|
|
g_free (priv->network_name);
|
|
|
|
|
priv->network_name = g_value_dup_string (value);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_MAC_ADDRESS:
|
|
|
|
|
if (priv->mac_address)
|
|
|
|
|
g_byte_array_free (priv->mac_address, TRUE);
|
|
|
|
|
priv->mac_address = g_value_dup_boxed (value);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
get_property (GObject *object, guint prop_id,
|
2014-05-09 14:45:59 -04:00
|
|
|
GValue *value, GParamSpec *pspec)
|
2009-12-14 13:51:50 +02:00
|
|
|
{
|
|
|
|
|
NMSettingWimax *setting = NM_SETTING_WIMAX (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_NETWORK_NAME:
|
|
|
|
|
g_value_set_string (value, nm_setting_wimax_get_network_name (setting));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_MAC_ADDRESS:
|
|
|
|
|
g_value_set_boxed (value, nm_setting_wimax_get_mac_address (setting));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nm_setting_wimax_class_init (NMSettingWimaxClass *setting_class)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (setting_class);
|
|
|
|
|
NMSettingClass *parent_class = NM_SETTING_CLASS (setting_class);
|
|
|
|
|
|
|
|
|
|
g_type_class_add_private (setting_class, sizeof (NMSettingWimaxPrivate));
|
|
|
|
|
|
|
|
|
|
/* virtual methods */
|
|
|
|
|
object_class->set_property = set_property;
|
|
|
|
|
object_class->get_property = get_property;
|
|
|
|
|
object_class->finalize = finalize;
|
|
|
|
|
parent_class->verify = verify;
|
|
|
|
|
|
|
|
|
|
/* Properties */
|
|
|
|
|
/**
|
|
|
|
|
* NMSettingWimax:network-name:
|
|
|
|
|
*
|
2011-02-16 22:39:38 -06:00
|
|
|
* Network Service Provider (NSP) name of the WiMAX network this connection
|
|
|
|
|
* should use.
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2009-12-14 13:51:50 +02:00
|
|
|
**/
|
|
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_NETWORK_NAME,
|
2014-06-05 16:23:32 -04:00
|
|
|
g_param_spec_string (NM_SETTING_WIMAX_NETWORK_NAME, "", "",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2009-12-14 13:51:50 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMSettingWimax:mac-address:
|
|
|
|
|
*
|
2014-06-05 15:11:04 -04:00
|
|
|
* If specified, this connection will only apply to the WiMAX device whose
|
|
|
|
|
* MAC address matches. This property does not change the MAC address of the
|
|
|
|
|
* device (known as MAC spoofing).
|
wimax: drop WiMAX support (bgo #747846)
Even Fedora is no longer shipping the WiMAX SDK, so it's likely we'll
eventually accidentally break some of the code in src/devices/wimax/
(if we haven't already). Discussion on the list showed a consensus for
dropping support for WiMAX.
So, remove the SDK checks from configure.ac, remove the WiMAX device
plugin and associated manager support, and deprecate all the APIs.
For compatibility reasons, it is still possible to create and save
WiMAX connections, to toggle the software WiMAX rfkill state, and to
change the "WIMAX" log level, although none of these have any effect,
since no NMDeviceWimax will ever be created.
nmcli was only compiling in support for most WiMAX operations when NM
as a whole was built with WiMAX support, so that code has been removed
now as well. (It is still possible to use nmcli to create and edit
WiMAX connections, but those connections will never be activatable.)
2015-04-13 17:07:00 -04:00
|
|
|
*
|
|
|
|
|
* Deprecated: 1.2: WiMAX is no longer supported.
|
2009-12-14 13:51:50 +02:00
|
|
|
**/
|
|
|
|
|
g_object_class_install_property
|
|
|
|
|
(object_class, PROP_MAC_ADDRESS,
|
2014-06-05 16:23:32 -04:00
|
|
|
_nm_param_spec_specialized (NM_SETTING_WIMAX_MAC_ADDRESS, "", "",
|
|
|
|
|
DBUS_TYPE_G_UCHAR_ARRAY,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2009-12-14 13:51:50 +02:00
|
|
|
}
|