File: pcapng-sysdig.c

package info (click to toggle)
wireshark 4.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 351,244 kB
  • sloc: ansic: 3,101,885; cpp: 129,710; xml: 100,972; python: 56,512; perl: 24,575; sh: 5,874; lex: 4,383; pascal: 4,304; makefile: 165; ruby: 113; objc: 91; tcl: 35
file content (460 lines) | stat: -rw-r--r-- 18,896 bytes parent folder | download
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/** @file
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "config.h"

#include <wsutil/ws_padding_to.h>

#include "wtap-int.h"
#include "file_wrappers.h"
#include "pcapng_module.h"

 /*
  * We split libscap events into two parts: A preamble from which we read metadata
  * and the event itself which we pass to epan.
  */
#define MIN_SYSDIG_PREAMBLE_SIZE (16/8) /* CPU ID */
#define MIN_SYSDIG_EVENT_SIZE    ((64 + 64 + 32 + 16)/8) /* Timestamp + Thread ID + Event len + Event type */

static inline bool
sysdig_has_flags(unsigned block_type) {
    return block_type == BLOCK_TYPE_SYSDIG_EVF
        || block_type == BLOCK_TYPE_SYSDIG_EVF_V2
        || block_type == BLOCK_TYPE_SYSDIG_EVF_V2_LARGE;
}

static inline bool
sysdig_has_nparams(unsigned block_type) {
    return block_type == BLOCK_TYPE_SYSDIG_EVENT_V2
        || block_type == BLOCK_TYPE_SYSDIG_EVENT_V2_LARGE
        || block_type == BLOCK_TYPE_SYSDIG_EVF_V2
        || block_type == BLOCK_TYPE_SYSDIG_EVF_V2_LARGE;
}

/**
 * Set up a wtap_rec for a system call (REC_TYPE_SYSCALL).
 */
void
wtap_setup_syscall_rec(wtap_rec* rec)
{
    rec->rec_type = REC_TYPE_SYSCALL;
    // We handle multiple types of data here, so use "Event"
    // instead of "System Call"
    //
    // XXX - the wiretap code could set it, if it knows
    // an appropriate string.
    rec->rec_type_name = "Event";
}

 // Preamble:
 //   uint16_t CPU ID
 //   uint32_t Flags (optional, sysdig_has_flags)
 // Event header (libs:driver/ppm_events_public.h:ppm_evt_hdr):
 //   uint64_t Timestamp
 //   uint64_t Thread ID
 //   uint32_t Event length. Includes this header.
 //   uint16_t Event type
 //   uint32_t Number of params (optional, sysdig_has_nparams)

