Rev 4351 | Rev 4695 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4307 | mejdrech | 1 | /* |
2 | * Copyright (c) 2009 Lukas Mejdrech |
||
3 | * All rights reserved. |
||
4 | * |
||
5 | * Redistribution and use in source and binary forms, with or without |
||
6 | * modification, are permitted provided that the following conditions |
||
7 | * are met: |
||
8 | * |
||
9 | * - Redistributions of source code must retain the above copyright |
||
10 | * notice, this list of conditions and the following disclaimer. |
||
11 | * - Redistributions in binary form must reproduce the above copyright |
||
12 | * notice, this list of conditions and the following disclaimer in the |
||
13 | * documentation and/or other materials provided with the distribution. |
||
14 | * - The name of the author may not be used to endorse or promote products |
||
15 | * derived from this software without specific prior written permission. |
||
16 | * |
||
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
27 | */ |
||
28 | |||
29 | /** @addtogroup net |
||
30 | * @{ |
||
31 | */ |
||
32 | |||
33 | /** @file |
||
4350 | mejdrech | 34 | * Wrapper for the standalone networking module. |
4307 | mejdrech | 35 | */ |
36 | |||
4327 | mejdrech | 37 | #include <string.h> |
4307 | mejdrech | 38 | |
39 | #include <ipc/ipc.h> |
||
40 | |||
41 | #include "../messages.h" |
||
42 | |||
43 | #include "../include/ip_interface.h" |
||
44 | |||
45 | #include "../structures/measured_strings.h" |
||
46 | #include "../structures/module_map.h" |
||
47 | #include "../structures/packet/packet_server.h" |
||
48 | |||
49 | #include "net.h" |
||
50 | |||
4350 | mejdrech | 51 | /** Networking module global data. |
52 | */ |
||
4307 | mejdrech | 53 | extern net_globals_t net_globals; |
54 | |||
55 | int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){ |
||
56 | if( IS_NET_PACKET_MESSAGE( call )){ |
||
57 | return packet_server_message( callid, call, answer, answer_count ); |
||
58 | }else{ |
||
59 | return net_message( callid, call, answer, answer_count ); |
||
60 | } |
||
61 | } |
||
62 | |||
4351 | mejdrech | 63 | int net_initialize( async_client_conn_t client_connection ){ |
4307 | mejdrech | 64 | ERROR_DECLARE; |
65 | |||
66 | task_id_t task_id; |
||
67 | |||
68 | netifs_initialize( & net_globals.netifs ); |
||
69 | char_map_initialize( & net_globals.netif_names ); |
||
70 | modules_initialize( & net_globals.modules ); |
||
71 | measured_strings_initialize( & net_globals.configuration ); |
||
72 | |||
73 | // run self tests |
||
74 | // ERROR_PROPAGATE( self_test()); |
||
75 | |||
76 | ERROR_PROPAGATE( add_module( NULL, & net_globals.modules, LO_NAME, LO_FILENAME, SERVICE_LO, 0, connect_to_service )); |
||
77 | ERROR_PROPAGATE( add_module( NULL, & net_globals.modules, DP8390_NAME, DP8390_FILENAME, SERVICE_DP8390, 0, connect_to_service )); |
||
78 | ERROR_PROPAGATE( add_module( NULL, & net_globals.modules, ETHERNET_NAME, ETHERNET_FILENAME, SERVICE_ETHERNET, 0, connect_to_service )); |
||
79 | |||
80 | task_id = spawn( "/srv/ip" ); |
||
81 | if( ! task_id ) return EINVAL; |
||
82 | ERROR_PROPAGATE( add_module( NULL, & net_globals.modules, IP_NAME, IP_FILENAME, SERVICE_IP, task_id, ip_connect_module )); |
||
4505 | mejdrech | 83 | if( ! spawn( "/srv/udp" )) return EINVAL; |
84 | if( ! spawn( "/srv/tcp" )) return EINVAL; |
||
4307 | mejdrech | 85 | // if( ! spawn( "/srv/socket" )) return EINVAL; |
86 | // not always necesssary |
||
87 | // if( ! spawn( "/srv/arp" )) return EINVAL; |
||
88 | // if( ! spawn( "/srv/rarp" )) return EINVAL; |
||
89 | // if( ! spawn( "/srv/icmp" )) return EINVAL; |
||
90 | return EOK; |
||
91 | } |
||
92 | |||
93 | int read_netif_configuration( char * name, netif_ref netif ){ |
||
94 | ERROR_DECLARE; |
||
95 | |||
4327 | mejdrech | 96 | if( str_lcmp( name, "lo", 2 ) == 0 ){ |
4307 | mejdrech | 97 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NAME", LO_NAME )); |
98 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NETIF", LO_NAME )); |
||
99 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IL", IP_NAME )); |
||
100 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IP_CONFIG", "static" )); |
||
101 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IP_ADDR", "127.0.0.1" )); |
||
102 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NETMASK", "255.0.0.0" )); |
||
4505 | mejdrech | 103 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "MTU", "15535" )); |
4327 | mejdrech | 104 | }else if( str_lcmp( name, "ne2k", 4 ) == 0 ){ |
4307 | mejdrech | 105 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NAME", "eth0" )); |
106 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NETIF", DP8390_NAME )); |
||
107 | // standalone ethernet |
||
108 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NIL", ETHERNET_NAME )); |
||
4332 | mejdrech | 109 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "ETH_MODE", "DIX" )); //8023_2_LSAP( not supported ), 8023_2_SNAP |
110 | // ERROR_PROPAGATE( add_configuration( & netif->configuration, "ETH_DUMMY", "yes" )); //anything else not starting with 'y' |
||
4307 | mejdrech | 111 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IL", IP_NAME )); |
112 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IRQ", "9" )); |
||
113 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IO", "300" )); |
||
4505 | mejdrech | 114 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "MTU", "576" )); |
4307 | mejdrech | 115 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IP_CONFIG", "static" )); |
116 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "IP_ADDR", "10.0.2.15" )); |
||
4505 | mejdrech | 117 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "NETMASK", "255.255.255.240" )); |
4307 | mejdrech | 118 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "BROADCAST", "10.0.2.255" )); |
119 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "GATEWAY", "10.0.2.2" )); |
||
120 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "DNS1", "10.0.2.2" )); |
||
121 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "DNS2", "10.0.2.2" )); |
||
122 | ERROR_PROPAGATE( add_configuration( & netif->configuration, "ARP", "arp" )); |
||
123 | } |
||
124 | return EOK; |
||
125 | } |
||
126 | |||
127 | /** @} |
||
128 | */ |