/* $NetBSD: nfs_bootstatic.c,v 1.3 2005/12/11 12:25:16 christos Exp $ */ /* * * Copyright (c) 2004 Christian Limpach. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Christian Limpach. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: nfs_bootstatic.c,v 1.3 2005/12/11 12:25:16 christos Exp $"); #include "opt_nfs_boot.h" #include "opt_inet.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int (*nfs_bootstatic_callback)(struct nfs_diskless *) = NULL; int nfs_bootstatic(struct nfs_diskless *nd, struct lwp *lwp) { struct ifnet *ifp = nd->nd_ifp; struct sockaddr_in *sin; int error, flags; if (nfs_bootstatic_callback) flags = (*nfs_bootstatic_callback)(nd); else flags = 0; if (flags == 0) { #ifdef NFS_BOOTSTATIC_MYIP nd->nd_myip.s_addr = inet_addr(NFS_BOOTSTATIC_MYIP); flags |= NFS_BOOTSTATIC_HAS_MYIP; #endif #ifdef NFS_BOOTSTATIC_GWIP nd->nd_gwip.s_addr = inet_addr(NFS_BOOTSTATIC_GWIP); flags |= NFS_BOOTSTATIC_HAS_GWIP; #endif #ifdef NFS_BOOTSTATIC_MASK nd->nd_mask.s_addr = inet_addr(NFS_BOOTSTATIC_MASK); flags |= NFS_BOOTSTATIC_HAS_MASK; #endif #ifdef NFS_BOOTSTATIC_SERVADDR sin = (struct sockaddr_in *) &nd->nd_root.ndm_saddr; memset((caddr_t)sin, 0, sizeof(*sin)); sin->sin_len = sizeof(*sin); sin->sin_family = AF_INET; sin->sin_addr.s_addr = inet_addr(NFS_BOOTSTATIC_SERVADDR); flags |= NFS_BOOTSTATIC_HAS_SERVADDR; #endif #ifdef NFS_BOOTSTATIC_SERVER strncpy(nd->nd_root.ndm_host, NFS_BOOTSTATIC_SERVER, MNAMELEN); flags |= NFS_BOOTSTATIC_HAS_SERVER; #endif } if (flags & NFS_BOOTSTATIC_HAS_MYIP) aprint_normal("nfs_boot: client_addr=%s\n", inet_ntoa(nd->nd_myip)); if (flags & NFS_BOOTSTATIC_HAS_GWIP) aprint_normal("nfs_boot: gateway=%s\n", inet_ntoa(nd->nd_gwip)); if (flags & NFS_BOOTSTATIC_HAS_MASK) aprint_normal("nfs_boot: netmask=%s\n", inet_ntoa(nd->nd_mask)); if (flags & NFS_BOOTSTATIC_HAS_SERVADDR) { sin = (struct sockaddr_in *) &nd->nd_root.ndm_saddr; aprint_normal("nfs_boot: server=%s\n", inet_ntoa(sin->sin_addr)); } if (flags & NFS_BOOTSTATIC_HAS_SERVER) aprint_normal("nfs_boot: root=%.*s\n", MNAMELEN, nd->nd_root.ndm_host); /* * Do enough of ifconfig(8) so that the chosen interface * can talk to the servers. */ error = nfs_boot_setaddress(ifp, lwp, flags & NFS_BOOTSTATIC_HAS_MYIP ? nd->nd_myip.s_addr : INADDR_ANY, flags & NFS_BOOTSTATIC_HAS_MASK ? nd->nd_mask.s_addr : INADDR_ANY, INADDR_ANY); if (error) { aprint_error("nfs_boot: set ifaddr, error=%d\n", error); goto out; } error = 0; out: return error; }