1. 15 Jul, 2022 8 commits
  2. 14 Jul, 2022 2 commits
  3. 13 Jul, 2022 1 commit
    • Alexander Lobakin's avatar
      iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) · b0b0b77e
      Alexander Lobakin authored
      KASAN reports:
      
      [ 4.668325][ T0] BUG: KASAN: wild-memory-access in dmar_parse_one_rhsa (arch/x86/include/asm/bitops.h:214 arch/x86/include/asm/bitops.h:226 include/asm-generic/bitops/instrumented-non-atomic.h:142 include/linux/nodemask.h:415 drivers/iommu/intel/dmar.c:497)
      [    4.676149][    T0] Read of size 8 at addr 1fffffff85115558 by task swapper/0/0
      [    4.683454][    T0]
      [    4.685638][    T0] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.19.0-rc3-00004-g0e862838 #1
      [    4.694331][    T0] Hardware name: Supermicro SYS-5018D-FN4T/X10SDV-8C-TLN4F, BIOS 1.1 03/02/2016
      [    4.703196][    T0] Call Trace:
      [    4.706334][    T0]  <TASK>
      [ 4.709133][ T0] ? dmar_parse_one_rhsa (arch/x86/include/asm/bitops.h:214 arch/x86/include/asm/bitops.h:226 include/asm-generic/bitops/instrumented-non-atomic.h:142 include/linux/nodemask.h:415 drivers/iommu/intel/dmar.c:497)
      
      after converting the type of the first argument (@nr, bit number)
      of arch_test_bit() from `long` to `unsigned long`[0].
      
      Under certain conditions (for example, when ACPI NUMA is disabled
      via command line), pxm_to_node() can return %NUMA_NO_NODE (-1).
      It is valid 'magic' number of NUMA node, but not valid bit number
      to use in bitops.
      node_online() eventually descends to test_bit() without checking
      for the input, assuming it's on caller side (which might be good
      for perf-critical tasks). There, -1 becomes %ULONG_MAX which leads
      to an insane array index when calculating bit position in memory.
      
      For now, add an explicit check for @node being not %NUMA_NO_NODE
      before calling test_bit(). The actual logics didn't change here
      at all.
      
      [0] https://github.com/norov/linux/commit/0e862838f290147ea9c16db852d8d494b552d38d
      
      Fixes: ee34b32d ("dmar: support for parsing Remapping Hardware Static Affinity structure")
      Cc: stable@vger.kernel.org # 2.6.33+
      Reported-by: default avatarkernel test robot <oliver.sang@intel.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Reviewed-by: default avatarLu Baolu <baolu.lu@linux.intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      b0b0b77e
  4. 12 Jul, 2022 2 commits
  5. 01 Jul, 2022 9 commits
    • Alexander Lobakin's avatar
      lib: test_bitmap: add compile-time optimization/evaluations assertions · dc34d503
      Alexander Lobakin authored
      Add a function to the bitmap test suite, which will ensure that
      compilers are able to evaluate operations performed by the
      bitops/bitmap helpers to compile-time constants when all of the
      arguments are compile-time constants as well, or trigger a build
      bug otherwise. This should work on all architectures and all the
      optimization levels supported by Kbuild.
      The function doesn't perform any runtime tests and gets optimized
      out to nothing after passing the build assertions.
      Unfortunately, Clang for s390 is currently broken (up to the latest
      Git snapshots) -- see the comment in the code -- so for now there's
      a small workaround for it which doesn't alter the logics. Hope we'll
      be able to remove it one day (bugreport is on its way).
      Suggested-by: default avatarYury Norov <yury.norov@gmail.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      dc34d503
    • Alexander Lobakin's avatar
      bitmap: don't assume compiler evaluates small mem*() builtins calls · 3e7e5baa
      Alexander Lobakin authored
      Intel kernel bot triggered the build bug on ARC architecture that
      in fact is as follows:
      
      	DECLARE_BITMAP(bitmap, BITS_PER_LONG);
      
      	bitmap_clear(bitmap, 0, BITS_PER_LONG);
      	BUILD_BUG_ON(!__builtin_constant_p(*bitmap));
      
      which can be expanded to:
      
      	unsigned long bitmap[1];
      
      	memset(bitmap, 0, sizeof(*bitmap));
      	BUILD_BUG_ON(!__builtin_constant_p(*bitmap));
      
      In most cases, a compiler is able to expand small/simple mem*()
      calls to simple assignments or bitops, in this case that would mean:
      
      	unsigned long bitmap[1] = { 0 };
      
      	BUILD_BUG_ON(!__builtin_constant_p(*bitmap));
      
      and on most architectures this works, but not on ARC, despite having
      -O3 for every build.
      So, to make this work, in case when the last bit to modify is still
      within the first long (small_const_nbits()), just use plain
      assignments for the rest of bitmap_*() functions which still use
      mem*(), but didn't receive such compile-time optimizations yet.
      This doesn't have the same coverage as compilers provide, but at
      least something to start:
      
      text: add/remove: 3/7 grow/shrink: 43/78 up/down: 1848/-3370 (-1546)
      data: add/remove: 1/11 grow/shrink: 0/8 up/down: 4/-356 (-352)
      
      notably cpumask_*() family when NR_CPUS <= BITS_PER_LONG:
      
      netif_get_num_default_rss_queues              38       4     -34
      cpumask_copy                                  90       -     -90
      cpumask_clear                                146       -    -146
      
      and the abovementioned assertion started passing.
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      3e7e5baa
    • Alexander Lobakin's avatar
      net/ice: fix initializing the bitmap in the switch code · 2f7ee2a7
      Alexander Lobakin authored
      Kbuild spotted the following bug during the testing of one of
      the optimizations:
      
      In file included from include/linux/cpumask.h:12,
      [...]
                      from drivers/net/ethernet/intel/ice/ice_switch.c:4:
      drivers/net/ethernet/intel/ice/ice_switch.c: In function 'ice_find_free_recp_res_idx.constprop':
      include/linux/bitmap.h:447:22: warning: 'possible_idx[0]' is used uninitialized [-Wuninitialized]
        447 |                 *map |= GENMASK(start + nbits - 1, start);
            |                      ^~
      In file included from drivers/net/ethernet/intel/ice/ice.h:7,
                       from drivers/net/ethernet/intel/ice/ice_lib.h:7,
                       from drivers/net/ethernet/intel/ice/ice_switch.c:4:
      drivers/net/ethernet/intel/ice/ice_switch.c:4929:24: note: 'possible_idx[0]' was declared here
       4929 |         DECLARE_BITMAP(possible_idx, ICE_MAX_FV_WORDS);
            |                        ^~~~~~~~~~~~
      include/linux/types.h:11:23: note: in definition of macro 'DECLARE_BITMAP'
         11 |         unsigned long name[BITS_TO_LONGS(bits)]
            |                       ^~~~
      
      %ICE_MAX_FV_WORDS is 48, so bitmap_set() here was initializing only
      48 bits, leaving a junk in the rest 16.
      It was previously hidden due to that filling 48 bits makes
      bitmap_set() call external __bitmap_set(), but after making it use
      plain bit arithmetics on small bitmaps, compilers started seeing
      the issue. It was still working because those 16 weren't used
      anywhere anyhow.
      bitmap_{clear,set}() are not really intended to initialize bitmaps,
      rather to modify already initialized ones, as they don't do anything
      past the passed number of bits. The correct function to do this in
      that particular case is bitmap_fill(), so use it here. It will do
      `*possible_idx = ~0UL` instead of `*possible_idx |= GENMASK(47, 0)`,
      not leaving anything in an undefined state.
      
      Fixes: fd2a6b71 ("ice: create advanced switch recipe")
      Reported-by: default avatarkernel test robot <lkp@intel.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      2f7ee2a7
    • Alexander Lobakin's avatar
      bitops: let optimize out non-atomic bitops on compile-time constants · b03fc117
      Alexander Lobakin authored
      Currently, many architecture-specific non-atomic bitop
      implementations use inline asm or other hacks which are faster or
      more robust when working with "real" variables (i.e. fields from
      the structures etc.), but the compilers have no clue how to optimize
      them out when called on compile-time constants. That said, the
      following code:
      
      	DECLARE_BITMAP(foo, BITS_PER_LONG) = { }; // -> unsigned long foo[1];
      	unsigned long bar = BIT(BAR_BIT);
      	unsigned long baz = 0;
      
      	__set_bit(FOO_BIT, foo);
      	baz |= BIT(BAZ_BIT);
      
      	BUILD_BUG_ON(!__builtin_constant_p(test_bit(FOO_BIT, foo));
      	BUILD_BUG_ON(!__builtin_constant_p(bar & BAR_BIT));
      	BUILD_BUG_ON(!__builtin_constant_p(baz & BAZ_BIT));
      
      triggers the first assertion on x86_64, which means that the
      compiler is unable to evaluate it to a compile-time initializer
      when the architecture-specific bitop is used even if it's obvious.
      In order to let the compiler optimize out such cases, expand the
      bitop() macro to use the "constant" C non-atomic bitop
      implementations when all of the arguments passed are compile-time
      constants, which means that the result will be a compile-time
      constant as well, so that it produces more efficient and simple
      code in 100% cases, comparing to the architecture-specific
      counterparts.
      
      The savings are architecture, compiler and compiler flags dependent,
      for example, on x86_64 -O2:
      
      GCC 12: add/remove: 78/29 grow/shrink: 332/525 up/down: 31325/-61560 (-30235)
      LLVM 13: add/remove: 79/76 grow/shrink: 184/537 up/down: 55076/-141892 (-86816)
      LLVM 14: add/remove: 10/3 grow/shrink: 93/138 up/down: 3705/-6992 (-3287)
      
      and ARM64 (courtesy of Mark):
      
      GCC 11: add/remove: 92/29 grow/shrink: 933/2766 up/down: 39340/-82580 (-43240)
      LLVM 14: add/remove: 21/11 grow/shrink: 620/651 up/down: 12060/-15824 (-3764)
      
      Cc: Mark Rutland <mark.rutland@arm.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarMarco Elver <elver@google.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      b03fc117
    • Alexander Lobakin's avatar
      bitops: wrap non-atomic bitops with a transparent macro · e69eb9c4
      Alexander Lobakin authored
      In preparation for altering the non-atomic bitops with a macro, wrap
      them in a transparent definition. This requires prepending one more
      '_' to their names in order to be able to do that seamlessly. It is
      a simple change, given that all the non-prefixed definitions are now
      in asm-generic.
      sparc32 already has several triple-underscored functions, so I had
      to rename them ('___' -> 'sp32_').
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarMarco Elver <elver@google.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      e69eb9c4
    • Alexander Lobakin's avatar
      bitops: define const_*() versions of the non-atomics · bb7379bf
      Alexander Lobakin authored
      Define const_*() variants of the non-atomic bitops to be used when
      the input arguments are compile-time constants, so that the compiler
      will be always able to resolve those to compile-time constants as
      well. Those are mostly direct aliases for generic_*() with one
      exception for const_test_bit(): the original one is declared
      atomic-safe and thus doesn't discard the `volatile` qualifier, so
      in order to let optimize code, define it separately disregarding
      the qualifier.
      Add them to the compile-time type checks as well just in case.
      Suggested-by: default avatarMarco Elver <elver@google.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarMarco Elver <elver@google.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      bb7379bf
    • Alexander Lobakin's avatar
      bitops: unify non-atomic bitops prototypes across architectures · 0e862838
      Alexander Lobakin authored
      Currently, there is a mess with the prototypes of the non-atomic
      bitops across the different architectures:
      
      ret	bool, int, unsigned long
      nr	int, long, unsigned int, unsigned long
      addr	volatile unsigned long *, volatile void *
      
      Thankfully, it doesn't provoke any bugs, but can sometimes make
      the compiler angry when it's not handy at all.
      Adjust all the prototypes to the following standard:
      
      ret	bool				retval can be only 0 or 1
      nr	unsigned long			native; signed makes no sense
      addr	volatile unsigned long *	bitmaps are arrays of ulongs
      
      Next, some architectures don't define 'arch_' versions as they don't
      support instrumentation, others do. To make sure there is always the
      same set of callables present and to ease any potential future
      changes, make them all follow the rule:
       * architecture-specific files define only 'arch_' versions;
       * non-prefixed versions can be defined only in asm-generic files;
      and place the non-prefixed definitions into a new file in
      asm-generic to be included by non-instrumented architectures.
      
      Finally, add some static assertions in order to prevent people from
      making a mess in this room again.
      I also used the %__always_inline attribute consistently, so that
      they always get resolved to the actual operations.
      Suggested-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Acked-by: default avatarMark Rutland <mark.rutland@arm.com>
      Reviewed-by: default avatarYury Norov <yury.norov@gmail.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      0e862838
    • Alexander Lobakin's avatar
      bitops: always define asm-generic non-atomic bitops · 21bb8af5
      Alexander Lobakin authored
      Move generic non-atomic bitops from the asm-generic header which
      gets included only when there are no architecture-specific
      alternatives, to a separate independent file to make them always
      available.
      Almost no actual code changes, only one comment added to
      generic_test_bit() saying that it's an atomic operation itself
      and thus `volatile` must always stay there with no cast-aways.
      
      Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> # comment
      Suggested-by: Marco Elver <elver@google.com> # reference to kernel-doc
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Reviewed-by: default avatarMarco Elver <elver@google.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      21bb8af5
    • Alexander Lobakin's avatar
      ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() · e5a16a5c
      Alexander Lobakin authored
      test_bit(), as any other bitmap op, takes `unsigned long *` as a
      second argument (pointer to the actual bitmap), as any bitmap
      itself is an array of unsigned longs. However, the ia64_get_irr()
      code passes a ref to `u64` as a second argument.
      This works with the ia64 bitops implementation due to that they
      have `void *` as the second argument and then cast it later on.
      This works with the bitmap API itself due to that `unsigned long`
      has the same size on ia64 as `u64` (`unsigned long long`), but
      from the compiler PoV those two are different.
      Define @irr as `unsigned long` to fix that. That implies no
      functional changes. Has been hidden for 16 years!
      
      Fixes: a5878691 ("[IA64] avoid broken SAL_CACHE_FLUSH implementations")
      Cc: stable@vger.kernel.org # 2.6.16+
      Reported-by: default avatarkernel test robot <lkp@intel.com>
      Signed-off-by: default avatarAlexander Lobakin <alexandr.lobakin@intel.com>
      Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Reviewed-by: default avatarYury Norov <yury.norov@gmail.com>
      Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
      e5a16a5c
  6. 24 Jun, 2022 1 commit
  7. 19 Jun, 2022 11 commits
    • Linus Torvalds's avatar
      Linux 5.19-rc3 · a111daf0
      Linus Torvalds authored
      a111daf0
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 05c6ca85
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
      
       - Make RESERVE_BRK() work again with older binutils. The recent
         'simplification' broke that.
      
       - Make early #VE handling increment RIP when successful.
      
       - Make the #VE code consistent vs. the RIP adjustments and add
         comments.
      
       - Handle load_unaligned_zeropad() across page boundaries correctly in
         #VE when the second page is shared.
      
      * tag 'x86-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/tdx: Handle load_unaligned_zeropad() page-cross to a shared page
        x86/tdx: Clarify RIP adjustments in #VE handler
        x86/tdx: Fix early #VE handling
        x86/mm: Fix RESERVE_BRK() for older binutils
      05c6ca85
    • Linus Torvalds's avatar
      Merge tag 'objtool-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 5d770f11
      Linus Torvalds authored
      Pull build tooling updates from Thomas Gleixner:
      
       - Remove obsolete CONFIG_X86_SMAP reference from objtool
      
       - Fix overlapping text section failures in faddr2line for real
      
       - Remove OBJECT_FILES_NON_STANDARD usage from x86 ftrace and replace it
         with finegrained annotations so objtool can validate that code
         correctly.
      
      * tag 'objtool-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/ftrace: Remove OBJECT_FILES_NON_STANDARD usage
        faddr2line: Fix overlapping text section failures, the sequel
        objtool: Fix obsolete reference to CONFIG_X86_SMAP
      5d770f11
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 727c3991
      Linus Torvalds authored
      Pull scheduler fix from Thomas Gleixner:
       "A single scheduler fix plugging a race between sched_setscheduler()
        and balance_push().
      
        sched_setscheduler() spliced the balance callbacks accross a lock
        break which makes it possible for an interleaving schedule() to
        observe an empty list"
      
      * tag 'sched-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        sched: Fix balance_push() vs __sched_setscheduler()
      727c3991
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 4afb6515
      Linus Torvalds authored
      Pull lockdep fix from Thomas Gleixner:
       "A RT fix for lockdep.
      
        lockdep invokes prandom_u32() to create cookies. This worked until
        prandom_u32() was switched to the real random generator, which takes a
        spinlock for extraction, which does not work on RT when invoked from
        atomic contexts.
      
        lockdep has no requirement for real random numbers and it turns out
        sched_clock() is good enough to create the cookie. That works
        everywhere and is faster"
      
      * tag 'locking-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        locking/lockdep: Use sched_clock() for random numbers
      4afb6515
    • Linus Torvalds's avatar
      Merge tag 'irq-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 36da9f5f
      Linus Torvalds authored
      Pull irq fixes from Thomas Gleixner:
       "A set of interrupt subsystem updates:
      
        Core:
      
         - Ensure runtime power management for chained interrupts
      
        Drivers:
      
         - A collection of OF node refcount fixes
      
         - Unbreak MIPS uniprocessor builds
      
         - Fix xilinx interrupt controller Kconfig dependencies
      
         - Add a missing compatible string to the Uniphier driver"
      
      * tag 'irq-urgent-2022-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        irqchip/loongson-liointc: Use architecture register to get coreid
        irqchip/uniphier-aidet: Add compatible string for NX1 SoC
        dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
        irqchip/realtek-rtl: Fix refcount leak in map_interrupts
        irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions
        irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions
        irqchip/apple-aic: Fix refcount leak in aic_of_ic_init
        irqchip/apple-aic: Fix refcount leak in build_fiq_affinity
        irqchip/gic/realview: Fix refcount leak in realview_gic_of_init
        irqchip/xilinx: Remove microblaze+zynq dependency
        genirq: PM: Use runtime PM for chained interrupts
      36da9f5f
    • Linus Torvalds's avatar
      Merge tag 'char-misc-5.19-rc3-take2' of... · bc94632c
      Linus Torvalds authored
      Merge tag 'char-misc-5.19-rc3-take2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
      
      Pull char/misc driver fixes for real from Greg KH:
       "Let's tag the proper branch this time...
      
        Here are some small char/misc driver fixes for 5.19-rc3 that resolve
        some reported issues.
      
        They include:
      
         - mei driver fixes
      
         - comedi driver fix
      
         - rtsx build warning fix
      
         - fsl-mc-bus driver fix
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      This is what the merge in commit f0ec9c65 _should_ have merged, but
      Greg fat-fingered the pull request and I got some small changes from
      linux-next instead there. Credit to Nathan Chancellor for eagle-eyes.
      
      Link: https://lore.kernel.org/all/Yqywy+Md2AfGDu8v@dev-arch.thelio-3990X/
      
      * tag 'char-misc-5.19-rc3-take2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
        bus: fsl-mc-bus: fix KASAN use-after-free in fsl_mc_bus_remove()
        mei: me: add raptor lake point S DID
        mei: hbm: drop capability response on early shutdown
        mei: me: set internal pg flag to off on hardware reset
        misc: rtsx: Fix clang -Wsometimes-uninitialized in rts5261_init_from_hw()
        comedi: vmk80xx: fix expression for tx buffer size
      bc94632c
    • Linus Torvalds's avatar
      Merge tag 'i2c-for-5.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · ee4eb6ee
      Linus Torvalds authored
      Pull i2c fixes from Wolfram Sang:
       "MAINTAINERS rectifications and a few minor driver fixes"
      
      * tag 'i2c-for-5.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
        i2c: mediatek: Fix an error handling path in mtk_i2c_probe()
        i2c: designware: Use standard optional ref clock implementation
        MAINTAINERS: core DT include belongs to core
        MAINTAINERS: add include/dt-bindings/i2c to I2C SUBSYSTEM HOST DRIVERS
        i2c: npcm7xx: Add check for platform_driver_register
        MAINTAINERS: Update Synopsys DesignWare I2C to Supported
      ee4eb6ee
    • Linus Torvalds's avatar
      Merge tag 'xfs-5.19-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · 063232b6
      Linus Torvalds authored
      Pull xfs fixes from Darrick Wong:
       "There's not a whole lot this time around (I'm still on vacation) but
        here are some important fixes for new features merged in -rc1:
      
         - Fix a bug where inode flag changes would accidentally drop nrext64
      
         - Fix a race condition when toggling LARP mode"
      
      * tag 'xfs-5.19-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        xfs: preserve DIFLAG2_NREXT64 when setting other inode attributes
        xfs: fix variable state usage
        xfs: fix TOCTOU race involving the new logged xattrs control knob
      063232b6
    • Linus Torvalds's avatar
      Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 · 354c6e07
      Linus Torvalds authored
      Pull ext4 fixes from Ted Ts'o:
       "Fix a variety of bugs, many of which were found by folks using fuzzing
        or error injection.
      
        Also fix up how test_dummy_encryption mount option is handled for the
        new mount API.
      
        Finally, fix/cleanup a number of comments and ext4 Documentation
        files"
      
      * tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:
        ext4: fix a doubled word "need" in a comment
        ext4: add reserved GDT blocks check
        ext4: make variable "count" signed
        ext4: correct the judgment of BUG in ext4_mb_normalize_request
        ext4: fix bug_on ext4_mb_use_inode_pa
        ext4: fix up test_dummy_encryption handling for new mount API
        ext4: use kmemdup() to replace kmalloc + memcpy
        ext4: fix super block checksum incorrect after mount
        ext4: improve write performance with disabled delalloc
        ext4: fix warning when submitting superblock in ext4_commit_super()
        ext4, doc: remove unnecessary escaping
        ext4: fix incorrect comment in ext4_bio_write_page()
        fs: fix jbd2_journal_try_to_free_buffers() kernel-doc comment
      354c6e07
    • Linus Torvalds's avatar
      Merge tag '5.19-rc2-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 · ace2045e
      Linus Torvalds authored
      Pull cifs client fixes from Steve French:
       "Two cifs debugging improvements - one found to deal with debugging a
        multichannel problem and one for a recent fallocate issue
      
        This does include the two larger multichannel reconnect (dynamically
        adjusting interfaces on reconnect) patches, because we recently found
        an additional problem with multichannel to one server type that I want
        to include at the same time"
      
      * tag '5.19-rc2-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
        cifs: when a channel is not found for server, log its connection id
        smb3: add trace point for SMB2_set_eof
      ace2045e
  8. 18 Jun, 2022 6 commits
    • Xiang wangx's avatar
    • Zhang Yi's avatar
      ext4: add reserved GDT blocks check · b55c3cd1
      Zhang Yi authored
      We capture a NULL pointer issue when resizing a corrupt ext4 image which
      is freshly clear resize_inode feature (not run e2fsck). It could be
      simply reproduced by following steps. The problem is because of the
      resize_inode feature was cleared, and it will convert the filesystem to
      meta_bg mode in ext4_resize_fs(), but the es->s_reserved_gdt_blocks was
      not reduced to zero, so could we mistakenly call reserve_backup_gdb()
      and passing an uninitialized resize_inode to it when adding new group
      descriptors.
      
       mkfs.ext4 /dev/sda 3G
       tune2fs -O ^resize_inode /dev/sda #forget to run requested e2fsck
       mount /dev/sda /mnt
       resize2fs /dev/sda 8G
      
       ========
       BUG: kernel NULL pointer dereference, address: 0000000000000028
       CPU: 19 PID: 3243 Comm: resize2fs Not tainted 5.18.0-rc7-00001-gfde086c5ebfd #748
       ...
       RIP: 0010:ext4_flex_group_add+0xe08/0x2570
       ...
       Call Trace:
        <TASK>
        ext4_resize_fs+0xbec/0x1660
        __ext4_ioctl+0x1749/0x24e0
        ext4_ioctl+0x12/0x20
        __x64_sys_ioctl+0xa6/0x110
        do_syscall_64+0x3b/0x90
        entry_SYSCALL_64_after_hwframe+0x44/0xae
       RIP: 0033:0x7f2dd739617b
       ========
      
      The fix is simple, add a check in ext4_resize_begin() to make sure that
      the es->s_reserved_gdt_blocks is zero when the resize_inode feature is
      disabled.
      
      Cc: stable@kernel.org
      Signed-off-by: default avatarZhang Yi <yi.zhang@huawei.com>
      Reviewed-by: default avatarRitesh Harjani <ritesh.list@gmail.com>
      Reviewed-by: default avatarJan Kara <jack@suse.cz>
      Link: https://lore.kernel.org/r/20220601092717.763694-1-yi.zhang@huawei.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
      b55c3cd1
    • Ding Xiang's avatar
      ext4: make variable "count" signed · bc75a6eb
      Ding Xiang authored
      Since dx_make_map() may return -EFSCORRUPTED now, so change "count" to
      be a signed integer so we can correctly check for an error code returned
      by dx_make_map().
      
      Fixes: 46c116b9 ("ext4: verify dir block before splitting it")
      Cc: stable@kernel.org
      Signed-off-by: default avatarDing Xiang <dingxiang@cmss.chinamobile.com>
      Link: https://lore.kernel.org/r/20220530100047.537598-1-dingxiang@cmss.chinamobile.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
      bc75a6eb
    • Baokun Li's avatar
      ext4: correct the judgment of BUG in ext4_mb_normalize_request · cf4ff938
      Baokun Li authored
      ext4_mb_normalize_request() can move logical start of allocated blocks
      to reduce fragmentation and better utilize preallocation. However logical
      block requested as a start of allocation (ac->ac_o_ex.fe_logical) should
      always be covered by allocated blocks so we should check that by
      modifying and to or in the assertion.
      Signed-off-by: default avatarBaokun Li <libaokun1@huawei.com>
      Reviewed-by: default avatarRitesh Harjani <ritesh.list@gmail.com>
      Link: https://lore.kernel.org/r/20220528110017.354175-3-libaokun1@huawei.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
      cf4ff938
    • Baokun Li's avatar
      ext4: fix bug_on ext4_mb_use_inode_pa · a08f789d
      Baokun Li authored
      Hulk Robot reported a BUG_ON:
      ==================================================================
      kernel BUG at fs/ext4/mballoc.c:3211!
      [...]
      RIP: 0010:ext4_mb_mark_diskspace_used.cold+0x85/0x136f
      [...]
      Call Trace:
       ext4_mb_new_blocks+0x9df/0x5d30
       ext4_ext_map_blocks+0x1803/0x4d80
       ext4_map_blocks+0x3a4/0x1a10
       ext4_writepages+0x126d/0x2c30
       do_writepages+0x7f/0x1b0
       __filemap_fdatawrite_range+0x285/0x3b0
       file_write_and_wait_range+0xb1/0x140
       ext4_sync_file+0x1aa/0xca0
       vfs_fsync_range+0xfb/0x260
       do_fsync+0x48/0xa0
      [...]
      ==================================================================
      
      Above issue may happen as follows:
      -------------------------------------
      do_fsync
       vfs_fsync_range
        ext4_sync_file
         file_write_and_wait_range
          __filemap_fdatawrite_range
           do_writepages
            ext4_writepages
             mpage_map_and_submit_extent
              mpage_map_one_extent
               ext4_map_blocks
                ext4_mb_new_blocks
                 ext4_mb_normalize_request
                  >>> start + size <= ac->ac_o_ex.fe_logical
                 ext4_mb_regular_allocator
                  ext4_mb_simple_scan_group
                   ext4_mb_use_best_found
                    ext4_mb_new_preallocation
                     ext4_mb_new_inode_pa
                      ext4_mb_use_inode_pa
                       >>> set ac->ac_b_ex.fe_len <= 0
                 ext4_mb_mark_diskspace_used
                  >>> BUG_ON(ac->ac_b_ex.fe_len <= 0);
      
      we can easily reproduce this problem with the following commands:
      	`fallocate -l100M disk`
      	`mkfs.ext4 -b 1024 -g 256 disk`
      	`mount disk /mnt`
      	`fsstress -d /mnt -l 0 -n 1000 -p 1`
      
      The size must be smaller than or equal to EXT4_BLOCKS_PER_GROUP.
      Therefore, "start + size <= ac->ac_o_ex.fe_logical" may occur
      when the size is truncated. So start should be the start position of
      the group where ac_o_ex.fe_logical is located after alignment.
      In addition, when the value of fe_logical or EXT4_BLOCKS_PER_GROUP
      is very large, the value calculated by start_off is more accurate.
      
      Cc: stable@kernel.org
      Fixes: cd648b8a ("ext4: trim allocation requests to group size")
      Reported-by: default avatarHulk Robot <hulkci@huawei.com>
      Signed-off-by: default avatarBaokun Li <libaokun1@huawei.com>
      Reviewed-by: default avatarRitesh Harjani <ritesh.list@gmail.com>
      Link: https://lore.kernel.org/r/20220528110017.354175-2-libaokun1@huawei.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
      a08f789d
    • Eric Biggers's avatar
      ext4: fix up test_dummy_encryption handling for new mount API · 85456054
      Eric Biggers authored
      Since ext4 was converted to the new mount API, the test_dummy_encryption
      mount option isn't being handled entirely correctly, because the needed
      fscrypt_set_test_dummy_encryption() helper function combines
      parsing/checking/applying into one function.  That doesn't work well
      with the new mount API, which split these into separate steps.
      
      This was sort of okay anyway, due to the parsing logic that was copied
      from fscrypt_set_test_dummy_encryption() into ext4_parse_param(),
      combined with an additional check in ext4_check_test_dummy_encryption().
      However, these overlooked the case of changing the value of
      test_dummy_encryption on remount, which isn't allowed but ext4 wasn't
      detecting until ext4_apply_options() when it's too late to fail.
      Another bug is that if test_dummy_encryption was specified multiple
      times with an argument, memory was leaked.
      
      Fix this up properly by using the new helper functions that allow
      splitting up the parse/check/apply steps for test_dummy_encryption.
      
      Fixes: cebe85d5 ("ext4: switch to the new mount api")
      Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
      Link: https://lore.kernel.org/r/20220526040412.173025-1-ebiggers@kernel.orgSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
      85456054