Rev 4701 | Rev 4708 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4499 | mejdrech | 1 | /* |
2 | * Copyright (c) 2008 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 udp |
||
30 | * @{ |
||
31 | */ |
||
32 | |||
33 | /** @file |
||
4701 | mejdrech | 34 | * UDP module implementation. |
35 | * @see udp.h |
||
4499 | mejdrech | 36 | */ |
37 | |||
38 | #include <async.h> |
||
4700 | mejdrech | 39 | #include <fibril_sync.h> |
4579 | mejdrech | 40 | #include <malloc.h> |
4499 | mejdrech | 41 | |
42 | #include <ipc/ipc.h> |
||
43 | #include <ipc/services.h> |
||
44 | |||
45 | #include "../../err.h" |
||
46 | #include "../../messages.h" |
||
47 | #include "../../modules.h" |
||
4589 | mejdrech | 48 | |
49 | #include "../../structures/dynamic_fifo.h" |
||
4499 | mejdrech | 50 | #include "../../structures/packet/packet_client.h" |
51 | |||
4579 | mejdrech | 52 | #include "../../include/in.h" |
53 | #include "../../include/inet.h" |
||
4499 | mejdrech | 54 | #include "../../include/ip_client.h" |
55 | #include "../../include/ip_interface.h" |
||
56 | #include "../../include/ip_protocols.h" |
||
4707 | mejdrech | 57 | #include "../../include/icmp_client.h" |
58 | #include "../../include/icmp_interface.h" |
||
4579 | mejdrech | 59 | #include "../../include/socket.h" |
60 | #include "../../include/socket_errno.h" |
||
4499 | mejdrech | 61 | |
4579 | mejdrech | 62 | #include "../../socket/socket_core.h" |
63 | #include "../../socket/socket_messages.h" |
||
64 | |||
4499 | mejdrech | 65 | #include "../tl_messages.h" |
66 | |||
67 | #include "udp.h" |
||
4579 | mejdrech | 68 | #include "udp_header.h" |
4499 | mejdrech | 69 | #include "udp_module.h" |
70 | |||
4701 | mejdrech | 71 | /** Maximum UDP fragment size. |
72 | */ |
||
4589 | mejdrech | 73 | #define MAX_UDP_FRAGMENT_SIZE 65535 |
74 | |||
4701 | mejdrech | 75 | /** Free ports pool start. |
76 | */ |
||
4700 | mejdrech | 77 | #define UDP_FREE_PORTS_START 1025 |
4701 | mejdrech | 78 | |
79 | /** Free ports pool end. |
||
80 | */ |
||
4700 | mejdrech | 81 | #define UDP_FREE_PORTS_END 65535 |
82 | |||
4707 | mejdrech | 83 | /** Processes the received UDP packet queue. |
4701 | mejdrech | 84 | * Is used as an entry point from the underlying IP module. |
4707 | mejdrech | 85 | * Notifies the destination socket application. |
86 | * Releases the packet on error or send an ICMP error notification.. |
||
4701 | mejdrech | 87 | * @param device_id The device identifier. Ignored parameter. |
4707 | mejdrech | 88 | * @param packet The received packet queue. Input/output parameter. |
4701 | mejdrech | 89 | * @param receiver The target service. Ignored parameter. |
4707 | mejdrech | 90 | * @param error The packet error reporting service. Prefixes the received packet. Input parameter. |
4701 | mejdrech | 91 | * @returns EOK on success. |
92 | * @returns EINVAL if the packet is not valid. |
||
93 | * @returns EINVAL if the stored packet address is not the an_addr_t. |
||
94 | * @returns EINVAL if the packet does not contain any data. |
||
95 | * @returns NO_DATA if the packet content is shorter than the user datagram header. |
||
96 | * @returns ENOMEM if there is not enough memory left. |
||
97 | * @returns EADDRNOTAVAIL if the destination socket does not exist. |
||
98 | * @returns Other error codes as defined for the ip_client_process_packet() function. |
||
99 | */ |
||
4707 | mejdrech | 100 | int udp_received_msg( device_id_t device_id, packet_t packet, services_t receiver, services_t error ); |
4701 | mejdrech | 101 | |
4707 | mejdrech | 102 | /** Releases the packet and returns the result. |
103 | * @param packet The packet queue to be released. Input parameter. |
||
104 | * @param result The result to be returned. Input parameter. |
||
105 | * @return The result parameter. |
||
106 | */ |
||
107 | static int release_and_return( packet_t packet, int result ); |
||
108 | |||
109 | /** Sends the port unreachable ICMP notification. |
||
110 | * Sends the first packet and releases all the others. |
||
111 | * Releases the packet queu on error. |
||
112 | * @param packet The packet to be send. Input parameter. |
||
113 | * @param error The packet error reporting service. Prefixes the received packet. Input parameter. |
||
114 | */ |
||
115 | void udp_send_icmp_port_unreachable( packet_t packet, services_t error ); |
||
116 | |||
4701 | mejdrech | 117 | /** @name Socket messages processing functions |
118 | */ |
||
119 | /*@{*/ |
||
120 | |||
121 | /** Processes the socket client messages. |
||
122 | * Runs until the client module disconnects. |
||
123 | * @param callid The message identifier. Input parameter. |
||
124 | * @param call The message parameters. Input parameter. |
||
125 | * @returns EOK on success. |
||
126 | * @see socket.h |
||
127 | */ |
||
128 | int process_client_messages( ipc_callid_t callid, ipc_call_t call ); |
||
129 | |||
130 | /** Sends data from the socket to the remote address. |
||
131 | * Binds the socket to a free port if not already connected/bound. |
||
132 | * Handles the NET_SOCKET_SENDTO message. |
||
133 | * @param local_sockets The application local sockets. Input/output parameter. |
||
134 | * @param socket_id Socket identifier. Input parameter. |
||
135 | * @param addr The destination address. Input parameter. |
||
136 | * @param addrlen The address length. Input parameter. |
||
137 | * @param fragments The number of data fragments. Input parameter. |
||
138 | * @param flags Various send flags. Input parameter. |
||
139 | * @returns EOK on success. |
||
140 | * @returns EAFNOTSUPPORT if the address family is not supported. |
||
141 | * @returns ENOTSOCK if the socket is not found. |
||
142 | * @returns EINVAL if the address is invalid. |
||
143 | * @returns ENOTCONN if the sending socket is not and cannot be bound. |
||
144 | * @returns ENOMEM if there is not enough memory left. |
||
145 | * @returns Other error codes as defined for the socket_read_packet_data() function. |
||
146 | * @returns Other error codes as defined for the ip_client_prepare_packet() function. |
||
147 | * @returns Other error codes as defined for the ip_send_msg() function. |
||
148 | */ |
||
4589 | mejdrech | 149 | int udp_sendto_message( socket_cores_ref local_sockets, int socket_id, void * addr, size_t addrlen, int fragments, int flags ); |
4701 | mejdrech | 150 | |
151 | /** Receives data to the socket. |
||
152 | * Handles the NET_SOCKET_RECVFROM message. |
||
153 | * @param local_sockets The application local sockets. Input parameter. |
||
154 | * @param socket_id Socket identifier. Input parameter. |
||
155 | * @param flags Various receive flags. Input parameter. |
||
156 | * @returns The number of bytes received. |
||
157 | * @returns ENOTSOCK if the socket is not found. |
||
158 | * @returns NO_DATA if there are no received packets or data. |
||
159 | * @returns ENOMEM if there is not enough memory left. |
||
160 | * @returns EINVAL if the received address is not an IP address. |
||
161 | * @returns Other error codes as defined for the packet_translate() function. |
||
162 | * @returns Other error codes as defined for the socket_write_data() function. |
||
163 | */ |
||
4589 | mejdrech | 164 | int udp_recvfrom_message( socket_cores_ref local_sockets, int socket_id, int flags ); |
4701 | mejdrech | 165 | |
166 | /*@}*/ |
||
167 | |||
168 | /** Receives data from the socket. |
||
169 | * The received data buffer is allocated and returned. |
||
170 | * @param data The data buffer to be filled. Output parameter. |
||
171 | * @param length The buffer length. Output parameter. |
||
172 | * @returns EOK on success. |
||
173 | * @returns EBADMEM if the data or the length parameter is NULL. |
||
174 | * @returns EINVAL if the client does not send data. |
||
175 | * @returns ENOMEM if there is not enough memory left. |
||
176 | * @returns Other error codes as defined for the ipc_data_write_finalize() function. |
||
177 | */ |
||
4589 | mejdrech | 178 | int socket_read_data( void ** data, size_t * length ); |
4701 | mejdrech | 179 | |
180 | /** Receives data from the socket into a packet. |
||
181 | * @param packet The new created packet. Output parameter. |
||
182 | * @param prefix Reserved packet data prefix length. Input parameter. |
||
183 | * @param address_in The destination address to be set. Input parameter. |
||
184 | * @returns Number of bytes received. |
||
185 | * @returns EINVAL if the client does not send data. |
||
186 | * @returns ENOMEM if there is not enough memory left. |
||
187 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
||
188 | */ |
||
4589 | mejdrech | 189 | int socket_read_packet_data( packet_ref packet, size_t prefix, struct sockaddr_in * address_in ); |
4701 | mejdrech | 190 | |
191 | /** Replies the data to the socket. |
||
192 | * @param data The data buffer to be sent. Input parameter. |
||
193 | * @param data_length The buffer length. Input parameter. |
||
194 | * @returns EOK on success. |
||
195 | * @returns EINVAL if the client does not expect all the data. |
||
196 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
||
197 | */ |
||
4589 | mejdrech | 198 | int socket_write_data( void * data, size_t data_length ); |
4499 | mejdrech | 199 | |
4701 | mejdrech | 200 | /** UDP global data. |
201 | */ |
||
4499 | mejdrech | 202 | udp_globals_t udp_globals; |
203 | |||
204 | int udp_initialize( async_client_conn_t client_connection ){ |
||
4579 | mejdrech | 205 | ERROR_DECLARE; |
4499 | mejdrech | 206 | |
4700 | mejdrech | 207 | fibril_rwlock_initialize( & udp_globals.lock ); |
208 | fibril_rwlock_write_lock( & udp_globals.lock ); |
||
4707 | mejdrech | 209 | udp_globals.icmp_phone = icmp_connect_module( SERVICE_ICMP ); |
210 | if( udp_globals.icmp_phone < 0 ){ |
||
211 | return udp_globals.icmp_phone; |
||
212 | } |
||
4499 | mejdrech | 213 | udp_globals.ip_phone = ip_bind_service( SERVICE_IP, IPPROTO_UDP, SERVICE_UDP, client_connection, udp_received_msg ); |
4579 | mejdrech | 214 | if( udp_globals.ip_phone < 0 ){ |
215 | return udp_globals.ip_phone; |
||
216 | } |
||
217 | ERROR_PROPAGATE( ip_packet_size_req( udp_globals.ip_phone, -1, & udp_globals.addr_len, & udp_globals.prefix, & udp_globals.content, & udp_globals.suffix )); |
||
218 | ERROR_PROPAGATE( socket_ports_initialize( & udp_globals.sockets )); |
||
219 | udp_globals.prefix += sizeof( udp_header_t ); |
||
220 | udp_globals.content -= sizeof( udp_header_t ); |
||
4700 | mejdrech | 221 | udp_globals.last_used_port = UDP_FREE_PORTS_START - 1; |
222 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
||
4579 | mejdrech | 223 | return EOK; |
4499 | mejdrech | 224 | } |
225 | |||
4707 | mejdrech | 226 | int udp_received_msg( device_id_t device_id, packet_t packet, services_t receiver, services_t error ){ |
4589 | mejdrech | 227 | ERROR_DECLARE; |
228 | |||
229 | int length; |
||
4707 | mejdrech | 230 | int offset; |
231 | uint8_t * data; |
||
4589 | mejdrech | 232 | udp_header_ref header; |
233 | socket_core_ref * socket; |
||
234 | packet_t next_packet; |
||
235 | int total_length; |
||
236 | // uint16_t checksum; |
||
237 | int fragments; |
||
238 | packet_t tmp_packet; |
||
4707 | mejdrech | 239 | icmp_type_t type; |
240 | icmp_code_t code; |
||
4589 | mejdrech | 241 | |
4707 | mejdrech | 242 | if( error ){ |
243 | switch( error ){ |
||
244 | case SERVICE_ICMP: |
||
245 | // process error |
||
246 | // TODO remove debug dump |
||
247 | // length = icmp_client_header_length( packet ); |
||
248 | length = icmp_client_process_packet( packet, & type, & code, NULL, NULL ); |
||
249 | if( length < 0 ){ |
||
250 | return release_and_return( packet, length ); |
||
251 | } |
||
252 | printf( "ICMP error %d (%d) in packet %d\n", type, code, packet_get_id( packet ) ); |
||
253 | if( ERROR_OCCURRED( packet_trim( packet, length, 0 ))){ |
||
254 | return release_and_return( packet, ERROR_CODE ); |
||
255 | } |
||
256 | break; |
||
257 | default: |
||
258 | return release_and_return( packet, ENOTSUP ); |
||
259 | } |
||
260 | } |
||
4701 | mejdrech | 261 | // TODO process received ipopts? |
4707 | mejdrech | 262 | offset = ip_client_process_packet( packet, NULL, NULL, NULL, NULL, NULL ); |
263 | if( offset < 0 ){ |
||
264 | return release_and_return( packet, offset ); |
||
265 | } |
||
4589 | mejdrech | 266 | |
267 | length = packet_get_data_length( packet ); |
||
4707 | mejdrech | 268 | if( length <= 0 ){ |
269 | return release_and_return( packet, EINVAL ); |
||
270 | } |
||
271 | if( length < sizeof( udp_header_t ) + offset ){ |
||
272 | return release_and_return( packet, NO_DATA ); |
||
273 | } |
||
4499 | mejdrech | 274 | data = packet_get_data( packet ); |
4707 | mejdrech | 275 | if( ! data ){ |
276 | return release_and_return( packet, NO_DATA ); |
||
277 | } |
||
4589 | mejdrech | 278 | // get udp header |
4707 | mejdrech | 279 | header = ( udp_header_ref )( data + offset ); |
4589 | mejdrech | 280 | // find the destination socket |
281 | socket = socket_ports_find( & udp_globals.sockets, ntohs( header->dest )); |
||
4707 | mejdrech | 282 | if( ! socket ){ |
283 | udp_send_icmp_port_unreachable( packet, error ); |
||
284 | return EADDRNOTAVAIL; |
||
285 | } |
||
286 | // trim after successful processing to be able to send an ICMP error message! |
||
287 | ERROR_PROPAGATE( packet_trim( packet, offset, 0 )); |
||
4589 | mejdrech | 288 | // count the received packet fragments |
289 | next_packet = packet; |
||
290 | fragments = 0; |
||
291 | total_length = ntohs( header->len ); |
||
292 | do{ |
||
293 | ++ fragments; |
||
294 | length = packet_get_data_length( packet ); |
||
4707 | mejdrech | 295 | if( ! length ){ |
296 | return release_and_return( packet, NO_DATA ); |
||
297 | } |
||
4589 | mejdrech | 298 | if( total_length < length ){ |
299 | // cut of the suffix if too long |
||
4707 | mejdrech | 300 | if( ERROR_OCCURRED( packet_trim( next_packet, 0, length - total_length ))){ |
301 | return release_and_return( packet, ERROR_CODE ); |
||
302 | } |
||
4589 | mejdrech | 303 | // relese the rest of the packet fragments |
304 | tmp_packet = pq_next( next_packet ); |
||
305 | while( tmp_packet ){ |
||
306 | next_packet = pq_detach( tmp_packet ); |
||
307 | pq_release( udp_globals.net_phone, packet_get_id( tmp_packet )); |
||
308 | tmp_packet = next_packet; |
||
309 | } |
||
310 | break; |
||
311 | } |
||
312 | total_length -= length; |
||
313 | /* if( header->header_checksum ){ |
||
314 | } |
||
315 | */ |
||
316 | }while(( next_packet = pq_next( next_packet )) && ( total_length > 0 )); |
||
317 | // queue the received packet |
||
4707 | mejdrech | 318 | if( ERROR_OCCURRED( dyn_fifo_push( &( ** socket ).received, packet_get_id( packet ), SOCKET_MAX_RECEIVED_SIZE ))){ |
319 | return release_and_return( packet, ERROR_CODE ); |
||
320 | } |
||
4499 | mejdrech | 321 | |
4589 | mejdrech | 322 | // notify the destination socket |
323 | async_msg_2(( ** socket ).phone, NET_SOCKET_RECEIVED, ( ** socket ).socket_id, fragments ); |
||
4499 | mejdrech | 324 | return EOK; |
325 | } |
||
326 | |||
327 | int udp_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){ |
||
4505 | mejdrech | 328 | ERROR_DECLARE; |
329 | |||
330 | packet_t packet; |
||
331 | |||
4499 | mejdrech | 332 | * answer_count = 0; |
333 | switch( IPC_GET_METHOD( * call )){ |
||
334 | case NET_TL_RECEIVED: |
||
4700 | mejdrech | 335 | fibril_rwlock_read_lock( & udp_globals.lock ); |
336 | if( ! ERROR_OCCURRED( packet_translate( udp_globals.net_phone, & packet, IPC_GET_PACKET( call )))){ |
||
4707 | mejdrech | 337 | ERROR_CODE = udp_received_msg( IPC_GET_DEVICE( call ), packet, SERVICE_UDP, IPC_GET_ERROR( call )); |
4700 | mejdrech | 338 | } |
339 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
||
340 | return ERROR_CODE; |
||
4579 | mejdrech | 341 | case IPC_M_CONNECT_TO_ME: |
4701 | mejdrech | 342 | return process_client_messages( callid, * call ); |
4499 | mejdrech | 343 | } |
344 | return ENOTSUP; |
||
345 | } |
||
346 | |||
4701 | mejdrech | 347 | int process_client_messages( ipc_callid_t callid, ipc_call_t call ){ |
4579 | mejdrech | 348 | ERROR_DECLARE; |
349 | |||
350 | int res; |
||
351 | bool keep_on_going = true; |
||
352 | socket_cores_t local_sockets; |
||
4701 | mejdrech | 353 | int app_phone = IPC_GET_PHONE( & call ); |
4579 | mejdrech | 354 | void * addr; |
355 | size_t addrlen; |
||
4700 | mejdrech | 356 | fibril_rwlock_t lock; |
4701 | mejdrech | 357 | ipc_call_t answer; |
358 | int answer_count; |
||
4579 | mejdrech | 359 | |
360 | /* |
||
361 | * Accept the connection |
||
362 | * - Answer the first IPC_M_CONNECT_ME_TO call. |
||
363 | */ |
||
364 | ipc_answer_0( callid, EOK ); |
||
365 | |||
366 | socket_cores_initialize( & local_sockets ); |
||
4700 | mejdrech | 367 | fibril_rwlock_initialize( & lock ); |
4579 | mejdrech | 368 | |
369 | while( keep_on_going ){ |
||
370 | // refresh data |
||
4701 | mejdrech | 371 | answer_count = 0; |
372 | IPC_SET_RETVAL( answer, 0 ); |
||
4579 | mejdrech | 373 | // just to be precize |
4701 | mejdrech | 374 | IPC_SET_METHOD( answer, 0 ); |
375 | IPC_SET_ARG1( answer, 0 ); |
||
376 | IPC_SET_ARG2( answer, 0 ); |
||
377 | IPC_SET_ARG3( answer, 0 ); |
||
378 | IPC_SET_ARG4( answer, 0 ); |
||
379 | IPC_SET_ARG5( answer, 0 ); |
||
4579 | mejdrech | 380 | |
4701 | mejdrech | 381 | callid = async_get_call( & call ); |
4589 | mejdrech | 382 | // printf( "message %d\n", IPC_GET_METHOD( * call )); |
4579 | mejdrech | 383 | |
4701 | mejdrech | 384 | switch( IPC_GET_METHOD( call )){ |
4579 | mejdrech | 385 | case IPC_M_PHONE_HUNGUP: |
386 | keep_on_going = false; |
||
387 | res = EOK; |
||
388 | break; |
||
389 | case NET_SOCKET: |
||
4700 | mejdrech | 390 | fibril_rwlock_write_lock( & lock ); |
4589 | mejdrech | 391 | res = socket_create( & local_sockets, app_phone, SOCKET_SET_SOCKET_ID( answer )); |
4700 | mejdrech | 392 | fibril_rwlock_write_unlock( & lock ); |
4589 | mejdrech | 393 | * SOCKET_SET_HEADER_SIZE( answer ) = sizeof( udp_header_t ); |
394 | * SOCKET_SET_DATA_FRAGMENT_SIZE( answer ) = MAX_UDP_FRAGMENT_SIZE; |
||
4701 | mejdrech | 395 | answer_count = 3; |
4579 | mejdrech | 396 | break; |
397 | case NET_SOCKET_BIND: |
||
4589 | mejdrech | 398 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
4579 | mejdrech | 399 | res = ERROR_CODE; |
400 | break; |
||
401 | } |
||
4700 | mejdrech | 402 | fibril_rwlock_write_lock( & lock ); |
403 | fibril_rwlock_write_lock( & udp_globals.lock ); |
||
404 | res = socket_bind( & local_sockets, & udp_globals.sockets, SOCKET_GET_SOCKET_ID( call ), addr, addrlen, UDP_FREE_PORTS_START, UDP_FREE_PORTS_END, udp_globals.last_used_port ); |
||
405 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
||
406 | fibril_rwlock_write_unlock( & lock ); |
||
4579 | mejdrech | 407 | free( addr ); |
4701 | mejdrech | 408 | break; |
4579 | mejdrech | 409 | case NET_SOCKET_SENDTO: |
4589 | mejdrech | 410 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
4579 | mejdrech | 411 | res = ERROR_CODE; |
412 | break; |
||
413 | } |
||
4700 | mejdrech | 414 | fibril_rwlock_read_lock( & lock ); |
415 | fibril_rwlock_read_lock( & udp_globals.lock ); |
||
4589 | mejdrech | 416 | res = udp_sendto_message( & local_sockets, SOCKET_GET_SOCKET_ID( call ), addr, addrlen, SOCKET_GET_DATA_FRAGMENTS( call ), SOCKET_GET_FLAGS( call )); |
4700 | mejdrech | 417 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
418 | fibril_rwlock_read_unlock( & lock ); |
||
4579 | mejdrech | 419 | free( addr ); |
420 | break; |
||
421 | case NET_SOCKET_RECVFROM: |
||
4700 | mejdrech | 422 | fibril_rwlock_read_lock( & lock ); |
423 | fibril_rwlock_read_lock( & udp_globals.lock ); |
||
4589 | mejdrech | 424 | res = udp_recvfrom_message( & local_sockets, SOCKET_GET_SOCKET_ID( call ), SOCKET_GET_FLAGS( call )); |
4700 | mejdrech | 425 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
426 | fibril_rwlock_read_unlock( & lock ); |
||
4589 | mejdrech | 427 | if( res > 0 ){ |
428 | * SOCKET_SET_READ_DATA_LENGTH( answer ) = res; |
||
4603 | mejdrech | 429 | * SOCKET_SET_ADDRESS_LENGTH( answer ) = sizeof( struct sockaddr_in ); |
4701 | mejdrech | 430 | answer_count = 2; |
4589 | mejdrech | 431 | res = EOK; |
432 | } |
||
4579 | mejdrech | 433 | break; |
434 | case NET_SOCKET_CLOSE: |
||
4700 | mejdrech | 435 | fibril_rwlock_write_lock( & lock ); |
436 | fibril_rwlock_write_lock( & udp_globals.lock ); |
||
4579 | mejdrech | 437 | res = socket_destroy( udp_globals.net_phone, SOCKET_GET_SOCKET_ID( call ), & local_sockets, & udp_globals.sockets ); |
4700 | mejdrech | 438 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
439 | fibril_rwlock_write_unlock( & lock ); |
||
4579 | mejdrech | 440 | break; |
441 | case NET_SOCKET_GETSOCKOPT: |
||
442 | case NET_SOCKET_SETSOCKOPT: |
||
443 | default: |
||
444 | res = ENOTSUP; |
||
445 | break; |
||
446 | } |
||
447 | |||
4589 | mejdrech | 448 | // printf( "res = %d\n", res ); |
4579 | mejdrech | 449 | |
4701 | mejdrech | 450 | switch( answer_count ){ |
4579 | mejdrech | 451 | case 0: ipc_answer_0( callid, res ); |
452 | continue; |
||
4701 | mejdrech | 453 | case 1: ipc_answer_1( callid, res, IPC_GET_ARG1( answer )); |
4579 | mejdrech | 454 | continue; |
4701 | mejdrech | 455 | case 2: ipc_answer_2( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer )); |
4579 | mejdrech | 456 | continue; |
4701 | mejdrech | 457 | case 3: ipc_answer_3( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer ), IPC_GET_ARG3( answer )); |
4579 | mejdrech | 458 | continue; |
4701 | mejdrech | 459 | case 4: ipc_answer_4( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer ), IPC_GET_ARG3( answer ), IPC_GET_ARG4( answer )); |
4579 | mejdrech | 460 | continue; |
4701 | mejdrech | 461 | default: ipc_answer_5( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer ), IPC_GET_ARG3( answer ), IPC_GET_ARG4( answer ), IPC_GET_ARG5( answer )); |
4579 | mejdrech | 462 | continue; |
463 | } |
||
464 | } |
||
465 | |||
466 | socket_cores_destroy( & local_sockets ); |
||
467 | |||
468 | return EOK; |
||
469 | } |
||
470 | |||
4589 | mejdrech | 471 | int udp_sendto_message( socket_cores_ref local_sockets, int socket_id, void * addr, size_t addrlen, int fragments, int flags ){ |
4579 | mejdrech | 472 | ERROR_DECLARE; |
473 | |||
474 | socket_core_ref socket; |
||
475 | struct sockaddr * address; |
||
476 | struct sockaddr_in * address_in; |
||
477 | packet_t packet; |
||
4589 | mejdrech | 478 | packet_t next_packet; |
4579 | mejdrech | 479 | udp_header_ref header; |
4589 | mejdrech | 480 | int index; |
481 | int total_length; |
||
482 | int length; |
||
4579 | mejdrech | 483 | |
484 | if( addrlen < sizeof( struct sockaddr )) return EINVAL; |
||
485 | address = ( struct sockaddr * ) addr; |
||
486 | switch( address->sa_family ){ |
||
487 | case AF_INET: |
||
488 | if( addrlen != sizeof( struct sockaddr_in )) return EINVAL; |
||
489 | address_in = ( struct sockaddr_in * ) addr; |
||
490 | socket = socket_cores_find( local_sockets, socket_id ); |
||
491 | if( ! socket ) return ENOTSOCK; |
||
4589 | mejdrech | 492 | |
4700 | mejdrech | 493 | // bind the socket to a random free port if not bound |
494 | if( socket->port <= 0 ){ |
||
495 | // try to find a free port |
||
496 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
||
497 | fibril_rwlock_write_lock( & udp_globals.lock ); |
||
498 | ERROR_PROPAGATE( socket_bind_free_port( & udp_globals.sockets, socket, UDP_FREE_PORTS_START, UDP_FREE_PORTS_END, udp_globals.last_used_port )); |
||
499 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
||
500 | fibril_rwlock_read_lock( & udp_globals.lock ); |
||
501 | // set the next port as the search starting port number |
||
502 | udp_globals.last_used_port = socket->port; |
||
503 | } |
||
4579 | mejdrech | 504 | // TODO do not ask all the time |
505 | ERROR_PROPAGATE( ip_packet_size_req( udp_globals.ip_phone, -1, & udp_globals.addr_len, & udp_globals.prefix, & udp_globals.content, & udp_globals.suffix )); |
||
4589 | mejdrech | 506 | |
507 | // read the first packet fragment |
||
508 | total_length = socket_read_packet_data( & packet, sizeof( udp_header_t ), address_in ); |
||
509 | if( total_length < 0 ) return total_length; |
||
510 | // prefix the udp header |
||
4579 | mejdrech | 511 | header = PACKET_PREFIX( packet, udp_header_t ); |
512 | if( ! header ){ |
||
513 | pq_release( udp_globals.net_phone, packet_get_id( packet )); |
||
514 | return ENOMEM; |
||
515 | } |
||
4589 | mejdrech | 516 | // read the rest of the packet fragments |
517 | for( index = 1; index < fragments; ++ index ){ |
||
518 | length = socket_read_packet_data( & next_packet, 0, address_in ); |
||
519 | if( length < 0 ){ |
||
520 | pq_release( udp_globals.net_phone, packet_get_id( packet )); |
||
521 | return length; |
||
522 | } |
||
523 | packet = pq_add( packet, next_packet, index, 0 ); |
||
524 | total_length += length; |
||
525 | } |
||
526 | // set the udp header |
||
4579 | mejdrech | 527 | header->source = ( socket->port < 0 ) ? 0 : htons( socket->port ); |
528 | header->dest = htons( address_in->sin_port ); |
||
4589 | mejdrech | 529 | header->len = htons( total_length + sizeof( udp_header_t )); |
4579 | mejdrech | 530 | // TODO my ip address for the pseudo header checksum |
531 | header->check = 0; |
||
4589 | mejdrech | 532 | // prepare the first packet fragment |
4579 | mejdrech | 533 | if( ERROR_OCCURRED( ip_client_prepare_packet( packet, IPPROTO_UDP, 0, 0, 0, 0 ))){ |
534 | pq_release( udp_globals.net_phone, packet_get_id( packet )); |
||
535 | return ERROR_CODE; |
||
536 | } |
||
4589 | mejdrech | 537 | // send the packet |
4707 | mejdrech | 538 | return ip_send_msg( udp_globals.ip_phone, socket->device_id, packet, SERVICE_UDP, 0 ); |
4579 | mejdrech | 539 | // TODO IPv6 |
540 | default: |
||
541 | return EAFNOSUPPORT; |
||
542 | } |
||
543 | return EOK; |
||
544 | } |
||
545 | |||
4589 | mejdrech | 546 | int udp_recvfrom_message( socket_cores_ref local_sockets, int socket_id, int flags ){ |
4579 | mejdrech | 547 | ERROR_DECLARE; |
548 | |||
4589 | mejdrech | 549 | socket_core_ref socket; |
550 | int packet_id; |
||
551 | packet_t packet; |
||
552 | udp_header_ref header; |
||
553 | struct sockaddr_in address; |
||
554 | int length; |
||
555 | packet_t next_packet; |
||
556 | void * data; |
||
557 | int fragments; |
||
558 | int * lengths; |
||
559 | int index; |
||
560 | uint8_t * addr; |
||
561 | |||
562 | // find the socket |
||
563 | socket = socket_cores_find( local_sockets, socket_id ); |
||
564 | if( ! socket ) return ENOTSOCK; |
||
565 | // get the next received packet |
||
566 | packet_id = dyn_fifo_value( & socket->received ); |
||
4701 | mejdrech | 567 | if( packet_id < 0 ) return NO_DATA; |
4589 | mejdrech | 568 | ERROR_PROPAGATE( packet_translate( udp_globals.net_phone, & packet, packet_id )); |
569 | // get udp header |
||
570 | data = packet_get_data( packet ); |
||
571 | if( ! data ){ |
||
572 | pq_release( udp_globals.net_phone, packet_id ); |
||
573 | return NO_DATA; |
||
574 | } |
||
575 | header = ( udp_header_ref ) data; |
||
576 | // set the source address |
||
577 | address.sin_family = PF_INET; |
||
4603 | mejdrech | 578 | address.sin_port = ntohs( header->source ); |
4589 | mejdrech | 579 | length = packet_get_addr( packet, & addr, NULL ); |
580 | if( length != sizeof( address.sin_addr.s_addr )){ |
||
581 | pq_release( udp_globals.net_phone, packet_id ); |
||
582 | return EINVAL; |
||
583 | } |
||
584 | address.sin_addr.s_addr = *(( uint32_t * ) addr ); |
||
585 | bzero( & address.sin_zero, sizeof( address.sin_zero )); |
||
586 | // send the source address |
||
587 | ERROR_PROPAGATE( socket_write_data( & address, sizeof( address ))); |
||
588 | next_packet = pq_next( packet ); |
||
589 | if( ! next_packet ){ |
||
590 | // write all if only one fragment |
||
591 | ERROR_PROPAGATE( socket_write_data( data + sizeof( udp_header_t ), packet_get_data_length( packet ) - sizeof( udp_header_t ))); |
||
592 | // store the total length |
||
593 | length = packet_get_data_length( packet ) - sizeof( udp_header_t ); |
||
594 | }else{ |
||
595 | // count the packet fragments |
||
596 | fragments = 1; |
||
597 | next_packet = pq_next( packet ); |
||
598 | while(( next_packet = pq_next( next_packet ))){ |
||
599 | ++ fragments; |
||
600 | } |
||
601 | // compute and store the fragment lengths |
||
602 | lengths = ( int * ) malloc( sizeof( int ) * ( fragments + 1 )); |
||
603 | if( ! lengths ) return ENOMEM; |
||
604 | lengths[ 0 ] = packet_get_data_length( packet ) - sizeof( udp_header_t ); |
||
605 | lengths[ fragments ] = lengths[ 0 ]; |
||
606 | next_packet = pq_next( packet ); |
||
607 | for( index = 1; index < fragments; ++ index ){ |
||
608 | lengths[ index ] = packet_get_data_length( next_packet ); |
||
609 | lengths[ fragments ] += lengths[ index ]; |
||
610 | next_packet = pq_next( packet ); |
||
611 | }while( next_packet ); |
||
612 | // write the fragment lengths |
||
613 | ERROR_PROPAGATE( socket_write_data( lengths, sizeof( int ) * ( fragments + 1 ))); |
||
614 | // write the first fragment |
||
615 | ERROR_PROPAGATE( socket_write_data( data + sizeof( udp_header_t ), lengths[ 0 ] )); |
||
616 | next_packet = pq_next( packet ); |
||
617 | // write the rest of the fragments |
||
618 | for( index = 1; index < fragments; ++ index ){ |
||
619 | ERROR_PROPAGATE( socket_write_data( packet_get_data( next_packet ), lengths[ index ] )); |
||
620 | next_packet = pq_next( packet ); |
||
621 | }while( next_packet ); |
||
622 | // store the total length |
||
623 | length = lengths[ fragments ]; |
||
624 | free( lengths ); |
||
625 | } |
||
626 | // release the packet |
||
627 | dyn_fifo_pop( & socket->received ); |
||
628 | pq_release( udp_globals.net_phone, packet_get_id( packet )); |
||
629 | // return the total length |
||
630 | return length; |
||
631 | } |
||
632 | |||
633 | int socket_write_data( void * data, size_t data_length ){ |
||
634 | size_t length; |
||
4579 | mejdrech | 635 | ipc_callid_t callid; |
636 | |||
4589 | mejdrech | 637 | if(( ! ipc_data_read_receive( & callid, & length )) |
638 | || ( length < data_length )){ |
||
639 | return EINVAL; |
||
640 | } |
||
641 | return ipc_data_read_finalize( callid, data, data_length ); |
||
642 | } |
||
643 | |||
644 | int socket_read_data( void ** data, size_t * length ){ |
||
645 | ERROR_DECLARE; |
||
646 | |||
647 | ipc_callid_t callid; |
||
648 | |||
4579 | mejdrech | 649 | if( !( data && length )) return EBADMEM; |
650 | if( ! ipc_data_write_receive( & callid, length )) return EINVAL; |
||
651 | * data = malloc( * length ); |
||
4701 | mejdrech | 652 | if( !( * data )) return ENOMEM; |
4579 | mejdrech | 653 | if( ERROR_OCCURRED( ipc_data_write_finalize( callid, * data, * length ))){ |
654 | free( data ); |
||
655 | return ERROR_CODE; |
||
656 | } |
||
657 | return EOK; |
||
658 | } |
||
659 | |||
4589 | mejdrech | 660 | int socket_read_packet_data( packet_ref packet, size_t prefix, struct sockaddr_in * address_in ){ |
661 | ERROR_DECLARE; |
||
662 | |||
663 | ipc_callid_t callid; |
||
664 | size_t length; |
||
665 | void * data; |
||
666 | |||
667 | // get the data length |
||
668 | if( ! ipc_data_write_receive( & callid, & length )) return EINVAL; |
||
669 | // get a new packet |
||
670 | * packet = packet_get_4( udp_globals.net_phone, length, udp_globals.addr_len, prefix + udp_globals.prefix, udp_globals.suffix ); |
||
671 | if( ! packet ) return ENOMEM; |
||
672 | // allocate space in the packet |
||
673 | data = packet_suffix( * packet, length ); |
||
674 | if( ! data ){ |
||
675 | pq_release( udp_globals.net_phone, packet_get_id( * packet )); |
||
676 | return ENOMEM; |
||
677 | } |
||
678 | // read the data into the packet |
||
679 | if( ERROR_OCCURRED( ipc_data_write_finalize( callid, data, length )) |
||
680 | // set the packet destination address |
||
681 | || ERROR_OCCURRED( packet_set_addr( * packet, NULL, ( uint8_t * ) & address_in->sin_addr.s_addr, sizeof( address_in->sin_addr.s_addr )))){ |
||
682 | pq_release( udp_globals.net_phone, packet_get_id( * packet )); |
||
683 | return ERROR_CODE; |
||
684 | } |
||
685 | return length; |
||
686 | } |
||
687 | |||
4707 | mejdrech | 688 | static int release_and_return( packet_t packet, int result ){ |
689 | pq_release( udp_globals.net_phone, packet_get_id( packet )); |
||
690 | return result; |
||
691 | } |
||
692 | |||
693 | void udp_send_icmp_port_unreachable( packet_t packet, services_t error ){ |
||
694 | packet_t next; |
||
695 | uint8_t * src; |
||
696 | int length; |
||
697 | |||
698 | // detach the first packet and release the others |
||
699 | next = pq_detach( packet ); |
||
700 | if( next ){ |
||
701 | pq_release( udp_globals.net_phone, packet_get_id( next )); |
||
702 | } |
||
703 | length = packet_get_addr( packet, & src, NULL ); |
||
704 | if(( length > 0 ) |
||
705 | && ( ! error ) |
||
706 | && ( udp_globals.icmp_phone >= 0 ) |
||
707 | // set both addresses to the source one (avoids the source address deletion before setting the destination one) |
||
708 | && ( packet_set_addr( packet, src, src, length ) == EOK )){ |
||
709 | icmp_destination_unreachable_msg( udp_globals.icmp_phone, ICMP_PORT_UNREACH, 0, packet ); |
||
710 | }else{ |
||
711 | return release_and_return( packet, EINVAL ); |
||
712 | } |
||
713 | } |
||
714 | |||
4499 | mejdrech | 715 | /** @} |
716 | */ |