Subversion Repositories HelenOS

Rev

Rev 4500 | Rev 4558 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4500 Rev 4505
1
/*
1
/*
2
 * Copyright (c) 2009 Lukas Mejdrech
2
 * Copyright (c) 2009 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 eth
29
/** @addtogroup eth
30
 *  @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/** @file
33
/** @file
34
 *  Ethernet module implementation.
34
 *  Ethernet module implementation.
35
 *  @see eth.h
35
 *  @see eth.h
36
 */
36
 */
37
 
37
 
38
#include <async.h>
38
#include <async.h>
39
#include <malloc.h>
39
#include <malloc.h>
40
#include <mem.h>
40
#include <mem.h>
41
#include <stdio.h>
41
#include <stdio.h>
42
 
42
 
43
#include <ipc/ipc.h>
43
#include <ipc/ipc.h>
44
#include <ipc/services.h>
44
#include <ipc/services.h>
45
 
45
 
46
#include "../../err.h"
46
#include "../../err.h"
47
#include "../../messages.h"
47
#include "../../messages.h"
48
#include "../../modules.h"
48
#include "../../modules.h"
49
 
49
 
50
#include "../../include/byteorder.h"
50
#include "../../include/byteorder.h"
51
#include "../../include/crc.h"
51
#include "../../include/crc.h"
52
#include "../../include/ethernet_lsap.h"
52
#include "../../include/ethernet_lsap.h"
53
#include "../../include/ethernet_protocols.h"
53
#include "../../include/ethernet_protocols.h"
54
#include "../../include/protocol_map.h"
54
#include "../../include/protocol_map.h"
55
#include "../../include/device.h"
55
#include "../../include/device.h"
56
#include "../../include/netif_interface.h"
56
#include "../../include/netif_interface.h"
57
#include "../../include/net_interface.h"
57
#include "../../include/net_interface.h"
58
#include "../../include/nil_interface.h"
58
#include "../../include/nil_interface.h"
59
#include "../../include/il_interface.h"
59
#include "../../include/il_interface.h"
60
 
60
 
61
#include "../../structures/measured_strings.h"
61
#include "../../structures/measured_strings.h"
62
#include "../../structures/packet/packet_client.h"
62
#include "../../structures/packet/packet_client.h"
63
 
63
 
64
#include "../nil_module.h"
64
#include "../nil_module.h"
65
 
65
 
66
#include "eth.h"
66
#include "eth.h"
67
#include "eth_header.h"
67
#include "eth_header.h"
68
 
68
 
69
/** Reserved packet prefix length.
69
/** Reserved packet prefix length.
70
 */
70
 */
71
#define ETH_PREFIX      ( sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ))
71
#define ETH_PREFIX      ( sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ))
72
 
72
 
73
/** Reserved packet suffix length.
73
/** Reserved packet suffix length.
74
 */
74
 */
75
#define ETH_SUFFIX      sizeof( eth_fcs_t )
75
#define ETH_SUFFIX      sizeof( eth_fcs_t )
76
 
76
 
77
/** Maximum packet content length.
77
/** Maximum packet content length.
78
 */
78
 */
79
#define ETH_MAX_CONTENT 1500
79
#define ETH_MAX_CONTENT 1500
80
 
80
 
81
/** Minimum packet content length.
81
/** Minimum packet content length.
82
 */
82
 */
83
#define ETH_MIN_CONTENT 46
83
#define ETH_MIN_CONTENT 46
84
 
84
 
85
/** Maximum tagged packet content length.
85
/** Maximum tagged packet content length.
86
 */
86
 */
87
#define ETH_MAX_TAGGED_CONTENT( flags ) ( ETH_MAX_CONTENT - (( IS_8023_2_LSAP( flags ) || IS_8023_2_SNAP( flags )) ? sizeof( eth_header_lsap_t ) : 0 ) - ( IS_8023_2_SNAP( flags ) ? sizeof( eth_header_snap_t ) : 0 ))
87
#define ETH_MAX_TAGGED_CONTENT( flags ) ( ETH_MAX_CONTENT - (( IS_8023_2_LSAP( flags ) || IS_8023_2_SNAP( flags )) ? sizeof( eth_header_lsap_t ) : 0 ) - ( IS_8023_2_SNAP( flags ) ? sizeof( eth_header_snap_t ) : 0 ))
88
 
88
 
89
/** Minimum tagged packet content length.
89
/** Minimum tagged packet content length.
90
 */
90
 */
91
#define ETH_MIN_TAGGED_CONTENT( flags ) ( ETH_MIN_CONTENT - (( IS_8023_2_LSAP( flags ) || IS_8023_2_SNAP( flags )) ? sizeof( eth_header_lsap_t ) : 0 ) - ( IS_8023_2_SNAP( flags ) ? sizeof( eth_header_snap_t ) : 0 ))
91
#define ETH_MIN_TAGGED_CONTENT( flags ) ( ETH_MIN_CONTENT - (( IS_8023_2_LSAP( flags ) || IS_8023_2_SNAP( flags )) ? sizeof( eth_header_lsap_t ) : 0 ) - ( IS_8023_2_SNAP( flags ) ? sizeof( eth_header_snap_t ) : 0 ))
92
 
92
 
93
/** Dummy flag shift value.
93
/** Dummy flag shift value.
94
 */
94
 */
95
#define ETH_DUMMY_SHIFT 0
95
#define ETH_DUMMY_SHIFT 0
96
 
96
 
97
/** Mode flag shift value.
97
/** Mode flag shift value.
98
 */
98
 */
99
#define ETH_MODE_SHIFT  1
99
#define ETH_MODE_SHIFT  1
100
 
100
 
101
/** Dummy device flag.
101
/** Dummy device flag.
102
 *  Preamble and FCS are mandatory part of the packets.
102
 *  Preamble and FCS are mandatory part of the packets.
103
 */
103
 */
104
#define ETH_DUMMY               ( 1 << ETH_DUMMY_SHIFT )
104
#define ETH_DUMMY               ( 1 << ETH_DUMMY_SHIFT )
105
 
105
 
106
/** Returns the dummy flag.
106
/** Returns the dummy flag.
107
 *  @see ETH_DUMMY
107
 *  @see ETH_DUMMY
108
 */
108
 */
109
#define IS_DUMMY( flags )       (( flags ) & ETH_DUMMY )
109
#define IS_DUMMY( flags )       (( flags ) & ETH_DUMMY )
110
 
110
 
111
/** Device mode flags.
111
/** Device mode flags.
112
 *  @see ETH_DIX
112
 *  @see ETH_DIX
113
 *  @see ETH_8023_2_LSAP
113
 *  @see ETH_8023_2_LSAP
114
 *  @see ETH_8023_2_SNAP
114
 *  @see ETH_8023_2_SNAP
115
 */
115
 */
116
#define ETH_MODE_MASK           ( 3 << ETH_MODE_SHIFT )
116
#define ETH_MODE_MASK           ( 3 << ETH_MODE_SHIFT )
117
 
117
 
118
/** DIX Ethernet mode flag.
118
/** DIX Ethernet mode flag.
119
 */
119
 */
120
#define ETH_DIX                 ( 1 << ETH_MODE_SHIFT )
120
#define ETH_DIX                 ( 1 << ETH_MODE_SHIFT )
121
 
121
 
122
/** Returns whether the DIX Ethernet mode flag is set.
122
/** Returns whether the DIX Ethernet mode flag is set.
123
 *  @param flags The ethernet flags. Input parameter.
123
 *  @param flags The ethernet flags. Input parameter.
124
 *  @see ETH_DIX
124
 *  @see ETH_DIX
125
 */
125
 */
