Rev 4502 | Rev 4703 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3466 | mejdrech | 1 | /* |
3912 | mejdrech | 2 | * Copyright (c) 2009 Lukas Mejdrech |
3466 | 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 net |
||
3912 | mejdrech | 30 | * @{ |
3466 | mejdrech | 31 | */ |
32 | |||
33 | /** @file |
||
34 | */ |
||
35 | |||
3846 | mejdrech | 36 | #ifndef __NET_MESSAGES_H__ |
37 | #define __NET_MESSAGES_H__ |
||
38 | |||
4261 | mejdrech | 39 | #include <async.h> |
40 | |||
41 | #include <ipc/ipc.h> |
||
42 | #include <ipc/services.h> |
||
43 | |||
44 | #include "include/device.h" |
||
45 | |||
46 | #include "structures/measured_strings.h" |
||
47 | #include "structures/packet/packet.h" |
||
48 | |||
3991 | mejdrech | 49 | #define NET_NETIF_COUNT 8 |
3846 | mejdrech | 50 | #define NET_NET_COUNT 9 |
4261 | mejdrech | 51 | #define NET_NIL_COUNT 7 |
3846 | mejdrech | 52 | #define NET_ETH_COUNT 0 |
4502 | mejdrech | 53 | #define NET_IL_COUNT 5 |
54 | #define NET_IP_COUNT 2 |
||
3846 | mejdrech | 55 | #define NET_ARP_COUNT 4 |
3666 | mejdrech | 56 | #define NET_RARP_COUNT 0 |
57 | #define NET_ICMP_COUNT 0 |
||
4502 | mejdrech | 58 | #define NET_TL_COUNT 1 |
3666 | mejdrech | 59 | #define NET_UDP_COUNT 0 |
60 | #define NET_TCP_COUNT 0 |
||
3901 | mejdrech | 61 | #define NET_PACKET_COUNT 5 |
4578 | mejdrech | 62 | #define NET_SOCKET_COUNT 14 |
3666 | mejdrech | 63 | |
4307 | mejdrech | 64 | #define NET_FIRST 2000 |
3666 | mejdrech | 65 | |
66 | #define NET_NETIF_FIRST NET_FIRST |
||
67 | #define NET_NETIF_LAST ( NET_NETIF_FIRST + NET_NETIF_COUNT ) |
||
68 | |||
3846 | mejdrech | 69 | #define NET_NET_FIRST ( NET_NETIF_LAST + 0 ) |
70 | #define NET_NET_LAST ( NET_NET_FIRST + NET_NET_COUNT ) |
||
3666 | mejdrech | 71 | |
3846 | mejdrech | 72 | #define NET_NIL_FIRST ( NET_NET_LAST + 0 ) |
73 | #define NET_NIL_LAST ( NET_NIL_FIRST + NET_NIL_COUNT ) |
||
74 | #define NET_ETH_FIRST ( NET_NIL_LAST + 0 ) |
||
75 | #define NET_ETH_LAST ( NET_ETH_FIRST + NET_ETH_COUNT ) |
||
3666 | mejdrech | 76 | |
3846 | mejdrech | 77 | #define NET_IL_FIRST ( NET_ETH_LAST + 0 ) |
4307 | mejdrech | 78 | #define NET_IL_LAST ( NET_IL_FIRST + NET_IL_COUNT ) |
3666 | mejdrech | 79 | #define NET_IP_FIRST ( NET_IL_LAST + 0 ) |
4307 | mejdrech | 80 | #define NET_IP_LAST ( NET_IP_FIRST + NET_IP_COUNT ) |
3666 | mejdrech | 81 | |
3466 | mejdrech | 82 | #define NET_ARP_FIRST ( NET_IP_LAST + 0 ) |
3666 | mejdrech | 83 | #define NET_ARP_LAST ( NET_ARP_FIRST + NET_ARP_COUNT ) |
3466 | mejdrech | 84 | #define NET_RARP_FIRST ( NET_ARP_LAST + 0 ) |
3666 | mejdrech | 85 | #define NET_RARP_LAST ( NET_RARP_FIRST + NET_RARP_COUNT ) |
3466 | mejdrech | 86 | #define NET_ICMP_FIRST ( NET_RARP_LAST + 0 ) |
3666 | mejdrech | 87 | #define NET_ICMP_LAST ( NET_ICMP_FIRST + NET_ICMP_COUNT ) |
4502 | mejdrech | 88 | |
89 | #define NET_TL_FIRST ( NET_ICMP_LAST + 0 ) |
||
90 | #define NET_TL_LAST ( NET_TL_FIRST + NET_TL_COUNT ) |
||
91 | #define NET_UDP_FIRST ( NET_TL_LAST + 0 ) |
||
3666 | mejdrech | 92 | #define NET_UDP_LAST ( NET_UDP_FIRST + NET_UDP_COUNT ) |
3466 | mejdrech | 93 | #define NET_TCP_FIRST ( NET_UDP_LAST + 0 ) |
3666 | mejdrech | 94 | #define NET_TCP_LAST ( NET_TCP_FIRST + NET_TCP_COUNT ) |
95 | |||
3466 | mejdrech | 96 | #define NET_SOCKET_FIRST ( NET_TCP_LAST + 0 ) |
3666 | mejdrech | 97 | #define NET_SOCKET_LAST ( NET_SOCKET_FIRST + NET_SOCKET_COUNT ) |
3466 | mejdrech | 98 | |
3901 | mejdrech | 99 | #define NET_PACKET_FIRST ( NET_SOCKET_LAST + 0 ) |
100 | #define NET_PACKET_LAST ( NET_PACKET_FIRST + NET_PACKET_COUNT ) |
||
3666 | mejdrech | 101 | |
4307 | mejdrech | 102 | #define NET_LAST NET_PACKET_LAST |
3901 | mejdrech | 103 | |
4307 | mejdrech | 104 | #define NET_COUNT ( NET_LAST - NET_FIRST ) |
3666 | mejdrech | 105 | |
106 | #define IS_IN_INTERVAL( item, first_inclusive, last_exclusive ) ((( item ) >= ( first_inclusive )) && (( item ) < ( last_exclusive ))) |
||
107 | |||
3901 | mejdrech | 108 | #define IS_NET_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_FIRST, NET_LAST ) |
109 | #define IS_NET_NET_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_NET_FIRST, NET_NET_LAST ) |
||
110 | #define IS_NET_NIL_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_NIL_FIRST, NET_NIL_LAST ) |
||
111 | #define IS_NET_ETH_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_ETH_FIRST, NET_ETH_LAST ) |
||
112 | #define IS_NET_IL_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_IL_FIRST, NET_IL_LAST ) |
||
113 | #define IS_NET_IP_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_IP_FIRST, NET_IP_LAST ) |
||
114 | #define IS_NET_ARP_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_ARP_FIRST, NET_ARP_LAST ) |
||
115 | #define IS_NET_RARP_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_RARP_FIRST, NET_RARP_LAST ) |
||
4502 | mejdrech | 116 | #define IS_NET_TL_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_TL_FIRST, NET_TL_LAST ) |
3901 | mejdrech | 117 | #define IS_NET_UDP_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_UDP_FIRST, NET_UDP_LAST ) |
118 | #define IS_NET_TCP_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_TCP_FIRST, NET_TCP_LAST ) |
||
119 | #define IS_NET_SOCKET_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_SOCKET_FIRST, NET_SOCKET_LAST ) |
||
120 | #define IS_NET_PACKET_MESSAGE( call ) IS_IN_INTERVAL( IPC_GET_METHOD( * call ), NET_PACKET_FIRST, NET_PACKET_LAST ) |
||
3666 | mejdrech | 121 | |
4261 | mejdrech | 122 | /** Returns the device identifier message parameter. |
123 | */ |
||
124 | #define IPC_GET_DEVICE( call ) ( device_id_t ) IPC_GET_ARG1( * call ) |
||
125 | |||
126 | /** Returns the packet identifier message parameter. |
||
127 | */ |
||
128 | #define IPC_GET_PACKET( call ) ( packet_id_t ) IPC_GET_ARG2( * call ) |
||
4502 | mejdrech | 129 | #define IPC_GET_COUNT( call ) ( size_t ) IPC_GET_ARG2( * call ) |
4261 | mejdrech | 130 | #define IPC_GET_STATE( call ) ( device_state_t ) IPC_GET_ARG2( * call ) |
131 | |||
132 | /** Returns the device driver service message parameter. |
||
133 | */ |
||
134 | #define IPC_GET_SERVICE( call ) ( services_t ) IPC_GET_ARG3( * call ) |
||
135 | #define IPC_GET_TARGET( call ) ( services_t ) IPC_GET_ARG3( * call ) |
||
136 | #define IPC_GET_SENDER( call ) ( services_t ) IPC_GET_ARG3( * call ) |
||
137 | |||
4243 | mejdrech | 138 | #define IPC_GET_PHONE( call ) ( int ) IPC_GET_ARG5( * call ) |
139 | |||
4261 | mejdrech | 140 | #define IPC_SET_ADDR( answer ) (( size_t * ) & IPC_GET_ARG1( * answer )) |
141 | #define IPC_SET_PREFIX( answer ) (( size_t * ) & IPC_GET_ARG2( * answer )) |
||
142 | #define IPC_SET_CONTENT( answer ) (( size_t * ) & IPC_GET_ARG3( * answer )) |
||
143 | #define IPC_SET_SUFFIX( answer ) (( size_t * ) & IPC_GET_ARG4( * answer )) |
||
144 | |||
3466 | mejdrech | 145 | typedef enum { |
3846 | mejdrech | 146 | /* () not supported, registers new device */ |
147 | NET_NET_DEVICE = NET_NET_FIRST, |
||
3901 | mejdrech | 148 | /* ( NULL, count ), measured_strings_send( names ), measured_strings_return( values ) */ |
3846 | mejdrech | 149 | NET_NET_GET_CONF, |
3901 | mejdrech | 150 | /* ( device_id, count ), measured_strings_send( names ), measured_strings_return( values ) */ |
3846 | mejdrech | 151 | NET_NET_GET_DEVICE_CONF, |
152 | /* () not supported, measured_strings_send( names ), measured_strings_send( values ) */ |
||
153 | NET_NET_SET_CONF, |
||
3901 | mejdrech | 154 | /* ( device_id, count ) not supported, measured_strings_send( names ), measured_strings_send( values ) */ |
3846 | mejdrech | 155 | NET_NET_SET_DEVICE_CONF, |
156 | /* () */ |
||
157 | NET_NET_STARTUP, |
||
158 | /* ( device_id ) */ |
||
159 | NET_NET_START, |
||
160 | /* ( device_id ) */ |
||
161 | NET_NET_STOP, |
||
162 | /* ( device_id ) ipc_data_read( stats ) */ |
||
163 | NET_NET_STATS, |
||
3901 | mejdrech | 164 | } net_messages; |
3466 | mejdrech | 165 | |
4261 | mejdrech | 166 | static inline int generic_get_addr( int phone, int message, device_id_t device_id, measured_string_ref * address, char ** data ){ |
167 | aid_t message_id; |
||
168 | ipcarg_t result; |
||
169 | int string; |
||
170 | |||
171 | if( !( address && data )) return EBADMEM; |
||
4307 | mejdrech | 172 | message_id = async_send_1( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, NULL ); |
4261 | mejdrech | 173 | string = measured_strings_return( phone, address, data, 1 ); |
174 | async_wait_for( message_id, & result ); |
||
175 | if(( string == EOK ) && ( result != EOK )){ |
||
176 | free( * address ); |
||
177 | free( * data ); |
||
178 | } |
||
4307 | mejdrech | 179 | return ( int ) result; |
4261 | mejdrech | 180 | } |
181 | |||
4307 | mejdrech | 182 | static inline int generic_translate_req( int phone, int message, device_id_t device_id, services_t service, measured_string_ref configuration, size_t count, measured_string_ref * translation, char ** data ){ |
183 | aid_t message_id; |
||
184 | ipcarg_t result; |
||
185 | int string; |
||
186 | |||
187 | if( !( configuration && ( count > 0 ))) return EINVAL; |
||
188 | if( !( translation && data )) return EBADMEM; |
||
189 | message_id = async_send_3( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t ) count, ( ipcarg_t ) service, NULL ); |
||
190 | measured_strings_send( phone, configuration, count ); |
||
191 | string = measured_strings_return( phone, translation, data, count ); |
||
192 | async_wait_for( message_id, & result ); |
||
193 | if(( string == EOK ) && ( result != EOK )){ |
||
194 | free( * translation ); |
||
195 | free( * data ); |
||
196 | } |
||
197 | return ( int ) result; |
||
4261 | mejdrech | 198 | } |
199 | |||
4307 | mejdrech | 200 | static inline int generic_send_msg( int phone, int message, device_id_t device_id, packet_id_t packet_id, services_t sender ){ |
201 | async_msg_3( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t ) packet_id, ( ipcarg_t ) sender ); |
||
202 | return EOK; |
||
203 | } |
||
204 | |||
4261 | mejdrech | 205 | static inline int generic_packet_size_req( int phone, int message, device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix ){ |
4307 | mejdrech | 206 | return ( int ) async_req_1_4( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t * ) addr_len, ( ipcarg_t * ) prefix, ( ipcarg_t * ) content, ( ipcarg_t * ) suffix ); |
4261 | mejdrech | 207 | } |
208 | |||
4351 | mejdrech | 209 | static inline int generic_device_state_msg( int phone, int message, device_id_t device_id, int state, services_t target ){ |
210 | async_msg_3( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t ) state, target ); |
||
4307 | mejdrech | 211 | return EOK; |
4261 | mejdrech | 212 | } |
213 | |||
4307 | mejdrech | 214 | static inline int generic_received_msg( int phone, int message, device_id_t device_id, packet_id_t packet_id, services_t target ){ |
215 | async_msg_3( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t ) packet_id, ( ipcarg_t ) target ); |
||
216 | return EOK; |
||
4261 | mejdrech | 217 | } |
218 | |||
219 | static inline int generic_device_req( int phone, int message, device_id_t device_id, int arg2, services_t service ){ |
||
4307 | mejdrech | 220 | return ( int ) async_req_3_0( phone, ( ipcarg_t ) message, ( ipcarg_t ) device_id, ( ipcarg_t ) arg2, ( ipcarg_t ) service ); |
4261 | mejdrech | 221 | } |
222 | |||
3846 | mejdrech | 223 | #endif |
224 | |||
3466 | mejdrech | 225 | /** @} |
226 | */ |