1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
* support/nfs/rcpdispatch.c
*
* Generic RPC dispatcher.
*
* Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#include <signal.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include "rpcmisc.h"
#include "xlog.h"
void
rpc_dispatch(struct svc_req *rqstp, SVCXPRT *transp,
struct rpc_dtable *dtable, int nvers,
void *argp, void *resp)
{
struct rpc_dentry *dent;
int rq_vers = (int)rqstp->rq_vers;
if (rq_vers < 1 || rq_vers > nvers) {
svcerr_progvers(transp, 1, nvers);
return;
}
dtable += (rq_vers - 1);
if (rqstp->rq_proc > dtable->nproc) {
svcerr_noproc(transp);
return;
}
if (dtable->nproc <= rqstp->rq_proc) {
svcerr_noproc(transp);
return;
}
dent = dtable->entries + rqstp->rq_proc;
if (dent->func == NULL) {
svcerr_noproc(transp);
return;
}
memset(argp, 0, dent->xdr_arg_size);
memset(resp, 0, dent->xdr_res_size);
if (!svc_getargs(transp, dent->xdr_arg_fn, argp)) {
svcerr_decode(transp);
return;
}
if ((dent->func)(rqstp, argp, resp) && resp != 0) {
if (!svc_sendreply(transp, dent->xdr_res_fn, (caddr_t)resp))
svcerr_systemerr(transp);
}
if (!svc_freeargs(transp, dent->xdr_arg_fn, argp)) {
xlog(L_ERROR, "failed to free RPC arguments");
exit (2);
}
}
|