Page MenuHomeFreeBSD

sh(1): make smark a static variable instead of a local in main()
ClosedPublic

Authored by daniel_octaforge.org on Jun 3 2023, 10:44 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 27, 6:44 PM
Unknown Object (File)
Sat, Apr 27, 9:03 AM
Unknown Object (File)
Fri, Apr 26, 4:18 AM
Unknown Object (File)
Mon, Apr 22, 5:20 PM
Unknown Object (File)
Fri, Apr 19, 9:17 AM
Unknown Object (File)
Mar 11 2024, 2:03 PM
Unknown Object (File)
Mar 11 2024, 2:03 PM
Unknown Object (File)
Mar 11 2024, 2:03 PM
Subscribers
None

Details

Summary

We are modifying it after setjmp and then accessing it after the jump, so it cannot be a local.

Diff Detail

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

Event Timeline

I agree with the analysis, but the variables should still be defined inside main (with static) so they cannot be used outside. Some of the other functions in this file have their own smark locals that should not be mixed up with main's.

An alternative fix could be to change setstackmark and popstackmark to return/take the struct stackmark by value and make main's variables volatile. I'm not really sure that's better than just adding the static keyword though.

yes, you are right; i have changed it

This revision is now accepted and ready to land.Jun 4 2023, 8:17 PM