Skip to content

Commit 3672476

Browse files
tchardingtytso
authored andcommitted
vsprintf: Add command line option debug_boot_weak_hash
Currently printing [hashed] pointers requires enough entropy to be available. Early in the boot sequence this may not be the case resulting in a dummy string '(____ptrval____)' being printed. This makes debugging the early boot sequence difficult. We can relax the requirement to use cryptographically secure hashing during debugging. This enables debugging while keeping development/production kernel behaviour the same. If new command line option debug_boot_weak_hash is enabled use cryptographically insecure hashing and hash pointer value immediately. Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent 1c4facb commit 3672476

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

Documentation/admin-guide/kernel-parameters.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,14 @@
748748

749749
debug [KNL] Enable kernel debugging (events log level).
750750

751+
debug_boot_weak_hash
752+
[KNL] Enable printing [hashed] pointers early in the
753+
boot sequence. If enabled, we use a weak hash instead
754+
of siphash to hash pointers. Use this option if you are
755+
seeing instances of '(___ptrval___)') and need to see a
756+
value (hashed pointer) instead. Cryptographically
757+
insecure, please do not use on production kernels.
758+
751759
debug_locks_verbose=
752760
[KNL] verbose self-tests
753761
Format=<0|1>

lib/vsprintf.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,17 @@ char *device_node_string(char *buf, char *end, struct device_node *dn,
16511651
return widen_string(buf, buf - buf_start, end, spec);
16521652
}
16531653

1654+
/* Make pointers available for printing early in the boot sequence. */
1655+
static int debug_boot_weak_hash __ro_after_init;
1656+
1657+
static int __init debug_boot_weak_hash_enable(char *str)
1658+
{
1659+
debug_boot_weak_hash = 1;
1660+
pr_info("debug_boot_weak_hash enabled\n");
1661+
return 0;
1662+
}
1663+
early_param("debug_boot_weak_hash", debug_boot_weak_hash_enable);
1664+
16541665
static DEFINE_STATIC_KEY_TRUE(not_filled_random_ptr_key);
16551666
static siphash_key_t ptr_key __read_mostly;
16561667

@@ -1703,6 +1714,12 @@ static char *ptr_to_id(char *buf, char *end, void *ptr, struct printf_spec spec)
17031714
const char *str = sizeof(ptr) == 8 ? "(____ptrval____)" : "(ptrval)";
17041715
unsigned long hashval;
17051716

1717+
/* When debugging early boot use non-cryptographically secure hash. */
1718+
if (unlikely(debug_boot_weak_hash)) {
1719+
hashval = hash_long((unsigned long)ptr, 32);
1720+
return pointer_string(buf, end, (const void *)hashval, spec);
1721+
}
1722+
17061723
if (static_branch_unlikely(&not_filled_random_ptr_key)) {
17071724
spec.field_width = 2 * sizeof(ptr);
17081725
/* string length must be less than default_width */

0 commit comments

Comments
 (0)