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