3 * File format support for Rabbit Labs CAM Inspector files
4 * Copyright (c) 2013 by Martin Kaiser <martin@kaiser.cx>
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
14 /* CAM Inspector is a commercial log tool for DVB-CI
15 it stores recorded packets between a CI module and a DVB receiver,
16 using a proprietary file format
18 a CAM Inspector file consists of 16bit blocks
19 the first byte contains payload data,
20 the second byte contains a "transaction type"
22 we currently support the following transaction types
24 0x20 == data transfer from CI module to host
25 0x22 == host reads the lower byte of the size register
26 0x23 == host reads the higher byte of the size register
27 0x2A == host writes the lower byte of the size register
28 0x2B == host writes the higher byte of the size register
29 0x28 == data transfer from host to CI module
31 using these transaction types, we can identify and assemble data transfers
32 from the host to the CAM and vice versa
34 a host->module data transfer will use the following transactions
35 one 0x2A and one 0x2B transaction to write the 16bit size
36 <size> 0x28 transactions to transfer one byte at a time
37 this will be assembled into one packet
39 the module->host transfer is similar
41 a CAM Inspector file uses a 44-bit time counter to keep track of the
42 time. the counter is in units of 1us. a timestamp block in the file
43 updates a part of the global time counter. a timestamp contains a 2-bit
44 relative position within the time counter and an 11-bit value for
48 when we run into an error while assembling a data transfer, the
49 primary goal is to recover so that we can handle the next transfer
50 correctly (all files I used for testing contained errors where
51 apparently the logging hardware missed some bytes)
60 #include "file_wrappers.h"
63 #define TRANS_CAM_HOST 0x20
64 #define TRANS_READ_SIZE_LOW 0x22
65 #define TRANS_READ_SIZE_HIGH 0x23
66 #define TRANS_HOST_CAM 0x28
67 #define TRANS_WRITE_SIZE_LOW 0x2A
68 #define TRANS_WRITE_SIZE_HIGH 0x2B
70 #define IS_TRANS_SIZE(x) \
71 ((x)==TRANS_WRITE_SIZE_LOW || (x)==TRANS_WRITE_SIZE_HIGH || \
72 (x)==TRANS_READ_SIZE_LOW || (x)==TRANS_READ_SIZE_HIGH)
74 /* a block contains a timestamp if the upper three bits are 0 */
75 #define IS_TIMESTAMP(x) (((x) & 0xE0) == 0x00)
77 /* a timestamp consists of a 2-bit position, followed by an 11-bit value. */
78 #define TS_VALUE_SHIFT 11
79 #define TS_POS_MASK (0x3 << TS_VALUE_SHIFT)
80 #define TS_VALUE_MASK (UINT64_C((1 << TS_VALUE_SHIFT) - 1))
89 #define RESET_STAT_VALS \
91 *dat_trans_type = 0x00; \
93 size_stat = SIZE_HAVE_NONE; \
96 #define SIZE_ADD_LOW \
97 { size_stat = (size_stat==SIZE_HAVE_HIGH ? SIZE_HAVE_ALL : SIZE_HAVE_LOW); }
99 #define SIZE_ADD_HIGH \
100 { size_stat = (size_stat==SIZE_HAVE_LOW ? SIZE_HAVE_ALL : SIZE_HAVE_HIGH); }
102 /* PCAP DVB-CI pseudo-header, see https://www.kaiser.cx/pcap-dvbci.html */
103 #define DVB_CI_PSEUDO_HDR_VER 0
104 #define DVB_CI_PSEUDO_HDR_LEN 4
105 #define DVB_CI_PSEUDO_HDR_CAM_TO_HOST 0xFF
106 #define DVB_CI_PSEUDO_HDR_HOST_TO_CAM 0xFE
108 /* Maximum number of bytes to read before making a heuristic decision
109 * of whether this is our file type or not. Arbitrary. */
110 #define CAMINS_BYTES_TO_CHECK 0x3FFFFFFFU
112 static int camins_file_type_subtype
= -1;
114 void register_camins(void);
116 /* Detect a camins file by looking at the blocks that access the 16bit
117 size register. The matching blocks to access the upper and lower 8bit
118 must be no further than 5 blocks apart.
119 A file may have errors that affect the size blocks. Therefore, we
120 read CAMINS_BYTES_TO_CHECK bytes and require that we have many more
121 valid pairs than errors. */
122 static wtap_open_return_val
detect_camins_file(FILE_T fh
)
127 uint8_t search_block
= 0;
128 uint8_t gap_count
= 0;
129 uint32_t valid_pairs
= 0, invalid_pairs
= 0;
130 uint64_t read_bytes
= 0;
132 while (wtap_read_bytes(fh
, block
, sizeof(block
), &err
, &err_info
)) {
133 if (search_block
!= 0) {
134 /* We're searching for a matching block to complete the pair. */
136 if (block
[1] == search_block
) {
142 /* We didn't find it. */
145 /* Give up the search, we have no pair. */
152 /* We're not searching for a matching block at the moment.
153 If we see a size read/write block of one type, the matching
154 block is the other type and we can start searching. */
156 if (block
[1] == TRANS_READ_SIZE_LOW
) {
157 search_block
= TRANS_READ_SIZE_HIGH
;
160 else if (block
[1] == TRANS_READ_SIZE_HIGH
) {
161 search_block
= TRANS_READ_SIZE_LOW
;
164 else if (block
[1] == TRANS_WRITE_SIZE_LOW
) {
165 search_block
= TRANS_WRITE_SIZE_HIGH
;
168 else if (block
[1] == TRANS_WRITE_SIZE_HIGH
) {
169 search_block
= TRANS_WRITE_SIZE_LOW
;
173 read_bytes
+= sizeof(block
);
174 if (read_bytes
> CAMINS_BYTES_TO_CHECK
) {
180 if ((err
!= 0) && (err
!= WTAP_ERR_SHORT_READ
)) {
181 /* A real read error. */
182 return WTAP_OPEN_ERROR
;
185 /* For valid_pairs == invalid_pairs == 0, this isn't a camins file.
186 Don't change > into >= */
187 if (valid_pairs
> 10 * invalid_pairs
)
188 return WTAP_OPEN_MINE
;
190 return WTAP_OPEN_NOT_MINE
;
194 /* update the current time counter with infos from a timestamp block */
195 static void process_timestamp(uint16_t timestamp
, uint64_t *time_us
)
203 val
= timestamp
& TS_VALUE_MASK
;
204 pos
= (timestamp
& TS_POS_MASK
) >> TS_VALUE_SHIFT
;
205 shift
= TS_VALUE_SHIFT
* pos
;
207 *time_us
&= ~(TS_VALUE_MASK
<< shift
);
208 *time_us
|= (val
<< shift
);
212 /* find the transaction type for the data bytes of the next packet
213 and the number of data bytes in that packet
214 the fd is moved such that it can be used in a subsequent call
216 if requested by the caller, we increment the time counter as we
217 walk through the file */
219 find_next_pkt_info(FILE_T fh
,
220 uint8_t *dat_trans_type
, /* transaction type used for the data bytes */
221 uint16_t *dat_len
, /* the number of data bytes in the packet */
223 int *err
, char **err_info
)
226 size_read_t size_stat
;
228 if (!dat_trans_type
|| !dat_len
)
234 if (!wtap_read_bytes_or_eof(fh
, block
, sizeof(block
), err
, err_info
)) {
239 /* our strategy is to continue reading until we have a high and a
240 low size byte for the same direction, duplicates or spurious data
244 case TRANS_READ_SIZE_LOW
:
245 if (*dat_trans_type
!= TRANS_CAM_HOST
)
247 *dat_trans_type
= TRANS_CAM_HOST
;
248 *dat_len
|= block
[0];
251 case TRANS_READ_SIZE_HIGH
:
252 if (*dat_trans_type
!= TRANS_CAM_HOST
)
254 *dat_trans_type
= TRANS_CAM_HOST
;
255 *dat_len
|= (block
[0] << 8);
258 case TRANS_WRITE_SIZE_LOW
:
259 if (*dat_trans_type
!= TRANS_HOST_CAM
)
261 *dat_trans_type
= TRANS_HOST_CAM
;
262 *dat_len
|= block
[0];
265 case TRANS_WRITE_SIZE_HIGH
:
266 if (*dat_trans_type
!= TRANS_HOST_CAM
)
268 *dat_trans_type
= TRANS_HOST_CAM
;
269 *dat_len
|= (block
[0] << 8);
273 if (IS_TIMESTAMP(block
[1]))
274 process_timestamp(pletoh16(block
), time_us
);
277 } while (size_stat
!= SIZE_HAVE_ALL
);
283 /* buffer allocated by the caller, must be long enough to hold
284 dat_len bytes, ... */
286 read_packet_data(FILE_T fh
, uint8_t dat_trans_type
, uint8_t *buf
, uint16_t dat_len
,
287 uint64_t *time_us
, int *err
, char **err_info
)
291 uint16_t bytes_count
= 0;
296 /* we're not checking for end-of-file here, we read as many bytes as
297 we can get (up to dat_len) and return those
298 end-of-file will be detected when we search for the next packet */
301 while (bytes_count
< dat_len
) {
302 if (!wtap_read_bytes_or_eof(fh
, block
, sizeof(block
), err
, err_info
))
305 if (block
[1] == dat_trans_type
) {
309 else if (IS_TIMESTAMP(block
[1])) {
310 process_timestamp(pletoh16(block
), time_us
);
312 else if (IS_TRANS_SIZE(block
[1])) {
313 /* go back before the size transaction block
314 the next packet should be able to pick up this block */
315 if (-1 == file_seek(fh
, -(int64_t)sizeof(block
), SEEK_CUR
, err
))
325 /* create a DVB-CI pseudo header
326 return its length or -1 for error */
328 create_pseudo_hdr(uint8_t *buf
, uint8_t dat_trans_type
, uint16_t dat_len
,
331 buf
[0] = DVB_CI_PSEUDO_HDR_VER
;
333 if (dat_trans_type
==TRANS_CAM_HOST
)
334 buf
[1] = DVB_CI_PSEUDO_HDR_CAM_TO_HOST
;
335 else if (dat_trans_type
==TRANS_HOST_CAM
)
336 buf
[1] = DVB_CI_PSEUDO_HDR_HOST_TO_CAM
;
338 *err_info
= ws_strdup_printf("camins: invalid dat_trans_type %u", dat_trans_type
);
342 buf
[2] = (dat_len
>>8) & 0xFF;
343 buf
[3] = dat_len
& 0xFF;
345 return DVB_CI_PSEUDO_HDR_LEN
;
350 camins_read_packet(FILE_T fh
, wtap_rec
*rec
, Buffer
*buf
,
351 uint64_t *time_us
, int *err
, char **err_info
)
353 uint8_t dat_trans_type
;
356 int offset
, bytes_read
;
358 if (!find_next_pkt_info(
359 fh
, &dat_trans_type
, &dat_len
, time_us
, err
, err_info
))
362 * The maximum value of length is 65535, which, even after
363 * DVB_CI_PSEUDO_HDR_LEN is added to it, is less than
364 * WTAP_MAX_PACKET_SIZE_STANDARD will ever be, so we don't need to check
368 ws_buffer_assure_space(buf
, DVB_CI_PSEUDO_HDR_LEN
+dat_len
);
369 p
= ws_buffer_start_ptr(buf
);
370 offset
= create_pseudo_hdr(p
, dat_trans_type
, dat_len
, err_info
);
372 /* shouldn't happen, all invalid packets must be detected by
373 find_next_pkt_info() */
374 *err
= WTAP_ERR_INTERNAL
;
375 /* create_pseudo_hdr() set err_info appropriately */
379 bytes_read
= read_packet_data(fh
, dat_trans_type
,
380 &p
[offset
], dat_len
, time_us
, err
, err_info
);
381 /* 0<=bytes_read<=dat_len is very likely a corrupted packet
382 we let the dissector handle this */
385 offset
+= bytes_read
;
387 rec
->rec_type
= REC_TYPE_PACKET
;
388 rec
->block
= wtap_block_create(WTAP_BLOCK_PACKET
);
389 rec
->presence_flags
= 0; /* we may or may not have a time stamp */
390 rec
->rec_header
.packet_header
.pkt_encap
= WTAP_ENCAP_DVBCI
;
392 rec
->presence_flags
= WTAP_HAS_TS
;
393 rec
->ts
.secs
= (time_t)(*time_us
/ (1000 * 1000));
394 rec
->ts
.nsecs
= (int)(*time_us
% (1000 *1000) * 1000);
396 rec
->rec_header
.packet_header
.caplen
= offset
;
397 rec
->rec_header
.packet_header
.len
= offset
;
404 camins_read(wtap
*wth
, wtap_rec
*rec
, Buffer
*buf
, int *err
,
405 char **err_info
, int64_t *data_offset
)
407 *data_offset
= file_tell(wth
->fh
);
409 return camins_read_packet(wth
->fh
, rec
, buf
, (uint64_t *)(wth
->priv
),
415 camins_seek_read(wtap
*wth
, int64_t seek_off
, wtap_rec
*rec
, Buffer
*buf
,
416 int *err
, char **err_info
)
418 if (-1 == file_seek(wth
->random_fh
, seek_off
, SEEK_SET
, err
))
421 return camins_read_packet(wth
->random_fh
, rec
, buf
, NULL
, err
, err_info
);
425 wtap_open_return_val
camins_open(wtap
*wth
, int *err
, char **err_info _U_
)
427 wtap_open_return_val status
;
429 status
= detect_camins_file(wth
->fh
);
430 if (status
!= WTAP_OPEN_MINE
) {
431 /* A read error or a failed heuristic. */
435 /* rewind the fh so we re-read from the beginning */
436 if (-1 == file_seek(wth
->fh
, 0, SEEK_SET
, err
))
437 return WTAP_OPEN_ERROR
;
439 wth
->file_encap
= WTAP_ENCAP_DVBCI
;
440 wth
->snapshot_length
= 0;
441 wth
->file_tsprec
= WTAP_TSPREC_USEC
;
443 /* wth->priv stores a pointer to the global time counter. we update
444 it as we go through the file sequentially. */
445 wth
->priv
= g_new0(uint64_t, 1);
447 wth
->subtype_read
= camins_read
;
448 wth
->subtype_seek_read
= camins_seek_read
;
449 wth
->file_type_subtype
= camins_file_type_subtype
;
454 * Add an IDB; we don't know how many interfaces were
455 * involved, so we just say one interface, about which
456 * we only know the link-layer type, snapshot length,
457 * and time stamp resolution.
459 wtap_add_generated_idb(wth
);
461 return WTAP_OPEN_MINE
;
464 static const struct supported_block_type camins_blocks_supported
[] = {
466 * We support packet blocks, with no comments or other options.
468 { WTAP_BLOCK_PACKET
, MULTIPLE_BLOCKS_SUPPORTED
, NO_OPTIONS_SUPPORTED
}
471 static const struct file_type_subtype_info camins_info
= {
472 "CAM Inspector file", "camins", "camins", NULL
,
473 false, BLOCKS_SUPPORTED(camins_blocks_supported
),
477 void register_camins(void)
479 camins_file_type_subtype
= wtap_register_file_type_subtype(&camins_info
);
482 * Register name for backwards compatibility with the
483 * wtap_filetypes table in Lua.
485 wtap_register_backwards_compatibility_lua_name("CAMINS",
486 camins_file_type_subtype
);
490 * Editor modelines - https://www.wireshark.org/tools/modelines.html
495 * indent-tabs-mode: nil
498 * vi: set shiftwidth=4 tabstop=8 expandtab:
499 * :indentSize=4:tabSize=8:noTabs=true: