Commit 1fc5bba3 authored by Ed Schouten's avatar Ed Schouten Committed by Linus Torvalds

[PATCH] nfsd: Insecure port warning shows decimal IPv4 address

print a couple of ipv4 addresses as dotted quads, not as hex.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 13f56f51
...@@ -181,8 +181,8 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -181,8 +181,8 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
error = nfserr_perm; error = nfserr_perm;
if (!rqstp->rq_secure && EX_SECURE(exp)) { if (!rqstp->rq_secure && EX_SECURE(exp)) {
printk(KERN_WARNING printk(KERN_WARNING
"nfsd: request from insecure port (%08x:%d)!\n", "nfsd: request from insecure port (%u.%u.%u.%u:%d)!\n",
ntohl(rqstp->rq_addr.sin_addr.s_addr), NIPQUAD(rqstp->rq_addr.sin_addr.s_addr),
ntohs(rqstp->rq_addr.sin_port)); ntohs(rqstp->rq_addr.sin_port));
goto out; goto out;
} }
......
...@@ -128,8 +128,8 @@ nfsd_proc_read(struct svc_rqst *rqstp, struct nfsd_readargs *argp, ...@@ -128,8 +128,8 @@ nfsd_proc_read(struct svc_rqst *rqstp, struct nfsd_readargs *argp,
if (NFSSVC_MAXBLKSIZE < argp->count) { if (NFSSVC_MAXBLKSIZE < argp->count) {
printk(KERN_NOTICE printk(KERN_NOTICE
"oversized read request from %08x:%d (%d bytes)\n", "oversized read request from %u.%u.%u.%u:%d (%d bytes)\n",
ntohl(rqstp->rq_addr.sin_addr.s_addr), NIPQUAD(rqstp->rq_addr.sin_addr.s_addr),
ntohs(rqstp->rq_addr.sin_port), ntohs(rqstp->rq_addr.sin_port),
argp->count); argp->count);
argp->count = NFSSVC_MAXBLKSIZE; argp->count = NFSSVC_MAXBLKSIZE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment