[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CA+_b7D+2O2E0S4vQY37SZcK3VTPUdd1cP8y9NuZM-HWwP3HNGw@mail.gmail.com>
Date: Sun, 14 Jul 2013 22:40:37 +0300
From: Dan Carpenter <error27@...il.com>
To: wharms@....de
Cc: Dan Carpenter <dan.carpenter@...cle.com>,
Trond Myklebust <Trond.Myklebust@...app.com>,
"J. Bruce Fields" <bfields@...ldses.org>,
"David S. Miller" <davem@...emloft.net>, linux-nfs@...r.kernel.org,
netdev@...r.kernel.org, kernel-janitors@...r.kernel.org
Subject: Re: [patch -stable] svcrdma: underflow issue in decode_write_list()
On 7/12/13, walter harms <wharms@....de> wrote:
> i am struggling to understand what is actually checked here.
> Perhaps this improves the readability a bit
> if ( nchunks < 0 ||
> sizeof(struct rpcrdma_write_chunk) * nchunks > (SIZE_MAX - start) ||
That doesn't work.
This is one of the few times I get to use algebra in real life. Yay!
The problem is you have to
have the nchunks by itself and the trusted bits on the other side. So
the multiply becomes a
divide.
There are lots of these checks in the kernel. It's idiomatic.
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists