kernel_samsung_a53x/lib
Wang Hai 22a523d456 kobject: Fix slab-out-of-bounds in fill_kobj_path()
commit 3bb2a01caa813d3a1845d378bbe4169ef280d394 upstream.

In kobject_get_path(), if kobj->name is changed between calls
get_kobj_path_length() and fill_kobj_path() and the length becomes
longer, then fill_kobj_path() will have an out-of-bounds bug.

The actual current problem occurs when the ixgbe probe.

In ixgbe_mii_bus_init(), if the length of netdev->dev.kobj.name
length becomes longer, out-of-bounds will occur.

cpu0                                         cpu1
ixgbe_probe
 register_netdev(netdev)
  netdev_register_kobject
   device_add
    kobject_uevent // Sending ADD events
                                             systemd-udevd // rename netdev
                                              dev_change_name
                                               device_rename
                                                kobject_rename
 ixgbe_mii_bus_init                             |
  mdiobus_register                              |
   __mdiobus_register                           |
    device_register                             |
     device_add                                 |
      kobject_uevent                            |
       kobject_get_path                         |
        len = get_kobj_path_length // old name  |
        path = kzalloc(len, gfp_mask);          |
                                                kobj->name = name;
                                                /* name length becomes
                                                 * longer
                                                 */
        fill_kobj_path /* kobj path length is
                        * longer than path,
                        * resulting in out of
                        * bounds when filling path
                        */

This is the kasan report:

==================================================================
BUG: KASAN: slab-out-of-bounds in fill_kobj_path+0x50/0xc0
Write of size 7 at addr ff1100090573d1fd by task kworker/28:1/673

 Workqueue: events work_for_cpu_fn
 Call Trace:
 <TASK>
 dump_stack_lvl+0x34/0x48
 print_address_description.constprop.0+0x86/0x1e7
 print_report+0x36/0x4f
 kasan_report+0xad/0x130
 kasan_check_range+0x35/0x1c0
 memcpy+0x39/0x60
 fill_kobj_path+0x50/0xc0
 kobject_get_path+0x5a/0xc0
 kobject_uevent_env+0x140/0x460
 device_add+0x5c7/0x910
 __mdiobus_register+0x14e/0x490
 ixgbe_probe.cold+0x441/0x574 [ixgbe]
 local_pci_probe+0x78/0xc0
 work_for_cpu_fn+0x26/0x40
 process_one_work+0x3b6/0x6a0
 worker_thread+0x368/0x520
 kthread+0x165/0x1a0
 ret_from_fork+0x1f/0x30

This reproducer triggers that bug:

while:
do
    rmmod ixgbe
    sleep 0.5
    modprobe ixgbe
    sleep 0.5

When calling fill_kobj_path() to fill path, if the name length of
kobj becomes longer, return failure and retry. This fixes the problem.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Link: https://lore.kernel.org/r/20221220012143.52141-1-wanghai38@huawei.com
Signed-off-by: Oleksandr Tymoshenko <ovt@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-11-18 10:58:32 +01:00
..
842 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crypto Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dim Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fonts Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kunit Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
livepatch Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lz4 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lzo Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
math Optimized Integer SQRT. for upto 3x faster operation 2024-11-17 17:43:31 +01:00
mpi Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pldmfw Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
raid6 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reed_solomon Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vdso Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xz Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zlib_deflate Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zlib_dfltcc Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zlib_inflate Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zstd Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
argv_split.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ashldi3.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ashrdi3.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
asn1_decoder.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
assoc_array.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atomic64.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atomic64_test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
audit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcd.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bch.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitfield_kunit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitrev.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bootconfig.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bsearch.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bucket_locks.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bug.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
build_OID_registry Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bust_spinlocks.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
check_signature.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
checksum.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clz_ctz.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clz_tab.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cmdline.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cmpdi2.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compat_audit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpu_rmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpumask.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-ccitt.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-itu-t.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-t10dif.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc4.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc7.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc8.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc16.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc64.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ctype.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debug_info.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debug_locks.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debugobjects.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dec_and_lock.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_bunzip2.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_inflate.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_unlz4.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_unlzma.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_unlzo.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_unxz.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress_unzstd.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devres.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
digsig.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dump_stack.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dynamic_debug.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dynamic_queue_limits.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
earlycpio.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errname.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errseq.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extable.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fault-inject-usercopy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fault-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_addresses.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_empty_tree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_ro.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_rw.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_strerror.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_sw.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdt_wip.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
find_bit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
find_bit_benchmark.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
flex_proportions.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gen_crc32table.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gen_crc64table.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genalloc.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
generic-radix-tree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
glob.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
globtest.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hexdump.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hweight.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
idr.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inflate.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interval_tree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interval_tree_test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iomap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iomap_copy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iommu-helper.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iov_iter.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_poll.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_regs.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
is_single_threaded.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kasprintf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.debug lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default 2024-11-08 11:26:07 +01:00
Kconfig.kasan Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.kcsan Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.kfence Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.kgdb Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.ubsan Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kfifo.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
klist.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kobject.c kobject: Fix slab-out-of-bounds in fill_kobj_path() 2024-11-18 10:58:32 +01:00
kobject_uevent.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kstrtox.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kstrtox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libcrc32c.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
linear_ranges.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list-test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_debug.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_sort.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
llist.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-hardirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-mutex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-rlock-hardirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-rlock-softirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-rlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-rsem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-rtmutex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-softirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-spin-hardirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-spin-softirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-spin.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-wlock-hardirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-wlock-softirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-wlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest-wsem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
locking-selftest.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockref.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
logic_pio.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lru_cache.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lshrdi3.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memcat_p.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memneq.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memory-notifier-error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memregion.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memweight.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
muldi3.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
net_utils.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netdev-notifier-error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nlattr.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nmi_backtrace.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nodemask.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
notifier-error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
notifier-error-inject.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
objagg.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of-reconfig-notifier-error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
oid_registry.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
once.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
packing.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parman.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parser.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci_iomap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu-refcount.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu_counter.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu_test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
plist.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm-notifier-error-inject.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
radix-tree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
random32.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ratelimit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rbtree.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rbtree_test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
refcount.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rhashtable.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sbitmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scatterlist.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seq_buf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sg_pool.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sg_split.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sha1.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
show_mem.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
siphash.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smp_processor_id.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sort.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stackdepot.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stmp_device.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
string.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
string_helpers.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
strncpy_from_user.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
strnlen_user.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
syscall.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test-kstrtox.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test-string_helpers.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_bitmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_bitops.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_bits.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_blackhole_dev.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_bpf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_debug_virtual.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_firmware.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_fpu.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_free_pages.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_hash.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_hexdump.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_hmm.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_hmm_uapi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_ida.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_kasan.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_kasan_module.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_kmod.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_linear_ranges.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_list_sort.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_lockup.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_memcat_p.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_meminit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_min_heap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_module.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_objagg.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_overflow.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_parman.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_printf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_rhashtable.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_siphash.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_sort.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_stackinit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_static_key_base.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_static_keys.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_string.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_strscpy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_sysctl.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_ubsan.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_user_copy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_uuid.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_vmalloc.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
test_xarray.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
textsearch.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timerqueue.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ts_bm.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ts_fsm.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ts_kmp.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ubsan.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ubsan.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ucmpdi2.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ucs2_string.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usercopy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uuid.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vsprintf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
win_minmax.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xarray.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xxhash.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00