Page MenuHomeFreeBSD

bhyve: add cmdline option for user defined fw_cfg items
ClosedPublic

Authored by corvink on Feb 1 2023, 11:11 AM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 27 2024, 11:08 AM
Unknown Object (File)
Jan 27 2024, 11:08 AM
Unknown Object (File)
Jan 27 2024, 11:08 AM
Unknown Object (File)
Dec 11 2023, 12:57 AM
Unknown Object (File)
Nov 25 2023, 5:01 AM
Unknown Object (File)
Nov 25 2023, 5:01 AM
Unknown Object (File)
Nov 25 2023, 5:00 AM
Unknown Object (File)
Nov 25 2023, 4:59 AM
Subscribers

Details

Summary

Some guest allow to configure themself by fw_cfg. E.g. Fedora CoreOs can
be provisioned by adding a JSON file as fw_cfg item.

Diff Detail

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

Event Timeline

@markj @jhb Any complains about this? I'd like to get this merged for 14.0.

HEADS UP. I'm going to commit this tomorrow if noone complains.

usr.sbin/bhyve/qemu_fwcfg.c
407
584

Why not just use fstat()?

595

This is missing handling of errors and short reads.

  • fix style issues
  • make use of fstat
  • handle short reads

A few suggestions, but looks ok to me otherwise.

usr.sbin/bhyve/bhyverun.c
1294

EX_USAGE?

usr.sbin/bhyve/qemu_fwcfg.c
604–606
This revision is now accepted and ready to land.May 9 2023, 8:30 PM
usr.sbin/bhyve/qemu_fwcfg.c
567
583

This can be warn() instead of warnx().

585

close() would generally clobber errno. So we either need to save/restore it, or just return -1.

601

Same comment about errno. Also a short read is not necessarily an error.