blob: 479e988620598c90f7d385e1d48a5e59f8b7f39a [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>
31#include <openbsc/gsm_data.h>
32#include <openbsc/gsm_subscriber.h>
33#include <gprs_debug.h>
34
35/* default categories */
36
37static const struct log_info_cat default_categories[] = {
38 {"DCSN1", "\033[1;31m", "Concrete Syntax Notation One (CSN1)", LOGL_NOTICE, 1},
39 {"DL1IF", "\033[1;32m", "GPRS PCU L1 interface (L1IF)", LOGL_NOTICE, 1},
40 {"DRLCMAC", "\033[1;33m", "GPRS RLC/MAC layer (RLCMAC)", LOGL_NOTICE, 1},
41 {"DRLCMACDATA", "\033[1;36m", "GPRS RLC/MAC layer Data (RLCMAC)", LOGL_NOTICE, 1},
42 {"DBSSGP", "\033[1;34m", "GPRS BSS Gateway Protocol (BSSGP)", LOGL_NOTICE , 1},
43 {"DPCU", "\033[1;35m", "GPRS Packet Control Unit (PCU)", LOGL_NOTICE, 1}
44};
45
46enum {
47 _FLT_ALL = LOG_FILTER_ALL, /* libosmocore */
48 FLT_IMSI = 1,
49 FLT_NSVC = 2,
50 FLT_BVC = 3,
51};
52
53static int filter_fn(const struct log_context *ctx,
54 struct log_target *tar)
55{
56 struct gsm_subscriber *subscr = (struct gsm_subscriber*)ctx->ctx[BSC_CTX_SUBSCR];
57 const struct gprs_nsvc *nsvc = (const struct gprs_nsvc*)ctx->ctx[BSC_CTX_NSVC];
58 const struct gprs_nsvc *bvc = (const struct gprs_nsvc*)ctx->ctx[BSC_CTX_BVC];
59
60 if ((tar->filter_map & (1 << FLT_IMSI)) != 0
61 && subscr && strcmp(subscr->imsi, (const char*)tar->filter_data[FLT_IMSI]) == 0)
62 return 1;
63
64 /* Filter on the NS Virtual Connection */
65 if ((tar->filter_map & (1 << FLT_NSVC)) != 0
66 && nsvc && (nsvc == tar->filter_data[FLT_NSVC]))
67 return 1;
68
69 /* Filter on the BVC */
70 if ((tar->filter_map & (1 << FLT_BVC)) != 0
71 && bvc && (bvc == tar->filter_data[FLT_BVC]))
72 return 1;
73
74 return 0;
75}
76
77const struct log_info gprs_log_info = {
78 filter_fn,
79 (struct log_info_cat*)default_categories,
80 ARRAY_SIZE(default_categories),
81};