126
#define IS_DIX( flags )         ((( flags ) & ETH_MODE_MASK ) == ETH_DIX )
126
#define IS_DIX( flags )         ((( flags ) & ETH_MODE_MASK ) == ETH_DIX )
127
 
127
 
128
/** 802.3 + 802.2 + LSAP mode flag.
128
/** 802.3 + 802.2 + LSAP mode flag.
129
 */
129
 */
130
#define ETH_8023_2_LSAP         ( 2 << ETH_MODE_SHIFT )
130
#define ETH_8023_2_LSAP         ( 2 << ETH_MODE_SHIFT )
131
 
131
 
132
/** Returns whether the 802.3 + 802.2 + LSAP mode flag is set.
132
/** Returns whether the 802.3 + 802.2 + LSAP mode flag is set.
133
 *  @param flags The ethernet flags. Input parameter.
133
 *  @param flags The ethernet flags. Input parameter.
134
 *  @see ETH_8023_2_LSAP
134
 *  @see ETH_8023_2_LSAP
135
 */
135
 */
136
#define IS_8023_2_LSAP( flags ) ((( flags ) & ETH_MODE_MASK ) == ETH_8023_2_LSAP )
136
#define IS_8023_2_LSAP( flags ) ((( flags ) & ETH_MODE_MASK ) == ETH_8023_2_LSAP )
137
 
137
 
138
/** 802.3 + 802.2 + LSAP + SNAP mode flag.
138
/** 802.3 + 802.2 + LSAP + SNAP mode flag.
139
 */
139
 */
140
#define ETH_8023_2_SNAP         ( 3 << ETH_MODE_SHIFT )
140
#define ETH_8023_2_SNAP         ( 3 << ETH_MODE_SHIFT )
141
 
141
 
142
/** Returns whether the 802.3 + 802.2 + LSAP + SNAP mode flag is set.
142
/** Returns whether the 802.3 + 802.2 + LSAP + SNAP mode flag is set.
143
 *  @param flags The ethernet flags. Input parameter.
143
 *  @param flags The ethernet flags. Input parameter.
144
 *  @see ETH_8023_2_SNAP
144
 *  @see ETH_8023_2_SNAP
145
 */
145
 */
146
#define IS_8023_2_SNAP( flags ) ((( flags ) & ETH_MODE_MASK ) == ETH_8023_2_SNAP )
146
#define IS_8023_2_SNAP( flags ) ((( flags ) & ETH_MODE_MASK ) == ETH_8023_2_SNAP )
147
 
147
 
148
/** Type definition of the ethernet address type.
148
/** Type definition of the ethernet address type.
149
 *  @see eth_addr_type
149
 *  @see eth_addr_type
150
 */
150
 */
151
typedef enum eth_addr_type  eth_addr_type_t;
151
typedef enum eth_addr_type  eth_addr_type_t;
152
 
152
 
153
/** Type definition of the ethernet address type pointer.
153
/** Type definition of the ethernet address type pointer.
154
 *  @see eth_addr_type
154
 *  @see eth_addr_type
155
 */
155
 */
156
typedef eth_addr_type_t *   eth_addr_type_ref;
156
typedef eth_addr_type_t *   eth_addr_type_ref;
157
 
157
 
158
/** Ethernet address type.
158
/** Ethernet address type.
159
 */
159
 */
160
enum eth_addr_type{
160
enum eth_addr_type{
161
    /** Local address.
161
    /** Local address.
162
     */
162
     */
163
    ETH_LOCAL_ADDR,
163
    ETH_LOCAL_ADDR,
164
    /** Broadcast address.
164
    /** Broadcast address.
165
     */
165
     */
166
    ETH_BROADCAST_ADDR
166
    ETH_BROADCAST_ADDR
167
};
167
};
168
 
168
 
169
/** Ethernet module global data.
169
/** Ethernet module global data.
170
 */
170
 */
171
eth_globals_t   eth_globals;
171
eth_globals_t   eth_globals;
172
 
172
 
173
/** Processes IPC messages from the registered device driver modules in an infinite loop.
173
/** Processes IPC messages from the registered device driver modules in an infinite loop.
174
 *  @param iid The message identifier. Input parameter.
174
 *  @param iid The message identifier. Input parameter.
175
 *  @param icall The message parameters. Input/output parameter.
175
 *  @param icall The message parameters. Input/output parameter.
176
 */
176
 */
177
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
177
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
178
 
178
 
179
/** Registers new device or updates the MTU of an existing one.
179
/** Registers new device or updates the MTU of an existing one.
180
 *  Determines the device local hardware address.
180
 *  Determines the device local hardware address.
181
 *  @param device_id The new device identifier. Input parameter.
181
 *  @param device_id The new device identifier. Input parameter.
182
 *  @param service The device driver service. Input parameter.
182
 *  @param service The device driver service. Input parameter.
183
 *  @param mtu The device maximum transmission unit. Input parameter.
183
 *  @param mtu The device maximum transmission unit. Input parameter.
184
 *  @returns EOK on success.
184
 *  @returns EOK on success.
185
 *  @returns EEXIST if the device with the different service exists.
185
 *  @returns EEXIST if the device with the different service exists.
186
 *  @returns ENOMEM if there is not enough memory left.
186
 *  @returns ENOMEM if there is not enough memory left.
187
 *  @returns Other error codes as defined for the net_get_device_conf_req() function.
187
 *  @returns Other error codes as defined for the net_get_device_conf_req() function.
188
 *  @returns Other error codes as defined for the netif_bind_service() function.
188
 *  @returns Other error codes as defined for the netif_bind_service() function.
189
 *  @returns Other error codes as defined for the netif_get_addr() function.
189
 *  @returns Other error codes as defined for the netif_get_addr() function.
190
 */
190
 */
191
int eth_device_message( device_id_t device_id, services_t service, size_t mtu );
191
int eth_device_message( device_id_t device_id, services_t service, size_t mtu );
192
 
192
 
193
/** Registers receiving module service.
193
/** Registers receiving module service.
194
 *  Passes received packets for this service.
194
 *  Passes received packets for this service.
195
 *  @param service The module service. Input parameter.
195
 *  @param service The module service. Input parameter.
196
 *  @param phone The service phone. Input parameter.
196
 *  @param phone The service phone. Input parameter.
197
 *  @returns EOK on success.
197
 *  @returns EOK on success.
198
 *  @returns ENOENT if the service is not known.
198
 *  @returns ENOENT if the service is not known.
199
 *  @returns ENOMEM if there is not enough memory left.
199
 *  @returns ENOMEM if there is not enough memory left.
200
 */
200
 */
201
int nil_register_message( services_t service, int phone );
201
int nil_register_message( services_t service, int phone );
202
 
202
 
203
/** Returns the device packet dimensions for sending.
203
/** Returns the device packet dimensions for sending.
204
 *  @param device_id The device identifier. Input parameter.
204
 *  @param device_id The device identifier. Input parameter.
205
 *  @param addr_len The minimum reserved address length. Output parameter.
205
 *  @param addr_len The minimum reserved address length. Output parameter.
206
 *  @param prefix The minimum reserved prefix size. Output parameter.
206
 *  @param prefix The minimum reserved prefix size. Output parameter.
207
 *  @param content The maximum content size. Output parameter.
207
 *  @param content The maximum content size. Output parameter.
208
 *  @param suffix The minimum reserved suffix size. Output parameter.
208
 *  @param suffix The minimum reserved suffix size. Output parameter.
209
 *  @returns EOK on success.
209
 *  @returns EOK on success.
210
 *  @returns EBADMEM if either one of the parameters is NULL.
210
 *  @returns EBADMEM if either one of the parameters is NULL.
211
 *  @returns ENOENT if there is no such device.
211
 *  @returns ENOENT if there is no such device.
212
 */
212
 */
213
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix );
213
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix );
214
 
