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