Rev 4700 | Rev 4707 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4700 | Rev 4701 | ||
|---|---|---|---|
| Line 29... | Line 29... | ||
| 29 | /** @addtogroup udp |
29 | /** @addtogroup udp |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| 32 | 32 | ||
| 33 | /** @file |
33 | /** @file |
| - | 34 | * UDP module implementation. |
|
| - | 35 | * @see udp.h |
|
| 34 | */ |
36 | */ |
| 35 | 37 | ||
| 36 | #include <async.h> |
38 | #include <async.h> |
| 37 | #include <fibril_sync.h> |
39 | #include <fibril_sync.h> |
| 38 | #include <malloc.h> |
40 | #include <malloc.h> |
| Line 63... | Line 65... | ||
| 63 | 65 | ||
| 64 | #include "udp.h" |
66 | #include "udp.h" |
| 65 | #include "udp_header.h" |
67 | #include "udp_header.h" |
| 66 | #include "udp_module.h" |
68 | #include "udp_module.h" |
| 67 | 69 | ||
| - | 70 | /** Maximum UDP fragment size. |
|
| - | 71 | */ |
|
| 68 | #define MAX_UDP_FRAGMENT_SIZE 65535 |
72 | #define MAX_UDP_FRAGMENT_SIZE 65535 |
| 69 | 73 | ||
| - | 74 | /** Free ports pool start. |
|
| - | 75 | */ |
|
| 70 | #define UDP_FREE_PORTS_START 1025 |
76 | #define UDP_FREE_PORTS_START 1025 |
| - | 77 | ||
| - | 78 | /** Free ports pool end. |
|
| - | 79 | */ |
|
| 71 | #define UDP_FREE_PORTS_END 65535 |
80 | #define UDP_FREE_PORTS_END 65535 |
| 72 | 81 | ||
| - | 82 | /** Processes the received UDP packet. |
|
| - | 83 | * Is used as an entry point from the underlying IP module. |
|
| - | 84 | * Releases the packet on error. |
|
| - | 85 | * @param device_id The device identifier. Ignored parameter. |
|
| - | 86 | * @param packet The received packet. Input/output parameter. |
|
| - | 87 | * @param receiver The target service. Ignored parameter. |
|
| - | 88 | * @returns EOK on success. |
|
| - | 89 | * @returns Other error codes as defined for the udp_process_packet() function. |
|
| - | 90 | */ |
|
| 73 | int udp_received_msg( device_id_t device_id, packet_t packet, services_t receiver ); |
91 | int udp_received_msg( device_id_t device_id, packet_t packet, services_t receiver ); |
| - | 92 | ||
| - | 93 | /** Processes the received UDP packet. |
|
| - | 94 | * Notifies the destination socket application. |
|
| - | 95 | * @param packet The received packet. Input/output parameter. |
|
| - | 96 | * @returns EOK on success. |
|
| - | 97 | * @returns EINVAL if the packet is not valid. |
|
| - | 98 | * @returns EINVAL if the stored packet address is not the an_addr_t. |
|
| - | 99 | * @returns EINVAL if the packet does not contain any data. |
|
| - | 100 | * @returns NO_DATA if the packet content is shorter than the user datagram header. |
|
| - | 101 | * @returns ENOMEM if there is not enough memory left. |
|
| - | 102 | * @returns EADDRNOTAVAIL if the destination socket does not exist. |
|
| - | 103 | * @returns Other error codes as defined for the ip_client_process_packet() function. |
|
| - | 104 | */ |
|
| 74 | int udp_process_packet( packet_t packet ); |
105 | int udp_process_packet( packet_t packet ); |
| - | 106 | ||
| - | 107 | /** @name Socket messages processing functions |
|
| - | 108 | */ |
|
| - | 109 | /*@{*/ |
|
| - | 110 | ||
| - | 111 | /** Processes the socket client messages. |
|
| - | 112 | * Runs until the client module disconnects. |
|
| - | 113 | * @param callid The message identifier. Input parameter. |
|
| - | 114 | * @param call The message parameters. Input parameter. |
|
| - | 115 | * @returns EOK on success. |
|
| - | 116 | * @see socket.h |
|
| - | 117 | */ |
|
| 75 | int process_client_messages( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
118 | int process_client_messages( ipc_callid_t callid, ipc_call_t call ); |
| - | 119 | ||
| - | 120 | /** Sends data from the socket to the remote address. |
|
| - | 121 | * Binds the socket to a free port if not already connected/bound. |
|
| - | 122 | * Handles the NET_SOCKET_SENDTO message. |
|
| - | 123 | * @param local_sockets The application local sockets. Input/output parameter. |
|
| - | 124 | * @param socket_id Socket identifier. Input parameter. |
|
| - | 125 | * @param addr The destination address. Input parameter. |
|
| - | 126 | * @param addrlen The address length. Input parameter. |
|
| - | 127 | * @param fragments The number of data fragments. Input parameter. |
|
| - | 128 | * @param flags Various send flags. Input parameter. |
|
| - | 129 | * @returns EOK on success. |
|
| - | 130 | * @returns EAFNOTSUPPORT if the address family is not supported. |
|
| - | 131 | * @returns ENOTSOCK if the socket is not found. |
|
| - | 132 | * @returns EINVAL if the address is invalid. |
|
| - | 133 | * @returns ENOTCONN if the sending socket is not and cannot be bound. |
|
| - | 134 | * @returns ENOMEM if there is not enough memory left. |
|
| - | 135 | * @returns Other error codes as defined for the socket_read_packet_data() function. |
|
| - | 136 | * @returns Other error codes as defined for the ip_client_prepare_packet() function. |
|
| - | 137 | * @returns Other error codes as defined for the ip_send_msg() function. |
|
| - | 138 | */ |
|
| 76 | int udp_sendto_message( socket_cores_ref local_sockets, int socket_id, void * addr, size_t addrlen, int fragments, int flags ); |
139 | int udp_sendto_message( socket_cores_ref local_sockets, int socket_id, void * addr, size_t addrlen, int fragments, int flags ); |
| - | 140 | ||
| - | 141 | /** Receives data to the socket. |
|
| - | 142 | * Handles the NET_SOCKET_RECVFROM message. |
|
| - | 143 | * @param local_sockets The application local sockets. Input parameter. |
|
| - | 144 | * @param socket_id Socket identifier. Input parameter. |
|
| - | 145 | * @param flags Various receive flags. Input parameter. |
|
| - | 146 | * @returns The number of bytes received. |
|
| - | 147 | * @returns ENOTSOCK if the socket is not found. |
|
| - | 148 | * @returns NO_DATA if there are no received packets or data. |
|
| - | 149 | * @returns ENOMEM if there is not enough memory left. |
|
| - | 150 | * @returns EINVAL if the received address is not an IP address. |
|
| - | 151 | * @returns Other error codes as defined for the packet_translate() function. |
|
| - | 152 | * @returns Other error codes as defined for the socket_write_data() function. |
|
| - | 153 | */ |
|
| 77 | int udp_recvfrom_message( socket_cores_ref local_sockets, int socket_id, int flags ); |
154 | int udp_recvfrom_message( socket_cores_ref local_sockets, int socket_id, int flags ); |
| - | 155 | ||
| - | 156 | /*@}*/ |
|
| - | 157 | ||
| - | 158 | /** Receives data from the socket. |
|
| - | 159 | * The received data buffer is allocated and returned. |
|
| - | 160 | * @param data The data buffer to be filled. Output parameter. |
|
| - | 161 | * @param length The buffer length. Output parameter. |
|
| - | 162 | * @returns EOK on success. |
|
| - | 163 | * @returns EBADMEM if the data or the length parameter is NULL. |
|
| - | 164 | * @returns EINVAL if the client does not send data. |
|
| - | 165 | * @returns ENOMEM if there is not enough memory left. |
|
| - | 166 | * @returns Other error codes as defined for the ipc_data_write_finalize() function. |
|
| - | 167 | */ |
|
| 78 | int socket_read_data( void ** data, size_t * length ); |
168 | int socket_read_data( void ** data, size_t * length ); |
| - | 169 | ||
| - | 170 | /** Receives data from the socket into a packet. |
|
| - | 171 | * @param packet The new created packet. Output parameter. |
|
| - | 172 | * @param prefix Reserved packet data prefix length. Input parameter. |
|
| - | 173 | * @param address_in The destination address to be set. Input parameter. |
|
| - | 174 | * @returns Number of bytes received. |
|
| - | 175 | * @returns EINVAL if the client does not send data. |
|
| - | 176 | * @returns ENOMEM if there is not enough memory left. |
|
| - | 177 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
|
| - | 178 | */ |
|
| 79 | int socket_read_packet_data( packet_ref packet, size_t prefix, struct sockaddr_in * address_in ); |
179 | int socket_read_packet_data( packet_ref packet, size_t prefix, struct sockaddr_in * address_in ); |
| - | 180 | ||
| - | 181 | /** Replies the data to the socket. |
|
| - | 182 | * @param data The data buffer to be sent. Input parameter. |
|
| - | 183 | * @param data_length The buffer length. Input parameter. |
|
| - | 184 | * @returns EOK on success. |
|
| - | 185 | * @returns EINVAL if the client does not expect all the data. |
|
| - | 186 | * @returns Other error codes as defined for the ipc_data_read_finalize() function. |
|
| - | 187 | */ |
|
| 80 | int socket_write_data( void * data, size_t data_length ); |
188 | int socket_write_data( void * data, size_t data_length ); |
| 81 | 189 | ||
| - | 190 | /** UDP global data. |
|
| - | 191 | */ |
|
| 82 | udp_globals_t udp_globals; |
192 | udp_globals_t udp_globals; |
| 83 | 193 | ||
| 84 | /** Initializes the module. |
- | |
| 85 | */ |
- | |
| 86 | int udp_initialize( async_client_conn_t client_connection ){ |
194 | int udp_initialize( async_client_conn_t client_connection ){ |
| 87 | ERROR_DECLARE; |
195 | ERROR_DECLARE; |
| 88 | 196 | ||
| 89 | fibril_rwlock_initialize( & udp_globals.lock ); |
197 | fibril_rwlock_initialize( & udp_globals.lock ); |
| 90 | fibril_rwlock_write_lock( & udp_globals.lock ); |
198 | fibril_rwlock_write_lock( & udp_globals.lock ); |
| Line 127... | Line 235... | ||
| 127 | int fragments; |
235 | int fragments; |
| 128 | packet_t tmp_packet; |
236 | packet_t tmp_packet; |
| 129 | 237 | ||
| 130 | // get packet data |
238 | // get packet data |
| 131 | length = packet_get_addr( packet, & src, & dest ); |
239 | length = packet_get_addr( packet, & src, & dest ); |
| 132 | if( length < 0 ) return length; |
- | |
| 133 | if( length != sizeof( in_addr_t )) return EINVAL; |
240 | if( length != sizeof( in_addr_t )) return EINVAL; |
| 134 | // TODO received ipopts? |
241 | // TODO process received ipopts? |
| 135 | ERROR_PROPAGATE( ip_client_process_packet( packet, NULL, NULL, NULL, NULL, NULL )); |
242 | ERROR_PROPAGATE( ip_client_process_packet( packet, NULL, NULL, NULL, NULL, NULL )); |
| 136 | 243 | ||
| 137 | // TODO remove debug dump: |
- | |
| 138 | /* uint8_t * rdata; |
- | |
| 139 | rdata = packet_get_data( packet ); |
- | |
| 140 | printf( "Receiving udp packet:\n\tid\t= %d\n\tlength\t= %d\n\tdata\t= %.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX\n\t\t%.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX:%.2hhX %.2hhX %.2hhX %.2hhX\n", packet_get_id( packet ), packet_get_data_length( packet ), rdata[ 0 ], rdata[ 1 ], rdata[ 2 ], rdata[ 3 ], rdata[ 4 ], rdata[ 5 ], rdata[ 6 ], rdata[ 7 ], rdata[ 8 ], rdata[ 9 ], rdata[ 10 ], rdata[ 11 ], rdata[ 12 ], rdata[ 13 ], rdata[ 14 ], rdata[ 15 ], rdata[ 16 ], rdata[ 17 ], rdata[ 18 ], rdata[ 19 ], rdata[ 20 ], rdata[ 21 ], rdata[ 22 ], rdata[ 23 ], rdata[ 24 ], rdata[ 25 ], rdata[ 26 ], rdata[ 27 ], rdata[ 28 ], rdata[ 29 ], rdata[ 30 ], rdata[ 31 ], rdata[ 32 ], rdata[ 33 ], rdata[ 34 ], rdata[ 35 ], rdata[ 36 ], rdata[ 37 ], rdata[ 38 ], rdata[ 39 ], rdata[ 40 ], rdata[ 41 ], rdata[ 42 ], rdata[ 43 ], rdata[ 44 ], rdata[ 45 ], rdata[ 46 ], rdata[ 47 ], rdata[ 48 ], rdata[ 49 ], rdata[ 50 ], rdata[ 51 ], rdata[ 52 ], rdata[ 53 ], rdata[ 54 ], rdata[ 55 ], rdata[ 56 ], rdata[ 57 ], rdata[ 58 ], rdata[ 59 ] ); |
- | |
| 141 | */ |
- | |
| 142 | length = packet_get_data_length( packet ); |
244 | length = packet_get_data_length( packet ); |
| 143 | if( length < 0 ) return length; |
245 | if( length <= 0 ) return EINVAL; |
| 144 | if( length < sizeof( udp_header_t )) return NO_DATA; |
246 | if( length < sizeof( udp_header_t )) return NO_DATA; |
| 145 | data = packet_get_data( packet ); |
247 | data = packet_get_data( packet ); |
| 146 | if( ! data ) return NO_DATA; |
248 | if( ! data ) return NO_DATA; |
| 147 | // get udp header |
249 | // get udp header |
| 148 | header = ( udp_header_ref ) data; |
250 | header = ( udp_header_ref ) data; |
| Line 154... | Line 256... | ||
| 154 | fragments = 0; |
256 | fragments = 0; |
| 155 | total_length = ntohs( header->len ); |
257 | total_length = ntohs( header->len ); |
| 156 | do{ |
258 | do{ |
| 157 | ++ fragments; |
259 | ++ fragments; |
| 158 | length = packet_get_data_length( packet ); |
260 | length = packet_get_data_length( packet ); |
| 159 | if( length < 0 ) return length; |
- | |
| 160 | if( ! length ) return NO_DATA; |
261 | if( ! length ) return NO_DATA; |
| 161 | if( total_length < length ){ |
262 | if( total_length < length ){ |
| 162 | // cut of the suffix if too long |
263 | // cut of the suffix if too long |
| 163 | ERROR_PROPAGATE( packet_trim( next_packet, 0, length - total_length )); |
264 | ERROR_PROPAGATE( packet_trim( next_packet, 0, length - total_length )); |
| 164 | // relese the rest of the packet fragments |
265 | // relese the rest of the packet fragments |
| Line 191... | Line 292... | ||
| 191 | * answer_count = 0; |
292 | * answer_count = 0; |
| 192 | switch( IPC_GET_METHOD( * call )){ |
293 | switch( IPC_GET_METHOD( * call )){ |
| 193 | case NET_TL_RECEIVED: |
294 | case NET_TL_RECEIVED: |
| 194 | fibril_rwlock_read_lock( & udp_globals.lock ); |
295 | fibril_rwlock_read_lock( & udp_globals.lock ); |
| 195 | if( ! ERROR_OCCURRED( packet_translate( udp_globals.net_phone, & packet, IPC_GET_PACKET( call )))){ |
296 | if( ! ERROR_OCCURRED( packet_translate( udp_globals.net_phone, & packet, IPC_GET_PACKET( call )))){ |
| 196 | ERROR_CODE = udp_received_msg( IPC_GET_DEVICE( call ), packet, 0 ); |
297 | ERROR_CODE = udp_received_msg( IPC_GET_DEVICE( call ), packet, SERVICE_UDP ); |
| 197 | } |
298 | } |
| 198 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
299 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
| 199 | return ERROR_CODE; |
300 | return ERROR_CODE; |
| 200 | case IPC_M_CONNECT_TO_ME: |
301 | case IPC_M_CONNECT_TO_ME: |
| 201 | return process_client_messages( callid, call, answer, answer_count ); |
302 | return process_client_messages( callid, * call ); |
| 202 | } |
303 | } |
| 203 | return ENOTSUP; |
304 | return ENOTSUP; |
| 204 | } |
305 | } |
| 205 | 306 | ||
| 206 | int process_client_messages( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){ |
307 | int process_client_messages( ipc_callid_t callid, ipc_call_t call ){ |
| 207 | ERROR_DECLARE; |
308 | ERROR_DECLARE; |
| 208 | 309 | ||
| 209 | int res; |
310 | int res; |
| 210 | bool keep_on_going = true; |
311 | bool keep_on_going = true; |
| 211 | socket_cores_t local_sockets; |
312 | socket_cores_t local_sockets; |
| 212 | int app_phone = IPC_GET_PHONE( call ); |
313 | int app_phone = IPC_GET_PHONE( & call ); |
| 213 | void * addr; |
314 | void * addr; |
| 214 | size_t addrlen; |
315 | size_t addrlen; |
| 215 | fibril_rwlock_t lock; |
316 | fibril_rwlock_t lock; |
| - | 317 | ipc_call_t answer; |
|
| - | 318 | int answer_count; |
|
| 216 | 319 | ||
| 217 | /* |
320 | /* |
| 218 | * Accept the connection |
321 | * Accept the connection |
| 219 | * - Answer the first IPC_M_CONNECT_ME_TO call. |
322 | * - Answer the first IPC_M_CONNECT_ME_TO call. |
| 220 | */ |
323 | */ |
| Line 223... | Line 326... | ||
| 223 | socket_cores_initialize( & local_sockets ); |
326 | socket_cores_initialize( & local_sockets ); |
| 224 | fibril_rwlock_initialize( & lock ); |
327 | fibril_rwlock_initialize( & lock ); |
| 225 | 328 | ||
| 226 | while( keep_on_going ){ |
329 | while( keep_on_going ){ |
| 227 | // refresh data |
330 | // refresh data |
| 228 | * answer_count = 0; |
331 | answer_count = 0; |
| 229 | IPC_SET_RETVAL( * answer, 0 ); |
332 | IPC_SET_RETVAL( answer, 0 ); |
| 230 | // just to be precize |
333 | // just to be precize |
| 231 | IPC_SET_METHOD( * answer, 0 ); |
334 | IPC_SET_METHOD( answer, 0 ); |
| 232 | IPC_SET_ARG1( * answer, 0 ); |
335 | IPC_SET_ARG1( answer, 0 ); |
| 233 | IPC_SET_ARG2( * answer, 0 ); |
336 | IPC_SET_ARG2( answer, 0 ); |
| 234 | IPC_SET_ARG3( * answer, 0 ); |
337 | IPC_SET_ARG3( answer, 0 ); |
| 235 | IPC_SET_ARG4( * answer, 0 ); |
338 | IPC_SET_ARG4( answer, 0 ); |
| 236 | IPC_SET_ARG5( * answer, 0 ); |
339 | IPC_SET_ARG5( answer, 0 ); |
| 237 | 340 | ||
| 238 | callid = async_get_call( call ); |
341 | callid = async_get_call( & call ); |
| 239 | // printf( "message %d\n", IPC_GET_METHOD( * call )); |
342 | // printf( "message %d\n", IPC_GET_METHOD( * call )); |
| 240 | 343 | ||
| 241 | switch( IPC_GET_METHOD( * call )){ |
344 | switch( IPC_GET_METHOD( call )){ |
| 242 | case IPC_M_PHONE_HUNGUP: |
345 | case IPC_M_PHONE_HUNGUP: |
| 243 | keep_on_going = false; |
346 | keep_on_going = false; |
| 244 | res = EOK; |
347 | res = EOK; |
| 245 | break; |
348 | break; |
| 246 | case NET_SOCKET: |
349 | case NET_SOCKET: |
| 247 | fibril_rwlock_write_lock( & lock ); |
350 | fibril_rwlock_write_lock( & lock ); |
| 248 | res = socket_create( & local_sockets, app_phone, SOCKET_SET_SOCKET_ID( answer )); |
351 | res = socket_create( & local_sockets, app_phone, SOCKET_SET_SOCKET_ID( answer )); |
| 249 | fibril_rwlock_write_unlock( & lock ); |
352 | fibril_rwlock_write_unlock( & lock ); |
| 250 | * SOCKET_SET_HEADER_SIZE( answer ) = sizeof( udp_header_t ); |
353 | * SOCKET_SET_HEADER_SIZE( answer ) = sizeof( udp_header_t ); |
| 251 | * SOCKET_SET_DATA_FRAGMENT_SIZE( answer ) = MAX_UDP_FRAGMENT_SIZE; |
354 | * SOCKET_SET_DATA_FRAGMENT_SIZE( answer ) = MAX_UDP_FRAGMENT_SIZE; |
| 252 | * answer_count = 3; |
355 | answer_count = 3; |
| 253 | break; |
356 | break; |
| 254 | case NET_SOCKET_BIND: |
357 | case NET_SOCKET_BIND: |
| 255 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
358 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
| 256 | res = ERROR_CODE; |
359 | res = ERROR_CODE; |
| 257 | break; |
360 | break; |
| Line 260... | Line 363... | ||
| 260 | fibril_rwlock_write_lock( & udp_globals.lock ); |
363 | fibril_rwlock_write_lock( & udp_globals.lock ); |
| 261 | 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 ); |
364 | 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 ); |
| 262 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
365 | fibril_rwlock_write_unlock( & udp_globals.lock ); |
| 263 | fibril_rwlock_write_unlock( & lock ); |
366 | fibril_rwlock_write_unlock( & lock ); |
| 264 | free( addr ); |
367 | free( addr ); |
| 265 | break; |
368 | break; |
| 266 | case NET_SOCKET_SENDTO: |
369 | case NET_SOCKET_SENDTO: |
| 267 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
370 | if( ERROR_OCCURRED( socket_read_data( & addr, & addrlen ))){ |
| 268 | res = ERROR_CODE; |
371 | res = ERROR_CODE; |
| 269 | break; |
372 | break; |
| 270 | } |
373 | } |
| Line 282... | Line 385... | ||
| 282 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
385 | fibril_rwlock_read_unlock( & udp_globals.lock ); |
| 283 | fibril_rwlock_read_unlock( & lock ); |
386 | fibril_rwlock_read_unlock( & lock ); |
| 284 | if( res > 0 ){ |
387 | if( res > 0 ){ |
| 285 | * SOCKET_SET_READ_DATA_LENGTH( answer ) = res; |
388 | * SOCKET_SET_READ_DATA_LENGTH( answer ) = res; |
| 286 | * SOCKET_SET_ADDRESS_LENGTH( answer ) = sizeof( struct sockaddr_in ); |
389 | * SOCKET_SET_ADDRESS_LENGTH( answer ) = sizeof( struct sockaddr_in ); |
| 287 | * answer_count = 2; |
390 | answer_count = 2; |
| 288 | res = EOK; |
391 | res = EOK; |
| 289 | } |
392 | } |
| 290 | break; |
393 | break; |
| 291 | case NET_SOCKET_CLOSE: |
394 | case NET_SOCKET_CLOSE: |
| 292 | fibril_rwlock_write_lock( & lock ); |
395 | fibril_rwlock_write_lock( & lock ); |
| Line 302... | Line 405... | ||
| 302 | break; |
405 | break; |
| 303 | } |
406 | } |
| 304 | 407 | ||
| 305 | // printf( "res = %d\n", res ); |
408 | // printf( "res = %d\n", res ); |
| 306 | 409 | ||
| 307 | switch( * answer_count ){ |
410 | switch( answer_count ){ |
| 308 | case 0: ipc_answer_0( callid, res ); |
411 | case 0: ipc_answer_0( callid, res ); |
| 309 | continue; |
412 | continue; |
| 310 | case 1: ipc_answer_1( callid, res, IPC_GET_ARG1( * answer )); |
413 | case 1: ipc_answer_1( callid, res, IPC_GET_ARG1( answer )); |
| 311 | continue; |
414 | continue; |
| 312 | case 2: ipc_answer_2( callid, res, IPC_GET_ARG1( * answer ), IPC_GET_ARG2( * answer )); |
415 | case 2: ipc_answer_2( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer )); |
| 313 | continue; |
416 | continue; |
| 314 | case 3: ipc_answer_3( callid, res, IPC_GET_ARG1( * answer ), IPC_GET_ARG2( * answer ), IPC_GET_ARG3( * answer )); |
417 | case 3: ipc_answer_3( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer ), IPC_GET_ARG3( answer )); |
| 315 | continue; |
418 | continue; |
| 316 | case 4: ipc_answer_4( callid, res, IPC_GET_ARG1( * answer ), IPC_GET_ARG2( * answer ), IPC_GET_ARG3( * answer ), IPC_GET_ARG4( * answer )); |
419 | case 4: ipc_answer_4( callid, res, IPC_GET_ARG1( answer ), IPC_GET_ARG2( answer ), IPC_GET_ARG3( answer ), IPC_GET_ARG4( answer )); |
| 317 | continue; |
420 | continue; |
| 318 | 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 )); |
421 | 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 )); |
| 319 | continue; |
422 | continue; |
| 320 | } |
423 | } |
| 321 | } |
424 | } |
| 322 | 425 | ||
| 323 | socket_cores_destroy( & local_sockets ); |
426 | socket_cores_destroy( & local_sockets ); |
| Line 419... | Line 522... | ||
| 419 | // find the socket |
522 | // find the socket |
| 420 | socket = socket_cores_find( local_sockets, socket_id ); |
523 | socket = socket_cores_find( local_sockets, socket_id ); |
| 421 | if( ! socket ) return ENOTSOCK; |
524 | if( ! socket ) return ENOTSOCK; |
| 422 | // get the next received packet |
525 | // get the next received packet |
| 423 | packet_id = dyn_fifo_value( & socket->received ); |
526 | packet_id = dyn_fifo_value( & socket->received ); |
| 424 | if( packet_id < 0 ) return packet_id; |
527 | if( packet_id < 0 ) return NO_DATA; |
| 425 | ERROR_PROPAGATE( packet_translate( udp_globals.net_phone, & packet, packet_id )); |
528 | ERROR_PROPAGATE( packet_translate( udp_globals.net_phone, & packet, packet_id )); |
| 426 | // get udp header |
529 | // get udp header |
| 427 | data = packet_get_data( packet ); |
530 | data = packet_get_data( packet ); |
| 428 | if( ! data ){ |
531 | if( ! data ){ |
| 429 | pq_release( udp_globals.net_phone, packet_id ); |
532 | pq_release( udp_globals.net_phone, packet_id ); |
| Line 504... | Line 607... | ||
| 504 | ipc_callid_t callid; |
607 | ipc_callid_t callid; |
| 505 | 608 | ||
| 506 | if( !( data && length )) return EBADMEM; |
609 | if( !( data && length )) return EBADMEM; |
| 507 | if( ! ipc_data_write_receive( & callid, length )) return EINVAL; |
610 | if( ! ipc_data_write_receive( & callid, length )) return EINVAL; |
| 508 | * data = malloc( * length ); |
611 | * data = malloc( * length ); |
| 509 | if( ! data ) return ENOMEM; |
612 | if( !( * data )) return ENOMEM; |
| 510 | if( ERROR_OCCURRED( ipc_data_write_finalize( callid, * data, * length ))){ |
613 | if( ERROR_OCCURRED( ipc_data_write_finalize( callid, * data, * length ))){ |
| 511 | free( data ); |
614 | free( data ); |
| 512 | return ERROR_CODE; |
615 | return ERROR_CODE; |
| 513 | } |
616 | } |
| 514 | return EOK; |
617 | return EOK; |