214
 
215
/** Returns the device hardware address.
215
/** Returns the device hardware address.
216
 *  @param device_id The device identifier. Input parameter.
216
 *  @param device_id The device identifier. Input parameter.
217
 *  @param type Type of the desired address. Input parameter
217
 *  @param type Type of the desired address. Input parameter
218
 *  @param address The device hardware address. Output parameter.
218
 *  @param address The device hardware address. Output parameter.
219
 *  @returns EOK on success.
219
 *  @returns EOK on success.
220
 *  @returns EBADMEM if the address parameter is NULL.
220
 *  @returns EBADMEM if the address parameter is NULL.
221
 *  @returns ENOENT if there no such device.
221
 *  @returns ENOENT if there no such device.
222
 */
222
 */
223
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address );
223
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address );
224
 
224
 
225
/** Sends the packet queue.
225
/** Sends the packet queue.
226
 *  Sends only packet successfully processed by the eth_prepare_packet() function.
226
 *  Sends only packet successfully processed by the eth_prepare_packet() function.
227
 *  @param device_id The device identifier. Input parameter.
227
 *  @param device_id The device identifier. Input parameter.
228
 *  @param packet The packet queue. Input parameter.
228
 *  @param packet The packet queue. Input parameter.
229
 *  @param sender The sending module service. Input parameter.
229
 *  @param sender The sending module service. Input parameter.
230
 *  @returns EOK on success.
230
 *  @returns EOK on success.
231
 *  @returns ENOENT if there no such device.
231
 *  @returns ENOENT if there no such device.
232
 *  @returns EINVAL if the service parameter is not known.
232
 *  @returns EINVAL if the service parameter is not known.
233
 */
233
 */
234
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender );
234
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender );
235
 
235
 
236
/** Processes the received packet and chooses the target registered module.
236
/** Processes the received packet and chooses the target registered module.
237
 *  @param flags The device flags. Input parameter.
237
 *  @param flags The device flags. Input parameter.
238
 *  @param packet The packet. Input parameter.
238
 *  @param packet The packet. Input parameter.
239
 *  @returns The target registered module.
239
 *  @returns The target registered module.
240
 *  @returns NULL if the packet is not long enough.
240
 *  @returns NULL if the packet is not long enough.
241
 *  @returns NULL if the packet is too long.
241
 *  @returns NULL if the packet is too long.
242
 *  @returns NULL if the raw ethernet protocol is used.
242
 *  @returns NULL if the raw ethernet protocol is used.
243
 *  @returns NULL if the dummy device FCS checksum is invalid.
243
 *  @returns NULL if the dummy device FCS checksum is invalid.
244
 *  @returns NULL if the packet address length is not big enough.
244
 *  @returns NULL if the packet address length is not big enough.
245
 */
245
 */
246
eth_proto_ref   eth_process_packet( int flags, packet_t packet );
246
eth_proto_ref   eth_process_packet( int flags, packet_t packet );
247
 
247
 
248
/** Prepares the packet for sending.
248
/** Prepares the packet for sending.
249
 *  @param flags The device flags. Input parameter.
249
 *  @param flags The device flags. Input parameter.
250
 *  @param packet The packet. Input parameter.
250
 *  @param packet The packet. Input parameter.
251
 *  @param src_addr The source hardware address. Input parameter.
251
 *  @param src_addr The source hardware address. Input parameter.
252
 *  @param ethertype The ethernet protocol type. Input parameter.
252
 *  @param ethertype The ethernet protocol type. Input parameter.
253
 *  @param mtu The device maximum transmission unit. Input parameter.
253
 *  @param mtu The device maximum transmission unit. Input parameter.
254
 *  @returns EOK on success.
254
 *  @returns EOK on success.
255
 *  @returns EINVAL if the packet addresses length is not long enough.
255
 *  @returns EINVAL if the packet addresses length is not long enough.
256
 *  @returns EINVAL if the packet is bigger than the device MTU.
256
 *  @returns EINVAL if the packet is bigger than the device MTU.
257
 *  @returns ENOMEM if there is not enough memory in the packet.
257
 *  @returns ENOMEM if there is not enough memory in the packet.
258
 */
258
 */
259
int eth_prepare_packet( int flags, packet_t packet, uint8_t * src_addr, int ethertype, size_t mtu );
259
int eth_prepare_packet( int flags, packet_t packet, uint8_t * src_addr, int ethertype, size_t mtu );
260
 
260
 
261
DEVICE_MAP_IMPLEMENT( eth_devices, eth_device_t )
261
DEVICE_MAP_IMPLEMENT( eth_devices, eth_device_t )
262
 
262
 
263
INT_MAP_IMPLEMENT( eth_protos, eth_proto_t )
263
INT_MAP_IMPLEMENT( eth_protos, eth_proto_t )
264
 
264
 
265
int nil_device_state_msg( int nil_phone, device_id_t device_id, int state ){
265
int nil_device_state_msg( int nil_phone, device_id_t device_id, int state ){
266
    int             index;
266
    int             index;
267
    eth_proto_ref   proto;
267
    eth_proto_ref   proto;
268
 
268
 
269
    //TODO clear device if off?
269
    //TODO clear device if off?
270
    rwlock_read_lock( & eth_globals.protos_lock );
270
    rwlock_read_lock( & eth_globals.protos_lock );
271
    for( index = eth_protos_count( & eth_globals.protos ) - 1; index >= 0; -- index ){
271
    for( index = eth_protos_count( & eth_globals.protos ) - 1; index >= 0; -- index ){
272
        proto = eth_protos_get_index( & eth_globals.protos, index );
272
        proto = eth_protos_get_index( & eth_globals.protos, index );
273
        if( proto && proto->phone ) il_device_state_msg( proto->phone, device_id, state, proto->service );
273
        if( proto && proto->phone ) il_device_state_msg( proto->phone, device_id, state, proto->service );
274
    }
274
    }
275
    rwlock_read_unlock( & eth_globals.protos_lock );
275
    rwlock_read_unlock( & eth_globals.protos_lock );
276
    return EOK;
276
    return EOK;
277
}
277
}
278
 
278
 
279
int nil_initialize( int net_phone ){
279
int nil_initialize( int net_phone ){
280
    ERROR_DECLARE;
280
    ERROR_DECLARE;
281
 
281
 
282
    rwlock_initialize( & eth_globals.devices_lock );
282
    rwlock_initialize( & eth_globals.devices_lock );
283
    rwlock_initialize( & eth_globals.protos_lock );
283
    rwlock_initialize( & eth_globals.protos_lock );
284
    rwlock_write_lock( & eth_globals.devices_lock );
284
    rwlock_write_lock( & eth_globals.devices_lock );
285
    rwlock_write_lock( & eth_globals.protos_lock );
285
    rwlock_write_lock( & eth_globals.protos_lock );
286
    eth_globals.net_phone = net_phone;
286
    eth_globals.net_phone = net_phone;
287
    eth_globals.broadcast_addr = measured_string_create_bulk( "\xFF\xFF\xFF\xFF\xFF\xFF", CONVERT_SIZE( uint8_t, char, ETH_ADDR ));
287
    eth_globals.broadcast_addr = measured_string_create_bulk( "\xFF\xFF\xFF\xFF\xFF\xFF", CONVERT_SIZE( uint8_t, char, ETH_ADDR ));
288
    if( ! eth_globals.broadcast_addr ) return ENOMEM;
288
    if( ! eth_globals.broadcast_addr ) return ENOMEM;
289
    ERROR_PROPAGATE( eth_devices_initialize( & eth_globals.devices ));
289
    ERROR_PROPAGATE( eth_devices_initialize( & eth_globals.devices ));
290
    if( ERROR_OCCURRED( eth_protos_initialize( & eth_globals.protos ))){
290
    if( ERROR_OCCURRED( eth_protos_initialize( & eth_globals.protos ))){
291
        eth_devices_destroy( & eth_globals.devices );
291
        eth_devices_destroy( & eth_globals.devices );
292
        return ERROR_CODE;
292
        return ERROR_CODE;
293
    }
293
    }
294
    rwlock_write_unlock( & eth_globals.protos_lock );
294
    rwlock_write_unlock( & eth_globals.protos_lock );
295
    rwlock_write_unlock( & eth_globals.devices_lock );
295
    rwlock_write_unlock( & eth_globals.devices_lock );
296
    return EOK;
296
    return EOK;
297
}
297
}
298
 
