diff options
author | wpaul <wpaul@FreeBSD.org> | 1996-01-10 16:07:39 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1996-01-10 16:07:39 +0000 |
commit | 233b06171ea62883c06c30a05f44add0aec991b9 (patch) | |
tree | bafeae1a1095eedec08c42a94d5df539f81eac5e /usr.sbin | |
parent | cb56a0376feda30d3870a4c2d48a92e1c930b5d4 (diff) | |
download | FreeBSD-src-233b06171ea62883c06c30a05f44add0aec991b9.zip FreeBSD-src-233b06171ea62883c06c30a05f44add0aec991b9.tar.gz |
More changes brought about by testing of yppush (which is almost finished):
In yp_server.c:
- Modify ypproc_xfr_2_svc() so that it sends both a return status and
a yppush callback (if necessary: normally ypxfr is supposed to send the
callback once it's done transfering a map, but if we can't get ypxfr
off the ground for some reason, we have to send it here instead) and
do it in the right order: have to send the reply to the ypproc_xfr
request first, then send callback. This requires us to cheat a bit:
you're supposed to just return() and let the RPC dispatcher send
the reply for you, but we wouldn't be able to send the callback message
if we did that, so we have to call svc_sendreply() ourselves, then
send the callback, and then return NULL so that the RPC dispatcher
won't call svc_sendreply() itself.
- Also modify ypproc_xfr_2_svc() so that it doesn't invoke ypxfr with
the -f flag: this overrides the order number checks, which prevents
us from ever refusing maps that aren't newer than then ones we already
have.
In yp_access.c:
- Fix a typo in the TCP_WRAPPER support code (which is #ifdef'ed out
by default): a close paren somehow vanished into the ether.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ypserv/yp_access.c | 2 | ||||
-rw-r--r-- | usr.sbin/ypserv/yp_server.c | 59 |
2 files changed, 43 insertions, 18 deletions
diff --git a/usr.sbin/ypserv/yp_access.c b/usr.sbin/ypserv/yp_access.c index d022d8e..cdd69ef 100644 --- a/usr.sbin/ypserv/yp_access.c +++ b/usr.sbin/ypserv/yp_access.c @@ -117,7 +117,7 @@ int yp_access(map, rqstp) if (!status && rqhost->sin_addr.s_addr != oldaddr) { yp_error("connect from %s:%d refused", - inet_ntoa(rqhost->sin_addr, ntohs(rqhost->sin_port)); + inet_ntoa(rqhost->sin_addr), ntohs(rqhost->sin_port)); oldaddr = rqhost->sin_addr.s_addr; return(1); } diff --git a/usr.sbin/ypserv/yp_server.c b/usr.sbin/ypserv/yp_server.c index dacead6..9631dc5 100644 --- a/usr.sbin/ypserv/yp_server.c +++ b/usr.sbin/ypserv/yp_server.c @@ -45,7 +45,7 @@ #include <rpc/rpc.h> #ifndef lint -static char rcsid[] = "$Id: yp_server.c,v 1.1.1.1 1995/12/16 20:54:17 wpaul Exp $"; +static char rcsid[] = "$Id: yp_server.c,v 1.2 1995/12/23 21:35:35 wpaul Exp $"; #endif /* not lint */ int forked = 0; @@ -280,8 +280,9 @@ static void ypxfr_callback(rval,addr,transid,prognum,port) int sock = RPC_ANYSOCK; struct timeval timeout; yppushresp_xfr ypxfr_resp; + struct rpc_err err; - timeout.tv_sec = 20; + timeout.tv_sec = 5; timeout.tv_usec = 0; addr->sin_port = htons(port); @@ -292,8 +293,18 @@ callback handle")); ypxfr_resp.status = rval; ypxfr_resp.transid = transid; - if (yppushproc_xfrresp_1(&ypxfr_resp, clnt) == NULL) - yp_error("%s", clnt_sperror(clnt, "ypxfr callback failed")); + /* Turn the timeout off -- we don't want to block. */ + timeout.tv_sec = 0; + if (clnt_control(clnt, CLSET_TIMEOUT, (char *)&timeout) == FALSE) + yp_error("failed to set timeout on ypproc_xfr callback"); + + if (yppushproc_xfrresp_1(&ypxfr_resp, clnt) == NULL) { + clnt_geterr(clnt, &err); + if (err.re_status != RPC_SUCCESS && + err.re_status != RPC_TIMEDOUT) + yp_error("%s", clnt_sperror(clnt, + "ypxfr callback failed")); + } clnt_destroy(clnt); return; @@ -305,23 +316,34 @@ ypproc_xfr_2_svc(ypreq_xfr *argp, struct svc_req *rqstp) static ypresp_xfr result; struct sockaddr_in *rqhost; + result.transid = argp->transid; + rqhost = svc_getcaller(rqstp->rq_xprt); + if (yp_access(argp->map_parms.map, (struct svc_req *)rqstp)) { + /* Order is important: send regular RPC reply, then callback */ result.xfrstat = YPXFR_REFUSED; - return(&result); + svc_sendreply(rqstp->rq_xprt, xdr_ypresp_xfr, (char *)&result); + ypxfr_callback(YPXFR_REFUSED,rqhost,argp->transid, + argp->prog,argp->port); + return(NULL); } if (argp->map_parms.domain == NULL) { result.xfrstat = YPXFR_BADARGS; - return (&result); + svc_sendreply(rqstp->rq_xprt, xdr_ypresp_xfr, (char *)&result); + ypxfr_callback(YPXFR_BADARGS,rqhost,argp->transid, + argp->prog,argp->port); + return(NULL); } if (yp_validdomain(argp->map_parms.domain)) { result.xfrstat = YPXFR_NODOM; - return(&result); + svc_sendreply(rqstp->rq_xprt, xdr_ypresp_xfr, (char *)&result); + ypxfr_callback(YPXFR_NODOM,rqhost,argp->transid, + argp->prog,argp->port); + return(NULL); } - rqhost = svc_getcaller(rqstp->rq_xprt); - switch(fork()) { case 0: { @@ -336,37 +358,40 @@ ypproc_xfr_2_svc(ypreq_xfr *argp, struct svc_req *rqstp) close(0); close(1); close(2); if (strcmp(yp_dir, _PATH_YP)) { execl(ypxfr_command, "ypxfr", "-d", argp->map_parms.domain, - "-h", argp->map_parms.peer, "-f", "-p", yp_dir, "-C", t, + "-h", argp->map_parms.peer, "-p", yp_dir, "-C", t, g, inet_ntoa(rqhost->sin_addr), p, argp->map_parms.map, NULL); } else { execl(ypxfr_command, "ypxfr", "-d", argp->map_parms.domain, - "-h", argp->map_parms.peer, "-f", "-C", t, g, + "-h", argp->map_parms.peer, "-C", t, g, inet_ntoa(rqhost->sin_addr), p, argp->map_parms.map, NULL); } forked++; + result.xfrstat = YPXFR_XFRERR; yp_error("ypxfr execl(): %s", strerror(errno)); + svc_sendreply(rqstp->rq_xprt, xdr_ypresp_xfr, (char *)&result); ypxfr_callback(YPXFR_XFRERR,rqhost,argp->transid, argp->prog,argp->port); - result.xfrstat = YPXFR_XFRERR; - return(&result); + return(NULL); break; } case -1: yp_error("ypxfr fork(): %s", strerror(errno)); + result.xfrstat = YPXFR_XFRERR; + svc_sendreply(rqstp->rq_xprt, xdr_ypresp_xfr, (char *)&result); ypxfr_callback(YPXFR_XFRERR,rqhost,argp->transid, argp->prog,argp->port); - result.xfrstat = YPXFR_XFRERR; - return(&result); + return(NULL); break; default: + result.xfrstat = YPXFR_SUCC; children++; forked = 0; break; } - /* Don't return anything -- it's up to ypxfr to do that. */ - return (NULL); + + return (&result); } void * |