static bool
pcapng_read_sysdig_event_block(wtap* wth, FILE_T fh, uint32_t block_type,
    uint32_t block_content_length, section_info_t* section_info,
    wtapng_block_t* wblock, int* err, char** err_info)
{
    uint16_t cpu_id;
    uint64_t ts;
    uint64_t thread_id;
    uint32_t event_len;
    uint16_t event_type;
    uint32_t nparams = 0;
    uint32_t flags = 0;
    bool has_flags = sysdig_has_flags(block_type);
    bool has_nparams = sysdig_has_nparams(block_type);
    unsigned preamble_len = MIN_SYSDIG_PREAMBLE_SIZE + (has_flags ? 4 : 0);
    unsigned event_header_len = MIN_SYSDIG_EVENT_SIZE + (has_nparams ? 4 : 0);

    wblock->block = wtap_block_create(WTAP_BLOCK_SYSDIG_EVENT);

    if (block_content_length < preamble_len + event_header_len) {
        *err = WTAP_ERR_BAD_FILE;
        *err_info = ws_strdup_printf("pcapng: block content length %u of a Sysdig event block is too small (< %u)",
            block_content_length, preamble_len + event_header_len);
        return false;
    }

    wtap_setup_syscall_rec(wblock->rec);
    wblock->rec->rec_header.syscall_header.record_type = block_type;
    wblock->rec->presence_flags = WTAP_HAS_CAP_LEN /*|WTAP_HAS_INTERFACE_ID */;
    wblock->rec->tsprec = WTAP_TSPREC_NSEC;
    wblock->rec->rec_header.syscall_header.pathname = wth->pathname;

    // Preamble
    if (!wtap_read_bytes(fh, &cpu_id, sizeof cpu_id, err, err_info)) {
        ws_debug("failed to read sysdig event cpu id");
        return false;
    }
    if (has_flags) {
        if (!wtap_read_bytes(fh, &flags, sizeof flags, err, err_info)) {
            ws_debug("failed to read sysdig flags");
            return false;
        }
    }
    // Event header
    if (!wtap_read_bytes(fh, &ts, sizeof ts, err, err_info)) {
        ws_debug("failed to read sysdig event timestamp");
        return false;
    }
    if (!wtap_read_bytes(fh, &thread_id, sizeof thread_id, err, err_info)) {
        ws_debug("failed to read sysdig event thread id");
        return false;
    }
    if (!wtap_read_bytes(fh, &event_len, sizeof event_len, err, err_info)) {
        ws_debug("failed to read sysdig event length");
        return false;
    }
    if (!wtap_read_bytes(fh, &event_type, sizeof event_type, err, err_info)) {
        ws_debug("failed to read sysdig event type");
        return false;
    }
    if (has_nparams) {
        if (!wtap_read_bytes(fh, &nparams, sizeof nparams, err, err_info)) {
            ws_debug("failed to read sysdig number of parameters");
            return false;
        }
    }

    if (section_info->byte_swapped) {
        wblock->rec->rec_header.syscall_header.byte_order =
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
            G_BIG_ENDIAN;
#else
            G_LITTLE_ENDIAN;
#endif
        cpu_id = GUINT16_SWAP_LE_BE(cpu_id);
        ts = GUINT64_SWAP_LE_BE(ts);
        flags = GUINT32_SWAP_LE_BE(flags);
        thread_id = GUINT64_SWAP_LE_BE(thread_id);
        event_len = GUINT32_SWAP_LE_BE(event_len);
        event_type = GUINT16_SWAP_LE_BE(event_type);
        nparams = GUINT32_SWAP_LE_BE(nparams);
    }
    else {
        wblock->rec->rec_header.syscall_header.byte_order = G_BYTE_ORDER;
    }

    if (ts) {
        wblock->rec->presence_flags |= WTAP_HAS_TS;
    }

    wblock->rec->ts.secs = (time_t)(ts / 1000000000);
    wblock->rec->ts.nsecs = (int)(ts % 1000000000);

    unsigned block_remaining = block_content_length - preamble_len - event_header_len;
    if (event_len > block_remaining + event_header_len) {
        ws_debug("Truncating event length %u to %u", event_len, block_remaining + event_header_len);
        // ...or should we just return false here?
        event_len = block_remaining + event_header_len;
    }

    uint32_t event_data_len = event_len - event_header_len;

    wblock->rec->rec_header.syscall_header.cpu_id = cpu_id;
    wblock->rec->rec_header.syscall_header.flags = flags;
    wblock->rec->rec_header.syscall_header.thread_id = thread_id;
    wblock->rec->rec_header.syscall_header.event_len = event_len;
    wblock->rec->rec_header.syscall_header.event_data_len = event_data_len;
    wblock->rec->rec_header.syscall_header.event_type = event_type;
    wblock->rec->rec_header.syscall_header.nparams = nparams;

    // Event data
    // XXX Should we include the event header here? It would ensure that
    // we always have data and avoid the "consumed = 1" workaround in the
    // Falco Events dissector.
    if (!wtap_read_bytes_buffer(fh, &wblock->rec->data, event_data_len, err, err_info)) {
        return false;
    }

    unsigned pad_len = WS_PADDING_TO_4(event_len + preamble_len);
    if (pad_len && file_seek(fh, pad_len, SEEK_CUR, err) < 0) {
        return false;   /* Seek error */
    }

    /* Options */
    unsigned opt_cont_buf_len = block_remaining - (event_data_len + pad_len);
    if (!pcapng_process_options(fh, wblock, section_info, opt_cont_buf_len,
        NULL,
        OPT_LITTLE_ENDIAN, err, err_info))
        return false;

    /*
     * We return these to the caller in pcapng_read().
     */
    wblock->internal = false;

    /*
     * We want dissectors (particularly packet_frame) to be able to
     * access packet comments and whatnot that are in the block. wblock->block
     * will be unref'd by pcapng_seek_read(), so move the block to where
     * dissectors can find it.
     */
    wblock->rec->block = wblock->block;
    wblock->block = NULL;

    return true;
}

