source: mainline/uspace/lib/c/include/ipc/net.h@ ef09a7a

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

networking stack: convert to the new async framework

  • Property mode set to 100644
File size: 10.7 KB
Line 
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 libcipc
30 * @{
31 */
32
33/** @file
34 * Networking common message definitions.
35 */
36
37#ifndef LIBC_NET_MESSAGES_H_
38#define LIBC_NET_MESSAGES_H_
39
40#include <ipc/services.h>
41#include <net/device.h>
42#include <net/packet.h>
43
44/** Return a value indicating whether the value is in the interval.
45 *
46 * @param[in] item Value to be checked.
47 * @param[in] first_inclusive First value in the interval inclusive.
48 * @param[in] last_exclusive First value after the interval.
49 *
50 */
51#define IS_IN_INTERVAL(item, first_inclusive, last_exclusive) \
52 (((item) >= (first_inclusive)) && ((item) < (last_exclusive)))
53
54/** @name Networking message counts */
55/*@{*/
56
57#define NET_ARP_COUNT 5 /**< Number of ARP messages. */
58#define NET_ETH_COUNT 0 /**< Number of Ethernet messages. */
59#define NET_ICMP_COUNT 6 /**< Number of ICMP messages. */
60#define NET_IL_COUNT 6 /**< Number of inter-network messages. */
61#define NET_IP_COUNT 4 /**< Number of IP messages. */
62#define NET_NET_COUNT 3 /**< Number of general networking messages. */
63#define NET_NETIF_COUNT 6 /**< Number of network interface driver messages. */
64#define NET_NIL_COUNT 7 /**< Number of network interface layer messages. */
65#define NET_PACKET_COUNT 5 /**< Number of packet management system messages. */
66#define NET_SOCKET_COUNT 14 /**< Number of socket messages. */
67#define NET_TCP_COUNT 0 /**< Number of TCP messages. */
68#define NET_TL_COUNT 1 /**< Number of transport layer messages. */
69#define NET_UDP_COUNT 0 /**< Number of UDP messages. */
70
71/*@}*/
72
73/** @name Networking message intervals
74 */
75/*@{*/
76
77
78/** First networking message. */
79#define NET_FIRST 2000
80
81/** First network interface layer message. */
82#define NET_NETIF_FIRST NET_FIRST
83
84/** Last network interface layer message. */
85#define NET_NETIF_LAST (NET_NETIF_FIRST + NET_NETIF_COUNT)
86
87/** First general networking message. */
88#define NET_NET_FIRST (NET_NETIF_LAST + 0)
89
90/** Last general networking message. */
91#define NET_NET_LAST (NET_NET_FIRST + NET_NET_COUNT)
92
93/** First network interface layer message. */
94#define NET_NIL_FIRST (NET_NET_LAST + 0)
95
96/** Last network interface layer message. */
97#define NET_NIL_LAST (NET_NIL_FIRST + NET_NIL_COUNT)
98
99/** First Ethernet message. */
100#define NET_ETH_FIRST (NET_NIL_LAST + 0)
101
102/** Last Ethernet message. */
103#define NET_ETH_LAST (NET_ETH_FIRST + NET_ETH_COUNT)
104
105/** First inter-network message. */
106#define NET_IL_FIRST (NET_ETH_LAST + 0)
107
108/** Last inter-network message. */
109#define NET_IL_LAST (NET_IL_FIRST + NET_IL_COUNT)
110
111/** First IP message. */
112#define NET_IP_FIRST (NET_IL_LAST + 0)
113
114/** Last IP message. */
115#define NET_IP_LAST (NET_IP_FIRST + NET_IP_COUNT)
116
117/** First ARP message. */
118#define NET_ARP_FIRST (NET_IP_LAST + 0)
119
120/** Last ARP message. */
121#define NET_ARP_LAST (NET_ARP_FIRST + NET_ARP_COUNT)
122
123/** First ICMP message. */
124#define NET_ICMP_FIRST (NET_ARP_LAST + 0)
125
126/** Last ICMP message. */
127#define NET_ICMP_LAST (NET_ICMP_FIRST + NET_ICMP_COUNT)
128
129/** First ICMP message. */
130#define NET_TL_FIRST (NET_ICMP_LAST + 0)
131
132/** Last ICMP message. */
133#define NET_TL_LAST (NET_TL_FIRST + NET_TL_COUNT)
134
135/** First UDP message. */
136#define NET_UDP_FIRST (NET_TL_LAST + 0)
137
138/** Last UDP message. */
139#define NET_UDP_LAST (NET_UDP_FIRST + NET_UDP_COUNT)
140
141/** First TCP message. */
142#define NET_TCP_FIRST (NET_UDP_LAST + 0)
143
144/** Last TCP message. */
145#define NET_TCP_LAST (NET_TCP_FIRST + NET_TCP_COUNT)
146
147/** First socket message. */
148#define NET_SOCKET_FIRST (NET_TCP_LAST + 0)
149
150/** Last socket message. */
151#define NET_SOCKET_LAST (NET_SOCKET_FIRST + NET_SOCKET_COUNT)
152
153/** First packet management system message. */
154#define NET_PACKET_FIRST (NET_SOCKET_LAST + 0)
155
156/** Last packet management system message. */
157#define NET_PACKET_LAST (NET_PACKET_FIRST + NET_PACKET_COUNT)
158
159/** Last networking message. */
160#define NET_LAST NET_PACKET_LAST
161
162/** Number of networking messages. */
163#define NET_COUNT (NET_LAST - NET_FIRST)
164
165/** Check if the IPC call is a generic networking message.
166 *
167 * @param[in] call IPC call to be checked.
168 *
169 */
170#define IS_NET_MESSAGE(call) \
171 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_FIRST, NET_LAST)
172
173/** Check if the IPC call is an ARP message.
174 *
175 * @param[in] call IPC call to be checked.
176 *
177 */
178#define IS_NET_ARP_MESSAGE(call) \
179 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_ARP_FIRST, NET_ARP_LAST)
180
181/** Check if the IPC call is an Ethernet message.
182 *
183 * @param[in] call IPC call to be checked.
184 *
185 */
186#define IS_NET_ETH_MESSAGE(call) \
187 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_ETH_FIRST, NET_ETH_LAST)
188
189/** Check if the IPC call is an ICMP message.
190 *
191 * @param[in] call IPC call to be checked.
192 *
193 */
194#define IS_NET_ICMP_MESSAGE(call) \
195 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_ICMP_FIRST, NET_ICMP_LAST)
196
197/** Check if the IPC call is an inter-network layer message.
198 *
199 * @param[in] call IPC call to be checked.
200 *
201 */
202#define IS_NET_IL_MESSAGE(call) \
203 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_IL_FIRST, NET_IL_LAST)
204
205/** Check if the IPC call is an IP message.
206 *
207 * @param[in] call IPC call to be checked.
208 *
209 */
210#define IS_NET_IP_MESSAGE(call) \
211 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_IP_FIRST, NET_IP_LAST)
212
213/** Check if the IPC call is a generic networking message.
214 *
215 * @param[in] call IPC call to be checked.
216 *
217 */
218#define IS_NET_NET_MESSAGE(call) \
219 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_NET_FIRST, NET_NET_LAST)
220
221/** Check if the IPC call is a network interface layer message.
222 *
223 * @param[in] call IPC call to be checked.
224 *
225 */
226#define IS_NET_NIL_MESSAGE(call) \
227 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_NIL_FIRST, NET_NIL_LAST)
228
229/** Check if the IPC call is a packet manaagement system message.
230 *
231 * @param[in] call IPC call to be checked.
232 *
233 */
234#define IS_NET_PACKET_MESSAGE(call) \
235 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_PACKET_FIRST, NET_PACKET_LAST)
236
237/** Check if the IPC call is a socket message.
238 *
239 * @param[in] call IPC call to be checked.
240 *
241 */
242#define IS_NET_SOCKET_MESSAGE(call) \
243 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_SOCKET_FIRST, NET_SOCKET_LAST)
244
245/** Check if the IPC call is a TCP message.
246 *
247 * @param[in] call IPC call to be checked.
248 *
249 */
250#define IS_NET_TCP_MESSAGE(call) \
251 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_TCP_FIRST, NET_TCP_LAST)
252
253/** Check if the IPC call is a transport layer message.
254 *
255 * @param[in] call IPC call to be checked.
256 *
257 */
258#define IS_NET_TL_MESSAGE(call) \
259 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_TL_FIRST, NET_TL_LAST)
260
261/** Check if the IPC call is a UDP message.
262 *
263 * @param[in] call IPC call to be checked.
264 *
265 */
266#define IS_NET_UDP_MESSAGE(call) \
267 IS_IN_INTERVAL(IPC_GET_IMETHOD(call), NET_UDP_FIRST, NET_UDP_LAST)
268
269/*@}*/
270
271/** @name Networking specific message arguments definitions */
272/*@{*/
273
274/** Return the device identifier message argument.
275 *
276 * @param[in] call Message call structure.
277 *
278 */
279#define IPC_GET_DEVICE(call) ((device_id_t) IPC_GET_ARG1(call))
280
281/** Return the packet identifier message argument.
282 *
283 * @param[in] call Message call structure.
284 *
285 */
286#define IPC_GET_PACKET(call) ((packet_id_t) IPC_GET_ARG2(call))
287
288/** Return the count message argument.
289 *
290 * @param[in] call Message call structure.
291 *
292 */
293#define IPC_GET_COUNT(call) ((size_t) IPC_GET_ARG2(call))
294
295/** Return the device state message argument.
296 *
297 * @param[in] call Message call structure.
298 *
299 */
300#define IPC_GET_STATE(call) ((device_state_t) IPC_GET_ARG2(call))
301
302/** Return the maximum transmission unit message argument.
303 *
304 * @param[in] call Message call structure.
305 *
306 */
307#define IPC_GET_MTU(call) ((size_t) IPC_GET_ARG2(call))
308
309/** Return the device driver service message argument.
310 *
311 * @param[in] call Message call structure.
312 *
313 */
314#define IPC_GET_SERVICE(call) ((services_t) IPC_GET_ARG3(call))
315
316/** Return the target service message argument.
317 *
318 * @param[in] call Message call structure.
319 *
320 */
321#define IPC_GET_TARGET(call) ((services_t) IPC_GET_ARG3(call))
322
323/** Return the sender service message argument.
324 *
325 * @param[in] call Message call structure.
326 *
327 */
328#define IPC_GET_SENDER(call) ((services_t) IPC_GET_ARG3(call))
329
330/** Return the error service message argument.
331 &
332 * @param[in] call Message call structure.
333 *
334 */
335#define IPC_GET_ERROR(call) ((services_t) IPC_GET_ARG4(call))
336
337/** Set the device identifier in the message answer.
338 *
339 * @param[out] answer Message answer structure.
340 * @param[in] value Value to set.
341 *
342 */
343#define IPC_SET_DEVICE(answer, value) IPC_SET_ARG1(answer, (sysarg_t) (value))
344
345/** Set the minimum address length in the message answer.
346 *
347 * @param[out] answer Message answer structure.
348 * @param[in] value Value to set.
349 *
350 */
351#define IPC_SET_ADDR(answer, value) IPC_SET_ARG1(answer, (sysarg_t) (value))
352
353/** Set the minimum prefix size in the message answer.
354 *
355 * @param[out] answer Message answer structure.
356 * @param[in] value Value to set.
357 *
358 */
359#define IPC_SET_PREFIX(answer, value) IPC_SET_ARG2(answer, (sysarg_t) (value))
360
361/** Set the maximum content size in the message answer.
362 *
363 * @param[out] answer Message answer structure.
364 * @param[in] value Value to set.
365 *
366 */
367#define IPC_SET_CONTENT(answer, value) IPC_SET_ARG3(answer, (sysarg_t) (value))
368
369/** Set the minimum suffix size in the message answer.
370 *
371 * @param[out] answer Message answer structure.
372 * @param[in] value Value to set.
373 *
374 */
375#define IPC_SET_SUFFIX(answer, value) IPC_SET_ARG4(answer, (sysarg_t) (value))
376
377/*@}*/
378
379#endif
380
381/** @}
382 */
Note: See TracBrowser for help on using the repository browser.