-
Notifications
You must be signed in to change notification settings - Fork 0
/
k-devices.hh
156 lines (126 loc) · 4.39 KB
/
k-devices.hh
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
#ifndef CHICKADEE_K_DEVICES_HH
#define CHICKADEE_K_DEVICES_HH
#include "kernel.hh"
// keyboardstate: keyboard buffer and keyboard interrupts
#define KEY_UP 0xC0
#define KEY_RIGHT 0xC1
#define KEY_DOWN 0xC2
#define KEY_LEFT 0xC3
#define KEY_HOME 0xC4
#define KEY_END 0xC5
#define KEY_PAGEUP 0xC6
#define KEY_PAGEDOWN 0xC7
#define KEY_INSERT 0xC8
#define KEY_DELETE 0xC9
struct keyboardstate {
wait_queue wq_;
spinlock lock_;
char buf_[256];
unsigned pos_ = 0; // next position to read
unsigned len_ = 0; // number of characters in buffer
unsigned eol_ = 0; // position in buffer of most recent \n
enum { boot, input, fail } state_ = boot;
static keyboardstate& get() {
return kbd;
}
void check_invariants() {
assert(pos_ < sizeof(buf_));
assert(len_ <= sizeof(buf_));
assert(eol_ <= len_);
}
// called from proc::exception(); read characters from device
void handle_interrupt();
// consume `n` characters from buffer (0 <= n <= len_)
void consume(size_t n);
private:
static keyboardstate kbd;
keyboardstate() = default;
void maybe_echo(int ch);
};
// consolestate: lock for console access
struct consolestate {
spinlock lock_;
static consolestate& get() {
return console;
}
void cursor();
void cursor(bool show);
private:
static consolestate console;
consolestate() = default;
spinlock cursor_lock_;
std::atomic<bool> cursor_show_ = true;
std::atomic<int> displayed_cpos_ = -1;
};
// memfile: in-memory file system of contiguous files
struct memfile {
static constexpr unsigned namesize = 64;
char name_[namesize]; // name of file
unsigned char* data_; // file data (nullptr if empty)
size_t len_; // length of file data
size_t capacity_; // # bytes available in `data_`
spinlock lock_;
inline memfile();
inline memfile(const char* name, unsigned char* first,
unsigned char* last);
inline memfile(const char* name, const char* data);
// return true iff this `memfile` is not being used
inline bool empty() const;
// set file length to `len`; return 0 or an error like `E_NOSPC` on failure
int set_length(size_t len);
// memfile::initfs[] is the init file system built in to the kernel.
static constexpr unsigned initfs_size = 64;
static memfile initfs[initfs_size];
// look up the memfile named `name`, creating it if it does not exist
// and `create == true`. Return an index into `initfs` or an error code.
static int initfs_lookup(const char* name, bool create = false);
};
inline memfile::memfile()
: name_(""), data_(nullptr), len_(0), capacity_(0) {
}
inline memfile::memfile(const char* name, unsigned char* first,
unsigned char* last)
: data_(first) {
size_t namelen = strlen(name);
ssize_t datalen = reinterpret_cast<uintptr_t>(last)
- reinterpret_cast<uintptr_t>(first);
assert(namelen < namesize && datalen >= 0);
strcpy(name_, name);
len_ = capacity_ = datalen;
}
inline memfile::memfile(const char* name, const char* data)
: data_(reinterpret_cast<unsigned char*>(const_cast<char*>(data))),
len_(strlen(data)), capacity_(0) {
size_t namelen = strlen(name);
assert(namelen < namesize);
strcpy(name_, name);
}
inline bool memfile::empty() const {
return name_[0] == 0;
}
// memfile::loader: loads a `proc` from a `memfile`
struct memfile_loader : public proc_loader {
memfile* memfile_;
inline memfile_loader(memfile* mf, x86_64_pagetable* pt)
: proc_loader(pt), memfile_(mf) {
}
inline memfile_loader(int mf_index, x86_64_pagetable* pt)
: proc_loader(pt) {
assert(mf_index >= 0 && unsigned(mf_index) < memfile::initfs_size);
memfile_ = &memfile::initfs[mf_index];
}
ssize_t get_page(uint8_t** pg, size_t off) override;
void put_page() override;
};
class memfile_vnode: public vnode {
public:
memfile_vnode(memfile* underlying_memfile);
ssize_t read(char* buf, size_t sz, size_t offset);
ssize_t write(char* buf, size_t sz, size_t offset);
ssize_t lseek(off_t offset, uint64_t flag, size_t current_offset);
void close();
private:
memfile* memfile_;
spinlock lock_;
};
#endif