Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The critical_section implementation is wrong #116

Closed
Tnze opened this issue Oct 16, 2022 · 3 comments · Fixed by #117
Closed

The critical_section implementation is wrong #116

Tnze opened this issue Oct 16, 2022 · 3 comments · Fixed by #117
Assignees

Comments

@Tnze
Copy link

Tnze commented Oct 16, 2022

These two lines is not atomic and will cause problems

let was_active = mstatus::read().mie();
interrupt::disable();
was_active

and could be replaced by a single csr instruction:

let mut mstatus: usize;
asm!("csrrci {}, 0x300, 0b100", out(reg) mstatus);
core::mem::transmute::<_, Mstatus>(mstatus).mie()

which prevents from being interrupted between reading status and disabling interrupt.

@Tnze
Copy link
Author

Tnze commented Oct 16, 2022

To prevent from using core::mem::transmute, we should make the Mstatus.bits public and then:

let mut mstatus: Mstatus;
asm!("csrrci {}, 0x300, 0b100", out(reg) mstatus.bits);
mstatus.mie()

@Tnze Tnze changed the title The critical_section implementation is wrong The critical_section implementation is bad Oct 16, 2022
@Tnze Tnze changed the title The critical_section implementation is bad The critical_section implementation is wrong Oct 16, 2022
@almindor almindor self-assigned this Oct 16, 2022
@almindor
Copy link
Contributor

Good find. Thanks, pushed PR, please review. I've decided to keep the bits pub(crate) only to not break the API

@almindor
Copy link
Contributor

Hmm actually we can't make the Mstatus::bits pub(crate) since it'd allow instantiation which leads to UB.

@Tnze Tnze closed this as completed Oct 18, 2022
bors bot added a commit that referenced this issue Oct 19, 2022
117: fix atomicity of critical section, fixes #116 r=dkhayes117 a=almindor

This changes `SingleHartCriticalSection::acquire` to be done in an atomic way.

Fixes #116

NOTE: no changelog since it fixes a small bug on unreleased change

Co-authored-by: Ales Katona <[email protected]>
romancardenas added a commit that referenced this issue Nov 17, 2023
Temporary fix for OOR branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants