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