Hi Aurélien- Aurélien Charbon wrote: > According to Neil's comments, I have tried to correct the mistakes of my first sending > Thank you for these comments Neil. > > This is a small part of missing pieces of IPv6 support for the server. > It deals with the ip_map caching code part. > > It changes the ip_map structure to be able to store INET6 addresses. > It adds also the changes in address hashing, and mapping to test it with INET addresses. > > Signed-off-by: Aurelien Charbon > --- > > fs/nfsd/export.c | 10 ++- > fs/nfsd/nfsctl.c | 21 ++++++- > include/linux/sunrpc/svcauth.h | 4 - > include/net/ipv6.h | 17 +++++ > net/sunrpc/svcauth_unix.c | 121 > ++++++++++++++++++++++++++++------------- > 5 files changed, 129 insertions(+), 44 deletions(-) > > > diff -p -u -r -N linux-2.6.23-rc3/fs/nfsd/export.c > linux-2.6.23-rc3-IPv6-ipmap-cache/fs/nfsd/export.c > --- linux-2.6.23-rc3/fs/nfsd/export.c 2007-08-23 13:18:16.000000000 +0200 > +++ linux-2.6.23-rc3-IPv6-ipmap-cache/fs/nfsd/export.c 2007-08-23 > 13:51:08.000000000 +0200 > @@ -35,6 +35,7 @@ > #include > #include > #include > +#include > > #define NFSDDBG_FACILITY NFSDDBG_EXPORT > > @@ -1559,6 +1560,7 @@ exp_addclient(struct nfsctl_client *ncp) > { > struct auth_domain *dom; > int i, err; > + struct in6_addr addr6; > > /* First, consistency check. */ > err = -EINVAL; > @@ -1577,9 +1579,11 @@ exp_addclient(struct nfsctl_client *ncp) > goto out_unlock; > > /* Insert client into hashtable. */ > - for (i = 0; i < ncp->cl_naddr; i++) > - auth_unix_add_addr(ncp->cl_addrlist[i], dom); > - > + for (i = 0; i < ncp->cl_naddr; i++) { > + /* Mapping address */ > + ipv6_addr_map(ncp->cl_addrlist[i], addr6); > + auth_unix_add_addr(addr6, dom); > + } > auth_unix_forget_old(dom); > auth_domain_put(dom); > > diff -p -u -r -N linux-2.6.23-rc3/fs/nfsd/nfsctl.c > linux-2.6.23-rc3-IPv6-ipmap-cache/fs/nfsd/nfsctl.c > --- linux-2.6.23-rc3/fs/nfsd/nfsctl.c 2007-08-23 13:18:16.000000000 +0200 > +++ linux-2.6.23-rc3-IPv6-ipmap-cache/fs/nfsd/nfsctl.c 2007-08-23 > 13:25:28.000000000 +0200 > @@ -222,7 +222,7 @@ static ssize_t write_getfs(struct file * > struct auth_domain *clp; > int err = 0; > struct knfsd_fh *res; > - > + struct in6_addr in6; > if (size < sizeof(*data)) > return -EINVAL; > data = (struct nfsctl_fsparm*)buf; > @@ -236,7 +236,14 @@ static ssize_t write_getfs(struct file * > res = (struct knfsd_fh*)buf; > > exp_readlock(); > - if (!(clp = auth_unix_lookup(sin->sin_addr))) > + > + /* IPv6 address mapping */ > + in6.s6_addr32[0] = 0; > + in6.s6_addr32[1] = 0; > + in6.s6_addr32[2] = htonl(0xffff); > + in6.s6_addr32[3] = (uint32_t)sin->sin_addr.s_addr; > + > + if (!(clp = auth_unix_lookup(in6))) > err = -EPERM; > else { > err = exp_rootfh(clp, data->gd_path, res, data->gd_maxlen); > @@ -253,6 +260,7 @@ static ssize_t write_getfd(struct file * > { > struct nfsctl_fdparm *data; > struct sockaddr_in *sin; > + struct in6_addr in6; > struct auth_domain *clp; > int err = 0; > struct knfsd_fh fh; > @@ -271,7 +279,14 @@ static ssize_t write_getfd(struct file * > res = buf; > sin = (struct sockaddr_in *)&data->gd_addr; > exp_readlock(); > - if (!(clp = auth_unix_lookup(sin->sin_addr))) > + > + /* IPv6 address mapping */ > + in6.s6_addr32[0] = 0; > + in6.s6_addr32[1] = 0; > + in6.s6_addr32[2] = htonl(0xffff); > + in6.s6_addr32[3] = (uint32_t)sin->sin_addr.s_addr; The code canonicalizes IPv4 addresses in several places. Is there already a generic function defined somewhere to do this? If not, it might make sense to add one.