298
 
299
int eth_device_message( device_id_t device_id, services_t service, size_t mtu ){
299
int eth_device_message( device_id_t device_id, services_t service, size_t mtu ){
300
    ERROR_DECLARE;
300
    ERROR_DECLARE;
301
 
301
 
302
    eth_device_ref  device;
302
    eth_device_ref  device;
303
    int             index;
303
    int             index;
304
    measured_string_t   names[ 2 ] = {{ "ETH_MODE", 8 }, { "ETH_DUMMY", 9 }};
304
    measured_string_t   names[ 2 ] = {{ "ETH_MODE", 8 }, { "ETH_DUMMY", 9 }};
305
    measured_string_ref configuration;
305
    measured_string_ref configuration;
306
    size_t              count = sizeof( names ) / sizeof( measured_string_t );
306
    size_t              count = sizeof( names ) / sizeof( measured_string_t );
307
    char *              data;
307
    char *              data;
308
 
308
 
309
    rwlock_write_lock( & eth_globals.devices_lock );
309
    rwlock_write_lock( & eth_globals.devices_lock );
310
    // an existing device?
310
    // an existing device?
311
    device = eth_devices_find( & eth_globals.devices, device_id );
311
    device = eth_devices_find( & eth_globals.devices, device_id );
312
    if( device ){
312
    if( device ){
313
        if( device->service != service ){
313
        if( device->service != service ){
314
            printf( "Device %d already exists\n", device->device_id );
314
            printf( "Device %d already exists\n", device->device_id );
315
            rwlock_write_unlock( & eth_globals.devices_lock );
315
            rwlock_write_unlock( & eth_globals.devices_lock );
316
            return EEXIST;
316
            return EEXIST;
317
        }else{
317
        }else{
318
            // update mtu
318
            // update mtu
319
            device->mtu = mtu;
319
            device->mtu = mtu;
320
            printf( "Device %d already exists:\tMTU\t= %d\n", device->device_id, device->mtu );
320
            printf( "Device %d already exists:\tMTU\t= %d\n", device->device_id, device->mtu );
321
        }
321
        }
322
    }else{
322
    }else{
323
        // create a new device
323
        // create a new device
324
        device = ( eth_device_ref ) malloc( sizeof( eth_device_t ));
324
        device = ( eth_device_ref ) malloc( sizeof( eth_device_t ));
325
        if( ! device ) return ENOMEM;
325
        if( ! device ) return ENOMEM;
326
        device->device_id = device_id;
326
        device->device_id = device_id;
327
        device->service = service;
327
        device->service = service;
328
        device->flags = 0;
328
        device->flags = 0;
329
        device->mtu = (( mtu > 0 ) && ( mtu <= ETH_MAX_TAGGED_CONTENT( device->flags ))) ? mtu : ETH_MAX_TAGGED_CONTENT( device->flags );
329
        device->mtu = (( mtu > 0 ) && ( mtu <= ETH_MAX_TAGGED_CONTENT( device->flags ))) ? mtu : ETH_MAX_TAGGED_CONTENT( device->flags );
330
        configuration = & names[ 0 ];
330
        configuration = & names[ 0 ];
331
        if( ERROR_OCCURRED( net_get_device_conf_req( eth_globals.net_phone, device->device_id, & configuration, count, & data ))){
331
        if( ERROR_OCCURRED( net_get_device_conf_req( eth_globals.net_phone, device->device_id, & configuration, count, & data ))){
332
            rwlock_write_unlock( & eth_globals.devices_lock );
332
            rwlock_write_unlock( & eth_globals.devices_lock );
333
            free( device );
333
            free( device );
334
            return ERROR_CODE;
334
            return ERROR_CODE;
335
        }
335
        }
336
        if( configuration ){
336
        if( configuration ){
337
            if( ! str_lcmp( configuration[ 0 ].value, "DIX", configuration[ 0 ].length )){
337
            if( ! str_lcmp( configuration[ 0 ].value, "DIX", configuration[ 0 ].length )){
338
                device->flags |= ETH_DIX;
338
                device->flags |= ETH_DIX;
339
            }else if( ! str_lcmp( configuration[ 0 ].value, "8023_2_LSAP", configuration[ 0 ].length )){
339
            }else if( ! str_lcmp( configuration[ 0 ].value, "8023_2_LSAP", configuration[ 0 ].length )){
340
                // TODO 8023_2_LSAP
340
                // TODO 8023_2_LSAP
341
                printf( "8023_2_LSAP is not supported (yet?), DIX used instead\n" );
341
                printf( "8023_2_LSAP is not supported (yet?), DIX used instead\n" );
342
                device->flags |= ETH_DIX;
342
                device->flags |= ETH_DIX;
343
            }else device->flags |= ETH_8023_2_SNAP;
343
            }else device->flags |= ETH_8023_2_SNAP;
344
            if(( configuration[ 1 ].value ) && ( configuration[ 1 ].value[ 0 ] == 'y' )){
344
            if(( configuration[ 1 ].value ) && ( configuration[ 1 ].value[ 0 ] == 'y' )){
345
                device->flags |= ETH_DUMMY;
345
                device->flags |= ETH_DUMMY;
346
            }
346
            }
347
            net_free_settings( configuration, data );
347
            net_free_settings( configuration, data );
348
        }else{
348
        }else{
349
            device->flags |= ETH_8023_2_SNAP;
349
            device->flags |= ETH_8023_2_SNAP;
350
        }
350
        }
351
        // bind the device driver
351
        // bind the device driver
352
        device->phone = netif_bind_service( device->service, device->device_id, SERVICE_ETHERNET, eth_receiver );
352
        device->phone = netif_bind_service( device->service, device->device_id, SERVICE_ETHERNET, eth_receiver );
353
        if( device->phone < 0 ){
353
        if( device->phone < 0 ){
354
            rwlock_write_unlock( & eth_globals.devices_lock );
354
            rwlock_write_unlock( & eth_globals.devices_lock );
355
            free( device );
355
            free( device );
356
            return device->phone;
356
            return device->phone;
357
        }
357
        }
358
        // get hardware address
358
        // get hardware address
359
        if( ERROR_OCCURRED( netif_get_addr( device->phone, device->device_id, & device->addr, & device->addr_data ))){
359
        if( ERROR_OCCURRED( netif_get_addr( device->phone, device->device_id, & device->addr, & device->addr_data ))){
360
            rwlock_write_unlock( & eth_globals.devices_lock );
360
            rwlock_write_unlock( & eth_globals.devices_lock );
361
            free( device );
361
            free( device );
362
            return ERROR_CODE;
362
            return ERROR_CODE;
363
        }
363
        }
364
        // add to the cache
364
        // add to the cache
365
        index = eth_devices_add( & eth_globals.devices, device->device_id, device );
365
        index = eth_devices_add( & eth_globals.devices, device->device_id, device );
366
        if( index < 0 ){
366
        if( index < 0 ){
367
            rwlock_write_unlock( & eth_globals.devices_lock );
367
            rwlock_write_unlock( & eth_globals.devices_lock );
368
            free( device->addr );
368
            free( device->addr );
369
            free( device->addr_data );
369
            free( device->addr_data );
370
            free( device );
370
            free( device );
371
            return index;
371
            return index;
372
        }
372
        }
373
        printf( "New device registered:\n\tid\t= %d\n\tservice\t= %d\n\tMTU\t= %d\n\taddress\t= %X:%X:%X:%X:%X:%X\n\tflags\t= 0x%x\n", device->device_id, device->service, device->mtu, device->addr_data[ 0 ], device->addr_data[ 1 ], device->addr_data[ 2 ], device->addr_data[ 3 ], device->addr_data[ 4 ], device->addr_data[ 5 ], device->flags );
373
        printf( "New device registered:\n\tid\t= %d\n\tservice\t= %d\n\tMTU\t= %d\n\taddress\t= %X:%X:%X:%X:%X:%X\n\tflags\t= 0x%x\n", device->device_id, device->service, device->mtu, device->addr_data[ 0 ], device->addr_data[ 1 ], device->addr_data[ 2 ], device->addr_data[ 3 ], device->addr_data[ 4 ], device->addr_data[ 5 ], device->flags );
374
    }
374
    }
375
    rwlock_write_unlock( & eth_globals.devices_lock );
375
    rwlock_write_unlock( & eth_globals.devices_lock );
376
    return EOK;
376
    return EOK;
377
}
377
}
378
 
