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