netstack3_filter/
state.rs

1// Copyright 2024 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod validation;
6
7use alloc::format;
8use alloc::string::ToString as _;
9use alloc::sync::Arc;
10use alloc::vec::Vec;
11use core::fmt::Debug;
12use core::hash::{Hash, Hasher};
13use core::num::NonZeroU16;
14use core::ops::RangeInclusive;
15
16use derivative::Derivative;
17use net_types::ip::{GenericOverIp, Ip};
18use netstack3_base::{CoreTimerContext, Inspectable, InspectableValue, Inspector as _, MarkDomain};
19use packet_formats::ip::IpExt;
20
21use crate::actions::MarkAction;
22use crate::conntrack::{self, ConnectionDirection};
23use crate::context::{FilterBindingsContext, FilterBindingsTypes};
24use crate::logic::nat::NatConfig;
25use crate::logic::FilterTimerId;
26use crate::matchers::PacketMatcher;
27use crate::state::validation::ValidRoutines;
28
29/// The action to take on a packet.
30#[derive(Derivative)]
31#[derivative(
32    Clone(bound = "DeviceClass: Clone, RuleInfo: Clone"),
33    Debug(bound = "DeviceClass: Debug")
34)]
35pub enum Action<I: IpExt, DeviceClass, RuleInfo> {
36    /// Accept the packet.
37    ///
38    /// This is a terminal action for the current *installed* routine, i.e. no
39    /// further rules will be evaluated for this packet in the installed routine
40    /// (or any subroutines) in which this rule is installed. Subsequent
41    /// routines installed on the same hook will still be evaluated.
42    Accept,
43    /// Drop the packet.
44    ///
45    /// This is a terminal action for the current hook, i.e. no further rules
46    /// will be evaluated for this packet, even in other routines on the same
47    /// hook.
48    Drop,
49    /// Jump from the current routine to the specified uninstalled routine.
50    Jump(UninstalledRoutine<I, DeviceClass, RuleInfo>),
51    /// Stop evaluation of the current routine and return to the calling routine
52    /// (the routine from which the current routine was jumped), continuing
53    /// evaluation at the next rule.
54    ///
55    /// If invoked in an installed routine, equivalent to `Accept`, given
56    /// packets are accepted by default in the absence of any matching rules.
57    Return,
58    /// Redirect the packet to a local socket without changing the packet header
59    /// in any way.
60    ///
61    /// This is a terminal action for the current hook, i.e. no further rules
62    /// will be evaluated for this packet, even in other routines on the same
63    /// hook. However, note that this does not preclude actions on *other* hooks
64    /// from having an effect on this packet; for example, a packet that hits
65    /// TransparentProxy in INGRESS could still be dropped in LOCAL_INGRESS.
66    ///
67    /// This action is only valid in the INGRESS hook. This action is also only
68    /// valid in a rule that ensures the presence of a TCP or UDP header by
69    /// matching on the transport protocol, so that the packet can be properly
70    /// dispatched.
71    ///
72    /// Also note that transparently proxied packets will only be delivered to
73    /// sockets with the transparent socket option enabled.
74    TransparentProxy(TransparentProxy<I>),
75    /// A special case of destination NAT (DNAT) that redirects the packet to
76    /// the local host.
77    ///
78    /// This is a terminal action for all NAT routines on the current hook. The
79    /// packet is redirected by rewriting the destination IP address to one
80    /// owned by the ingress interface (if operating on incoming traffic in
81    /// INGRESS) or the loopback address (if operating on locally-generated
82    /// traffic in LOCAL_EGRESS). If this rule is installed on INGRESS and no IP
83    /// address is assigned to the incoming interface, the packet is dropped.
84    ///
85    /// As with all DNAT actions, this action is only valid in the INGRESS and
86    /// LOCAL_EGRESS hooks. If a destination port is specified, this action is
87    /// only valid in a rule that ensures the presence of a TCP or UDP header by
88    /// matching on the transport protocol, so that the destination port can be
89    /// rewritten.
90    ///
91    /// This is analogous to the `redirect` statement in Netfilter.
92    Redirect {
93        /// The optional range of destination ports used to rewrite the packet.
94        ///
95        /// If specified, the destination port of the packet will be rewritten
96        /// to some randomly chosen port in the range. If absent, the
97        /// destination port of the packet will not be rewritten.
98        dst_port: Option<RangeInclusive<NonZeroU16>>,
99    },
100    /// A special case of source NAT (SNAT) that reassigns the source IP address
101    /// of the packet to an address that is assigned to the outgoing interface.
102    ///
103    /// This is a terminal action for all NAT routines on the current hook. If
104    /// no address is assigned to the outgoing interface, the packet will be
105    /// dropped.
106    ///
107    /// This action is only valid in the EGRESS hook. If a source port range is
108    /// specified, this action is only valid in a rule that ensures the presence
109    /// of a TCP or UDP header by matching on the transport protocol, so that
110    /// the source port can be rewritten.
111    ///
112    /// This is analogous to the `masquerade` statement in Netfilter.
113    Masquerade {
114        /// The optional range of source ports used to rewrite the packet.
115        ///
116        /// The source port will be rewritten if necessary to ensure the
117        /// packet's flow does not conflict with an existing tracked connection.
118        /// Note that the source port may be rewritten whether or not this range
119        /// is specified.
120        ///
121        /// If specified, this overrides the default behavior and restricts the
122        /// range of possible values to which the source port can be rewritten.
123        src_port: Option<RangeInclusive<NonZeroU16>>,
124    },
125    /// Applies the mark action to the given mark domain.
126    ///
127    /// This is a non-terminal action for both routines and hooks. This is also
128    /// only available in [`IpRoutines`] because [`NatRoutines`] only runs on
129    /// the first packet in a connection and it is likely a misconfiguration
130    /// that packets after the first are marked differently or unmarked.
131    ///
132    /// Note: If we find use cases that justify this being in [`NatRoutines`] we
133    /// should relax this limitation and support it.
134    ///
135    /// This is analogous to the `mark` statement in Netfilter.
136    Mark {
137        /// The domain to apply the mark action.
138        domain: MarkDomain,
139        /// The action to apply.
140        action: MarkAction,
141    },
142}
143
144/// Transparently intercept the packet and deliver it to a local socket without
145/// changing the packet header.
146///
147/// When a local address is specified, it is the bound address of the local
148/// socket to redirect the packet to. When absent, the destination IP address of
149/// the packet is used for local delivery.
150///
151/// When a local port is specified, it is the bound port of the local socket to
152/// redirect the packet to. When absent, the destination port of the packet is
153/// used for local delivery.
154#[derive(Debug, Clone)]
155#[allow(missing_docs)]
156pub enum TransparentProxy<I: IpExt> {
157    LocalAddr(I::Addr),
158    LocalPort(NonZeroU16),
159    LocalAddrAndPort(I::Addr, NonZeroU16),
160}
161
162impl<I: IpExt, DeviceClass: Debug> Inspectable for Action<I, DeviceClass, ()> {
163    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
164        let value = match self {
165            Self::Accept
166            | Self::Drop
167            | Self::Return
168            | Self::TransparentProxy(_)
169            | Self::Redirect { .. }
170            | Self::Masquerade { .. }
171            | Self::Mark { .. } => {
172                format!("{self:?}")
173            }
174            Self::Jump(UninstalledRoutine { routine: _, id }) => {
175                format!("Jump(UninstalledRoutine({id:?}))")
176            }
177        };
178        inspector.record_string("action", value);
179    }
180}
181
182/// A handle to a [`Routine`] that is not installed in a particular hook, and
183/// therefore is only run if jumped to from another routine.
184#[derive(Derivative)]
185#[derivative(Clone(bound = ""), Debug(bound = "DeviceClass: Debug"))]
186pub struct UninstalledRoutine<I: IpExt, DeviceClass, RuleInfo> {
187    pub(crate) routine: Arc<Routine<I, DeviceClass, RuleInfo>>,
188    id: usize,
189}
190
191impl<I: IpExt, DeviceClass, RuleInfo> UninstalledRoutine<I, DeviceClass, RuleInfo> {
192    /// Creates a new uninstalled routine with the provided contents.
193    pub fn new(rules: Vec<Rule<I, DeviceClass, RuleInfo>>, id: usize) -> Self {
194        Self { routine: Arc::new(Routine { rules }), id }
195    }
196
197    /// Returns the inner routine.
198    pub fn get(&self) -> &Routine<I, DeviceClass, RuleInfo> {
199        &*self.routine
200    }
201}
202
203impl<I: IpExt, DeviceClass, RuleInfo> PartialEq for UninstalledRoutine<I, DeviceClass, RuleInfo> {
204    fn eq(&self, other: &Self) -> bool {
205        let Self { routine: lhs, id: _ } = self;
206        let Self { routine: rhs, id: _ } = other;
207        Arc::ptr_eq(lhs, rhs)
208    }
209}
210
211impl<I: IpExt, DeviceClass, RuleInfo> Eq for UninstalledRoutine<I, DeviceClass, RuleInfo> {}
212
213impl<I: IpExt, DeviceClass, RuleInfo> Hash for UninstalledRoutine<I, DeviceClass, RuleInfo> {
214    fn hash<H: Hasher>(&self, state: &mut H) {
215        let Self { routine, id: _ } = self;
216        Arc::as_ptr(routine).hash(state)
217    }
218}
219
220impl<I: IpExt, DeviceClass: Debug> Inspectable for UninstalledRoutine<I, DeviceClass, ()> {
221    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
222        let Self { routine, id } = self;
223        inspector.record_child(&id.to_string(), |inspector| {
224            inspector.delegate_inspectable(&**routine);
225        });
226    }
227}
228
229/// A set of criteria (matchers) and a resultant action to take if a given
230/// packet matches.
231#[derive(Derivative, GenericOverIp)]
232#[generic_over_ip(I, Ip)]
233#[derivative(
234    Clone(bound = "DeviceClass: Clone, RuleInfo: Clone"),
235    Debug(bound = "DeviceClass: Debug")
236)]
237pub struct Rule<I: IpExt, DeviceClass, RuleInfo> {
238    /// The criteria that a packet must match for the action to be executed.
239    pub matcher: PacketMatcher<I, DeviceClass>,
240    /// The action to take on a matching packet.
241    pub action: Action<I, DeviceClass, RuleInfo>,
242    /// Opaque information about this rule for use when validating and
243    /// converting state provided by Bindings into Core filtering state. This is
244    /// only used when installing filtering state, and allows Core to report to
245    /// Bindings which rule caused a particular error. It is zero-sized for
246    /// validated state.
247    #[derivative(Debug = "ignore")]
248    pub validation_info: RuleInfo,
249}
250
251impl<I: IpExt, DeviceClass: Debug> Inspectable for Rule<I, DeviceClass, ()> {
252    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
253        let Self { matcher, action, validation_info: () } = self;
254        inspector.record_child("matchers", |inspector| {
255            let PacketMatcher {
256                in_interface,
257                out_interface,
258                src_address,
259                dst_address,
260                transport_protocol,
261            } = matcher;
262
263            fn record_matcher<Inspector: netstack3_base::Inspector, M: InspectableValue>(
264                inspector: &mut Inspector,
265                name: &str,
266                matcher: &Option<M>,
267            ) {
268                if let Some(matcher) = matcher {
269                    inspector.record_inspectable_value(name, matcher);
270                }
271            }
272
273            record_matcher(inspector, "in_interface", in_interface);
274            record_matcher(inspector, "out_interface", out_interface);
275            record_matcher(inspector, "src_address", src_address);
276            record_matcher(inspector, "dst_address", dst_address);
277            record_matcher(inspector, "transport_protocol", transport_protocol);
278        });
279        inspector.delegate_inspectable(action);
280    }
281}
282
283/// A sequence of [`Rule`]s.
284#[derive(Derivative, GenericOverIp)]
285#[generic_over_ip(I, Ip)]
286#[derivative(
287    Clone(bound = "DeviceClass: Clone, RuleInfo: Clone"),
288    Debug(bound = "DeviceClass: Debug")
289)]
290pub struct Routine<I: IpExt, DeviceClass, RuleInfo> {
291    /// The rules to be executed in order.
292    pub rules: Vec<Rule<I, DeviceClass, RuleInfo>>,
293}
294
295impl<I: IpExt, DeviceClass: Debug> Inspectable for Routine<I, DeviceClass, ()> {
296    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
297        let Self { rules } = self;
298        inspector.record_usize("rules", rules.len());
299        for rule in rules {
300            inspector.record_unnamed_child(|inspector| inspector.delegate_inspectable(rule));
301        }
302    }
303}
304
305/// A particular entry point for packet processing in which filtering routines
306/// are installed.
307#[derive(Derivative, GenericOverIp)]
308#[generic_over_ip(I, Ip)]
309#[derivative(Default(bound = ""), Debug(bound = "DeviceClass: Debug"))]
310pub struct Hook<I: IpExt, DeviceClass, RuleInfo> {
311    /// The routines to be executed in order.
312    pub routines: Vec<Routine<I, DeviceClass, RuleInfo>>,
313}
314
315impl<I: IpExt, DeviceClass: Debug> Inspectable for Hook<I, DeviceClass, ()> {
316    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
317        let Self { routines } = self;
318        inspector.record_usize("routines", routines.len());
319        for routine in routines {
320            inspector.record_unnamed_child(|inspector| {
321                inspector.delegate_inspectable(routine);
322            });
323        }
324    }
325}
326
327/// Routines that perform ordinary IP filtering.
328#[derive(Derivative)]
329#[derivative(Default(bound = ""), Debug(bound = "DeviceClass: Debug"))]
330pub struct IpRoutines<I: IpExt, DeviceClass, RuleInfo> {
331    /// Occurs for incoming traffic before a routing decision has been made.
332    pub ingress: Hook<I, DeviceClass, RuleInfo>,
333    /// Occurs for incoming traffic that is destined for the local host.
334    pub local_ingress: Hook<I, DeviceClass, RuleInfo>,
335    /// Occurs for incoming traffic that is destined for another node.
336    pub forwarding: Hook<I, DeviceClass, RuleInfo>,
337    /// Occurs for locally-generated traffic before a final routing decision has
338    /// been made.
339    pub local_egress: Hook<I, DeviceClass, RuleInfo>,
340    /// Occurs for all outgoing traffic after a routing decision has been made.
341    pub egress: Hook<I, DeviceClass, RuleInfo>,
342}
343
344impl<I: IpExt, DeviceClass: Debug> Inspectable for IpRoutines<I, DeviceClass, ()> {
345    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
346        let Self { ingress, local_ingress, forwarding, local_egress, egress } = self;
347
348        inspector.record_child("ingress", |inspector| inspector.delegate_inspectable(ingress));
349        inspector.record_child("local_ingress", |inspector| {
350            inspector.delegate_inspectable(local_ingress)
351        });
352        inspector
353            .record_child("forwarding", |inspector| inspector.delegate_inspectable(forwarding));
354        inspector
355            .record_child("local_egress", |inspector| inspector.delegate_inspectable(local_egress));
356        inspector.record_child("egress", |inspector| inspector.delegate_inspectable(egress));
357    }
358}
359
360/// Routines that can perform NAT.
361///
362/// Note that NAT routines are only executed *once* for a given connection, for
363/// the first packet in the flow.
364#[derive(Derivative)]
365#[derivative(Default(bound = ""), Debug(bound = "DeviceClass: Debug"))]
366pub struct NatRoutines<I: IpExt, DeviceClass, RuleInfo> {
367    /// Occurs for incoming traffic before a routing decision has been made.
368    pub ingress: Hook<I, DeviceClass, RuleInfo>,
369    /// Occurs for incoming traffic that is destined for the local host.
370    pub local_ingress: Hook<I, DeviceClass, RuleInfo>,
371    /// Occurs for locally-generated traffic before a final routing decision has
372    /// been made.
373    pub local_egress: Hook<I, DeviceClass, RuleInfo>,
374    /// Occurs for all outgoing traffic after a routing decision has been made.
375    pub egress: Hook<I, DeviceClass, RuleInfo>,
376}
377
378impl<I: IpExt, DeviceClass, RuleInfo> NatRoutines<I, DeviceClass, RuleInfo> {
379    pub(crate) fn contains_rules(&self) -> bool {
380        let Self { ingress, local_ingress, local_egress, egress } = self;
381
382        let hook_contains_rules =
383            |hook: &Hook<_, _, _>| hook.routines.iter().any(|routine| !routine.rules.is_empty());
384        hook_contains_rules(&ingress)
385            || hook_contains_rules(&local_ingress)
386            || hook_contains_rules(&local_egress)
387            || hook_contains_rules(&egress)
388    }
389}
390
391impl<I: IpExt, DeviceClass: Debug> Inspectable for NatRoutines<I, DeviceClass, ()> {
392    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
393        let Self { ingress, local_ingress, local_egress, egress } = self;
394
395        inspector.record_child("ingress", |inspector| inspector.delegate_inspectable(ingress));
396        inspector.record_child("local_ingress", |inspector| {
397            inspector.delegate_inspectable(local_ingress)
398        });
399        inspector
400            .record_child("local_egress", |inspector| inspector.delegate_inspectable(local_egress));
401        inspector.record_child("egress", |inspector| inspector.delegate_inspectable(egress));
402    }
403}
404
405/// IP version-specific filtering routine state.
406#[derive(Derivative, GenericOverIp)]
407#[generic_over_ip(I, Ip)]
408#[derivative(Default(bound = ""), Debug(bound = "DeviceClass: Debug"))]
409pub struct Routines<I: IpExt, DeviceClass, RuleInfo> {
410    /// Routines that perform IP filtering.
411    pub ip: IpRoutines<I, DeviceClass, RuleInfo>,
412    /// Routines that perform IP filtering and NAT.
413    pub nat: NatRoutines<I, DeviceClass, RuleInfo>,
414}
415
416/// A one-way boolean toggle that can only go from `false` to `true`.
417///
418/// Once it has been flipped to `true`, it will remain in that state forever.
419#[derive(Default)]
420pub struct OneWayBoolean(bool);
421
422impl OneWayBoolean {
423    /// A [`OneWayBoolean`] that is enabled on creation.
424    pub const TRUE: Self = Self(true);
425
426    /// Get the value of the boolean.
427    pub fn get(&self) -> bool {
428        let Self(inner) = self;
429        *inner
430    }
431
432    /// Toggle the boolean to `true`.
433    ///
434    /// This operation is idempotent: even though the [`OneWayBoolean`]'s value will
435    /// only ever change from `false` to `true` once, this method can be called any
436    /// number of times safely and the value will remain `true`.
437    pub fn set(&mut self) {
438        let Self(inner) = self;
439        *inner = true;
440    }
441}
442
443/// IP version-specific filtering state.
444pub struct State<I: IpExt, A, BT: FilterBindingsTypes> {
445    /// Routines used for filtering packets that are installed on hooks.
446    pub installed_routines: ValidRoutines<I, BT::DeviceClass>,
447    /// Routines that are only executed if jumped to from other routines.
448    ///
449    /// Jump rules refer to their targets by holding a reference counted pointer
450    /// to the inner routine; we hold this index of all uninstalled routines
451    /// that have any references in order to report them in inspect data.
452    pub(crate) uninstalled_routines: Vec<UninstalledRoutine<I, BT::DeviceClass, ()>>,
453    /// Connection tracking state.
454    pub conntrack: conntrack::Table<I, NatConfig<I, A>, BT>,
455    /// One-way boolean toggle indicating whether any rules have ever been added to
456    /// an installed NAT routine. If not, performing NAT can safely be skipped.
457    ///
458    /// This is useful because if any NAT is being performed, we have to check
459    /// whether it's necessary to perform implicit NAT for *all* traffic -- even if
460    /// it doesn't match any NAT rules -- to avoid conflicting tracked connections.
461    /// If we know that no NAT is being performed at all, this extra work can be
462    /// avoided.
463    ///
464    /// Note that this value will only ever go from false to true; it does not
465    /// indicate whether any NAT rules are *currently* installed. This avoids a race
466    /// condition where NAT rules are removed but connections are still being NATed
467    /// based on those rules, and therefore must be considered when creating new
468    /// connection tracking entries.
469    pub nat_installed: OneWayBoolean,
470}
471
472impl<I: IpExt, A, BC: FilterBindingsContext> State<I, A, BC> {
473    /// Create a new State.
474    pub fn new<CC: CoreTimerContext<FilterTimerId<I>, BC>>(bindings_ctx: &mut BC) -> Self {
475        Self {
476            installed_routines: Default::default(),
477            uninstalled_routines: Default::default(),
478            conntrack: conntrack::Table::new::<CC>(bindings_ctx),
479            nat_installed: OneWayBoolean::default(),
480        }
481    }
482}
483
484impl<I: IpExt, A: InspectableValue, BT: FilterBindingsTypes> Inspectable for State<I, A, BT> {
485    fn record<Inspector: netstack3_base::Inspector>(&self, inspector: &mut Inspector) {
486        let Self { installed_routines, uninstalled_routines, conntrack, nat_installed: _ } = self;
487        let Routines { ip, nat } = installed_routines.get();
488
489        inspector.record_child("IP", |inspector| inspector.delegate_inspectable(ip));
490        inspector.record_child("NAT", |inspector| inspector.delegate_inspectable(nat));
491        inspector.record_child("uninstalled", |inspector| {
492            inspector.record_usize("routines", uninstalled_routines.len());
493            for routine in uninstalled_routines {
494                inspector.delegate_inspectable(routine);
495            }
496        });
497
498        inspector.record_child("conntrack", |inspector| {
499            inspector.delegate_inspectable(conntrack);
500        });
501    }
502}
503
504/// A trait for interacting with the pieces of packet metadata that are
505/// important for filtering.
506pub trait FilterIpMetadata<I: IpExt, A, BT: FilterBindingsTypes>: FilterMarkMetadata {
507    /// Removes the conntrack connection and packet direction, if they exist.
508    fn take_connection_and_direction(
509        &mut self,
510    ) -> Option<(conntrack::Connection<I, NatConfig<I, A>, BT>, ConnectionDirection)>;
511
512    /// Puts a new conntrack connection and packet direction into the metadata
513    /// struct, returning the previous connection value, if one existed.
514    fn replace_connection_and_direction(
515        &mut self,
516        conn: conntrack::Connection<I, NatConfig<I, A>, BT>,
517        direction: ConnectionDirection,
518    ) -> Option<conntrack::Connection<I, NatConfig<I, A>, BT>>;
519}
520
521/// A trait for interacting with packet mark metadata.
522//
523// The reason why we split this trait from the `FilterIpMetadata` is to avoid
524// introducing trait bounds and type parameters into methods that only need
525// to change the mark, for example, all the `check_routine*` methods. Those
526// methods does not need the ability to take conntrack related information. This
527// becomes a meaningful simplification for those cases.
528pub trait FilterMarkMetadata {
529    /// Applies the mark action to the metadata.
530    fn apply_mark_action(&mut self, domain: MarkDomain, action: MarkAction);
531}