summaryrefslogtreecommitdiff
path: root/modem/sim-service.c
blob: c939cbebeb768d315d6f49a0cae3dbfeb2a6f108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
 * modem/sim-service.c - ModemSIMService class
 *
 * Copyright (C) 2008-2010 Nokia Corporation
 *   @author Pekka Pessi <first.surname@nokia.com>
 *   @author Lassi Syrjala <first.surname@nokia.com>
 *
 * This work 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.1 of the License, or (at your option) any later version.
 *
 * This work 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 work; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"

#define MODEM_DEBUG_FLAG MODEM_LOG_SIM

#include "debug.h"

#include "modem/sim.h"
#include "modem/request-private.h"
#include "modem/errors.h"
#include "modem/ofono.h"

#include <dbus/dbus-glib.h>

#include "signals-marshal.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>

/* ------------------------------------------------------------------------ */

G_DEFINE_TYPE (ModemSIMService, modem_sim_service, MODEM_TYPE_OFACE);

/* Signals we send */
enum
{
  SIGNAL_CONNECTED,
  SIGNAL_STATUS,
  N_SIGNALS
};

static guint signals[N_SIGNALS] = {0};

/* Properties */
enum
{
  PROP_NONE,
  PROP_STATUS,
  PROP_IMSI,
  LAST_PROPERTY
};

/* private data */
struct _ModemSIMServicePrivate
{
  guint state;
  char *imsi;

  GQueue queue[1];

  unsigned dispose_has_run:1, connected:1, signals:1, disconnected:1;
  unsigned connection_error:1;
  unsigned :0;
};

/* ------------------------------------------------------------------------ */

GQuark
modem_oface_quark_sim (void)
{
  static gsize quark = 0;

  if (g_once_init_enter (&quark))
    {
      GQuark q = g_quark_from_static_string (MODEM_OFACE_SIM);
      g_once_init_leave (&quark, q);
    }

  return quark;
}

/* ------------------------------------------------------------------------ */
/* Local functions */

/* ------------------------------------------------------------------------ */

static void
modem_sim_service_init (ModemSIMService *self)
{
  DEBUG ("enter");

  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
      MODEM_TYPE_SIM_SERVICE, ModemSIMServicePrivate);
}

static void
modem_sim_service_get_property (GObject *object,
                                guint property_id,
                                GValue *value,
                                GParamSpec *pspec)
{
  ModemSIMService *self = MODEM_SIM_SERVICE (object);
  ModemSIMServicePrivate *priv = self->priv;

  switch (property_id)
    {
    case PROP_STATUS:
      g_value_set_uint (value, priv->state);
      break;

    case PROP_IMSI:
      g_value_set_string (value, priv->imsi);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
    }
}

static void
modem_sim_service_set_property (GObject *object,
                                guint property_id,
                                const GValue *value,
                                GParamSpec *pspec)
{
  ModemSIMService *self = MODEM_SIM_SERVICE (object);
  ModemSIMServicePrivate *priv = self->priv;
  gpointer old;

  switch (property_id)
    {
    case PROP_STATUS:
      priv->state = g_value_get_uint (value);
      break;

    case PROP_IMSI:
      old = priv->imsi;
      priv->imsi = g_value_dup_string (value);
      g_free (old);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
    }
}

static void
modem_sim_service_constructed (GObject *object)
{
  if (G_OBJECT_CLASS (modem_sim_service_parent_class)->constructed)
    G_OBJECT_CLASS (modem_sim_service_parent_class)->constructed (object);

  if (modem_oface_dbus_proxy (MODEM_OFACE (object)) == NULL)
	  g_warning("object created without dbus-proxy set");
}

static void
modem_sim_service_dispose (GObject *object)
{
  ModemSIMService *self = MODEM_SIM_SERVICE (object);
  ModemSIMServicePrivate *priv = self->priv;

  if (priv->dispose_has_run)
    return;
  priv->dispose_has_run = TRUE;
  priv->disconnected = TRUE;
  priv->connected = FALSE;
  priv->signals = FALSE;

  g_object_set (self, "state", MODEM_SIM_STATE_UNKNOWN, NULL);

  while (!g_queue_is_empty (priv->queue))
    modem_request_cancel (g_queue_pop_head (priv->queue));

  if (G_OBJECT_CLASS (modem_sim_service_parent_class)->dispose)
    G_OBJECT_CLASS (modem_sim_service_parent_class)->dispose (object);
}

