blob: 0037e6d61fa3170f14d2e863012763e6cd76e175 [file] [log] [blame]
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04001/* gprs_rlcmac.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
Andreas Eversberg5dac2f02012-06-27 15:52:04 +02004 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
Holger Hans Peter Freytherd6bd91e2013-08-24 21:16:55 +02005 * Copyright (C) 2013 by Holger Hans Peter Freyther
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (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
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22#include <gprs_bssgp_pcu.h>
23#include <pcu_l1_if.h>
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040024#include <gprs_rlcmac.h>
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020025#include <bts.h>
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020026#include <encoding.h>
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +020027#include <tbf.h>
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040028
Andreas Eversberg53f47252012-07-15 07:10:10 +020029
Andreas Eversberg6681bb82012-07-25 08:48:44 +020030extern void *tall_pcu_ctx;
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040031
Andreas Eversbergb83e2a72012-10-07 15:26:00 +020032#ifdef DEBUG_DIAGRAM
33struct timeval diagram_time = {0,0};
34struct timeval diagram_last_tv = {0,0};
35
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020036void debug_diagram(BTS *bts, int diag, const char *format, ...)
Andreas Eversbergb83e2a72012-10-07 15:26:00 +020037{
38 va_list ap;
39 char debug[128];
40 char line[1024];
41 struct gprs_rlcmac_tbf *tbf, *tbf_a[16];
42 int max_diag = -1, i;
43 uint64_t diff = 0;
44
45 va_start(ap, format);
46 vsnprintf(debug, sizeof(debug) - 1, format, ap);
47 debug[19] = ' ';
48 debug[20] = '\0';
49 va_end(ap);
50
51 memset(tbf_a, 0, sizeof(tbf_a));
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020052 llist_for_each_entry(tbf, &bts->bts_data()->ul_tbfs, list) {
Andreas Eversbergb83e2a72012-10-07 15:26:00 +020053 if (tbf->diag < 16) {
54 if (tbf->diag > max_diag)
55 max_diag = tbf->diag;
56 tbf_a[tbf->diag] = tbf;
57 }
58 }
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020059 llist_for_each_entry(tbf, &bts->bts_data()->dl_tbfs, list) {
Andreas Eversbergb83e2a72012-10-07 15:26:00 +020060 if (tbf->diag < 16) {
61 if (tbf->diag > max_diag)
62 max_diag = tbf->diag;
63 tbf_a[tbf->diag] = tbf;
64 }
65 }
66
67 if (diagram_last_tv.tv_sec) {
68 diff = (uint64_t)(diagram_time.tv_sec -
69 diagram_last_tv.tv_sec) * 1000;
70 diff += diagram_time.tv_usec / 1000;
71 diff -= diagram_last_tv.tv_usec / 1000;
72 }
73 memcpy(&diagram_last_tv, &diagram_time, sizeof(struct timeval));
74
75 if (diff > 0) {
76 if (diff > 99999)
77 strcpy(line, " ... : ");
78 else
79 sprintf(line, "%3d.%03d: ", (int)(diff / 1000),
80 (int)(diff % 1000));
81 for (i = 0; i <= max_diag; i++) {
82 if (tbf_a[i] == NULL) {
83 strcat(line, " ");
84 continue;
85 }
86 if (tbf_a[i]->diag_new) {
87 strcat(line, " | ");
88 continue;
89 }
90 strcat(line, " ");
91 }
92 puts(line);
93 }
94 strcpy(line, " : ");
95 for (i = 0; i <= max_diag; i++) {
96 if (tbf_a[i] == NULL) {
97 strcat(line, " ");
98 continue;
99 }
100 if (tbf_a[i]->diag != diag) {
101 strcat(line, " | ");
102 continue;
103 }
104 if (strlen(debug) < 19) {
105 strcat(line, " ");
106 memcpy(line + strlen(line) - 11 - strlen(debug) / 2,
107 debug, strlen(debug));
108 } else
109 strcat(line, debug);
110 tbf_a[i]->diag_new = 1;
111 }
112 puts(line);
113}
114#endif
115
Andreas Eversberg8c3680d2012-10-08 12:30:56 +0200116int gprs_rlcmac_paging_request(uint8_t *ptmsi, uint16_t ptmsi_len,
117 const char *imsi)
118{
119 LOGP(DRLCMAC, LOGL_NOTICE, "TX: [PCU -> BTS] Paging Request (CCCH)\n");
120 bitvec *paging_request = bitvec_alloc(23);
121 bitvec_unhex(paging_request, "2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b");
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +0200122 int plen = Encoding::write_paging_request(paging_request, ptmsi, ptmsi_len);
Andreas Eversberg8c3680d2012-10-08 12:30:56 +0200123 pcu_l1if_tx_pch(paging_request, plen, (char *)imsi);
124 bitvec_free(paging_request);
125
126 return 0;
127}
Andreas Eversberga004e6a2013-05-13 16:45:21 +0200128
129