static bool
pcapng_write_sysdig_event_block(wtap_dumper* wdh, const wtap_rec* rec,
    int* err, char** err_info)
{
    uint32_t block_content_length;
    uint32_t pad_len;
    uint32_t options_size = 0;
    bool has_flags = sysdig_has_flags(rec->rec_header.syscall_header.record_type);
    bool has_nparams = sysdig_has_nparams(rec->rec_header.syscall_header.record_type);
    unsigned preamble_len = MIN_SYSDIG_PREAMBLE_SIZE + (has_flags ? 4 : 0);
    unsigned event_header_len = MIN_SYSDIG_EVENT_SIZE + (has_nparams ? 4 : 0);

    /* Don't write anything we're not willing to read. */
    if (rec->rec_header.syscall_header.event_data_len > WTAP_MAX_PACKET_SIZE_STANDARD) {
        *err = WTAP_ERR_PACKET_TOO_LARGE;
        return false;
    }

    pad_len = WS_PADDING_TO_4(rec->rec_header.syscall_header.event_data_len + event_header_len + preamble_len);

    if (rec->block != NULL) {
        /* Compute size of all the options */
        options_size = pcapng_compute_options_size(rec->block, NULL);
    }

    block_content_length = preamble_len + event_header_len + rec->rec_header.syscall_header.event_data_len + pad_len + options_size;

    /* write block header */
    if (!pcapng_write_block_header(wdh, rec->rec_header.syscall_header.record_type,
                                   block_content_length, err))
        return false;

    uint16_t cpu_id = rec->rec_header.syscall_header.cpu_id;
    uint64_t ts = (((uint64_t)rec->ts.secs) * 1000000000) + rec->ts.nsecs;
    uint64_t thread_id = rec->rec_header.syscall_header.thread_id;
    uint32_t event_len = rec->rec_header.syscall_header.event_data_len + event_header_len;
    uint16_t event_type = rec->rec_header.syscall_header.event_type;

    // Preamble
    if (!wtap_dump_file_write(wdh, &cpu_id, sizeof cpu_id, err))
        return false;

    if (has_flags) {
        uint32_t flags = rec->rec_header.syscall_header.flags;
        if (!wtap_dump_file_write(wdh, &flags, sizeof(flags), err)) {
            return false;
        }
    }

    // Event header
    if (!wtap_dump_file_write(wdh, &ts, sizeof(ts), err))
        return false;

    if (!wtap_dump_file_write(wdh, &thread_id, sizeof(thread_id), err))
        return false;

    if (!wtap_dump_file_write(wdh, &event_len, sizeof(event_len), err))
        return false;

    if (!wtap_dump_file_write(wdh, &event_type, sizeof(event_type), err))
        return false;

    if (has_nparams) {
        uint32_t nparams = rec->rec_header.syscall_header.nparams;
        if (!wtap_dump_file_write(wdh, &nparams, sizeof(nparams), err)) {
            return false;
        }
    }

    /* Event data */
    if (!wtap_dump_file_write(wdh, ws_buffer_start_ptr(&rec->data), rec->rec_header.syscall_header.event_data_len, err))
        return false;

    /* Write padding (if any) */
    if (!pcapng_write_padding(wdh, pad_len, err))
        return false;

    /* Write options, if we have any */
    if (options_size != 0) {
        if (!pcapng_write_options(wdh, OPT_SECTION_BYTE_ORDER,
            rec->block, NULL, err, err_info))
            return false;
    }

    /* write block footer */
    return pcapng_write_block_footer(wdh, block_content_length, err);
}

