mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-22 20:30:58 +02:00
Merge tag 'hardening-v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
Pull hardening updates from Kees Cook: "There are three areas of note: A bunch of strlcpy()->strscpy() conversions ended up living in my tree since they were either Acked by maintainers for me to carry, or got ignored for multiple weeks (and were trivial changes). The compiler option '-fstrict-flex-arrays=3' has been enabled globally, and has been in -next for the entire devel cycle. This changes compiler diagnostics (though mainly just -Warray-bounds which is disabled) and potential UBSAN_BOUNDS and FORTIFY _warning_ coverage. In other words, there are no new restrictions, just potentially new warnings. Any new FORTIFY warnings we've seen have been fixed (usually in their respective subsystem trees). For more details, see commitdf8fc4e934
. The under-development compiler attribute __counted_by has been added so that we can start annotating flexible array members with their associated structure member that tracks the count of flexible array elements at run-time. It is possible (likely?) that the exact syntax of the attribute will change before it is finalized, but GCC and Clang are working together to sort it out. Any changes can be made to the macro while we continue to add annotations. As an example of that last case, I have a treewide commit waiting with such annotations found via Coccinelle: https://git.kernel.org/linus/adc5b3cb48a049563dc673f348eab7b6beba8a9b Also see commitdd06e72e68
for more details. Summary: - Fix KMSAN vs FORTIFY in strlcpy/strlcat (Alexander Potapenko) - Convert strreplace() to return string start (Andy Shevchenko) - Flexible array conversions (Arnd Bergmann, Wyes Karny, Kees Cook) - Add missing function prototypes seen with W=1 (Arnd Bergmann) - Fix strscpy() kerndoc typo (Arne Welzel) - Replace strlcpy() with strscpy() across many subsystems which were either Acked by respective maintainers or were trivial changes that went ignored for multiple weeks (Azeem Shaikh) - Remove unneeded cc-option test for UBSAN_TRAP (Nick Desaulniers) - Add KUnit tests for strcat()-family - Enable KUnit tests of FORTIFY wrappers under UML - Add more complete FORTIFY protections for strlcat() - Add missed disabling of FORTIFY for all arch purgatories. - Enable -fstrict-flex-arrays=3 globally - Tightening UBSAN_BOUNDS when using GCC - Improve checkpatch to check for strcpy, strncpy, and fake flex arrays - Improve use of const variables in FORTIFY - Add requested struct_size_t() helper for types not pointers - Add __counted_by macro for annotating flexible array size members" * tag 'hardening-v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux: (54 commits) netfilter: ipset: Replace strlcpy with strscpy uml: Replace strlcpy with strscpy um: Use HOST_DIR for mrproper kallsyms: Replace all non-returning strlcpy with strscpy sh: Replace all non-returning strlcpy with strscpy of/flattree: Replace all non-returning strlcpy with strscpy sparc64: Replace all non-returning strlcpy with strscpy Hexagon: Replace all non-returning strlcpy with strscpy kobject: Use return value of strreplace() lib/string_helpers: Change returned value of the strreplace() jbd2: Avoid printing outside the boundary of the buffer checkpatch: Check for 0-length and 1-element arrays riscv/purgatory: Do not use fortified string functions s390/purgatory: Do not use fortified string functions x86/purgatory: Do not use fortified string functions acpi: Replace struct acpi_table_slit 1-element array with flex-array clocksource: Replace all non-returning strlcpy with strscpy string: use __builtin_memcpy() in strlcpy/strlcat staging: most: Replace all non-returning strlcpy with strscpy drm/i2c: tda998x: Replace all non-returning strlcpy with strscpy ...
This commit is contained in:
@@ -716,7 +716,7 @@ static int get_ksymbol_bpf(struct kallsym_iter *iter)
|
||||
{
|
||||
int ret;
|
||||
|
||||
strlcpy(iter->module_name, "bpf", MODULE_NAME_LEN);
|
||||
strscpy(iter->module_name, "bpf", MODULE_NAME_LEN);
|
||||
iter->exported = 0;
|
||||
ret = bpf_get_kallsym(iter->pos - iter->pos_ftrace_mod_end,
|
||||
&iter->value, &iter->type,
|
||||
@@ -736,7 +736,7 @@ static int get_ksymbol_bpf(struct kallsym_iter *iter)
|
||||
*/
|
||||
static int get_ksymbol_kprobe(struct kallsym_iter *iter)
|
||||
{
|
||||
strlcpy(iter->module_name, "__builtin__kprobes", MODULE_NAME_LEN);
|
||||
strscpy(iter->module_name, "__builtin__kprobes", MODULE_NAME_LEN);
|
||||
iter->exported = 0;
|
||||
return kprobe_get_kallsym(iter->pos - iter->pos_bpf_end,
|
||||
&iter->value, &iter->type,
|
||||
|
@@ -847,7 +847,7 @@ static void __init param_sysfs_builtin(void)
|
||||
name_len = 0;
|
||||
} else {
|
||||
name_len = dot - kp->name + 1;
|
||||
strlcpy(modname, kp->name, name_len);
|
||||
strscpy(modname, kp->name, name_len);
|
||||
}
|
||||
kernel_add_sysfs_param(modname, kp, name_len);
|
||||
}
|
||||
|
@@ -1480,7 +1480,7 @@ static int __init boot_override_clocksource(char* str)
|
||||
{
|
||||
mutex_lock(&clocksource_mutex);
|
||||
if (str)
|
||||
strlcpy(override_name, str, sizeof(override_name));
|
||||
strscpy(override_name, str, sizeof(override_name));
|
||||
mutex_unlock(&clocksource_mutex);
|
||||
return 1;
|
||||
}
|
||||
|
@@ -5743,7 +5743,7 @@ bool ftrace_filter_param __initdata;
|
||||
static int __init set_ftrace_notrace(char *str)
|
||||
{
|
||||
ftrace_filter_param = true;
|
||||
strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
|
||||
strscpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
|
||||
return 1;
|
||||
}
|
||||
__setup("ftrace_notrace=", set_ftrace_notrace);
|
||||
@@ -5751,7 +5751,7 @@ __setup("ftrace_notrace=", set_ftrace_notrace);
|
||||
static int __init set_ftrace_filter(char *str)
|
||||
{
|
||||
ftrace_filter_param = true;
|
||||
strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
|
||||
strscpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
|
||||
return 1;
|
||||
}
|
||||
__setup("ftrace_filter=", set_ftrace_filter);
|
||||
@@ -5763,14 +5763,14 @@ static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
|
||||
|
||||
static int __init set_graph_function(char *str)
|
||||
{
|
||||
strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
|
||||
strscpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
|
||||
return 1;
|
||||
}
|
||||
__setup("ftrace_graph_filter=", set_graph_function);
|
||||
|
||||
static int __init set_graph_notrace_function(char *str)
|
||||
{
|
||||
strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
|
||||
strscpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
|
||||
return 1;
|
||||
}
|
||||
__setup("ftrace_graph_notrace=", set_graph_notrace_function);
|
||||
@@ -6569,8 +6569,8 @@ static int ftrace_get_trampoline_kallsym(unsigned int symnum,
|
||||
continue;
|
||||
*value = op->trampoline;
|
||||
*type = 't';
|
||||
strlcpy(name, FTRACE_TRAMPOLINE_SYM, KSYM_NAME_LEN);
|
||||
strlcpy(module_name, FTRACE_TRAMPOLINE_MOD, MODULE_NAME_LEN);
|
||||
strscpy(name, FTRACE_TRAMPOLINE_SYM, KSYM_NAME_LEN);
|
||||
strscpy(module_name, FTRACE_TRAMPOLINE_MOD, MODULE_NAME_LEN);
|
||||
*exported = 0;
|
||||
return 0;
|
||||
}
|
||||
@@ -6933,7 +6933,7 @@ ftrace_func_address_lookup(struct ftrace_mod_map *mod_map,
|
||||
if (off)
|
||||
*off = addr - found_func->ip;
|
||||
if (sym)
|
||||
strlcpy(sym, found_func->name, KSYM_NAME_LEN);
|
||||
strscpy(sym, found_func->name, KSYM_NAME_LEN);
|
||||
|
||||
return found_func->name;
|
||||
}
|
||||
@@ -6987,8 +6987,8 @@ int ftrace_mod_get_kallsym(unsigned int symnum, unsigned long *value,
|
||||
|
||||
*value = mod_func->ip;
|
||||
*type = 'T';
|
||||
strlcpy(name, mod_func->name, KSYM_NAME_LEN);
|
||||
strlcpy(module_name, mod_map->mod->name, MODULE_NAME_LEN);
|
||||
strscpy(name, mod_func->name, KSYM_NAME_LEN);
|
||||
strscpy(module_name, mod_map->mod->name, MODULE_NAME_LEN);
|
||||
*exported = 1;
|
||||
preempt_enable();
|
||||
return 0;
|
||||
|
@@ -199,7 +199,7 @@ static int boot_snapshot_index;
|
||||
|
||||
static int __init set_cmdline_ftrace(char *str)
|
||||
{
|
||||
strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
|
||||
strscpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
|
||||
default_bootup_tracer = bootup_tracer_buf;
|
||||
/* We are using ftrace early, expand it */
|
||||
ring_buffer_expanded = true;
|
||||
@@ -284,7 +284,7 @@ static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
|
||||
|
||||
static int __init set_trace_boot_options(char *str)
|
||||
{
|
||||
strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
|
||||
strscpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
|
||||
return 1;
|
||||
}
|
||||
__setup("trace_options=", set_trace_boot_options);
|
||||
@@ -294,7 +294,7 @@ static char *trace_boot_clock __initdata;
|
||||
|
||||
static int __init set_trace_boot_clock(char *str)
|
||||
{
|
||||
strlcpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE);
|
||||
strscpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE);
|
||||
trace_boot_clock = trace_boot_clock_buf;
|
||||
return 1;
|
||||
}
|
||||
@@ -2546,7 +2546,7 @@ static void __trace_find_cmdline(int pid, char comm[])
|
||||
if (map != NO_CMDLINE_MAP) {
|
||||
tpid = savedcmd->map_cmdline_to_pid[map];
|
||||
if (tpid == pid) {
|
||||
strlcpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN);
|
||||
strscpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@@ -2833,7 +2833,7 @@ static __init int setup_trace_triggers(char *str)
|
||||
char *buf;
|
||||
int i;
|
||||
|
||||
strlcpy(bootup_trigger_buf, str, COMMAND_LINE_SIZE);
|
||||
strscpy(bootup_trigger_buf, str, COMMAND_LINE_SIZE);
|
||||
ring_buffer_expanded = true;
|
||||
disable_tracing_selftest("running event triggers");
|
||||
|
||||
@@ -3623,7 +3623,7 @@ static char bootup_event_buf[COMMAND_LINE_SIZE] __initdata;
|
||||
|
||||
static __init int setup_trace_event(char *str)
|
||||
{
|
||||
strlcpy(bootup_event_buf, str, COMMAND_LINE_SIZE);
|
||||
strscpy(bootup_event_buf, str, COMMAND_LINE_SIZE);
|
||||
ring_buffer_expanded = true;
|
||||
disable_tracing_selftest("running event tracing");
|
||||
|
||||
|
@@ -217,7 +217,7 @@ static int parse_entry(char *str, struct trace_event_call *call, void **pentry)
|
||||
char *addr = (char *)(unsigned long) val;
|
||||
|
||||
if (field->filter_type == FILTER_STATIC_STRING) {
|
||||
strlcpy(entry + field->offset, addr, field->size);
|
||||
strscpy(entry + field->offset, addr, field->size);
|
||||
} else if (field->filter_type == FILTER_DYN_STRING ||
|
||||
field->filter_type == FILTER_RDYN_STRING) {
|
||||
int str_len = strlen(addr) + 1;
|
||||
@@ -232,7 +232,7 @@ static int parse_entry(char *str, struct trace_event_call *call, void **pentry)
|
||||
}
|
||||
entry = *pentry;
|
||||
|
||||
strlcpy(entry + (entry_size - str_len), addr, str_len);
|
||||
strscpy(entry + (entry_size - str_len), addr, str_len);
|
||||
str_item = (u32 *)(entry + field->offset);
|
||||
if (field->filter_type == FILTER_RDYN_STRING)
|
||||
str_loc -= field->offset + field->size;
|
||||
|
@@ -30,7 +30,7 @@ static char kprobe_boot_events_buf[COMMAND_LINE_SIZE] __initdata;
|
||||
|
||||
static int __init set_kprobe_boot_events(char *str)
|
||||
{
|
||||
strlcpy(kprobe_boot_events_buf, str, COMMAND_LINE_SIZE);
|
||||
strscpy(kprobe_boot_events_buf, str, COMMAND_LINE_SIZE);
|
||||
disable_tracing_selftest("running kprobe events");
|
||||
|
||||
return 1;
|
||||
|
@@ -254,7 +254,7 @@ int traceprobe_parse_event_name(const char **pevent, const char **pgroup,
|
||||
trace_probe_log_err(offset, GROUP_TOO_LONG);
|
||||
return -EINVAL;
|
||||
}
|
||||
strlcpy(buf, event, slash - event + 1);
|
||||
strscpy(buf, event, slash - event + 1);
|
||||
if (!is_good_system_name(buf)) {
|
||||
trace_probe_log_err(offset, BAD_GROUP_NAME);
|
||||
return -EINVAL;
|
||||
|
Reference in New Issue
Block a user