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
//! Keyboard Service
//!
//! This service takes care of anything related to keyboard inputs.

#![feature(untagged_unions)]
#![no_std]

// rustc warnings
#![warn(unused)]
#![warn(missing_debug_implementations)]
#![allow(unused_unsafe)]
#![allow(unreachable_code)]
#![allow(dead_code)]
#![cfg_attr(test, allow(unused_imports))]

// rustdoc warnings
#![warn(missing_docs)] // hopefully this will soon become deny(missing_docs)
#![deny(intra_doc_link_resolution_failure)]

#[macro_use]
extern crate sunrise_libuser;

extern crate alloc;

mod ps2;

use alloc::boxed::Box;

use sunrise_libuser::futures::{WaitableManager, WorkQueue};
use sunrise_libuser::ipc::server::port_handler;
use sunrise_libuser::futures_rs::future::FutureObj;
use sunrise_libuser::keyboard::StaticService as _;
use sunrise_libuser::types::*;
use sunrise_libuser::error::{Error, HidError};
use sunrise_libuser::types::{ReadableEvent, WritableEvent};
use sunrise_libuser::syscalls;
use spin::{Once, Mutex};
use sunrise_libuser::keyboard::HidKeyboardState;

use alloc::collections::VecDeque;

kip_header!(HEADER = sunrise_libuser::caps::KipHeader {
    magic: *b"KIP1",
    name: *b"keyboard\0\0\0\0",
    title_id: 0x0200000000001050,
    process_category: sunrise_libuser::caps::ProcessCategory::KernelBuiltin,
    main_thread_priority: 0,
    default_cpu_core: 0,
    flags: 0,
    reserved: 0,
    stack_page_count: 16,
});

capabilities!(CAPABILITIES = Capabilities {
    svcs: [
        sunrise_libuser::syscalls::nr::SleepThread,
        sunrise_libuser::syscalls::nr::ExitProcess,
        sunrise_libuser::syscalls::nr::CloseHandle,
        sunrise_libuser::syscalls::nr::WaitSynchronization,
        sunrise_libuser::syscalls::nr::OutputDebugString,
        sunrise_libuser::syscalls::nr::SetThreadArea,
        sunrise_libuser::syscalls::nr::ClearEvent,

        sunrise_libuser::syscalls::nr::ReplyAndReceiveWithUserBuffer,
        sunrise_libuser::syscalls::nr::AcceptSession,
        sunrise_libuser::syscalls::nr::CreateSession,

        sunrise_libuser::syscalls::nr::ConnectToNamedPort,
        sunrise_libuser::syscalls::nr::CreateInterruptEvent,
        sunrise_libuser::syscalls::nr::SendSyncRequestWithUserBuffer,

        sunrise_libuser::syscalls::nr::CreateEvent,
        sunrise_libuser::syscalls::nr::SignalEvent,

        sunrise_libuser::syscalls::nr::SetHeapSize,

        sunrise_libuser::syscalls::nr::QueryMemory,
    ],
    raw_caps: [
        sunrise_libuser::caps::ioport(0x60),
        sunrise_libuser::caps::ioport(0x64),
        sunrise_libuser::caps::irq_pair(1, 0x3FF)
    ]
});

/// Keyboard handling structure.
struct Keyboard {
    /// The event used to signal changes in the shared memory.
    writable_event: Option<WritableEvent>,

    /// The event returned to the client when requested via IPC.
    readable_event: ReadableEvent,

    /// The queue containing the keyboard state received by the driver.
    keys_queue: VecDeque<HidKeyboardState>
}

impl Keyboard {
    /// Create a new instance of Keyboard.
    pub fn new() -> Result<Self, Error> {
        let (writable_event, readable_event) = syscalls::create_event()?;

        Ok(Keyboard {
            writable_event: Some(writable_event),
            readable_event,
            keys_queue: VecDeque::new()
        })
    }

    /// Get the readable update event of the Keyboard.
    pub fn get_readable_event(&self) -> HandleRef<'static> {
        self.readable_event.0.as_ref_static()
    }

    /// Get the writeable update event of the Keyboard.
    ///
    /// # Note:
    ///
    /// This consume the internal writable_event.q
    pub fn take_writable_event(&mut self) -> Option<WritableEvent> {
        self.writable_event.take()
    }

    /// Handle a PS2 IRQ and push a new key state to the internal queue if needed.
    pub fn handle_ps2_irq(&mut self) -> Option<()> {
        let res = ps2::try_read_keyboard_state();

        if let Some(res) = res {
            self.keys_queue.push_back(res);
        }

        res.map(|_| ())
    }

    /// Get the last key states on the internal queue.
    pub fn read_keyboard_states(&mut self, states: &mut [HidKeyboardState]) -> Result<u64, Error> {
        let mut count = 0;

        if self.keys_queue.is_empty() {
            return Err(HidError::NoKeyboardStateUpdate.into())
        }

        for entry in states.iter_mut() {
            if let Some(state) = self.keys_queue.pop_front() {
                *entry = state;
                count += 1;
            } else {
                break;
            }
        }

        Ok(count)
    }
}

/// Global instance of Keyboard.
static KEYBOARD_INSTANCE: Once<Mutex<Keyboard>> = Once::new();

/// Entry point interface.
#[derive(Default, Debug, Clone)]
struct StaticService;

impl sunrise_libuser::keyboard::StaticService for StaticService {
    fn get_keyboard_event(&mut self, _manager: WorkQueue) -> Result<HandleRef<'static>, Error> {
        Ok(KEYBOARD_INSTANCE.r#try().map(|x| x.lock()).expect("Keyboard instance not initialized").get_readable_event())
    }

    fn read_keyboard_states(&mut self,  _manager: WorkQueue, states: &mut [HidKeyboardState]) -> Result<u64, Error> {
        KEYBOARD_INSTANCE.r#try().map(|x| x.lock()).expect("Keyboard instance not initialized").read_keyboard_states(states)
    }
}

/// Task responsible for signaling KEYBOARD_INSTANCE's event at every keyboard update.
// https://github.com/rust-lang/rust-clippy/issues/3988
// Should remove on next toolchain upgrade.
#[allow(clippy::needless_lifetimes)]
async fn update_keyboard(work_queue: WorkQueue<'_>) {
    let writable_event = KEYBOARD_INSTANCE.r#try().and_then(|x| x.lock().take_writable_event()).expect("Keyboard instance not initialized");
    let irq_event = ps2::get_event();

    loop {
        irq_event.wait_async_cb(work_queue.clone(), move || {
                KEYBOARD_INSTANCE.r#try().map(|x| x.lock()).expect("Keyboard instance not initialized").handle_ps2_irq()
            }).await;
        let _ = writable_event.signal();
        let _ = sunrise_libuser::syscalls::sleep_thread(0);
    }
}

fn main() {
    KEYBOARD_INSTANCE.call_once(|| Mutex::new(Keyboard::new().expect("Cannot initialize Keyboard!")));

    let mut man = WaitableManager::new();
    let handler = port_handler(man.work_queue(), "kbrd:u", StaticService::dispatch).unwrap();

    man.work_queue().spawn(FutureObj::new(Box::new(handler)));

    let keyboard_future = update_keyboard(man.work_queue());

    man.work_queue().spawn(FutureObj::new(Box::new(keyboard_future)));
    man.run();
}