netstack3_ip/raw/
state.rs1use derivative::Derivative;
8use lock_order::lock::{OrderedLockAccess, OrderedLockRef};
9use netstack3_base::sync::RwLock;
10use netstack3_base::{IpExt, Marks, WeakDeviceIdentifier};
11
12use crate::internal::raw::counters::RawIpSocketCounters;
13use crate::internal::raw::filter::RawIpSocketIcmpFilter;
14use crate::internal::raw::protocol::RawIpSocketProtocol;
15use crate::internal::raw::RawIpSocketsBindingsTypes;
16use crate::internal::socket::SocketHopLimits;
17
18#[derive(Derivative)]
20#[derivative(Default(bound = ""))]
21pub struct RawIpSocketLockedState<I: IpExt, D: WeakDeviceIdentifier> {
22 pub(crate) bound_device: Option<D>,
28 pub(crate) icmp_filter: Option<RawIpSocketIcmpFilter<I>>,
31 pub(crate) hop_limits: SocketHopLimits<I>,
33 #[derivative(Default(value = "true"))]
35 pub(crate) multicast_loop: bool,
36 pub(crate) marks: Marks,
38 pub(crate) system_checksums: bool,
44}
45
46pub struct RawIpSocketState<I: IpExt, D: WeakDeviceIdentifier, BT: RawIpSocketsBindingsTypes> {
48 external_state: BT::RawIpSocketState<I>,
50 protocol: RawIpSocketProtocol<I>,
54 locked_state: RwLock<RawIpSocketLockedState<I, D>>,
56 counters: RawIpSocketCounters<I>,
58}
59
60impl<I: IpExt, D: WeakDeviceIdentifier, BT: RawIpSocketsBindingsTypes> RawIpSocketState<I, D, BT> {
61 pub(super) fn new(
62 protocol: RawIpSocketProtocol<I>,
63 external_state: BT::RawIpSocketState<I>,
64 ) -> RawIpSocketState<I, D, BT> {
65 RawIpSocketState {
66 external_state,
67 protocol,
68 locked_state: Default::default(),
69 counters: Default::default(),
70 }
71 }
72 pub(super) fn protocol(&self) -> &RawIpSocketProtocol<I> {
73 &self.protocol
74 }
75 pub(super) fn external_state(&self) -> &BT::RawIpSocketState<I> {
76 &self.external_state
77 }
78 pub(super) fn into_external_state(self) -> BT::RawIpSocketState<I> {
79 let RawIpSocketState { protocol: _, locked_state: _, counters: _, external_state } = self;
80 external_state
81 }
82
83 pub fn counters(&self) -> &RawIpSocketCounters<I> {
85 &self.counters
86 }
87
88 #[cfg(test)]
90 pub(super) fn locked_state(&self) -> &RwLock<RawIpSocketLockedState<I, D>> {
91 &self.locked_state
92 }
93}
94
95impl<I: IpExt, D: WeakDeviceIdentifier, BT: RawIpSocketsBindingsTypes>
96 OrderedLockAccess<RawIpSocketLockedState<I, D>> for RawIpSocketState<I, D, BT>
97{
98 type Lock = RwLock<RawIpSocketLockedState<I, D>>;
99
100 fn ordered_lock_access(&self) -> OrderedLockRef<'_, Self::Lock> {
101 OrderedLockRef::new(&self.locked_state)
102 }
103}