static void
modem_sim_service_finalize (GObject *object)
{
  ModemSIMService *self = MODEM_SIM_SERVICE (object);
  ModemSIMServicePrivate *priv = self->priv;

  DEBUG ("enter");

  /* Free any data held directly by the object here */
  g_free (priv->imsi);

  G_OBJECT_CLASS (modem_sim_service_parent_class)->finalize (object);
}

/* ------------------------------------------------------------------------- */
/* ModemOface interface */

static char const *
modem_sim_service_property_mapper (char const *name)
{
  if (!strcmp (name, "SubscriberIdentity"))
    return "imsi";
  if (!strcmp(name, "Present"))
      return NULL;
  if (!strcmp (name, "CardIdentifier"))
    return NULL;
  if (!strcmp (name, "MobileCountryCode"))
    return NULL;
  if (!strcmp (name, "MobileNetworkCode"))
    return NULL;
  if (!strcmp (name, "SubscriberNumbers"))
    return NULL;
  if (!strcmp (name, "ServiceNumbers"))
    return NULL;
  if (!strcmp (name, "PinRequired"))
    return NULL;
  if (!strcmp (name, "LockedPins"))
    return NULL;
  if (!strcmp (name, "FixedDialing"))
    return NULL;
  if (!strcmp (name, "BarredDialing"))
    return NULL;
  return NULL;
}

static void
modem_sim_service_connect (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);

  modem_oface_connect_properties (_self, TRUE);
}

static void
modem_sim_service_connected (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);
}

static void
modem_sim_service_disconnect (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);

  modem_oface_disconnect_properties (_self);
}

static void
modem_sim_service_class_init (ModemSIMServiceClass *klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
  ModemOfaceClass *oface_class = MODEM_OFACE_CLASS (klass);

  DEBUG ("enter");

  object_class->get_property = modem_sim_service_get_property;
  object_class->set_property = modem_sim_service_set_property;
  object_class->constructed = modem_sim_service_constructed;
  object_class->dispose = modem_sim_service_dispose;
  object_class->finalize = modem_sim_service_finalize;

  oface_class->ofono_interface = MODEM_OFACE_SIM;
  oface_class->property_mapper = modem_sim_service_property_mapper;
  oface_class->connect = modem_sim_service_connect;
  oface_class->connected = modem_sim_service_connected;
  oface_class->disconnect = modem_sim_service_disconnect;

  /* Properties */
  g_object_class_install_property (object_class, PROP_STATUS,
      g_param_spec_uint ("state",
          "SIM Status",
          "Current state of Subscriber identity module.",
          MODEM_SIM_STATE_UNKNOWN,
          LAST_MODEM_SIM_STATE - 1,
          MODEM_SIM_STATE_UNKNOWN,
          G_PARAM_READWRITE |
          G_PARAM_STATIC_STRINGS));

  g_object_class_install_property (object_class, PROP_IMSI,
      g_param_spec_string ("imsi",
          "IMSI",
          "Internation Mobile Subscriber Identity",
          "", /* default value */
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
          G_PARAM_STATIC_STRINGS));

  signals[SIGNAL_STATUS] =
    g_signal_new ("state",
        G_OBJECT_CLASS_TYPE (klass),
        G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
        0,
        NULL, NULL,
        g_cclosure_marshal_VOID__UINT,
        G_TYPE_NONE, 1,
        G_TYPE_UINT);

  g_type_class_add_private (klass, sizeof (ModemSIMServicePrivate));

  modem_error_domain_prefix (0); /* Init errors */
}

ModemSIMState
modem_sim_get_state (ModemSIMService const *self)
{
  return MODEM_IS_SIM_SERVICE (self) ? self->priv->state : 0;
}

char const *
modem_sim_get_imsi (ModemSIMService const *self)
{
  return MODEM_IS_SIM_SERVICE (self) ? self->priv->imsi : NULL;
}