Subversion Repositories HelenOS

Rev

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

Rev 3992 Rev 4075
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 <stdio.h>
40
#include <stdio.h>
41
#include <string.h>
41
#include <string.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"
-
 
52
#include "../../include/ethernet_lsap.h"
51
#include "../../include/ethernet_protocols.h"
53
#include "../../include/ethernet_protocols.h"
52
#include "../../include/protocol_map.h"
54
#include "../../include/protocol_map.h"
53
#include "../../netif/device.h"
55
#include "../../netif/device.h"
54
 
56
 
55
#include "../../structures/measured_strings.h"
57
#include "../../structures/measured_strings.h"
56
#include "../../structures/packet/packet.h"
58
#include "../../structures/packet/packet.h"
57
#include "../../structures/packet/packet_client.h"
59
#include "../../structures/packet/packet_client.h"
58
 
60
 
59
#include "eth.h"
61
#include "eth.h"
60
#include "eth_header.h"
62
#include "eth_header.h"
61
//#include "eth_messages.h"
63
//#include "eth_messages.h"
62
#include "eth_module.h"
64
#include "eth_module.h"
63
 
65
 
64
#define ETH_PREFIX      ( sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ))
66
#define ETH_PREFIX      ( sizeof( eth_header_t ) + sizeof( eth_header_lsap_t ) + sizeof( eth_header_snap_t ))
65
#define ETH_SUFFIX      4
67
#define ETH_SUFFIX      sizeof( eth_fcs_t )
66
#define ETH_MAX_CONTENT ( ETH_MIN_PROTO - 1 )
68
#define ETH_MAX_CONTENT 1500
67
#define ETH_MIN_CONTENT 46
69
#define ETH_MIN_CONTENT 46
68
#define ETH_PADDING     ETH_SUFFIX
-
 
69
 
70
 
70
/** Returns the device identifier message parameter.
71
/** Returns the device identifier message parameter.
71
 */
72
 */
72
#define IPC_GET_DEVICE( call )      ( device_id_t ) IPC_GET_ARG1( * call )
73
#define IPC_GET_DEVICE( call )      ( device_id_t ) IPC_GET_ARG1( * call )
73
 
74
 
74
/** Returns the packet identifier message parameter.
75
/** Returns the packet identifier message parameter.
75
 */
76
 */
76
#define IPC_GET_PACKET( call )      ( packet_id_t ) IPC_GET_ARG2( * call )
77
#define IPC_GET_PACKET( call )      ( packet_id_t ) IPC_GET_ARG2( * call )
77
 
78
 
78
/** Returns the protocol service message parameter.
79
/** Returns the protocol service message parameter.
79
 */
80
 */
80
#define IPC_GET_PROTO( call )       ( services_t ) IPC_GET_ARG1( * call )
81
#define IPC_GET_PROTO( call )       ( services_t ) IPC_GET_ARG1( * call )
81
 
82
 
82
/** Returns the device driver service message parameter.
83
/** Returns the device driver service message parameter.
83
 */
84
 */
84
#define IPC_GET_SERVICE( call )     ( services_t ) IPC_GET_ARG2( * call )
85
#define IPC_GET_SERVICE( call )     ( services_t ) IPC_GET_ARG2( * call )
85
 
86
 
86
#define IPC_GET_MTU( call )         ( size_t ) IPC_GET_ARG3( * call )
87
#define IPC_GET_MTU( call )         ( size_t ) IPC_GET_ARG3( * call )
87
 
88
 
88
#define IPC_GET_PHONE( call )       ( int ) IPC_GET_ARG5( * call )
89
#define IPC_GET_PHONE( call )       ( int ) IPC_GET_ARG5( * call )
89
 
90
 
90
#define IPC_SET_ADDR( answer )      (( size_t * ) & IPC_GET_ARG1( * answer ))
91
#define IPC_SET_ADDR( answer )      (( size_t * ) & IPC_GET_ARG1( * answer ))
91
#define IPC_SET_PREFIX( answer )    (( size_t * ) & IPC_GET_ARG2( * answer ))
92
#define IPC_SET_PREFIX( answer )    (( size_t * ) & IPC_GET_ARG2( * answer ))
92
#define IPC_SET_CONTENT( answer )   (( size_t * ) & IPC_GET_ARG3( * answer ))
93
#define IPC_SET_CONTENT( answer )   (( size_t * ) & IPC_GET_ARG3( * answer ))
93
#define IPC_SET_SUFFIX( answer )    (( size_t * ) & IPC_GET_ARG4( * answer ))
94
#define IPC_SET_SUFFIX( answer )    (( size_t * ) & IPC_GET_ARG4( * answer ))
94
 
95
 
95
typedef enum eth_addr_type  eth_addr_type_t;
96
typedef enum eth_addr_type  eth_addr_type_t;
96
typedef eth_addr_type_t *   eth_addr_type_ref;
97
typedef eth_addr_type_t *   eth_addr_type_ref;
97
 
98
 
98
enum eth_addr_type{
99
enum eth_addr_type{
99
    ETH_LOCAL_ADDR,
100
    ETH_LOCAL_ADDR,
100
    ETH_BROADCAST_ADDR
101
    ETH_BROADCAST_ADDR
101
};
102
};
102
 
103
 
103
/** Ethernet global data.
104
/** Ethernet global data.
104
 */
105
 */
105
eth_globals_t   eth_globals;
106
eth_globals_t   eth_globals;
106
 
107
 
107
/** Processes IPC messages from the registered device driver modules in an infinite loop.
108
/** Processes IPC messages from the registered device driver modules in an infinite loop.
108
 *  @param iid The message identifier. Input parameter.
109
 *  @param iid The message identifier. Input parameter.
109
 *  @param icall The message parameters. Input/output parameter.
110
 *  @param icall The message parameters. Input/output parameter.
110
 */
111
 */
111
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
112
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
112
 
113
 
113
DEVICE_MAP_IMPLEMENT( eth_devices, eth_device_t )
114
DEVICE_MAP_IMPLEMENT( eth_devices, eth_device_t )
114
 
115
 
115
INT_MAP_IMPLEMENT( eth_protos, eth_proto_t )
116
INT_MAP_IMPLEMENT( eth_protos, eth_proto_t )
116
 
117
 
117
int eth_device_message( device_id_t device_id, services_t service, size_t mtu );
118
int eth_device_message( device_id_t device_id, services_t service, size_t mtu );
118
int eth_receive_message( device_id_t device_id, packet_t packet );
119
int eth_receive_message( device_id_t device_id, packet_t packet );
119
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix );
120
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix );
120
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address );
121
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address );
121
int eth_register_message( services_t service, int phone );
122
int eth_register_message( services_t service, int phone );
122
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender );
123
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender );
123
int eth_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
124
int eth_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
124
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
125
void    eth_receiver( ipc_callid_t iid, ipc_call_t * icall );
-
 
126
eth_proto_ref   eth_proccess_packet( packet_t packet );
-
 
127
int eth_prepare_packet( packet_t packet, uint8_t * src_addr, int ethertype );
125
 
128
 
126
int eth_initialize( void ){
129
int eth_initialize( void ){
127
    ERROR_DECLARE;
130
    ERROR_DECLARE;
128
 
131
 
129
    rwlock_initialize( & eth_globals.devices_lock );
132
    rwlock_initialize( & eth_globals.devices_lock );
130
    rwlock_initialize( & eth_globals.protos_lock );
133
    rwlock_initialize( & eth_globals.protos_lock );
131
    rwlock_write_lock( & eth_globals.devices_lock );
134
    rwlock_write_lock( & eth_globals.devices_lock );
132
    rwlock_write_lock( & eth_globals.protos_lock );
135
    rwlock_write_lock( & eth_globals.protos_lock );
133
    eth_globals.broadcast_addr = measured_string_create_bulk( "\xFF\xFF\xFF\xFF\xFF\xFF", CONVERT_SIZE( uint8_t, char, ETH_ADDR ));
136
    eth_globals.broadcast_addr = measured_string_create_bulk( "\xFF\xFF\xFF\xFF\xFF\xFF", CONVERT_SIZE( uint8_t, char, ETH_ADDR ));
134
    if( ! eth_globals.broadcast_addr ) return ENOMEM;
137
    if( ! eth_globals.broadcast_addr ) return ENOMEM;
135
    ERROR_PROPAGATE( eth_devices_initialize( & eth_globals.devices ));
138
    ERROR_PROPAGATE( eth_devices_initialize( & eth_globals.devices ));
136
    if( ERROR_OCCURRED( eth_protos_initialize( & eth_globals.protos ))){
139
    if( ERROR_OCCURRED( eth_protos_initialize( & eth_globals.protos ))){
137
        eth_devices_destroy( & eth_globals.devices );
140
        eth_devices_destroy( & eth_globals.devices );
138
        return ERROR_CODE;
141
        return ERROR_CODE;
139
    }
142
    }
140
    rwlock_write_unlock( & eth_globals.protos_lock );
143
    rwlock_write_unlock( & eth_globals.protos_lock );
141
    rwlock_write_unlock( & eth_globals.devices_lock );
144
    rwlock_write_unlock( & eth_globals.devices_lock );
142
    return EOK;
145
    return EOK;
143
}
146
}
144
 
147
 
