blob: 3a81793356c13aa0cdfe1490093526025eb6c85c [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* Dummy implementation of a subscriber database, roghly HLR/VLR functionality */
2
3/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
Holger Freyther12aa50d2009-01-01 18:02:05 +00004 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
Harald Welte52b1f982008-12-23 20:25:15 +00006 * 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
Harald Welte75a983f2008-12-27 21:34:06 +000024#include <unistd.h>
25#include <stdlib.h>
26#include <stdio.h>
27#include <string.h>
Harald Welte52b1f982008-12-23 20:25:15 +000028
Harald Welte8470bf22008-12-25 23:28:35 +000029#include <openbsc/gsm_subscriber.h>
Holger Freyther04866d42009-03-31 04:35:19 +020030#include <openbsc/paging.h>
Holger Freyther3e0ef7c2009-06-02 02:54:48 +000031#include <openbsc/debug.h>
Harald Welte75a983f2008-12-27 21:34:06 +000032#include <openbsc/db.h>
Harald Welte52b1f982008-12-23 20:25:15 +000033
Holger Freyther12aa50d2009-01-01 18:02:05 +000034
35LLIST_HEAD(active_subscribers);
36
Harald Welte75a983f2008-12-27 21:34:06 +000037struct gsm_subscriber *subscr_alloc(void)
Harald Welte52b1f982008-12-23 20:25:15 +000038{
Harald Welte75a983f2008-12-27 21:34:06 +000039 struct gsm_subscriber *s;
40
41 s = malloc(sizeof(struct gsm_subscriber));
42 if (!s)
43 return NULL;
44
45 memset(s, 0, sizeof(*s));
Holger Freyther12aa50d2009-01-01 18:02:05 +000046 llist_add_tail(&s->entry, &active_subscribers);
47 s->use_count = 1;
Harald Welte75a983f2008-12-27 21:34:06 +000048
Holger Freyther04866d42009-03-31 04:35:19 +020049 INIT_LLIST_HEAD(&s->requests);
50
Harald Welte75a983f2008-12-27 21:34:06 +000051 return s;
Harald Welte52b1f982008-12-23 20:25:15 +000052}
Harald Welte75a983f2008-12-27 21:34:06 +000053
Holger Freyther12aa50d2009-01-01 18:02:05 +000054static void subscr_free(struct gsm_subscriber *subscr)
Harald Welte52b1f982008-12-23 20:25:15 +000055{
Holger Freyther12aa50d2009-01-01 18:02:05 +000056 llist_del(&subscr->entry);
Harald Welte75a983f2008-12-27 21:34:06 +000057 free(subscr);
58}
59
Holger Freythera471a412009-01-04 03:47:05 +000060struct gsm_subscriber *subscr_get_by_tmsi(const char *tmsi)
Harald Welte75a983f2008-12-27 21:34:06 +000061{
Holger Freyther12aa50d2009-01-01 18:02:05 +000062 struct gsm_subscriber *subscr;
Harald Welte75a983f2008-12-27 21:34:06 +000063
Holger Freyther12aa50d2009-01-01 18:02:05 +000064 /* we might have a record in memory already */
65 llist_for_each_entry(subscr, &active_subscribers, entry) {
66 if (strcmp(subscr->tmsi, tmsi) == 0)
67 return subscr_get(subscr);
Harald Welte75a983f2008-12-27 21:34:06 +000068 }
69
Holger Freyther12aa50d2009-01-01 18:02:05 +000070 return db_get_subscriber(GSM_SUBSCRIBER_TMSI, tmsi);
Harald Welte75a983f2008-12-27 21:34:06 +000071}
72
Holger Freythera471a412009-01-04 03:47:05 +000073struct gsm_subscriber *subscr_get_by_imsi(const char *imsi)
Harald Welte75a983f2008-12-27 21:34:06 +000074{
Holger Freyther12aa50d2009-01-01 18:02:05 +000075 struct gsm_subscriber *subscr;
Harald Welte75a983f2008-12-27 21:34:06 +000076
Holger Freyther12aa50d2009-01-01 18:02:05 +000077 llist_for_each_entry(subscr, &active_subscribers, entry) {
78 if (strcmp(subscr->imsi, imsi) == 0)
79 return subscr_get(subscr);
Harald Welte75a983f2008-12-27 21:34:06 +000080 }
81
Holger Freyther12aa50d2009-01-01 18:02:05 +000082 return db_get_subscriber(GSM_SUBSCRIBER_IMSI, imsi);
Harald Welte52b1f982008-12-23 20:25:15 +000083}
84
Holger Freyther9c564b82009-02-09 23:39:20 +000085struct gsm_subscriber *subscr_get_by_extension(const char *ext)
86{
87 struct gsm_subscriber *subscr;
88
89 llist_for_each_entry(subscr, &active_subscribers, entry) {
90 if (strcmp(subscr->extension, ext) == 0)
91 return subscr_get(subscr);
92 }
93
94 return db_get_subscriber(GSM_SUBSCRIBER_EXTENSION, ext);
95}
96
Holger Freyther4a49e772009-04-12 05:37:29 +000097int subscr_update(struct gsm_subscriber *s, struct gsm_bts *bts, int reason)
Harald Welte52b1f982008-12-23 20:25:15 +000098{
Holger Freyther4a49e772009-04-12 05:37:29 +000099 /* FIXME: Migrate pending requests from one BSC to another */
100 switch (reason) {
101 case GSM_SUBSCRIBER_UPDATE_ATTACHED:
Holger Freyther6d5200b2009-06-02 02:54:38 +0000102 /* Indicate "attached to LAC" */
103 s->lac = bts->location_area_code;
Holger Freyther4a49e772009-04-12 05:37:29 +0000104 break;
105 case GSM_SUBSCRIBER_UPDATE_DETACHED:
Holger Freytherc3d4b2d2009-06-04 14:27:39 +0000106 /* Only detach if we are currently in this area */
107 if (bts->location_area_code == s->lac)
Holger Freyther6d5200b2009-06-02 02:54:38 +0000108 s->lac = 0;
Holger Freyther6d5200b2009-06-02 02:54:38 +0000109
Holger Freyther4a49e772009-04-12 05:37:29 +0000110 break;
111 default:
112 fprintf(stderr, "subscr_update with unknown reason: %d\n",
113 reason);
114 break;
115 };
Holger Freyther12aa50d2009-01-01 18:02:05 +0000116 return db_sync_subscriber(s);
117}
118
119struct gsm_subscriber *subscr_get(struct gsm_subscriber *subscr)
120{
121 subscr->use_count++;
Holger Freyther3e0ef7c2009-06-02 02:54:48 +0000122 DEBUGP(DCC, "subscr %s usage increases usage to: %d\n",
123 subscr->extension, subscr->use_count);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000124 return subscr;
125}
126
127struct gsm_subscriber *subscr_put(struct gsm_subscriber *subscr)
128{
Holger Freyther3e0ef7c2009-06-02 02:54:48 +0000129 subscr->use_count--;
130 DEBUGP(DCC, "subscr %s usage decreased usage to: %d\n",
131 subscr->extension, subscr->use_count);
132 if (subscr->use_count <= 0)
Holger Freyther12aa50d2009-01-01 18:02:05 +0000133 subscr_free(subscr);
134 return NULL;
Harald Welte52b1f982008-12-23 20:25:15 +0000135}
Holger Freythera1f92f02009-04-12 05:37:52 +0000136
Holger Freyther04866d42009-03-31 04:35:19 +0200137void subscr_get_channel(struct gsm_subscriber *subscr,
138 struct gsm_network *network, int type,
139 gsm_cbfn *cbfn, void *param)
140{
141 paging_request(network, subscr, type, cbfn, param);
142}
143
Holger Freythera1f92f02009-04-12 05:37:52 +0000144void subscr_put_channel(struct gsm_lchan *lchan)
145{
146 /*
147 * FIXME: Continue with other requests now... by checking
148 * the gsm_subscriber inside the gsm_lchan. Drop the ref count
149 * of the lchan after having asked the next requestee to handle
150 * the channel.
151 */
152 put_lchan(lchan);
153}
Holger Freyther04866d42009-03-31 04:35:19 +0200154