Page MenuHomeFreeBSD

LinuxKPI: Implement strscpy
ClosedPublic

Authored by wulf on Jul 2 2021, 11:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 8, 4:22 AM
Unknown Object (File)
Thu, Mar 6, 3:09 PM
Unknown Object (File)
Feb 25 2025, 12:18 AM
Unknown Object (File)
Feb 23 2025, 7:30 AM
Unknown Object (File)
Feb 21 2025, 2:21 PM
Unknown Object (File)
Feb 19 2025, 9:56 AM
Unknown Object (File)
Feb 14 2025, 4:17 PM
Unknown Object (File)
Jan 31 2025, 2:06 PM

Details

Summary

strscpy copies the src string, or as much of it as fits, into the dst
buffer. The dst buffer is always NUL terminated, unless it's zero-sized.
strscpy returns the number of characters copied (not including the
trailing NUL) or -E2BIG if len is 0 or src was truncated.

Currently drm-kmod replaces strscpy with strncpy that is not quite
correct as strncpy does not NUL-terminate overflown strings and returns
different values on exit.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable