Home | History | Annotate | Line # | Download | only in common
netio.c revision 1.14.12.1
      1  1.14.12.1  jdolecek /*	$NetBSD: netio.c,v 1.14.12.1 2017/12/03 11:36:13 jdolecek Exp $	*/
      2        1.4   thorpej 
      3        1.4   thorpej /*-
      4        1.4   thorpej  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5        1.4   thorpej  * All rights reserved.
      6        1.4   thorpej  *
      7        1.4   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8        1.4   thorpej  * by Jason R. Thorpe.
      9        1.4   thorpej  *
     10        1.4   thorpej  * Redistribution and use in source and binary forms, with or without
     11        1.4   thorpej  * modification, are permitted provided that the following conditions
     12        1.4   thorpej  * are met:
     13        1.4   thorpej  * 1. Redistributions of source code must retain the above copyright
     14        1.4   thorpej  *    notice, this list of conditions and the following disclaimer.
     15        1.4   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.4   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17        1.4   thorpej  *    documentation and/or other materials provided with the distribution.
     18        1.4   thorpej  *
     19        1.4   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.4   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.4   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.4   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.4   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.4   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.4   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.4   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.4   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.4   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.4   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30        1.4   thorpej  */
     31        1.1   thorpej 
     32        1.1   thorpej /*
     33        1.1   thorpej  * Copyright (c) 1995 Gordon W. Ross
     34        1.1   thorpej  * All rights reserved.
     35        1.1   thorpej  *
     36        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     37        1.1   thorpej  * modification, are permitted provided that the following conditions
     38        1.1   thorpej  * are met:
     39        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     40        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     41        1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     42        1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     43        1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     44        1.1   thorpej  *
     45        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     46        1.1   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     47        1.1   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     48        1.1   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     49        1.1   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     50        1.1   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     51        1.1   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     52        1.1   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     53        1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     54        1.1   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     55        1.1   thorpej  */
     56        1.1   thorpej 
     57        1.1   thorpej /*
     58        1.1   thorpej  * This module implements a "raw device" interface suitable for
     59        1.1   thorpej  * use by the stand-alone I/O library NFS code.  This interface
     60        1.1   thorpej  * does not support any "block" access, and exists only for the
     61        1.1   thorpej  * purpose of initializing the network interface, getting boot
     62        1.1   thorpej  * parameters, and performing the NFS mount.
     63        1.1   thorpej  *
     64        1.1   thorpej  * At open time, this does:
     65        1.1   thorpej  *
     66        1.1   thorpej  * find interface      - netif_open()
     67        1.1   thorpej  * RARP for IP address - rarp_getipaddress()
     68        1.1   thorpej  * RPC/bootparams      - callrpc(d, RPC_BOOTPARAMS, ...)
     69        1.1   thorpej  * RPC/mountd          - nfs_mount(sock, ip, path)
     70        1.1   thorpej  *
     71        1.1   thorpej  * the root file handle from mountd is saved in a global
     72        1.1   thorpej  * for use by the NFS open code (NFS/lookup).
     73        1.1   thorpej  */
     74        1.1   thorpej 
     75        1.1   thorpej #include <sys/param.h>
     76        1.1   thorpej #include <sys/socket.h>
     77        1.1   thorpej 
     78        1.1   thorpej #include <net/if.h>
     79        1.1   thorpej #include <netinet/in.h>
     80        1.1   thorpej #include <netinet/in_systm.h>
     81        1.1   thorpej 
     82        1.1   thorpej #include <lib/libsa/stand.h>
     83        1.1   thorpej #include <lib/libsa/net.h>
     84        1.1   thorpej #include <lib/libsa/netif.h>
     85        1.9   tsutsui #include <lib/libsa/bootp.h>
     86        1.1   thorpej #include <lib/libsa/bootparam.h>
     87        1.1   thorpej #include <lib/libsa/nfs.h>
     88        1.1   thorpej 
     89        1.7   thorpej #include <lib/libkern/libkern.h>
     90        1.7   thorpej 
     91        1.9   tsutsui #include <hp300/stand/common/conf.h>
     92        1.1   thorpej #include <hp300/stand/common/samachdep.h>
     93        1.1   thorpej 
     94        1.1   thorpej extern int nfs_root_node[];	/* XXX - get from nfs_mount() */
     95        1.1   thorpej 
     96        1.1   thorpej struct	in_addr myip, rootip, gateip;
     97        1.1   thorpej n_long	netmask;
     98        1.1   thorpej char rootpath[FNAME_SIZE];
     99        1.1   thorpej 
    100        1.9   tsutsui static int netdev_sock = -1;
    101        1.1   thorpej static int open_count;
    102        1.1   thorpej 
    103        1.1   thorpej int netio_ask = 0;		/* default to bootparam, can override */
    104        1.1   thorpej 
    105        1.1   thorpej static	char input_line[100];
    106        1.1   thorpej 
    107        1.9   tsutsui int netmountroot(struct open_file *, char *);
    108        1.9   tsutsui 
    109        1.1   thorpej /*
    110        1.1   thorpej  * Called by devopen after it sets f->f_dev to our devsw entry.
    111        1.1   thorpej  * This opens the low-level device and sets f->f_devdata.
    112        1.1   thorpej  */
    113        1.1   thorpej int
    114        1.9   tsutsui netopen(struct open_file *f, ...)
    115        1.1   thorpej {
    116        1.9   tsutsui 	va_list ap;
    117        1.9   tsutsui 	char *devname;
    118        1.1   thorpej 	int error = 0;
    119        1.1   thorpej 
    120        1.9   tsutsui 	va_start(ap, f);
    121        1.9   tsutsui 	devname = va_arg(ap, char *);
    122        1.9   tsutsui 	va_end(ap);
    123        1.9   tsutsui 
    124        1.1   thorpej 	/* On first open, do netif open, mount, etc. */
    125        1.1   thorpej 	if (open_count == 0) {
    126        1.1   thorpej 		/* Find network interface. */
    127        1.1   thorpej 		if ((netdev_sock = netif_open(devname)) < 0)
    128        1.9   tsutsui 			return ENXIO;
    129        1.1   thorpej 		if ((error = netmountroot(f, devname)) != 0)
    130        1.9   tsutsui 			return error;
    131        1.1   thorpej 	}
    132        1.1   thorpej 	open_count++;
    133        1.1   thorpej 	f->f_devdata = nfs_root_node;
    134        1.9   tsutsui 	return error;
    135        1.1   thorpej }
    136        1.1   thorpej 
    137        1.1   thorpej int
    138       1.10   tsutsui netclose(struct open_file *f)
    139        1.1   thorpej {
    140        1.1   thorpej 	/* On last close, do netif close, etc. */
    141        1.1   thorpej 	if (open_count > 0)
    142        1.1   thorpej 		if (--open_count == 0)
    143        1.1   thorpej 			netif_close(netdev_sock);
    144        1.1   thorpej 	f->f_devdata = NULL;
    145        1.9   tsutsui 
    146        1.9   tsutsui 	return 0;
    147        1.1   thorpej }
    148        1.1   thorpej 
    149        1.1   thorpej int
    150       1.10   tsutsui netstrategy(void *devdata, int func, daddr_t dblk, size_t size, void *v_buf,
    151       1.10   tsutsui     size_t *rsize)
    152        1.1   thorpej {
    153        1.1   thorpej 
    154        1.1   thorpej 	*rsize = size;
    155        1.1   thorpej 	return EIO;
    156        1.1   thorpej }
    157        1.1   thorpej 
    158        1.1   thorpej int
    159       1.10   tsutsui netmountroot(struct open_file *f, char *devname)
    160        1.1   thorpej {
    161        1.1   thorpej 	int error;
    162        1.1   thorpej 	struct iodesc *d;
    163        1.1   thorpej 
    164        1.1   thorpej #ifdef DEBUG
    165        1.1   thorpej 	printf("netmountroot: %s\n", devname);
    166        1.1   thorpej #endif
    167        1.1   thorpej 
    168        1.1   thorpej 	if (netio_ask) {
    169        1.1   thorpej  get_my_ip:
    170        1.1   thorpej 		printf("My IP address? ");
    171        1.9   tsutsui 		memset(input_line, 0, sizeof(input_line));
    172  1.14.12.1  jdolecek 		kgets(input_line, sizeof(input_line));
    173        1.1   thorpej 		if ((myip.s_addr = inet_addr(input_line)) ==
    174        1.1   thorpej 		    htonl(INADDR_NONE)) {
    175        1.1   thorpej 			printf("invalid IP address: %s\n", input_line);
    176        1.1   thorpej 			goto get_my_ip;
    177        1.1   thorpej 		}
    178        1.1   thorpej 
    179        1.1   thorpej  get_my_netmask:
    180        1.1   thorpej 		printf("My netmask? ");
    181        1.9   tsutsui 		memset(input_line, 0, sizeof(input_line));
    182  1.14.12.1  jdolecek 		kgets(input_line, sizeof(input_line));
    183        1.1   thorpej 		if ((netmask = inet_addr(input_line)) ==
    184        1.1   thorpej 		    htonl(INADDR_NONE)) {
    185        1.1   thorpej 			printf("invalid netmask: %s\n", input_line);
    186        1.1   thorpej 			goto get_my_netmask;
    187        1.1   thorpej 		}
    188        1.1   thorpej 
    189        1.1   thorpej  get_my_gateway:
    190        1.1   thorpej 		printf("My gateway? ");
    191        1.9   tsutsui 		memset(input_line, 0, sizeof(input_line));
    192  1.14.12.1  jdolecek 		kgets(input_line, sizeof(input_line));
    193        1.1   thorpej 		if ((gateip.s_addr = inet_addr(input_line)) ==
    194        1.1   thorpej 		    htonl(INADDR_NONE)) {
    195        1.1   thorpej 			printf("invalid IP address: %s\n", input_line);
    196        1.1   thorpej 			goto get_my_gateway;
    197        1.1   thorpej 		}
    198        1.1   thorpej 
    199        1.1   thorpej  get_server_ip:
    200        1.1   thorpej 		printf("Server IP address? ");
    201        1.9   tsutsui 		memset(input_line, 0, sizeof(input_line));
    202  1.14.12.1  jdolecek 		kgets(input_line, sizeof(input_line));
    203        1.1   thorpej 		if ((rootip.s_addr = inet_addr(input_line)) ==
    204        1.1   thorpej 		    htonl(INADDR_NONE)) {
    205        1.1   thorpej 			printf("invalid IP address: %s\n", input_line);
    206        1.1   thorpej 			goto get_server_ip;
    207        1.1   thorpej 		}
    208        1.1   thorpej 
    209        1.1   thorpej  get_server_path:
    210        1.1   thorpej 		printf("Server path? ");
    211        1.9   tsutsui 		memset(rootpath, 0, sizeof(rootpath));
    212  1.14.12.1  jdolecek 		kgets(rootpath, sizeof(rootpath));
    213        1.1   thorpej 		if (rootpath[0] == '\0' || rootpath[0] == '\n')
    214        1.1   thorpej 			goto get_server_path;
    215        1.1   thorpej 
    216        1.1   thorpej 		if ((d = socktodesc(netdev_sock)) == NULL)
    217        1.9   tsutsui 			return EMFILE;
    218        1.1   thorpej 
    219        1.1   thorpej 		d->myip = myip;
    220        1.1   thorpej 
    221        1.1   thorpej 		goto do_nfs_mount;
    222        1.1   thorpej 	}
    223        1.1   thorpej 
    224        1.1   thorpej 	/*
    225        1.1   thorpej 	 * Get info for NFS boot: our IP address, our hostname,
    226        1.1   thorpej 	 * server IP address, and our root path on the server.
    227        1.1   thorpej 	 * There are two ways to do this:  The old, Sun way,
    228        1.1   thorpej 	 * and the more modern, BOOTP way. (RFC951, RFC1048)
    229        1.1   thorpej 	 */
    230        1.1   thorpej 
    231        1.1   thorpej #ifdef	SUN_BOOTPARAMS
    232        1.1   thorpej 	/* Get boot info using RARP and Sun bootparams. */
    233        1.1   thorpej 
    234        1.1   thorpej 	/* Get our IP address.  (rarp.c) */
    235        1.1   thorpej 	if (rarp_getipaddress(netdev_sock) == -1)
    236        1.9   tsutsui 		return errno;
    237        1.1   thorpej 
    238        1.1   thorpej 	printf("boot: client IP address: %s\n", inet_ntoa(myip));
    239        1.1   thorpej 
    240        1.1   thorpej 	/* Get our hostname, server IP address. */
    241        1.1   thorpej 	if (bp_whoami(netdev_sock))
    242        1.9   tsutsui 		return errno;
    243        1.1   thorpej 
    244        1.1   thorpej 	printf("boot: client name: %s\n", hostname);
    245        1.1   thorpej 
    246        1.1   thorpej 	/* Get the root pathname. */
    247        1.1   thorpej 	if (bp_getfile(netdev_sock, "root", &rootip, rootpath))
    248        1.9   tsutsui 		return errno;
    249        1.1   thorpej 
    250        1.1   thorpej #else
    251        1.1   thorpej 
    252        1.1   thorpej 	/* Get boot info using BOOTP way. (RFC951, RFC1048) */
    253        1.1   thorpej 	bootp(netdev_sock);
    254        1.1   thorpej 
    255        1.8  gmcgarry 	printf("boot: client IP address: %s \n", inet_ntoa(myip));
    256        1.1   thorpej 
    257        1.1   thorpej #endif /* SUN_BOOTPARAMS */
    258        1.1   thorpej 
    259        1.1   thorpej 	printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
    260        1.1   thorpej 
    261        1.1   thorpej  do_nfs_mount:
    262        1.1   thorpej 	/* Get the NFS file handle (mount). */
    263        1.1   thorpej 	error = nfs_mount(netdev_sock, rootip, rootpath);
    264        1.1   thorpej 
    265        1.9   tsutsui 	return error;
    266        1.1   thorpej }
    267