blob: c35eafabf343d8cd9827f7b33130e4a7d31e1e70 [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
Ivan Kluchnikov60437182012-05-24 22:07:15 +040049static int filter_fn(const struct log_context *ctx,
50 struct log_target *tar)
51{
Neels Hofmeyra01e2ee2017-02-23 18:10:13 +010052 const struct gprs_nsvc *nsvc = (const struct gprs_nsvc*)ctx->ctx[LOG_CTX_GB_NSVC];
53 const struct gprs_nsvc *bvc = (const struct gprs_nsvc*)ctx->ctx[LOG_CTX_GB_BVC];
Ivan Kluchnikov60437182012-05-24 22:07:15 +040054
Ivan Kluchnikov60437182012-05-24 22:07:15 +040055 /* Filter on the NS Virtual Connection */
Neels Hofmeyra01e2ee2017-02-23 18:10:13 +010056 if ((tar->filter_map & (1 << LOG_FLT_GB_NSVC)) != 0
57 && nsvc && (nsvc == tar->filter_data[LOG_FLT_GB_NSVC]))
Ivan Kluchnikov60437182012-05-24 22:07:15 +040058 return 1;
59
60 /* Filter on the BVC */
Neels Hofmeyra01e2ee2017-02-23 18:10:13 +010061 if ((tar->filter_map & (1 << LOG_FLT_GB_BVC)) != 0
62 && bvc && (bvc == tar->filter_data[LOG_FLT_GB_BVC]))
Ivan Kluchnikov60437182012-05-24 22:07:15 +040063 return 1;
64
65 return 0;
66}
67
68const struct log_info gprs_log_info = {
69 filter_fn,
70 (struct log_info_cat*)default_categories,
71 ARRAY_SIZE(default_categories),
72};