Skip to content

Commit 9577f86

Browse files
rveerama1nashif
authored andcommitted
net: tools: Modify pcap functions on 15.4 monitor tool
Now monitor tool uses host pcap/pcap.h header file for related structs. Removed unused functions. Modified pcap_creation and pcap_write functions. Change-Id: I918bef483e81cf3001841a9b86a100388025b28c Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
1 parent 89b980b commit 9577f86

File tree

1 file changed

+58
-134
lines changed

1 file changed

+58
-134
lines changed

net/ip/tools/monitor_15_4.c

+58-134
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#include <sys/time.h>
3232
#include <linux/if_ether.h>
3333
#include <glib.h>
34+
#include <pcap/pcap.h>
3435

3536
#define PIPE_IN ".in"
3637
#define PIPE_OUT ".out"
@@ -46,35 +47,23 @@ static GMainLoop *main_loop = NULL;
4647
static char *path = NULL;
4748
static char *pipe_1_in = NULL, *pipe_1_out = NULL;
4849
static char *pipe_2_in = NULL, *pipe_2_out = NULL;
49-
static struct pcap *pcap = NULL;
50+
static struct pcap_fd *pcap;
5051
static int fd1_in, fd2_in;
5152

52-
struct pcap_hdr {
53-
uint32_t magic_number; /* magic number */
54-
uint16_t version_major; /* major version number */
55-
uint16_t version_minor; /* minor version number */
56-
int32_t thiszone; /* GMT to local correction */
57-
uint32_t sigfigs; /* accuracy of timestamps */
58-
uint32_t snaplen; /* max length of captured packets, in octets */
59-
uint32_t network; /* data link type */
60-
} __attribute__ ((packed));
61-
#define PCAP_HDR_SIZE (sizeof(struct pcap_hdr))
62-
63-
struct pcap_pkt {
64-
uint32_t ts_sec; /* timestamp seconds */
65-
uint32_t ts_usec; /* timestamp microseconds */
66-
uint32_t incl_len; /* number of octets of packet saved in file */
67-
uint32_t orig_len; /* actual length of packet */
68-
} __attribute__ ((packed));
69-
#define PCAP_PKT_SIZE (sizeof(struct pcap_pkt))
70-
71-
struct pcap {
53+
struct pcap_fd {
7254
int fd;
73-
bool closed;
74-
uint32_t type;
75-
uint32_t snaplen;
7655
};
7756

57+
#define PCAP_FILE_HDR_SIZE (sizeof(struct pcap_file_header))
58+
59+
struct pcap_frame {
60+
uint32_t ts_sec;
61+
uint32_t ts_usec;
62+
uint32_t caplen;
63+
uint32_t len;
64+
} __attribute__ ((packed));
65+
#define PCAP_FRAME_SIZE (sizeof(struct pcap_frame))
66+
7867
struct debug_desc {
7968
const char *name;
8069
const char *file;
@@ -120,56 +109,7 @@ void log_cleanup(void)
120109
closelog();
121110
}
122111

123-
struct pcap *pcap_open(const char *pathname)
124-
{
125-
struct pcap *pcap;
126-
struct pcap_hdr hdr;
127-
ssize_t len;
128-
129-
pcap = g_new0(struct pcap, 1);
130-
131-
pcap->fd = open(pathname, O_RDONLY | O_CLOEXEC);
132-
if (pcap->fd < 0) {
133-
DBG("Failed to open PCAP file");
134-
g_free(pcap);
135-
return NULL;
136-
}
137-
138-
len = read(pcap->fd, &hdr, PCAP_HDR_SIZE);
139-
if (len < 0) {
140-
DBG("Failed to read PCAP header");
141-
goto failed;
142-
}
143-
144-
if (len != PCAP_HDR_SIZE) {
145-
DBG("Wrong PCAP header size\n");
146-
goto failed;
147-
}
148-
149-
if (hdr.magic_number != 0xa1b2c3d4) {
150-
DBG("Wrong PCAP header magic\n");
151-
goto failed;
152-
}
153-
154-
if (hdr.version_major != 2 || hdr.version_minor != 4) {
155-
DBG("Wrong PCAP version number\n");
156-
goto failed;
157-
}
158-
159-
pcap->closed = false;
160-
pcap->snaplen = hdr.snaplen;
161-
pcap->type = hdr.network;
162-
163-
return pcap;
164-
165-
failed:
166-
close(pcap->fd);
167-
g_free(pcap);
168-
169-
return NULL;
170-
}
171-
172-
void pcap_close(struct pcap *pcap)
112+
void monitor_pcap_free(void)
173113
{
174114
if (!pcap)
175115
return;
@@ -180,90 +120,80 @@ void pcap_close(struct pcap *pcap)
180120
g_free(pcap);
181121
}
182122

183-
struct pcap *pcap_create(const char *pathname)
123+
bool monitor_pcap_create(const char *pathname)
184124
{
185-
struct pcap *pcap;
186-
struct pcap_hdr hdr;
125+
struct pcap_file_header hdr;
187126
ssize_t len;
188127

189-
pcap = g_new0(struct pcap, 1);
128+
pcap = g_new0(struct pcap_fd, 1);
190129
pcap->fd = open(pathname, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC,
191130
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
192131
if (pcap->fd < 0) {
193132
DBG("Failed to create PCAP file");
194133
g_free(pcap);
195-
return NULL;
134+
return false;
196135
}
197136

198-
pcap->closed = false;
199-
pcap->snaplen = 0x0000ffff;
200-
/* http://www.tcpdump.org/linktypes.html */
201-
pcap->type = 0x000000E6; /* LINKTYPE_IEEE802_15_4_NOFCS : 230 */
202-
203-
memset(&hdr, 0, sizeof(hdr));
204-
hdr.magic_number = 0xa1b2c3d4;
137+
memset(&hdr, 0, PCAP_FILE_HDR_SIZE);
138+
hdr.magic = 0xa1b2c3d4;
205139
hdr.version_major = 0x0002;
206140
hdr.version_minor = 0x0004;
207141
hdr.thiszone = 0;
208142
hdr.sigfigs = 0;
209-
hdr.snaplen = pcap->snaplen;
210-
hdr.network = pcap->type;
211-
212-
len = write(pcap->fd, &hdr, PCAP_HDR_SIZE);
143+
hdr.snaplen = 0x0000ffff;
144+
/*
145+
* http://www.tcpdump.org/linktypes.html
146+
* LINKTYPE_IEEE802_15_4_NOFCS : 230
147+
*/
148+
hdr.linktype = 0x000000E6;
149+
150+
len = write(pcap->fd, &hdr, PCAP_FILE_HDR_SIZE);
213151
if (len < 0) {
214152
DBG("Failed to write PCAP header");
215153
goto failed;
216154
}
217155

218-
if (len != PCAP_HDR_SIZE) {
156+
if (len != PCAP_FILE_HDR_SIZE) {
219157
DBG("Written PCAP header size mimatch\n");
220158
goto failed;
221159
}
222160

223-
return pcap;
161+
return true;
224162

225163
failed:
226-
close(pcap->fd);
227-
g_free(pcap);
164+
monitor_pcap_free();
228165

229-
return NULL;
166+
return false;
230167
}
231168

232-
bool pcap_write(struct pcap *pcap, const struct timeval *tv,
233-
const void *data, uint32_t size)
169+
bool monitor_pcap_write(const void *data, uint32_t size)
234170
{
235-
struct iovec iov[3];
236-
struct pcap_pkt pkt;
237-
ssize_t written;
171+
struct pcap_frame frame;
172+
struct timeval tv;
173+
ssize_t len;
238174

239175
if (!pcap)
240176
return false;
241177

242-
if (pcap->closed)
243-
return false;
178+
memset(&frame, 0, PCAP_FRAME_SIZE);
244179

245-
memset(&pkt, 0, sizeof(pkt));
246-
if (tv) {
247-
pkt.ts_sec = tv->tv_sec;
248-
pkt.ts_usec = tv->tv_usec;
249-
}
180+
gettimeofday(&tv, NULL);
181+
frame.ts_sec = tv.tv_sec;
182+
frame.ts_usec = tv.tv_usec;
183+
frame.caplen = size;
184+
frame.len = size;
250185

251-
pkt.incl_len = size;
252-
pkt.orig_len = size;
253-
254-
iov[0].iov_base = &pkt;
255-
iov[0].iov_len = PCAP_PKT_SIZE;
256-
iov[1].iov_base = (void *) data;
257-
iov[1].iov_len = size;
258-
259-
written = writev(pcap->fd, iov, 2);
260-
if (written < 0) {
261-
pcap->closed = true;
186+
len = write(pcap->fd, &frame, PCAP_FRAME_SIZE);
187+
if (len < 0 || len != PCAP_FRAME_SIZE) {
188+
DBG("Failed to write PCAP frame or size mismatch %d\n", len);
262189
return false;
263190
}
264191

265-
if (written < (ssize_t) (PCAP_PKT_SIZE + size)) {
266-
pcap->closed = true;
192+
fsync(pcap->fd);
193+
194+
len = write(pcap->fd, data, size);
195+
if (len < 0 || len != size) {
196+
DBG("Failed to write PCAP data or size mismatch %d\n", len);
267197
return false;
268198
}
269199

@@ -278,7 +208,6 @@ static gboolean fifo_handler1(GIOChannel *channel, GIOCondition cond,
278208
unsigned char buf[1];
279209
ssize_t result;
280210
int fd;
281-
struct timeval tv;
282211

283212
if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
284213
DBG("First pipe closed");
@@ -340,9 +269,7 @@ static gboolean fifo_handler1(GIOChannel *channel, GIOCondition cond,
340269
if (input1_len && input1_len == input1_offset) {
341270
DBG("Received %d bytes in pipe 1", input1_len);
342271

343-
/* write it to pcap file */
344-
gettimeofday(&tv, NULL);
345-
pcap_write(pcap, &tv, input1, input1_len);
272+
monitor_pcap_write(input1, input1_len);
346273
input1_len = input1_offset = 0;
347274
memset(input1, 0, sizeof(input1));
348275

@@ -360,7 +287,6 @@ static gboolean fifo_handler2(GIOChannel *channel, GIOCondition cond,
360287
unsigned char buf[1];
361288
ssize_t result;
362289
int fd;
363-
struct timeval tv;
364290

365291
if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
366292
DBG("Second pipe closed");
@@ -421,9 +347,7 @@ static gboolean fifo_handler2(GIOChannel *channel, GIOCondition cond,
421347
if (input2_len && input2_len == input2_offset) {
422348
DBG("Received %d bytes in pipe 2", input2_len);
423349

424-
/* write it to pcap file */
425-
gettimeofday(&tv, NULL);
426-
pcap_write(pcap, &tv, input2, input2_len);
350+
monitor_pcap_write(input2, input2_len);
427351
input2_len = input2_offset = 0;
428352
memset(input2, 0, sizeof(input2));
429353

@@ -516,17 +440,16 @@ int main(int argc, char *argv[])
516440
pipe_2_out = g_strconcat(pipe2, PIPE_OUT, NULL);
517441
path = g_strdup(argv[1]);
518442

519-
pcap = pcap_create(path);
520-
if (!pcap) {
521-
g_free(path);
522-
exit(-EINVAL);
523-
}
524-
525443
log_init("log", FALSE, argc > 4 ? TRUE : FALSE);
526444

527445
DBG("Pipe 1 IN %s OUT %s", pipe_1_in, pipe_1_out);
528446
DBG("Pipe 2 IN %s OUT %s", pipe_2_in, pipe_2_out);
529447

448+
if (!monitor_pcap_create(path)) {
449+
g_free(path);
450+
exit(-EINVAL);
451+
}
452+
530453
fifo1 = setup_fifofd1();
531454
if (fifo1 < 0) {
532455
ret = -EINVAL;
@@ -567,6 +490,7 @@ int main(int argc, char *argv[])
567490
g_free(pipe_1_out);
568491
g_free(pipe_2_in);
569492
g_free(pipe_2_out);
493+
monitor_pcap_free();
570494
log_cleanup();
571495
g_main_loop_unref(main_loop);
572496

0 commit comments

Comments
 (0)