blob: 479390c10f20626edb671aaac7945ea38194af44 [file] [log] [blame]
Harald Weltedc5062b2010-03-26 21:28:59 +08001/* OpenBSC Debugging/Logging support code */
2
3/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Holger Freytherd546e312008-12-27 12:03:07 +00004 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Freyther32636e82008-12-27 11:07:15 +00005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Holger Freyther32636e82008-12-27 11:07:15 +000010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Holger Freyther32636e82008-12-27 11:07:15 +000016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Freyther32636e82008-12-27 11:07:15 +000019 *
20 */
21
22#include <stdarg.h>
Holger Freytherd546e312008-12-27 12:03:07 +000023#include <stdlib.h>
Holger Freyther32636e82008-12-27 11:07:15 +000024#include <stdio.h>
25#include <string.h>
Holger Freytherd546e312008-12-27 12:03:07 +000026#include <strings.h>
Holger Freyther32636e82008-12-27 11:07:15 +000027#include <time.h>
Harald Welte (local)b79bdd92009-12-26 19:45:22 +010028#include <errno.h>
Holger Freyther32636e82008-12-27 11:07:15 +000029
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010030#include <osmocom/core/talloc.h>
31#include <osmocom/core/utils.h>
32#include <osmocom/core/logging.h>
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +010033#include <openbsc/gsm_data.h>
34#include <openbsc/gsm_subscriber.h>
Harald Weltedc5062b2010-03-26 21:28:59 +080035#include <openbsc/debug.h>
Holger Freyther32636e82008-12-27 11:07:15 +000036
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +010037/* default categories */
Harald Weltedc5062b2010-03-26 21:28:59 +080038static const struct log_info_cat default_categories[] = {
39 [DRLL] = {
40 .name = "DRLL",
Harald Weltef171a6e2010-05-11 10:51:30 +020041 .description = "A-bis Radio Link Layer (RLL)",
Harald Weltedc5062b2010-03-26 21:28:59 +080042 .color = "\033[1;31m",
43 .enabled = 1, .loglevel = LOGL_NOTICE,
44 },
45 [DCC] = {
46 .name = "DCC",
Harald Weltef171a6e2010-05-11 10:51:30 +020047 .description = "Layer3 Call Control (CC)",
Harald Weltedc5062b2010-03-26 21:28:59 +080048 .color = "\033[1;32m",
49 .enabled = 1, .loglevel = LOGL_NOTICE,
50 },
51 [DMM] = {
52 .name = "DMM",
Harald Weltef171a6e2010-05-11 10:51:30 +020053 .description = "Layer3 Mobility Management (MM)",
Harald Weltedc5062b2010-03-26 21:28:59 +080054 .color = "\033[1;33m",
55 .enabled = 1, .loglevel = LOGL_NOTICE,
56 },
57 [DRR] = {
58 .name = "DRR",
Harald Weltef171a6e2010-05-11 10:51:30 +020059 .description = "Layer3 Radio Resource (RR)",
Harald Weltedc5062b2010-03-26 21:28:59 +080060 .color = "\033[1;34m",
61 .enabled = 1, .loglevel = LOGL_NOTICE,
62 },
63 [DRSL] = {
64 .name = "DRSL",
Harald Weltef171a6e2010-05-11 10:51:30 +020065 .description = "A-bis Radio Siganlling Link (RSL)",
Harald Weltedc5062b2010-03-26 21:28:59 +080066 .color = "\033[1;35m",
67 .enabled = 1, .loglevel = LOGL_NOTICE,
68 },
69 [DNM] = {
70 .name = "DNM",
Harald Weltef171a6e2010-05-11 10:51:30 +020071 .description = "A-bis Network Management / O&M (NM/OML)",
Harald Weltedc5062b2010-03-26 21:28:59 +080072 .color = "\033[1;36m",
73 .enabled = 1, .loglevel = LOGL_INFO,
74 },
75 [DMNCC] = {
76 .name = "DMNCC",
Harald Weltef171a6e2010-05-11 10:51:30 +020077 .description = "MNCC API for Call Control application",
Harald Weltedc5062b2010-03-26 21:28:59 +080078 .color = "\033[1;39m",
79 .enabled = 1, .loglevel = LOGL_NOTICE,
80 },
81 [DSMS] = {
82 .name = "DSMS",
Harald Weltef171a6e2010-05-11 10:51:30 +020083 .description = "Layer3 Short Message Service (SMS)",
Harald Weltedc5062b2010-03-26 21:28:59 +080084 .color = "\033[1;37m",
85 .enabled = 1, .loglevel = LOGL_NOTICE,
86 },
87 [DPAG] = {
88 .name = "DPAG",
Harald Weltef171a6e2010-05-11 10:51:30 +020089 .description = "Paging Subsystem",
Harald Weltedc5062b2010-03-26 21:28:59 +080090 .color = "\033[1;38m",
91 .enabled = 1, .loglevel = LOGL_NOTICE,
92 },
93 [DMEAS] = {
94 .name = "DMEAS",
Harald Weltef171a6e2010-05-11 10:51:30 +020095 .description = "Radio Measurement Processing",
Harald Weltedc5062b2010-03-26 21:28:59 +080096 .enabled = 0, .loglevel = LOGL_NOTICE,
97 },
98 [DMI] = {
99 .name = "DMI",
Harald Weltef171a6e2010-05-11 10:51:30 +0200100 .description = "A-bis Input Driver for Signalling",
Harald Weltedc5062b2010-03-26 21:28:59 +0800101 .enabled = 0, .loglevel = LOGL_NOTICE,
102 },
103 [DMIB] = {
104 .name = "DMIB",
Harald Weltef171a6e2010-05-11 10:51:30 +0200105 .description = "A-bis Input Driver for B-Channels (voice)",
Harald Weltedc5062b2010-03-26 21:28:59 +0800106 .enabled = 0, .loglevel = LOGL_NOTICE,
107 },
108 [DMUX] = {
109 .name = "DMUX",
Harald Weltef171a6e2010-05-11 10:51:30 +0200110 .description = "A-bis B-Subchannel TRAU Frame Multiplex",
Harald Weltedc5062b2010-03-26 21:28:59 +0800111 .enabled = 1, .loglevel = LOGL_NOTICE,
112 },
113 [DINP] = {
114 .name = "DINP",
Harald Weltef171a6e2010-05-11 10:51:30 +0200115 .description = "A-bis Intput Subsystem",
Harald Weltedc5062b2010-03-26 21:28:59 +0800116 .enabled = 1, .loglevel = LOGL_NOTICE,
117 },
118 [DSCCP] = {
119 .name = "DSCCP",
120 .description = "SCCP Protocol",
121 .enabled = 1, .loglevel = LOGL_NOTICE,
122 },
123 [DMSC] = {
124 .name = "DMSC",
125 .description = "Mobile Switching Center",
126 .enabled = 1, .loglevel = LOGL_NOTICE,
127 },
128 [DMGCP] = {
129 .name = "DMGCP",
130 .description = "Media Gateway Control Protocol",
131 .enabled = 1, .loglevel = LOGL_NOTICE,
132 },
133 [DHO] = {
134 .name = "DHO",
135 .description = "Hand-Over",
136 .enabled = 1, .loglevel = LOGL_NOTICE,
137 },
138 [DDB] = {
139 .name = "DDB",
Harald Weltef171a6e2010-05-11 10:51:30 +0200140 .description = "Database Layer",
Harald Weltedc5062b2010-03-26 21:28:59 +0800141 .enabled = 1, .loglevel = LOGL_NOTICE,
142 },
143 [DREF] = {
144 .name = "DREF",
145 .description = "Reference Counting",
146 .enabled = 0, .loglevel = LOGL_NOTICE,
147 },
Harald Welte2977d672010-03-28 17:44:55 +0800148 [DGPRS] = {
149 .name = "DGPRS",
150 .description = "GPRS Packet Service",
151 .enabled = 1, .loglevel = LOGL_DEBUG,
152 },
Harald Welte6b72cdf2010-05-11 05:54:22 +0200153 [DNS] = {
154 .name = "DNS",
Harald Weltef171a6e2010-05-11 10:51:30 +0200155 .description = "GPRS Network Service (NS)",
Harald Welteb2e49182010-05-13 19:47:01 +0200156 .enabled = 1, .loglevel = LOGL_INFO,
Harald Welte6b72cdf2010-05-11 05:54:22 +0200157 },
158 [DBSSGP] = {
159 .name = "DBSSGP",
Harald Weltef171a6e2010-05-11 10:51:30 +0200160 .description = "GPRS BSS Gateway Protocol (BSSGP)",
Harald Welte6b72cdf2010-05-11 05:54:22 +0200161 .enabled = 1, .loglevel = LOGL_DEBUG,
162 },
Harald Welteb2e49182010-05-13 19:47:01 +0200163 [DLLC] = {
164 .name = "DLLC",
165 .description = "GPRS Logical Link Control Protocol (LLC)",
166 .enabled = 1, .loglevel = LOGL_DEBUG,
167 },
168 [DSNDCP] = {
169 .name = "DSNDCP",
170 .description = "GPRS Sub-Network Dependent Control Protocol (SNDCP)",
171 .enabled = 1, .loglevel = LOGL_DEBUG,
172 },
Holger Hans Peter Freyther3d73e0d2010-06-15 19:27:25 +0800173 [DNAT] = {
174 .name = "DNAT",
175 .description = "GSM 08.08 NAT/Multipkexer",
176 .enabled = 1, .loglevel = LOGL_NOTICE,
177 },
Daniel Willmann1c33d4c2011-07-19 12:14:34 +0200178 [DCTRL] = {
179 .name = "DCTRL",
180 .description = "Control interface",
181 .enabled = 1, .loglevel = LOGL_NOTICE,
182 },
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100183};
Holger Freyther32636e82008-12-27 11:07:15 +0000184
Harald Weltedc5062b2010-03-26 21:28:59 +0800185enum log_filter {
Harald Welte332442d2010-03-26 21:40:29 +0800186 _FLT_ALL = LOG_FILTER_ALL, /* libosmocore */
187 FLT_IMSI = 1,
Harald Welted9a55f62010-05-17 23:41:43 +0200188 FLT_NSVC = 2,
189 FLT_BVC = 3,
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100190};
191
Harald Weltedc5062b2010-03-26 21:28:59 +0800192static int filter_fn(const struct log_context *ctx,
193 struct log_target *tar)
194{
Harald Welte3bac9a82010-05-15 23:50:56 +0200195 struct gsm_subscriber *subscr = ctx->ctx[BSC_CTX_SUBSCR];
Harald Welte8be8c8f2010-05-15 23:52:02 +0200196 const struct gprs_nsvc *nsvc = ctx->ctx[BSC_CTX_NSVC];
Harald Welted9a55f62010-05-17 23:41:43 +0200197 const struct gprs_nsvc *bvc = ctx->ctx[BSC_CTX_BVC];
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100198
Harald Weltedc5062b2010-03-26 21:28:59 +0800199 if ((tar->filter_map & (1 << FLT_IMSI)) != 0
200 && subscr && strcmp(subscr->imsi, tar->filter_data[FLT_IMSI]) == 0)
201 return 1;
Holger Freytherd546e312008-12-27 12:03:07 +0000202
Harald Welte8be8c8f2010-05-15 23:52:02 +0200203 /* Filter on the NS Virtual Connection */
204 if ((tar->filter_map & (1 << FLT_NSVC)) != 0
205 && nsvc && (nsvc == tar->filter_data[FLT_NSVC]))
206 return 1;
207
Harald Welted9a55f62010-05-17 23:41:43 +0200208 /* Filter on the NS Virtual Connection */
209 if ((tar->filter_map & (1 << FLT_BVC)) != 0
210 && bvc && (bvc == tar->filter_data[FLT_BVC]))
211 return 1;
212
Harald Weltedc5062b2010-03-26 21:28:59 +0800213 return 0;
214}
215
216const struct log_info log_info = {
217 .filter_fn = filter_fn,
218 .cat = default_categories,
219 .num_cat = ARRAY_SIZE(default_categories),
Holger Freytherd546e312008-12-27 12:03:07 +0000220};
221
Harald Weltedc5062b2010-03-26 21:28:59 +0800222void log_set_imsi_filter(struct log_target *target, const char *imsi)
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100223{
224 if (imsi) {
Harald Weltedc5062b2010-03-26 21:28:59 +0800225 target->filter_map |= (1 << FLT_IMSI);
226 target->filter_data[FLT_IMSI] = talloc_strdup(target, imsi);
227 } else if (target->filter_data[FLT_IMSI]) {
228 target->filter_map &= ~(1 << FLT_IMSI);
229 talloc_free(target->filter_data[FLT_IMSI]);
230 target->filter_data[FLT_IMSI] = NULL;
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100231 }
232}
Harald Welte8be8c8f2010-05-15 23:52:02 +0200233
Holger Hans Peter Freytherd92f9af2010-05-23 20:59:55 +0800234void log_set_nsvc_filter(struct log_target *target, struct gprs_nsvc *nsvc)
Harald Welte8be8c8f2010-05-15 23:52:02 +0200235{
236 if (nsvc) {
237 target->filter_map |= (1 << FLT_NSVC);
238 target->filter_data[FLT_NSVC] = nsvc;
239 } else if (target->filter_data[FLT_NSVC]) {
240 target->filter_map = ~(1 << FLT_NSVC);
241 target->filter_data[FLT_NSVC] = NULL;
242 }
243}
Harald Welted9a55f62010-05-17 23:41:43 +0200244
Holger Hans Peter Freytherd92f9af2010-05-23 20:59:55 +0800245void log_set_bvc_filter(struct log_target *target, struct bssgp_bvc_ctx *bctx)
Harald Welted9a55f62010-05-17 23:41:43 +0200246{
247 if (bctx) {
248 target->filter_map |= (1 << FLT_BVC);
249 target->filter_data[FLT_BVC] = bctx;
250 } else if (target->filter_data[FLT_NSVC]) {
251 target->filter_map = ~(1 << FLT_BVC);
252 target->filter_data[FLT_BVC] = NULL;
253 }
254}