File: btsnooz_utils.cpp

package info (click to toggle)
android-framework-23 6.0.1%2Br72-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 233,196 kB
  • sloc: java: 1,707,033; xml: 247,323; cpp: 211,819; ansic: 2,748; python: 2,640; sh: 1,506; yacc: 343; lex: 214; ruby: 183; perl: 88; makefile: 63; sed: 19
file content (244 lines) | stat: -rw-r--r-- 6,441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/******************************************************************************
 *
 *  Copyright (C) 2015 Google, Inc.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at:
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 ******************************************************************************/

#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <string>
#include <string.h> // for memcpy
#include <vector>
#include <resolv.h>
#include <zlib.h>

extern "C" {
#include "btif/include/btif_debug_btsnoop.h"
#include "hci/include/bt_hci_bdroid.h"
#include "stack/include/bt_types.h"
#include "stack/include/hcidefs.h"
}

// Epoch in microseconds since 01/01/0000.
#define BTSNOOP_EPOCH_DELTA 0x00dcddb30f2f8000ULL

#define INITIAL_BUFFER_SIZE 131072
#define INFLATE_BUFFER  16384

#define LOG_PREFIX  "--- BEGIN:BTSNOOP_LOG_SUMMARY"
#define LOG_POSTFIX  "--- END:BTSNOOP_LOG_SUMMARY"

#define H4_DIRECTION_SENT  0
#define H4_DIRECTION_RECEIVED  1

static uint8_t packetTypeToFlags(const uint8_t type) {
  switch (type << 8) {
    case MSG_HC_TO_STACK_HCI_ERR:
    case MSG_HC_TO_STACK_HCI_ACL:
    case MSG_HC_TO_STACK_HCI_SCO:
    case MSG_HC_TO_STACK_HCI_EVT:
    case MSG_HC_TO_STACK_L2C_SEG_XMIT:
      return H4_DIRECTION_RECEIVED;

    case MSG_STACK_TO_HC_HCI_ACL:
    case MSG_STACK_TO_HC_HCI_SCO:
    case MSG_STACK_TO_HC_HCI_CMD:
      return H4_DIRECTION_SENT;

    default:
      break;
  }
  return 0;
}

static uint8_t packetTypeToHciType(const uint8_t type) {
  switch (type << 8 & 0xFF00) {
    case MSG_STACK_TO_HC_HCI_CMD:
      return HCIT_TYPE_COMMAND;

    case MSG_HC_TO_STACK_HCI_EVT:
      return HCIT_TYPE_EVENT;

    case MSG_STACK_TO_HC_HCI_ACL:
    case MSG_HC_TO_STACK_HCI_ACL:
      return HCIT_TYPE_ACL_DATA;

    case MSG_STACK_TO_HC_HCI_SCO:
    case MSG_HC_TO_STACK_HCI_SCO:
      return HCIT_TYPE_SCO_DATA;

    default:
      break;
  }
  return 0;
}

