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
use crate::scheduler;
use alloc::vec::Vec;
use alloc::sync::{Arc, Weak};
use crate::sync::SpinLock;
use crate::error::UserspaceError;
use crate::event::{self, Waitable};
use crate::process::ThreadStruct;
use core::sync::atomic::{AtomicUsize, Ordering};
use crate::ipc::session::{self, ClientSession, ServerSession};
#[derive(Debug)]
struct Port {
incoming_connections: SpinLock<Vec<Arc<IncomingConnection>>>,
accepters: SpinLock<Vec<Weak<ThreadStruct>>>,
servercount: AtomicUsize,
}
#[derive(Debug, Clone)]
pub struct ClientPort(Arc<Port>);
#[derive(Debug)]
pub struct ServerPort(Arc<Port>);
impl Port {
fn client(this: Arc<Self>) -> ClientPort {
ClientPort(this)
}
fn server(this: Arc<Self>) -> ServerPort {
this.servercount.fetch_add(1, Ordering::SeqCst);
ServerPort(this)
}
}
pub fn new(_max_sessions: u32) -> (ServerPort, ClientPort) {
let port = Arc::new(Port {
servercount: AtomicUsize::new(0),
incoming_connections: SpinLock::new(Vec::new()),
accepters: SpinLock::new(Vec::new())
});
(Port::server(port.clone()), Port::client(port))
}
impl Waitable for ServerPort {
fn is_signaled(&self) -> bool {
!self.0.incoming_connections.lock().is_empty()
}
fn register(&self) {
let mut accepters = self.0.accepters.lock();
let curproc = scheduler::get_current_thread();
if !accepters.iter().filter_map(|v| v.upgrade()).any(|v| Arc::ptr_eq(&curproc, &v)) {
accepters.push(Arc::downgrade(&curproc));
}
}
}
impl Clone for ServerPort {
fn clone(&self) -> Self {
assert!(self.0.servercount.fetch_add(1, Ordering::SeqCst) != usize::max_value(), "Overflow when incrementing servercount");
ServerPort(self.0.clone())
}
}
impl Drop for ServerPort {
fn drop(&mut self) {
let count = self.0.servercount.fetch_sub(1, Ordering::SeqCst);
assert!(count != 0, "Overflow when decrementing servercount");
if count == 1 {
debug!("Last ServerPort dropped");
let mut internal = self.0.incoming_connections.lock();
for request in internal.drain(..) {
scheduler::add_to_schedule_queue(request.creator.clone());
}
}
}
}
#[derive(Debug)]
struct IncomingConnection {
session: SpinLock<Option<ClientSession>>,
creator: Arc<ThreadStruct>
}
impl ServerPort {
pub fn accept(&self) -> Result<ServerSession, UserspaceError> {
loop {
let _ = event::wait(Some(self as &dyn Waitable))?;
if let Some(incoming) = self.0.incoming_connections.lock().pop() {
let mut lock = incoming.session.lock();
assert!(lock.is_none(), "Handled connection request still in incoming conn queue.");
let (server, client) = session::new();
*lock = Some(client);
debug!("Resuming {}", incoming.creator.process.name);
scheduler::add_to_schedule_queue(incoming.creator.clone());
return Ok(server);
}
}
}
}
impl ClientPort {
pub fn connect(&self) -> Result<ClientSession, UserspaceError> {
let incoming = Arc::new(IncomingConnection {
session: SpinLock::new(None),
creator: scheduler::get_current_thread()
});
let mut guard = incoming.session.lock();
self.0.incoming_connections.lock().push(incoming.clone());
let session = loop {
if self.0.servercount.load(Ordering::SeqCst) == 0 {
return Err(UserspaceError::PortRemoteDead);
}
while let Some(item) = self.0.accepters.lock().pop() {
if let Some(thread) = item.upgrade() {
scheduler::add_to_schedule_queue(thread);
break;
}
}
guard = scheduler::unschedule(&incoming.session, guard)?;
if let Some(s) = guard.take() {
break s;
}
};
Ok(session)
}
}