source: mainline/uspace/srv/net/tl/udp/udp.c@ afe1d1e

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

fix possible compiler warnings (thx Vojtech Horky)

  • Property mode set to 100644
File size: 24.8 KB
RevLine 
[21580dd]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
[457a6f5]30 * @{
[21580dd]31 */
32
33/** @file
[457a6f5]34 * UDP module implementation.
35 * @see udp.h
[21580dd]36 */
37
38#include <async.h>
39#include <fibril_synch.h>
40#include <malloc.h>
41#include <stdio.h>
42#include <ipc/services.h>
[514ee46]43#include <ipc/net.h>
[8e3a65c]44#include <ipc/tl.h>
[88e127ee]45#include <ipc/socket.h>
[457a6f5]46#include <adt/dynamic_fifo.h>
[e98b1d5]47#include <errno.h>
[21580dd]48
[058edb6]49#include <net/socket_codes.h>
[fe5d3c1b]50#include <net/ip_protocols.h>
[e4554d4]51#include <net/in.h>
52#include <net/in6.h>
53#include <net/inet.h>
[c7a8442]54#include <net/modules.h>
[058edb6]55
[0a866eeb]56#include <packet_client.h>
[14f1db0]57#include <packet_remote.h>
[849ed54]58#include <net_checksum.h>
59#include <ip_client.h>
60#include <ip_interface.h>
61#include <icmp_client.h>
[f1938c6]62#include <icmp_remote.h>
[849ed54]63#include <net_interface.h>
64#include <socket_core.h>
65#include <tl_common.h>
[014dd57b]66#include <tl_remote.h>
67#include <tl_skel.h>
68
69#include "udp.h"
70#include "udp_header.h"
[21580dd]71
[7282582]72/** UDP module name. */
[014dd57b]73#define NAME "udp"
[849ed54]74
[7282582]75/** Default UDP checksum computing. */
[21580dd]76#define NET_DEFAULT_UDP_CHECKSUM_COMPUTING true
77
[7282582]78/** Default UDP autobind when sending via unbound sockets. */
[21580dd]79#define NET_DEFAULT_UDP_AUTOBINDING true
80
[7282582]81/** Maximum UDP fragment size. */
82#define MAX_UDP_FRAGMENT_SIZE 65535
[21580dd]83
[7282582]84/** Free ports pool start. */
85#define UDP_FREE_PORTS_START 1025
[21580dd]86
[7282582]87/** Free ports pool end. */
[21580dd]88#define UDP_FREE_PORTS_END 65535
89
[457a6f5]90/** UDP global data. */
91udp_globals_t udp_globals;
[21580dd]92
[457a6f5]93/** Releases the packet and returns the result.
94 *
95 * @param[in] packet The packet queue to be released.
96 * @param[in] result The result to be returned.
97 * @return The result parameter.
98 */
[46d4d9f]99static int udp_release_and_return(packet_t *packet, int result)
[7282582]100{
[457a6f5]101 pq_release_remote(udp_globals.net_phone, packet_get_id(packet));
[21580dd]102 return result;
103}
104
[457a6f5]105/** Processes the received UDP packet queue.
106 *
107 * Notifies the destination socket application.
108 * Releases the packet on error or sends an ICMP error notification.
109 *
110 * @param[in] device_id The receiving device identifier.
111 * @param[in,out] packet The received packet queue.
112 * @param[in] error The packet error reporting service. Prefixes the
113 * received packet.
[1bfd3d3]114 * @return EOK on success.
115 * @return EINVAL if the packet is not valid.
116 * @return EINVAL if the stored packet address is not the
[457a6f5]117 * an_addr_t.
[1bfd3d3]118 * @return EINVAL if the packet does not contain any data.
119 * @return NO_DATA if the packet content is shorter than the user
[457a6f5]120 * datagram header.
[1bfd3d3]121 * @return ENOMEM if there is not enough memory left.
122 * @return EADDRNOTAVAIL if the destination socket does not exist.
123 * @return Other error codes as defined for the
[457a6f5]124 * ip_client_process_packet() function.
125 */
[46d4d9f]126static int udp_process_packet(device_id_t device_id, packet_t *packet,
[fb04cba8]127 services_t error)
[7282582]128{
[aadf01e]129 size_t length;
130 size_t offset;
131 int result;
[4e5c7ba]132 udp_header_t *header;
[88a1bb9]133 socket_core_t *socket;
[46d4d9f]134 packet_t *next_packet;
[aadf01e]135 size_t total_length;
136 uint32_t checksum;
137 int fragments;
[46d4d9f]138 packet_t *tmp_packet;
[aadf01e]139 icmp_type_t type;
140 icmp_code_t code;
[14f1db0]141 void *ip_header;
[7282582]142 struct sockaddr *src;
143 struct sockaddr *dest;
[f772bc55]144 packet_dimension_t *packet_dimension;
[46ae62c]145 int rc;
[aadf01e]146
[457a6f5]147 switch (error) {
148 case SERVICE_NONE:
149 break;
150 case SERVICE_ICMP:
[fb04cba8]151 /* Ignore error */
[457a6f5]152 // length = icmp_client_header_length(packet);
[fb04cba8]153
154 /* Process error */
[457a6f5]155 result = icmp_client_process_packet(packet, &type,
156 &code, NULL, NULL);
157 if (result < 0)
158 return udp_release_and_return(packet, result);
159 length = (size_t) result;
[46ae62c]160 rc = packet_trim(packet, length, 0);
161 if (rc != EOK)
162 return udp_release_and_return(packet, rc);
[457a6f5]163 break;
164 default:
165 return udp_release_and_return(packet, ENOTSUP);
[21580dd]166 }
[7282582]167
[fb04cba8]168 /* TODO process received ipopts? */
[aadf01e]169 result = ip_client_process_packet(packet, NULL, NULL, NULL, NULL, NULL);
[7282582]170 if (result < 0)
[aadf01e]171 return udp_release_and_return(packet, result);
172 offset = (size_t) result;
[21580dd]173
[aadf01e]174 length = packet_get_data_length(packet);
[7282582]175 if (length <= 0)
[aadf01e]176 return udp_release_and_return(packet, EINVAL);
[7282582]177 if (length < UDP_HEADER_SIZE + offset)
[aadf01e]178 return udp_release_and_return(packet, NO_DATA);
[21580dd]179
[fb04cba8]180 /* Trim all but UDP header */
[46ae62c]181 rc = packet_trim(packet, offset, 0);
182 if (rc != EOK)
183 return udp_release_and_return(packet, rc);
[21580dd]184
[fb04cba8]185 /* Get UDP header */
[4e5c7ba]186 header = (udp_header_t *) packet_get_data(packet);
[7282582]187 if (!header)
[aadf01e]188 return udp_release_and_return(packet, NO_DATA);
[7282582]189
[fb04cba8]190 /* Find the destination socket */
[7282582]191 socket = socket_port_find(&udp_globals.sockets,
[61bfc370]192 ntohs(header->destination_port), (uint8_t *) SOCKET_MAP_KEY_LISTENING, 0);
[7282582]193 if (!socket) {
194 if (tl_prepare_icmp_packet(udp_globals.net_phone,
195 udp_globals.icmp_phone, packet, error) == EOK) {
196 icmp_destination_unreachable_msg(udp_globals.icmp_phone,
197 ICMP_PORT_UNREACH, 0, packet);
[21580dd]198 }
199 return EADDRNOTAVAIL;
200 }
201
[fb04cba8]202 /* Count the received packet fragments */
[21580dd]203 next_packet = packet;
204 fragments = 0;
[aadf01e]205 total_length = ntohs(header->total_length);
[7282582]206
[fb04cba8]207 /* Compute header checksum if set */
[457a6f5]208 if (header->checksum && !error) {
[7282582]209 result = packet_get_addr(packet, (uint8_t **) &src,
210 (uint8_t **) &dest);
[457a6f5]211 if (result <= 0)
[aadf01e]212 return udp_release_and_return(packet, result);
[46ae62c]213
214 rc = ip_client_get_pseudo_header(IPPROTO_UDP, src, result, dest,
215 result, total_length, &ip_header, &length);
216 if (rc != EOK) {
217 return udp_release_and_return(packet, rc);
[7282582]218 } else {
[aadf01e]219 checksum = compute_checksum(0, ip_header, length);
[fb04cba8]220 /*
221 * The udp header checksum will be added with the first
222 * fragment later.
223 */
[aadf01e]224 free(ip_header);
[21580dd]225 }
[7282582]226 } else {
[21580dd]227 header->checksum = 0;
228 checksum = 0;
229 }
230
[7282582]231 do {
[457a6f5]232 fragments++;
[aadf01e]233 length = packet_get_data_length(next_packet);
[7282582]234 if (length <= 0)
[aadf01e]235 return udp_release_and_return(packet, NO_DATA);
[7282582]236
237 if (total_length < length) {
[46ae62c]238 rc = packet_trim(next_packet, 0, length - total_length);
239 if (rc != EOK)
240 return udp_release_and_return(packet, rc);
[7282582]241
[fb04cba8]242 /* Add partial checksum if set */
[7282582]243 if (header->checksum) {
244 checksum = compute_checksum(checksum,
245 packet_get_data(packet),
246 packet_get_data_length(packet));
[21580dd]247 }
[7282582]248
[fb04cba8]249 /* Relese the rest of the packet fragments */
[aadf01e]250 tmp_packet = pq_next(next_packet);
[7282582]251 while (tmp_packet) {
[aadf01e]252 next_packet = pq_detach(tmp_packet);
[7282582]253 pq_release_remote(udp_globals.net_phone,
254 packet_get_id(tmp_packet));
[21580dd]255 tmp_packet = next_packet;
256 }
[7282582]257
[fb04cba8]258 /* Exit the loop */
[21580dd]259 break;
260 }
261 total_length -= length;
[7282582]262
[fb04cba8]263 /* Add partial checksum if set */
[7282582]264 if (header->checksum) {
265 checksum = compute_checksum(checksum,
266 packet_get_data(packet),
267 packet_get_data_length(packet));
[21580dd]268 }
[7282582]269
270 } while ((next_packet = pq_next(next_packet)) && (total_length > 0));
[21580dd]271
[fb04cba8]272 /* Verify checksum */
[7282582]273 if (header->checksum) {
274 if (flip_checksum(compact_checksum(checksum)) !=
275 IP_CHECKSUM_ZERO) {
276 if (tl_prepare_icmp_packet(udp_globals.net_phone,
277 udp_globals.icmp_phone, packet, error) == EOK) {
[fb04cba8]278 /* Checksum error ICMP */
[7282582]279 icmp_parameter_problem_msg(
280 udp_globals.icmp_phone, ICMP_PARAM_POINTER,
281 ((size_t) ((void *) &header->checksum)) -
282 ((size_t) ((void *) header)), packet);
[21580dd]283 }
284 return EINVAL;
285 }
286 }
287
[fb04cba8]288 /* Queue the received packet */
[46ae62c]289 rc = dyn_fifo_push(&socket->received, packet_get_id(packet),
290 SOCKET_MAX_RECEIVED_SIZE);
291 if (rc != EOK)
292 return udp_release_and_return(packet, rc);
293
294 rc = tl_get_ip_packet_dimension(udp_globals.ip_phone,
295 &udp_globals.dimensions, device_id, &packet_dimension);
296 if (rc != EOK)
297 return udp_release_and_return(packet, rc);
[21580dd]298
[fb04cba8]299 /* Notify the destination socket */
[aadf01e]300 fibril_rwlock_write_unlock(&udp_globals.lock);
[7282582]301 async_msg_5(socket->phone, NET_SOCKET_RECEIVED,
[96b02eb9]302 (sysarg_t) socket->socket_id, packet_dimension->content, 0, 0,
303 (sysarg_t) fragments);
[7282582]304
[2e99277]305 return EOK;
[21580dd]306}
307
[457a6f5]308/** Processes the received UDP packet queue.
309 *
310 * Is used as an entry point from the underlying IP module.
311 * Locks the global lock and calls udp_process_packet() function.
312 *
313 * @param[in] device_id The receiving device identifier.
314 * @param[in,out] packet The received packet queue.
315 * @param receiver The target service. Ignored parameter.
316 * @param[in] error The packet error reporting service. Prefixes the
317 * received packet.
[1bfd3d3]318 * @return EOK on success.
319 * @return Other error codes as defined for the
[457a6f5]320 * udp_process_packet() function.
321 */
[46d4d9f]322static int udp_received_msg(device_id_t device_id, packet_t *packet,
[fb04cba8]323 services_t receiver, services_t error)
[7282582]324{
[457a6f5]325 int result;
[a8a13d0]326
[457a6f5]327 fibril_rwlock_write_lock(&udp_globals.lock);
328 result = udp_process_packet(device_id, packet, error);
329 if (result != EOK)
330 fibril_rwlock_write_unlock(&udp_globals.lock);
[21580dd]331
[457a6f5]332 return result;
[21580dd]333}
334
[014dd57b]335/** Process IPC messages from the IP module
336 *
337 * @param[in] iid Message identifier.
338 * @param[in,out] icall Message parameters.
339 *
340 */
341static void udp_receiver(ipc_callid_t iid, ipc_call_t *icall)
342{
343 packet_t *packet;
344 int rc;
345
346 while (true) {
347 switch (IPC_GET_IMETHOD(*icall)) {
348 case NET_TL_RECEIVED:
349 rc = packet_translate_remote(udp_globals.net_phone, &packet,
350 IPC_GET_PACKET(*icall));
351 if (rc == EOK)
352 rc = udp_received_msg(IPC_GET_DEVICE(*icall), packet,
353 SERVICE_UDP, IPC_GET_ERROR(*icall));
354
[ffa2c8ef]355 async_answer_0(iid, (sysarg_t) rc);
[014dd57b]356 break;
357 default:
[ffa2c8ef]358 async_answer_0(iid, (sysarg_t) ENOTSUP);
[014dd57b]359 }
360
361 iid = async_get_call(icall);
362 }
363}
364
365/** Initialize the UDP module.
366 *
367 * @param[in] net_phone Network module phone.
368 *
369 * @return EOK on success.
370 * @return ENOMEM if there is not enough memory left.
371 *
372 */
373int tl_initialize(int net_phone)
374{
375 measured_string_t names[] = {
376 {
377 (uint8_t *) "UDP_CHECKSUM_COMPUTING",
378 22
379 },
380 {
381 (uint8_t *) "UDP_AUTOBINDING",
382 15
383 }
384 };
385 measured_string_t *configuration;
386 size_t count = sizeof(names) / sizeof(measured_string_t);
387 uint8_t *data;
388
389 fibril_rwlock_initialize(&udp_globals.lock);
390 fibril_rwlock_write_lock(&udp_globals.lock);
391
392 udp_globals.net_phone = net_phone;
393
[f1938c6]394 udp_globals.icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT);
[014dd57b]395
396 udp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_UDP,
397 SERVICE_UDP, udp_receiver);
398 if (udp_globals.ip_phone < 0) {
399 fibril_rwlock_write_unlock(&udp_globals.lock);
400 return udp_globals.ip_phone;
401 }
402
403 /* Read default packet dimensions */
404 int rc = ip_packet_size_req(udp_globals.ip_phone, -1,
405 &udp_globals.packet_dimension);
406 if (rc != EOK) {
407 fibril_rwlock_write_unlock(&udp_globals.lock);
408 return rc;
409 }
410
411 rc = socket_ports_initialize(&udp_globals.sockets);
412 if (rc != EOK) {
413 fibril_rwlock_write_unlock(&udp_globals.lock);
414 return rc;
415 }
416
417 rc = packet_dimensions_initialize(&udp_globals.dimensions);
418 if (rc != EOK) {
419 socket_ports_destroy(&udp_globals.sockets);
420 fibril_rwlock_write_unlock(&udp_globals.lock);
421 return rc;
422 }
423
424 udp_globals.packet_dimension.prefix += sizeof(udp_header_t);
425 udp_globals.packet_dimension.content -= sizeof(udp_header_t);
426 udp_globals.last_used_port = UDP_FREE_PORTS_START - 1;
427
428 udp_globals.checksum_computing = NET_DEFAULT_UDP_CHECKSUM_COMPUTING;
429 udp_globals.autobinding = NET_DEFAULT_UDP_AUTOBINDING;
430
431 /* Get configuration */
432 configuration = &names[0];
433 rc = net_get_conf_req(udp_globals.net_phone, &configuration, count,
434 &data);
435 if (rc != EOK) {
436 socket_ports_destroy(&udp_globals.sockets);
437 fibril_rwlock_write_unlock(&udp_globals.lock);
438 return rc;
439 }
440
441 if (configuration) {
442 if (configuration[0].value)
443 udp_globals.checksum_computing =
444 (configuration[0].value[0] == 'y');
445
446 if (configuration[1].value)
447 udp_globals.autobinding =
448 (configuration[1].value[0] == 'y');
449
450 net_free_settings(configuration, data);
451 }
452
453 fibril_rwlock_write_unlock(&udp_globals.lock);
454 return EOK;
455}
456
[457a6f5]457/** Sends data from the socket to the remote address.
458 *
459 * Binds the socket to a free port if not already connected/bound.
460 * Handles the NET_SOCKET_SENDTO message.
461 * Supports AF_INET and AF_INET6 address families.
462 *
463 * @param[in,out] local_sockets The application local sockets.
464 * @param[in] socket_id Socket identifier.
465 * @param[in] addr The destination address.
466 * @param[in] addrlen The address length.
467 * @param[in] fragments The number of data fragments.
468 * @param[out] data_fragment_size The data fragment size in bytes.
469 * @param[in] flags Various send flags.
[1bfd3d3]470 * @return EOK on success.
471 * @return EAFNOTSUPPORT if the address family is not supported.
472 * @return ENOTSOCK if the socket is not found.
473 * @return EINVAL if the address is invalid.
474 * @return ENOTCONN if the sending socket is not and cannot be
[457a6f5]475 * bound.
[1bfd3d3]476 * @return ENOMEM if there is not enough memory left.
477 * @return Other error codes as defined for the
[457a6f5]478 * socket_read_packet_data() function.
[1bfd3d3]479 * @return Other error codes as defined for the
[457a6f5]480 * ip_client_prepare_packet() function.
[1bfd3d3]481 * @return Other error codes as defined for the ip_send_msg()
[457a6f5]482 * function.
483 */
[aaa3f33a]484static int udp_sendto_message(socket_cores_t *local_sockets, int socket_id,
[7282582]485 const struct sockaddr *addr, socklen_t addrlen, int fragments,
486 size_t *data_fragment_size, int flags)
487{
[88a1bb9]488 socket_core_t *socket;
[46d4d9f]489 packet_t *packet;
490 packet_t *next_packet;
[4e5c7ba]491 udp_header_t *header;
[aadf01e]492 int index;
493 size_t total_length;
494 int result;
495 uint16_t dest_port;
496 uint32_t checksum;
[14f1db0]497 void *ip_header;
[aadf01e]498 size_t headerlen;
499 device_id_t device_id;
[f772bc55]500 packet_dimension_t *packet_dimension;
[46ae62c]501 int rc;
502
503 rc = tl_get_address_port(addr, addrlen, &dest_port);
504 if (rc != EOK)
505 return rc;
[aadf01e]506
507 socket = socket_cores_find(local_sockets, socket_id);
[7282582]508 if (!socket)
[aadf01e]509 return ENOTSOCK;
510
[7282582]511 if ((socket->port <= 0) && udp_globals.autobinding) {
[fb04cba8]512 /* Bind the socket to a random free port if not bound */
[a873201]513 rc = socket_bind_free_port(&udp_globals.sockets, socket,
514 UDP_FREE_PORTS_START, UDP_FREE_PORTS_END,
515 udp_globals.last_used_port);
516 if (rc != EOK)
517 return rc;
[fb04cba8]518 /* Set the next port as the search starting port number */
[a873201]519 udp_globals.last_used_port = socket->port;
[21580dd]520 }
521
[7282582]522 if (udp_globals.checksum_computing) {
[46ae62c]523 rc = ip_get_route_req(udp_globals.ip_phone, IPPROTO_UDP, addr,
524 addrlen, &device_id, &ip_header, &headerlen);
525 if (rc != EOK)
[d94f309]526 return rc;
[fb04cba8]527 /* Get the device packet dimension */
[46ae62c]528// rc = tl_get_ip_packet_dimension(udp_globals.ip_phone,
529// &udp_globals.dimensions, device_id, &packet_dimension);
530// if (rc != EOK)
531// return rc;
[21580dd]532 }
[7282582]533// } else {
[fb04cba8]534 /* Do not ask all the time */
[46ae62c]535 rc = ip_packet_size_req(udp_globals.ip_phone, -1,
536 &udp_globals.packet_dimension);
537 if (rc != EOK)
538 return rc;
[aadf01e]539 packet_dimension = &udp_globals.packet_dimension;
[21580dd]540// }
541
[fb04cba8]542 /* Read the first packet fragment */
[7282582]543 result = tl_socket_read_packet_data(udp_globals.net_phone, &packet,
544 UDP_HEADER_SIZE, packet_dimension, addr, addrlen);
545 if (result < 0)
[aadf01e]546 return result;
[7282582]547
[aadf01e]548 total_length = (size_t) result;
[7282582]549 if (udp_globals.checksum_computing)
550 checksum = compute_checksum(0, packet_get_data(packet),
551 packet_get_data_length(packet));
552 else
[21580dd]553 checksum = 0;
[7282582]554
[fb04cba8]555 /* Prefix the UDP header */
[aadf01e]556 header = PACKET_PREFIX(packet, udp_header_t);
[457a6f5]557 if (!header)
[aadf01e]558 return udp_release_and_return(packet, ENOMEM);
[7282582]559
[aadf01e]560 bzero(header, sizeof(*header));
[fb04cba8]561
562 /* Read the rest of the packet fragments */
[457a6f5]563 for (index = 1; index < fragments; index++) {
[7282582]564 result = tl_socket_read_packet_data(udp_globals.net_phone,
565 &next_packet, 0, packet_dimension, addr, addrlen);
566 if (result < 0)
[aadf01e]567 return udp_release_and_return(packet, result);
[7282582]568
[46ae62c]569 rc = pq_add(&packet, next_packet, index, 0);
570 if (rc != EOK)
571 return udp_release_and_return(packet, rc);
[7282582]572
[aadf01e]573 total_length += (size_t) result;
[7282582]574 if (udp_globals.checksum_computing) {
575 checksum = compute_checksum(checksum,
576 packet_get_data(next_packet),
577 packet_get_data_length(next_packet));
[21580dd]578 }
579 }
[7282582]580
[fb04cba8]581 /* Set the UDP header */
[aadf01e]582 header->source_port = htons((socket->port > 0) ? socket->port : 0);
583 header->destination_port = htons(dest_port);
584 header->total_length = htons(total_length + sizeof(*header));
[21580dd]585 header->checksum = 0;
[fb04cba8]586
[7282582]587 if (udp_globals.checksum_computing) {
[fb04cba8]588 /* Update the pseudo header */
[46ae62c]589 rc = ip_client_set_pseudo_header_data_length(ip_header,
590 headerlen, total_length + UDP_HEADER_SIZE);
591 if (rc != EOK) {
[aadf01e]592 free(ip_header);
[46ae62c]593 return udp_release_and_return(packet, rc);
[21580dd]594 }
[7282582]595
[fb04cba8]596 /* Finish the checksum computation */
[aadf01e]597 checksum = compute_checksum(checksum, ip_header, headerlen);
[7282582]598 checksum = compute_checksum(checksum, (uint8_t *) header,
599 sizeof(*header));
600 header->checksum =
601 htons(flip_checksum(compact_checksum(checksum)));
[aadf01e]602 free(ip_header);
[7282582]603 } else {
[ede63e4]604 device_id = DEVICE_INVALID_ID;
[21580dd]605 }
[7282582]606
[fb04cba8]607 /* Prepare the first packet fragment */
[46ae62c]608 rc = ip_client_prepare_packet(packet, IPPROTO_UDP, 0, 0, 0, 0);
609 if (rc != EOK)
610 return udp_release_and_return(packet, rc);
[7282582]611
[f3cb50e]612 /* Release the UDP global lock on success. */
[aadf01e]613 fibril_rwlock_write_unlock(&udp_globals.lock);
[f3cb50e]614
[fb04cba8]615 /* Send the packet */
[aadf01e]616 ip_send_msg(udp_globals.ip_phone, device_id, packet, SERVICE_UDP, 0);
[7282582]617
[21580dd]618 return EOK;
619}
620
[457a6f5]621/** Receives data to the socket.
622 *
623 * Handles the NET_SOCKET_RECVFROM message.
624 * Replies the source address as well.
625 *
626 * @param[in] local_sockets The application local sockets.
627 * @param[in] socket_id Socket identifier.
628 * @param[in] flags Various receive flags.
629 * @param[out] addrlen The source address length.
[1bfd3d3]630 * @return The number of bytes received.
631 * @return ENOTSOCK if the socket is not found.
632 * @return NO_DATA if there are no received packets or data.
633 * @return ENOMEM if there is not enough memory left.
634 * @return EINVAL if the received address is not an IP address.
635 * @return Other error codes as defined for the packet_translate()
[457a6f5]636 * function.
[1bfd3d3]637 * @return Other error codes as defined for the data_reply()
[457a6f5]638 * function.
639 */
[aaa3f33a]640static int udp_recvfrom_message(socket_cores_t *local_sockets, int socket_id,
[fb04cba8]641 int flags, size_t *addrlen)
[7282582]642{
[88a1bb9]643 socket_core_t *socket;
[aadf01e]644 int packet_id;
[46d4d9f]645 packet_t *packet;
[4e5c7ba]646 udp_header_t *header;
[7282582]647 struct sockaddr *addr;
[aadf01e]648 size_t length;
[7282582]649 uint8_t *data;
[aadf01e]650 int result;
[46ae62c]651 int rc;
[21580dd]652
[fb04cba8]653 /* Find the socket */
[aadf01e]654 socket = socket_cores_find(local_sockets, socket_id);
[7282582]655 if (!socket)
[aadf01e]656 return ENOTSOCK;
[7282582]657
[fb04cba8]658 /* Get the next received packet */
[08042bd]659 packet_id = dyn_fifo_value(&socket->received);
[7282582]660 if (packet_id < 0)
[aadf01e]661 return NO_DATA;
[46ae62c]662
663 rc = packet_translate_remote(udp_globals.net_phone, &packet, packet_id);
[08042bd]664 if (rc != EOK) {
665 (void) dyn_fifo_pop(&socket->received);
[46ae62c]666 return rc;
[08042bd]667 }
[7282582]668
[fb04cba8]669 /* Get UDP header */
[aadf01e]670 data = packet_get_data(packet);
[08042bd]671 if (!data) {
672 (void) dyn_fifo_pop(&socket->received);
[de229f8e]673 return udp_release_and_return(packet, NO_DATA);
[08042bd]674 }
[4e5c7ba]675 header = (udp_header_t *) data;
[21580dd]676
[fb04cba8]677 /* Set the source address port */
[aadf01e]678 result = packet_get_addr(packet, (uint8_t **) &addr, NULL);
[46ae62c]679 rc = tl_set_address_port(addr, result, ntohs(header->source_port));
[08042bd]680 if (rc != EOK) {
681 (void) dyn_fifo_pop(&socket->received);
[de229f8e]682 return udp_release_and_return(packet, rc);
[08042bd]683 }
[aadf01e]684 *addrlen = (size_t) result;
[7282582]685
[fb04cba8]686 /* Send the source address */
[46ae62c]687 rc = data_reply(addr, *addrlen);
[08042bd]688 switch (rc) {
689 case EOK:
690 break;
691 case EOVERFLOW:
692 return rc;
693 default:
694 (void) dyn_fifo_pop(&socket->received);
[a63ff7d]695 return udp_release_and_return(packet, rc);
[08042bd]696 }
[21580dd]697
[fb04cba8]698 /* Trim the header */
[46ae62c]699 rc = packet_trim(packet, UDP_HEADER_SIZE, 0);
[08042bd]700 if (rc != EOK) {
701 (void) dyn_fifo_pop(&socket->received);
[a63ff7d]702 return udp_release_and_return(packet, rc);
[08042bd]703 }
[21580dd]704
[fb04cba8]705 /* Reply the packets */
[46ae62c]706 rc = socket_reply_packets(packet, &length);
[08042bd]707 switch (rc) {
708 case EOK:
709 break;
710 case EOVERFLOW:
711 return rc;
712 default:
713 (void) dyn_fifo_pop(&socket->received);
[a63ff7d]714 return udp_release_and_return(packet, rc);
[08042bd]715 }
716
717 (void) dyn_fifo_pop(&socket->received);
[7282582]718
[fb04cba8]719 /* Release the packet and return the total length */
[de229f8e]720 return udp_release_and_return(packet, (int) length);
[21580dd]721}
722
[457a6f5]723/** Processes the socket client messages.
724 *
725 * Runs until the client module disconnects.
726 *
727 * @param[in] callid The message identifier.
728 * @param[in] call The message parameters.
[1bfd3d3]729 * @return EOK on success.
[457a6f5]730 *
731 * @see socket.h
732 */
733static int udp_process_client_messages(ipc_callid_t callid, ipc_call_t call)
[7282582]734{
[457a6f5]735 int res;
736 bool keep_on_going = true;
737 socket_cores_t local_sockets;
[774e6d1a]738 int app_phone = IPC_GET_PHONE(call);
[457a6f5]739 struct sockaddr *addr;
740 int socket_id;
741 size_t addrlen;
[afe1d1e]742 size_t size = 0;
[457a6f5]743 ipc_call_t answer;
[774e6d1a]744 size_t answer_count;
[f772bc55]745 packet_dimension_t *packet_dimension;
[457a6f5]746
747 /*
748 * Accept the connection
749 * - Answer the first IPC_M_CONNECT_TO_ME call.
750 */
751 res = EOK;
752 answer_count = 0;
753
[fb04cba8]754 /*
755 * The client connection is only in one fibril and therefore no
756 * additional locks are needed.
757 */
[457a6f5]758
759 socket_cores_initialize(&local_sockets);
760
761 while (keep_on_going) {
762
[fb04cba8]763 /* Answer the call */
[457a6f5]764 answer_call(callid, res, &answer, answer_count);
765
[fb04cba8]766 /* Refresh data */
[457a6f5]767 refresh_answer(&answer, &answer_count);
768
[fb04cba8]769 /* Get the next call */
[457a6f5]770 callid = async_get_call(&call);
771
[fb04cba8]772 /* Process the call */
[228e490]773 switch (IPC_GET_IMETHOD(call)) {
[457a6f5]774 case IPC_M_PHONE_HUNGUP:
775 keep_on_going = false;
776 res = EHANGUP;
777 break;
778
779 case NET_SOCKET:
780 socket_id = SOCKET_GET_SOCKET_ID(call);
781 res = socket_create(&local_sockets, app_phone, NULL,
782 &socket_id);
783 SOCKET_SET_SOCKET_ID(answer, socket_id);
784
785 if (res != EOK)
786 break;
787
788 if (tl_get_ip_packet_dimension(udp_globals.ip_phone,
789 &udp_globals.dimensions, DEVICE_INVALID_ID,
790 &packet_dimension) == EOK) {
791 SOCKET_SET_DATA_FRAGMENT_SIZE(answer,
792 packet_dimension->content);
793 }
794
795// SOCKET_SET_DATA_FRAGMENT_SIZE(answer,
796// MAX_UDP_FRAGMENT_SIZE);
797 SOCKET_SET_HEADER_SIZE(answer, UDP_HEADER_SIZE);
798 answer_count = 3;
799 break;
800
801 case NET_SOCKET_BIND:
[7880d58]802 res = async_data_write_accept((void **) &addr, false,
803 0, 0, 0, &addrlen);
[457a6f5]804 if (res != EOK)
805 break;
806 fibril_rwlock_write_lock(&udp_globals.lock);
807 res = socket_bind(&local_sockets, &udp_globals.sockets,
808 SOCKET_GET_SOCKET_ID(call), addr, addrlen,
809 UDP_FREE_PORTS_START, UDP_FREE_PORTS_END,
810 udp_globals.last_used_port);
811 fibril_rwlock_write_unlock(&udp_globals.lock);
812 free(addr);
813 break;
814
815 case NET_SOCKET_SENDTO:
[7880d58]816 res = async_data_write_accept((void **) &addr, false,
817 0, 0, 0, &addrlen);
[457a6f5]818 if (res != EOK)
819 break;
820
821 fibril_rwlock_write_lock(&udp_globals.lock);
822 res = udp_sendto_message(&local_sockets,
823 SOCKET_GET_SOCKET_ID(call), addr, addrlen,
824 SOCKET_GET_DATA_FRAGMENTS(call), &size,
825 SOCKET_GET_FLAGS(call));
826 SOCKET_SET_DATA_FRAGMENT_SIZE(answer, size);
827
828 if (res != EOK)
829 fibril_rwlock_write_unlock(&udp_globals.lock);
830 else
831 answer_count = 2;
832
833 free(addr);
834 break;
835
836 case NET_SOCKET_RECVFROM:
837 fibril_rwlock_write_lock(&udp_globals.lock);
838 res = udp_recvfrom_message(&local_sockets,
839 SOCKET_GET_SOCKET_ID(call), SOCKET_GET_FLAGS(call),
840 &addrlen);
841 fibril_rwlock_write_unlock(&udp_globals.lock);
842
843 if (res <= 0)
844 break;
845
846 SOCKET_SET_READ_DATA_LENGTH(answer, res);
847 SOCKET_SET_ADDRESS_LENGTH(answer, addrlen);
848 answer_count = 3;
849 res = EOK;
850 break;
851
852 case NET_SOCKET_CLOSE:
853 fibril_rwlock_write_lock(&udp_globals.lock);
854 res = socket_destroy(udp_globals.net_phone,
855 SOCKET_GET_SOCKET_ID(call), &local_sockets,
856 &udp_globals.sockets, NULL);
857 fibril_rwlock_write_unlock(&udp_globals.lock);
858 break;
859
860 case NET_SOCKET_GETSOCKOPT:
861 case NET_SOCKET_SETSOCKOPT:
862 default:
863 res = ENOTSUP;
864 break;
865 }
866 }
867
[fb04cba8]868 /* Release the application phone */
[ffa2c8ef]869 async_hangup(app_phone);
[457a6f5]870
[fb04cba8]871 /* Release all local sockets */
[457a6f5]872 socket_cores_release(udp_globals.net_phone, &local_sockets,
873 &udp_globals.sockets, NULL);
874
875 return res;
876}
877
[f1938c6]878/** Per-connection initialization
879 *
880 */
881void tl_connection(void)
882{
883}
884
[457a6f5]885/** Processes the UDP message.
886 *
887 * @param[in] callid The message identifier.
888 * @param[in] call The message parameters.
889 * @param[out] answer The message answer parameters.
890 * @param[out] answer_count The last parameter for the actual answer in the
891 * answer parameter.
[1bfd3d3]892 * @return EOK on success.
893 * @return ENOTSUP if the message is not known.
[457a6f5]894 *
895 * @see udp_interface.h
896 * @see IS_NET_UDP_MESSAGE()
897 */
[f1938c6]898int tl_message(ipc_callid_t callid, ipc_call_t *call,
[774e6d1a]899 ipc_call_t *answer, size_t *answer_count)
[457a6f5]900{
901 *answer_count = 0;
902
[228e490]903 switch (IPC_GET_IMETHOD(*call)) {
[457a6f5]904 case IPC_M_CONNECT_TO_ME:
[774e6d1a]905 return udp_process_client_messages(callid, *call);
[457a6f5]906 }
907
908 return ENOTSUP;
[21580dd]909}
910
[849ed54]911int main(int argc, char *argv[])
912{
913 /* Start the module */
[014dd57b]914 return tl_module_start(SERVICE_UDP);
[849ed54]915}
916
[21580dd]917/** @}
918 */
Note: See TracBrowser for help on using the repository browser.