/* Process a Sysdig meta event block that we have just read. */
bool
pcapng_process_meta_event(wtap* wth, section_info_t *section_info _U_,
                          wtapng_block_t* wblock)
{
    ws_debug("block type Sysdig meta event");

    // XXX add wtapng_process_meta_event(wth, wblock->block);

    /* Store meta event such that it can be saved by the dumper. */
    g_array_append_val(wth->meta_events, wblock->block);

    /* Do not free wblock->block, it is consumed by pcapng_process_sysdig_meb */

    return true;
}

static bool
pcapng_read_meta_event_block(wtap* wth _U_, FILE_T fh, uint32_t block_type,
    uint32_t block_content_length, section_info_t* section_info _U_,
    wtapng_block_t* wblock,
    int* err, char** err_info)
{
    unsigned to_read;
    wtapng_meta_event_mandatory_t* mev_mand;

    /*
     * Set wblock->block to a newly-allocated Sysdig meta event block.
     */
    wblock->block = wtap_block_create(WTAP_BLOCK_META_EVENT);

    /*
     * Set the mandatory values for the block.
     */
    mev_mand = (wtapng_meta_event_mandatory_t*)wtap_block_get_mandatory_data(wblock->block);
    mev_mand->mev_block_type = block_type;
    mev_mand->mev_data_len = block_content_length;

    /* Sanity check: assume event data can't be larger than 1 GiB */
    if (mev_mand->mev_data_len > 1024 * 1024 * 1024) {
        *err = WTAP_ERR_BAD_FILE;
        *err_info = ws_strdup_printf("pcapng: Sysdig mev block is too large: %u", mev_mand->mev_data_len);
        return false;
    }
    mev_mand->mev_data = (uint8_t*)g_malloc(mev_mand->mev_data_len);
    if (!wtap_read_bytes(fh, mev_mand->mev_data, mev_mand->mev_data_len, err, err_info)) {
        ws_debug("failed to read Sysdig mev");
        return false;
    }

    /* Skip past padding and discard options (not supported yet). */
    to_read = block_content_length - mev_mand->mev_data_len;
    if (!wtap_read_bytes(fh, NULL, to_read, err, err_info)) {
        ws_debug("failed to read Sysdig mev options");
        return false;
    }

    /*
     * We don't return these to the caller in pcapng_read().
     */
    wblock->internal = true;

    return true;
}

static void sysdig_create(wtap_block_t block)
{
    /* Ensure this is null, so when g_free is called on it, it simply returns */
    block->mandatory_data = NULL;
}

static void mev_create(wtap_block_t block)
{
    block->mandatory_data = g_new0(wtapng_meta_event_mandatory_t, 1);
}

static void mev_free_mand(wtap_block_t block)
{
    wtapng_meta_event_mandatory_t* mand = (wtapng_meta_event_mandatory_t*)block->mandatory_data;
    g_free(mand->mev_data);
}

static void mev_copy_mand(wtap_block_t dest_block, wtap_block_t src_block)
{
    wtapng_meta_event_mandatory_t* src = (wtapng_meta_event_mandatory_t*)src_block->mandatory_data;
    wtapng_meta_event_mandatory_t* dst = (wtapng_meta_event_mandatory_t*)dest_block->mandatory_data;
    dst->mev_block_type = src->mev_block_type;
    dst->mev_data_len = src->mev_data_len;
    g_free(dst->mev_data);
    dst->mev_data = (uint8_t*)g_memdup2(src->mev_data, src->mev_data_len);
}

