Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 9b562437 authored by Chuhong Yuan's avatar Chuhong Yuan Committed by Maxime Ripard
Browse files

drm/modes: Fix unterminated strncpy



strncpy(dest, src, strlen(src)) leads to unterminated
dest, which is dangerous.
Fix it by using strscpy.

Fixes: 3aeeb13d ("drm/modes: Support modes names on the command line")
Signed-off-by: default avatarChuhong Yuan <hslester96@gmail.com>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190731020140.3529-1-hslester96@gmail.com
parent 58540594
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1770,7 +1770,9 @@ bool drm_mode_parse_command_line_for_connector(const char *mode_option,
	}

	if (named_mode) {
		strncpy(mode->name, name, mode_end);
		if (mode_end + 1 > DRM_DISPLAY_MODE_LEN)
			return false;
		strscpy(mode->name, name, mode_end + 1);
	} else {
		ret = drm_mode_parse_cmdline_res_mode(name, mode_end,
						      parse_extras,