Page MenuHomeFreeBSD

LinuxKPI: Implement strscpy
ClosedPublic

Authored by wulf on Jul 2 2021, 11:41 PM.
Tags
None
Referenced Files
F137664224: D31005.id91753.diff
Mon, Nov 24, 8:16 PM
Unknown Object (File)
Fri, Nov 21, 7:01 PM
Unknown Object (File)
Tue, Nov 11, 11:30 PM
Unknown Object (File)
Fri, Nov 7, 3:34 AM
Unknown Object (File)
Oct 23 2025, 4:40 PM
Unknown Object (File)
Oct 13 2025, 4:57 PM
Unknown Object (File)
Oct 13 2025, 4:57 PM
Unknown Object (File)
Oct 13 2025, 4:57 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
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 40247
Build 37136: arc lint + arc unit