145
int eth_device_message( device_id_t device_id, services_t service, size_t mtu ){
148
int eth_device_message( device_id_t device_id, services_t service, size_t mtu ){
146
    ERROR_DECLARE;
149
    ERROR_DECLARE;
147
 
150
 
148
    aid_t           message;
151
    aid_t           message;
149
    ipc_call_t      answer;
152
    ipc_call_t      answer;
150
    eth_device_ref  device;
153
    eth_device_ref  device;
151
    int             result;
154
    int             result;
152
 
155
 
153
    rwlock_write_lock( & eth_globals.devices_lock );
156
    rwlock_write_lock( & eth_globals.devices_lock );
154
    // an existing device?
157
    // an existing device?
155
    device = eth_devices_find( & eth_globals.devices, device_id );
158
    device = eth_devices_find( & eth_globals.devices, device_id );
156
    if( device ){
159
    if( device ){
157
        if( device->service == service ){
160
        if( device->service == service ){
158
            // update mtu
161
            // update mtu
159
            device->mtu = mtu;
162
            device->mtu = mtu;
160
            rwlock_write_unlock( & eth_globals.devices_lock );
163
            rwlock_write_unlock( & eth_globals.devices_lock );
161
            return EOK;
164
            return EOK;
162
        }else{
165
        }else{
163
            rwlock_write_unlock( & eth_globals.devices_lock );
166
            rwlock_write_unlock( & eth_globals.devices_lock );
164
            return EEXIST;
167
            return EEXIST;
165
        }
168
        }
166
    }else{
169
    }else{
167
        // create a new device
170
        // create a new device
168
        device = ( eth_device_ref ) malloc( sizeof( eth_device_t ));
171
        device = ( eth_device_ref ) malloc( sizeof( eth_device_t ));
169
        if( ! device ) return ENOMEM;
172
        if( ! device ) return ENOMEM;
170
        device->device_id = device_id;
173
        device->device_id = device_id;
171
        device->service = service;
174
        device->service = service;
172
        device->mtu = mtu;
175
        device->mtu = mtu;
173
        // bind the device driver
176
        // bind the device driver
174
        device->phone = bind_service( device->service, device->device_id, SERVICE_ETHERNET, 0, eth_receiver );
177
        device->phone = bind_service( device->service, device->device_id, SERVICE_ETHERNET, 0, eth_receiver );
175
        // get hardware address
178
        // get hardware address
176
        message = async_send_1( device->phone, NET_NETIF_GET_ADDR, device->device_id, & answer );
179
        message = async_send_1( device->phone, NET_NETIF_GET_ADDR, device->device_id, & answer );
177
        if( ERROR_OCCURRED( measured_strings_return( device->phone, & device->addr, & device->addr_data, 1 ))){
180
        if( ERROR_OCCURRED( measured_strings_return( device->phone, & device->addr, & device->addr_data, 1 ))){
178
            rwlock_write_unlock( & eth_globals.devices_lock );
181
            rwlock_write_unlock( & eth_globals.devices_lock );
179
            free( device );
182
            free( device );
180
            async_wait_for( message, NULL );
183
            async_wait_for( message, NULL );
181
            return ERROR_CODE;
184
            return ERROR_CODE;
182
        }
185
        }
183
        async_wait_for( message, ( ipcarg_t * ) & result );
186
        async_wait_for( message, ( ipcarg_t * ) & result );
184
        if( ERROR_OCCURRED( result )){
187
        if( ERROR_OCCURRED( result )){
185
            rwlock_write_unlock( & eth_globals.devices_lock );
188
            rwlock_write_unlock( & eth_globals.devices_lock );
186
            free( device->addr );
189
            free( device->addr );
187
            free( device->addr_data );
190
            free( device->addr_data );
188
            free( device );
191
            free( device );
189
            return ERROR_CODE;
192
            return ERROR_CODE;
190
        }
193
        }
191
        // add to the cache
194
        // add to the cache
192
        if( ERROR_OCCURRED( eth_devices_add( & eth_globals.devices, device->device_id, device ))){
195
        if( ERROR_OCCURRED( eth_devices_add( & eth_globals.devices, device->device_id, device ))){
193
            rwlock_write_unlock( & eth_globals.devices_lock );
196
            rwlock_write_unlock( & eth_globals.devices_lock );
194
            free( device->addr );
197
            free( device->addr );
195
            free( device->addr_data );
198
            free( device->addr_data );
196
            free( device );
199
            free( device );
197
            return ERROR_CODE;
200
            return ERROR_CODE;
198
        }
201
        }
199
    }
202
    }
200
    rwlock_write_unlock( & eth_globals.devices_lock );
203
    rwlock_write_unlock( & eth_globals.devices_lock );
201
    return EOK;
204
    return EOK;
202
}
205
}
203
 
206
 
