diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-06-06 22:59:18 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-06-06 22:59:18 +0000 |
commit | 07678f4fc8cb5c968f8d843afb85fbf035f15a8b (patch) | |
tree | 51143e026809d604327447189ef7c515244f31ff /sys/nfs | |
parent | 99a865be841618d7a3dae987d344a2196496dd26 (diff) |
Consolidate error handling in read case.
ok thib@
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfs_serv.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 0f0a6f8f35b..1490a686e0e 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_serv.c,v 1.73 2009/06/06 02:23:33 blambert Exp $ */ +/* $OpenBSD: nfs_serv.c,v 1.74 2009/06/06 22:59:17 blambert Exp $ */ /* $NetBSD: nfs_serv.c,v 1.34 1997/05/12 23:37:12 fvdl Exp $ */ /* @@ -552,11 +552,9 @@ nfsrv_read(nfsd, slp, procp, mrq) } error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly); - if (error) { - nfsm_reply(2 * NFSX_UNSIGNED); - nfsm_srvpostop_attr(nfsd, 1, NULL, &mb); - return (0); - } + if (error) + goto bad; + if (vp->v_type != VREG) { if (v3) error = EINVAL; @@ -570,12 +568,9 @@ nfsrv_read(nfsd, slp, procp, mrq) getret = VOP_GETATTR(vp, &va, cred, procp); if (!error) error = getret; - if (error) { - vput(vp); - nfsm_reply(NFSX_POSTOPATTR(v3)); - nfsm_srvpostop_attr(nfsd, getret, &va, &mb); - return (0); - } + if (error) + goto vbad; + if (off >= va.va_size) cnt = 0; else if ((off + reqlen) > va.va_size) @@ -645,10 +640,7 @@ nfsrv_read(nfsd, slp, procp, mrq) if (!error) error = getret; m_freem(mreq); - vput(vp); - nfsm_reply(NFSX_POSTOPATTR(v3)); - nfsm_srvpostop_attr(nfsd, getret, &va, &mb); - return (0); + goto vbad; } } else uiop->uio_resid = 0; @@ -669,6 +661,13 @@ nfsrv_read(nfsd, slp, procp, mrq) *tl = txdr_unsigned(cnt); nfsmout: return(error); + +vbad: + vput(vp); +bad: + nfsm_reply(0); + nfsm_srvpostop_attr(nfsd, getret, &va, &mb); + return (0); } /* |