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