LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - walproposer_api.rs (source / functions) Coverage Total Hit
Test: 792183ae0ef4f1f8b22e9ac7e8748740ab73f873.info Lines: 95.5 % 486 464
Test Date: 2024-06-26 01:04:33 Functions: 99.3 % 138 137

            Line data    Source code
       1              : use std::{
       2              :     cell::{RefCell, RefMut, UnsafeCell},
       3              :     ffi::CStr,
       4              :     sync::Arc,
       5              : };
       6              : 
       7              : use bytes::Bytes;
       8              : use desim::{
       9              :     executor::{self, PollSome},
      10              :     network::TCP,
      11              :     node_os::NodeOs,
      12              :     proto::{AnyMessage, NetEvent, NodeEvent},
      13              :     world::NodeId,
      14              : };
      15              : use tracing::debug;
      16              : use utils::lsn::Lsn;
      17              : use walproposer::{
      18              :     api_bindings::Level,
      19              :     bindings::{
      20              :         NeonWALReadResult, SafekeeperStateDesiredEvents, WL_SOCKET_READABLE, WL_SOCKET_WRITEABLE,
      21              :     },
      22              :     walproposer::{ApiImpl, Config},
      23              : };
      24              : 
      25              : use super::walproposer_disk::DiskWalProposer;
      26              : 
      27              : /// Special state for each wp->sk connection.
      28              : struct SafekeeperConn {
      29              :     host: String,
      30              :     port: String,
      31              :     node_id: NodeId,
      32              :     // socket is Some(..) equals to connection is established
      33              :     socket: Option<TCP>,
      34              :     // connection is in progress
      35              :     is_connecting: bool,
      36              :     // START_WAL_PUSH is in progress
      37              :     is_start_wal_push: bool,
      38              :     // pointer to Safekeeper in walproposer for callbacks
      39              :     raw_ptr: *mut walproposer::bindings::Safekeeper,
      40              : }
      41              : 
      42              : impl SafekeeperConn {
      43       216954 :     pub fn new(host: String, port: String) -> Self {
      44       216954 :         // port number is the same as NodeId
      45       216954 :         let port_num = port.parse::<u32>().unwrap();
      46       216954 :         Self {
      47       216954 :             host,
      48       216954 :             port,
      49       216954 :             node_id: port_num,
      50       216954 :             socket: None,
      51       216954 :             is_connecting: false,
      52       216954 :             is_start_wal_push: false,
      53       216954 :             raw_ptr: std::ptr::null_mut(),
      54       216954 :         }
      55       216954 :     }
      56              : }
      57              : 
      58              : /// Simulation version of a postgres WaitEventSet. At pos 0 there is always
      59              : /// a special NodeEvents channel, which is used as a latch.
      60              : struct EventSet {
      61              :     os: NodeOs,
      62              :     // all pollable channels, 0 is always NodeEvent channel
      63              :     chans: Vec<Box<dyn PollSome>>,
      64              :     // 0 is always nullptr
      65              :     sk_ptrs: Vec<*mut walproposer::bindings::Safekeeper>,
      66              :     // event mask for each channel
      67              :     masks: Vec<u32>,
      68              : }
      69              : 
      70              : impl EventSet {
      71        72318 :     pub fn new(os: NodeOs) -> Self {
      72        72318 :         let node_events = os.node_events();
      73        72318 :         Self {
      74        72318 :             os,
      75        72318 :             chans: vec![Box::new(node_events)],
      76        72318 :             sk_ptrs: vec![std::ptr::null_mut()],
      77        72318 :             masks: vec![WL_SOCKET_READABLE],
      78        72318 :         }
      79        72318 :     }
      80              : 
      81              :     /// Leaves all readable channels at the beginning of the array.
      82       214889 :     fn sort_readable(&mut self) -> usize {
      83       214889 :         let mut cnt = 1;
      84       510475 :         for i in 1..self.chans.len() {
      85       510475 :             if self.masks[i] & WL_SOCKET_READABLE != 0 {
      86       510475 :                 self.chans.swap(i, cnt);
      87       510475 :                 self.sk_ptrs.swap(i, cnt);
      88       510475 :                 self.masks.swap(i, cnt);
      89       510475 :                 cnt += 1;
      90       510475 :             }
      91              :         }
      92       214889 :         cnt
      93       214889 :     }
      94              : 
      95       527907 :     fn update_event_set(&mut self, conn: &SafekeeperConn, event_mask: u32) {
      96       527907 :         let index = self
      97       527907 :             .sk_ptrs
      98       527907 :             .iter()
      99      1994837 :             .position(|&ptr| ptr == conn.raw_ptr)
     100       527907 :             .expect("safekeeper should exist in event set");
     101       527907 :         self.masks[index] = event_mask;
     102       527907 :     }
     103              : 
     104       479644 :     fn add_safekeeper(&mut self, sk: &SafekeeperConn, event_mask: u32) {
     105      1160681 :         for ptr in self.sk_ptrs.iter() {
     106      1160681 :             assert!(*ptr != sk.raw_ptr);
     107              :         }
     108              : 
     109       479644 :         self.chans.push(Box::new(
     110       479644 :             sk.socket
     111       479644 :                 .as_ref()
     112       479644 :                 .expect("socket should not be closed")
     113       479644 :                 .recv_chan(),
     114       479644 :         ));
     115       479644 :         self.sk_ptrs.push(sk.raw_ptr);
     116       479644 :         self.masks.push(event_mask);
     117       479644 :     }
     118              : 
     119       300679 :     fn remove_safekeeper(&mut self, sk: &SafekeeperConn) {
     120       639713 :         let index = self.sk_ptrs.iter().position(|&ptr| ptr == sk.raw_ptr);
     121       300679 :         if index.is_none() {
     122           43 :             debug!("remove_safekeeper: sk={:?} not found", sk.raw_ptr);
     123           43 :             return;
     124       300636 :         }
     125       300636 :         let index = index.unwrap();
     126       300636 : 
     127       300636 :         self.chans.remove(index);
     128       300636 :         self.sk_ptrs.remove(index);
     129       300636 :         self.masks.remove(index);
     130       300636 : 
     131       300636 :         // to simulate the actual behaviour
     132       300636 :         self.refresh_event_set();
     133       300679 :     }
     134              : 
     135              :     /// Updates all masks to match the result of a SafekeeperStateDesiredEvents.
     136       338131 :     fn refresh_event_set(&mut self) {
     137       953612 :         for (i, mask) in self.masks.iter_mut().enumerate() {
     138       953612 :             if i == 0 {
     139       338131 :                 continue;
     140       615481 :             }
     141       615481 : 
     142       615481 :             let mut mask_sk: u32 = 0;
     143       615481 :             let mut mask_nwr: u32 = 0;
     144       615481 :             unsafe { SafekeeperStateDesiredEvents(self.sk_ptrs[i], &mut mask_sk, &mut mask_nwr) };
     145       615481 : 
     146       615481 :             if mask_sk != *mask {
     147            0 :                 debug!(
     148            0 :                     "refresh_event_set: sk={:?}, old_mask={:#b}, new_mask={:#b}",
     149            0 :                     self.sk_ptrs[i], *mask, mask_sk
     150              :                 );
     151            0 :                 *mask = mask_sk;
     152       615481 :             }
     153              :         }
     154       338131 :     }
     155              : 
     156              :     /// Wait for events on all channels.
     157       214889 :     fn wait(&mut self, timeout_millis: i64) -> walproposer::walproposer::WaitResult {
     158              :         // all channels are always writeable
     159       725364 :         for (i, mask) in self.masks.iter().enumerate() {
     160       725364 :             if *mask & WL_SOCKET_WRITEABLE != 0 {
     161            0 :                 return walproposer::walproposer::WaitResult::Network(
     162            0 :                     self.sk_ptrs[i],
     163            0 :                     WL_SOCKET_WRITEABLE,
     164            0 :                 );
     165       725364 :             }
     166              :         }
     167              : 
     168       214889 :         let cnt = self.sort_readable();
     169       214889 : 
     170       214889 :         let slice = &self.chans[0..cnt];
     171       214889 :         match executor::epoll_chans(slice, timeout_millis) {
     172        90648 :             None => walproposer::walproposer::WaitResult::Timeout,
     173              :             Some(0) => {
     174         2978 :                 let msg = self.os.node_events().must_recv();
     175         2978 :                 match msg {
     176         2978 :                     NodeEvent::Internal(AnyMessage::Just32(0)) => {
     177         2978 :                         // got a notification about new WAL available
     178         2978 :                     }
     179            0 :                     NodeEvent::Internal(_) => unreachable!(),
     180            0 :                     NodeEvent::Accept(_) => unreachable!(),
     181              :                 }
     182         2978 :                 walproposer::walproposer::WaitResult::Latch
     183              :             }
     184       121263 :             Some(index) => walproposer::walproposer::WaitResult::Network(
     185       121263 :                 self.sk_ptrs[index],
     186       121263 :                 WL_SOCKET_READABLE,
     187       121263 :             ),
     188              :         }
     189       214889 :     }
     190              : }
     191              : 
     192              : /// This struct handles all calls from walproposer into walproposer_api.
     193              : pub struct SimulationApi {
     194              :     os: NodeOs,
     195              :     safekeepers: RefCell<Vec<SafekeeperConn>>,
     196              :     disk: Arc<DiskWalProposer>,
     197              :     redo_start_lsn: Option<Lsn>,
     198              :     last_logged_commit_lsn: u64,
     199              :     shmem: UnsafeCell<walproposer::bindings::WalproposerShmemState>,
     200              :     config: Config,
     201              :     event_set: RefCell<Option<EventSet>>,
     202              : }
     203              : 
     204              : pub struct Args {
     205              :     pub os: NodeOs,
     206              :     pub config: Config,
     207              :     pub disk: Arc<DiskWalProposer>,
     208              :     pub redo_start_lsn: Option<Lsn>,
     209              : }
     210              : 
     211              : impl SimulationApi {
     212        72318 :     pub fn new(args: Args) -> Self {
     213        72318 :         // initialize connection state for each safekeeper
     214        72318 :         let sk_conns = args
     215        72318 :             .config
     216        72318 :             .safekeepers_list
     217        72318 :             .iter()
     218       216954 :             .map(|s| {
     219       216954 :                 SafekeeperConn::new(
     220       216954 :                     s.split(':').next().unwrap().to_string(),
     221       216954 :                     s.split(':').nth(1).unwrap().to_string(),
     222       216954 :                 )
     223       216954 :             })
     224        72318 :             .collect::<Vec<_>>();
     225        72318 : 
     226        72318 :         Self {
     227        72318 :             os: args.os,
     228        72318 :             safekeepers: RefCell::new(sk_conns),
     229        72318 :             disk: args.disk,
     230        72318 :             redo_start_lsn: args.redo_start_lsn,
     231        72318 :             last_logged_commit_lsn: 0,
     232        72318 :             shmem: UnsafeCell::new(walproposer::api_bindings::empty_shmem()),
     233        72318 :             config: args.config,
     234        72318 :             event_set: RefCell::new(None),
     235        72318 :         }
     236        72318 :     }
     237              : 
     238              :     /// Get SafekeeperConn for the given Safekeeper.
     239      2336791 :     fn get_conn(&self, sk: &mut walproposer::bindings::Safekeeper) -> RefMut<'_, SafekeeperConn> {
     240      2336791 :         let sk_port = unsafe { CStr::from_ptr(sk.port).to_str().unwrap() };
     241      2336791 :         let state = self.safekeepers.borrow_mut();
     242      2336791 :         RefMut::map(state, |v| {
     243      2336791 :             v.iter_mut()
     244      4670638 :                 .find(|conn| conn.port == sk_port)
     245      2336791 :                 .expect("safekeeper conn not found by port")
     246      2336791 :         })
     247      2336791 :     }
     248              : }
     249              : 
     250              : impl ApiImpl for SimulationApi {
     251      2492586 :     fn get_current_timestamp(&self) -> i64 {
     252      2492586 :         debug!("get_current_timestamp");
     253              :         // PG TimestampTZ is microseconds, but simulation unit is assumed to be
     254              :         // milliseconds, so add 10^3
     255      2492586 :         self.os.now() as i64 * 1000
     256      2492586 :     }
     257              : 
     258         6822 :     fn update_donor(&self, donor: &mut walproposer::bindings::Safekeeper, donor_lsn: u64) {
     259         6822 :         let mut shmem = unsafe { *self.get_shmem_state() };
     260         6822 :         shmem.propEpochStartLsn.value = donor_lsn;
     261         6822 :         shmem.donor_conninfo = donor.conninfo;
     262         6822 :     }
     263              : 
     264       266700 :     fn conn_status(
     265       266700 :         &self,
     266       266700 :         _: &mut walproposer::bindings::Safekeeper,
     267       266700 :     ) -> walproposer::bindings::WalProposerConnStatusType {
     268       266700 :         debug!("conn_status");
     269              :         // break the connection with a 10% chance
     270       266700 :         if self.os.random(100) < 10 {
     271        26878 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_BAD
     272              :         } else {
     273       239822 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_OK
     274              :         }
     275       266700 :     }
     276              : 
     277       266700 :     fn conn_connect_start(&self, sk: &mut walproposer::bindings::Safekeeper) {
     278       266700 :         debug!("conn_connect_start");
     279       266700 :         let mut conn = self.get_conn(sk);
     280       266700 : 
     281       266700 :         assert!(conn.socket.is_none());
     282       266700 :         let socket = self.os.open_tcp(conn.node_id);
     283       266700 :         conn.socket = Some(socket);
     284       266700 :         conn.raw_ptr = sk;
     285       266700 :         conn.is_connecting = true;
     286       266700 :     }
     287              : 
     288       239822 :     fn conn_connect_poll(
     289       239822 :         &self,
     290       239822 :         _: &mut walproposer::bindings::Safekeeper,
     291       239822 :     ) -> walproposer::bindings::WalProposerConnectPollStatusType {
     292       239822 :         debug!("conn_connect_poll");
     293              :         // TODO: break the connection here
     294       239822 :         walproposer::bindings::WalProposerConnectPollStatusType_WP_CONN_POLLING_OK
     295       239822 :     }
     296              : 
     297       239822 :     fn conn_send_query(&self, sk: &mut walproposer::bindings::Safekeeper, query: &str) -> bool {
     298       239822 :         debug!("conn_send_query: {}", query);
     299       239822 :         self.get_conn(sk).is_start_wal_push = true;
     300       239822 :         true
     301       239822 :     }
     302              : 
     303       239822 :     fn conn_get_query_result(
     304       239822 :         &self,
     305       239822 :         _: &mut walproposer::bindings::Safekeeper,
     306       239822 :     ) -> walproposer::bindings::WalProposerExecStatusType {
     307       239822 :         debug!("conn_get_query_result");
     308              :         // TODO: break the connection here
     309       239822 :         walproposer::bindings::WalProposerExecStatusType_WP_EXEC_SUCCESS_COPYBOTH
     310       239822 :     }
     311              : 
     312       131954 :     fn conn_async_read(
     313       131954 :         &self,
     314       131954 :         sk: &mut walproposer::bindings::Safekeeper,
     315       131954 :         vec: &mut Vec<u8>,
     316       131954 :     ) -> walproposer::bindings::PGAsyncReadResult {
     317       131954 :         debug!("conn_async_read");
     318       131954 :         let mut conn = self.get_conn(sk);
     319              : 
     320       131954 :         let socket = if let Some(socket) = conn.socket.as_mut() {
     321       131954 :             socket
     322              :         } else {
     323              :             // socket is already closed
     324            0 :             return walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL;
     325              :         };
     326              : 
     327       131954 :         let msg = socket.recv_chan().try_recv();
     328              : 
     329       119744 :         match msg {
     330              :             None => {
     331              :                 // no message is ready
     332        12210 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_TRY_AGAIN
     333              :             }
     334              :             Some(NetEvent::Closed) => {
     335              :                 // connection is closed
     336        58856 :                 debug!("conn_async_read: connection is closed");
     337        58856 :                 conn.socket = None;
     338        58856 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL
     339              :             }
     340        60888 :             Some(NetEvent::Message(msg)) => {
     341              :                 // got a message
     342        60888 :                 let b = match msg {
     343        60888 :                     desim::proto::AnyMessage::Bytes(b) => b,
     344            0 :                     _ => unreachable!(),
     345              :                 };
     346        60888 :                 vec.extend_from_slice(&b);
     347        60888 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_SUCCESS
     348              :             }
     349              :         }
     350       131954 :     }
     351              : 
     352       267732 :     fn conn_blocking_write(&self, sk: &mut walproposer::bindings::Safekeeper, buf: &[u8]) -> bool {
     353       267732 :         let mut conn = self.get_conn(sk);
     354       267732 :         debug!("conn_blocking_write to {}: {:?}", conn.node_id, buf);
     355       267732 :         let socket = conn.socket.as_mut().unwrap();
     356       267732 :         socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     357       267732 :         true
     358       267732 :     }
     359              : 
     360        32502 :     fn conn_async_write(
     361        32502 :         &self,
     362        32502 :         sk: &mut walproposer::bindings::Safekeeper,
     363        32502 :         buf: &[u8],
     364        32502 :     ) -> walproposer::bindings::PGAsyncWriteResult {
     365        32502 :         let mut conn = self.get_conn(sk);
     366        32502 :         debug!("conn_async_write to {}: {:?}", conn.node_id, buf);
     367        32502 :         if let Some(socket) = conn.socket.as_mut() {
     368        32502 :             socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     369        32502 :         } else {
     370              :             // connection is already closed
     371            0 :             debug!("conn_async_write: writing to a closed socket!");
     372              :             // TODO: maybe we should return error here?
     373              :         }
     374        32502 :         walproposer::bindings::PGAsyncWriteResult_PG_ASYNC_WRITE_SUCCESS
     375        32502 :     }
     376              : 
     377         7217 :     fn wal_reader_allocate(&self, _: &mut walproposer::bindings::Safekeeper) -> NeonWALReadResult {
     378         7217 :         debug!("wal_reader_allocate");
     379         7217 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     380         7217 :     }
     381              : 
     382        25285 :     fn wal_read(
     383        25285 :         &self,
     384        25285 :         _sk: &mut walproposer::bindings::Safekeeper,
     385        25285 :         buf: &mut [u8],
     386        25285 :         startpos: u64,
     387        25285 :     ) -> NeonWALReadResult {
     388        25285 :         self.disk.lock().read(startpos, buf);
     389        25285 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     390        25285 :     }
     391              : 
     392        72318 :     fn init_event_set(&self, _: &mut walproposer::bindings::WalProposer) {
     393        72318 :         debug!("init_event_set");
     394        72318 :         let new_event_set = EventSet::new(self.os.clone());
     395        72318 :         let old_event_set = self.event_set.replace(Some(new_event_set));
     396        72318 :         assert!(old_event_set.is_none());
     397        72318 :     }
     398              : 
     399       527907 :     fn update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper, event_mask: u32) {
     400       527907 :         debug!(
     401            0 :             "update_event_set, sk={:?}, events_mask={:#b}",
     402            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     403              :         );
     404       527907 :         let conn = self.get_conn(sk);
     405       527907 : 
     406       527907 :         self.event_set
     407       527907 :             .borrow_mut()
     408       527907 :             .as_mut()
     409       527907 :             .unwrap()
     410       527907 :             .update_event_set(&conn, event_mask);
     411       527907 :     }
     412              : 
     413       479644 :     fn add_safekeeper_event_set(
     414       479644 :         &self,
     415       479644 :         sk: &mut walproposer::bindings::Safekeeper,
     416       479644 :         event_mask: u32,
     417       479644 :     ) {
     418       479644 :         debug!(
     419            0 :             "add_safekeeper_event_set, sk={:?}, events_mask={:#b}",
     420            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     421              :         );
     422              : 
     423       479644 :         self.event_set
     424       479644 :             .borrow_mut()
     425       479644 :             .as_mut()
     426       479644 :             .unwrap()
     427       479644 :             .add_safekeeper(&self.get_conn(sk), event_mask);
     428       479644 :     }
     429              : 
     430       300679 :     fn rm_safekeeper_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     431       300679 :         debug!(
     432            0 :             "rm_safekeeper_event_set, sk={:?}",
     433            0 :             sk as *mut walproposer::bindings::Safekeeper,
     434              :         );
     435              : 
     436       300679 :         self.event_set
     437       300679 :             .borrow_mut()
     438       300679 :             .as_mut()
     439       300679 :             .unwrap()
     440       300679 :             .remove_safekeeper(&self.get_conn(sk));
     441       300679 :     }
     442              : 
     443        37495 :     fn active_state_update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     444        37495 :         debug!("active_state_update_event_set");
     445              : 
     446        37495 :         assert!(sk.state == walproposer::bindings::SafekeeperState_SS_ACTIVE);
     447        37495 :         self.event_set
     448        37495 :             .borrow_mut()
     449        37495 :             .as_mut()
     450        37495 :             .unwrap()
     451        37495 :             .refresh_event_set();
     452        37495 :     }
     453              : 
     454       105372 :     fn wal_reader_events(&self, _sk: &mut walproposer::bindings::Safekeeper) -> u32 {
     455       105372 :         0
     456       105372 :     }
     457              : 
     458       694533 :     fn wait_event_set(
     459       694533 :         &self,
     460       694533 :         _: &mut walproposer::bindings::WalProposer,
     461       694533 :         timeout_millis: i64,
     462       694533 :     ) -> walproposer::walproposer::WaitResult {
     463       694533 :         // TODO: handle multiple stages as part of the simulation (e.g. connect, start_wal_push, etc)
     464       694533 :         let mut conns = self.safekeepers.borrow_mut();
     465      1604019 :         for conn in conns.iter_mut() {
     466      1604019 :             if conn.socket.is_some() && conn.is_connecting {
     467       239822 :                 conn.is_connecting = false;
     468       239822 :                 debug!("wait_event_set, connecting to {}:{}", conn.host, conn.port);
     469       239822 :                 return walproposer::walproposer::WaitResult::Network(
     470       239822 :                     conn.raw_ptr,
     471       239822 :                     WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE,
     472       239822 :                 );
     473      1364197 :             }
     474      1364197 :             if conn.socket.is_some() && conn.is_start_wal_push {
     475       239822 :                 conn.is_start_wal_push = false;
     476       239822 :                 debug!(
     477            0 :                     "wait_event_set, start wal push to {}:{}",
     478              :                     conn.host, conn.port
     479              :                 );
     480       239822 :                 return walproposer::walproposer::WaitResult::Network(
     481       239822 :                     conn.raw_ptr,
     482       239822 :                     WL_SOCKET_READABLE,
     483       239822 :                 );
     484      1124375 :             }
     485              :         }
     486       214889 :         drop(conns);
     487       214889 : 
     488       214889 :         let res = self
     489       214889 :             .event_set
     490       214889 :             .borrow_mut()
     491       214889 :             .as_mut()
     492       214889 :             .unwrap()
     493       214889 :             .wait(timeout_millis);
     494       214889 : 
     495       214889 :         debug!(
     496            0 :             "wait_event_set, timeout_millis={}, res={:?}",
     497              :             timeout_millis, res,
     498              :         );
     499       146278 :         res
     500       625922 :     }
     501              : 
     502        72318 :     fn strong_random(&self, buf: &mut [u8]) -> bool {
     503        72318 :         debug!("strong_random");
     504        72318 :         buf.fill(0);
     505        72318 :         true
     506        72318 :     }
     507              : 
     508         2684 :     fn finish_sync_safekeepers(&self, lsn: u64) {
     509         2684 :         debug!("finish_sync_safekeepers, lsn={}", lsn);
     510         2684 :         executor::exit(0, Lsn(lsn).to_string());
     511         2684 :     }
     512              : 
     513       707390 :     fn log_internal(&self, _wp: &mut walproposer::bindings::WalProposer, level: Level, msg: &str) {
     514       707390 :         debug!("wp_log[{}] {}", level, msg);
     515       707390 :         if level == Level::Fatal || level == Level::Panic {
     516          509 :             if msg.contains("rejects our connection request with term") {
     517          270 :                 // collected quorum with lower term, then got rejected by next connected safekeeper
     518          270 :                 executor::exit(1, msg.to_owned());
     519          270 :             }
     520          509 :             if msg.contains("collected propEpochStartLsn") && msg.contains(", but basebackup LSN ")
     521           11 :             {
     522           11 :                 // sync-safekeepers collected wrong quorum, walproposer collected another quorum
     523           11 :                 executor::exit(1, msg.to_owned());
     524          498 :             }
     525          509 :             if msg.contains("failed to download WAL for logical replicaiton") {
     526          136 :                 // Recovery connection broken and recovery was failed
     527          136 :                 executor::exit(1, msg.to_owned());
     528          373 :             }
     529          509 :             if msg.contains("missing majority of votes, collected") {
     530           92 :                 // Voting bug when safekeeper disconnects after voting
     531           92 :                 executor::exit(1, msg.to_owned());
     532          417 :             }
     533          509 :             panic!("unknown FATAL error from walproposer: {}", msg);
     534       706881 :         }
     535       706881 :     }
     536              : 
     537         5480 :     fn after_election(&self, wp: &mut walproposer::bindings::WalProposer) {
     538         5480 :         let prop_lsn = wp.propEpochStartLsn;
     539         5480 :         let prop_term = wp.propTerm;
     540         5480 : 
     541         5480 :         let mut prev_lsn: u64 = 0;
     542         5480 :         let mut prev_term: u64 = 0;
     543         5480 : 
     544         5480 :         unsafe {
     545         5480 :             let history = wp.propTermHistory.entries;
     546         5480 :             let len = wp.propTermHistory.n_entries as usize;
     547         5480 :             if len > 1 {
     548         3631 :                 let entry = *history.wrapping_add(len - 2);
     549         3631 :                 prev_lsn = entry.lsn;
     550         3631 :                 prev_term = entry.term;
     551         3631 :             }
     552              :         }
     553              : 
     554         5480 :         let msg = format!(
     555         5480 :             "prop_elected;{};{};{};{}",
     556         5480 :             prop_lsn, prop_term, prev_lsn, prev_term
     557         5480 :         );
     558         5480 : 
     559         5480 :         debug!(msg);
     560         5480 :         self.os.log_event(msg);
     561         5480 :     }
     562              : 
     563         2074 :     fn get_redo_start_lsn(&self) -> u64 {
     564         2074 :         debug!("get_redo_start_lsn -> {:?}", self.redo_start_lsn);
     565         2074 :         self.redo_start_lsn.expect("redo_start_lsn is not set").0
     566         2074 :     }
     567              : 
     568        17804 :     fn get_shmem_state(&self) -> *mut walproposer::bindings::WalproposerShmemState {
     569        17804 :         self.shmem.get()
     570        17804 :     }
     571              : 
     572         1218 :     fn start_streaming(
     573         1218 :         &self,
     574         1218 :         startpos: u64,
     575         1218 :         callback: &walproposer::walproposer::StreamingCallback,
     576         1218 :     ) {
     577         1218 :         let disk = &self.disk;
     578         1218 :         let disk_lsn = disk.lock().flush_rec_ptr().0;
     579         1218 :         debug!("start_streaming at {} (disk_lsn={})", startpos, disk_lsn);
     580         1218 :         if startpos < disk_lsn {
     581          376 :             debug!("startpos < disk_lsn, it means we wrote some transaction even before streaming started");
     582          842 :         }
     583         1218 :         assert!(startpos <= disk_lsn);
     584         1218 :         let mut broadcasted = Lsn(startpos);
     585              : 
     586              :         loop {
     587         4054 :             let available = disk.lock().flush_rec_ptr();
     588         4054 :             assert!(available >= broadcasted);
     589         2836 :             callback.broadcast(broadcasted, available);
     590         2836 :             broadcasted = available;
     591         2836 :             callback.poll();
     592              :         }
     593              :     }
     594              : 
     595        13126 :     fn process_safekeeper_feedback(
     596        13126 :         &mut self,
     597        13126 :         wp: &mut walproposer::bindings::WalProposer,
     598        13126 :         _sk: &mut walproposer::bindings::Safekeeper,
     599        13126 :     ) {
     600        13126 :         debug!("process_safekeeper_feedback, commit_lsn={}", wp.commitLsn);
     601        13126 :         if wp.commitLsn > self.last_logged_commit_lsn {
     602         2821 :             self.os.log_event(format!("commit_lsn;{}", wp.commitLsn));
     603         2821 :             self.last_logged_commit_lsn = wp.commitLsn;
     604        10305 :         }
     605        13126 :     }
     606              : 
     607          789 :     fn get_flush_rec_ptr(&self) -> u64 {
     608          789 :         let lsn = self.disk.lock().flush_rec_ptr();
     609          789 :         debug!("get_flush_rec_ptr: {}", lsn);
     610          789 :         lsn.0
     611          789 :     }
     612              : 
     613         5480 :     fn recovery_download(
     614         5480 :         &self,
     615         5480 :         wp: &mut walproposer::bindings::WalProposer,
     616         5480 :         sk: &mut walproposer::bindings::Safekeeper,
     617         5480 :     ) -> bool {
     618         5480 :         let mut startpos = wp.truncateLsn;
     619         5480 :         let endpos = wp.propEpochStartLsn;
     620         5480 : 
     621         5480 :         if startpos == endpos {
     622         3364 :             debug!("recovery_download: nothing to download");
     623         3364 :             return true;
     624         2116 :         }
     625         2116 : 
     626         2116 :         debug!("recovery_download from {} to {}", startpos, endpos,);
     627              : 
     628         2116 :         let replication_prompt = format!(
     629         2116 :             "START_REPLICATION {} {} {} {}",
     630         2116 :             self.config.ttid.tenant_id, self.config.ttid.timeline_id, startpos, endpos,
     631         2116 :         );
     632         2116 :         let async_conn = self.get_conn(sk);
     633         2116 : 
     634         2116 :         let conn = self.os.open_tcp(async_conn.node_id);
     635         2116 :         conn.send(desim::proto::AnyMessage::Bytes(replication_prompt.into()));
     636         2116 : 
     637         2116 :         let chan = conn.recv_chan();
     638         3582 :         while startpos < endpos {
     639         2116 :             let event = chan.recv();
     640         1980 :             match event {
     641              :                 NetEvent::Closed => {
     642          136 :                     debug!("connection closed in recovery");
     643          136 :                     break;
     644              :                 }
     645         1980 :                 NetEvent::Message(AnyMessage::Bytes(b)) => {
     646         1980 :                     debug!("got recovery bytes from safekeeper");
     647         1466 :                     self.disk.lock().write(startpos, &b);
     648         1466 :                     startpos += b.len() as u64;
     649              :                 }
     650            0 :                 NetEvent::Message(_) => unreachable!(),
     651              :             }
     652              :         }
     653              : 
     654         1602 :         debug!("recovery finished at {}", startpos);
     655              : 
     656         1602 :         startpos == endpos
     657         4966 :     }
     658              : 
     659        87735 :     fn conn_finish(&self, sk: &mut walproposer::bindings::Safekeeper) {
     660        87735 :         let mut conn = self.get_conn(sk);
     661        87735 :         debug!("conn_finish to {}", conn.node_id);
     662        87735 :         if let Some(socket) = conn.socket.as_mut() {
     663        28836 :             socket.close();
     664        58899 :         } else {
     665        58899 :             // connection is already closed
     666        58899 :         }
     667        87735 :         conn.socket = None;
     668        87735 :     }
     669              : 
     670        85734 :     fn conn_error_message(&self, _sk: &mut walproposer::bindings::Safekeeper) -> String {
     671        85734 :         "connection is closed, probably".into()
     672        85734 :     }
     673              : }
        

Generated by: LCOV version 2.1-beta