1 | /*
|
---|
2 | * Copyright (c) 2009 Lukas Mejdrech
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup libc
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /** @file
|
---|
34 | * Packet header.
|
---|
35 | */
|
---|
36 |
|
---|
37 | #ifndef LIBC_PACKET_HEADER_H_
|
---|
38 | #define LIBC_PACKET_HEADER_H_
|
---|
39 |
|
---|
40 | #include <net/packet.h>
|
---|
41 |
|
---|
42 | /** Returns the actual packet data length.
|
---|
43 | * @param[in] header The packet header.
|
---|
44 | */
|
---|
45 | #define PACKET_DATA_LENGTH(header) \
|
---|
46 | ((header)->data_end - (header)->data_start)
|
---|
47 |
|
---|
48 | /** Returns the maximum packet address length.
|
---|
49 | * @param[in] header The packet header.
|
---|
50 | */
|
---|
51 | #define PACKET_MAX_ADDRESS_LENGTH(header) \
|
---|
52 | ((header)->dest_addr - (header)->src_addr)
|
---|
53 |
|
---|
54 | /** Returns the minimum packet suffix.
|
---|
55 | * @param[in] header The packet header.
|
---|
56 | */
|
---|
57 | #define PACKET_MIN_SUFFIX(header) \
|
---|
58 | ((header)->length - (header)->data_start - (header)->max_content)
|
---|
59 |
|
---|
60 | /** Packet integrity check magic value. */
|
---|
61 | #define PACKET_MAGIC_VALUE 0x11227788
|
---|
62 |
|
---|
63 | /** Packet header. */
|
---|
64 | struct packet {
|
---|
65 | /** Packet identifier. */
|
---|
66 | packet_id_t packet_id;
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * Packet queue sorting value.
|
---|
70 | * The packet queue is sorted the ascending order.
|
---|
71 | */
|
---|
72 | size_t order;
|
---|
73 |
|
---|
74 | /** Packet metric. */
|
---|
75 | size_t metric;
|
---|
76 | /** Previous packet in the queue. */
|
---|
77 | packet_id_t previous;
|
---|
78 | /** Next packet in the queue. */
|
---|
79 | packet_id_t next;
|
---|
80 |
|
---|
81 | /**
|
---|
82 | * Total length of the packet.
|
---|
83 | * Contains the header, the addresses and the data of the packet.
|
---|
84 | * Corresponds to the mapped sharable memory block.
|
---|
85 | */
|
---|
86 | size_t length;
|
---|
87 |
|
---|
88 | /** Stored source and destination addresses length. */
|
---|
89 | size_t addr_len;
|
---|
90 |
|
---|
91 | /**
|
---|
92 | * Souce address offset in bytes from the beginning of the packet
|
---|
93 | * header.
|
---|
94 | */
|
---|
95 | size_t src_addr;
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * Destination address offset in bytes from the beginning of the packet
|
---|
99 | * header.
|
---|
100 | */
|
---|
101 | size_t dest_addr;
|
---|
102 |
|
---|
103 | /** Reserved data prefix length in bytes. */
|
---|
104 | size_t max_prefix;
|
---|
105 | /** Reserved content length in bytes. */
|
---|
106 | size_t max_content;
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Actual data start offset in bytes from the beginning of the packet
|
---|
110 | * header.
|
---|
111 | */
|
---|
112 | size_t data_start;
|
---|
113 |
|
---|
114 | /**
|
---|
115 | * Actual data end offset in bytes from the beginning of the packet
|
---|
116 | * header.
|
---|
117 | */
|
---|
118 | size_t data_end;
|
---|
119 |
|
---|
120 | /** Integrity check magic value. */
|
---|
121 | int magic_value;
|
---|
122 | };
|
---|
123 |
|
---|
124 | /** Returns whether the packet is valid.
|
---|
125 | * @param[in] packet The packet to be checked.
|
---|
126 | * @return True if the packet is not NULL and the magic value is
|
---|
127 | * correct.
|
---|
128 | * @return False otherwise.
|
---|
129 | */
|
---|
130 | static inline int packet_is_valid(const packet_t *packet)
|
---|
131 | {
|
---|
132 | return packet && (packet->magic_value == PACKET_MAGIC_VALUE);
|
---|
133 | }
|
---|
134 |
|
---|
135 | #endif
|
---|
136 |
|
---|
137 | /** @}
|
---|
138 | */
|
---|