mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
lib/dump_stack: report process UID in dump_stack_print_info()
To make it easier to identify the crashing process, report effective UID when dumping the stack. Link: https://lkml.kernel.org/r/20240615041358.103791-1-surenb@google.com Signed-off-by: Suren Baghdasaryan <surenb@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
326c34efe3
commit
d2917ff199
@ -54,8 +54,10 @@ void __init dump_stack_set_arch_desc(const char *fmt, ...)
|
|||||||
*/
|
*/
|
||||||
void dump_stack_print_info(const char *log_lvl)
|
void dump_stack_print_info(const char *log_lvl)
|
||||||
{
|
{
|
||||||
printk("%sCPU: %d PID: %d Comm: %.20s %s%s %s %.*s" BUILD_ID_FMT "\n",
|
printk("%sCPU: %d UID: %u PID: %d Comm: %.20s %s%s %s %.*s" BUILD_ID_FMT "\n",
|
||||||
log_lvl, raw_smp_processor_id(), current->pid, current->comm,
|
log_lvl, raw_smp_processor_id(),
|
||||||
|
__kuid_val(current_real_cred()->euid),
|
||||||
|
current->pid, current->comm,
|
||||||
kexec_crash_loaded() ? "Kdump: loaded " : "",
|
kexec_crash_loaded() ? "Kdump: loaded " : "",
|
||||||
print_tainted(),
|
print_tainted(),
|
||||||
init_utsname()->release,
|
init_utsname()->release,
|
||||||
|
Loading…
Reference in New Issue
Block a user