blob: 4227c6dc1bc64532261cf9db0d5831cc17edbb0a [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* Generic signalling/notification infrastructure */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <openbsc/signal.h>
22#include <stdlib.h>
23#include <string.h>
24
25
26static LLIST_HEAD(signal_handler_list);
27
28struct signal_handler {
29 struct llist_head entry;
30 unsigned int subsys;
31 signal_cbfn *cbfn;
32 void *data;
33};
34
35
36int register_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data)
37{
38 struct signal_handler *sig_data = malloc(sizeof(*sig_data));
39
40 if (!sig_data)
41 return -ENOMEM;
42
43 memset(sig_data, 0, sizeof(*sig_data));
44
45 sig_data->subsys = subsys;
46 sig_data->data = data;
47 sig_data->cbfn = cbfn;
48
49 /* FIXME: check if we already have a handler for this subsys/cbfn/data */
50
51 llist_add_tail(&sig_data->entry, &signal_handler_list);
52
53 return 0;
54}
55
56void unregister_signal_handler(unsigned int subsys, signal_cbfn *cbfn, void *data)
57{
58 struct signal_handler *handler;
59
60 llist_for_each_entry(handler, &signal_handler_list, entry) {
61 if (handler->cbfn == cbfn && handler->data == data
62 && subsys == handler->subsys) {
63 llist_del(&handler->entry);
64 free(handler);
65 break;
66 }
67 }
68}
69
70
71void dispatch_signal(unsigned int subsys, unsigned int signal, void *signal_data)
72{
73 struct signal_handler *handler;
74
75 llist_for_each_entry(handler, &signal_handler_list, entry) {
76 if (handler->subsys != subsys)
77 continue;
78 (*handler->cbfn)(subsys, signal, handler->data, signal_data);
79 }
80}