LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - walproposer_api.rs (source / functions) Coverage Total Hit
Test: 960803fca14b2e843c565dddf575f7017d250bc3.info Lines: 95.5 % 486 464
Test Date: 2024-06-22 23:41:44 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       217260 :     pub fn new(host: String, port: String) -> Self {
      44       217260 :         // port number is the same as NodeId
      45       217260 :         let port_num = port.parse::<u32>().unwrap();
      46       217260 :         Self {
      47       217260 :             host,
      48       217260 :             port,
      49       217260 :             node_id: port_num,
      50       217260 :             socket: None,
      51       217260 :             is_connecting: false,
      52       217260 :             is_start_wal_push: false,
      53       217260 :             raw_ptr: std::ptr::null_mut(),
      54       217260 :         }
      55       217260 :     }
      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        72420 :     pub fn new(os: NodeOs) -> Self {
      72        72420 :         let node_events = os.node_events();
      73        72420 :         Self {
      74        72420 :             os,
      75        72420 :             chans: vec![Box::new(node_events)],
      76        72420 :             sk_ptrs: vec![std::ptr::null_mut()],
      77        72420 :             masks: vec![WL_SOCKET_READABLE],
      78        72420 :         }
      79        72420 :     }
      80              : 
      81              :     /// Leaves all readable channels at the beginning of the array.
      82       217949 :     fn sort_readable(&mut self) -> usize {
      83       217949 :         let mut cnt = 1;
      84       512181 :         for i in 1..self.chans.len() {
      85       512181 :             if self.masks[i] & WL_SOCKET_READABLE != 0 {
      86       512181 :                 self.chans.swap(i, cnt);
      87       512181 :                 self.sk_ptrs.swap(i, cnt);
      88       512181 :                 self.masks.swap(i, cnt);
      89       512181 :                 cnt += 1;
      90       512181 :             }
      91              :         }
      92       217949 :         cnt
      93       217949 :     }
      94              : 
      95       530609 :     fn update_event_set(&mut self, conn: &SafekeeperConn, event_mask: u32) {
      96       530609 :         let index = self
      97       530609 :             .sk_ptrs
      98       530609 :             .iter()
      99      2005711 :             .position(|&ptr| ptr == conn.raw_ptr)
     100       530609 :             .expect("safekeeper should exist in event set");
     101       530609 :         self.masks[index] = event_mask;
     102       530609 :     }
     103              : 
     104       482594 :     fn add_safekeeper(&mut self, sk: &SafekeeperConn, event_mask: u32) {
     105      1167975 :         for ptr in self.sk_ptrs.iter() {
     106      1167975 :             assert!(*ptr != sk.raw_ptr);
     107              :         }
     108              : 
     109       482594 :         self.chans.push(Box::new(
     110       482594 :             sk.socket
     111       482594 :                 .as_ref()
     112       482594 :                 .expect("socket should not be closed")
     113       482594 :                 .recv_chan(),
     114       482594 :         ));
     115       482594 :         self.sk_ptrs.push(sk.raw_ptr);
     116       482594 :         self.masks.push(event_mask);
     117       482594 :     }
     118              : 
     119       306088 :     fn remove_safekeeper(&mut self, sk: &SafekeeperConn) {
     120       650522 :         let index = self.sk_ptrs.iter().position(|&ptr| ptr == sk.raw_ptr);
     121       306088 :         if index.is_none() {
     122           45 :             debug!("remove_safekeeper: sk={:?} not found", sk.raw_ptr);
     123           45 :             return;
     124       306043 :         }
     125       306043 :         let index = index.unwrap();
     126       306043 : 
     127       306043 :         self.chans.remove(index);
     128       306043 :         self.sk_ptrs.remove(index);
     129       306043 :         self.masks.remove(index);
     130       306043 : 
     131       306043 :         // to simulate the actual behaviour
     132       306043 :         self.refresh_event_set();
     133       306088 :     }
     134              : 
     135              :     /// Updates all masks to match the result of a SafekeeperStateDesiredEvents.
     136       341816 :     fn refresh_event_set(&mut self) {
     137       958899 :         for (i, mask) in self.masks.iter_mut().enumerate() {
     138       958899 :             if i == 0 {
     139       341816 :                 continue;
     140       617083 :             }
     141       617083 : 
     142       617083 :             let mut mask_sk: u32 = 0;
     143       617083 :             let mut mask_nwr: u32 = 0;
     144       617083 :             unsafe { SafekeeperStateDesiredEvents(self.sk_ptrs[i], &mut mask_sk, &mut mask_nwr) };
     145       617083 : 
     146       617083 :             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       617083 :             }
     153              :         }
     154       341816 :     }
     155              : 
     156              :     /// Wait for events on all channels.
     157       217949 :     fn wait(&mut self, timeout_millis: i64) -> walproposer::walproposer::WaitResult {
     158              :         // all channels are always writeable
     159       730130 :         for (i, mask) in self.masks.iter().enumerate() {
     160       730130 :             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       730130 :             }
     166              :         }
     167              : 
     168       217949 :         let cnt = self.sort_readable();
     169       217949 : 
     170       217949 :         let slice = &self.chans[0..cnt];
     171       217949 :         match executor::epoll_chans(slice, timeout_millis) {
     172        90973 :             None => walproposer::walproposer::WaitResult::Timeout,
     173              :             Some(0) => {
     174         2863 :                 let msg = self.os.node_events().must_recv();
     175         2863 :                 match msg {
     176         2863 :                     NodeEvent::Internal(AnyMessage::Just32(0)) => {
     177         2863 :                         // got a notification about new WAL available
     178         2863 :                     }
     179            0 :                     NodeEvent::Internal(_) => unreachable!(),
     180            0 :                     NodeEvent::Accept(_) => unreachable!(),
     181              :                 }
     182         2863 :                 walproposer::walproposer::WaitResult::Latch
     183              :             }
     184       124113 :             Some(index) => walproposer::walproposer::WaitResult::Network(
     185       124113 :                 self.sk_ptrs[index],
     186       124113 :                 WL_SOCKET_READABLE,
     187       124113 :             ),
     188              :         }
     189       217949 :     }
     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        72420 :     pub fn new(args: Args) -> Self {
     213        72420 :         // initialize connection state for each safekeeper
     214        72420 :         let sk_conns = args
     215        72420 :             .config
     216        72420 :             .safekeepers_list
     217        72420 :             .iter()
     218       217260 :             .map(|s| {
     219       217260 :                 SafekeeperConn::new(
     220       217260 :                     s.split(':').next().unwrap().to_string(),
     221       217260 :                     s.split(':').nth(1).unwrap().to_string(),
     222       217260 :                 )
     223       217260 :             })
     224        72420 :             .collect::<Vec<_>>();
     225        72420 : 
     226        72420 :         Self {
     227        72420 :             os: args.os,
     228        72420 :             safekeepers: RefCell::new(sk_conns),
     229        72420 :             disk: args.disk,
     230        72420 :             redo_start_lsn: args.redo_start_lsn,
     231        72420 :             last_logged_commit_lsn: 0,
     232        72420 :             shmem: UnsafeCell::new(walproposer::api_bindings::empty_shmem()),
     233        72420 :             config: args.config,
     234        72420 :             event_set: RefCell::new(None),
     235        72420 :         }
     236        72420 :     }
     237              : 
     238              :     /// Get SafekeeperConn for the given Safekeeper.
     239      2356451 :     fn get_conn(&self, sk: &mut walproposer::bindings::Safekeeper) -> RefMut<'_, SafekeeperConn> {
     240      2356451 :         let sk_port = unsafe { CStr::from_ptr(sk.port).to_str().unwrap() };
     241      2356451 :         let state = self.safekeepers.borrow_mut();
     242      2356451 :         RefMut::map(state, |v| {
     243      2356451 :             v.iter_mut()
     244      4709712 :                 .find(|conn| conn.port == sk_port)
     245      2356451 :                 .expect("safekeeper conn not found by port")
     246      2356451 :         })
     247      2356451 :     }
     248              : }
     249              : 
     250              : impl ApiImpl for SimulationApi {
     251      2512712 :     fn get_current_timestamp(&self) -> i64 {
     252      2512712 :         debug!("get_current_timestamp");
     253              :         // PG TimestampTZ is microseconds, but simulation unit is assumed to be
     254              :         // milliseconds, so add 10^3
     255      2512712 :         self.os.now() as i64 * 1000
     256      2512712 :     }
     257              : 
     258         6662 :     fn update_donor(&self, donor: &mut walproposer::bindings::Safekeeper, donor_lsn: u64) {
     259         6662 :         let mut shmem = unsafe { *self.get_shmem_state() };
     260         6662 :         shmem.propEpochStartLsn.value = donor_lsn;
     261         6662 :         shmem.donor_conninfo = donor.conninfo;
     262         6662 :     }
     263              : 
     264       267960 :     fn conn_status(
     265       267960 :         &self,
     266       267960 :         _: &mut walproposer::bindings::Safekeeper,
     267       267960 :     ) -> walproposer::bindings::WalProposerConnStatusType {
     268       267960 :         debug!("conn_status");
     269              :         // break the connection with a 10% chance
     270       267960 :         if self.os.random(100) < 10 {
     271        26663 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_BAD
     272              :         } else {
     273       241297 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_OK
     274              :         }
     275       267960 :     }
     276              : 
     277       267960 :     fn conn_connect_start(&self, sk: &mut walproposer::bindings::Safekeeper) {
     278       267960 :         debug!("conn_connect_start");
     279       267960 :         let mut conn = self.get_conn(sk);
     280       267960 : 
     281       267960 :         assert!(conn.socket.is_none());
     282       267960 :         let socket = self.os.open_tcp(conn.node_id);
     283       267960 :         conn.socket = Some(socket);
     284       267960 :         conn.raw_ptr = sk;
     285       267960 :         conn.is_connecting = true;
     286       267960 :     }
     287              : 
     288       241297 :     fn conn_connect_poll(
     289       241297 :         &self,
     290       241297 :         _: &mut walproposer::bindings::Safekeeper,
     291       241297 :     ) -> walproposer::bindings::WalProposerConnectPollStatusType {
     292       241297 :         debug!("conn_connect_poll");
     293              :         // TODO: break the connection here
     294       241297 :         walproposer::bindings::WalProposerConnectPollStatusType_WP_CONN_POLLING_OK
     295       241297 :     }
     296              : 
     297       241297 :     fn conn_send_query(&self, sk: &mut walproposer::bindings::Safekeeper, query: &str) -> bool {
     298       241297 :         debug!("conn_send_query: {}", query);
     299       241297 :         self.get_conn(sk).is_start_wal_push = true;
     300       241297 :         true
     301       241297 :     }
     302              : 
     303       241297 :     fn conn_get_query_result(
     304       241297 :         &self,
     305       241297 :         _: &mut walproposer::bindings::Safekeeper,
     306       241297 :     ) -> walproposer::bindings::WalProposerExecStatusType {
     307       241297 :         debug!("conn_get_query_result");
     308              :         // TODO: break the connection here
     309       241297 :         walproposer::bindings::WalProposerExecStatusType_WP_EXEC_SUCCESS_COPYBOTH
     310       241297 :     }
     311              : 
     312       134162 :     fn conn_async_read(
     313       134162 :         &self,
     314       134162 :         sk: &mut walproposer::bindings::Safekeeper,
     315       134162 :         vec: &mut Vec<u8>,
     316       134162 :     ) -> walproposer::bindings::PGAsyncReadResult {
     317       134162 :         debug!("conn_async_read");
     318       134162 :         let mut conn = self.get_conn(sk);
     319              : 
     320       134162 :         let socket = if let Some(socket) = conn.socket.as_mut() {
     321       134162 :             socket
     322              :         } else {
     323              :             // socket is already closed
     324            0 :             return walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL;
     325              :         };
     326              : 
     327       134162 :         let msg = socket.recv_chan().try_recv();
     328              : 
     329       122584 :         match msg {
     330              :             None => {
     331              :                 // no message is ready
     332        11578 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_TRY_AGAIN
     333              :             }
     334              :             Some(NetEvent::Closed) => {
     335              :                 // connection is closed
     336        62750 :                 debug!("conn_async_read: connection is closed");
     337        62750 :                 conn.socket = None;
     338        62750 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL
     339              :             }
     340        59834 :             Some(NetEvent::Message(msg)) => {
     341              :                 // got a message
     342        59834 :                 let b = match msg {
     343        59834 :                     desim::proto::AnyMessage::Bytes(b) => b,
     344            0 :                     _ => unreachable!(),
     345              :                 };
     346        59834 :                 vec.extend_from_slice(&b);
     347        59834 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_SUCCESS
     348              :             }
     349              :         }
     350       134162 :     }
     351              : 
     352       269062 :     fn conn_blocking_write(&self, sk: &mut walproposer::bindings::Safekeeper, buf: &[u8]) -> bool {
     353       269062 :         let mut conn = self.get_conn(sk);
     354       269062 :         debug!("conn_blocking_write to {}: {:?}", conn.node_id, buf);
     355       269062 :         let socket = conn.socket.as_mut().unwrap();
     356       269062 :         socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     357       269062 :         true
     358       269062 :     }
     359              : 
     360        31229 :     fn conn_async_write(
     361        31229 :         &self,
     362        31229 :         sk: &mut walproposer::bindings::Safekeeper,
     363        31229 :         buf: &[u8],
     364        31229 :     ) -> walproposer::bindings::PGAsyncWriteResult {
     365        31229 :         let mut conn = self.get_conn(sk);
     366        31229 :         debug!("conn_async_write to {}: {:?}", conn.node_id, buf);
     367        31229 :         if let Some(socket) = conn.socket.as_mut() {
     368        31229 :             socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     369        31229 :         } 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        31229 :         walproposer::bindings::PGAsyncWriteResult_PG_ASYNC_WRITE_SUCCESS
     375        31229 :     }
     376              : 
     377         7034 :     fn wal_reader_allocate(&self, _: &mut walproposer::bindings::Safekeeper) -> NeonWALReadResult {
     378         7034 :         debug!("wal_reader_allocate");
     379         7034 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     380         7034 :     }
     381              : 
     382        24195 :     fn wal_read(
     383        24195 :         &self,
     384        24195 :         _sk: &mut walproposer::bindings::Safekeeper,
     385        24195 :         buf: &mut [u8],
     386        24195 :         startpos: u64,
     387        24195 :     ) -> NeonWALReadResult {
     388        24195 :         self.disk.lock().read(startpos, buf);
     389        24195 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     390        24195 :     }
     391              : 
     392        72420 :     fn init_event_set(&self, _: &mut walproposer::bindings::WalProposer) {
     393        72420 :         debug!("init_event_set");
     394        72420 :         let new_event_set = EventSet::new(self.os.clone());
     395        72420 :         let old_event_set = self.event_set.replace(Some(new_event_set));
     396        72420 :         assert!(old_event_set.is_none());
     397        72420 :     }
     398              : 
     399       530609 :     fn update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper, event_mask: u32) {
     400       530609 :         debug!(
     401            0 :             "update_event_set, sk={:?}, events_mask={:#b}",
     402            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     403              :         );
     404       530609 :         let conn = self.get_conn(sk);
     405       530609 : 
     406       530609 :         self.event_set
     407       530609 :             .borrow_mut()
     408       530609 :             .as_mut()
     409       530609 :             .unwrap()
     410       530609 :             .update_event_set(&conn, event_mask);
     411       530609 :     }
     412              : 
     413       482594 :     fn add_safekeeper_event_set(
     414       482594 :         &self,
     415       482594 :         sk: &mut walproposer::bindings::Safekeeper,
     416       482594 :         event_mask: u32,
     417       482594 :     ) {
     418       482594 :         debug!(
     419            0 :             "add_safekeeper_event_set, sk={:?}, events_mask={:#b}",
     420            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     421              :         );
     422              : 
     423       482594 :         self.event_set
     424       482594 :             .borrow_mut()
     425       482594 :             .as_mut()
     426       482594 :             .unwrap()
     427       482594 :             .add_safekeeper(&self.get_conn(sk), event_mask);
     428       482594 :     }
     429              : 
     430       306088 :     fn rm_safekeeper_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     431       306088 :         debug!(
     432            0 :             "rm_safekeeper_event_set, sk={:?}",
     433            0 :             sk as *mut walproposer::bindings::Safekeeper,
     434              :         );
     435              : 
     436       306088 :         self.event_set
     437       306088 :             .borrow_mut()
     438       306088 :             .as_mut()
     439       306088 :             .unwrap()
     440       306088 :             .remove_safekeeper(&self.get_conn(sk));
     441       306088 :     }
     442              : 
     443        35773 :     fn active_state_update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     444        35773 :         debug!("active_state_update_event_set");
     445              : 
     446        35773 :         assert!(sk.state == walproposer::bindings::SafekeeperState_SS_ACTIVE);
     447        35773 :         self.event_set
     448        35773 :             .borrow_mut()
     449        35773 :             .as_mut()
     450        35773 :             .unwrap()
     451        35773 :             .refresh_event_set();
     452        35773 :     }
     453              : 
     454       101383 :     fn wal_reader_events(&self, _sk: &mut walproposer::bindings::Safekeeper) -> u32 {
     455       101383 :         0
     456       101383 :     }
     457              : 
     458       700543 :     fn wait_event_set(
     459       700543 :         &self,
     460       700543 :         _: &mut walproposer::bindings::WalProposer,
     461       700543 :         timeout_millis: i64,
     462       700543 :     ) -> walproposer::walproposer::WaitResult {
     463       700543 :         // TODO: handle multiple stages as part of the simulation (e.g. connect, start_wal_push, etc)
     464       700543 :         let mut conns = self.safekeepers.borrow_mut();
     465      1619057 :         for conn in conns.iter_mut() {
     466      1619057 :             if conn.socket.is_some() && conn.is_connecting {
     467       241297 :                 conn.is_connecting = false;
     468       241297 :                 debug!("wait_event_set, connecting to {}:{}", conn.host, conn.port);
     469       241297 :                 return walproposer::walproposer::WaitResult::Network(
     470       241297 :                     conn.raw_ptr,
     471       241297 :                     WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE,
     472       241297 :                 );
     473      1377760 :             }
     474      1377760 :             if conn.socket.is_some() && conn.is_start_wal_push {
     475       241297 :                 conn.is_start_wal_push = false;
     476       241297 :                 debug!(
     477            0 :                     "wait_event_set, start wal push to {}:{}",
     478              :                     conn.host, conn.port
     479              :                 );
     480       241297 :                 return walproposer::walproposer::WaitResult::Network(
     481       241297 :                     conn.raw_ptr,
     482       241297 :                     WL_SOCKET_READABLE,
     483       241297 :                 );
     484      1136463 :             }
     485              :         }
     486       217949 :         drop(conns);
     487       217949 : 
     488       217949 :         let res = self
     489       217949 :             .event_set
     490       217949 :             .borrow_mut()
     491       217949 :             .as_mut()
     492       217949 :             .unwrap()
     493       217949 :             .wait(timeout_millis);
     494       217949 : 
     495       217949 :         debug!(
     496            0 :             "wait_event_set, timeout_millis={}, res={:?}",
     497              :             timeout_millis, res,
     498              :         );
     499       149095 :         res
     500       631689 :     }
     501              : 
     502        72420 :     fn strong_random(&self, buf: &mut [u8]) -> bool {
     503        72420 :         debug!("strong_random");
     504        72420 :         buf.fill(0);
     505        72420 :         true
     506        72420 :     }
     507              : 
     508         2590 :     fn finish_sync_safekeepers(&self, lsn: u64) {
     509         2590 :         debug!("finish_sync_safekeepers, lsn={}", lsn);
     510         2590 :         executor::exit(0, Lsn(lsn).to_string());
     511         2590 :     }
     512              : 
     513       711248 :     fn log_internal(&self, _wp: &mut walproposer::bindings::WalProposer, level: Level, msg: &str) {
     514       711248 :         debug!("wp_log[{}] {}", level, msg);
     515       711248 :         if level == Level::Fatal || level == Level::Panic {
     516          460 :             if msg.contains("rejects our connection request with term") {
     517          261 :                 // collected quorum with lower term, then got rejected by next connected safekeeper
     518          261 :                 executor::exit(1, msg.to_owned());
     519          261 :             }
     520          460 :             if msg.contains("collected propEpochStartLsn") && msg.contains(", but basebackup LSN ")
     521           22 :             {
     522           22 :                 // sync-safekeepers collected wrong quorum, walproposer collected another quorum
     523           22 :                 executor::exit(1, msg.to_owned());
     524          438 :             }
     525          460 :             if msg.contains("failed to download WAL for logical replicaiton") {
     526           98 :                 // Recovery connection broken and recovery was failed
     527           98 :                 executor::exit(1, msg.to_owned());
     528          362 :             }
     529          460 :             if msg.contains("missing majority of votes, collected") {
     530           79 :                 // Voting bug when safekeeper disconnects after voting
     531           79 :                 executor::exit(1, msg.to_owned());
     532          381 :             }
     533          460 :             panic!("unknown FATAL error from walproposer: {}", msg);
     534       710788 :         }
     535       710788 :     }
     536              : 
     537         5268 :     fn after_election(&self, wp: &mut walproposer::bindings::WalProposer) {
     538         5268 :         let prop_lsn = wp.propEpochStartLsn;
     539         5268 :         let prop_term = wp.propTerm;
     540         5268 : 
     541         5268 :         let mut prev_lsn: u64 = 0;
     542         5268 :         let mut prev_term: u64 = 0;
     543         5268 : 
     544         5268 :         unsafe {
     545         5268 :             let history = wp.propTermHistory.entries;
     546         5268 :             let len = wp.propTermHistory.n_entries as usize;
     547         5268 :             if len > 1 {
     548         3393 :                 let entry = *history.wrapping_add(len - 2);
     549         3393 :                 prev_lsn = entry.lsn;
     550         3393 :                 prev_term = entry.term;
     551         3393 :             }
     552              :         }
     553              : 
     554         5268 :         let msg = format!(
     555         5268 :             "prop_elected;{};{};{};{}",
     556         5268 :             prop_lsn, prop_term, prev_lsn, prev_term
     557         5268 :         );
     558         5268 : 
     559         5268 :         debug!(msg);
     560         5268 :         self.os.log_event(msg);
     561         5268 :     }
     562              : 
     563         2047 :     fn get_redo_start_lsn(&self) -> u64 {
     564         2047 :         debug!("get_redo_start_lsn -> {:?}", self.redo_start_lsn);
     565         2047 :         self.redo_start_lsn.expect("redo_start_lsn is not set").0
     566         2047 :     }
     567              : 
     568        17242 :     fn get_shmem_state(&self) -> *mut walproposer::bindings::WalproposerShmemState {
     569        17242 :         self.shmem.get()
     570        17242 :     }
     571              : 
     572         1167 :     fn start_streaming(
     573         1167 :         &self,
     574         1167 :         startpos: u64,
     575         1167 :         callback: &walproposer::walproposer::StreamingCallback,
     576         1167 :     ) {
     577         1167 :         let disk = &self.disk;
     578         1167 :         let disk_lsn = disk.lock().flush_rec_ptr().0;
     579         1167 :         debug!("start_streaming at {} (disk_lsn={})", startpos, disk_lsn);
     580         1167 :         if startpos < disk_lsn {
     581          362 :             debug!("startpos < disk_lsn, it means we wrote some transaction even before streaming started");
     582          805 :         }
     583         1167 :         assert!(startpos <= disk_lsn);
     584         1167 :         let mut broadcasted = Lsn(startpos);
     585              : 
     586              :         loop {
     587         3867 :             let available = disk.lock().flush_rec_ptr();
     588         3867 :             assert!(available >= broadcasted);
     589         2700 :             callback.broadcast(broadcasted, available);
     590         2700 :             broadcasted = available;
     591         2700 :             callback.poll();
     592              :         }
     593              :     }
     594              : 
     595        12470 :     fn process_safekeeper_feedback(
     596        12470 :         &mut self,
     597        12470 :         wp: &mut walproposer::bindings::WalProposer,
     598        12470 :         _sk: &mut walproposer::bindings::Safekeeper,
     599        12470 :     ) {
     600        12470 :         debug!("process_safekeeper_feedback, commit_lsn={}", wp.commitLsn);
     601        12470 :         if wp.commitLsn > self.last_logged_commit_lsn {
     602         2628 :             self.os.log_event(format!("commit_lsn;{}", wp.commitLsn));
     603         2628 :             self.last_logged_commit_lsn = wp.commitLsn;
     604         9842 :         }
     605        12470 :     }
     606              : 
     607          753 :     fn get_flush_rec_ptr(&self) -> u64 {
     608          753 :         let lsn = self.disk.lock().flush_rec_ptr();
     609          753 :         debug!("get_flush_rec_ptr: {}", lsn);
     610          753 :         lsn.0
     611          753 :     }
     612              : 
     613         5268 :     fn recovery_download(
     614         5268 :         &self,
     615         5268 :         wp: &mut walproposer::bindings::WalProposer,
     616         5268 :         sk: &mut walproposer::bindings::Safekeeper,
     617         5268 :     ) -> bool {
     618         5268 :         let mut startpos = wp.truncateLsn;
     619         5268 :         let endpos = wp.propEpochStartLsn;
     620         5268 : 
     621         5268 :         if startpos == endpos {
     622         3272 :             debug!("recovery_download: nothing to download");
     623         3272 :             return true;
     624         1996 :         }
     625         1996 : 
     626         1996 :         debug!("recovery_download from {} to {}", startpos, endpos,);
     627              : 
     628         1996 :         let replication_prompt = format!(
     629         1996 :             "START_REPLICATION {} {} {} {}",
     630         1996 :             self.config.ttid.tenant_id, self.config.ttid.timeline_id, startpos, endpos,
     631         1996 :         );
     632         1996 :         let async_conn = self.get_conn(sk);
     633         1996 : 
     634         1996 :         let conn = self.os.open_tcp(async_conn.node_id);
     635         1996 :         conn.send(desim::proto::AnyMessage::Bytes(replication_prompt.into()));
     636         1996 : 
     637         1996 :         let chan = conn.recv_chan();
     638         3378 :         while startpos < endpos {
     639         1996 :             let event = chan.recv();
     640         1898 :             match event {
     641              :                 NetEvent::Closed => {
     642           98 :                     debug!("connection closed in recovery");
     643           98 :                     break;
     644              :                 }
     645         1898 :                 NetEvent::Message(AnyMessage::Bytes(b)) => {
     646         1898 :                     debug!("got recovery bytes from safekeeper");
     647         1382 :                     self.disk.lock().write(startpos, &b);
     648         1382 :                     startpos += b.len() as u64;
     649              :                 }
     650            0 :                 NetEvent::Message(_) => unreachable!(),
     651              :             }
     652              :         }
     653              : 
     654         1480 :         debug!("recovery finished at {}", startpos);
     655              : 
     656         1480 :         startpos == endpos
     657         4752 :     }
     658              : 
     659        91454 :     fn conn_finish(&self, sk: &mut walproposer::bindings::Safekeeper) {
     660        91454 :         let mut conn = self.get_conn(sk);
     661        91454 :         debug!("conn_finish to {}", conn.node_id);
     662        91454 :         if let Some(socket) = conn.socket.as_mut() {
     663        28659 :             socket.close();
     664        62795 :         } else {
     665        62795 :             // connection is already closed
     666        62795 :         }
     667        91454 :         conn.socket = None;
     668        91454 :     }
     669              : 
     670        89413 :     fn conn_error_message(&self, _sk: &mut walproposer::bindings::Safekeeper) -> String {
     671        89413 :         "connection is closed, probably".into()
     672        89413 :     }
     673              : }
        

Generated by: LCOV version 2.1-beta