Rev 4350 | Rev 4498 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3666 | mejdrech | 1 | /* |
| 3912 | mejdrech | 2 | * Copyright (c) 2009 Lukas Mejdrech |
| 3666 | mejdrech | 3 | * All rights reserved. |
| 4 | * |
||
| 5 | * Redistribution and use in source and binary forms, with or without |
||
| 6 | * modification, are permitted provided that the following conditions |
||
| 7 | * are met: |
||
| 8 | * |
||
| 9 | * - Redistributions of source code must retain the above copyright |
||
| 10 | * notice, this list of conditions and the following disclaimer. |
||
| 11 | * - Redistributions in binary form must reproduce the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer in the |
||
| 13 | * documentation and/or other materials provided with the distribution. |
||
| 14 | * - The name of the author may not be used to endorse or promote products |
||
| 15 | * derived from this software without specific prior written permission. |
||
| 16 | * |
||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | */ |
||
| 28 | |||
| 3912 | mejdrech | 29 | /** @addtogroup lo |
| 30 | * @{ |
||
| 3666 | mejdrech | 31 | */ |
| 32 | |||
| 33 | /** @file |
||
| 4350 | mejdrech | 34 | * Loopback network interface implementation. |
| 3666 | mejdrech | 35 | */ |
| 36 | |||
| 37 | #include <async.h> |
||
| 38 | #include <errno.h> |
||
| 39 | #include <stdio.h> |
||
| 3846 | mejdrech | 40 | |
| 3666 | mejdrech | 41 | #include <ipc/ipc.h> |
| 42 | #include <ipc/services.h> |
||
| 43 | |||
| 3886 | mejdrech | 44 | #include "../../err.h" |
| 45 | #include "../../messages.h" |
||
| 46 | #include "../../modules.h" |
||
| 3666 | mejdrech | 47 | |
| 3886 | mejdrech | 48 | #include "../../structures/measured_strings.h" |
| 3901 | mejdrech | 49 | #include "../../structures/packet/packet_client.h" |
| 3666 | mejdrech | 50 | |
| 4243 | mejdrech | 51 | #include "../../include/device.h" |
| 4307 | mejdrech | 52 | #include "../../include/nil_interface.h" |
| 53 | #include "../../include/net_interface.h" |
||
| 4243 | mejdrech | 54 | |
| 3886 | mejdrech | 55 | #include "../netif.h" |
| 4307 | mejdrech | 56 | #include "../netif_module.h" |
| 3886 | mejdrech | 57 | |
| 4350 | mejdrech | 58 | /** Default maximum transmission unit. |
| 59 | */ |
||
| 3666 | mejdrech | 60 | #define DEFAULT_MTU 1500 |
| 61 | |||
| 4350 | mejdrech | 62 | /** Default hardware address. |
| 63 | */ |
||
| 4192 | mejdrech | 64 | #define DEFAULT_ADDR "\0\0\0\0\0\0" |
| 4350 | mejdrech | 65 | |
| 66 | /** Default address length. |
||
| 67 | */ |
||
| 4192 | mejdrech | 68 | #define DEFAULT_ADDR_LEN ( sizeof( DEFAULT_ADDR ) / sizeof( char )) |
| 69 | |||
| 4350 | mejdrech | 70 | /** Loopback module name. |
| 71 | */ |
||
| 3666 | mejdrech | 72 | #define NAME "lo - loopback interface" |
| 73 | |||
| 4350 | mejdrech | 74 | /** Network interface global data. |
| 75 | */ |
||
| 3666 | mejdrech | 76 | netif_globals_t netif_globals; |
| 77 | |||
| 4350 | mejdrech | 78 | /** Loopback module global data. |
| 79 | */ |
||
| 4163 | mejdrech | 80 | static struct lo_globals{ |
| 4307 | mejdrech | 81 | unsigned int mtu; |
| 4163 | mejdrech | 82 | } lo_globals; |
| 83 | |||
| 4350 | mejdrech | 84 | /** Changes the loopback state. |
| 85 | * @param device The device structure. Input parameter. |
||
| 86 | * @param state The new device state. Input parameter. |
||
| 87 | * @returns The new state if changed. |
||
| 88 | * @returns EOK otherwise. |
||
| 89 | */ |
||
| 90 | int change_state_message( device_ref device, device_state_t state ); |
||
| 91 | |||
| 92 | /** Creates and returns the loopback network interface structure. |
||
| 93 | * @param device_id The new devce identifier. Input parameter. |
||
| 94 | * @param device The device structure. Output parameter. |
||
| 95 | * @returns EOK on success. |
||
| 96 | * @returns EXDEV if one loopback network interface already exists. |
||
| 97 | * @returns ENOMEM if there is not enough memory left. |
||
| 98 | */ |
||
| 99 | int create( device_id_t device_id, device_ref * device ); |
||
| 100 | |||
| 101 | /** Prints the module name. |
||
| 102 | * @see NAME |
||
| 103 | */ |
||
| 4307 | mejdrech | 104 | void module_print_name( void ); |
| 3666 | mejdrech | 105 | |
| 4243 | mejdrech | 106 | int netif_specific_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){ |
| 4192 | mejdrech | 107 | return ENOTSUP; |
| 4163 | mejdrech | 108 | } |
| 109 | |||
| 4243 | mejdrech | 110 | int netif_get_addr_message( device_id_t device_id, measured_string_ref address ){ |
| 4192 | mejdrech | 111 | if( ! address ) return EBADMEM; |
| 112 | address->value = DEFAULT_ADDR; |
||
| 113 | address->length = DEFAULT_ADDR_LEN; |
||
| 4243 | mejdrech | 114 | return EOK; |
| 4192 | mejdrech | 115 | } |
| 116 | |||
| 4243 | mejdrech | 117 | int netif_get_device_stats( device_id_t device_id, device_stats_ref stats ){ |
| 4192 | mejdrech | 118 | ERROR_DECLARE; |
| 119 | |||
| 120 | device_ref device; |
||
| 121 | |||
| 122 | if( ! stats ) return EBADMEM; |
||
| 123 | ERROR_PROPAGATE( find_device( device_id, & device )); |
||
| 124 | memcpy( stats, ( device_stats_ref ) device->specific, sizeof( device_stats_t )); |
||
| 125 | return EOK; |
||
| 126 | } |
||
| 127 | |||
| 4350 | mejdrech | 128 | int change_state_message( device_ref device, device_state_t state ){ |
| 3846 | mejdrech | 129 | if( device->state != state ){ |
| 130 | device->state = state; |
||
| 4307 | mejdrech | 131 | printf( "State changed to %s\n", ( state == NETIF_ACTIVE ) ? "ACTIVE" : "STOPPED" ); |
| 4261 | mejdrech | 132 | return state; |
| 3846 | mejdrech | 133 | } |
| 3666 | mejdrech | 134 | return EOK; |
| 135 | } |
||
| 136 | |||
| 4350 | mejdrech | 137 | int create( device_id_t device_id, device_ref * device ){ |
| 4192 | mejdrech | 138 | int index; |
| 3666 | mejdrech | 139 | |
| 3846 | mejdrech | 140 | if( device_map_count( & netif_globals.device_map ) > 0 ){ |
| 3666 | mejdrech | 141 | return EXDEV; |
| 142 | }else{ |
||
| 3846 | mejdrech | 143 | * device = ( device_ref ) malloc( sizeof( device_t )); |
| 3666 | mejdrech | 144 | if( !( * device )) return ENOMEM; |
| 4192 | mejdrech | 145 | ( ** device ).specific = malloc( sizeof( device_stats_t )); |
| 146 | if( ! ( ** device ).specific ){ |
||
| 147 | free( * device ); |
||
| 148 | return ENOMEM; |
||
| 149 | } |
||
| 150 | null_device_stats(( device_stats_ref )( ** device ).specific ); |
||
| 3666 | mejdrech | 151 | ( ** device ).device_id = device_id; |
| 3846 | mejdrech | 152 | ( ** device ).nil_phone = -1; |
| 3685 | mejdrech | 153 | ( ** device ).state = NETIF_STOPPED; |
| 4192 | mejdrech | 154 | index = device_map_add( & netif_globals.device_map, ( ** device ).device_id, * device ); |
| 155 | if( index < 0 ){ |
||
| 3666 | mejdrech | 156 | free( * device ); |
| 4192 | mejdrech | 157 | free(( ** device ).specific ); |
| 3666 | mejdrech | 158 | * device = NULL; |
| 4192 | mejdrech | 159 | return index; |
| 3666 | mejdrech | 160 | } |
| 161 | } |
||
| 162 | return EOK; |
||
| 163 | } |
||
| 164 | |||
| 4243 | mejdrech | 165 | int netif_initialize( void ){ |
| 3685 | mejdrech | 166 | ipcarg_t phonehash; |
| 3666 | mejdrech | 167 | |
| 168 | return REGISTER_ME( SERVICE_LO, & phonehash ); |
||
| 169 | } |
||
| 170 | |||
| 4307 | mejdrech | 171 | void module_print_name( void ){ |
| 4197 | mejdrech | 172 | printf( "%s", NAME ); |
| 3666 | mejdrech | 173 | } |
| 174 | |||
| 4243 | mejdrech | 175 | int netif_probe_auto_message( void ){ |
| 3685 | mejdrech | 176 | /* ERROR_DECLARE; |
| 3666 | mejdrech | 177 | |
| 3846 | mejdrech | 178 | device_ref device; |
| 3666 | mejdrech | 179 | |
| 3846 | mejdrech | 180 | ERROR_PROPAGATE( create( arg1, & device )); |
| 4307 | mejdrech | 181 | ipc_call_sync_3_3( netif_globals.net_phone, NET_NET_DEVICE, device->device_id, NULL, NULL, NULL, NULL, NULL ); |
| 3685 | mejdrech | 182 | */ return ENOTSUP; |
| 3666 | mejdrech | 183 | } |
| 184 | |||
| 4243 | mejdrech | 185 | int netif_probe_message( device_id_t device_id, int irq, int io ){ |
| 3666 | mejdrech | 186 | ERROR_DECLARE; |
| 187 | |||
| 4307 | mejdrech | 188 | device_ref device; |
| 189 | measured_string_t names[ 1 ] = {{ "MTU", 3 }}; |
||
| 190 | measured_string_ref configuration; |
||
| 191 | int count = 1; |
||
| 192 | char * data; |
||
| 3666 | mejdrech | 193 | |
| 4307 | mejdrech | 194 | configuration = & names[ 0 ]; |
| 3685 | mejdrech | 195 | // create a new device |
| 3846 | mejdrech | 196 | ERROR_PROPAGATE( create( device_id, & device )); |
| 3685 | mejdrech | 197 | // get configuration |
| 4307 | mejdrech | 198 | ERROR_PROPAGATE( net_get_device_conf_req( netif_globals.net_phone, device->device_id, & configuration, count, & data )); |
| 3685 | mejdrech | 199 | // MTU is the first one |
| 4307 | mejdrech | 200 | if( configuration && configuration[ 0 ].value ){ |
| 201 | lo_globals.mtu = strtoul( configuration[ 0 ].value, NULL, 0 ); |
||
| 202 | net_free_settings( configuration, data ); |
||
| 3685 | mejdrech | 203 | }else{ |
| 4163 | mejdrech | 204 | lo_globals.mtu = DEFAULT_MTU; |
| 3685 | mejdrech | 205 | } |
| 4163 | mejdrech | 206 | // print the settings |
| 4307 | mejdrech | 207 | printf("New device registered:\n\tid\t= %d\n\tMTU\t= %d\n", device->device_id, lo_globals.mtu ); |
| 3666 | mejdrech | 208 | return EOK; |
| 209 | } |
||
| 210 | |||
| 4261 | mejdrech | 211 | int netif_send_message( device_id_t device_id, packet_t packet, services_t sender ){ |
| 3666 | mejdrech | 212 | ERROR_DECLARE; |
| 213 | |||
| 3846 | mejdrech | 214 | device_ref device; |
| 215 | size_t length; |
||
| 3991 | mejdrech | 216 | packet_t next; |
| 4261 | mejdrech | 217 | int phone; |
| 3666 | mejdrech | 218 | |
| 3846 | mejdrech | 219 | ERROR_PROPAGATE( find_device( device_id, & device )); |
| 220 | if( device->state != NETIF_ACTIVE ) return EPERM; |
||
| 4075 | mejdrech | 221 | next = packet; |
| 3991 | mejdrech | 222 | do{ |
| 4192 | mejdrech | 223 | ++ (( device_stats_ref ) device->specific )->tx_packets; |
| 224 | ++ (( device_stats_ref ) device->specific )->rx_packets; |
||
| 4075 | mejdrech | 225 | length = packet_get_data_length( next ); |
| 4192 | mejdrech | 226 | (( device_stats_ref ) device->specific )->tx_bytes += length; |
| 227 | (( device_stats_ref ) device->specific )->rx_bytes += length; |
||
| 4075 | mejdrech | 228 | next = pq_next( next ); |
| 229 | }while( next ); |
||
| 4261 | mejdrech | 230 | phone = device->nil_phone; |
| 231 | rwlock_write_unlock( & netif_globals.lock ); |
||
| 232 | nil_received_msg( phone, device_id, packet, sender ); |
||
| 233 | rwlock_write_lock( & netif_globals.lock ); |
||
| 3846 | mejdrech | 234 | return EOK; |
| 3666 | mejdrech | 235 | } |
| 236 | |||
| 4261 | mejdrech | 237 | int netif_start_message( device_ref device ){ |
| 238 | return change_state_message( device, NETIF_ACTIVE ); |
||
| 3666 | mejdrech | 239 | } |
| 240 | |||
| 4261 | mejdrech | 241 | int netif_stop_message( device_ref device ){ |
| 242 | return change_state_message( device, NETIF_STOPPED ); |
||
| 3666 | mejdrech | 243 | } |
| 244 | |||
| 245 | /** @} |
||
| 246 | */ |