File: protocols.h

package info (click to toggle)
libtrace3 3.0.21-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 4,356 kB
  • ctags: 3,791
  • sloc: ansic: 24,422; sh: 11,372; cpp: 1,811; makefile: 464; yacc: 96; lex: 50
file content (91 lines) | stat: -rw-r--r-- 3,065 bytes parent folder | download | duplicates (3)
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
/*
 * This file is part of libtrace
 *
 * Copyright (c) 2007,2008,2009,2010 The University of Waikato, Hamilton, 
 * New Zealand.
 *
 * Authors: Daniel Lawson 
 *          Perry Lorier
 *          Shane Alcock 
 *          
 * All rights reserved.
 *
 * This code has been developed by the University of Waikato WAND 
 * research group. For further information please see http://www.wand.net.nz/
 *
 * libtrace is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * libtrace is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with libtrace; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id$
 *
 */


/** @file
 *
 * @brief Protocol access functions that have not yet been made available
 * through the external API.
 *
 * These are protocol decoders that haven't yet seen enough use to consider
 * their API stable enough to move into libtrace.h where they probably belong.
 */


/* These are generally used by the next higher level, so really we should
 * be defining API's that mean that these don't need to be known by the
 * higher level.
 */

#include "libtrace.h"
/* pkt meta headers */

/* l2 headers */

/** Gets a pointer to the payload following an Ethernet header
 *
 * @param ethernet	A pointer to the Ethernet header
 * @param[out] type	Set to contain the Ethernet type of the next header
 * @param[in, out] remaining	Updated with the number of captured bytes
 * 				remaining
 * @return A pointer to the header following the provided Ethernet header, or
 * NULL if no subsequent header is present.
 *
 * Remaining must point to the number of bytes captured from the Ethernet header
 * and beyond.  It will be decremented by the number of bytes skipped to find
 * the payload.
 *
 * If the Ethernet header is complete but there are zero bytes of payload after 
 * the end of the header, a pointer to where the payload would be is returned 
 * and remaining will be set to 0.  If the Ethernet header is incomplete 
 * (truncated), then NULL is returned and remaining will be set to 0. 
 * Therefore, it is very important to check the value of remaining after
 * calling this function.
 *
 * @note \ref trace_get_payload_from_layer2 provides a suitable alternative that is
 * actually available via the external API
 */
void *trace_get_payload_from_ethernet(void *ethernet, 
		uint16_t *type,
		uint32_t *remaining);

/* l3 definitions */

/** Ports structure used to get the source and destination ports for transport
 * protocols */
struct ports_t {
	uint16_t src;		/**< Source port */
	uint16_t dst;		/**< Destination port */
};