summaryrefslogtreecommitdiff
path: root/lib/libpcap/pcap.3
blob: 7a165f4758129cdc557c2bf0c49de56a1b2179da (plain)
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
.\" $NetBSD: pcap.3,v 1.19 2003/04/16 13:35:12 wiz Exp $
.\"
.\" Copyright (c) 1994, 1996, 1997
.\"	The Regents of the University of California.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that: (1) source code distributions
.\" retain the above copyright notice and this paragraph in its entirety, (2)
.\" distributions including binary code include the above copyright notice and
.\" this paragraph in its entirety in the documentation or other materials
.\" provided with the distribution, and (3) all advertising materials mentioning
.\" features or use of this software display the following acknowledgement:
.\" ``This product includes software developed by the University of California,
.\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
.\" the University nor the names of its contributors may be used to endorse
.\" or promote products derived from this software without specific prior
.\" written permission.
.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.\"
.Dd September 25, 2002
.Os
.Dt PCAP 3
.Sh NAME
.Nm pcap
.Nd packet capture library
.Sh LIBRARY
.Lb libpcap
.Sh SYNOPSIS
.In pcap.h
.Ft pcap_t *
.Fn pcap_open_live "char *device" "int snaplen" "int promisc" \
"int to_ms" "char *ebuf"
.Ft pcap_t *
.Fn pcap_open_offline "char *fname" "char *ebuf"
.Ft pcap_dumper_t *
.Fn pcap_dump_open "pcap_t *p" "char *fname"
.Ft char
.Dv errbuf[PCAP_ERRBUF_SIZE];
.Ft char *
.Fn pcap_lookupdev "char *errbuf"
.Ft int
.Fn pcap_lookupnet "char *device" "bpf_u_int32 *netp" \
"bpf_u_int32 *maskp" "char *errbuf"
.Ft int
.Fn pcap_dispatch "pcap_t *p" "int cnt" \
"pcap_handler callback" "u_char *user"
.Ft int
.Fn pcap_loop "pcap_t *p" "int cnt" \
"pcap_handler callback" "u_char *user"
.Ft void
.Fn pcap_dump "u_char *user" "struct pcap_pkthdr *h" \
"u_char *sp"
.Ft int
.Fn pcap_compile "pcap_t *p" "struct bpf_program *fp" \
"char *str" "int optimize" "bpf_u_int32 netmask"
.Ft int
.Fn pcap_compile_nopcap "int snaplen" "int linktype" \
"struct bpf_program *fp" "char *str" "int optimize" \
"bpf_uint32 netmask" "char *errbuf"
.Ft int
.Fn pcap_setfilter "pcap_t *p" "struct bpf_program *fp"
.Ft int
.Fn pcap_set_datalink "pcap_t *p" "int dlt"
.Ft int
.Fn pcap_list_datalinks "pcap_t *p" "int **dlt_buf"
.Ft const u_char *
.Fn pcap_next "pcap_t *p" "struct pcap_pkthdr *h"
.Ft int
.Fn pcap_datalink "pcap_t *p"
.Ft int
.Fn pcap_snapshot "pcap_t *p"
.Ft int
.Fn pcap_is_swapped "pcap_t *p"
.Ft int
.Fn pcap_major_version "pcap_t *p"
.Ft int
.Fn pcap_minor_version "pcap_t *p"
.Ft int
.Fn pcap_stats "pcap_t *p" "struct pcap_stat *ps"
.Ft FILE *
.Fn pcap_file "pcap_t *p"
.Ft int
.Fn pcap_fileno "pcap_t *p"
.Ft void
.Fn pcap_perror "pcap_t *p" "char *prefix"
.Ft char *
.Fn pcap_geterr "pcap_t *p"
.Ft char *
.Fn pcap_strerror "int error"
.Ft void
.Fn pcap_close "pcap_t *p"
.Ft void
.Fn pcap_dump_close "pcap_dumper_t *p"
.Sh DESCRIPTION
The
.Nm
library provides a high level interface to packet capture systems.
All packets on the network, even those destined for other hosts, are
accessible through this mechanism.
.Sh ROUTINES
.Fn pcap_open_live
is used to obtain a packet capture descriptor to look at packets on
the network.
.Fa device
is a string that specifies the network device to open.
.Fa snaplen
specifies the maximum number of bytes to capture.
.Fa promisc
specifies if the interface is to be put into promiscuous mode.
(Note that even if this parameter is false, the interface could well be in
promiscuous mode for some other reason.)
.Fa to_ms
specifies the read timeout in milliseconds.
.Fa ebuf
is used to return error text and is only set when
.Fn pcap_open_live
fails and returns
.Em NULL .
.Pp
.Fn pcap_open_offline
is called to open a
.Dq savefile
for reading.
.Fa fname
specifies the name of the file to open.
The file has the same format as those used by
.Xr tcpdump 8 .
The name
.Dq \&-
is a synonym for
.Em stdin .
.Fa ebuf
is used to return error text and is only set when
.Fn pcap_open_offline
fails and returns
.Em NULL .
.Pp
.Fn pcap_dump_open
is called to open a
.Dq savefile
for writing.
The name
.Dq \&-
is a synonym
for
.Em stdout .
.Em NULL
is returned on failure.
.Fa p
is a
.Fa pcap
struct as returned by
.Fn pcap_open_offline
or
.Fn pcap_open_live .
.Fa fname
specifies the name of the file to open.
If
.Em NULL
is returned,
.Fn pcap_geterr
can be used to get the error text.
.Pp
.Fn pcap_lookupdev
returns a pointer to a network device suitable for use with
.Fn pcap_open_live
and
.Fn pcap_lookupnet .
If there is an error,
.Em NULL
is returned and
.Fa errbuf
is filled in with an appropriate error message.
.Pp
.Fn pcap_lookupnet
is used to determine the network number and mask
associated with the network device
.Em device .
Both
.Fa netp
and
.Fa maskp
are
.Fa bpf_u_int32
pointers.
A return of -1 indicates an error in which case
.Fa errbuf
is filled in with an appropriate error message.
.Pp
.Fn pcap_dispatch
is used to collect and process packets.
.Fa cnt
specifies the maximum number of packets to process before returning.
A
.Fa cnt
of -1 processes all the packets received in one buffer.
A
.Fa cnt
of 0 processes all packets until an error occurs (or
.Em EOF
is reached).
.Fa callback
specifies a routine to be called with three arguments:
a
.Fa u_char
pointer which is passed in from
.Fn pcap_dispatch ,
a pointer to the
.Fa pcap_pkthdr
struct (which precede the actual network headers and data),
and a
.Fa u_char
pointer to the packet data.
The number of packets read is returned.
Zero is returned when
.Em EOF
is reached in a
.Dq savefile .
A return of -1 indicates an error in which case
.Fn pcap_perror
or
.Fn pcap_geterr
may be used to display the error text.
.Pp
.Fn pcap_dump
outputs a packet to the
.Dq savefile
opened with
.Fn pcap_dump_open .
Note that its calling arguments are suitable for use with
.Fn pcap_dispatch .
.Pp
.Fn pcap_compile
is used to compile the string
.Fa str
into a filter program.
.Fa program
is a pointer to a
.Fa bpf_program
struct and is filled in by
.Fn pcap_compile .
.Fa optimize
controls whether optimization on the resulting code is performed.
.Fa netmask
specifies the netmask of the local net.
.Pp
.Fn pcap_compile_nopcap
is similar to
.Fn pcap_compile
except that instead of passing a pcap descriptor, one passes the
snaplen, linktype, and error buffer (which must be
.Em PCAP_ERRBUF_SIZE
in length) explicitly.
It is intended to be used for compiling filters for direct
bpf usage, without necessarily having called
.Fn pcap_open .
.Pp
.Fn pcap_setfilter
is used to specify a filter program.
.Fa fp
is a pointer to an array of
.Fa bpf_program
struct, usually the result of a call to
.Fn pcap_compile .
.Em \-1
is returned on failure;
.Em 0
is returned on success.
.Pp
.Fn pcap_set_datalink
is used to set the current data link type of the pcap descriptor
to the type specified by
.Fa dlt .
This operation is supported only of the interface associated with
the pcap descriptor supports multiple data link types.
.Em \-1
is return on failure;
.Em 0
is returned on success.
.Pp
.Fn pcap_list_datalinks
is used to get a list of the support data link types of the interface
associated with the pcap descriptor.
.Fn pcap_list_datalinks
allocates an array to hold the list and sets
.Fa *dlt_buf .
The caller is responsible for freeing the array.
.Em \-1
is returned on failure;
otherwise, the number of data link types in the array is returned.
.Pp
.Fn pcap_loop
is similar to
.Fn pcap_dispatch
except it keeps reading packets until
.Fa cnt
packets are processed or an error occurs.
A negative
.Fa cnt
causes
.Fn pcap_loop
to loop forever (or at least until an error occurs).
.Pp
.Fn pcap_next
returns a
.Fa u_char
pointer to the next packet.
.Pp
.Fn pcap_datalink
returns the link layer type, e.g.
.Em DLT_EN10MB .
.Pp
.Fn pcap_snapshot
returns the snapshot length specified when
.Fn pcap_open_live
was called.
.Pp
.Fn pcap_is_swapped
returns true if the current
.Dq savefile
uses a different byte order than the current system.
.Pp
.Fn pcap_major_version
returns the major number of the version of the pcap used to write the
savefile.
.Pp
.Fn pcap_minor_version
returns the minor number of the version of the pcap used to write the
savefile.
.Pp
.Fn pcap_file
returns the standard I/O stream of the
.Dq savefile ,
if a
.Dq savefile
was opened with
.Fn pcap_open_offline ,
or NULL, if a network device was opened with
.Fn pcap_open_live .
.Pp
.Fn pcap_stats
returns 0 and fills in a
.Fa pcap_stat
struct.
The values represent packet statistics from the start of the
run to the time of the call.
If there is an error or the under lying
packet capture doesn't support packet statistics, -1 is returned and
the error text can be obtained with
.Fn pcap_perror
or
.Fn pcap_geterr .
.Pp
.Fn pcap_fileno
returns the file descriptor number from which captured packets are read
if a network device was opened with
.Fn pcap_open_live ,
or \-1, if a
.Dq savefile
was opened with
.Fn pcap_open_offline .
.Pp
.Fn pcap_perror
prints the text of the last pcap library error on
.Em stderr ,
prefixed by
.Em prefix .
.Pp
.Fn pcap_geterr
returns the error text pertaining to the last pcap library error.
.Pp
.Fn pcap_strerror
is provided in case
.Xr strerror 3
isn't available.
.Pp
.Fn pcap_close
closes the files associated with
.Fa p
and deallocates resources.
.Pp
.Fn pcap_dump_close
closes the
.Dq savefile .
.Sh SEE ALSO
.Xr tcpdump 8
.Sh AUTHORS
The original authors are:
.Lp
Van Jacobson,
Craig Leres and
Steven McCanne, all of the
Lawrence Berkeley National Laboratory, University of California, Berkeley, CA.
.\" .Lp
.\" The current version is available from "The Tcpdump Group"'s Web site at
.\" .Lp
.\" .RS
.\" .Em http://www.tcpdump.org/
.\" .RE
.\" .Sh BUGS
.\" Please send problems, bugs, questions, desirable enhancements, etc. to:
.\" .Lp
.\" .RS
.\" tcpdump-workers@tcpdump.org
.\" .RE
.\" .Lp
.\" Please send source code contributions, etc. to:
.\" .Lp
.\" .RS
.\" patches@tcpdump.org
.\" .RE