blob: 3965e9b90b7849e3a808ccd82ae4f0b9eb6d39c9 [file] [log] [blame]
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +08001/* main MSC management code... */
2
3/*
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +02004 * (C) 2010,2013 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freyther85531cc2010-10-06 20:37:09 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080021 *
22 */
23
Neels Hofmeyr90843962017-09-04 15:04:35 +020024#include <osmocom/msc/osmo_msc.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020025#include <osmocom/msc/debug.h>
26#include <osmocom/msc/transaction.h>
27#include <osmocom/msc/db.h>
28#include <osmocom/msc/vlr.h>
29#include <osmocom/msc/osmo_msc.h>
30#include <osmocom/msc/a_iface.h>
Max43b01b02017-09-15 11:22:30 +020031#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020032#include <osmocom/msc/gsm_04_11.h>
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080033
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020034#include "../../bscconfig.h"
35#ifdef BUILD_IU
36#include <osmocom/ranap/iu_client.h>
37#else
Neels Hofmeyr90843962017-09-04 15:04:35 +020038#include <osmocom/msc/iu_dummy.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020039#endif
40
Neels Hofmeyr55014d02018-03-22 16:43:40 +010041struct gsm_network *gsm_network_init(void *ctx, mncc_recv_cb_t mncc_recv)
42{
43 struct gsm_network *net;
44
45 net = talloc_zero(ctx, struct gsm_network);
46 if (!net)
47 return NULL;
48
49 net->plmn = (struct osmo_plmn_id){ .mcc=1, .mnc=1 };
50
51 /* Permit a compile-time default of A5/3 and A5/1 */
52 net->a5_encryption_mask = (1 << 3) | (1 << 1);
53
54 /* Use 30 min periodic update interval as sane default */
55 net->t3212 = 5;
56
57 net->paging_response_timer = MSC_PAGING_RESPONSE_TIMER_DEFAULT;
58
59 INIT_LLIST_HEAD(&net->trans_list);
60 INIT_LLIST_HEAD(&net->upqueue);
61 INIT_LLIST_HEAD(&net->subscr_conns);
62
63 /* init statistics */
64 net->msc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
65 if (!net->msc_ctrs) {
66 talloc_free(net);
67 return NULL;
68 }
69 net->active_calls = osmo_counter_alloc("msc.active_calls");
Vadim Yanitskiyad64e2a2018-06-26 18:27:25 +070070 net->active_nc_ss = osmo_counter_alloc("msc.active_nc_ss");
Neels Hofmeyr55014d02018-03-22 16:43:40 +010071
72 net->mncc_recv = mncc_recv;
73
74 INIT_LLIST_HEAD(&net->a.bscs);
75
76 return net;
77}
78
Harald Welte2483f1b2016-06-19 18:06:02 +020079/* Receive a SAPI-N-REJECT from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +020080void msc_sapi_n_reject(struct gsm_subscriber_connection *conn, int dlci)
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080081{
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080082 int sapi = dlci & 0x7;
83
84 if (sapi == UM_SAPI_SMS)
85 gsm411_sapi_n_reject(conn);
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080086}
87
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020088/* receive a Level 3 Complete message and return MSC_CONN_ACCEPT or
89 * MSC_CONN_REJECT */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020090int msc_compl_l3(struct gsm_subscriber_connection *conn,
91 struct msgb *msg, uint16_t chosen_channel)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080092{
Neels Hofmeyr6166f292017-11-22 14:33:12 +010093 msc_subscr_conn_get(conn, MSC_CONN_USE_COMPL_L3);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080094 gsm0408_dispatch(conn, msg);
95
Neels Hofmeyr6166f292017-11-22 14:33:12 +010096 msc_subscr_conn_put(conn, MSC_CONN_USE_COMPL_L3);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020097
98 /* Always return acceptance, because even if the conn was not accepted,
99 * we assumed ownership of it and the caller shall not interfere with
100 * that. We may even already have discarded the conn. */
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200101 return MSC_CONN_ACCEPT;
Harald Welte2483f1b2016-06-19 18:06:02 +0200102
103#if 0
Holger Hans Peter Freythere9f420d2016-02-10 10:42:20 +0100104 /*
105 * If this is a silent call we want the channel to remain open as long as
106 * possible and this is why we accept this connection regardless of any
107 * pending transaction or ongoing operation.
108 */
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100109 if (conn->silent_call)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200110 return MSC_CONN_ACCEPT;
111 if (conn->loc_operation || conn->sec_operation || conn->anch_operation)
112 return MSC_CONN_ACCEPT;
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100113 if (trans_has_conn(conn))
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200114 return MSC_CONN_ACCEPT;
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100115
116 LOGP(DRR, LOGL_INFO, "MSC Complete L3: Rejecting connection.\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200117 return MSC_CONN_REJECT;
Harald Welte2483f1b2016-06-19 18:06:02 +0200118#endif
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800119}
120
Harald Welte2483f1b2016-06-19 18:06:02 +0200121/* Receive a DTAP message from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200122void msc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800123{
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100124 msc_subscr_conn_get(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800125 gsm0408_dispatch(conn, msg);
Harald Welte2483f1b2016-06-19 18:06:02 +0200126
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100127 msc_subscr_conn_put(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800128}
129
Harald Welte2483f1b2016-06-19 18:06:02 +0200130/* Receive an ASSIGNMENT COMPLETE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200131void msc_assign_compl(struct gsm_subscriber_connection *conn,
132 uint8_t rr_cause, uint8_t chosen_channel,
133 uint8_t encr_alg_id, uint8_t speec)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100134{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100135 LOGP(DRR, LOGL_DEBUG, "MSC assign complete (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100136}
137
Harald Welte2483f1b2016-06-19 18:06:02 +0200138/* Receive an ASSIGNMENT FAILURE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200139void msc_assign_fail(struct gsm_subscriber_connection *conn,
140 uint8_t cause, uint8_t *rr_cause)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100141{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100142 LOGP(DRR, LOGL_DEBUG, "MSC assign failure (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100143}
144
Harald Welte2483f1b2016-06-19 18:06:02 +0200145/* Receive a CLASSMARK CHANGE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200146void msc_classmark_chg(struct gsm_subscriber_connection *conn,
147 const uint8_t *cm2, uint8_t cm2_len,
148 const uint8_t *cm3, uint8_t cm3_len)
Harald Welte95e862c2012-01-23 10:28:35 +0100149{
Neels Hofmeyr68cf9572018-09-18 15:52:58 +0200150 struct gsm_classmark *cm;
151
152 if (!conn->vsub)
153 cm = &conn->temporary_classmark;
154 else
155 cm = &conn->vsub->classmark;
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200156
Harald Welte2483f1b2016-06-19 18:06:02 +0200157 if (cm2 && cm2_len) {
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200158 if (cm2_len > sizeof(cm->classmark2)) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200159 LOGP(DRR, LOGL_NOTICE, "%s: classmark2 is %u bytes, truncating at %zu bytes\n",
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200160 vlr_subscr_name(conn->vsub), cm2_len, sizeof(cm->classmark2));
161 cm2_len = sizeof(cm->classmark2);
Harald Welte95e862c2012-01-23 10:28:35 +0100162 }
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200163 cm->classmark2_len = cm2_len;
164 memcpy(cm->classmark2, cm2, cm2_len);
Harald Welte2483f1b2016-06-19 18:06:02 +0200165 }
166 if (cm3 && cm3_len) {
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200167 if (cm3_len > sizeof(cm->classmark3)) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200168 LOGP(DRR, LOGL_NOTICE, "%s: classmark3 is %u bytes, truncating at %zu bytes\n",
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200169 vlr_subscr_name(conn->vsub), cm3_len, sizeof(cm->classmark3));
170 cm3_len = sizeof(cm->classmark3);
Harald Welte2483f1b2016-06-19 18:06:02 +0200171 }
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200172 cm->classmark3_len = cm3_len;
173 memcpy(cm->classmark3, cm3, cm3_len);
Harald Welte95e862c2012-01-23 10:28:35 +0100174 }
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200175
176 /* bump subscr conn FSM in case it is waiting for a Classmark Update */
177 if (conn->fi->state == SUBSCR_CONN_S_WAIT_CLASSMARK_UPDATE)
178 osmo_fsm_inst_dispatch(conn->fi, SUBSCR_CONN_E_CLASSMARK_UPDATE, NULL);
Harald Welte95e862c2012-01-23 10:28:35 +0100179}
180
Harald Welte2483f1b2016-06-19 18:06:02 +0200181/* Receive a CIPHERING MODE COMPLETE from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200182void msc_cipher_mode_compl(struct gsm_subscriber_connection *conn,
183 struct msgb *msg, uint8_t alg_id)
Harald Weltecf149ee2012-01-23 16:40:24 +0100184{
Harald Welte2483f1b2016-06-19 18:06:02 +0200185 struct vlr_ciph_result ciph_res = { .cause = VLR_CIPH_REJECT };
Harald Weltecf149ee2012-01-23 16:40:24 +0100186
Harald Welte2483f1b2016-06-19 18:06:02 +0200187 if (!conn) {
Harald Welte284c39a2018-01-24 22:38:06 +0100188 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete on NULL conn\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200189 return;
190 }
191 if (!conn->vsub) {
Harald Welte284c39a2018-01-24 22:38:06 +0100192 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete for NULL subscr\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200193 return;
Harald Weltecf149ee2012-01-23 16:40:24 +0100194 }
195
Harald Welte284c39a2018-01-24 22:38:06 +0100196 DEBUGP(DRR, "%s: CIPHERING MODE COMPLETE\n", vlr_subscr_name(conn->vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +0200197
Harald Welte284c39a2018-01-24 22:38:06 +0100198 if (msg) {
199 struct gsm48_hdr *gh = msgb_l3(msg);
200 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
201 struct tlv_parsed tp;
202 uint8_t mi_type;
Harald Welte2483f1b2016-06-19 18:06:02 +0200203
Harald Welte284c39a2018-01-24 22:38:06 +0100204 if (!gh) {
205 LOGP(DRR, LOGL_ERROR, "invalid: msgb without l3 header\n");
206 return;
207 }
208
209 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
210
211 /* bearer capability */
212 if (TLVP_PRESENT(&tp, GSM48_IE_MOBILE_ID)) {
213 mi_type = TLVP_VAL(&tp, GSM48_IE_MOBILE_ID)[0] & GSM_MI_TYPE_MASK;
214 if (mi_type == GSM_MI_TYPE_IMEISV
215 && TLVP_LEN(&tp, GSM48_IE_MOBILE_ID) > 0) {
Neels Hofmeyrfa10eda2018-03-13 01:22:01 +0100216 gsm48_mi_to_string(ciph_res.imeisv, sizeof(ciph_res.imeisv),
Harald Welte284c39a2018-01-24 22:38:06 +0100217 TLVP_VAL(&tp, GSM48_IE_MOBILE_ID),
218 TLVP_LEN(&tp, GSM48_IE_MOBILE_ID));
Harald Welte284c39a2018-01-24 22:38:06 +0100219 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200220 }
221 }
222
223 ciph_res.cause = VLR_CIPH_COMPL;
224 vlr_subscr_rx_ciph_res(conn->vsub, &ciph_res);
Harald Weltecf149ee2012-01-23 16:40:24 +0100225}
226
Harald Welte2483f1b2016-06-19 18:06:02 +0200227/* Receive a CLEAR REQUEST from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200228int msc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Harald Welte2483f1b2016-06-19 18:06:02 +0200229{
230 msc_subscr_conn_close(conn, cause);
231 return 1;
232}
233
Neels Hofmeyr99a8d232018-04-09 20:44:56 +0200234static const char *used_ref_counts_str(struct gsm_subscriber_connection *conn)
235{
236 static char buf[256];
237 int bit_nr;
238 char *pos = buf;
239 *pos = '\0';
240
241 if (conn->use_tokens < 0)
242 return "invalid";
243
244#define APPEND_STR(fmt, args...) do { \
245 int remain = sizeof(buf) - (pos - buf) - 1; \
246 int l = -1; \
247 if (remain > 0) \
248 l = snprintf(pos, remain, "%s" fmt, (pos == buf? "" : ","), ##args); \
249 if (l < 0 || l > remain) { \
250 buf[sizeof(buf) - 1] = '\0'; \
251 return buf; \
252 } \
253 pos += l; \
254 } while(0)
255
256 for (bit_nr = 0; (1 << bit_nr) <= conn->use_tokens; bit_nr++) {
257 if (conn->use_tokens & (1 << bit_nr)) {
258 APPEND_STR("%s", get_value_string(msc_subscr_conn_use_names, bit_nr));
259 }
260 }
261 return buf;
262#undef APPEND_STR
263}
264
Harald Welte2483f1b2016-06-19 18:06:02 +0200265/* increment the ref-count. Needs to be called by every user */
266struct gsm_subscriber_connection *
267_msc_subscr_conn_get(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100268 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200269 const char *file, int line)
270{
271 OSMO_ASSERT(conn);
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200272
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100273 if (balance_token != MSC_CONN_USE_UNTRACKED) {
274 uint32_t flag = 1 << balance_token;
275 OSMO_ASSERT(balance_token < 32);
276 if (conn->use_tokens & flag)
277 LOGPSRC(DREF, LOGL_ERROR, file, line,
278 "%s: MSC conn use error: using an already used token: %s\n",
279 vlr_subscr_name(conn->vsub),
280 msc_subscr_conn_use_name(balance_token));
281 conn->use_tokens |= flag;
282 }
283
Harald Welte2483f1b2016-06-19 18:06:02 +0200284 conn->use_count++;
285 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr99a8d232018-04-09 20:44:56 +0200286 "%s: MSC conn use + %s == %u (0x%x: %s)\n",
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100287 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
Neels Hofmeyr99a8d232018-04-09 20:44:56 +0200288 conn->use_count, conn->use_tokens, used_ref_counts_str(conn));
Harald Welte2483f1b2016-06-19 18:06:02 +0200289
290 return conn;
291}
292
293/* decrement the ref-count. Once it reaches zero, we release */
294void _msc_subscr_conn_put(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100295 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200296 const char *file, int line)
297{
298 OSMO_ASSERT(conn);
299
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100300 if (balance_token != MSC_CONN_USE_UNTRACKED) {
301 uint32_t flag = 1 << balance_token;
302 OSMO_ASSERT(balance_token < 32);
303 if (!(conn->use_tokens & flag))
304 LOGPSRC(DREF, LOGL_ERROR, file, line,
305 "%s: MSC conn use error: freeing an unused token: %s\n",
306 vlr_subscr_name(conn->vsub),
307 msc_subscr_conn_use_name(balance_token));
308 conn->use_tokens &= ~flag;
309 }
310
Harald Welte2483f1b2016-06-19 18:06:02 +0200311 if (conn->use_count == 0) {
312 LOGPSRC(DREF, LOGL_ERROR, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100313 "%s: MSC conn use - %s failed: is already 0\n",
314 vlr_subscr_name(conn->vsub),
315 msc_subscr_conn_use_name(balance_token));
Harald Welte2483f1b2016-06-19 18:06:02 +0200316 return;
317 }
318
319 conn->use_count--;
320 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr99a8d232018-04-09 20:44:56 +0200321 "%s: MSC conn use - %s == %u (0x%x: %s)\n",
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100322 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
Neels Hofmeyr99a8d232018-04-09 20:44:56 +0200323 conn->use_count, conn->use_tokens, used_ref_counts_str(conn));
Harald Welte2483f1b2016-06-19 18:06:02 +0200324
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200325 if (conn->use_count == 0)
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200326 osmo_fsm_inst_dispatch(conn->fi, SUBSCR_CONN_E_UNUSED, NULL);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200327}
328
Neels Hofmeyr4068ab22018-04-01 20:55:54 +0200329bool msc_subscr_conn_used_by(struct gsm_subscriber_connection *conn, enum msc_subscr_conn_use token)
330{
331 return conn && (conn->use_tokens & (1 << token));
332}
333
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100334const struct value_string msc_subscr_conn_use_names[] = {
335 {MSC_CONN_USE_UNTRACKED, "UNTRACKED"},
336 {MSC_CONN_USE_COMPL_L3, "compl_l3"},
337 {MSC_CONN_USE_DTAP, "dtap"},
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200338 {MSC_CONN_USE_AUTH_CIPH, "auth+ciph"},
339 {MSC_CONN_USE_CM_SERVICE, "cm_service"},
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100340 {MSC_CONN_USE_TRANS_CC, "trans_cc"},
341 {MSC_CONN_USE_TRANS_SMS, "trans_sms"},
Vadim Yanitskiy846efcb2018-06-10 22:22:49 +0700342 {MSC_CONN_USE_TRANS_NC_SS, "trans_nc_ss"},
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100343 {MSC_CONN_USE_SILENT_CALL, "silent_call"},
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200344 {MSC_CONN_USE_RELEASE, "release"},
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100345 {0, NULL},
346};
347
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200348void msc_stop_paging(struct vlr_subscr *vsub)
349{
350 DEBUGP(DPAG, "Paging can stop for %s\n", vlr_subscr_name(vsub));
351 /* tell BSCs and RNCs to stop paging? How? */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800352}