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