204
int eth_receive_message( device_id_t device_id, packet_t packet ){
207
eth_proto_ref eth_proccess_packet( packet_t packet ){
205
    ERROR_DECLARE;
208
    ERROR_DECLARE;
206
 
209
 
207
    eth_header_ex_ref   header;
210
    eth_header_ex_ref   header;
208
    size_t              length;
211
    size_t              length;
209
    int                 type;
212
    int                 type;
210
    eth_proto_ref       proto;
213
    size_t              prefix;
211
    size_t              size;
214
    size_t              suffix;
-
 
215
    eth_fcs_ref         fcs;
212
 
216
 
213
    length = packet_get_data_length( packet );
217
    length = packet_get_data_length( packet );
214
    if( length <= sizeof( eth_header_t ) + ETH_MIN_CONTENT + ETH_PADDING ) return EINVAL;
218
    if( length <= sizeof( eth_header_t ) + ETH_MIN_CONTENT + ETH_SUFFIX ) return NULL;
215
    // TODO check CRC padding?
-
 
216
    header = ( eth_header_ex_ref ) packet_get_data( packet );
219
    header = ( eth_header_ex_ref ) packet_get_data( packet );
217
    type = ntohs( header->header.ethertype );
220
    type = ntohs( header->header.ethertype );
218
    if( type >= ETH_MIN_PROTO ){
221
    if( type >= ETH_MIN_PROTO ){
219
        // DIX Ethernet
222
        // DIX Ethernet
220
        size = sizeof( eth_header_t );
223
        prefix = sizeof( eth_header_t );
221
    }else{
224
        suffix = sizeof( eth_fcs_t );
222
        // TODO check length?
225
        fcs = (( void * ) header ) + length - suffix;
-
 
226
    }else if( type <= ETH_MAX_CONTENT ){
223
        // translate "LSAP" values
227
        // translate "LSAP" values
224
        if(( header->lsap.dsap == ETH_RAW ) && ( header->lsap.ssap == ETH_RAW )){
228
        if(( header->lsap.dsap == ETH_LSAP_GLSAP ) && ( header->lsap.ssap == ETH_LSAP_GLSAP )){
225
            // raw packet
229
            // raw packet
226
            // discard
230
            // discard
227
            return EINVAL;
231
            return NULL;
228
        }else if(( header->lsap.dsap == ETH_LSAP_SNAP ) && ( header->lsap.ssap == ETH_LSAP_SNAP )){
232
        }else if(( header->lsap.dsap == ETH_LSAP_SNAP ) && ( header->lsap.ssap == ETH_LSAP_SNAP )){
229
            // IEEE 802.3 SNAP
233
            // IEEE 802.3 + 802.2 + LSAP + SNAP
230
            // organization code not supported
234
            // organization code not supported
231
            type = ntohs( header->snap.ethertype );
235
            type = ntohs( header->snap.ethertype );
232
            size = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t) + sizeof( eth_header_snap_t);
236
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t) + sizeof( eth_header_snap_t);
233
        }else{
237
        }else{
234
            // IEEE 802.3 + 802.2 LSAP
238
            // IEEE 802.3 + 802.2 LSAP
235
            // TODO lsap numbers
-
 
236
            type = header->lsap.dsap;
239
            type = lsap_map( header->lsap.dsap );
237
            size = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t);
240
            prefix = sizeof( eth_header_t ) + sizeof( eth_header_lsap_t);
238
        }
241
        }
-
 
242
        suffix = ( type < ETH_MIN_CONTENT ) ? ETH_MIN_CONTENT - type : 0;
-
 
243
        fcs = (( void * ) header ) + prefix + type + suffix;
-
 
244
        suffix += length - prefix - type;
-
 
245
    }else{
-
 
246
        // invalid length/type, should not occurr
-
 
247
        return NULL;
239
    }
248
    }
240
    rwlock_write_lock( & eth_globals.protos_lock );
249
    // TODO compute crc with fcs to erase?
241
    proto = eth_protos_find( & eth_globals.protos, type );
250
    if(( ~ compute_crc32( ~ 0, & header->header.dest, ((( void * ) fcs ) - (( void * ) & header->header.dest )) * 8 )) != ( * fcs )){
242
    if( ! proto ){
-
 
243
        rwlock_write_unlock( & eth_globals.protos_lock );
-
 
244
        return ENOENT;
251
        return NULL;
245
    }
252
    }
246
    if( ERROR_OCCURRED( packet_set_addr( packet, header->header.src, header->header.dest, ETH_ADDR ))
253
    if( ERROR_OCCURRED( packet_set_addr( packet, header->header.src, header->header.dest, ETH_ADDR ))
247
    || ERROR_OCCURRED( packet_trim( packet, size, ETH_PADDING ))){
254
    || ERROR_OCCURRED( packet_trim( packet, prefix, suffix ))){
248
        rwlock_write_unlock( & eth_globals.protos_lock );
-
 
249
        return ERROR_CODE;
255
        return NULL;
250
    }
256
    }
-
 
257
    return eth_protos_find( & eth_globals.protos, type );
-
 
258
}
-
 
259
 
-
 
260
int eth_receive_message( device_id_t device_id, packet_t packet ){
-
 
261
    eth_proto_ref   proto;
-
 
262
    packet_t        next;
-
 
263
 
-
 
264
    rwlock_read_lock( & eth_globals.protos_lock );
-
 
265
    do{
-
 
266
        next = pq_detach( packet );
-
 
267
        proto = eth_proccess_packet( packet );
-
 
268
        if( proto ){
251
    async_msg_2( proto->phone, NET_IL_RECEIVED, device_id, packet_get_id( packet ));
269
            async_msg_2( proto->phone, NET_IL_RECEIVED, device_id, packet_get_id( packet ));
-
 
270
        }else{
-
 
271
            // drop invalid/unknown
-
 
272
            packet_release( eth_globals.networking_phone, packet_get_id( packet ));
-
 
273
        }
-
 
274
        packet = next;
-
 
275
    }while( packet );
252
    rwlock_write_unlock( & eth_globals.protos_lock );
276
    rwlock_read_unlock( & eth_globals.protos_lock );
253
    return EOK;
277
    return EOK;
254
}
278
}
255
 
279
 
256
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix ){
280
int eth_packet_space_message( device_id_t device_id, size_t * addr_len, size_t * prefix, size_t * content, size_t * suffix ){
257
    eth_device_ref  device;
281
    eth_device_ref  device;
258
 
282
 
259
    if( !( addr_len && prefix && content && suffix )) return EINVAL;
283
    if( !( addr_len && prefix && content && suffix )) return EINVAL;
260
    rwlock_write_lock( & eth_globals.devices_lock );
284
    rwlock_write_lock( & eth_globals.devices_lock );
261
    device = eth_devices_find( & eth_globals.devices, device_id );
285
    device = eth_devices_find( & eth_globals.devices, device_id );
262
    if( ! device ){
286
    if( ! device ){
263
        rwlock_write_unlock( & eth_globals.devices_lock );
287
        rwlock_write_unlock( & eth_globals.devices_lock );
264
        return ENOENT;
288
        return ENOENT;
265
    }
289
    }
266
    * content = (  ETH_MAX_CONTENT > device->mtu ) ? device->mtu : ETH_MAX_CONTENT;
290
    * content = (  ETH_MAX_CONTENT > device->mtu ) ? device->mtu : ETH_MAX_CONTENT;
267
    rwlock_write_unlock( & eth_globals.devices_lock );
291
    rwlock_write_unlock( & eth_globals.devices_lock );
268
    * addr_len = ETH_ADDR;
292
    * addr_len = ETH_ADDR;
269
    * prefix = ETH_PREFIX;
293
    * prefix = ETH_PREFIX;
270
    * suffix = ETH_SUFFIX;
294
    * suffix = ETH_MIN_CONTENT + ETH_SUFFIX;
271
    return EOK;
295
    return EOK;
272
}
296
}
273
 
297
 
274
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address ){
298
int eth_addr_message( device_id_t device_id, eth_addr_type_t type, measured_string_ref * address ){
275
    eth_device_ref  device;
299
    eth_device_ref  device;
276
 
300
 
277
    if( ! address ) return EINVAL;
301
    if( ! address ) return EINVAL;
278
    if( type == ETH_BROADCAST_ADDR ){
302
    if( type == ETH_BROADCAST_ADDR ){
279
        * address = eth_globals.broadcast_addr;
303
        * address = eth_globals.broadcast_addr;
280
    }else{
304
    }else{
281
        rwlock_write_lock( & eth_globals.devices_lock );
305
        rwlock_write_lock( & eth_globals.devices_lock );
282
        device = eth_devices_find( & eth_globals.devices, device_id );
306
        device = eth_devices_find( & eth_globals.devices, device_id );
283
        if( ! device ){
307
        if( ! device ){
284
            rwlock_write_unlock( & eth_globals.devices_lock );
308
            rwlock_write_unlock( & eth_globals.devices_lock );
285
            return ENOENT;
309
            return ENOENT;
286
        }
310
        }
287
        * address = device->addr;
311
        * address = device->addr;
288
        rwlock_write_unlock( & eth_globals.devices_lock );
312
        rwlock_write_unlock( & eth_globals.devices_lock );
289
    }
313
    }
290
    return ( * address ) ? EOK : ENOENT;
314
    return ( * address ) ? EOK : ENOENT;
291
}
315
}
292
 
316
 
