Re: [PATCH v26 2/5] fs/proc/task_mmu: Implement IOCTL to get and optionally clear info about PTEs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Aug 3, 2023 at 8:25 AM Michał Mirosław <emmir@xxxxxxxxxx> wrote:
>
> On Thu, 3 Aug 2023 at 17:09, Andrei Vagin <avagin@xxxxxxxxx> wrote:
> > On Thu, Jul 27, 2023 at 02:36:34PM +0500, Muhammad Usama Anjum wrote:
> [...]
> > > +     n_pages = (*end - addr) / PAGE_SIZE;
> > > +     if (check_add_overflow(p->found_pages, n_pages, &total_pages) ||
> > > +         total_pages > p->arg.max_pages) {
> >
> > why do we need to use check_add_overflow here?
> >
> > > +             size_t n_too_much = total_pages - p->arg.max_pages;
> >
> > it is unsafe to use total_pages if check_add_overflow returns non-zero.
>
> Since we're adding unsigned integers, this is well defined even after overflow.

The description of check_add_overflow declares that is unsafe:
https://elixir.bootlin.com/linux/latest/source/include/linux/overflow.h#L62

It actually doesn't matter, because it should be impossible to
overflow total_pages
and we can consider not to use check_add_overflow here.

>
> Best Regards
> Michał Mirosław




[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux