-
Notifications
You must be signed in to change notification settings - Fork 732
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
Building Tock with stable rustc #1654
Comments
Thanks @mcy, this is excellent! |
Indeed. Thanks for your work on this.
If there are any other features which mandate sticking with nightly in the short-to-medium term, I hope we would keep |
Regarding inline assembly, there seems to be some degree of contention on whether inline assembly is even a good idea, in principle (I mostly lean towards the We can answer the question of inline assembly later; plowing through the other bullet points will probably take me a while, and I think the fate of inline assembly is RFC-worthy. |
The tension in the initial pull requests is, I think, getting at a deeper issue than just switching toolchains. Pushing towards using stable represents a change in how Tock views Rust. When we started, just creating any architecture for an OS for embedded systems using Rust that an embedded engineer would understand and find reasonable was a challenge, given the disconnect between how embedded software is traditionally written and Rust's ownership model. But, we thought it was worth seeing if Rust could provide any benefit. As Tock developed, the attitude of "let's see what tools Rust can give us" persisted, and I think that has manifested as a willingness to embrace new features of the language and explore how they can be used, like:
So, the question might be, is now the right time to say we expect to be able to leverage fewer Rust features to our benefit, and are better served with the stable toolchain? Or is Rust continuing to push with new features that will make it easier to develop Tock, and we shouldn't miss out/delay their use for months? Or has Tock progressed enough that its goals on this issue should change? My opinion has been that if we can't use stable anyway (because of assembly), then we shouldn't be in this halfway state where we have to use the nightly toolchain, but then also don't get to try out any of its new features. Now, however, if there is a reasonable roadmap to switching to the stable compiler then it might be worth making the change. But, I'm not sure that March 2020 is the deadline to say that if a feature has not been stabilized by now, then Tock cannot use it. I would rather wait until a switch to stable is imminent. Maybe this could be part of Tock 2.0? |
Thanks for setting up the list and starting cleaning up the low-hanging fruits! My comment would go in the opposite direction, but is also quite hypothetical at this stage. Anyway, since we're discussing unstable features here, what about adding more features in the future? I'm mostly thinking about const generics (which are still highly unstable and not usable for many cases yet, hence the "hypothetical"). However, I see them bringing value in Tock as well. In particular, because dynamic memory allocation is restricted in Tock, many structures are defined as constant or static arrays of a Here are a couple of example where I see them bringing value in Tock
// Self-referential struct
struct SelfRingBuffer<T> {
// Easy to change the size.
array: [T; 16],
// Intrusive ring buffer which should reference &self.array.
ring_buffer: RingBuffer<T>,
}
// Const-generic struct.
struct FixedRingBuffer<T, const N: usize> {
array: [T; N],
head: usize,
tail: usize,
} In many cases, macros could be used to simulate const-generics, but I don't think that'd be clearer (e.g. worse error messages, not the same level of type checking). Of course, this is still highly hypothetical as const-generics are not nearly stable enough, but on the other hand given the value they will bring to the Rust ecosystem as a whole, I don't see them as a feature being abandoned by the community - and they will likely eventually be stabilized (although no idea when). So my question is: what's Tock position regarding adding new unstable features in the future? What bar (current and future stability? value proposition?) should an unstable feature pass to be used in Tock? |
I think historically the answer has been "no bar". If it's in the officially released nightly compiler, it's fair game. We've viewed Tock as a project written in the language "unstable Rust" so anything in the official language (as defined by the compiler that exists for it) is valid. |
I think we should be a bit more nuanced than "whatever is possible today is valid". We regularly update the compiler version (e.g. due to compiler bugs, or to adopt more recent features). I don't think Tock should end up in a situation where:
What should we do? Stay stuck on week 1's compiler? Rollback all the changes to migrate to week 2? This is of course an extreme example, and the Rust compiler has generally been good at avoiding such situations even in nightly (especially given how many projects rely on nightly for the unstable features that it provides). But the more features we use, the riskier it is to end up in such a situation. Another possible problem is if the nightly of day D has a critical bug, because it's nightly. For better or worse, Rust is sometimes slow at stabilizing features, which makes nightly more appealing to many projects. But trimming down to "essential" features only (with a minimal bar for allowed features) can reduce the risks, especially as Tock grows to more stakeholders (more developers, more architectures/boards, more applications). |
I believe that there's a strong argument to be made from a safety standpoint for using stable rust. I believe the unstable features receive significantly less testing than the core stable set, just by virtue of fewer programs ever getting written against them. I also worry about features rotting. Just because it was safe at the original time of implementation to depend on that feature I don't feel comfortable depending on ones who have no clear path to inclusion in rust-stable. If the feature does break the only recourse we have is to fix it after the fact. |
Looking at the one piece of code using this, it seems we could solve the specific case by extending tock-registers to support a dual-type mode for device registers which have different behavior/formats for read and write. |
I'll go on the record saying I've always been against inline assembly. I'd prefer to just write assembly, follow the C ABI, and then import these functions into Rust as C functions. This is what I do in my (non-Tock) embedded systems work. |
There are a few cases, like the |
1670: update rust to 2020-03-06 r=niklasad1 a=bradjc ### Pull Request Overview Update Rust version to fix #1657. The life of running on nightly, I guess :) Probably an argument for #1654 ### Testing Strategy This pull request was tested by travis ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make formatall`. Co-authored-by: Brad Campbell <[email protected]>
Any thoughts on |
@bradjc I believe this has a very high chance of becoming stable in the not far future. |
1661: Handle device register aliases explicitly r=ppannuto a=pfmooney ### Pull Request Overview This addresses the `untagged_unions` portion of #1654. By providing an explicit interface for registers which feature different functions and formats based on if they are written or read, we can avoid using a `union` type while still enjoying type safety for values traversing `reg.write()` or the register read functions. ### Testing Strategy I lack the hardware to confirm that the one effected chip/board still functions as expected. ### TODO or Help Wanted Testing on the board in question would be very helpful. ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make formatall`. Co-authored-by: Patrick Mooney <[email protected]> Co-authored-by: Pat Pannuto <[email protected]>
Any thoughts on |
|
Indeed. However it let's us write code in a way more aligned to what's commonly done with |
I'm using |
The question of stable rust was discussed on the core call today. Replicating the salient points from #1646:
As an example of what I think we should do moving forward, here is the note I included on #1822, which introduces the use of a new unstable feature: // Feature used to opt-in the new `core::Option::contains()` API.
//
// This feature can be removed if needed by manually reimplementing the
// `contains` logic for `Option`.
//
// Tock expects this feature to stabilize in the near future.
// Tracking: https://github.com/rust-lang/rust/issues/62358
#![feature(option_result_contains)] |
1955: kernel: remove panic_info_message feature r=ppannuto a=bradjc ### Pull Request Overview Part of #1654 . Before: ``` [INFO ] Using "/dev/cu.usbserial-c098e5130152 - Hail IoT Module - TockOS". [INFO ] Listening for serial output. Initialization complete. Entering main loop. Kernel panic at kernel/src/process.rs:517: "Restart threshold surpassed!" Kernel version release-1.5-549-g313a5e122 ---| No debug queue found. You can set it with the DebugQueue component. ---| Fault Status |--- Data Access Violation: true Forced Hard Fault: true Faulting Memory Address: 0x00000000 Fault Status Register (CFSR): 0x00000082 ``` After: ``` [INFO ] Waiting for other tockloader to finish before listening [INFO ] Resuming listening... [INFO ] Listening for serial output. Initialization complete. Entering main loop. panicked at 'Restart threshold surpassed!', kernel/src/process.rs:517:13 Kernel version release-1.5-550-g6ad2749fe ---| No debug queue found. You can set it with the DebugQueue component. ---| Fault Status |--- Data Access Violation: true Forced Hard Fault: true Faulting Memory Address: 0x00000000 Fault Status Register (CFSR): 0x00000082 Hard Fault Status Register (HFSR): 0x40000000 ``` ### Testing Strategy This pull request was tested with crash dummy app on hail. ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make prepush`. Co-authored-by: Brad Campbell <[email protected]>
1957: Remove core_intrinsics offset feature r=ppannuto a=bradjc ### Pull Request Overview Part of #1654. Removes the offset intrinsic. ### Testing Strategy travis ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make prepush`. 1959: HIL: remove 'static from sensors r=ppannuto a=bradjc ### Pull Request Overview Part of #1074. Removes 'static from clients in sensors HIL. ### Testing Strategy travis. ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make prepush`. Co-authored-by: Brad Campbell <[email protected]>
Does anyone know how we can support |
(I might be exposing myself here as not understanding something as well as I should). Why does
So why is it necessary that setting deferred calls or servicing them requires atomics? Can we not just use a cell? For anyone curious, #687 seems to have originally added |
2010: Remove OptionalCell's dependency on feature(const_fn) using `impl<T: Copy>` r=bradjc a=jrvanwhy ### Pull Request Overview This pull requests makes `OptionalCell` work with non-`Copy` types. This allows it to work without `#![feature(const_fn)]`. I rewrote a few methods that used `Cell::get` (which requires `T` to be `Copy`) that didn't need `T: Copy`. `tock-cells` still needs `#![feature(const_fn)]` because `TakeCell` contains a mutable reference type, which cannot be initialized in `const` context without `const_fn`. Removing that dependency is possible but would require more `unsafe`, as we would need to replace `TockCell`'s reference with a raw pointer. I have made the same semantic change using different syntax in #2009 ; I'd like input on which approach seems better. This change helps migrate towards stable Rust (#1654). ### Testing Strategy I commented out `#![feature(const_fn)]` and `pub mod take_cell;` in `libraries/tock-cells/src/lib.rs` then ran `cargo check` in `tock-cells` to verify I removed the dependency on `const_fn`. I reverted that change before committing. I also ran `make allcheck` and `make fmt` in the root of this repository. ### TODO or Help Wanted I also sent #2009, which makes the same improvement in an equivalent but syntactically-different manner (using an `impl<T: Copy>` block rather than `where` clauses). I'd like feedback on which approach you find more maintainable. ### Documentation Updated - [X] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [X] Ran `make prepush`. Co-authored-by: Johnathan Van Why <[email protected]>
I updated the top level comment with my understanding of the current state of things. To summarize remaining major blockers:
I think all other remaining features could be removed without too much effort, but deserve to be used for now in the event that they become stabilized before these blockers are resolved. |
Re: #1654 As of Jan 2021, doesn't _seem_ to be making much progress in Rust: rust-lang/rust#29661
2325: Add support for WeAct board based on the stm32f401ccu6 chip r=bradjc a=yusefkarim ### Pull Request Overview This pull request adds support for a [WeAct development board](https://github.com/WeActTC/MiniF4-STM32F4x1) by adding `chips/stm32f401ccu6` and `boards/weact_f401ccu6`. I purchased the board [online here](https://www.banggood.com/STM32F401-Development-Board-STM32F401CCU6-STM32F4-Learning-Board-p-1568897.html?rmmds=search&cur_warehouse=CN) ### Testing Strategy Tested on-board LED (PC13) by toggling it in the kernel. Tested UART (USART2) by connecting pins A3 and A2 to a Serial-to-USB adapter and confirming output. I have added support for this board in Tockloader and can make a pull request there if this gets merged. ### Help Wanted The on-board button (PA0) is not working. It was tested by uploading `examples/buttons` from libtock-c. I have [bare-metal code with the button working](https://github.com/yusefkarim/STM32F4-Projects/blob/master/rust_without_hal/05_external_interrupt/src/main.rs) (using PA0 and EXTI0 for interrupts). It would be appreciated if someone more familiar with setting up EXTI0 and an input pin in Tock could look at `boards/weact_f401ccu6/src/main.rs`. ### Documentation Updated no updates are required. ### Formatting - [x] Ran `make prepush`. 2346: Remove associated_type_defaults feature r=hudson-ayers a=bradjc Re: #1654 This feature doesn't _seem_ to be making much progress in Rust: rust-lang/rust#29661. Also, that was easy. ### Testing Strategy travis ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make prepush`. Co-authored-by: Yusef Karim <[email protected]> Co-authored-by: Brad Campbell <[email protected]>
Update of major blockers to stable Rust:
Everything else is either in |
3082: Remove `#![feature(const_mut_refs)]` r=bradjc a=hudson-ayers ### Pull Request Overview This PR removes the `const_mut_refs` unstable feature and all uses of it. For the most part, this just required making every const constructor that created a `TakeCell` no longer const, as a result of `TakeCell::empty()` no longer being const. Thanks to the updated peripheral instantation approach in #2069 and related PRs, this was very straightforward to perform, as peripherals no longer need to be created in const context. ### Testing Strategy This pull request was tested by compiling, no functional changes are included. ### TODO or Help Wanted N/A ### Documentation Updated - [x] I will update #1654 if/when this is merged. ### Formatting - [x] Ran `make prepush`. Co-authored-by: Hudson Ayers <[email protected]>
3303: Update Nightly Oct 2022 and remove `asm_sym` feature r=lschuermann a=bradjc ### Pull Request Overview With rust-lang/rust#103168 merged, we can remove the `asm_sym` feature in support of #1654. ### Testing Strategy travis ### TODO or Help Wanted n/a ### Documentation Updated - [x] Updated the relevant files in `/docs`, or no updates are required. ### Formatting - [x] Ran `make prepush`. Co-authored-by: Brad Campbell <[email protected]> Co-authored-by: Leon Schuermann <[email protected]>
This issue tracks attempting to build as many Tock libraries as possible with a stable compiler, that is, minimizing the number of
#![feature(...)]
pragmas used inlib.rs
files.Update Feb 2024
Cortex-M crates can now compile on stable!
Nightly Features
asm_sym
feature #3303)asm_sym
. Needed for sym operands in assembly blocks. Tracking Issue for asm_sym rust-lang/rust#93333 . Stabilized upstream on 10/18/22, we just need to update to a newer nightly.asm_const
. Needed for const operands in assembly blocks. Used in RISC-V CSR crate. The CSR crate will likely change with an upcoming change to tock-registers. Tracking Issue for asm_const rust-lang/rust#93332 Stabilise inline_const rust-lang/rust#104087#![feature(naked_functions)]
and compile Cortex-M on stable! #3802)naked_functions
. Used for initial entry point and interrupt handlers. Not clear if there is progress on stabilizing this (Tracking issue for naked fns (RFC #1201) rust-lang/rust#32408). Tracking Issue for RFC #2972: Constrained Naked Functions rust-lang/rust#90957 (comment) Stabilize naked_functions rust-lang/rust#93587target_feature
#3803)#[cfg(target_feature = "v7")]
. This is not a documented feature flag only available on nightly, buttarget_feature
is only set for arm targets on nightly. You can see this by runningrustc --target=thumbv7em-none-eabi --print cfg
on nightly vs. stable.core_intrinsics
. Intrinsics will never be stabilized, and are subject to unannounced changes by rustc's developers. We use three classes of intrinsics:DeferredCall
to not require atomics #3086 )core::intrinsics::atomic_*
, various atomic intrinsics. These will be very difficult to get rid of due to how Rust decides to provideAtomicT
types, and, in the case ofkernel
'sAtomicUsize
will require consultation with an atomics expert. These intrinsics are only used for theDeferredCall
mechanism, and discussion on the Tock core call indicates thatDeferredCall
likely can be rewritten to not require atomics, given that the Tock kernel design guarantees non-reentrancy of all interactions withDeferredCall
. A PR that safely removes the use of atomics in the kernel is welcome.core::intrinsics::offset
, which is just pointer arithmetic. We should be using<*mut T>::offset
, which is guaranteed to have the same effect and the same optimization characteristics.core::intrinsics::sqrtf32
, a square root intrinsic.f32::sqrt
is not present incore
even though it just calls the intrinsic. This is because on many platforms, the intrinsic expands into alibm
call, though not on any platforms Tock is built for. Removing this may require implementing a polyfill in assembly.custom_test_frameworks
. Used to test boards. Tracking issue for eRFC 2318, Custom test frameworks rust-lang/rust#50297-Z build-std=core, compiler_builtins
. Added in use -Zbuild-std=core to build the std library with our optimization settings #2847. Builds a more optimized library, but uses an unstable flag. Doc: https://doc.rust-lang.org/cargo/reference/unstable.html#build-std. Related repo: https://github.com/rust-lang/wg-cargo-std-aware.-Z build-std-features="core/optimize_for_size"
. Added in bump Rust nightly to nightly-2024-05-23 and set optimize_for_size #4002.-Z virtual-function-elimination
. Added in Update Rust nightly version + Expose virtual-function-elimination #3072 . Removes uncalled virtual functions from LTO'ed binaries, but uses an unstable flag as it can sometimes be too aggressive. This is not used by default, and must be specifically requested by setting an environment variable (VFUNC_ELIM=1
).asm
. Assembly is a hard requirement for any kernel, it is possible to move all of it into.S
files instead. Tracking issue forasm!()
: Tracking Issue for inline assembly (asm!
) rust-lang/rust#72016.const_fn_trait_bound
. What used to beconst_fn
has been broken into smaller changes, and we only require one that is still unstable:const
functions with a bound type parameter. The Tock register interface usesconst_fn
extensively, and it is an open question what it would take to forego this. Fortunately, the stabilization PR has been merged, so we should be able to removefeature(const_fn_trait_bound)
at our next toolchain update.#![feature(const_mut_refs)]
#3082)const_mut_refs
. Used in tock-cells and lowrisc chip. Tracking issue for&mut T
in const contexts (const_mut_refs) rust-lang/rust#57349option_result_contains
. Tracking issue forOption::contains
andResult::contains
rust-lang/rust#62358 . We could easily reimplement this. Branch ready: https://github.com/tock/tock/compare/remove-option_result_contains.llvm_asm
. Replaced byasm!()
.try_trait
. Used in the kernel, for tbf parsing. But at some point we stopped using it.associated_type_defaults
. Allows declaring defaults for associated types in trait definitions. We only use it in two places, and in both cases we can remove it just by adding type parameters in a few places that we currently do not (MPUConfig
andComponent::StaticInput
). Only partially implemented in the compiler right now, but seems to be nearing completion? Tracking issue for RFC 2532, "Associated type defaults" rust-lang/rust#29661 .const_in_array_repeat_expressions
. Used to allow for ergonomic components for scheduler initialization. Could be replaced by using recursive macros for array declarations instead, which is @hudson-ayers responsibility if this ever becomes the lone blocker. Tracking issue: Tracking issue for RFC 2203, "Constants in array repeat expressions" rust-lang/rust#49147 . Fixed by remove all uses of unstable const_in_array_repeat_expressions feature #2215lang_items
. The main purpose of this pragma is declaring the global panic handler in ano_std
binary. A mechanism for this has been stabilized, and remove all uses of lang_items unstable feature #1950 should remove all uses of it.in_band_lifetimes
. This is syntax sugar that makes otherwise undeclared lifetimes become defined, by adding lifetime declarations where necessary. In other words, the transformationfn foo(_: &'a T)
->fn foo<'a>(_: &'a T)
. The "placeholder lifetime",'_
, is a stable feature that acts as an in-band lifetime which does not bind a name, and which was originally part ofin_band_lifetimes
. Since the stabilization of'_
, the stabilization ofin_band_lifetimes
has been deprioritized, and is fairly unlikely to happen in its current form.concat_idents
. Used in just one macro that doesn't actually need it. Given that it is basically unusable, Rust is very reluctant to ever stabilize it.crate_visibility_modifier
, aka crate -> pub(crate) #1650)crate_visibility_modifier
. Allowscrate
in item position as sugar forpub(crate)
. Interest in this feature appears to have died down after the 2018 module system shakeup, and provides no value other than saving five characters.ptr_internals
. Allows use ofcore::ptr::Unique
. This is an internal ofBox
that will never be stabilized.core::ptr::NonNull
is a drop-in replacement.exclusive_range_pattern
. Allows use ofa..b
as a pattern. Only used in one place (used incorrectly, too).panic_info_message
. Used in one place bykernel
to dump panic information. Might want to get rid of it, since it seems the API might get tossed out in favor of something else: Tracking issue for PanicInfo::message rust-lang/rust#66745untagged_unions
. Allows putting non-Copy traits inunion
s. Using this is basically asking for weird dtor behavior and general unsoundness. We use it in one place, and can probably just plug the hole with the stableDropManually
API (which is just anuntagged_union
without sharp edges).This work is especially attractive to OpenTitan's use of Tock as a secure embedded operating system. Being able to build code without exercising unstable (and, as such, untested and unproven) code paths in the compiler increases confidence in the language-level and hardware-level guarantees provided by Tock. This is not to mention that unstable features are not guaranteed to be stabilized, or to remain in the compiler indefinitely.
This work is divided up according to pragmas still present after #1643, which every pragma that could be removed without causing build failures. Below is a list of all pragmas Tock still uses.
Please comment additional pragmas below as they are used, or edit this list to include them if you have write access.
The text was updated successfully, but these errors were encountered: