blob: 692508753673079dd22697776b9b64bf75e688a5 [file] [log] [blame]
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +02001/* The concept of a subscriber for the MSC, roughly HLR/VLR functionality */
Harald Welte59b04682009-06-10 05:40:52 +08002
3/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#include <unistd.h>
25#include <stdlib.h>
26#include <stdio.h>
27#include <string.h>
Holger Freyther8bdf7622009-04-18 13:48:55 +020028#include <assert.h>
Harald Welte59b04682009-06-10 05:40:52 +080029
30#include <openbsc/gsm_subscriber.h>
31#include <openbsc/debug.h>
Harald Welteb7799832009-07-29 23:14:15 +020032#include <openbsc/signal.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/db.h>
34
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020035extern struct llist_head *subscr_bsc_active_subscriber(void);
Harald Welte59b04682009-06-10 05:40:52 +080036
Harald Welte0747c6a2009-12-24 14:50:24 +010037char *subscr_name(struct gsm_subscriber *subscr)
38{
39 if (strlen(subscr->name))
40 return subscr->name;
41
42 return subscr->imsi;
43}
44
Harald Welte75350412009-07-23 18:46:00 +020045struct gsm_subscriber *subscr_get_by_tmsi(struct gsm_network *net,
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +020046 u_int32_t tmsi)
Harald Welte59b04682009-06-10 05:40:52 +080047{
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +020048 char tmsi_string[14];
Harald Welte59b04682009-06-10 05:40:52 +080049 struct gsm_subscriber *subscr;
50
51 /* we might have a record in memory already */
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020052 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +020053 if (tmsi == subscr->tmsi)
Harald Welte59b04682009-06-10 05:40:52 +080054 return subscr_get(subscr);
55 }
56
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +020057 sprintf(tmsi_string, "%u", tmsi);
58 return db_get_subscriber(net, GSM_SUBSCRIBER_TMSI, tmsi_string);
Harald Welte59b04682009-06-10 05:40:52 +080059}
60
Harald Welte75350412009-07-23 18:46:00 +020061struct gsm_subscriber *subscr_get_by_imsi(struct gsm_network *net,
62 const char *imsi)
Harald Welte59b04682009-06-10 05:40:52 +080063{
64 struct gsm_subscriber *subscr;
65
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020066 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte59b04682009-06-10 05:40:52 +080067 if (strcmp(subscr->imsi, imsi) == 0)
68 return subscr_get(subscr);
69 }
70
Harald Welte75350412009-07-23 18:46:00 +020071 return db_get_subscriber(net, GSM_SUBSCRIBER_IMSI, imsi);
Harald Welte59b04682009-06-10 05:40:52 +080072}
73
Harald Welte75350412009-07-23 18:46:00 +020074struct gsm_subscriber *subscr_get_by_extension(struct gsm_network *net,
75 const char *ext)
Harald Welte59b04682009-06-10 05:40:52 +080076{
77 struct gsm_subscriber *subscr;
78
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020079 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte59b04682009-06-10 05:40:52 +080080 if (strcmp(subscr->extension, ext) == 0)
81 return subscr_get(subscr);
82 }
83
Harald Welte75350412009-07-23 18:46:00 +020084 return db_get_subscriber(net, GSM_SUBSCRIBER_EXTENSION, ext);
Harald Welte59b04682009-06-10 05:40:52 +080085}
86
Harald Welte68b7df22009-08-08 16:03:15 +020087struct gsm_subscriber *subscr_get_by_id(struct gsm_network *net,
88 unsigned long long id)
89{
90 struct gsm_subscriber *subscr;
91 char buf[32];
92 sprintf(buf, "%llu", id);
93
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020094 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte68b7df22009-08-08 16:03:15 +020095 if (subscr->id == id)
96 return subscr_get(subscr);
97 }
98
99 return db_get_subscriber(net, GSM_SUBSCRIBER_ID, buf);
100}
101
102
Harald Welte59b04682009-06-10 05:40:52 +0800103int subscr_update(struct gsm_subscriber *s, struct gsm_bts *bts, int reason)
104{
105 /* FIXME: Migrate pending requests from one BSC to another */
106 switch (reason) {
107 case GSM_SUBSCRIBER_UPDATE_ATTACHED:
Harald Weltec2189a62009-07-23 18:56:43 +0200108 s->net = bts->network;
Harald Welte59b04682009-06-10 05:40:52 +0800109 /* Indicate "attached to LAC" */
110 s->lac = bts->location_area_code;
Harald Weltef00c2ac2009-12-24 13:48:14 +0100111 LOGP(DMM, LOGL_INFO, "Subscriber %s ATTACHED LAC=%u\n",
Harald Welte0747c6a2009-12-24 14:50:24 +0100112 subscr_name(s), s->lac);
Harald Welteb7799832009-07-29 23:14:15 +0200113 dispatch_signal(SS_SUBSCR, S_SUBSCR_ATTACHED, s);
Harald Welte59b04682009-06-10 05:40:52 +0800114 break;
115 case GSM_SUBSCRIBER_UPDATE_DETACHED:
116 /* Only detach if we are currently in this area */
117 if (bts->location_area_code == s->lac)
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +0200118 s->lac = GSM_LAC_RESERVED_DETACHED;
Harald Welte0747c6a2009-12-24 14:50:24 +0100119 LOGP(DMM, LOGL_INFO, "Subscriber %s DETACHED\n", subscr_name(s));
Harald Welteb7799832009-07-29 23:14:15 +0200120 dispatch_signal(SS_SUBSCR, S_SUBSCR_DETACHED, s);
Harald Welte59b04682009-06-10 05:40:52 +0800121 break;
122 default:
123 fprintf(stderr, "subscr_update with unknown reason: %d\n",
124 reason);
125 break;
126 };
127 return db_sync_subscriber(s);
128}
129
Harald Welte59b04682009-06-10 05:40:52 +0800130