Skip to content
Snippets Groups Projects
  1. Mar 04, 2023
    • Linus Torvalds's avatar
      mm: avoid gcc complaint about pointer casting · e77d587a
      Linus Torvalds authored
      
      The migration code ends up temporarily stashing information of the wrong
      type in unused fields of the newly allocated destination folio.  That
      all works fine, but gcc does complain about the pointer type mis-use:
      
          mm/migrate.c: In function ‘__migrate_folio_extract’:
          mm/migrate.c:1050:20: note: randstruct: casting between randomized structure pointer types (ssa): ‘struct anon_vma’ and ‘struct address_space’
      
           1050 |         *anon_vmap = (void *)dst->mapping;
                |         ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
      
      and gcc is actually right to complain since it really doesn't understand
      that this is a very temporary special case where this is ok.
      
      This could be fixed in different ways by just obfuscating the assignment
      sufficiently that gcc doesn't see what is going on, but the truly
      "proper C" way to do this is by explicitly using a union.
      
      Using unions for type conversions like this is normally hugely ugly and
      syntactically nasty, but this really is one of the few cases where we
      want to make it clear that we're not doing type conversion, we're really
      re-using the value bit-for-bit just using another type.
      
      IOW, this should not become a common pattern, but in this one case using
      that odd union is probably the best way to document to the compiler what
      is conceptually going on here.
      
      [ Side note: there are valid cases where we convert pointers to other
        pointer types, notably the whole "folio vs page" situation, where the
        types actually have fundamental commonalities.
      
        The fact that the gcc note is limited to just randomized structures
        means that we don't see equivalent warnings for those cases, but it
        migth also mean that we miss other cases where we do play these kinds
        of dodgy games, and this kind of explicit conversion might be a good
        idea. ]
      
      I verified that at least for an allmodconfig build on x86-64, this
      generates the exact same code, apart from line numbers and assembler
      comment changes.
      
      Fixes: 64c8902e ("migrate_pages: split unmap_and_move() to _unmap() and _move()")
      Cc: Huang, Ying <ying.huang@intel.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      e77d587a
  2. Mar 03, 2023
  3. Feb 28, 2023
  4. Feb 26, 2023
  5. Feb 21, 2023
    • Ondrej Mosnacek's avatar
      sysctl: fix proc_dobool() usability · f1aa2eb5
      Ondrej Mosnacek authored
      
      Currently proc_dobool expects a (bool *) in table->data, but sizeof(int)
      in table->maxsize, because it uses do_proc_dointvec() directly.
      
      This is unsafe for at least two reasons:
      1. A sysctl table definition may use { .data = &variable, .maxsize =
         sizeof(variable) }, not realizing that this makes the sysctl unusable
         (see the Fixes: tag) and that they need to use the completely
         counterintuitive sizeof(int) instead.
      2. proc_dobool() will currently try to parse an array of values if given
         .maxsize >= 2*sizeof(int), but will try to write values of type bool
         by offsets of sizeof(int), so it will not work correctly with neither
         an (int *) nor a (bool *). There is no .maxsize validation to prevent
         this.
      
      Fix this by:
      1. Constraining proc_dobool() to allow only one value and .maxsize ==
         sizeof(bool).
      2. Wrapping the original struct ctl_table in a temporary one with .data
         pointing to a local int variable and .maxsize set to sizeof(int) and
         passing this one to proc_dointvec(), converting the value to/from
         bool as needed (using proc_dou8vec_minmax() as an example).
      3. Extending sysctl_check_table() to enforce proc_dobool() expectations.
      4. Fixing the proc_dobool() docstring (it was just copy-pasted from
         proc_douintvec, apparently...).
      5. Converting all existing proc_dobool() users to set .maxsize to
         sizeof(bool) instead of sizeof(int).
      
      Fixes: 83efeeeb ("tty: Allow TIOCSTI to be disabled")
      Fixes: a2071573 ("sysctl: introduce new proc handler proc_dobool")
      Signed-off-by: default avatarOndrej Mosnacek <omosnace@redhat.com>
      Acked-by: default avatarKees Cook <keescook@chromium.org>
      Signed-off-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
      f1aa2eb5
    • David Howells's avatar
      netfs: Add a function to extract an iterator into a scatterlist · 01858469
      David Howells authored
      
      Provide a function for filling in a scatterlist from the list of pages
      contained in an iterator.
      
      If the iterator is UBUF- or IOBUF-type, the pages have a pin taken on them
      (as FOLL_PIN).
      
      If the iterator is BVEC-, KVEC- or XARRAY-type, no pin is taken on the
      pages and it is left to the caller to manage their lifetime.  It cannot be
      assumed that a ref can be validly taken, particularly in the case of a KVEC
      iterator.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      cc: Jeff Layton <jlayton@kernel.org>
      cc: Steve French <sfrench@samba.org>
      cc: Shyam Prasad N <nspmangalore@gmail.com>
      cc: Rohith Surabattula <rohiths.msft@gmail.com>
      cc: linux-cachefs@redhat.com
      cc: linux-cifs@vger.kernel.org
      cc: linux-fsdevel@vger.kernel.org
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      01858469
    • David Howells's avatar
      splice: Export filemap/direct_splice_read() · 7c8e01eb
      David Howells authored
      
      filemap_splice_read() and direct_splice_read() should be exported.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      cc: Steve French <sfrench@samba.org>
      cc: Jens Axboe <axboe@kernel.dk>
      cc: Christoph Hellwig <hch@lst.de>
      cc: Al Viro <viro@zeniv.linux.org.uk>
      cc: David Hildenbrand <david@redhat.com>
      cc: John Hubbard <jhubbard@nvidia.com>
      cc: linux-cifs@vger.kernel.org
      cc: linux-mm@kvack.org
      cc: linux-block@vger.kernel.org
      cc: linux-fsdevel@vger.kernel.org
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      7c8e01eb
    • David Howells's avatar
      splice: Add a func to do a splice from a buffered file without ITER_PIPE · 07073eb0
      David Howells authored
      
      Provide a function to do splice read from a buffered file, pulling the
      folios out of the pagecache directly by calling filemap_get_pages() to do
      any required reading and then pasting the returned folios into the pipe.
      
      A helper function is provided to do the actual folio pasting and will
      handle multipage folios by splicing as many of the relevant subpages as
      will fit into the pipe.
      
      The code is loosely based on filemap_read() and might belong in
      mm/filemap.c with that as it needs to use filemap_get_pages().
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      Reviewed-by: default avatarJens Axboe <axboe@kernel.dk>
      cc: Christoph Hellwig <hch@lst.de>
      cc: Al Viro <viro@zeniv.linux.org.uk>
      cc: David Hildenbrand <david@redhat.com>
      cc: John Hubbard <jhubbard@nvidia.com>
      cc: linux-mm@kvack.org
      cc: linux-block@vger.kernel.org
      cc: linux-fsdevel@vger.kernel.org
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      07073eb0
    • David Howells's avatar
      mm: Pass info, not iter, into filemap_get_pages() · dd5b9d00
      David Howells authored
      
      filemap_get_pages() and a number of functions that it calls take an
      iterator to provide two things: the number of bytes to be got from the file
      specified and whether partially uptodate pages are allowed.  Change these
      functions so that this information is passed in directly.  This allows it
      to be called without having an iterator to hand.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
      Reviewed-by: default avatarJens Axboe <axboe@kernel.dk>
      cc: Christoph Hellwig <hch@lst.de>
      cc: Matthew Wilcox <willy@infradead.org>
      cc: Al Viro <viro@zeniv.linux.org.uk>
      cc: David Hildenbrand <david@redhat.com>
      cc: John Hubbard <jhubbard@nvidia.com>
      cc: linux-mm@kvack.org
      cc: linux-block@vger.kernel.org
      cc: linux-fsdevel@vger.kernel.org
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      dd5b9d00
  6. Feb 20, 2023
  7. Feb 18, 2023
  8. Feb 17, 2023
  9. Feb 14, 2023
Loading