293
int eth_register_message( services_t service, int phone ){
317
int eth_register_message( services_t service, int phone ){
294
    ERROR_DECLARE;
318
    ERROR_DECLARE;
295
 
319
 
296
    eth_proto_ref   proto;
320
    eth_proto_ref   proto;
297
    int             protocol;
321
    int             protocol;
298
 
322
 
299
    protocol = protocol_map( SERVICE_ETHERNET, service );
323
    protocol = protocol_map( SERVICE_ETHERNET, service );
300
    if( ! protocol ) return ENOENT;
324
    if( ! protocol ) return ENOENT;
301
    rwlock_write_lock( & eth_globals.protos_lock );
325
    rwlock_write_lock( & eth_globals.protos_lock );
302
    proto = eth_protos_find( & eth_globals.protos, protocol );
326
    proto = eth_protos_find( & eth_globals.protos, protocol );
303
    if( proto ){
327
    if( proto ){
304
        proto->phone = phone;
328
        proto->phone = phone;
305
        rwlock_write_unlock( & eth_globals.protos_lock );
329
        rwlock_write_unlock( & eth_globals.protos_lock );
306
        return EOK;
330
        return EOK;
307
    }else{
331
    }else{
308
        proto = ( eth_proto_ref ) malloc( sizeof( eth_proto_t ));
332
        proto = ( eth_proto_ref ) malloc( sizeof( eth_proto_t ));
309
        if( ! proto ){
333
        if( ! proto ){
310
            rwlock_write_unlock( & eth_globals.protos_lock );
334
            rwlock_write_unlock( & eth_globals.protos_lock );
311
            return ENOMEM;
335
            return ENOMEM;
312
        }
336
        }
313
        proto->service = service;
337
        proto->service = service;
314
        proto->protocol = protocol;
338
        proto->protocol = protocol;
315
        proto->phone = phone;
339
        proto->phone = phone;
316
        if( ERROR_OCCURRED( eth_protos_add( & eth_globals.protos, protocol, proto ))){
340
        if( ERROR_OCCURRED( eth_protos_add( & eth_globals.protos, protocol, proto ))){
317
            rwlock_write_unlock( & eth_globals.protos_lock );
341
            rwlock_write_unlock( & eth_globals.protos_lock );
318
            free( proto );
342
            free( proto );
319
            return ERROR_CODE;
343
            return ERROR_CODE;
320
        }
344
        }
321
    }
345
    }
322
    rwlock_write_unlock( & eth_globals.protos_lock );
346
    rwlock_write_unlock( & eth_globals.protos_lock );
323
    return EOK;
347
    return EOK;
324
}
348
}
325
 
349
 
326
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender ){
350
int eth_prepare_packet( packet_t packet, uint8_t * src_addr, int ethertype ){
327
    ERROR_DECLARE;
-
 
328
 
-
 
329
    eth_device_ref      device;
-
 
330
    eth_header_ex_ref   header;
351
    eth_header_ex_ref   header;
-
 
352
    eth_fcs_ref         fcs;
331
    uint8_t *           src;
353
    uint8_t *           src;
332
    uint8_t *           dest;
354
    uint8_t *           dest;
333
    int                 length;
355
    int                 length;
334
    int                 i;
356
    int                 i;
-
 
357
    void *              padding;
335
 
358
 
336
    header = PACKET_PREFIX( packet, eth_header_ex_t );
359
    header = PACKET_PREFIX( packet, eth_header_ex_t );
337
    if( ! header ) return ENOMEM;
360
    if( ! header ) return ENOMEM;
338
    for( i = 0; i < 7; ++ i ) header->header.preamble[ i ] = ETH_PREAMBLE;
361
    for( i = 0; i < 7; ++ i ) header->header.preamble[ i ] = ETH_PREAMBLE;
339
    header->header.sfd = ETH_SFD;
362
    header->header.sfd = ETH_SFD;
340
    length = packet_get_addr( packet, & src, & dest );
363
    length = packet_get_addr( packet, & src, & dest );
341
    if( length < 0 ) return length;
364
    if( length < 0 ) return length;
342
    if( length < ETH_ADDR ) return EINVAL;
365
    if( length < ETH_ADDR ) return EINVAL;
343
    // TODO src set?
366
    memcpy( header->header.src, src_addr, ETH_ADDR );
344
    // TODO set addresses
367
    memcpy( & header->header.dest, dest, ETH_ADDR );
345
    length = packet_get_data_length( packet );
368
    length = packet_get_data_length( packet );
346
    if( length > ETH_MAX_CONTENT ) return EINVAL;
369
    if( length > ETH_MAX_CONTENT ) return EINVAL;
347
    if( length < ETH_MIN_CONTENT ){
370
    if( length < ETH_MIN_CONTENT ){
-
 
371
        padding = packet_suffix( packet, ETH_MIN_CONTENT - length );
348
        // TODO pad zeros
372
        if( ! padding ) return ENOMEM;
-
 
373
        memset( padding, 0, ETH_MIN_CONTENT - length );
349
    }
374
    }
350
    header->header.ethertype = htons( length );
375
    header->header.ethertype = htons( length );
351
    header->lsap.dsap = 0xAA;
376
    header->lsap.dsap = 0xAA;
352
    header->lsap.ssap = header->lsap.dsap;
377
    header->lsap.ssap = header->lsap.dsap;
353
    header->lsap.ctrl = 0;
378
    header->lsap.ctrl = 0;
354
    for( i = 0; i < 3; ++ i ) header->snap.proto[ i ] = 0;
379
    for( i = 0; i < 3; ++ i ) header->snap.proto[ i ] = 0;
355
    header->snap.ethertype = htons( protocol_map( SERVICE_ETHERNET, sender ));
380
    header->snap.ethertype = ethertype;
-
 
381
    fcs = PACKET_SUFFIX( packet, eth_fcs_t );
356
    if( ! header ) return ENOENT;
382
    if( ! fcs ) return ENOMEM;
-
 
383
    * fcs = ~ compute_crc32( ~ 0, & header->header.dest, ((( void * ) fcs ) - (( void * ) & header->header.dest )) * 8 );
-
 
384
    return EOK;
-
 
385
}
-
 
386
 
-
 
387
int eth_send_message( device_id_t device_id, packet_t packet, services_t sender ){
-
 
388
    ERROR_DECLARE;
-
 
389
 
-
 
390
    eth_device_ref      device;
-
 
391
    packet_t            next;
-
 
392
    packet_t            tmp;
357
    // TODO eth padding
393
    int                 ethertype;
-
 
394
 
358
    if( ! packet_suffix( packet, ETH_PADDING )){
395
    ethertype = htons( protocol_map( SERVICE_ETHERNET, sender ));
-
 
396
    if( ! ethertype ){
-
 
397
        packet_release( eth_globals.networking_phone, packet_get_id( packet ));
359
        return ENOMEM;
398
        return EINVAL;
360
    }
399
    }
-
 
400
    rwlock_read_lock( & eth_globals.devices_lock );
-
 
401
    device = eth_devices_find( & eth_globals.devices, device_id );
-
 
402
    if( ! device ){
-
 
403
        rwlock_read_unlock( & eth_globals.devices_lock );
-
 
404
        return ENOENT;
361
   
405
    }
-
 
406
    // proccess packet queue
-
 
407
    next = packet;
-
 
408
    do{
-
 
409
        if( ERROR_OCCURRED( eth_prepare_packet( next, ( uint8_t * ) device->addr->value, ethertype ))){
-
 
410
            // release invalid packet
-
 
411
            tmp = pq_detach( next );
362
    rwlock_write_lock( & eth_globals.devices_lock );
412
            packet_release( eth_globals.networking_phone, packet_get_id( next ));
-
 
413
            next = tmp;
-
 
414
        }else{
-
 
415
            next = pq_next( next );
-
 
416
        }
-
 
417
    }while( next );
-
 
418
    // send packet queue
-
 
419
    async_msg_2( device->phone, NET_NETIF_SEND, device_id, packet_get_id( packet ));
363
    rwlock_write_unlock( & eth_globals.devices_lock );
420
    rwlock_read_unlock( & eth_globals.devices_lock );
364
    return EOK;
421
    return EOK;
365
}
422
}
366
 
423
 
367
int eth_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){
424
int eth_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){
368
    ERROR_DECLARE;
425
    ERROR_DECLARE;
369
 
426
 
370
    measured_string_ref address;
427
    measured_string_ref address;
371
    packet_t            packet;
428
    packet_t            packet;
372
 
429
 
373
    * answer_count = 0;
430
    * answer_count = 0;
374
    switch( IPC_GET_METHOD( * call )){
431
    switch( IPC_GET_METHOD( * call )){
375
        case IPC_M_PHONE_HUNGUP:
432
        case IPC_M_PHONE_HUNGUP:
376
            return EOK;
433
            return EOK;
377
        case NET_NIL_DEVICE:
434
        case NET_NIL_DEVICE:
378
            return eth_device_message( IPC_GET_DEVICE( call ), IPC_GET_SERVICE( call ), IPC_GET_MTU( call ));
435
            return eth_device_message( IPC_GET_DEVICE( call ), IPC_GET_SERVICE( call ), IPC_GET_MTU( call ));
379
        case NET_NIL_SEND:
436
        case NET_NIL_SEND:
380
            ERROR_PROPAGATE( packet_translate( eth_globals.networking_phone, & packet, IPC_GET_PACKET( call )));
437
            ERROR_PROPAGATE( packet_translate( eth_globals.networking_phone, & packet, IPC_GET_PACKET( call )));
381
            return eth_send_message( IPC_GET_DEVICE( call ), packet, IPC_GET_SERVICE( call ));
438
            return eth_send_message( IPC_GET_DEVICE( call ), packet, IPC_GET_SERVICE( call ));
382
        case NET_NIL_PACKET_SPACE:
439
        case NET_NIL_PACKET_SPACE:
383
            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 )));
440
            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 )));
384
            * answer_count = 3;
441
            * answer_count = 3;
385
            return EOK;
442
            return EOK;
386
        case NET_NIL_ADDR:
443
        case NET_NIL_ADDR:
387
            rwlock_read_lock( & eth_globals.devices_lock );
444
            rwlock_read_lock( & eth_globals.devices_lock );
388
            if( ! ERROR_OCCURRED( eth_addr_message( IPC_GET_DEVICE( call ), ETH_LOCAL_ADDR, & address ))){
445
            if( ! ERROR_OCCURRED( eth_addr_message( IPC_GET_DEVICE( call ), ETH_LOCAL_ADDR, & address ))){
389
                 ERROR_CODE = measured_strings_reply( address, 1 );
446
                 ERROR_CODE = measured_strings_reply( address, 1 );
390
            }
447
            }
391
            rwlock_read_unlock( & eth_globals.devices_lock );
448
            rwlock_read_unlock( & eth_globals.devices_lock );
392
            return ERROR_CODE;
449
            return ERROR_CODE;
393
        case NET_NIL_BROADCAST_ADDR:
450
        case NET_NIL_BROADCAST_ADDR:
394
            rwlock_read_lock( & eth_globals.devices_lock );
451
            rwlock_read_lock( & eth_globals.devices_lock );
395
            if( ! ERROR_OCCURRED( eth_addr_message( IPC_GET_DEVICE( call ), ETH_BROADCAST_ADDR, & address ))){
452
            if( ! ERROR_OCCURRED( eth_addr_message( IPC_GET_DEVICE( call ), ETH_BROADCAST_ADDR, & address ))){
396
                 ERROR_CODE = measured_strings_reply( address, 1 );
453
                 ERROR_CODE = measured_strings_reply( address, 1 );
397
            }
454
            }
398
            rwlock_read_unlock( & eth_globals.devices_lock );
455
            rwlock_read_unlock( & eth_globals.devices_lock );
399
            return ERROR_CODE;
456
            return ERROR_CODE;
400
        case IPC_M_CONNECT_TO_ME:
457
        case IPC_M_CONNECT_TO_ME:
401
            return eth_register_message( IPC_GET_PROTO( call ), IPC_GET_PHONE( call ));
458
            return eth_register_message( IPC_GET_PROTO( call ), IPC_GET_PHONE( call ));
402
    }
459
    }
403
    return ENOTSUP;
460
    return ENOTSUP;
404
}
461
}
405
 
462
 
406
void eth_receiver( ipc_callid_t iid, ipc_call_t * icall ){
463
void eth_receiver( ipc_callid_t iid, ipc_call_t * icall ){
407
    ERROR_DECLARE;
464
    ERROR_DECLARE;
408
 
465
 
409
    packet_t        packet;
466
    packet_t        packet;
410
 
467
 
411
    while( true ){
468
    while( true ){
412
        switch( IPC_GET_METHOD( * icall )){
469
        switch( IPC_GET_METHOD( * icall )){
413
            case NET_NIL_DEVICE_STATE:
470
            case NET_NIL_DEVICE_STATE:
414
                //TODO clear device if off?
471
                //TODO clear device if off?
415
                break;
472
                break;
416
            case NET_NIL_RECEIVED:
473
            case NET_NIL_RECEIVED:
417
                if( ! ERROR_OCCURRED( packet_translate( eth_globals.networking_phone, & packet, IPC_GET_PACKET( icall )))){
474
                if( ! ERROR_OCCURRED( packet_translate( eth_globals.networking_phone, & packet, IPC_GET_PACKET( icall )))){
418
                    ERROR_CODE = eth_receive_message( IPC_GET_DEVICE( icall ), packet );
475
                    ERROR_CODE = eth_receive_message( IPC_GET_DEVICE( icall ), packet );
419
                }
476
                }
420
                ipc_answer_0( iid, ERROR_CODE );
477
                ipc_answer_0( iid, ERROR_CODE );
421
                break;
478
                break;
422
            default:
479
            default:
423
                ipc_answer_0( iid, ENOTSUP );
480
                ipc_answer_0( iid, ENOTSUP );
424
        }
481
        }
425
        iid = async_get_call( icall );
482
        iid = async_get_call( icall );
426
    }
483
    }
427
}
484
}
428
 
485
 
429
/** @}
486
/** @}
430
 */
487
 */
431
 
488