size_t writeBtSnoop(std::ostream &out, std::vector<uint8_t> &in) {
  if (in.size() < sizeof(btsnooz_preamble_t))
    return 0;

  // Get preamble

  uint8_t *p = in.data();
  btsnooz_preamble_t *preamble = reinterpret_cast<btsnooz_preamble_t*>(p);
  if (preamble->version != BTSNOOZ_CURRENT_VERSION)
    return 0;

  // Write header

  const uint8_t header[] = {
    0x62, 0x74, 0x73, 0x6e, 0x6f, 0x6f, 0x70, 0x00,
    0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0xea
  };

  out.write(reinterpret_cast<const char*>(header), sizeof(header));

  // Calculate first timestamp

  uint64_t first_ts = preamble->last_timestamp_ms + BTSNOOP_EPOCH_DELTA;
  size_t left = in.size() - sizeof(btsnooz_preamble_t);
  p = in.data() + sizeof(btsnooz_preamble_t);

  while (left > sizeof(btsnooz_header_t)) {
    btsnooz_header_t *p_hdr = reinterpret_cast<btsnooz_header_t*>(p);
    p += sizeof(btsnooz_header_t) + (p_hdr->length - 1);
    left -= sizeof(btsnooz_header_t) + (p_hdr->length - 1);

    first_ts -= p_hdr->delta_time_ms;
  }

  // Process packets

  size_t packets = 0;
  left = in.size() - sizeof(btsnooz_preamble_t);
  p = in.data() + sizeof(btsnooz_preamble_t);

  while (left > sizeof(btsnooz_header_t)) {
    btsnooz_header_t *p_hdr = reinterpret_cast<btsnooz_header_t*>(p);
    p += sizeof(btsnooz_header_t);
    left -= sizeof(btsnooz_header_t);

    const uint32_t h_length = htonl(p_hdr->length);
    out.write(reinterpret_cast<const char*>(&h_length), 4);
    out.write(reinterpret_cast<const char*>(&h_length), 4);

    const uint32_t h_flags = htonl(packetTypeToFlags(p_hdr->type));
    out.write(reinterpret_cast<const char*>(&h_flags), 4);

    const uint32_t h_dropped = 0;
    out.write(reinterpret_cast<const char*>(&h_dropped), 4);

    first_ts += p_hdr->delta_time_ms;
    const uint32_t h_time_hi = htonl(first_ts >> 32);
    const uint32_t h_time_lo = htonl(first_ts & 0xFFFFFFFF);
    out.write(reinterpret_cast<const char*>(&h_time_hi), 4);
    out.write(reinterpret_cast<const char*>(&h_time_lo), 4);

    const uint8_t type = packetTypeToHciType(p_hdr->type);
    out.write(reinterpret_cast<const char*>(&type), 1);

    out.write(reinterpret_cast<const char*>(p), p_hdr->length - 1);

    p += p_hdr->length - 1;
    left -= p_hdr->length - 1;

    ++packets;
  }

  return packets;
}

int readLog(std::istream &in, std::vector<char> &buffer) {
  buffer.reserve(INITIAL_BUFFER_SIZE);

  std::string line;

  const std::string log_prefix(LOG_PREFIX);
  const std::string log_postfix(LOG_POSTFIX);

  bool in_block = false;

  while (std::getline(in, line)) {
    // Ensure line endings aren't wonky...

    if (!line.empty() && line[line.size() - 1] == '\r')
      line.erase(line.end() - 1);

    // Detect block

    if (!in_block) {
      if (line.compare(0, log_prefix.length(), log_prefix) == 0)
        in_block = true;
      continue;
    }

    if (line.compare(0, log_postfix.length(), log_postfix) == 0)
      break;

    // Process data

    buffer.insert(buffer.end(), line.begin(), line.end());
  }

  if (buffer.size() != 0)
    buffer.push_back(0);

  return buffer.size();
}

int base64Decode(std::vector<char> &buffer) {
  char *p = buffer.data();
  return b64_pton(p, reinterpret_cast<uint8_t*>(p), buffer.size());
}

int inflate(std::vector<char> &in, std::vector<uint8_t> &out) {
  out.reserve(in.size());

  uint8_t buffer[INFLATE_BUFFER];
  z_stream zs;

  int ret = inflateInit(&zs);
  if (Z_OK != ret)
    return -1;

  // Copy preamble as-is

  for (size_t i = 0; i != sizeof(btsnooz_preamble_t); ++i) {
    out.push_back(in[i]);
  }

  // De-compress data

  zs.avail_in = in.size() - sizeof(btsnooz_preamble_t);;
  zs.next_in = reinterpret_cast<uint8_t*>(in.data()) + sizeof(btsnooz_preamble_t);

  do {
    zs.avail_out = INFLATE_BUFFER;
    zs.next_out = buffer;

    ret = inflate(&zs, Z_NO_FLUSH);

    size_t read = INFLATE_BUFFER - zs.avail_out;
    uint8_t *p = buffer;
    while (read--)
      out.push_back(*p++);
  } while (zs.avail_out == 0);

  inflateEnd(&zs);

  return out.size();
}