|
@@ -28,13 +28,17 @@ use super::packet::*;
|
|
use core::result::Result;
|
|
use core::result::Result;
|
|
use heapless::{LinearMap, Vec};
|
|
use heapless::{LinearMap, Vec};
|
|
|
|
|
|
|
|
+#[cfg(feature = "_proto-fragmentation")]
|
|
|
|
+use super::fragmentation::FragKey;
|
|
#[cfg(any(feature = "proto-ipv4", feature = "proto-sixlowpan"))]
|
|
#[cfg(any(feature = "proto-ipv4", feature = "proto-sixlowpan"))]
|
|
use super::fragmentation::PacketAssemblerSet;
|
|
use super::fragmentation::PacketAssemblerSet;
|
|
|
|
+use super::fragmentation::{Fragmenter, FragmentsBuffer};
|
|
|
|
+
|
|
#[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
|
|
#[cfg(any(feature = "medium-ethernet", feature = "medium-ieee802154"))]
|
|
use super::neighbor::{Answer as NeighborAnswer, Cache as NeighborCache};
|
|
use super::neighbor::{Answer as NeighborAnswer, Cache as NeighborCache};
|
|
use super::socket_set::SocketSet;
|
|
use super::socket_set::SocketSet;
|
|
use crate::config::{
|
|
use crate::config::{
|
|
- FRAGMENTATION_BUFFER_SIZE, IFACE_MAX_ADDR_COUNT, IFACE_MAX_MULTICAST_GROUP_COUNT,
|
|
|
|
|
|
+ IFACE_MAX_ADDR_COUNT, IFACE_MAX_MULTICAST_GROUP_COUNT,
|
|
IFACE_MAX_SIXLOWPAN_ADDRESS_CONTEXT_COUNT,
|
|
IFACE_MAX_SIXLOWPAN_ADDRESS_CONTEXT_COUNT,
|
|
};
|
|
};
|
|
use crate::iface::Routes;
|
|
use crate::iface::Routes;
|
|
@@ -48,160 +52,6 @@ use crate::time::{Duration, Instant};
|
|
|
|
|
|
use crate::wire::*;
|
|
use crate::wire::*;
|
|
|
|
|
|
-#[cfg(feature = "_proto-fragmentation")]
|
|
|
|
-#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Clone, Copy)]
|
|
|
|
-#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
-pub(crate) enum FragKey {
|
|
|
|
- #[cfg(feature = "proto-ipv4-fragmentation")]
|
|
|
|
- Ipv4(Ipv4FragKey),
|
|
|
|
- #[cfg(feature = "proto-sixlowpan-fragmentation")]
|
|
|
|
- Sixlowpan(SixlowpanFragKey),
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-pub(crate) struct FragmentsBuffer {
|
|
|
|
- #[cfg(feature = "proto-sixlowpan")]
|
|
|
|
- decompress_buf: [u8; sixlowpan::MAX_DECOMPRESSED_LEN],
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "_proto-fragmentation")]
|
|
|
|
- pub(crate) assembler: PacketAssemblerSet<FragKey>,
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "_proto-fragmentation")]
|
|
|
|
- reassembly_timeout: Duration,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#[cfg(not(feature = "_proto-fragmentation"))]
|
|
|
|
-pub(crate) struct Fragmenter {}
|
|
|
|
-
|
|
|
|
-#[cfg(not(feature = "_proto-fragmentation"))]
|
|
|
|
-impl Fragmenter {
|
|
|
|
- pub(crate) fn new() -> Self {
|
|
|
|
- Self {}
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#[cfg(feature = "_proto-fragmentation")]
|
|
|
|
-pub(crate) struct Fragmenter {
|
|
|
|
- /// The buffer that holds the unfragmented 6LoWPAN packet.
|
|
|
|
- buffer: [u8; FRAGMENTATION_BUFFER_SIZE],
|
|
|
|
- /// The size of the packet without the IEEE802.15.4 header and the fragmentation headers.
|
|
|
|
- packet_len: usize,
|
|
|
|
- /// The amount of bytes that already have been transmitted.
|
|
|
|
- sent_bytes: usize,
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "proto-ipv4-fragmentation")]
|
|
|
|
- ipv4: Ipv4Fragmenter,
|
|
|
|
- #[cfg(feature = "proto-sixlowpan-fragmentation")]
|
|
|
|
- sixlowpan: SixlowpanFragmenter,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#[cfg(feature = "proto-ipv4-fragmentation")]
|
|
|
|
-pub(crate) struct Ipv4Fragmenter {
|
|
|
|
- /// The IPv4 representation.
|
|
|
|
- repr: Ipv4Repr,
|
|
|
|
- /// The destination hardware address.
|
|
|
|
- #[cfg(feature = "medium-ethernet")]
|
|
|
|
- dst_hardware_addr: EthernetAddress,
|
|
|
|
- /// The offset of the next fragment.
|
|
|
|
- frag_offset: u16,
|
|
|
|
- /// The identifier of the stream.
|
|
|
|
- ident: u16,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#[cfg(feature = "proto-sixlowpan-fragmentation")]
|
|
|
|
-pub(crate) struct SixlowpanFragmenter {
|
|
|
|
- /// The datagram size that is used for the fragmentation headers.
|
|
|
|
- datagram_size: u16,
|
|
|
|
- /// The datagram tag that is used for the fragmentation headers.
|
|
|
|
- datagram_tag: u16,
|
|
|
|
- datagram_offset: usize,
|
|
|
|
-
|
|
|
|
- /// The size of the FRAG_N packets.
|
|
|
|
- fragn_size: usize,
|
|
|
|
-
|
|
|
|
- /// The link layer IEEE802.15.4 source address.
|
|
|
|
- ll_dst_addr: Ieee802154Address,
|
|
|
|
- /// The link layer IEEE802.15.4 source address.
|
|
|
|
- ll_src_addr: Ieee802154Address,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#[cfg(feature = "_proto-fragmentation")]
|
|
|
|
-impl Fragmenter {
|
|
|
|
- pub(crate) fn new() -> Self {
|
|
|
|
- Self {
|
|
|
|
- buffer: [0u8; FRAGMENTATION_BUFFER_SIZE],
|
|
|
|
- packet_len: 0,
|
|
|
|
- sent_bytes: 0,
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "proto-ipv4-fragmentation")]
|
|
|
|
- ipv4: Ipv4Fragmenter {
|
|
|
|
- repr: Ipv4Repr {
|
|
|
|
- src_addr: Ipv4Address::default(),
|
|
|
|
- dst_addr: Ipv4Address::default(),
|
|
|
|
- next_header: IpProtocol::Unknown(0),
|
|
|
|
- payload_len: 0,
|
|
|
|
- hop_limit: 0,
|
|
|
|
- },
|
|
|
|
- #[cfg(feature = "medium-ethernet")]
|
|
|
|
- dst_hardware_addr: EthernetAddress::default(),
|
|
|
|
- frag_offset: 0,
|
|
|
|
- ident: 0,
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "proto-sixlowpan-fragmentation")]
|
|
|
|
- sixlowpan: SixlowpanFragmenter {
|
|
|
|
- datagram_size: 0,
|
|
|
|
- datagram_tag: 0,
|
|
|
|
- datagram_offset: 0,
|
|
|
|
- fragn_size: 0,
|
|
|
|
- ll_dst_addr: Ieee802154Address::Absent,
|
|
|
|
- ll_src_addr: Ieee802154Address::Absent,
|
|
|
|
- },
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Return `true` when everything is transmitted.
|
|
|
|
- #[inline]
|
|
|
|
- fn finished(&self) -> bool {
|
|
|
|
- self.packet_len == self.sent_bytes
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Returns `true` when there is nothing to transmit.
|
|
|
|
- #[inline]
|
|
|
|
- fn is_empty(&self) -> bool {
|
|
|
|
- self.packet_len == 0
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Reset the buffer.
|
|
|
|
- fn reset(&mut self) {
|
|
|
|
- self.packet_len = 0;
|
|
|
|
- self.sent_bytes = 0;
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "proto-ipv4-fragmentation")]
|
|
|
|
- {
|
|
|
|
- self.ipv4.repr = Ipv4Repr {
|
|
|
|
- src_addr: Ipv4Address::default(),
|
|
|
|
- dst_addr: Ipv4Address::default(),
|
|
|
|
- next_header: IpProtocol::Unknown(0),
|
|
|
|
- payload_len: 0,
|
|
|
|
- hop_limit: 0,
|
|
|
|
- };
|
|
|
|
- #[cfg(feature = "medium-ethernet")]
|
|
|
|
- {
|
|
|
|
- self.ipv4.dst_hardware_addr = EthernetAddress::default();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- #[cfg(feature = "proto-sixlowpan-fragmentation")]
|
|
|
|
- {
|
|
|
|
- self.sixlowpan.datagram_size = 0;
|
|
|
|
- self.sixlowpan.datagram_tag = 0;
|
|
|
|
- self.sixlowpan.fragn_size = 0;
|
|
|
|
- self.sixlowpan.ll_dst_addr = Ieee802154Address::Absent;
|
|
|
|
- self.sixlowpan.ll_src_addr = Ieee802154Address::Absent;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
macro_rules! check {
|
|
macro_rules! check {
|
|
($e:expr) => {
|
|
($e:expr) => {
|
|
match $e {
|
|
match $e {
|