public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 36f16b50f2ae8b2ba0f46a6bf66210469c7dde79 3074 bytes (raw)

  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
 
// SPDX-License-Identifier: AGPL-3.0-or-later

/* PASST - Plug A Simple Socket Transport
 *  for qemu/UNIX domain socket mode
 *
 * PASTA - Pack A Subtle Tap Abstraction
 *  for network namespace/tap device mode
 *
 * pcap.c - Packet capture for PASST/PASTA
 *
 * Copyright (c) 2021 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#include <stdio.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
#include <errno.h>
#include <net/ethernet.h>
#include <netinet/in.h>
#include <unistd.h>
#include <net/if.h>

#include "util.h"
#include "passt.h"
#include "log.h"

#define PCAP_VERSION_MINOR 4

static int pcap_fd = -1;

/* See pcap.h from libpcap, or pcap-savefile(5) */
static const struct {
	uint32_t magic;
#define PCAP_MAGIC		0xa1b2c3d4

	uint16_t major;
#define PCAP_VERSION_MAJOR	2

	uint16_t minor;
#define PCAP_VERSION_MINOR	4

	int32_t thiszone;
	uint32_t sigfigs;
	uint32_t snaplen;

	uint32_t linktype;
#define PCAP_LINKTYPE_ETHERNET	1
} pcap_hdr = {
	PCAP_MAGIC, PCAP_VERSION_MAJOR, PCAP_VERSION_MINOR, 0, 0, ETH_MAX_MTU,
	PCAP_LINKTYPE_ETHERNET
};

struct pcap_pkthdr {
	uint32_t tv_sec;
	uint32_t tv_usec;
	uint32_t caplen;
	uint32_t len;
};

/**
 * pcap_frame() - Capture a single frame to pcap file with given timestamp
 * @pkt:	Pointer to data buffer, including L2 headers
 * @len:	L2 packet length
 * @tv:		Timestamp
 */
static void pcap_frame(const char *pkt, size_t len, const struct timeval *tv)
{
	struct pcap_pkthdr h;

	h.tv_sec = tv->tv_sec;
	h.tv_usec = tv->tv_usec;
	h.caplen = h.len = len;

	if (write(pcap_fd, &h, sizeof(h)) < 0 || write(pcap_fd, pkt, len) < 0)
		debug("Cannot log packet, length %lu", len);
}

/**
 * pcap() - Capture a single frame to pcap file
 * @pkt:	Pointer to data buffer, including L2 headers
 * @len:	L2 packet length
 */
void pcap(const char *pkt, size_t len)
{
	struct timeval tv;

	if (pcap_fd == -1)
		return;

	gettimeofday(&tv, NULL);
	pcap_frame(pkt, len, &tv);
}

/**
 * pcap_multiple() - Capture multiple frames
 * @iov:	Array of iovecs, one entry per frame
 * @n:		Number of frames to capture
 * @offset:	Offset of the frame within each iovec buffer
 */
void pcap_multiple(const struct iovec *iov, unsigned int n, size_t offset)
{
	struct timeval tv;
	unsigned int i;

	if (pcap_fd == -1)
		return;

	gettimeofday(&tv, NULL);

	for (i = 0; i < n; i++)
		pcap_frame((char *)iov[i].iov_base + offset,
			   iov[i].iov_len - offset, &tv);
}

/**
 * pcap_init() - Initialise pcap file
 * @c:		Execution context
 */
void pcap_init(struct ctx *c)
{
	int flags = O_WRONLY | O_CREAT | O_TRUNC;

	if (pcap_fd != -1)
		return;

	if (!*c->pcap)
		return;

	flags |= c->foreground ? O_CLOEXEC : 0;
	pcap_fd = open(c->pcap, flags, S_IRUSR | S_IWUSR);
	if (pcap_fd == -1) {
		perror("open");
		return;
	}

	info("Saving packet capture to %s", c->pcap);

	if (write(pcap_fd, &pcap_hdr, sizeof(pcap_hdr)) < 0)
		warn("Cannot write PCAP header: %s", strerror(errno));
}

debug log:

solving 36f16b5 ...
found 36f16b5 in https://archives.passt.top/passt-dev/20221209054228.4085990-18-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20221208085551.1433829-10-david@gibson.dropbear.id.au/
found 8af9021 in https://archives.passt.top/passt-dev/20221208085551.1433829-3-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20221209054228.4085990-3-david@gibson.dropbear.id.au/
found c9ac5cf in https://archives.passt.top/passt-dev/20221208085551.1433829-2-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20221209054228.4085990-2-david@gibson.dropbear.id.au/
found 836688d in https://passt.top/passt
preparing index
index prepared:
100644 836688de59bd33f75da6dddfed1ba30a60f7ae9a	pcap.c

applying [1/3] https://archives.passt.top/passt-dev/20221208085551.1433829-2-david@gibson.dropbear.id.au/
diff --git a/pcap.c b/pcap.c
index 836688d..c9ac5cf 100644

Checking patch pcap.c...
Applied patch pcap.c cleanly.

skipping https://archives.passt.top/passt-dev/20221209054228.4085990-2-david@gibson.dropbear.id.au/ for c9ac5cf
index at:
100644 c9ac5cf44ebd5a209e7c13e220545c8cf095186b	pcap.c

applying [2/3] https://archives.passt.top/passt-dev/20221208085551.1433829-3-david@gibson.dropbear.id.au/
diff --git a/pcap.c b/pcap.c
index c9ac5cf..8af9021 100644

Checking patch pcap.c...
Applied patch pcap.c cleanly.

skipping https://archives.passt.top/passt-dev/20221209054228.4085990-3-david@gibson.dropbear.id.au/ for 8af9021
index at:
100644 8af9021301c0372801ccc32f3a24fda72edd13e3	pcap.c

applying [3/3] https://archives.passt.top/passt-dev/20221209054228.4085990-18-david@gibson.dropbear.id.au/
diff --git a/pcap.c b/pcap.c
index 8af9021..36f16b5 100644

Checking patch pcap.c...
Applied patch pcap.c cleanly.

skipping https://archives.passt.top/passt-dev/20221208085551.1433829-10-david@gibson.dropbear.id.au/ for 36f16b5
index at:
100644 36f16b50f2ae8b2ba0f46a6bf66210469c7dde79	pcap.c

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).