1 /* $NetBSD: dev_net.c,v 1.7 1998/01/23 19:13:28 thorpej Exp $ */ 2 3 /* 4 * Copyright (c) 1995 Gordon W. Ross 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. The name of the author may not be used to endorse or promote products 16 * derived from this software without specific prior written permission. 17 * 4. All advertising materials mentioning features or use of this software 18 * must display the following acknowledgement: 19 * This product includes software developed by Gordon W. Ross 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 /* 34 * This module implements a "raw device" interface suitable for 35 * use by the stand-alone I/O library NFS code. This interface 36 * does not support any "block" access, and exists only for the 37 * purpose of initializing the network interface, getting boot 38 * parameters, and performing the NFS mount. 39 * 40 * At open time, this does: 41 * 42 * find interface - netif_open() 43 * RARP for IP address - rarp_getipaddress() 44 * RPC/bootparams - callrpc(d, RPC_BOOTPARAMS, ...) 45 * RPC/mountd - nfs_mount(sock, ip, path) 46 * 47 * the root file handle from mountd is saved in a global 48 * for use by the NFS open code (NFS/lookup). 49 */ 50 51 #include <machine/stdarg.h> 52 #include <sys/param.h> 53 #include <sys/socket.h> 54 #include <net/if.h> 55 #include <netinet/in.h> 56 #include <netinet/in_systm.h> 57 58 #include <lib/libsa/stand.h> 59 #include <lib/libsa/net.h> 60 #include <lib/libsa/netif.h> 61 #include <lib/libsa/bootparam.h> 62 #include <lib/libsa/nfs.h> 63 #include "dev_net.h" 64 65 #ifndef SUN_BOOTPARAMS 66 void bootp __P((int)); 67 #endif 68 69 extern int debug; 70 extern int nfs_root_node[]; /* XXX - get from nfs_mount() */ 71 72 /* 73 * Various globals needed by the network code: 74 */ 75 76 #if 0 77 /* for arp.c, rarp.c */ 78 u_char bcea[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; 79 #endif 80 81 struct in_addr myip; /* my ip address */ 82 struct in_addr rootip; /* root ip address */ 83 struct in_addr gateip; /* swap ip address */ 84 n_long netmask; /* subnet or net mask */ 85 86 char rootpath[FNAME_SIZE]; 87 88 int hostnamelen; 89 char hostname[FNAME_SIZE]; 90 91 int domainnamelen; 92 char domainname[FNAME_SIZE]; 93 94 /* 95 * Local things... 96 */ 97 static int netdev_sock = -1; 98 static int netdev_opens; 99 100 int net_getparams __P((int)); 101 102 /* 103 * Called by devopen after it sets f->f_dev to our devsw entry. 104 * This opens the low-level device and sets f->f_devdata. 105 * This is declared with variable arguments... 106 */ 107 int 108 net_open(struct open_file *f, ...) 109 { 110 va_list ap; 111 char *devname; /* Device part of file name (or NULL). */ 112 int error = 0; 113 114 va_start(ap, f); 115 devname = va_arg(ap, char*); 116 va_end(ap); 117 118 #ifdef NETIF_DEBUG 119 if (debug) 120 printf("net_open: %s\n", devname); 121 #endif 122 123 /* On first open, do netif open, mount, etc. */ 124 if (netdev_opens == 0) { 125 /* Find network interface. */ 126 if (netdev_sock < 0) { 127 netdev_sock = netif_open(devname); 128 if (netdev_sock < 0) { 129 printf("net_open: netif_open() failed\n"); 130 return (ENXIO); 131 } 132 if (debug) 133 printf("net_open: netif_open() succeeded\n"); 134 } 135 if (rootip.s_addr == 0) { 136 /* Get root IP address, and path, etc. */ 137 error = net_getparams(netdev_sock); 138 if (error) { 139 /* getparams makes its own noise */ 140 goto fail; 141 } 142 /* Get the NFS file handle (mountd). */ 143 error = nfs_mount(netdev_sock, rootip, rootpath); 144 if (error) { 145 error = errno; 146 printf("net_open: NFS mount error=%d\n", error); 147 rootip.s_addr = 0; 148 fail: 149 netif_close(netdev_sock); 150 netdev_sock = -1; 151 return (error); 152 } 153 if (debug) 154 printf("net_open: NFS mount succeeded\n"); 155 } 156 } 157 netdev_opens++; 158 f->f_devdata = nfs_root_node; 159 return (error); 160 } 161 162 int 163 net_close(f) 164 struct open_file *f; 165 { 166 167 #ifdef NETIF_DEBUG 168 if (debug) 169 printf("net_close: opens=%d\n", netdev_opens); 170 #endif 171 172 /* On last close, do netif close, etc. */ 173 f->f_devdata = NULL; 174 /* Extra close call? */ 175 if (netdev_opens <= 0) 176 return (0); 177 netdev_opens--; 178 /* Not last close? */ 179 if (netdev_opens > 0) 180 return(0); 181 rootip.s_addr = 0; 182 if (netdev_sock >= 0) { 183 if (debug) 184 printf("net_close: calling netif_close()\n"); 185 netif_close(netdev_sock); 186 netdev_sock = -1; 187 } 188 return (0); 189 } 190 191 int 192 net_ioctl() 193 { 194 return EIO; 195 } 196 197 int 198 net_strategy() 199 { 200 return EIO; 201 } 202 203 int 204 net_getparams(sock) 205 int sock; 206 { 207 /* 208 * Get info for NFS boot: our IP address, our hostname, 209 * server IP address, and our root path on the server. 210 * There are two ways to do this: The old, Sun way, 211 * and the more modern, BOOTP way. (RFC951, RFC1048) 212 */ 213 214 #ifdef SUN_BOOTPARAMS 215 /* Get our IP address. (rarp.c) */ 216 if (rarp_getipaddress(sock)) { 217 printf("net_open: RARP failed\n"); 218 return (EIO); 219 } 220 #else /* BOOTPARAMS */ 221 /* 222 * Get boot info using BOOTP. (RFC951, RFC1048) 223 * This also gets the server IP address, gateway, 224 * root path, etc. 225 */ 226 bootp(sock); 227 if (myip.s_addr == 0) { 228 printf("net_open: BOOTP failed\n"); 229 return (EIO); 230 } 231 #endif /* BOOTPARAMS */ 232 233 printf("boot: client addr: %s\n", inet_ntoa(myip)); 234 235 #ifdef SUN_BOOTPARAMS 236 /* Get our hostname, server IP address, gateway. */ 237 if (bp_whoami(sock)) { 238 printf("net_open: bootparam/whoami RPC failed\n"); 239 return (EIO); 240 } 241 #endif /* BOOTPARAMS */ 242 243 printf("boot: client name: %s\n", hostname); 244 if (gateip.s_addr) { 245 printf("boot: subnet mask: %s\n", intoa(netmask)); 246 printf("boot: net gateway: %s\n", inet_ntoa(gateip)); 247 } 248 249 #ifdef SUN_BOOTPARAMS 250 /* Get the root pathname. */ 251 if (bp_getfile(sock, "root", &rootip, rootpath)) { 252 printf("net_open: bootparam/getfile RPC failed\n"); 253 return (EIO); 254 } 255 #endif /* BOOTPARAMS */ 256 257 printf("boot: server addr: %s\n", inet_ntoa(rootip)); 258 printf("boot: server path: %s\n", rootpath); 259 260 return (0); 261 } 262