1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
//! Kernel global functions
use core::fmt;
use crate::{
kernel::{
raw, AdjustTimeError, BoostPriorityError, CpuLockError, ExitTaskError, ParkError,
ParkTimeoutError, SleepError, TimeError,
},
time::{Duration, Time},
};
/// Provides access to the global functionalities of a kernel.
///
/// This trait is mostly comprised of the same methods as those of the traits
/// from the [`raw`] module. However, this trait is covered under a stronger
/// semver guarantee as it's an application-facing API. (TODO: Link to the
/// relevant portion of the document)
///
/// This trait intentionally doesn't include [`raw::KernelBase`] as its
/// supertrait. It's incorrect to constrain a system type by this trait. See the
/// examples below.
///
/// # Examples
///
/// ```
/// use r3_core::kernel::{prelude::*, traits, Task, ParkError, BoostPriorityError};
///
/// fn park_while<System>(mut f: impl FnMut() -> bool) -> Result<(), ParkError>
/// where
/// System: traits::KernelBase,
/// {
/// while f() {
/// System::park()?;
/// }
/// Ok(())
/// }
///
/// // note: this function is not unwind-safe
/// fn with_priority_boost<System>(f: impl FnOnce())
/// -> Result<(), BoostPriorityError>
/// where
/// System: traits::KernelBase + traits::KernelBoostPriority,
/// {
/// System::boost_priority()?;
/// f();
/// unsafe { System::unboost_priority() }
/// }
/// ```
///
/// Don't constrain a system type by this trait:
///
/// ```compile_fail,E0277
/// # use r3_core::kernel::{traits, LocalTask};
/// fn current_task<System>() -> LocalTask<System>
/// where
/// System: traits::Kernel,
/// {
/// // ERROR: `System` doesn't implement `traits::KernelBase`
/// LocalTask::current().unwrap()
/// }
/// ```
#[doc = include_str!("../common.md")]
pub trait Kernel: private::Sealed {
type DebugPrinter: fmt::Debug + Send + Sync;
/// Get an object that implements [`Debug`](fmt::Debug) for dumping the
/// current kernel state.
///
/// Note that printing this object might consume a large amount of stack
/// space.
fn debug() -> <Self as Kernel>::DebugPrinter;
/// Activate [CPU Lock].
///
/// Returns [`BadContext`] if CPU Lock is already active.
///
/// [CPU Lock]: crate#system-states
/// [`BadContext`]: CpuLockError::BadContext
fn acquire_cpu_lock() -> Result<(), CpuLockError>;
/// Deactivate [CPU Lock].
///
/// Returns [`BadContext`] if CPU Lock is already inactive.
///
/// [CPU Lock]: crate#system-states
/// [`BadContext`]: CpuLockError::BadContext
///
/// # Safety
///
/// CPU Lock is useful for creating a critical section. By making this
/// method `unsafe`, safe code is prevented from interfering with a critical
/// section.
///
/// Deactivating CPU Lock in a boot context is disallowed.
unsafe fn release_cpu_lock() -> Result<(), CpuLockError>;
/// Return a flag indicating whether CPU Lock is currently active.
fn has_cpu_lock() -> bool;
/// Activate [Priority Boost].
///
/// Returns [`BadContext`] if Priority Boost is already active, the
/// calling context is not a task context, or CPU Lock is active.
///
/// [Priority Boost]: crate#system-states
/// [`BadContext`]: CpuLockError::BadContext
fn boost_priority() -> Result<(), BoostPriorityError>
where
Self: raw::KernelBoostPriority;
/// Deactivate [Priority Boost].
///
/// Returns [`BadContext`] if Priority Boost is already inactive, the
/// calling context is not a task context, or CPU Lock is active.
///
/// [Priority Boost]: crate#system-states
/// [`BadContext`]: CpuLockError::BadContext
///
/// # Safety
///
/// Priority Boost is useful for creating a critical section. By making this
/// method `unsafe`, safe code is prevented from interfering with a critical
/// section.
unsafe fn unboost_priority() -> Result<(), BoostPriorityError>;
/// Return a flag indicating whether [Priority Boost] is currently active.
///
/// [Priority Boost]: crate#system-states
fn is_priority_boost_active() -> bool;
/// Return a flag indicating whether the calling context is a
/// [task context][].
///
/// This is equivalent to [`is_boot_complete`][]`() &&
/// !`[`is_interrupt_context`][]`()`.
///
/// [task context]: crate#contexts
/// [`is_boot_complete`]: Self::is_boot_complete
/// [`is_interrupt_context`]: Self::is_interrupt_context
fn is_task_context() -> bool;
/// Return a flag indicating whether the calling context is an
/// [interrupt context][].
///
/// This is equivalent to [`is_boot_complete`][]`() &&
/// !`[`is_task_context`][]`()`.
///
/// [interrupt context]: crate#contexts
/// [`is_boot_complete`]: Self::is_boot_complete
/// [`is_task_context`]: Self::is_task_context
fn is_interrupt_context() -> bool;
/// Return a flag indicating whether [the boot phase][] is complete, i.e.,
/// all startup hooks completed execution, and the kernel started
/// scheduling tasks and taking interrupts.
///
/// [the boot phase]: crate#threads
fn is_boot_complete() -> bool;
/// Set the current [system time].
///
/// This method *does not change* the relative arrival times of outstanding
/// timed events nor the relative time of the frontier (a concept used in
/// the definition of [`adjust_time`]).
///
/// [system time]: crate#kernel-timing
/// [`adjust_time`]: Self::adjust_time
///
/// This method will return [`TimeError::BadContext`] when called in a
/// non-task context.
///
/// <div class="admonition-follows"></div>
///
/// > **Rationale:** This restriction originates from μITRON4.0. It's
/// > actually unnecessary in `r3_kernel`'s current implementation, but
/// > allows more leeway in a kernel implementation.
fn set_time(time: Time) -> Result<(), TimeError>;
/// Get the current [system time].
///
/// [system time]: crate#kernel-timing
///
/// This method will return [`TimeError::BadContext`] when called in a
/// non-task context.
///
/// <div class="admonition-follows"></div>
///
/// > **Rationale:** This restriction originates from μITRON4.0. It's
/// > actually unnecessary in `r3_kernel`'s current implementation, but
/// > allows more leeway in a kernel implementation.
fn time() -> Result<Time, TimeError>
where
Self: raw::KernelTime;
/// The extent of how overdue a timed event can be made or how far a timed
/// event can be delayed past `Duration::MAX` by a call to [`adjust_time`].
///
/// This must be greater than or equal to one second. It might report a
/// smaller number than the actual limit, for example, because the kernel
/// might use a time representation wider than `Duration`.
///
/// <div class="admonition-follows"></div>
///
/// > **Rationale:** Although it was intended to be an associated constant,
/// > trait bounds could not be applied to an associated constant due to the
/// > lack of compiler support.
///
/// [`adjust_time`]: Self::adjust_time
fn time_user_headroom() -> Duration
where
Self: raw::KernelAdjustTime;
/// Move the current [system time] forward or backward by the specified
/// amount.
///
/// This method *changes* the relative arrival times of outstanding
/// timed events.
///
/// The kernel uses a limited number of bits to represent the arrival times
/// of outstanding timed events. This means that there's some upper bound
/// on how far the system time can be moved away without breaking internal
/// invariants. This method ensures this bound is not violated by the
/// methods described below. This method will return `BadObjectState` if
/// this check fails.
///
/// **Moving Forward (`delta > 0`):** If there are no outstanding time
/// events, adjustment in this direction is unbounded. Otherwise, let
/// `t` be the relative arrival time (in relation to the current time) of
/// the earliest outstanding time event.
/// If `t - delta < -`[`time_user_headroom`] (i.e., if the adjustment would
/// make the event overdue by more than `time_user_headroom`), the check
/// will fail.
///
/// The events made overdue by the call will be processed when the
/// timer driver announces a new tick. It's unspecified whether this happens
/// before or after the call returns.
///
/// **Moving Backward (`delta < 0`):** First, we introduce the concept of
/// **a frontier**. The frontier represents the point of time at which the
/// system time advanced the most. Usually, the frontier is identical to
/// the current system time because the system time keeps moving forward
/// (a). However, adjusting the system time to past makes them temporarily
/// separate from each other (b). In this case, the frontier stays in place
/// until the system time eventually catches up with the frontier and they
/// start moving together again (c).
///
/// <center>
///
#[doc = svgbobdoc::transform!(
/// ```svgbob
/// system time
/// ----*------------------------
/// ^ frontier
///
/// (b)
///
/// --------*--------------------
/// system time ^
/// ----------*------------ ------------*----------------
/// ^ frontier ^
/// -----------------*-----------
/// (a) ^
/// ----------------------*------
/// ^
/// (c)
/// ```
)]
///
/// </center>
///
/// Let `frontier` be the current relative time of the frontier (in relation
/// to the current time). If `frontier - delta > `[`time_user_headroom`]
/// (i.e., if the adjustment would move the frontier too far away), the
/// check will fail.
///
/// [system time]: crate#kernel-timing
///
/// <div class="admonition-follows"></div>
///
/// > **Observation:** Even under ideal circumstances, all timed events are
/// > bound to be overdue by a very small extent because of various factors
/// > such as an intrinsic interrupt latency, insufficient timer resolution,
/// > and uses of CPU Lock. This means the minimum value of `t` in the above
/// > explanation is not `0` but a somewhat smaller value. The consequence
/// > is that `delta` can never reliably be `>= time_user_headroom`.
///
/// <div class="admonition-follows"></div>
///
/// > **Notes:** As noted in its documentation, `time_user_headroom` merely
/// > defines the lower bound of a kernel's tolerance. Some kernel
/// > implementations might be more lenient and accept an adjustment request
/// > even under a circumstance where the above check fails.
///
/// <div class="admonition-follows"></div>
///
/// > **Relation to Other Specifications:** `adj_tim` from
/// > [the TOPPERS 3rd generation kernels]
///
/// [the TOPPERS 3rd generation kernels]: https://www.toppers.jp/index.html
///
/// <div class="admonition-follows"></div>
///
/// > **Rationale:** When moving the system time forward, capping by a
/// > frontier instead of an actual latest arrival time has advantages over
/// > other schemes that involve tracking the latest arrival time:
/// >
/// > - Linear-scanning all outstanding timed events to find the latest
/// > arrival time would take a linear time.
/// >
/// > - Using a double-ended data structure for an event queue, such as a
/// > balanced search tree and double heaps, would increase the runtime
/// > cost of maintaining the structure.
/// >
/// > Also, the gap between the current time and the frontier is completely
/// > in control of the code that calls `adjust_time`, making the behavior
/// > more predictable.
///
/// [`time_user_headroom`]: Self::time_user_headroom
fn adjust_time(delta: Duration) -> Result<(), AdjustTimeError>
where
Self: raw::KernelAdjustTime;
// TODO: get time resolution?
/// Terminate the current task, putting it into the Dormant state.
///
/// The kernel makes an implicit call to this function when a task entry
/// point function returns.
///
/// # Safety
///
/// On a successful call, this function destroys the current task's stack
/// without running any destructors on stack-allocated objects and renders
/// all references pointing to such objects invalid. The caller is
/// responsible for taking this possibility into account and ensuring this
/// doesn't lead to an undefined behavior.
///
unsafe fn exit_task() -> Result<!, ExitTaskError>;
/// Put the current task into the Waiting state until the task's token is
/// made available by [`Task::unpark`][]. The token is initially absent when
/// the task is activated.
///
/// The token will be consumed when this method returns successfully.
///
/// This system service may block. Therefore, calling this method is not
/// allowed in [a non-waitable context] and will return `Err(BadContext)`.
///
/// [`Task::unpark`]: crate::kernel::task::TaskMethods::unpark
/// [a non-waitable context]: crate#contexts
fn park() -> Result<(), ParkError>;
/// [`park`](Self::park) with timeout.
///
/// This system service may block. Therefore, calling this method is not
/// allowed in [a non-waitable context] and will return `Err(BadContext)`.
///
/// [a non-waitable context]: crate#contexts
fn park_timeout(timeout: Duration) -> Result<(), ParkTimeoutError>;
/// Block the current task for the specified duration.
fn sleep(duration: Duration) -> Result<(), SleepError>;
}
mod private {
pub trait Sealed {}
impl<T: super::raw::KernelBase> Sealed for T {}
}
impl<T: raw::KernelBase> Kernel for T {
type DebugPrinter = <Self as raw::KernelBase>::RawDebugPrinter;
#[inline]
fn debug() -> <Self as Kernel>::DebugPrinter {
<T as raw::KernelBase>::raw_debug()
}
#[inline]
fn acquire_cpu_lock() -> Result<(), CpuLockError> {
<T as raw::KernelBase>::raw_acquire_cpu_lock()
}
#[inline]
unsafe fn release_cpu_lock() -> Result<(), CpuLockError> {
// Safety: Just forwarding the calls
unsafe { <T as raw::KernelBase>::raw_release_cpu_lock() }
}
#[inline]
fn has_cpu_lock() -> bool {
<T as raw::KernelBase>::raw_has_cpu_lock()
}
#[inline]
fn boost_priority() -> Result<(), BoostPriorityError>
where
Self: raw::KernelBoostPriority,
{
<T as raw::KernelBoostPriority>::raw_boost_priority()
}
#[inline]
unsafe fn unboost_priority() -> Result<(), BoostPriorityError> {
// Safety: Just forwarding the calls
unsafe { <T as raw::KernelBase>::raw_unboost_priority() }
}
#[inline]
fn is_priority_boost_active() -> bool {
<T as raw::KernelBase>::raw_is_priority_boost_active()
}
#[inline]
fn is_task_context() -> bool {
<T as raw::KernelBase>::raw_is_task_context()
}
#[inline]
fn is_interrupt_context() -> bool {
<T as raw::KernelBase>::raw_is_interrupt_context()
}
#[inline]
fn is_boot_complete() -> bool {
<T as raw::KernelBase>::raw_is_boot_complete()
}
#[inline]
fn set_time(time: Time) -> Result<(), TimeError> {
<T as raw::KernelBase>::raw_set_time(time)
}
#[inline]
fn time() -> Result<Time, TimeError>
where
Self: raw::KernelTime,
{
<T as raw::KernelTime>::raw_time()
}
#[inline]
fn time_user_headroom() -> Duration
where
Self: raw::KernelAdjustTime,
{
<T as raw::KernelAdjustTime>::RAW_TIME_USER_HEADROOM
}
#[inline]
fn adjust_time(delta: Duration) -> Result<(), AdjustTimeError>
where
Self: raw::KernelAdjustTime,
{
<T as raw::KernelAdjustTime>::raw_adjust_time(delta)
}
#[inline]
unsafe fn exit_task() -> Result<!, ExitTaskError> {
// Safety: Just forwarding the calls
unsafe { <T as raw::KernelBase>::raw_exit_task() }
}
#[inline]
fn park() -> Result<(), ParkError> {
<T as raw::KernelBase>::raw_park()
}
#[inline]
fn park_timeout(timeout: Duration) -> Result<(), ParkTimeoutError> {
<T as raw::KernelBase>::raw_park_timeout(timeout)
}
#[inline]
fn sleep(duration: Duration) -> Result<(), SleepError> {
<T as raw::KernelBase>::raw_sleep(duration)
}
}
// ----------------------------------------------------------------------------