1999-10-08 07:47:09 +08:00
|
|
|
/*
|
2002-01-21 19:39:58 +08:00
|
|
|
* Copyright (c) 1988-2002
|
1999-10-08 07:47:09 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1999-10-18 06:18:00 +08:00
|
|
|
#ifndef tcpdump_interface_h
|
|
|
|
#define tcpdump_interface_h
|
1999-10-08 07:47:09 +08:00
|
|
|
|
1999-10-18 06:18:00 +08:00
|
|
|
#ifdef HAVE_OS_PROTO_H
|
|
|
|
#include "os-proto.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
2000-01-07 23:59:28 +08:00
|
|
|
|
|
|
|
/* snprintf et al */
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2005-04-20 17:44:30 +08:00
|
|
|
#if HAVE_STDINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2000-01-07 23:59:28 +08:00
|
|
|
#if !defined(HAVE_SNPRINTF)
|
2001-06-25 05:55:00 +08:00
|
|
|
int snprintf(char *, size_t, const char *, ...)
|
2013-06-23 05:06:33 +08:00
|
|
|
#ifdef __ATTRIBUTE___FORMAT_OK
|
|
|
|
__attribute__((format(printf, 3, 4)))
|
|
|
|
#endif /* __ATTRIBUTE___FORMAT_OK */
|
|
|
|
;
|
|
|
|
#endif /* !defined(HAVE_SNPRINTF) */
|
2000-01-07 23:59:28 +08:00
|
|
|
|
|
|
|
#if !defined(HAVE_VSNPRINTF)
|
2001-06-25 05:55:00 +08:00
|
|
|
int vsnprintf(char *, size_t, const char *, va_list)
|
2013-06-23 05:06:33 +08:00
|
|
|
#ifdef __ATTRIBUTE___FORMAT_OK
|
|
|
|
__attribute__((format(printf, 3, 0)))
|
|
|
|
#endif /* __ATTRIBUTE___FORMAT_OK */
|
|
|
|
;
|
|
|
|
#endif /* !defined(HAVE_VSNPRINTF) */
|
2000-01-07 23:59:28 +08:00
|
|
|
|
2000-01-19 13:34:17 +08:00
|
|
|
#ifndef HAVE_STRLCAT
|
2001-06-25 05:55:00 +08:00
|
|
|
extern size_t strlcat(char *, const char *, size_t);
|
2000-01-19 13:34:17 +08:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRLCPY
|
2001-06-25 05:55:00 +08:00
|
|
|
extern size_t strlcpy(char *, const char *, size_t);
|
2000-01-19 13:34:17 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-20 15:22:20 +08:00
|
|
|
#ifndef HAVE_STRDUP
|
2001-06-25 05:55:00 +08:00
|
|
|
extern char *strdup(const char *);
|
2001-01-20 15:22:20 +08:00
|
|
|
#endif
|
|
|
|
|
2003-03-25 16:33:34 +08:00
|
|
|
#ifndef HAVE_STRSEP
|
|
|
|
extern char *strsep(char **, const char *);
|
|
|
|
#endif
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
#define PT_VAT 1 /* Visual Audio Tool */
|
|
|
|
#define PT_WB 2 /* distributed White Board */
|
|
|
|
#define PT_RPC 3 /* Remote Procedure Call */
|
|
|
|
#define PT_RTP 4 /* Real-Time Applications protocol */
|
|
|
|
#define PT_RTCP 5 /* Real-Time Applications control protocol */
|
1999-10-18 05:37:10 +08:00
|
|
|
#define PT_SNMP 6 /* Simple Network Management Protocol */
|
2000-04-27 18:05:30 +08:00
|
|
|
#define PT_CNFP 7 /* Cisco NetFlow protocol */
|
2003-05-11 14:01:16 +08:00
|
|
|
#define PT_TFTP 8 /* trivial file transfer protocol */
|
2003-08-06 14:49:38 +08:00
|
|
|
#define PT_AODV 9 /* Ad-hoc On-demand Distance Vector Protocol */
|
2013-02-09 16:08:34 +08:00
|
|
|
#define PT_CARP 10 /* Common Address Redundancy Protocol */
|
|
|
|
#define PT_RADIUS 11 /* RADIUS authentication Protocol */
|
2013-02-09 21:36:24 +08:00
|
|
|
#define PT_ZMTP1 12 /* ZeroMQ Message Transport Protocol 1.0 */
|
2013-02-26 20:44:11 +08:00
|
|
|
#define PT_VXLAN 13 /* Virtual eXtensible Local Area Network */
|
2013-03-15 01:17:53 +08:00
|
|
|
#define PT_PGM 14 /* [UDP-encapsulated] Pragmatic General Multicast */
|
2013-03-15 01:59:38 +08:00
|
|
|
#define PT_PGM_ZMTP1 15 /* ZMTP/1.0 inside PGM (native or UDP-encapsulated) */
|
2013-09-07 16:22:37 +08:00
|
|
|
#define PT_LMP 16 /* Link Management Protocol */
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
#define ESRC(ep) ((ep)->ether_shost)
|
|
|
|
#define EDST(ep) ((ep)->ether_dhost)
|
|
|
|
|
|
|
|
#ifndef NTOHL
|
|
|
|
#define NTOHL(x) (x) = ntohl(x)
|
|
|
|
#define NTOHS(x) (x) = ntohs(x)
|
|
|
|
#define HTONL(x) (x) = htonl(x)
|
|
|
|
#define HTONS(x) (x) = htons(x)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-10-03 15:35:42 +08:00
|
|
|
extern char *program_name; /* used to generate self-identifying messages */
|
1999-10-08 07:47:09 +08:00
|
|
|
|
1999-10-18 06:18:00 +08:00
|
|
|
extern int32_t thiszone; /* seconds offset from gmt to local time */
|
|
|
|
|
2014-04-23 15:45:13 +08:00
|
|
|
extern int mask2plen(uint32_t);
|
2001-10-09 00:12:12 +08:00
|
|
|
extern const char *tok2strary_internal(const char **, int, const char *, int);
|
|
|
|
#define tok2strary(a,f,i) tok2strary_internal(a, sizeof(a)/sizeof(a[0]),f,i)
|
|
|
|
|
2000-07-11 08:49:02 +08:00
|
|
|
extern void error(const char *, ...)
|
2013-06-23 05:06:33 +08:00
|
|
|
__attribute__((noreturn))
|
|
|
|
#ifdef __ATTRIBUTE___FORMAT_OK
|
|
|
|
__attribute__((format (printf, 1, 2)))
|
|
|
|
#endif /* __ATTRIBUTE___FORMAT_OK */
|
|
|
|
;
|
|
|
|
extern void warning(const char *, ...)
|
|
|
|
#ifdef __ATTRIBUTE___FORMAT_OK
|
|
|
|
__attribute__((format (printf, 1, 2)))
|
|
|
|
#endif /* __ATTRIBUTE___FORMAT_OK */
|
|
|
|
;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
extern char *read_infile(char *);
|
|
|
|
extern char *copy_argv(char **);
|
|
|
|
|
2001-09-18 05:57:50 +08:00
|
|
|
extern const char *dnname_string(u_short);
|
|
|
|
extern const char *dnnum_string(u_short);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2006-02-10 05:16:47 +08:00
|
|
|
/* checksum routines */
|
|
|
|
extern void init_checksum(void);
|
2014-04-23 15:45:13 +08:00
|
|
|
extern uint16_t verify_crc10_cksum(uint16_t, const u_char *, int);
|
|
|
|
extern uint16_t create_osi_cksum(const uint8_t *, int, int);
|
2006-02-10 05:16:47 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/* The printer routines. */
|
|
|
|
|
2001-04-12 17:05:07 +08:00
|
|
|
#include <pcap.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
|
1999-12-15 14:58:49 +08:00
|
|
|
extern char *smb_errstr(int, int);
|
2014-04-23 15:45:13 +08:00
|
|
|
extern const char *nt_errstr(uint32_t);
|
2011-05-04 06:58:32 +08:00
|
|
|
|
1999-10-30 13:11:06 +08:00
|
|
|
#ifdef INET6
|
2009-05-17 06:05:29 +08:00
|
|
|
extern int mask62plen(const u_char *);
|
1999-10-30 13:11:06 +08:00
|
|
|
#endif /*INET6*/
|
2011-06-14 05:08:51 +08:00
|
|
|
|
|
|
|
struct cksum_vec {
|
2014-04-23 15:45:13 +08:00
|
|
|
const uint8_t *ptr;
|
2011-06-14 05:08:51 +08:00
|
|
|
int len;
|
|
|
|
};
|
2014-04-23 15:45:13 +08:00
|
|
|
extern uint16_t in_cksum(const struct cksum_vec *, int);
|
|
|
|
extern uint16_t in_cksum_shouldbe(uint16_t, uint16_t);
|
2001-05-18 02:33:00 +08:00
|
|
|
|
|
|
|
#ifndef HAVE_BPF_DUMP
|
|
|
|
struct bpf_program;
|
|
|
|
|
2008-02-15 04:53:49 +08:00
|
|
|
extern void bpf_dump(const struct bpf_program *, int);
|
2004-03-30 22:42:38 +08:00
|
|
|
|
2001-05-18 02:33:00 +08:00
|
|
|
#endif
|
2004-03-30 22:42:38 +08:00
|
|
|
|
|
|
|
#include "netdissect.h"
|