4195c7de24
The sim_vid, hba_vid, and dev_name fields of struct ccb_pathinq are
fixed-length strings. AFAICT the only place they're read is in
sbin/camcontrol/camcontrol.c, which assumes they'll be null-terminated.
However, the kernel doesn't null-terminate them. A bunch of copy-pasted code
uses strncpy to write them, and doesn't guarantee null-termination. For at
least 4 drivers (mpr, mps, ciss, and hyperv), the hba_vid field actually
overflows. You can see the result by doing "camcontrol negotiate da0 -v".
This change null-terminates those fields everywhere they're set in the
kernel. It also shortens a few strings to ensure they'll fit within the
16-character field.
PR: 215474
Reported by: Coverity
CID: 1009997 1010000
|
||
---|---|---|
.. | ||
ehci_ps3.c | ||
if_glc.c | ||
if_glcreg.h | ||
mmu_ps3.c | ||
ohci_ps3.c | ||
platform_ps3.c | ||
ps3_syscons.c | ||
ps3-hv-asm.awk | ||
ps3-hv-header.awk | ||
ps3-hvcall.h | ||
ps3-hvcall.master | ||
ps3-hvcall.S | ||
ps3bus.c | ||
ps3bus.h | ||
ps3cdrom.c | ||
ps3disk.c | ||
ps3pic.c |