blob: 3d9b8163d3e51db91c56a4e42ebbf6b325bb860a [file] [log] [blame]
Ivan Kluchnikov60437182012-05-24 22:07:15 +04001/* gprs_debug.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#include <stdarg.h>
21#include <stdlib.h>
22#include <stdio.h>
23#include <string.h>
24#include <strings.h>
25#include <time.h>
26#include <errno.h>
27
28#include <osmocom/core/talloc.h>
29#include <osmocom/core/utils.h>
30#include <osmocom/core/logging.h>
Ivan Kluchnikov60437182012-05-24 22:07:15 +040031#include <gprs_debug.h>
32
33/* default categories */
34
35static const struct log_info_cat default_categories[] = {
Andreas Eversberg0e403092012-07-06 11:04:57 +020036 {"DCSN1", "\033[1;31m", "Concrete Syntax Notation One (CSN1)", LOGL_INFO, 0},
37 {"DL1IF", "\033[1;32m", "GPRS PCU L1 interface (L1IF)", LOGL_INFO, 1},
Andreas Eversbergd87b4682012-11-04 12:51:42 +010038 {"DRLCMAC", "\033[0;33m", "GPRS RLC/MAC layer (RLCMAC)", LOGL_NOTICE, 1},
39 {"DRLCMACDATA", "\033[0;33m", "GPRS RLC/MAC layer Data (RLCMAC)", LOGL_NOTICE, 1},
40 {"DRLCMACDL", "\033[1;33m", "GPRS RLC/MAC layer Downlink (RLCMAC)", LOGL_NOTICE, 1},
41 {"DRLCMACUL", "\033[1;36m", "GPRS RLC/MAC layer Uplink (RLCMAC)", LOGL_NOTICE, 1},
42 {"DRLCMACSCHED", "\033[0;36m", "GPRS RLC/MAC layer Scheduling (RLCMAC)", LOGL_NOTICE, 1},
Andreas Eversberg050ace22013-03-16 16:22:02 +010043 {"DRLCMACMEAS", "\033[1;31m", "GPRS RLC/MAC layer Measurements (RLCMAC)", LOGL_INFO, 1},
Jacob Erlbeck56af6d52015-08-17 14:06:21 +020044 {"DNS","\033[1;34m", "GPRS Network Service Protocol (NS)", LOGL_INFO , 1},
Andreas Eversbergd87b4682012-11-04 12:51:42 +010045 {"DBSSGP","\033[1;34m", "GPRS BSS Gateway Protocol (BSSGP)", LOGL_INFO , 1},
Andreas Eversberg5dac2f02012-06-27 15:52:04 +020046 {"DPCU", "\033[1;35m", "GPRS Packet Control Unit (PCU)", LOGL_NOTICE, 1},
Ivan Kluchnikov60437182012-05-24 22:07:15 +040047};
48
49enum {
50 _FLT_ALL = LOG_FILTER_ALL, /* libosmocore */
51 FLT_IMSI = 1,
52 FLT_NSVC = 2,
53 FLT_BVC = 3,
54};
55
56static int filter_fn(const struct log_context *ctx,
57 struct log_target *tar)
58{
Ivan Kluchnikov60437182012-05-24 22:07:15 +040059 const struct gprs_nsvc *nsvc = (const struct gprs_nsvc*)ctx->ctx[BSC_CTX_NSVC];
60 const struct gprs_nsvc *bvc = (const struct gprs_nsvc*)ctx->ctx[BSC_CTX_BVC];
61
Ivan Kluchnikov60437182012-05-24 22:07:15 +040062 /* Filter on the NS Virtual Connection */
63 if ((tar->filter_map & (1 << FLT_NSVC)) != 0
64 && nsvc && (nsvc == tar->filter_data[FLT_NSVC]))
65 return 1;
66
67 /* Filter on the BVC */
68 if ((tar->filter_map & (1 << FLT_BVC)) != 0
69 && bvc && (bvc == tar->filter_data[FLT_BVC]))
70 return 1;
71
72 return 0;
73}
74
75const struct log_info gprs_log_info = {
76 filter_fn,
77 (struct log_info_cat*)default_categories,
78 ARRAY_SIZE(default_categories),
79};