| 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 icmp
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 |
|
|---|
| 33 | /** @file
|
|---|
| 34 | * ICMP module.
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | #ifndef __NET_ICMP_H__
|
|---|
| 38 | #define __NET_ICMP_H__
|
|---|
| 39 |
|
|---|
| 40 | #include <fibril_synch.h>
|
|---|
| 41 |
|
|---|
| 42 | #include <icmp_codes.h>
|
|---|
| 43 | #include <adt/int_map.h>
|
|---|
| 44 | #include <icmp_header.h>
|
|---|
| 45 |
|
|---|
| 46 | /** Type definition of the ICMP reply data.
|
|---|
| 47 | * @see icmp_reply
|
|---|
| 48 | */
|
|---|
| 49 | typedef struct icmp_reply icmp_reply_t;
|
|---|
| 50 |
|
|---|
| 51 | /** Type definition of the ICMP reply data pointer.
|
|---|
| 52 | * @see icmp_reply
|
|---|
| 53 | */
|
|---|
| 54 | typedef icmp_reply_t * icmp_reply_ref;
|
|---|
| 55 |
|
|---|
| 56 | /** Type definition of the ICMP global data.
|
|---|
| 57 | * @see icmp_globals
|
|---|
| 58 | */
|
|---|
| 59 | typedef struct icmp_globals icmp_globals_t;
|
|---|
| 60 |
|
|---|
| 61 | /** Pending replies map.
|
|---|
| 62 | * Maps message identifiers to the pending replies.
|
|---|
| 63 | * Sending fibril waits for its associated reply event.
|
|---|
| 64 | * Receiving fibril sets the associated reply with the return value and signals the event.
|
|---|
| 65 | */
|
|---|
| 66 | INT_MAP_DECLARE(icmp_replies, icmp_reply_t);
|
|---|
| 67 |
|
|---|
| 68 | /** Echo specific data map.
|
|---|
| 69 | * The bundle module gets an identifier of the assigned echo specific data while connecting.
|
|---|
| 70 | * The identifier is used in the future semi-remote calls instead of the ICMP phone.
|
|---|
| 71 | */
|
|---|
| 72 | INT_MAP_DECLARE(icmp_echo_data, icmp_echo_t);
|
|---|
| 73 |
|
|---|
| 74 | /** ICMP reply data.
|
|---|
| 75 | */
|
|---|
| 76 | struct icmp_reply{
|
|---|
| 77 | /** Reply result.
|
|---|
| 78 | */
|
|---|
| 79 | int result;
|
|---|
| 80 | /** Safety lock.
|
|---|
| 81 | */
|
|---|
| 82 | fibril_mutex_t mutex;
|
|---|
| 83 | /** Received or timeouted reply signaling.
|
|---|
| 84 | */
|
|---|
| 85 | fibril_condvar_t condvar;
|
|---|
| 86 | };
|
|---|
| 87 |
|
|---|
| 88 | /** ICMP global data.
|
|---|
| 89 | */
|
|---|
| 90 | struct icmp_globals{
|
|---|
| 91 | /** IP module phone.
|
|---|
| 92 | */
|
|---|
| 93 | int ip_phone;
|
|---|
| 94 | /** Packet dimension.
|
|---|
| 95 | */
|
|---|
| 96 | packet_dimension_t packet_dimension;
|
|---|
| 97 | /** Networking module phone.
|
|---|
| 98 | */
|
|---|
| 99 | int net_phone;
|
|---|
| 100 | /** Indicates whether ICMP error reporting is enabled.
|
|---|
| 101 | */
|
|---|
| 102 | int error_reporting;
|
|---|
| 103 | /** Indicates whether ICMP echo replying (ping) is enabled.
|
|---|
| 104 | */
|
|---|
| 105 | int echo_replying;
|
|---|
| 106 | /** The last used identifier number.
|
|---|
| 107 | */
|
|---|
| 108 | icmp_param_t last_used_id;
|
|---|
| 109 | /** The budled modules assigned echo specific data.
|
|---|
| 110 | */
|
|---|
| 111 | icmp_echo_data_t echo_data;
|
|---|
| 112 | /** Echo timeout locks.
|
|---|
| 113 | */
|
|---|
| 114 | icmp_replies_t replies;
|
|---|
| 115 | /** Safety lock.
|
|---|
| 116 | */
|
|---|
| 117 | fibril_rwlock_t lock;
|
|---|
| 118 | };
|
|---|
| 119 |
|
|---|
| 120 | #endif
|
|---|
| 121 |
|
|---|
| 122 | /** @}
|
|---|
| 123 | */
|
|---|
| 124 |
|
|---|