Page MenuHomeFreeBSD

Replace strlen with strnlen.
AbandonedPublic

Authored by araujo on Jan 29 2019, 12:15 PM.
Tags
None
Referenced Files
F122613198: D19016.id53370.diff
Sun, Jul 6, 6:05 PM
Unknown Object (File)
Fri, Jul 4, 3:55 PM
Unknown Object (File)
Fri, Jul 4, 12:21 AM
Unknown Object (File)
Mon, Jun 30, 4:57 AM
Unknown Object (File)
Sat, Jun 28, 1:10 AM
Unknown Object (File)
Mon, Jun 16, 9:21 PM
Unknown Object (File)
May 6 2025, 3:44 AM
Unknown Object (File)
Apr 25 2025, 9:50 PM

Details

Reviewers
rgrimes
Group Reviewers
bhyve
Summary

These are most cosmetic changes.

Obtained from: Intel.

Test Plan

With guests:

  • Windows Server.
  • Linux Fedora.
  • FreeBSD HEAD.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 22265
Build 21466: arc lint + arc unit

Event Timeline

usr.sbin/bhyve/bhyverun.c
236–237

While using strlnlen() here will guard against the insane notion that progname could be longer than PATH_MAX, it won't prevent fprintf from outputting an insane number of characters for progname should it be an unbounded string.

usr.sbin/bhyve/pci_virtio_net.c
891 ↗(On Diff #53370)

there's no way that nstr won't be terminated in the first 80 characters because the snprintf 3 lines above guarantees it. so strnlen() is kinda useless here.

Revert strnlen to strlen on pci_virtio_net as snprintf does the job already.

usr.sbin/bhyve/bhyverun.c
236–237

@imp do you have any suggestion for the fprintf case?

It is basically a cosmetic change, so I have committed it already: r343634.

cem added inline comments.
usr.sbin/bhyve/bhyverun.c
236–237

@araujo the format string "%.*s" can be used to bound the length of string printed. Similar to the "%*s" padding entries that follow, two arguments are passed to printf for this format: int length, and (const) char * string. Only the first length bytes are formatted.

That said, I don't think strnlen() is useful here, so the simpler thing to do is just leave it alone.