Subversion Repositories HelenOS

Rev

Rev 4351 | Rev 4704 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3901 mejdrech 1
/*
3912 mejdrech 2
 * Copyright (c) 2009 Lukas Mejdrech
3901 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
 
3912 mejdrech 29
/** @addtogroup packet
3901 mejdrech 30
 *  @{
31
 */
32
 
33
/** @file
3912 mejdrech 34
 *  Packet client.
35
 *  The hosting module has to be compiled with both the packet.c and the packet_client.c source files.
36
 *  To function correctly, initialization of the packet map by the pm_init() function has to happen at the first place.
37
 *  The module should not send the packet messages to the packet server but use the functions provided.
38
 *  The packet map should be released by the pm_destroy() function during the module termination.
3914 mejdrech 39
 *  The packets and the packet queues can't be locked at all.
40
 *  The processing modules should process them sequentially - by passing the packets to the next module and stopping using the passed ones.
3912 mejdrech 41
 *  @see packet.h
3901 mejdrech 42
 */
43
 
44
#ifndef __NET_PACKET_CLIENT_H__
45
#define __NET_PACKET_CLIENT_H__
46
 
47
#include "packet.h"
48
 
3912 mejdrech 49
/** Allocates the specified type right before the actual packet content and returns its pointer.
50
 *  The wrapper of the packet_prepend() function.
51
 *  @param packet The packet to be used. Input parameter.
52
 *  @param type The type to be allocated at the beginning of the packet content. Input parameter.
53
 *  @returns The typed pointer to the allocated memory.
54
 *  @returns NULL if the packet is not valid.
55
 *  @returns NULL if there is not enough memory left.
56
 */
3990 mejdrech 57
#define PACKET_PREFIX( packet, type )   ( type * ) packet_prefix(( packet ), sizeof( type ))
3901 mejdrech 58
 
3912 mejdrech 59
/** Allocates the specified type right after the actual packet content and returns its pointer.
60
 *  The wrapper of the packet_append() function.
61
 *  @param packet The packet to be used. Input parameter.
62
 *  @param type The type to be allocated at the end of the packet content. Input parameter.
63
 *  @returns The typed pointer to the allocated memory.
64
 *  @returns NULL if the packet is not valid.
65
 *  @returns NULL if there is not enough memory left.
66
 */
3990 mejdrech 67
#define PACKET_SUFFIX( packet, type )   ( type * ) packet_suffix(( packet ), sizeof( type ))
3912 mejdrech 68
 
69
/** Trims the actual packet content by the specified prefix and suffix types.
70
 *  The wrapper of the packet_trim() function.
71
 *  @param packet The packet to be trimmed. Input parameter.
72
 *  @param prefix The type of the prefix to be removed from the beginning of the packet content. Input parameter.
73
 *  @param suffix The type of the suffix to be removed from the end of the packet content. Input parameter.
74
 *  @returns EOK on success.
75
 *  @returns EINVAL if the packet is not valid.
76
 *  @returns EINVAL if there is not enough memory left.
77
 */
78
#define PACKET_TRIM( packet, prefix, suffix )   packet_trim(( packet ), sizeof( prefix ), sizeof( suffix ))
79
 
80
/** Allocates the specified space right before the actual packet content and returns its pointer.
81
 *  @param packet The packet to be used. Input parameter.
82
 *  @param length The space length to be allocated at the beginning of the packet content. Input parameter.
83
 *  @returns The pointer to the allocated memory.
84
 *  @returns NULL if there is not enough memory left.
85
 */
86
void *  packet_prefix( packet_t packet, size_t length );
87
 
88
/** Allocates the specified space right after the actual packet content and returns its pointer.
89
 *  @param packet The packet to be used. Input parameter.
90
 *  @param length The space length to be allocated at the end of the packet content. Input parameter.
91
 *  @returns The pointer to the allocated memory.
92
 *  @returns NULL if there is not enough memory left.
93
 */
94
void *  packet_suffix( packet_t packet, size_t length );
95
 
96
/** Trims the actual packet content by the specified prefix and suffix lengths.
97
 *  @param packet The packet to be trimmed. Input parameter.
98
 *  @param prefix The prefix length to be removed from the beginning of the packet content. Input parameter.
99
 *  @param suffix The suffix length to be removed from the end of the packet content. Input parameter.
100
 *  @returns EOK on success.
101
 *  @returns EINVAL if the packet is not valid.
102
 *  @returns ENOMEM if there is not enough memory left.
103
 */
104
int packet_trim( packet_t packet, size_t prefix, size_t suffix );
105
 
106
/** Copies the specified data to the beginning of the actual packet content.
107
 *  Pushes the content end if needed.
108
 *  @param packet The packet to be filled. Input parameter.
109
 *  @param data The data to be copied. Input parameter.
110
 *  @param length The length of the copied data. Input parameter.
111
 *  @returns EOK on success.
112
 *  @returns EINVAL if the packet is not valid.
113
 *  @returns ENOMEM if there is not enough memory left.
114
 */
3901 mejdrech 115
int packet_copy_data( packet_t packet, const void * data, size_t length );
3912 mejdrech 116
 
117
/** Returns the packet identifier.
118
 *  @param packet The packet. Input parameter.
119
 *  @returns The packet identifier.
120
 *  @returns Zero (0) if the packet is not valid.
121
 */
122
packet_id_t packet_get_id( const packet_t packet );
123
 
124
/** Returns the packet content length.
125
 *  @param packet The packet. Input parameter.
126
 *  @returns The packet content length in bytes.
127
 *  @returns Zero (0) if the packet is not valid.
128
 */
3901 mejdrech 129
size_t  packet_get_data_length( const packet_t packet );
3912 mejdrech 130
 
131
/** Returns the pointer to the beginning of the packet content.
132
 *  @param packet The packet. Input parameter.
133
 *  @returns The pointer to the beginning of the packet content.
134
 *  @returns NULL if the packet is not valid.
135
 */
3901 mejdrech 136
void *  packet_get_data( const packet_t packet );
3912 mejdrech 137
 
138
/** Returns the stored packet addresses and their length.
139
 *  @param packet The packet. Input parameter.
4395 mejdrech 140
 *  @param src The source address. May be NULL if not desired. Output parameter.
141
 *  @param dest The destination address. May be NULL if not desired. Output parameter.
142
 *  @returns The stored addresses length.
3912 mejdrech 143
 *  @returns Zero (0) if the addresses are not present.
144
 *  @returns EINVAL if the packet is not valid.
145
 */
3901 mejdrech 146
int packet_get_addr( const packet_t packet, uint8_t ** src, uint8_t ** dest );
3912 mejdrech 147
 
148
/** Sets the packet addresses.
149
 *  @param packet The packet. Input parameter.
4395 mejdrech 150
 *  @param src The new source address. May be NULL. Input parameter.
151
 *  @param dest The new destination address. May be NULL. Input parameter.
3912 mejdrech 152
 *  @param addr_len The addresses length.
153
 *  @returns EOK on success.
154
 *  @returns EINVAL if the packet is not valid.
155
 *  @returns ENOMEM if there is not enough memory left.
156
 */
3901 mejdrech 157
int packet_set_addr( packet_t packet, const uint8_t * src, const uint8_t * dest, size_t addr_len );
3912 mejdrech 158
 
159
/** Translates the packet identifier to the packet reference.
160
 *  Tries to find mapping first.
161
 *  Contacts the packet server to share the packet if the mapping is not present.
162
 *  @param phone The packet server module phone. Input parameter.
163
 *  @param packet The packet reference. Output parameter.
164
 *  @param packet_id The packet identifier. Input parameter.
165
 *  @returns EOK on success.
166
 *  @returns EINVAL if the packet parameter is NULL.
167
 *  @returns Other error codes as defined for the NET_PACKET_GET_SIZE message.
4351 mejdrech 168
 *  @returns Other error codes as defined for the packet_return() function.
3912 mejdrech 169
 */
3901 mejdrech 170
int packet_translate( int phone, packet_ref packet, packet_id_t packet_id );
3912 mejdrech 171
 
172
/** Obtains the packet of the given dimensions.
173
 *  Contacts the packet server to return the appropriate packet.
174
 *  @param phone The packet server module phone. Input parameter.
175
 *  @param addr_len The source and destination addresses maximal length in bytes. Input parameter.
176
 *  @param max_prefix The maximal prefix length in bytes. Input parameter.
177
 *  @param max_content The maximal content length in bytes. Input parameter.
178
 *  @param max_suffix The maximal suffix length in bytes. Input parameter.
179
 *  @returns The packet reference.
180
 *  @returns NULL on error.
181
 */
3990 mejdrech 182
packet_t packet_get_4( int phone, size_t max_content, size_t addr_len, size_t max_prefix, size_t max_suffix );
3912 mejdrech 183
 
184
/** Obtains the packet of the given content size.
185
 *  Contacts the packet server to return the appropriate packet.
186
 *  @param phone The packet server module phone. Input parameter.
187
 *  @param content The maximal content length in bytes. Input parameter.
188
 *  @returns The packet reference.
189
 *  @returns NULL on error.
190
 */
3990 mejdrech 191
packet_t packet_get_1( int phone, size_t content );
3912 mejdrech 192
 
4075 mejdrech 193
/** Releases the packet queue.
194
 *  All packets in the queue are marked as free for use.
195
 *  The packet queue may be one packet only.
196
 *  The module should not use the packets after this point until they are received or obtained again.
3912 mejdrech 197
 *  @param phone The packet server module phone. Input parameter.
198
 *  @param packet_id The packet identifier. Input parameter.
199
 */
4192 mejdrech 200
void pq_release( int phone, packet_id_t packet_id );
3901 mejdrech 201
 
202
#endif
203
 
204
/** @}
205
 */