source: mainline/uspace/lib/c/include/net/packet_header.h@ ab63b04e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ab63b04e was 609243f4, checked in by Martin Decky <martin@…>, 14 years ago

cherrypick general networking improvements from lp:~helenos-nicf/helenos/nicf (after sanitization)
remove obsolete networking drivers
this renders the networking non-functional for the time being

  • Property mode set to 100644
File size: 4.0 KB
RevLine 
[21580dd]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
[c69d327]29/** @addtogroup libc
[21580dd]30 * @{
31 */
32
33/** @file
[c69d327]34 * Packet header.
[21580dd]35 */
36
[c69d327]37#ifndef LIBC_PACKET_HEADER_H_
38#define LIBC_PACKET_HEADER_H_
[21580dd]39
[c69d327]40#include <net/packet.h>
[21580dd]41
42/** Returns the actual packet data length.
[c69d327]43 * @param[in] header The packet header.
[21580dd]44 */
[c69d327]45#define PACKET_DATA_LENGTH(header) \
46 ((header)->data_end - (header)->data_start)
[21580dd]47
48/** Returns the maximum packet address length.
[c69d327]49 * @param[in] header The packet header.
[21580dd]50 */
[c69d327]51#define PACKET_MAX_ADDRESS_LENGTH(header) \
52 ((header)->dest_addr - (header)->src_addr)
[21580dd]53
54/** Returns the minimum packet suffix.
[c69d327]55 * @param[in] header The packet header.
[21580dd]56 */
[c69d327]57#define PACKET_MIN_SUFFIX(header) \
58 ((header)->length - (header)->data_start - (header)->max_content)
[21580dd]59
[c69d327]60/** Packet integrity check magic value. */
[21580dd]61#define PACKET_MAGIC_VALUE 0x11227788
62
[609243f4]63/** Maximum total length of the packet */
64#define PACKET_MAX_LENGTH 65536
65
[c69d327]66/** Packet header. */
67struct packet {
68 /** Packet identifier. */
[aadf01e]69 packet_id_t packet_id;
[c69d327]70
71 /**
72 * Packet queue sorting value.
73 * The packet queue is sorted the ascending order.
[21580dd]74 */
[aadf01e]75 size_t order;
[c69d327]76
77 /** Packet metric. */
[aadf01e]78 size_t metric;
[c69d327]79 /** Previous packet in the queue. */
[aadf01e]80 packet_id_t previous;
[c69d327]81 /** Next packet in the queue. */
[aadf01e]82 packet_id_t next;
[c69d327]83
84 /**
85 * Total length of the packet.
86 * Contains the header, the addresses and the data of the packet.
87 * Corresponds to the mapped sharable memory block.
[21580dd]88 */
[aadf01e]89 size_t length;
[c69d327]90
[609243f4]91 /** Offload info provided by the NIC */
92 uint32_t offload_info;
93
94 /** Mask which bits in offload info are valid */
95 uint32_t offload_mask;
96
[c69d327]97 /** Stored source and destination addresses length. */
[aadf01e]98 size_t addr_len;
[c69d327]99
100 /**
101 * Souce address offset in bytes from the beginning of the packet
102 * header.
[21580dd]103 */
[aadf01e]104 size_t src_addr;
[c69d327]105
106 /**
107 * Destination address offset in bytes from the beginning of the packet
108 * header.
[21580dd]109 */
[aadf01e]110 size_t dest_addr;
[c69d327]111
112 /** Reserved data prefix length in bytes. */
[aadf01e]113 size_t max_prefix;
[c69d327]114 /** Reserved content length in bytes. */
[aadf01e]115 size_t max_content;
[c69d327]116
117 /**
118 * Actual data start offset in bytes from the beginning of the packet
119 * header.
[21580dd]120 */
[aadf01e]121 size_t data_start;
[c69d327]122
123 /**
124 * Actual data end offset in bytes from the beginning of the packet
125 * header.
[21580dd]126 */
[aadf01e]127 size_t data_end;
[c69d327]128
129 /** Integrity check magic value. */
[aadf01e]130 int magic_value;
[21580dd]131};
132
133/** Returns whether the packet is valid.
[c69d327]134 * @param[in] packet The packet to be checked.
[1bfd3d3]135 * @return True if the packet is not NULL and the magic value is
[c69d327]136 * correct.
[1bfd3d3]137 * @return False otherwise.
[21580dd]138 */
[46d4d9f]139static inline int packet_is_valid(const packet_t *packet)
[c69d327]140{
[aadf01e]141 return packet && (packet->magic_value == PACKET_MAGIC_VALUE);
[21580dd]142}
143
144#endif
145
146/** @}
147 */
Note: See TracBrowser for help on using the repository browser.