netlink_packet_route/neighbour/
message.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// SPDX-License-Identifier: MIT

use super::super::AddressFamily;
use super::{NeighbourAttribute, NeighbourError, NeighbourHeader, NeighbourMessageBuffer};
use netlink_packet_utils::traits::{Emitable, Parseable, ParseableParametrized};

#[derive(Debug, PartialEq, Eq, Clone, Default)]
#[non_exhaustive]
pub struct NeighbourMessage {
    pub header: NeighbourHeader,
    pub attributes: Vec<NeighbourAttribute>,
}

impl Emitable for NeighbourMessage {
    fn buffer_len(&self) -> usize {
        self.header.buffer_len() + self.attributes.as_slice().buffer_len()
    }

    fn emit(&self, buffer: &mut [u8]) {
        self.header.emit(buffer);
        self.attributes.as_slice().emit(&mut buffer[self.header.buffer_len()..]);
    }
}

impl<'a, T: AsRef<[u8]> + 'a> Parseable<NeighbourMessageBuffer<&'a T>> for NeighbourMessage {
    type Error = NeighbourError;
    fn parse(buf: &NeighbourMessageBuffer<&'a T>) -> Result<Self, NeighbourError> {
        // unwrap: parsing the header is always ok.
        let header = NeighbourHeader::parse(buf).unwrap();
        let address_family = header.family;
        Ok(NeighbourMessage {
            header,
            attributes: Vec::<NeighbourAttribute>::parse_with_param(buf, address_family)?,
        })
    }
}

impl<'a, T: AsRef<[u8]> + 'a> ParseableParametrized<NeighbourMessageBuffer<&'a T>, AddressFamily>
    for Vec<NeighbourAttribute>
{
    type Error = NeighbourError;
    fn parse_with_param(
        buf: &NeighbourMessageBuffer<&'a T>,
        address_family: AddressFamily,
    ) -> Result<Self, NeighbourError> {
        let mut attributes = vec![];
        for nla_buf in buf.attributes() {
            attributes.push(NeighbourAttribute::parse_with_param(&nla_buf?, address_family)?);
        }
        Ok(attributes)
    }
}