378
 
379
eth_proto_ref eth_process_packet( int flags, packet_t packet ){
379
eth_proto_ref eth_process_packet( int flags, packet_t packet ){
380
    ERROR_DECLARE;
380
    ERROR_DECLARE;
381
 
381
 
382
    eth_header_ex_ref   header;
382
    eth_header_ex_ref   header;
383
    size_t              length;
383
    size_t              length;
384
    int                 type;
384
    int                 type;
385
    size_t              prefix;
385
    size_t              prefix;
386
    size_t              suffix;
386
    size_t              suffix;
387
    eth_fcs_ref         fcs;
387
    eth_fcs_ref         fcs;
388
 
388
 
389
    length = packet_get_data_length( packet );
389
    length = packet_get_data_length( packet );
390
    if( IS_DUMMY( flags )){
390
    if( IS_DUMMY( flags )){
391
        packet_trim( packet, sizeof( eth_preamble_t ), 0 );
391
        packet_trim( packet, sizeof( eth_preamble_t ), 0 );
392
    }
392
    }
393
    if( length < sizeof( eth_header_t ) + ETH_MIN_CONTENT + ( IS_DUMMY( flags ) ? ETH_SUFFIX : 0 )) return NULL;
393
    if( length < sizeof( eth_header_t ) + ETH_MIN_CONTENT + ( IS_DUMMY( flags ) ? ETH_SUFFIX : 0 )) return NULL;
394
    header = ( eth_header_ex_ref ) packet_get_data( packet );
394
    header = ( eth_header_ex_ref ) packet_get_data( packet );
395
    type = ntohs( header->header.ethertype );
395
    type = ntohs( header->header.ethertype );
396
    if( type >= ETH_MIN_PROTO ){
396
    if( type >= ETH_MIN_PROTO ){
397
        // DIX Ethernet
397
        // DIX Ethernet
398
        prefix = sizeof( eth_header_t );
398
        prefix = sizeof( eth_header_t );
399
        suffix = 0;
399
        suffix = 0;
400
        fcs = (( void * ) header ) + length - sizeof( eth_fcs_t );
400
        fcs = (( void * ) header ) + length - sizeof( eth_fcs_t );
401
    }else if( type <= ETH_MAX_CONTENT ){
401
    }else if( type <= ETH_MAX_CONTENT ){
402
        // translate "LSAP" values
402
        // translate "LSAP" values
403
        if(( header->lsap.dsap == ETH_LSAP_GLSAP ) && ( header->lsap.ssap == ETH_LSAP_GLSAP )){
403
        if(( header->lsap.dsap == ETH_LSAP_GLSAP ) && ( header->lsap.ssap == ETH_LSAP_GLSAP )){
404
            // raw packet
404
            // raw packet
405
            // discard
405
            // discard
406
            return NULL;
406
            return NULL;
407
        }else if(( header->lsap.dsap == ETH_LSAP_SNAP ) && ( header->lsap.ssap == ETH_LSAP_SNAP )){
407
        }else if(( header->lsap.dsap == ETH_LSAP_SNAP ) && ( header->lsap.ssap == ETH_LSAP_SNAP )){
408
            // IEEE 802.3 + 802.2 + LSAP + SNAP
408
            // IEEE 802.3 + 802.2 + LSAP + SNAP
409
            // organization code not supported
409
            // organization code not supported
410
            type = ntohs( header->snap.ethertype );
410
            type = ntohs( header->snap.ethertype );
411
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t );
411
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t );
412
        }else{
412
        }else{
413
            // IEEE 802.3 + 802.2 LSAP
413
            // IEEE 802.3 + 802.2 LSAP
414
            type = lsap_map( header->lsap.dsap );
414
            type = lsap_map( header->lsap.dsap );
415
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t);
415
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t);
416
        }
416
        }
417
        suffix = ( type < ETH_MIN_CONTENT ) ? ETH_MIN_CONTENT - type : 0;
417
        suffix = ( type < ETH_MIN_CONTENT ) ? ETH_MIN_CONTENT - type : 0;
418
        fcs = (( void * ) header ) + prefix + type + suffix;
418
        fcs = (( void * ) header ) + prefix + type + suffix;
419
        suffix += length - prefix - type;
419
        suffix += length - prefix - type;
420
    }else{
420
    }else{
421
        // invalid length/type, should not occurr
421
        // invalid length/type, should not occurr
422
        return NULL;
422
        return NULL;
423
    }
423
    }
424
    if( IS_DUMMY( flags )){
424
    if( IS_DUMMY( flags )){
425
        if(( ~ compute_crc32( ~ 0, & header->header.dest, ((( void * ) fcs ) - (( void * ) & header->header.dest )) * 8 )) != ntohl( * fcs )){
425
        if(( ~ compute_crc32( ~ 0, & header->header.dest, ((( void * ) fcs ) - (( void * ) & header->header.dest )) * 8 )) != ntohl( * fcs )){
426
            return NULL;
426
            return NULL;
427
        }
427
        }
428
        suffix += sizeof( eth_fcs_t );
428
        suffix += sizeof( eth_fcs_t );
429
    }
429
    }
430
    if( ERROR_OCCURRED( packet_set_addr( packet, header->header.src, header->header.dest, ETH_ADDR ))
430
    if( ERROR_OCCURRED( packet_set_addr( packet, header->header.src, header->header.dest, ETH_ADDR ))
431
    || ERROR_OCCURRED( packet_trim( packet, prefix, suffix ))){
431
    || ERROR_OCCURRED( packet_trim( packet, prefix, suffix ))){
432
        return NULL;
432
        return NULL;
433
    }
433
    }
434
    return eth_protos_find( & eth_globals.protos, type );
434
    return eth_protos_find( & eth_globals.protos, type );
435
}
435
}
436
 
436
 
437
int nil_received_msg( int nil_phone, device_id_t device_id, packet_t packet, services_t target ){
437
int nil_received_msg( int nil_phone, device_id_t device_id, packet_t packet, services_t target ){
438
    eth_proto_ref   proto;
438
    eth_proto_ref   proto;
439
    packet_t        next;
439
    packet_t        next;
440
    eth_device_ref  device;
440
    eth_device_ref  device;
441
    int             flags;
441
    int             flags;
442
 
442
 
443
    rwlock_read_lock( & eth_globals.devices_lock );
443
    rwlock_read_lock( & eth_globals.devices_lock );
444
    device = eth_devices_find( & eth_globals.devices, device_id );
444
    device = eth_devices_find( & eth_globals.devices, device_id );
445
    if( ! device ){
445
    if( ! device ){
446
        rwlock_read_unlock( & eth_globals.devices_lock );
446
        rwlock_read_unlock( & eth_globals.devices_lock );
447
        return ENOENT;
447
        return ENOENT;
448
    }
448
    }
449
    flags = device->flags;
449
    flags = device->flags;
450
    rwlock_read_unlock( & eth_globals.devices_lock );
450
    rwlock_read_unlock( & eth_globals.devices_lock );
451
    rwlock_read_lock( & eth_globals.protos_lock );
451
    rwlock_read_lock( & eth_globals.protos_lock );
452
    do{
452
    do{
453
        next = pq_detach( packet );
453
        next = pq_detach( packet );
454
        proto = eth_process_packet( flags, packet );
454
        proto = eth_process_packet( flags, packet );
455
        if( proto ){
455
        if( proto ){
456
            il_received_msg( proto->phone, device_id, packet, proto->service );
456
            il_received_msg( proto->phone, device_id, packet, proto->service );
457
        }else{
457
        }else{
458
            // drop invalid/unknown
458
            // drop invalid/unknown
459
            pq_release( eth_globals.net_phone, packet_get_id( packet ));
459
            pq_release( eth_globals.net_phone, packet_get_id( packet ));
460
        }
460
        }
461
        packet = next;
461
        packet = next;
462
    }while( packet );
462
    }while( packet );
463
    rwlock_read_unlock( & eth_globals.protos_lock );
463
    rwlock_read_unlock( & eth_globals.protos_lock );
464
    return EOK;
464
    return EOK;
465
}
465
}
466
 
466
 
467
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix ){
467
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix ){
468
    eth_device_ref  device;
468
    eth_device_ref  device;
469
 
469
 
470
    if( !( addr_len && prefix && content && suffix )) return EBADMEM;
470
    if( !( addr_len && prefix && content && suffix )) return EBADMEM;
471
    rwlock_read_lock( & eth_globals.devices_lock );
471
    rwlock_read_lock( & eth_globals.devices_lock );
472
    device = eth_devices_find( & eth_globals.devices, device_id );
472
    device = eth_devices_find( & eth_globals.devices, device_id );
473
    if( ! device ){
473
    if( ! device ){
474
        rwlock_read_unlock( & eth_globals.devices_lock );
474
        rwlock_read_unlock( & eth_globals.devices_lock );
475
        return ENOENT;
475
        return ENOENT;
476
    }
476
    }
477
    * content = device->mtu;
477
    * content = device->mtu;
478
    rwlock_read_unlock( & eth_globals.devices_lock );
478
    rwlock_read_unlock( & eth_globals.devices_lock );
479
    * addr_len = ETH_ADDR;
479
    * addr_len = ETH_ADDR;
480
    * prefix = ETH_PREFIX;
480
    * prefix = ETH_PREFIX;
481
    * suffix = ETH_MIN_CONTENT + ETH_SUFFIX;
481
    * suffix = ETH_MIN_CONTENT + ETH_SUFFIX;
482
    return EOK;
482
    return EOK;
483
}
483
}
484
 
484
 
485
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address ){
485
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address ){
486
    eth_device_ref  device;
486
    eth_device_ref  device;
487
 
487
 
488
    if( ! address ) return EBADMEM;
488
    if( ! address ) return EBADMEM;
489
    if( type == ETH_BROADCAST_ADDR ){
489
    if( type == ETH_BROADCAST_ADDR ){
490
        * address = eth_globals.broadcast_addr;
490
        * address = eth_globals.broadcast_addr;
491
    }else{
491
    }else{
492
        rwlock_read_lock( & eth_globals.devices_lock );
492
        rwlock_read_lock( & eth_globals.devices_lock );
493
        device = eth_devices_find( & eth_globals.devices, device_id );
493
        device = eth_devices_find( & eth_globals.devices, device_id );
494
        if( ! device ){
494
        if( ! device ){
495
            rwlock_read_unlock( & eth_globals.devices_lock );
495
            rwlock_read_unlock( & eth_globals.devices_lock );
496
            return ENOENT;
496
            return ENOENT;
497
        }
497
        }
498
        * address = device->addr;
498
        * address = device->addr;
499
        rwlock_read_unlock( & eth_globals.devices_lock );
499
        rwlock_read_unlock( & eth_globals.devices_lock );
500
    }
500
    }
501
    return ( * address ) ? EOK : ENOENT;
501
    return ( * address ) ? EOK : ENOENT;
502
}
502
}
503
 
503
 
504
int nil_register_message( services_t service, int phone ){
504
int nil_register_message( services_t service, int phone ){
505
    eth_proto_ref   proto;
505
    eth_proto_ref   proto;
506
    int             protocol;
506
    int             protocol;
507
    int             index;
507
    int             index;
508
 
508
 
509
    protocol = protocol_map( SERVICE_ETHERNET, service );
509
    protocol = protocol_map( SERVICE_ETHERNET, service );
510
    if( ! protocol ) return ENOENT;
510
    if( ! protocol ) return ENOENT;
511
    rwlock_write_lock( & eth_globals.protos_lock );
511
    rwlock_write_lock( & eth_globals.protos_lock );
512
    proto = eth_protos_find( & eth_globals.protos, protocol );
512
    proto = eth_protos_find( & eth_globals.protos, protocol );
513
    if( proto ){
513
    if( proto ){
514
        proto->phone = phone;
514
        proto->phone = phone;
515
        rwlock_write_unlock( & eth_globals.protos_lock );
515
        rwlock_write_unlock( & eth_globals.protos_lock );
516
        return EOK;
516
        return EOK;
517
    }else{
517
    }else{
518
        proto = ( eth_proto_ref ) malloc( sizeof( eth_proto_t ));
518
        proto = ( eth_proto_ref ) malloc( sizeof( eth_proto_t ));
519
        if( ! proto ){
519
        if( ! proto ){
520
            rwlock_write_unlock( & eth_globals.protos_lock );
520
            rwlock_write_unlock( & eth_globals.protos_lock );
521
            return ENOMEM;
521
            return ENOMEM;
522
        }
522
        }
523
        proto->service = service;
523
        proto->service = service;
524
        proto->protocol = protocol;
524
        proto->protocol = protocol;
525
        proto->phone = phone;
525
        proto->phone = phone;
526
        index = eth_protos_add( & eth_globals.protos, protocol, proto );
526
        index = eth_protos_add( & eth_globals.protos, protocol, proto );
527
        if( index < 0 ){
527
        if( index < 0 ){
528
            rwlock_write_unlock( & eth_globals.protos_lock );
528
            rwlock_write_unlock( & eth_globals.protos_lock );
529
            free( proto );
529
            free( proto );
530
            return index;
530
            return index;
531
        }
531
        }
532
    }
532
    }
533
    printf( "New protocol registered:\n\tprotocol\t= 0x%x\n\tservice\t= %d\n\tphone\t= %d\n", proto->protocol, proto->service, proto->phone );
533
    printf( "New protocol registered:\n\tprotocol\t= 0x%x\n\tservice\t= %d\n\tphone\t= %d\n", proto->protocol, proto->service, proto->phone );
534
    rwlock_write_unlock( & eth_globals.protos_lock );
534
    rwlock_write_unlock( & eth_globals.protos_lock );
535
    return EOK;
535
    return EOK;
536
}
536
}
537
 
537
 