void register_sysdig(void)
{
    static pcapng_block_type_information_t MI = { BLOCK_TYPE_SYSDIG_MI, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V1 = { BLOCK_TYPE_SYSDIG_PL_V1, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t FDL_V1 = { BLOCK_TYPE_SYSDIG_FDL_V1, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t EVENT = { BLOCK_TYPE_SYSDIG_EVENT, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, false, NULL };
    static pcapng_block_type_information_t IL_V1 = { BLOCK_TYPE_SYSDIG_IL_V1, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t UL_V1 = { BLOCK_TYPE_SYSDIG_UL_V1, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V2 = { BLOCK_TYPE_SYSDIG_PL_V2, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t EVF = { BLOCK_TYPE_SYSDIG_EVF, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, true, NULL };
    static pcapng_block_type_information_t PL_V3 = { BLOCK_TYPE_SYSDIG_PL_V3, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V4 = { BLOCK_TYPE_SYSDIG_PL_V4, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V5 = { BLOCK_TYPE_SYSDIG_PL_V5, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V6 = { BLOCK_TYPE_SYSDIG_PL_V6, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V7 = { BLOCK_TYPE_SYSDIG_PL_V7, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V8 = { BLOCK_TYPE_SYSDIG_PL_V8, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t PL_V9 = { BLOCK_TYPE_SYSDIG_PL_V9, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t EVENT_V2 = { BLOCK_TYPE_SYSDIG_EVENT_V2, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, false, NULL };
    static pcapng_block_type_information_t EVENT_V2_LARGE = { BLOCK_TYPE_SYSDIG_EVENT_V2_LARGE, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, false, NULL };
    static pcapng_block_type_information_t EVF_V2 = { BLOCK_TYPE_SYSDIG_EVF_V2, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, true, NULL };
    static pcapng_block_type_information_t EVF_V2_LARGE = { BLOCK_TYPE_SYSDIG_EVF_V2_LARGE, pcapng_read_sysdig_event_block, NULL, pcapng_write_sysdig_event_block, true, NULL };
    static pcapng_block_type_information_t FDL_V2 = { BLOCK_TYPE_SYSDIG_FDL_V2, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t IL_V2 = { BLOCK_TYPE_SYSDIG_IL_V2, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };
    static pcapng_block_type_information_t UL_V2 = { BLOCK_TYPE_SYSDIG_UL_V2, pcapng_read_meta_event_block, pcapng_process_meta_event, NULL, true, NULL };

    static wtap_blocktype_t sysdig_block = { WTAP_BLOCK_SYSDIG_EVENT, "Sysdig event", "Sysdig Event Block", sysdig_create, NULL, NULL, NULL };
    static wtap_blocktype_t mev_block = { WTAP_BLOCK_META_EVENT, "MEV", "Meta Event Block", mev_create, mev_free_mand, mev_copy_mand, NULL };

    /*
     * Register the Sysdig block; no options can appear in it..
     */
    wtap_opttype_block_register(&sysdig_block);
    /*
     * Register the Sysdig MEV, currently no options are defined.
     */
    wtap_opttype_block_register(&mev_block);

    register_pcapng_block_type_information(&MI);
    register_pcapng_block_type_information(&PL_V1);
    register_pcapng_block_type_information(&FDL_V1);
    register_pcapng_block_type_information(&EVENT);
    register_pcapng_block_type_information(&IL_V1);
    register_pcapng_block_type_information(&UL_V1);
    register_pcapng_block_type_information(&PL_V2);
    register_pcapng_block_type_information(&EVF);
    register_pcapng_block_type_information(&PL_V3);
    register_pcapng_block_type_information(&PL_V4);
    register_pcapng_block_type_information(&PL_V5);
    register_pcapng_block_type_information(&PL_V6);
    register_pcapng_block_type_information(&PL_V7);
    register_pcapng_block_type_information(&PL_V8);
    register_pcapng_block_type_information(&PL_V9);
    register_pcapng_block_type_information(&EVENT_V2);
    register_pcapng_block_type_information(&EVENT_V2_LARGE);
    register_pcapng_block_type_information(&EVF_V2);
    register_pcapng_block_type_information(&EVF_V2_LARGE);
    register_pcapng_block_type_information(&FDL_V2);
    register_pcapng_block_type_information(&IL_V2);
    register_pcapng_block_type_information(&UL_V2);
}

/*
 * Editor modelines  -  https://www.wireshark.org/tools/modelines.html
 *
 * Local variables:
 * c-basic-offset: 4
 * tab-width: 8
 * indent-tabs-mode: nil
 * End:
 *
 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
 * :indentSize=8:tabSize=8:noTabs=false:
 */