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