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