Page MenuHomeFreeBSD

boottrace(1): small wrapper utility
ClosedPublic

Authored by mhorne on Sep 13 2021, 3:17 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Mar 27, 6:33 AM
Unknown Object (File)
Wed, Mar 20, 3:21 PM
Unknown Object (File)
Feb 24 2024, 2:33 PM
Unknown Object (File)
Feb 12 2024, 4:50 AM
Unknown Object (File)
Feb 12 2024, 4:49 AM
Unknown Object (File)
Feb 12 2024, 4:49 AM
Unknown Object (File)
Feb 12 2024, 4:49 AM
Unknown Object (File)
Feb 8 2024, 10:55 AM

Details

Summary

Create a small program that, when invoked, will create start and stop
boottrace entries via sysctl, and execute the desired command. As
opposed to three lines of shell script, this utility allows the resource
usage to be correctly calculated when each sysctl is invoked, since the
execution of the desired program (rc script) will be part of the same
process.

Diff Detail

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

Event Timeline

siderop1_netapp.com added inline comments.
usr.bin/boottrace/boottrace.c
56 ↗(On Diff #95044)

So if this utility is expected to be called by the RC framework, where do we draw the line between boot times and run times? Here you've chosen the RC scripts are run times, but they are a big part of boot, no?

usr.bin/boottrace/boottrace.c
56 ↗(On Diff #95044)

I suppose it is up to interpretation, whether the execution of startup scripts is considered part of "boot" or not. That said, I believe the original patch uses the start of multi-user as the separation point, which is reasonable enough. I will update this patch to use BOOTTRACE() instead.

usr.bin/boottrace/boottrace.c
56 ↗(On Diff #95044)

I am honestly fine either way, just wanted to have the justification documented somewhere.

Log events as BOOTTRACE rather than RUNTTRACE. We will use the switch to multi-user mode as the mark between boot and run-time tracing.

It would be nice to have some sort of man page, even a short one to briefly describe the purpose of this utility.

This revision is now accepted and ready to land.Nov 15 2021, 11:26 AM

It would be nice to have some sort of man page, even a short one to briefly describe the purpose of this utility.

+1

usr.bin/boottrace/boottrace.c
69 ↗(On Diff #96681)

Shouldn't we return the exit status of the executed utility instead of 0?

usr.bin/boottrace/boottrace.c
62 ↗(On Diff #96681)

I guess it's probably rare, but should the error be logged via boottrace as well?

62 ↗(On Diff #96681)

Ah, sorry, I guess it still gets the done trace below; disregard.

69 ↗(On Diff #96681)

If the idea is that we could expect to be able to arbitrarily throw whatever command under boottrace in isolation, I think you're right that it should maintain that kind of transparency.

Return the error status of the child process. Small manpage still to come.

This revision now requires review to proceed.Dec 8 2021, 7:12 PM

Add simple man page for the utility.

I'd also encourage you to run mandoc -Tlint, as you're missing some cross-references.

usr.bin/boottrace/Makefile
2 ↗(On Diff #102168)

You also need to install the manual page.

usr.bin/boottrace/boottrace.1
77–85 ↗(On Diff #102168)

This part of the Examples subheader is too wide for terminals that are 80 characters in width, which needs to be addressed as all manual pages should be viewable in singleuser mode without any framebuffer in use.

I'd also encourage you to run mandoc -Tlint, as you're missing some cross-references.

The only output I see is:

$ mandoc -Tlint usr.bin/boottrace/boottrace.1  
mandoc: usr.bin/boottrace/boottrace.1:33:6: STYLE: referenced manual not found: Xr boottrace 4

That page is in a separate review (D33275). Did you mean something else?

usr.bin/boottrace/Makefile
2 ↗(On Diff #102168)

This is the default value inferred by bsd.prog.mk.

usr.bin/boottrace/boottrace.1
77–85 ↗(On Diff #102168)

I can shrink it further I think, but do you have suggestions on how this is typically handled?

usr.bin/boottrace/Makefile
2 ↗(On Diff #102168)

I seem to recall having had to add MAN= to other utilities before, because the manual page wasn't installed properly everywhere - but I can't off-hand think of any examples (although I suspect it had something to do with man.cgi on the website?)

usr.bin/boottrace/boottrace.1
77–85 ↗(On Diff #102168)

Nothing that's written down - I'd suggest using tmux or screen to create a 80 character wide pane/window and go from there.

I don't believe there's anything in the base system that exceeds 80 characters?

pauamma_gundo.com added inline comments.
usr.bin/boottrace/boottrace.1
15 ↗(On Diff #102168)

"THE REGENTS AND CONTRIBUTORS" of... NetApp? You probably want to run that boilerplate past your own lawyers.

51 ↗(On Diff #102168)
mhorne marked an inline comment as done.

Use a more up-to-date BSD-2-Clause-FreeBSD license text.

Just a couple of minor nits. Otherwise, seems ready to land.

BTW, shouldn't boottrace live in /usr/sbin? I've not checked but I guess you need root to write to the sysctl variables anyway. (Then the manual page has to be moved to section 8).

Also, maybe I am missing something, but shouldn't boottrace actually be installed in /sbin? Otherwise, it may not be available until the /usr partition is mounted.

usr.bin/boottrace/boottrace.1
31 ↗(On Diff #102327)

Idea: should we mention that it's about tracing time/duration here?

71 ↗(On Diff #102327)

If boottrace can only be executed by root, then the prompt should be #.

75 ↗(On Diff #102327)

The word "sysctl" should not be stylized with Va. I am attaching a possible fix.

77–85 ↗(On Diff #102168)

I think that this is not an issue. With less(1) you can scroll horizontally if needed. Also, the boottrace log just happens to have a lot of columns, which naturally makes it long. Some tools like netstat or ps print a a limited, narrow version of their outputs and allow the user to request a detailed, wide version with a special flag. I don't think we need this kind of functionality for boottrace sysctls.

usr.bin/boottrace/boottrace.c
4 ↗(On Diff #102327)

Bump to 2022.

63 ↗(On Diff #102327)

Maybe instead of 1, we could use a higher number like 127 in a similar fashion to timeout(1)? Then there is a lower chance of conflicting exit codes in boottrace and the utility.

This revision is now accepted and ready to land.Feb 18 2022, 9:04 AM
This revision was automatically updated to reflect the committed changes.
In D31929#776771, @0mp wrote:

Just a couple of minor nits. Otherwise, seems ready to land.

BTW, shouldn't boottrace live in /usr/sbin? I've not checked but I guess you need root to write to the sysctl variables anyway. (Then the manual page has to be moved to section 8).

Also, maybe I am missing something, but shouldn't boottrace actually be installed in /sbin? Otherwise, it may not be available until the /usr partition is mounted.

Good point, I renamed it to boottrace(8) and placed it under /usr/sbin in the final commit. There are other tools used by rc.subr that depend on /usr, so I think it is fine to do so here too (it can handle the case where the tool cannot be found).

usr.bin/boottrace/boottrace.c
63 ↗(On Diff #102327)

Seems to be a common enough pattern to do the following:
err(errno == ENOENT ? 127 : 126, "execvp %s", *argv);

So, yes I have done this in the committed version.