Subversion Repositories HelenOS

Rev

Rev 4720 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4720 Rev 4721
1
/*
1
/*
2
 * Copyright (c) 2008 Lukas Mejdrech
2
 * Copyright (c) 2008 Lukas Mejdrech
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup icmp
29
/** @addtogroup icmp
30
 *  @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/** @file
33
/** @file
34
 *  ICMP module.
34
 *  ICMP module.
35
 */
35
 */
36
 
36
 
37
#ifndef __NET_ICMP_H__
37
#ifndef __NET_ICMP_H__
38
#define __NET_ICMP_H__
38
#define __NET_ICMP_H__
39
 
39
 
40
#include <fibril_sync.h>
40
#include <fibril_sync.h>
41
 
41
 
42
#include "../../include/icmp_codes.h"
42
#include "../../include/icmp_codes.h"
43
 
43
 
44
#include "../../structures/int_map.h"
44
#include "../../structures/int_map.h"
45
#include "../../structures/generic_field.h"
-
 
46
 
45
 
47
#include "icmp_header.h"
46
#include "icmp_header.h"
48
 
47
 
49
/** Type definition of the ICMP reply data.
48
/** Type definition of the ICMP reply data.
50
 *  @see icmp_reply
49
 *  @see icmp_reply
51
 */
50
 */
52
typedef struct icmp_reply   icmp_reply_t;
51
typedef struct icmp_reply   icmp_reply_t;
53
 
52
 
54
/** Type definition of the ICMP reply data pointer.
53
/** Type definition of the ICMP reply data pointer.
55
 *  @see icmp_reply
54
 *  @see icmp_reply
56
 */
55
 */
57
typedef icmp_reply_t *  icmp_reply_ref;
56
typedef icmp_reply_t *  icmp_reply_ref;
58
 
57
 
59
/** Type definition of the ICMP global data.
58
/** Type definition of the ICMP global data.
60
 *  @see icmp_globals
59
 *  @see icmp_globals
61
 */
60
 */
62
typedef struct icmp_globals icmp_globals_t;
61
typedef struct icmp_globals icmp_globals_t;
63
 
62
 
64
/** Pending replies map.
63
/** Pending replies map.
65
 *  Maps message identifiers to the pending replies.
64
 *  Maps message identifiers to the pending replies.
66
 *  Sending fibril waits for its associated reply event.
65
 *  Sending fibril waits for its associated reply event.
67
 *  Receiving fibril sets the associated reply with the return value and signals the event.
66
 *  Receiving fibril sets the associated reply with the return value and signals the event.
68
 */
67
 */
69
INT_MAP_DECLARE( icmp_replies, icmp_reply_t );
68
INT_MAP_DECLARE( icmp_replies, icmp_reply_t );
70
 
69
 
71
/** Echo specific data field.
70
/** Echo specific data map.
72
 *  Used for bundle modules.
-
 
73
 *  The bundle module gets an index to the assigned echo specific data while connecting.
71
 *  The bundle module gets an identifier of the assigned echo specific data while connecting.
74
 *  The index is used in the future semi-remote calls instead of the ICMP phone.
72
 *  The identifier is used in the future semi-remote calls instead of the ICMP phone.
75
 */
73
 */
76
GENERIC_FIELD_DECLARE( icmp_echo_data, icmp_echo_t );
74
INT_MAP_DECLARE( icmp_echo_data, icmp_echo_t );
77
 
75
 
78
/** ICMP reply data.
76
/** ICMP reply data.
79
 */
77
 */
80
struct icmp_reply{
78
struct icmp_reply{
81
    /** Reply result.
79
    /** Reply result.
82
     */
80
     */
83
    int                 result;
81
    int                 result;
84
    /** Safety lock.
82
    /** Safety lock.
85
     */
83
     */
86
    fibril_mutex_t      mutex;
84
    fibril_mutex_t      mutex;
87
    /** Received or timeouted reply signaling.
85
    /** Received or timeouted reply signaling.
88
     */
86
     */
89
    fibril_condvar_t    condvar;
87
    fibril_condvar_t    condvar;
90
};
88
};
91
 
89
 
92
/** ICMP global data.
90
/** ICMP global data.
93
 */
91
 */
94
struct  icmp_globals{
92
struct  icmp_globals{
95
    /** IP module phone.
93
    /** IP module phone.
96
     */
94
     */
97
    int             ip_phone;
95
    int             ip_phone;
98
    /** Reserved packet prefix length.
96
    /** Reserved packet prefix length.
99
     */
97
     */
100
    size_t          prefix;
98
    size_t          prefix;
101
    /** Maximal packet content length.
99
    /** Maximal packet content length.
102
     */
100
     */
103
    size_t          content;
101
    size_t          content;
104
    /** Reserved packet suffix length.
102
    /** Reserved packet suffix length.
105
     */
103
     */
106
    size_t          suffix;
104
    size_t          suffix;
107
    /** Packet address length.
105
    /** Packet address length.
108
     */
106
     */
109
    size_t          addr_len;
107
    size_t          addr_len;
110
    /** Networking module phone.
108
    /** Networking module phone.
111
     */
109
     */
112
    int             net_phone;
110
    int             net_phone;
113
    /** Indicates whether ICMP error reporting is enabled.
111
    /** Indicates whether ICMP error reporting is enabled.
114
     */
112
     */
115
    int             error_reporting;
113
    int             error_reporting;
116
    /** Indicates whether ICMP echo replying (ping) is enabled.
114
    /** Indicates whether ICMP echo replying (ping) is enabled.
117
     */
115
     */
118
    int             echo_replying;
116
    int             echo_replying;
119
    /** The last used identifier number.
117
    /** The last used identifier number.
120
     */
118
     */
121
    icmp_param_t    last_used_id;
119
    icmp_param_t    last_used_id;
122
    /** The budled modules assigned echo specific data.
120
    /** The budled modules assigned echo specific data.
123
     */
121
     */
124
    icmp_echo_data_t    echo_data;
122
    icmp_echo_data_t    echo_data;
125
    /** Echo timeout locks.
123
    /** Echo timeout locks.
126
     */
124
     */
127
    icmp_replies_t  replies;
125
    icmp_replies_t  replies;
128
    /** Safety lock.
126
    /** Safety lock.
129
     */
127
     */
130
    fibril_rwlock_t lock;
128
    fibril_rwlock_t lock;
131
};
129
};
132
 
130
 
133
#endif
131
#endif
134
 
132
 
135
/** @}
133
/** @}
136
 */
134
 */
137
 
135
 
138
 
136