2012-03-21 21:51:01 -03:00
|
|
|
/****************************************************************************
|
|
|
|
* fs/nfs/nfs_socket.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
|
|
|
* Copyright (C) 2012 Jose Pablo Rojas Vargas. All rights reserved.
|
|
|
|
* Author: Jose Pablo Rojas Vargas <jrojas@nx-engineering.com>
|
|
|
|
*
|
|
|
|
* Leveraged from OpenBSD:
|
|
|
|
*
|
|
|
|
* copyright (c) 2004
|
|
|
|
* the regents of the university of michigan
|
|
|
|
* all rights reserved
|
2012-03-16 21:25:34 -03:00
|
|
|
*
|
|
|
|
* permission is granted to use, copy, create derivative works and redistribute
|
|
|
|
* this software and such derivative works for any purpose, so long as the name
|
|
|
|
* of the university of michigan is not used in any advertising or publicity
|
|
|
|
* pertaining to the use or distribution of this software without specific,
|
|
|
|
* written prior authorization. if the above copyright notice or any other
|
|
|
|
* identification of the university of michigan is included in any copy of any
|
|
|
|
* portion of this software, then the disclaimer below must also be included.
|
|
|
|
*
|
|
|
|
* this software is provided as is, without representation from the university
|
|
|
|
* of michigan as to its fitness for any purpose, and without warranty by the
|
|
|
|
* university of michigan of any kind, either express or implied, including
|
|
|
|
* without limitation the implied warranties of merchantability and fitness for
|
|
|
|
* a particular purpose. the regents of the university of michigan shall not be
|
|
|
|
* liable for any damages, including special, indirect, incidental, or
|
|
|
|
* consequential damages, with respect to any claim arising out of or in
|
|
|
|
* connection with the use of the software, even if it has been or is hereafter
|
|
|
|
* advised of the possibility of such damages.
|
2012-03-21 21:51:01 -03:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
2012-03-16 21:25:34 -03:00
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
2012-03-16 21:25:34 -03:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
2012-03-21 21:51:01 -03:00
|
|
|
#include <queue.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include "nfs_args.h"
|
|
|
|
#include "rpc.h"
|
2012-03-16 21:25:34 -03:00
|
|
|
#include "rpc_v2.h"
|
2012-03-21 21:51:01 -03:00
|
|
|
#include "nfs_proto.h"
|
2012-03-16 21:25:34 -03:00
|
|
|
#include "nfs.h"
|
|
|
|
#include "xdr_subs.h"
|
2012-03-21 21:51:01 -03:00
|
|
|
#include "nfs_mount.h"
|
2012-03-16 21:25:34 -03:00
|
|
|
#include "nfs_socket.h"
|
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-03-16 21:25:34 -03:00
|
|
|
/* Flag translations */
|
2012-03-21 21:51:01 -03:00
|
|
|
|
2012-03-16 21:25:34 -03:00
|
|
|
#define nfsmnt_to_rpcclnt(nf, rf, name) do { \
|
2012-03-21 21:51:01 -03:00
|
|
|
if (nf & NFSMNT_##name) { \
|
|
|
|
rf |= RPCCLNT_##name; \
|
2012-03-16 21:25:34 -03:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Variables
|
|
|
|
****************************************************************************/
|
2012-03-16 21:25:34 -03:00
|
|
|
|
|
|
|
static struct rpc_program nfs3_program =
|
|
|
|
{
|
|
|
|
NFS_PROG, NFS_VER3, "NFSv3"
|
|
|
|
};
|
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Variables
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-03-27 21:10:43 -03:00
|
|
|
int nfs_ticks;
|
2012-03-21 21:51:01 -03:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void nfs_init(void)
|
2012-03-16 21:25:34 -03:00
|
|
|
{
|
2012-03-21 21:51:01 -03:00
|
|
|
rpcclnt_init();
|
|
|
|
}
|
2012-03-16 21:25:34 -03:00
|
|
|
|
|
|
|
int nfsx_connect(struct nfsmount *nmp)
|
|
|
|
{
|
|
|
|
struct rpcclnt *rpc;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
if (nmp == NULL)
|
|
|
|
return EFAULT;
|
|
|
|
|
|
|
|
rpc = &nmp->nm_rpcclnt;
|
|
|
|
|
|
|
|
rpc->rc_prog = &nfs3_program;
|
|
|
|
|
|
|
|
printf("nfsxconnect!\n");
|
|
|
|
|
|
|
|
/* translate nfsmnt flags -> rpcclnt flags */
|
|
|
|
rpc->rc_flag = 0;
|
|
|
|
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, SOFT);
|
|
|
|
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, INT);
|
|
|
|
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, NOCONN);
|
|
|
|
nfsmnt_to_rpcclnt(nmp->nm_flag, rpc->rc_flag, DUMBTIMR);
|
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
//rpc->rc_flag |= RPCCLNT_REDIRECT; /* Make this a mount option. */
|
2012-03-16 21:25:34 -03:00
|
|
|
|
|
|
|
rpc->rc_authtype = RPCAUTH_NULL; /* for now */
|
2012-03-21 21:51:01 -03:00
|
|
|
//rpc->rc_servername = nmp->nm_mountp->mnt_stat.f_mntfromname;
|
2012-03-16 21:25:34 -03:00
|
|
|
rpc->rc_name = (struct sockaddr *)nmp->nm_nam;
|
|
|
|
|
|
|
|
rpc->rc_sotype = nmp->nm_sotype;
|
|
|
|
rpc->rc_soproto = nmp->nm_soproto;
|
|
|
|
rpc->rc_rsize = (nmp->nm_rsize > nmp->nm_readdirsize) ?
|
|
|
|
nmp->nm_rsize : nmp->nm_readdirsize;
|
|
|
|
rpc->rc_wsize = nmp->nm_wsize;
|
|
|
|
rpc->rc_deadthresh = nmp->nm_deadthresh;
|
|
|
|
rpc->rc_timeo = nmp->nm_timeo;
|
|
|
|
rpc->rc_retry = nmp->nm_retry;
|
|
|
|
|
|
|
|
/* XXX v2,3 need to use this */
|
|
|
|
rpc->rc_proctlen = 0;
|
|
|
|
rpc->rc_proct = NULL;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return rpcclnt_connect(rpc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NFS disconnect. Clean up and unlink. */
|
|
|
|
|
|
|
|
void nfsx_disconnect(struct nfsmount *nmp)
|
|
|
|
{
|
|
|
|
rpcclnt_disconnect(&nmp->nm_rpcclnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_NFS_TCPIP
|
|
|
|
void nfsx_safedisconnect(struct nfsmount *nmp)
|
|
|
|
{
|
|
|
|
rpcclnt_safedisconnect(&nmp->nm_rpcclnt);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-26 21:23:40 -03:00
|
|
|
int nfsx_request_xx(struct nfsmount *nm, int procnum, void *data)
|
2012-03-16 21:25:34 -03:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct nfsmount *nmp;
|
|
|
|
struct rpcclnt *clnt;
|
2012-03-27 21:10:43 -03:00
|
|
|
struct rpc_reply *reply;
|
2012-03-21 21:51:01 -03:00
|
|
|
int trylater_delay;
|
2012-03-16 21:25:34 -03:00
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
nmp = nm;
|
2012-03-16 21:25:34 -03:00
|
|
|
clnt = &nmp->nm_rpcclnt;
|
|
|
|
|
|
|
|
tryagain:
|
|
|
|
|
2012-03-27 21:10:43 -03:00
|
|
|
memset(reply, 0, sizeof(struct rpc_reply));
|
2012-03-16 21:25:34 -03:00
|
|
|
|
2012-03-27 21:10:43 -03:00
|
|
|
if ((error = rpcclnt_request(clnt, procnum, reply)) != 0)
|
2012-03-16 21:25:34 -03:00
|
|
|
goto out;
|
|
|
|
|
2012-03-27 21:10:43 -03:00
|
|
|
data = reply->stat.where;
|
2012-03-16 21:25:34 -03:00
|
|
|
|
2012-03-21 21:51:01 -03:00
|
|
|
if (reply->rpc_verfi.authtype != 0)
|
2012-03-16 21:25:34 -03:00
|
|
|
{
|
2012-03-21 21:51:01 -03:00
|
|
|
error = fxdr_unsigned(int, reply->rpc_verfi.authtype);
|
|
|
|
|
2012-03-16 21:25:34 -03:00
|
|
|
if ((nmp->nm_flag & NFSMNT_NFSV3) && error == NFSERR_TRYLATER)
|
|
|
|
{
|
|
|
|
error = 0;
|
2012-03-21 21:51:01 -03:00
|
|
|
trylater_delay *= NFS_TIMEOUTMUL;
|
|
|
|
if (trylater_delay > NFS_MAXTIMEO)
|
|
|
|
{
|
|
|
|
trylater_delay = NFS_MAXTIMEO;
|
|
|
|
}
|
2012-03-16 21:25:34 -03:00
|
|
|
goto tryagain;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** If the File Handle was stale, invalidate the
|
|
|
|
** lookup cache, just in case.
|
|
|
|
**/
|
|
|
|
if (error == ESTALE)
|
2012-03-21 21:51:01 -03:00
|
|
|
printf("%s: ESTALE on mount from server \n",
|
|
|
|
nmp->nm_rpcclnt.rc_prog->prog_name);
|
2012-03-16 21:25:34 -03:00
|
|
|
else
|
2012-03-21 21:51:01 -03:00
|
|
|
printf("%s: unknown error %d from server \n",
|
|
|
|
nmp->nm_rpcclnt.rc_prog->prog_name, error);
|
2012-03-16 21:25:34 -03:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
return (0);
|
2012-03-21 21:51:01 -03:00
|
|
|
|
2012-03-16 21:25:34 -03:00
|
|
|
out:
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* terminate any outstanding RPCs. */
|
|
|
|
|
|
|
|
int nfsx_nmcancelreqs(struct nfsmount *nmp)
|
|
|
|
{
|
|
|
|
return rpcclnt_cancelreqs(&nmp->nm_rpcclnt);
|
|
|
|
}
|