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