blob: d0824921bc33f67bc295d4c2f06149f98bba9eb6 [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>
Harald Welte68d85d52012-06-16 17:45:59 +080033#include <osmocom/gprs/gprs_msgb.h>
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +010034#include <openbsc/gsm_data.h>
35#include <openbsc/gsm_subscriber.h>
Harald Weltedc5062b2010-03-26 21:28:59 +080036#include <openbsc/debug.h>
Holger Freyther32636e82008-12-27 11:07:15 +000037
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +010038/* default categories */
Harald Weltedc5062b2010-03-26 21:28:59 +080039static const struct log_info_cat default_categories[] = {
40 [DRLL] = {
41 .name = "DRLL",
Harald Weltef171a6e2010-05-11 10:51:30 +020042 .description = "A-bis Radio Link Layer (RLL)",
Harald Weltedc5062b2010-03-26 21:28:59 +080043 .color = "\033[1;31m",
44 .enabled = 1, .loglevel = LOGL_NOTICE,
45 },
46 [DCC] = {
47 .name = "DCC",
Harald Weltef171a6e2010-05-11 10:51:30 +020048 .description = "Layer3 Call Control (CC)",
Harald Weltedc5062b2010-03-26 21:28:59 +080049 .color = "\033[1;32m",
50 .enabled = 1, .loglevel = LOGL_NOTICE,
51 },
52 [DMM] = {
53 .name = "DMM",
Harald Weltef171a6e2010-05-11 10:51:30 +020054 .description = "Layer3 Mobility Management (MM)",
Harald Weltedc5062b2010-03-26 21:28:59 +080055 .color = "\033[1;33m",
56 .enabled = 1, .loglevel = LOGL_NOTICE,
57 },
58 [DRR] = {
59 .name = "DRR",
Harald Weltef171a6e2010-05-11 10:51:30 +020060 .description = "Layer3 Radio Resource (RR)",
Harald Weltedc5062b2010-03-26 21:28:59 +080061 .color = "\033[1;34m",
62 .enabled = 1, .loglevel = LOGL_NOTICE,
63 },
64 [DRSL] = {
65 .name = "DRSL",
Harald Weltef171a6e2010-05-11 10:51:30 +020066 .description = "A-bis Radio Siganlling Link (RSL)",
Harald Weltedc5062b2010-03-26 21:28:59 +080067 .color = "\033[1;35m",
68 .enabled = 1, .loglevel = LOGL_NOTICE,
69 },
70 [DNM] = {
71 .name = "DNM",
Harald Weltef171a6e2010-05-11 10:51:30 +020072 .description = "A-bis Network Management / O&M (NM/OML)",
Harald Weltedc5062b2010-03-26 21:28:59 +080073 .color = "\033[1;36m",
74 .enabled = 1, .loglevel = LOGL_INFO,
75 },
76 [DMNCC] = {
77 .name = "DMNCC",
Harald Weltef171a6e2010-05-11 10:51:30 +020078 .description = "MNCC API for Call Control application",
Harald Weltedc5062b2010-03-26 21:28:59 +080079 .color = "\033[1;39m",
80 .enabled = 1, .loglevel = LOGL_NOTICE,
81 },
82 [DSMS] = {
83 .name = "DSMS",
Harald Weltef171a6e2010-05-11 10:51:30 +020084 .description = "Layer3 Short Message Service (SMS)",
Harald Weltedc5062b2010-03-26 21:28:59 +080085 .color = "\033[1;37m",
86 .enabled = 1, .loglevel = LOGL_NOTICE,
87 },
88 [DPAG] = {
89 .name = "DPAG",
Harald Weltef171a6e2010-05-11 10:51:30 +020090 .description = "Paging Subsystem",
Harald Weltedc5062b2010-03-26 21:28:59 +080091 .color = "\033[1;38m",
92 .enabled = 1, .loglevel = LOGL_NOTICE,
93 },
94 [DMEAS] = {
95 .name = "DMEAS",
Harald Weltef171a6e2010-05-11 10:51:30 +020096 .description = "Radio Measurement Processing",
Harald Weltedc5062b2010-03-26 21:28:59 +080097 .enabled = 0, .loglevel = LOGL_NOTICE,
98 },
Harald Weltedc5062b2010-03-26 21:28:59 +080099 [DSCCP] = {
100 .name = "DSCCP",
101 .description = "SCCP Protocol",
102 .enabled = 1, .loglevel = LOGL_NOTICE,
103 },
104 [DMSC] = {
105 .name = "DMSC",
106 .description = "Mobile Switching Center",
107 .enabled = 1, .loglevel = LOGL_NOTICE,
108 },
109 [DMGCP] = {
110 .name = "DMGCP",
111 .description = "Media Gateway Control Protocol",
112 .enabled = 1, .loglevel = LOGL_NOTICE,
113 },
114 [DHO] = {
115 .name = "DHO",
116 .description = "Hand-Over",
117 .enabled = 1, .loglevel = LOGL_NOTICE,
118 },
119 [DDB] = {
120 .name = "DDB",
Harald Weltef171a6e2010-05-11 10:51:30 +0200121 .description = "Database Layer",
Harald Weltedc5062b2010-03-26 21:28:59 +0800122 .enabled = 1, .loglevel = LOGL_NOTICE,
123 },
124 [DREF] = {
125 .name = "DREF",
126 .description = "Reference Counting",
127 .enabled = 0, .loglevel = LOGL_NOTICE,
128 },
Harald Welte2977d672010-03-28 17:44:55 +0800129 [DGPRS] = {
130 .name = "DGPRS",
131 .description = "GPRS Packet Service",
132 .enabled = 1, .loglevel = LOGL_DEBUG,
133 },
Harald Welte6b72cdf2010-05-11 05:54:22 +0200134 [DNS] = {
135 .name = "DNS",
Harald Weltef171a6e2010-05-11 10:51:30 +0200136 .description = "GPRS Network Service (NS)",
Harald Welteb2e49182010-05-13 19:47:01 +0200137 .enabled = 1, .loglevel = LOGL_INFO,
Harald Welte6b72cdf2010-05-11 05:54:22 +0200138 },
139 [DBSSGP] = {
140 .name = "DBSSGP",
Harald Weltef171a6e2010-05-11 10:51:30 +0200141 .description = "GPRS BSS Gateway Protocol (BSSGP)",
Harald Welte6b72cdf2010-05-11 05:54:22 +0200142 .enabled = 1, .loglevel = LOGL_DEBUG,
143 },
Harald Welteb2e49182010-05-13 19:47:01 +0200144 [DLLC] = {
145 .name = "DLLC",
146 .description = "GPRS Logical Link Control Protocol (LLC)",
147 .enabled = 1, .loglevel = LOGL_DEBUG,
148 },
149 [DSNDCP] = {
150 .name = "DSNDCP",
151 .description = "GPRS Sub-Network Dependent Control Protocol (SNDCP)",
152 .enabled = 1, .loglevel = LOGL_DEBUG,
153 },
Holger Hans Peter Freyther3d73e0d2010-06-15 19:27:25 +0800154 [DNAT] = {
155 .name = "DNAT",
156 .description = "GSM 08.08 NAT/Multipkexer",
157 .enabled = 1, .loglevel = LOGL_NOTICE,
158 },
Daniel Willmann1c33d4c2011-07-19 12:14:34 +0200159 [DCTRL] = {
160 .name = "DCTRL",
161 .description = "Control interface",
162 .enabled = 1, .loglevel = LOGL_NOTICE,
163 },
Harald Weltef1033cc2012-11-08 16:14:37 +0100164 [DSMPP] = {
165 .name = "DSMPP",
166 .description = "SMPP interface for external SMS apps",
167 .enabled = 1, .loglevel = LOGL_DEBUG,
168 },
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100169};
Holger Freyther32636e82008-12-27 11:07:15 +0000170
Harald Weltedc5062b2010-03-26 21:28:59 +0800171enum log_filter {
Harald Welte332442d2010-03-26 21:40:29 +0800172 _FLT_ALL = LOG_FILTER_ALL, /* libosmocore */
173 FLT_IMSI = 1,
Harald Welted9a55f62010-05-17 23:41:43 +0200174 FLT_NSVC = 2,
175 FLT_BVC = 3,
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100176};
177
Harald Weltedc5062b2010-03-26 21:28:59 +0800178static int filter_fn(const struct log_context *ctx,
179 struct log_target *tar)
180{
Harald Welte3bac9a82010-05-15 23:50:56 +0200181 struct gsm_subscriber *subscr = ctx->ctx[BSC_CTX_SUBSCR];
Harald Welte68d85d52012-06-16 17:45:59 +0800182 const struct gprs_nsvc *nsvc = ctx->ctx[GPRS_CTX_NSVC];
183 const struct gprs_nsvc *bvc = ctx->ctx[GPRS_CTX_BVC];
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100184
Harald Weltedc5062b2010-03-26 21:28:59 +0800185 if ((tar->filter_map & (1 << FLT_IMSI)) != 0
186 && subscr && strcmp(subscr->imsi, tar->filter_data[FLT_IMSI]) == 0)
187 return 1;
Holger Freytherd546e312008-12-27 12:03:07 +0000188
Harald Welte8be8c8f2010-05-15 23:52:02 +0200189 /* Filter on the NS Virtual Connection */
190 if ((tar->filter_map & (1 << FLT_NSVC)) != 0
191 && nsvc && (nsvc == tar->filter_data[FLT_NSVC]))
192 return 1;
193
Harald Welted9a55f62010-05-17 23:41:43 +0200194 /* Filter on the NS Virtual Connection */
195 if ((tar->filter_map & (1 << FLT_BVC)) != 0
196 && bvc && (bvc == tar->filter_data[FLT_BVC]))
197 return 1;
198
Harald Weltedc5062b2010-03-26 21:28:59 +0800199 return 0;
200}
201
202const struct log_info log_info = {
203 .filter_fn = filter_fn,
204 .cat = default_categories,
205 .num_cat = ARRAY_SIZE(default_categories),
Holger Freytherd546e312008-12-27 12:03:07 +0000206};
207
Harald Weltedc5062b2010-03-26 21:28:59 +0800208void log_set_imsi_filter(struct log_target *target, const char *imsi)
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100209{
210 if (imsi) {
Harald Weltedc5062b2010-03-26 21:28:59 +0800211 target->filter_map |= (1 << FLT_IMSI);
212 target->filter_data[FLT_IMSI] = talloc_strdup(target, imsi);
213 } else if (target->filter_data[FLT_IMSI]) {
214 target->filter_map &= ~(1 << FLT_IMSI);
215 talloc_free(target->filter_data[FLT_IMSI]);
216 target->filter_data[FLT_IMSI] = NULL;
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +0100217 }
218}