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