Line data Source code
1 : //! A C-Rust shim: defines implementation of C walproposer API, assuming wp
2 : //! callback_data stores Box to some Rust implementation.
3 :
4 : #![allow(dead_code)]
5 :
6 : use std::ffi::CStr;
7 : use std::ffi::CString;
8 :
9 : use crate::bindings::uint32;
10 : use crate::bindings::walproposer_api;
11 : use crate::bindings::NeonWALReadResult;
12 : use crate::bindings::PGAsyncReadResult;
13 : use crate::bindings::PGAsyncWriteResult;
14 : use crate::bindings::Safekeeper;
15 : use crate::bindings::Size;
16 : use crate::bindings::StringInfoData;
17 : use crate::bindings::TimestampTz;
18 : use crate::bindings::WalProposer;
19 : use crate::bindings::WalProposerConnStatusType;
20 : use crate::bindings::WalProposerConnectPollStatusType;
21 : use crate::bindings::WalProposerExecStatusType;
22 : use crate::bindings::WalproposerShmemState;
23 : use crate::bindings::XLogRecPtr;
24 : use crate::walproposer::ApiImpl;
25 : use crate::walproposer::StreamingCallback;
26 : use crate::walproposer::WaitResult;
27 :
28 1650 : extern "C" fn get_shmem_state(wp: *mut WalProposer) -> *mut WalproposerShmemState {
29 1650 : unsafe {
30 1650 : let callback_data = (*(*wp).config).callback_data;
31 1650 : let api = callback_data as *mut Box<dyn ApiImpl>;
32 1650 : (*api).get_shmem_state()
33 1650 : }
34 1650 : }
35 :
36 182 : extern "C-unwind" fn start_streaming(wp: *mut WalProposer, startpos: XLogRecPtr) {
37 182 : unsafe {
38 182 : let callback_data = (*(*wp).config).callback_data;
39 182 : let api = callback_data as *mut Box<dyn ApiImpl>;
40 182 : let callback = StreamingCallback::new(wp);
41 182 : (*api).start_streaming(startpos, &callback);
42 182 : }
43 182 : }
44 :
45 119 : extern "C" fn get_flush_rec_ptr(wp: *mut WalProposer) -> XLogRecPtr {
46 119 : unsafe {
47 119 : let callback_data = (*(*wp).config).callback_data;
48 119 : let api = callback_data as *mut Box<dyn ApiImpl>;
49 119 : (*api).get_flush_rec_ptr()
50 119 : }
51 119 : }
52 :
53 926 : extern "C" fn update_donor(wp: *mut WalProposer, donor: *mut Safekeeper, donor_lsn: XLogRecPtr) {
54 926 : unsafe {
55 926 : let callback_data = (*(*wp).config).callback_data;
56 926 : let api = callback_data as *mut Box<dyn ApiImpl>;
57 926 : (*api).update_donor(&mut (*donor), donor_lsn)
58 926 : }
59 926 : }
60 :
61 312289 : extern "C" fn get_current_timestamp(wp: *mut WalProposer) -> TimestampTz {
62 312289 : unsafe {
63 312289 : let callback_data = (*(*wp).config).callback_data;
64 312289 : let api = callback_data as *mut Box<dyn ApiImpl>;
65 312289 : (*api).get_current_timestamp()
66 312289 : }
67 312289 : }
68 :
69 10573 : extern "C" fn conn_error_message(sk: *mut Safekeeper) -> *mut ::std::os::raw::c_char {
70 10573 : unsafe {
71 10573 : let callback_data = (*(*(*sk).wp).config).callback_data;
72 10573 : let api = callback_data as *mut Box<dyn ApiImpl>;
73 10573 : let msg = (*api).conn_error_message(&mut (*sk));
74 10573 : let msg = CString::new(msg).unwrap();
75 10573 : // TODO: fix leaking error message
76 10573 : msg.into_raw()
77 10573 : }
78 10573 : }
79 :
80 32851 : extern "C" fn conn_status(sk: *mut Safekeeper) -> WalProposerConnStatusType {
81 32851 : unsafe {
82 32851 : let callback_data = (*(*(*sk).wp).config).callback_data;
83 32851 : let api = callback_data as *mut Box<dyn ApiImpl>;
84 32851 : (*api).conn_status(&mut (*sk))
85 32851 : }
86 32851 : }
87 :
88 32851 : extern "C" fn conn_connect_start(sk: *mut Safekeeper) {
89 32851 : unsafe {
90 32851 : let callback_data = (*(*(*sk).wp).config).callback_data;
91 32851 : let api = callback_data as *mut Box<dyn ApiImpl>;
92 32851 : (*api).conn_connect_start(&mut (*sk))
93 32851 : }
94 32851 : }
95 :
96 29514 : extern "C" fn conn_connect_poll(sk: *mut Safekeeper) -> WalProposerConnectPollStatusType {
97 29514 : unsafe {
98 29514 : let callback_data = (*(*(*sk).wp).config).callback_data;
99 29514 : let api = callback_data as *mut Box<dyn ApiImpl>;
100 29514 : (*api).conn_connect_poll(&mut (*sk))
101 29514 : }
102 29514 : }
103 :
104 29514 : extern "C" fn conn_send_query(sk: *mut Safekeeper, query: *mut ::std::os::raw::c_char) -> bool {
105 29514 : let query = unsafe { CStr::from_ptr(query) };
106 29514 : let query = query.to_str().unwrap();
107 29514 :
108 29514 : unsafe {
109 29514 : let callback_data = (*(*(*sk).wp).config).callback_data;
110 29514 : let api = callback_data as *mut Box<dyn ApiImpl>;
111 29514 : (*api).conn_send_query(&mut (*sk), query)
112 29514 : }
113 29514 : }
114 :
115 29514 : extern "C" fn conn_get_query_result(sk: *mut Safekeeper) -> WalProposerExecStatusType {
116 29514 : unsafe {
117 29514 : let callback_data = (*(*(*sk).wp).config).callback_data;
118 29514 : let api = callback_data as *mut Box<dyn ApiImpl>;
119 29514 : (*api).conn_get_query_result(&mut (*sk))
120 29514 : }
121 29514 : }
122 :
123 0 : extern "C" fn conn_flush(sk: *mut Safekeeper) -> ::std::os::raw::c_int {
124 0 : unsafe {
125 0 : let callback_data = (*(*(*sk).wp).config).callback_data;
126 0 : let api = callback_data as *mut Box<dyn ApiImpl>;
127 0 : (*api).conn_flush(&mut (*sk))
128 0 : }
129 0 : }
130 :
131 10841 : extern "C" fn conn_finish(sk: *mut Safekeeper) {
132 10841 : unsafe {
133 10841 : let callback_data = (*(*(*sk).wp).config).callback_data;
134 10841 : let api = callback_data as *mut Box<dyn ApiImpl>;
135 10841 : (*api).conn_finish(&mut (*sk))
136 10841 : }
137 10841 : }
138 :
139 18453 : extern "C" fn conn_async_read(
140 18453 : sk: *mut Safekeeper,
141 18453 : buf: *mut *mut ::std::os::raw::c_char,
142 18453 : amount: *mut ::std::os::raw::c_int,
143 18453 : ) -> PGAsyncReadResult {
144 18453 : unsafe {
145 18453 : let callback_data = (*(*(*sk).wp).config).callback_data;
146 18453 : let api = callback_data as *mut Box<dyn ApiImpl>;
147 18453 :
148 18453 : // This function has guarantee that returned buf will be valid until
149 18453 : // the next call. So we can store a Vec in each Safekeeper and reuse
150 18453 : // it on the next call.
151 18453 : let mut inbuf = take_vec_u8(&mut (*sk).inbuf).unwrap_or_default();
152 18453 : inbuf.clear();
153 18453 :
154 18453 : let result = (*api).conn_async_read(&mut (*sk), &mut inbuf);
155 18453 :
156 18453 : // Put a Vec back to sk->inbuf and return data ptr.
157 18453 : *amount = inbuf.len() as i32;
158 18453 : *buf = store_vec_u8(&mut (*sk).inbuf, inbuf);
159 18453 :
160 18453 : result
161 18453 : }
162 18453 : }
163 :
164 5065 : extern "C" fn conn_async_write(
165 5065 : sk: *mut Safekeeper,
166 5065 : buf: *const ::std::os::raw::c_void,
167 5065 : size: usize,
168 5065 : ) -> PGAsyncWriteResult {
169 5065 : unsafe {
170 5065 : let buf = std::slice::from_raw_parts(buf as *const u8, size);
171 5065 : let callback_data = (*(*(*sk).wp).config).callback_data;
172 5065 : let api = callback_data as *mut Box<dyn ApiImpl>;
173 5065 : (*api).conn_async_write(&mut (*sk), buf)
174 5065 : }
175 5065 : }
176 :
177 33448 : extern "C" fn conn_blocking_write(
178 33448 : sk: *mut Safekeeper,
179 33448 : buf: *const ::std::os::raw::c_void,
180 33448 : size: usize,
181 33448 : ) -> bool {
182 33448 : unsafe {
183 33448 : let buf = std::slice::from_raw_parts(buf as *const u8, size);
184 33448 : let callback_data = (*(*(*sk).wp).config).callback_data;
185 33448 : let api = callback_data as *mut Box<dyn ApiImpl>;
186 33448 : (*api).conn_blocking_write(&mut (*sk), buf)
187 33448 : }
188 33448 : }
189 :
190 820 : extern "C-unwind" fn recovery_download(wp: *mut WalProposer, sk: *mut Safekeeper) -> bool {
191 820 : unsafe {
192 820 : let callback_data = (*(*(*sk).wp).config).callback_data;
193 820 : let api = callback_data as *mut Box<dyn ApiImpl>;
194 820 :
195 820 : // currently `recovery_download` is always called right after election
196 820 : (*api).after_election(&mut (*wp));
197 820 :
198 820 : (*api).recovery_download(&mut (*wp), &mut (*sk))
199 820 : }
200 820 : }
201 :
202 993 : extern "C" fn wal_reader_allocate(sk: *mut Safekeeper) {
203 993 : unsafe {
204 993 : let callback_data = (*(*(*sk).wp).config).callback_data;
205 993 : let api = callback_data as *mut Box<dyn ApiImpl>;
206 993 : (*api).wal_reader_allocate(&mut (*sk));
207 993 : }
208 993 : }
209 :
210 : #[allow(clippy::unnecessary_cast)]
211 1012 : extern "C" fn wal_read(
212 1012 : sk: *mut Safekeeper,
213 1012 : buf: *mut ::std::os::raw::c_char,
214 1012 : startptr: XLogRecPtr,
215 1012 : count: Size,
216 1012 : _errmsg: *mut *mut ::std::os::raw::c_char,
217 1012 : ) -> NeonWALReadResult {
218 1012 : unsafe {
219 1012 : let buf = std::slice::from_raw_parts_mut(buf as *mut u8, count);
220 1012 : let callback_data = (*(*(*sk).wp).config).callback_data;
221 1012 : let api = callback_data as *mut Box<dyn ApiImpl>;
222 1012 : // TODO: errmsg is not forwarded
223 1012 : (*api).wal_read(&mut (*sk), buf, startptr)
224 1012 : }
225 1012 : }
226 :
227 17429 : extern "C" fn wal_reader_events(sk: *mut Safekeeper) -> uint32 {
228 17429 : unsafe {
229 17429 : let callback_data = (*(*(*sk).wp).config).callback_data;
230 17429 : let api = callback_data as *mut Box<dyn ApiImpl>;
231 17429 : (*api).wal_reader_events(&mut (*sk))
232 17429 : }
233 17429 : }
234 :
235 8919 : extern "C" fn init_event_set(wp: *mut WalProposer) {
236 8919 : unsafe {
237 8919 : let callback_data = (*(*wp).config).callback_data;
238 8919 : let api = callback_data as *mut Box<dyn ApiImpl>;
239 8919 : (*api).init_event_set(&mut (*wp));
240 8919 : }
241 8919 : }
242 :
243 65782 : extern "C" fn update_event_set(sk: *mut Safekeeper, events: uint32) {
244 65782 : unsafe {
245 65782 : let callback_data = (*(*(*sk).wp).config).callback_data;
246 65782 : let api = callback_data as *mut Box<dyn ApiImpl>;
247 65782 : (*api).update_event_set(&mut (*sk), events);
248 65782 : }
249 65782 : }
250 :
251 6227 : extern "C" fn active_state_update_event_set(sk: *mut Safekeeper) {
252 6227 : unsafe {
253 6227 : let callback_data = (*(*(*sk).wp).config).callback_data;
254 6227 : let api = callback_data as *mut Box<dyn ApiImpl>;
255 6227 : (*api).active_state_update_event_set(&mut (*sk));
256 6227 : }
257 6227 : }
258 :
259 59028 : extern "C" fn add_safekeeper_event_set(sk: *mut Safekeeper, events: uint32) {
260 59028 : unsafe {
261 59028 : let callback_data = (*(*(*sk).wp).config).callback_data;
262 59028 : let api = callback_data as *mut Box<dyn ApiImpl>;
263 59028 : (*api).add_safekeeper_event_set(&mut (*sk), events);
264 59028 : }
265 59028 : }
266 :
267 37018 : extern "C" fn rm_safekeeper_event_set(sk: *mut Safekeeper) {
268 37018 : unsafe {
269 37018 : let callback_data = (*(*(*sk).wp).config).callback_data;
270 37018 : let api = callback_data as *mut Box<dyn ApiImpl>;
271 37018 : (*api).rm_safekeeper_event_set(&mut (*sk));
272 37018 : }
273 37018 : }
274 :
275 86994 : extern "C-unwind" fn wait_event_set(
276 86994 : wp: *mut WalProposer,
277 86994 : timeout: ::std::os::raw::c_long,
278 86994 : event_sk: *mut *mut Safekeeper,
279 86994 : events: *mut uint32,
280 86994 : ) -> ::std::os::raw::c_int {
281 86994 : unsafe {
282 86994 : let callback_data = (*(*wp).config).callback_data;
283 86994 : let api = callback_data as *mut Box<dyn ApiImpl>;
284 86994 : let result = (*api).wait_event_set(&mut (*wp), timeout);
285 86994 : match result {
286 : WaitResult::Latch => {
287 8896 : *event_sk = std::ptr::null_mut();
288 8896 : *events = crate::bindings::WL_LATCH_SET;
289 8896 : 1
290 : }
291 : WaitResult::Timeout => {
292 2617 : *event_sk = std::ptr::null_mut();
293 2617 : // WaitEventSetWait returns 0 for timeout.
294 2617 : *events = 0;
295 2617 : 0
296 : }
297 75481 : WaitResult::Network(sk, event_mask) => {
298 75481 : *event_sk = sk;
299 75481 : *events = event_mask;
300 75481 : 1
301 : }
302 : }
303 : }
304 86994 : }
305 :
306 8919 : extern "C" fn strong_random(
307 8919 : wp: *mut WalProposer,
308 8919 : buf: *mut ::std::os::raw::c_void,
309 8919 : len: usize,
310 8919 : ) -> bool {
311 8919 : unsafe {
312 8919 : let buf = std::slice::from_raw_parts_mut(buf as *mut u8, len);
313 8919 : let callback_data = (*(*wp).config).callback_data;
314 8919 : let api = callback_data as *mut Box<dyn ApiImpl>;
315 8919 : (*api).strong_random(buf)
316 8919 : }
317 8919 : }
318 :
319 330 : extern "C" fn get_redo_start_lsn(wp: *mut WalProposer) -> XLogRecPtr {
320 330 : unsafe {
321 330 : let callback_data = (*(*wp).config).callback_data;
322 330 : let api = callback_data as *mut Box<dyn ApiImpl>;
323 330 : (*api).get_redo_start_lsn()
324 330 : }
325 330 : }
326 :
327 416 : extern "C-unwind" fn finish_sync_safekeepers(wp: *mut WalProposer, lsn: XLogRecPtr) {
328 416 : unsafe {
329 416 : let callback_data = (*(*wp).config).callback_data;
330 416 : let api = callback_data as *mut Box<dyn ApiImpl>;
331 416 : (*api).finish_sync_safekeepers(lsn)
332 416 : }
333 416 : }
334 :
335 2321 : extern "C" fn process_safekeeper_feedback(wp: *mut WalProposer, sk: *mut Safekeeper) {
336 2321 : unsafe {
337 2321 : let callback_data = (*(*wp).config).callback_data;
338 2321 : let api = callback_data as *mut Box<dyn ApiImpl>;
339 2321 : (*api).process_safekeeper_feedback(&mut (*wp), &mut (*sk));
340 2321 : }
341 2321 : }
342 :
343 90922 : extern "C-unwind" fn log_internal(
344 90922 : wp: *mut WalProposer,
345 90922 : level: ::std::os::raw::c_int,
346 90922 : line: *const ::std::os::raw::c_char,
347 90922 : ) {
348 90922 : unsafe {
349 90922 : let callback_data = (*(*wp).config).callback_data;
350 90922 : let api = callback_data as *mut Box<dyn ApiImpl>;
351 90922 : let line = CStr::from_ptr(line);
352 90922 : let line = line.to_str().unwrap();
353 90922 : (*api).log_internal(&mut (*wp), Level::from(level as u32), line)
354 90922 : }
355 90922 : }
356 :
357 : #[derive(Debug, PartialEq)]
358 : pub enum Level {
359 : Debug5,
360 : Debug4,
361 : Debug3,
362 : Debug2,
363 : Debug1,
364 : Log,
365 : Info,
366 : Notice,
367 : Warning,
368 : Error,
369 : Fatal,
370 : Panic,
371 : WPEvent,
372 : }
373 :
374 : impl Level {
375 90922 : pub fn from(elevel: u32) -> Level {
376 : use crate::bindings::*;
377 :
378 90922 : match elevel {
379 4072 : DEBUG5 => Level::Debug5,
380 0 : DEBUG4 => Level::Debug4,
381 0 : DEBUG3 => Level::Debug3,
382 2321 : DEBUG2 => Level::Debug2,
383 0 : DEBUG1 => Level::Debug1,
384 73524 : LOG => Level::Log,
385 0 : INFO => Level::Info,
386 0 : NOTICE => Level::Notice,
387 10908 : WARNING => Level::Warning,
388 0 : ERROR => Level::Error,
389 92 : FATAL => Level::Fatal,
390 5 : PANIC => Level::Panic,
391 0 : WPEVENT => Level::WPEvent,
392 0 : _ => panic!("unknown log level {}", elevel),
393 : }
394 90922 : }
395 : }
396 :
397 8919 : pub(crate) fn create_api() -> walproposer_api {
398 8919 : walproposer_api {
399 8919 : get_shmem_state: Some(get_shmem_state),
400 8919 : start_streaming: Some(start_streaming),
401 8919 : get_flush_rec_ptr: Some(get_flush_rec_ptr),
402 8919 : update_donor: Some(update_donor),
403 8919 : get_current_timestamp: Some(get_current_timestamp),
404 8919 : conn_error_message: Some(conn_error_message),
405 8919 : conn_status: Some(conn_status),
406 8919 : conn_connect_start: Some(conn_connect_start),
407 8919 : conn_connect_poll: Some(conn_connect_poll),
408 8919 : conn_send_query: Some(conn_send_query),
409 8919 : conn_get_query_result: Some(conn_get_query_result),
410 8919 : conn_flush: Some(conn_flush),
411 8919 : conn_finish: Some(conn_finish),
412 8919 : conn_async_read: Some(conn_async_read),
413 8919 : conn_async_write: Some(conn_async_write),
414 8919 : conn_blocking_write: Some(conn_blocking_write),
415 8919 : recovery_download: Some(recovery_download),
416 8919 : wal_reader_allocate: Some(wal_reader_allocate),
417 8919 : wal_read: Some(wal_read),
418 8919 : wal_reader_events: Some(wal_reader_events),
419 8919 : init_event_set: Some(init_event_set),
420 8919 : update_event_set: Some(update_event_set),
421 8919 : active_state_update_event_set: Some(active_state_update_event_set),
422 8919 : add_safekeeper_event_set: Some(add_safekeeper_event_set),
423 8919 : rm_safekeeper_event_set: Some(rm_safekeeper_event_set),
424 8919 : wait_event_set: Some(wait_event_set),
425 8919 : strong_random: Some(strong_random),
426 8919 : get_redo_start_lsn: Some(get_redo_start_lsn),
427 8919 : finish_sync_safekeepers: Some(finish_sync_safekeepers),
428 8919 : process_safekeeper_feedback: Some(process_safekeeper_feedback),
429 8919 : log_internal: Some(log_internal),
430 8919 : }
431 8919 : }
432 :
433 8919 : pub fn empty_shmem() -> crate::bindings::WalproposerShmemState {
434 8919 : let empty_feedback = crate::bindings::PageserverFeedback {
435 8919 : present: false,
436 8919 : currentClusterSize: 0,
437 8919 : last_received_lsn: 0,
438 8919 : disk_consistent_lsn: 0,
439 8919 : remote_consistent_lsn: 0,
440 8919 : replytime: 0,
441 8919 : shard_number: 0,
442 8919 : };
443 8919 :
444 8919 : crate::bindings::WalproposerShmemState {
445 8919 : propEpochStartLsn: crate::bindings::pg_atomic_uint64 { value: 0 },
446 8919 : donor_name: [0; 64],
447 8919 : donor_conninfo: [0; 1024],
448 8919 : donor_lsn: 0,
449 8919 : mutex: 0,
450 8919 : mineLastElectedTerm: crate::bindings::pg_atomic_uint64 { value: 0 },
451 8919 : backpressureThrottlingTime: crate::bindings::pg_atomic_uint64 { value: 0 },
452 8919 : currentClusterSize: crate::bindings::pg_atomic_uint64 { value: 0 },
453 8919 : shard_ps_feedback: [empty_feedback; 128],
454 8919 : num_shards: 0,
455 8919 : min_ps_feedback: empty_feedback,
456 8919 : }
457 8919 : }
458 :
459 : impl std::fmt::Display for Level {
460 1153 : fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
461 1153 : write!(f, "{:?}", self)
462 1153 : }
463 : }
464 :
465 : /// Take ownership of `Vec<u8>` from StringInfoData.
466 : #[allow(clippy::unnecessary_cast)]
467 45202 : pub(crate) fn take_vec_u8(pg: &mut StringInfoData) -> Option<Vec<u8>> {
468 45202 : if pg.data.is_null() {
469 26754 : return None;
470 18448 : }
471 18448 :
472 18448 : let ptr = pg.data as *mut u8;
473 18448 : let length = pg.len as usize;
474 18448 : let capacity = pg.maxlen as usize;
475 18448 :
476 18448 : pg.data = std::ptr::null_mut();
477 18448 : pg.len = 0;
478 18448 : pg.maxlen = 0;
479 18448 :
480 18448 : unsafe { Some(Vec::from_raw_parts(ptr, length, capacity)) }
481 45202 : }
482 :
483 : /// Store `Vec<u8>` in StringInfoData.
484 18453 : fn store_vec_u8(pg: &mut StringInfoData, vec: Vec<u8>) -> *mut ::std::os::raw::c_char {
485 18453 : let ptr = vec.as_ptr() as *mut ::std::os::raw::c_char;
486 18453 : let length = vec.len();
487 18453 : let capacity = vec.capacity();
488 18453 :
489 18453 : assert!(pg.data.is_null());
490 :
491 18453 : pg.data = ptr;
492 18453 : pg.len = length as i32;
493 18453 : pg.maxlen = capacity as i32;
494 18453 :
495 18453 : std::mem::forget(vec);
496 18453 :
497 18453 : ptr
498 18453 : }
|