538
int eth_prepare_packet( int flags, packet_t packet, uint8_t * src_addr, int ethertype, size_t mtu ){
538
int eth_prepare_packet( int flags, packet_t packet, uint8_t * src_addr, int ethertype, size_t mtu ){
539
    eth_header_ex_ref   header;
539
    eth_header_ex_ref   header;
540
    eth_header_ref      header_dix;
540
    eth_header_ref      header_dix;
541
    eth_fcs_ref         fcs;
541
    eth_fcs_ref         fcs;
542
    uint8_t *           src;
542
    uint8_t *           src;
543
    uint8_t *           dest;
543
    uint8_t *           dest;
544
    int                 length;
544
    int                 length;
545
    int                 i;
545
    int                 i;
546
    void *              padding;
546
    void *              padding;
547
    eth_preamble_ref    preamble;
547
    eth_preamble_ref    preamble;
548
 
548
 
549
    length = packet_get_addr( packet, & src, & dest );
549
    length = packet_get_addr( packet, & src, & dest );
550
    if( length < 0 ) return length;
550
    if( length < 0 ) return length;
551
    if( length < ETH_ADDR ) return EINVAL;
551
    if( length != ETH_ADDR ) return EINVAL;
552
    length = packet_get_data_length( packet );
552
    length = packet_get_data_length( packet );
553
    if( length > mtu ) return EINVAL;
553
    if( length > mtu ) return EINVAL;
554
    if( length < ETH_MIN_TAGGED_CONTENT( flags )){
554
    if( length < ETH_MIN_TAGGED_CONTENT( flags )){
555
        padding = packet_suffix( packet, ETH_MIN_TAGGED_CONTENT( flags ) - length );
555
        padding = packet_suffix( packet, ETH_MIN_TAGGED_CONTENT( flags ) - length );
556
        if( ! padding ) return ENOMEM;
556
        if( ! padding ) return ENOMEM;
557
        bzero( padding, ETH_MIN_TAGGED_CONTENT( flags ) - length );
557
        bzero( padding, ETH_MIN_TAGGED_CONTENT( flags ) - length );
558
    }
558
    }
559
    if( IS_DUMMY( flags )){
559
    if( IS_DUMMY( flags )){
560
        preamble = PACKET_PREFIX( packet, eth_preamble_t );
560
        preamble = PACKET_PREFIX( packet, eth_preamble_t );
561
        if( ! preamble ) return ENOMEM;
561
        if( ! preamble ) return ENOMEM;
562
        for( i = 0; i < 7; ++ i ) preamble->preamble[ i ] = ETH_PREAMBLE;
562
        for( i = 0; i < 7; ++ i ) preamble->preamble[ i ] = ETH_PREAMBLE;
563
        preamble->sfd = ETH_SFD;
563
        preamble->sfd = ETH_SFD;
564
    }
564
    }
565
    // TODO LSAP only device
565
    // TODO LSAP only device
566
    if( IS_DIX( flags ) || IS_8023_2_LSAP( flags )){
566
    if( IS_DIX( flags ) || IS_8023_2_LSAP( flags )){
567
        header_dix = PACKET_PREFIX( packet, eth_header_t );
567
        header_dix = PACKET_PREFIX( packet, eth_header_t );
568
        if( ! header_dix ) return ENOMEM;
568
        if( ! header_dix ) return ENOMEM;
569
        header_dix->ethertype = ( uint16_t ) ethertype;
569
        header_dix->ethertype = ( uint16_t ) ethertype;
570
        memcpy( header_dix->src, src_addr, ETH_ADDR );
570
        memcpy( header_dix->src, src_addr, ETH_ADDR );
571
        memcpy( header_dix->dest, dest, ETH_ADDR );
571
        memcpy( header_dix->dest, dest, ETH_ADDR );
572
        src = & header_dix->dest[ 0 ];
572
        src = & header_dix->dest[ 0 ];
573
    }else if( IS_8023_2_SNAP( flags )){
573
    }else if( IS_8023_2_SNAP( flags )){
574
        header = PACKET_PREFIX( packet, eth_header_ex_t );
574
        header = PACKET_PREFIX( packet, eth_header_ex_t );
575
        if( ! header ) return ENOMEM;
575
        if( ! header ) return ENOMEM;
576
        header->header.ethertype = htons( length + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ));
576
        header->header.ethertype = htons( length + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ));
577
        header->lsap.dsap = ( uint16_t ) ETH_LSAP_SNAP;
577
        header->lsap.dsap = ( uint16_t ) ETH_LSAP_SNAP;
578
        header->lsap.ssap = header->lsap.dsap;
578
        header->lsap.ssap = header->lsap.dsap;
579
        header->lsap.ctrl = 0;
579
        header->lsap.ctrl = 0;
580
        for( i = 0; i < 3; ++ i ) header->snap.proto[ i ] = 0;
580
        for( i = 0; i < 3; ++ i ) header->snap.proto[ i ] = 0;
581
        header->snap.ethertype = ( uint16_t ) ethertype;
581
        header->snap.ethertype = ( uint16_t ) ethertype;
582
        memcpy( header->header.src, src_addr, ETH_ADDR );
582
        memcpy( header->header.src, src_addr, ETH_ADDR );
583
        memcpy( header->header.dest, dest, ETH_ADDR );
583
        memcpy( header->header.dest, dest, ETH_ADDR );
584
        src = & header->header.dest[ 0 ];
584
        src = & header->header.dest[ 0 ];
585
    }
585
    }
586
    if( IS_DUMMY( flags )){
586
    if( IS_DUMMY( flags )){
587
        fcs = PACKET_SUFFIX( packet, eth_fcs_t );
587
        fcs = PACKET_SUFFIX( packet, eth_fcs_t );
588
        if( ! fcs ) return ENOMEM;
588
        if( ! fcs ) return ENOMEM;
589
        * fcs = htonl( ~ compute_crc32( ~ 0, src, ((( void * ) fcs ) - (( void * ) src )) * 8 ));
589
        * fcs = htonl( ~ compute_crc32( ~ 0, src, ((( void * ) fcs ) - (( void * ) src )) * 8 ));
590
    }
590
    }
591
    return EOK;
591
    return EOK;
592
}
592
}
593
 
593
 
594
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender ){
594
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender ){
595
    ERROR_DECLARE;
595
    ERROR_DECLARE;
596
 
596
 
597
    eth_device_ref      device;
597
    eth_device_ref      device;
598
    packet_t            next;
598
    packet_t            next;
599
    packet_t            tmp;
599
    packet_t            tmp;
600
    int                 ethertype;
600
    int                 ethertype;
601
 
601
 
602
    ethertype = htons( protocol_map( SERVICE_ETHERNET, sender ));
602
    ethertype = htons( protocol_map( SERVICE_ETHERNET, sender ));
603
    if( ! ethertype ){
603
    if( ! ethertype ){
604
        pq_release( eth_globals.net_phone, packet_get_id( packet ));
604
        pq_release( eth_globals.net_phone, packet_get_id( packet ));
605
        return EINVAL;
605
        return EINVAL;
606
    }
606
    }
607
    rwlock_read_lock( & eth_globals.devices_lock );
607
    rwlock_read_lock( & eth_globals.devices_lock );
608
    device = eth_devices_find( & eth_globals.devices, device_id );
608
    device = eth_devices_find( & eth_globals.devices, device_id );
609
    if( ! device ){
609
    if( ! device ){
610
        rwlock_read_unlock( & eth_globals.devices_lock );
610
        rwlock_read_unlock( & eth_globals.devices_lock );
611
        return ENOENT;
611
        return ENOENT;
612
    }
612
    }
613
    // process packet queue
613
    // process packet queue
614
    next = packet;
614
    next = packet;
615
    do{
615
    do{
616
        if( ERROR_OCCURRED( eth_prepare_packet( device->flags, next, ( uint8_t * ) device->addr->value, ethertype, device->mtu ))){
616
        if( ERROR_OCCURRED( eth_prepare_packet( device->flags, next, ( uint8_t * ) device->addr->value, ethertype, device->mtu ))){
617
            // release invalid packet
617
            // release invalid packet
618
            tmp = pq_detach( next );
618
            tmp = pq_detach( next );
619
            if( next == packet ) packet = tmp;
619
            if( next == packet ) packet = tmp;
620
            pq_release( eth_globals.net_phone, packet_get_id( next ));
620
            pq_release( eth_globals.net_phone, packet_get_id( next ));
621
            next = tmp;
621
            next = tmp;
622
        }else{
622
        }else{
623
            next = pq_next( next );
623
            next = pq_next( next );
624
        }
624
        }
625
    }while( next );
625
    }while( next );
626
    // send packet queue
626
    // send packet queue
627
    if( packet ){
627
    if( packet ){
628
        netif_send_msg( device->phone, device_id, packet, SERVICE_ETHERNET );
628
        netif_send_msg( device->phone, device_id, packet, SERVICE_ETHERNET );
629
    }
629
    }
630
    rwlock_read_unlock( & eth_globals.devices_lock );
630
    rwlock_read_unlock( & eth_globals.devices_lock );
631
    return EOK;
631
    return EOK;
632
}
632
}
633
 
633
 
634
int nil_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){
634
int nil_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){
635
    ERROR_DECLARE;
635
    ERROR_DECLARE;
636
 
636
 
637
    measured_string_ref address;
637
    measured_string_ref address;
638
    packet_t            packet;
638
    packet_t            packet;
639
 
639
 
640
//  printf( "message %d - %d\n", IPC_GET_METHOD( * call ), NET_NIL_FIRST );
640
//  printf( "message %d - %d\n", IPC_GET_METHOD( * call ), NET_NIL_FIRST );
641
    * answer_count = 0;
641
    * answer_count = 0;
642
    switch( IPC_GET_METHOD( * call )){
642
    switch( IPC_GET_METHOD( * call )){
643
        case IPC_M_PHONE_HUNGUP:
643
        case IPC_M_PHONE_HUNGUP:
644
            return EOK;
644
            return EOK;
645
        case NET_NIL_DEVICE:
645
        case NET_NIL_DEVICE:
646
            return eth_device_message( IPC_GET_DEVICE( call ), IPC_GET_SERVICE( call ), NIL_GET_MTU( call ));
646
            return eth_device_message( IPC_GET_DEVICE( call ), IPC_GET_SERVICE( call ), NIL_GET_MTU( call ));
647
        case NET_NIL_SEND:
647
        case NET_NIL_SEND:
648
            ERROR_PROPAGATE( packet_translate( eth_globals.net_phone, & packet, IPC_GET_PACKET( call )));
648
            ERROR_PROPAGATE( packet_translate( eth_globals.net_phone, & packet, IPC_GET_PACKET( call )));
649
            return eth_send_message( IPC_GET_DEVICE( call ), packet, IPC_GET_SERVICE( call ));
649
            return eth_send_message( IPC_GET_DEVICE( call ), packet, IPC_GET_SERVICE( call ));
650
        case NET_NIL_PACKET_SPACE:
650
        case NET_NIL_PACKET_SPACE:
651
            ERROR_PROPAGATE( eth_packet_space_message( IPC_GET_DEVICE( call ), IPC_SET_ADDR( answer ), IPC_SET_PREFIX( answer ), IPC_SET_CONTENT( answer ), IPC_SET_SUFFIX( answer )));
651
            ERROR_PROPAGATE( eth_packet_space_message( IPC_GET_DEVICE( call ), IPC_SET_ADDR( answer ), IPC_SET_PREFIX( answer ), IPC_SET_CONTENT( answer ), IPC_SET_SUFFIX( answer )));
652
            * answer_count = 4;
652
            * answer_count = 4;
653
            return EOK;
653
            return EOK;
654
        case NET_NIL_ADDR:
654
        case NET_NIL_ADDR:
655
            ERROR_PROPAGATE( eth_addr_message( IPC_GET_DEVICE( call ), ETH_LOCAL_ADDR, & address ));
655
            ERROR_PROPAGATE( eth_addr_message( IPC_GET_DEVICE( call ), ETH_LOCAL_ADDR, & address ));
656
            return measured_strings_reply( address, 1 );
656
            return measured_strings_reply( address, 1 );
657
        case NET_NIL_BROADCAST_ADDR:
657
        case NET_NIL_BROADCAST_ADDR:
658
            ERROR_PROPAGATE( eth_addr_message( IPC_GET_DEVICE( call ), ETH_BROADCAST_ADDR, & address ));
658
            ERROR_PROPAGATE( eth_addr_message( IPC_GET_DEVICE( call ), ETH_BROADCAST_ADDR, & address ));
659
            return measured_strings_reply( address, 1 );
659
            return measured_strings_reply( address, 1 );
660
        case IPC_M_CONNECT_TO_ME:
660
        case IPC_M_CONNECT_TO_ME:
661
            return nil_register_message( NIL_GET_PROTO( call ), IPC_GET_PHONE( call ));
661
            return nil_register_message( NIL_GET_PROTO( call ), IPC_GET_PHONE( call ));
662
    }
662
    }
663
    return ENOTSUP;
663
    return ENOTSUP;
664
}
664
}
665
 
665
 
666
void eth_receiver( ipc_callid_t iid, ipc_call_t * icall ){
666
void eth_receiver( ipc_callid_t iid, ipc_call_t * icall ){
667
    ERROR_DECLARE;
667
    ERROR_DECLARE;
668
 
668
 
669
    packet_t        packet;
669
    packet_t        packet;
670
 
670
 
671
    while( true ){
671
    while( true ){
672
//      printf( "message %d - %d\n", IPC_GET_METHOD( * icall ), NET_NIL_FIRST );
672
//      printf( "message %d - %d\n", IPC_GET_METHOD( * icall ), NET_NIL_FIRST );
673
        switch( IPC_GET_METHOD( * icall )){
673
        switch( IPC_GET_METHOD( * icall )){
674
            case NET_NIL_DEVICE_STATE:
674
            case NET_NIL_DEVICE_STATE:
675
                nil_device_state_msg( 0, IPC_GET_DEVICE( icall ), IPC_GET_STATE( icall ));
675
                nil_device_state_msg( 0, IPC_GET_DEVICE( icall ), IPC_GET_STATE( icall ));
676
                ipc_answer_0( iid, EOK );
676
                ipc_answer_0( iid, EOK );
677
                break;
677
                break;
678
            case NET_NIL_RECEIVED:
678
            case NET_NIL_RECEIVED:
679
                if( ! ERROR_OCCURRED( packet_translate( eth_globals.net_phone, & packet, IPC_GET_PACKET( icall )))){
679
                if( ! ERROR_OCCURRED( packet_translate( eth_globals.net_phone, & packet, IPC_GET_PACKET( icall )))){
680
                    ERROR_CODE = nil_received_msg( 0, IPC_GET_DEVICE( icall ), packet, 0 );
680
                    ERROR_CODE = nil_received_msg( 0, IPC_GET_DEVICE( icall ), packet, 0 );
681
                }
681
                }
682
                ipc_answer_0( iid, ERROR_CODE );
682
                ipc_answer_0( iid, ERROR_CODE );
683
                break;
683
                break;
684
            default:
684
            default:
685
                ipc_answer_0( iid, ENOTSUP );
685
                ipc_answer_0( iid, ENOTSUP );
686
        }
686
        }
687
        iid = async_get_call( icall );
687
        iid = async_get_call( icall );
688
    }
688
    }
689
}
689
}
690
 
690
 
691
/** @}
691
/** @}
692
 */
692
 */
693
 
693