blob: c065f9003407480b1cf3e3d20a4f0662b1e5eb74 [file] [log] [blame]
Holger Freyther2b2d2e32009-02-14 22:51:00 +00001/* Generic signalling/notification infrastructure */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte595ad7b2009-02-16 22:05:44 +00003 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Freyther2b2d2e32009-02-14 22:51:00 +00004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#ifndef OPENBSC_SIGNAL_H
23#define OPENBSC_SIGNAL_H
24
Harald Welte595ad7b2009-02-16 22:05:44 +000025#include <stdlib.h>
26#include <errno.h>
27
Holger Freyther2b2d2e32009-02-14 22:51:00 +000028#include <openbsc/gsm_data.h>
29#include <openbsc/gsm_subscriber.h>
30
31
32/*
Harald Welte595ad7b2009-02-16 22:05:44 +000033 * Signalling subsystems
Holger Freyther2b2d2e32009-02-14 22:51:00 +000034 */
Harald Welte167df882009-02-17 14:35:45 +000035enum signal_subsystems {
36 SS_PAGING,
37 SS_SMS,
38 SS_ABISIP,
Harald Weltef9a8cc32009-05-01 15:39:49 +000039 SS_NM,
Holger Freyther7c19f742009-06-06 13:54:35 +000040 SS_LCHAN,
Harald Welte167df882009-02-17 14:35:45 +000041};
Holger Freyther2b2d2e32009-02-14 22:51:00 +000042
Harald Welte595ad7b2009-02-16 22:05:44 +000043/* SS_PAGING signals */
44enum signal_paging {
45 S_PAGING_COMPLETED,
Holger Freyther2b2d2e32009-02-14 22:51:00 +000046};
47
Harald Welte167df882009-02-17 14:35:45 +000048/* SS_ABISIP signals */
49enum signal_abisip {
50 S_ABISIP_BIND_ACK,
51};
52
Harald Weltef9a8cc32009-05-01 15:39:49 +000053/* SS_NM signals */
54enum signal_nm {
55 S_NM_SW_ACTIV_REP, /* GSM 12.21 software activated report */
56 S_NM_FAIL_REP, /* GSM 12.21 failure event report */
Holger Hans Peter Freyther500f3ca2009-06-10 10:48:14 +020057 S_NM_NACK, /* GSM 12.21 various NM_MT_*_NACK happened */
Harald Weltef9a8cc32009-05-01 15:39:49 +000058};
59
Holger Freyther7c19f742009-06-06 13:54:35 +000060/* SS_LCHAN signals */
61enum signal_lchan {
62 /*
63 * The lchan got freed with an use_count != 0 and error
64 * recovery needs to be carried out from within the
65 * signal handler.
66 */
67 S_LCHAN_UNEXPECTED_RELEASE,
68};
69
Harald Welte595ad7b2009-02-16 22:05:44 +000070typedef int signal_cbfn(unsigned int subsys, unsigned int signal,
71 void *handler_data, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000072
73struct paging_signal_data {
Holger Freyther2b2d2e32009-02-14 22:51:00 +000074 struct gsm_subscriber *subscr;
75 struct gsm_bts *bts;
76
77 /* NULL in case the paging didn't work */
78 struct gsm_lchan *lchan;
79};
80
Holger Freyther2b2d2e32009-02-14 22:51:00 +000081/* Management */
Harald Welte595ad7b2009-02-16 22:05:44 +000082int register_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
83void unregister_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000084
85/* Dispatch */
Harald Welte595ad7b2009-02-16 22:05:44 +000086void dispatch_signal(unsigned int subsys, unsigned int signal, void *signal_data);
Holger Freyther2b2d2e32009-02-14 22:51:00 +000087
88
89#endif