nullnet_libconfmon/watcher/
impl.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
use super::{
    types::{FileData, FileInfo, Snapshot},
    utils::{get_mtime, make_error_mapper},
};
use crate::{Detector, Error, ErrorKind, Platform, State};
use std::{path::PathBuf, time::Duration};

/// A simple file watcher that monitors changes in a list of files and triggers appropriate handlers.
#[allow(async_fn_in_trait)]
pub trait WatcherHandler {
    /// Defines how the snapshot should be uploaded or processed.
    ///
    /// # Parameters
    /// - `snapshot`: A snapshot of the monitored files, containing file metadata and content.
    ///
    /// # Returns
    /// - `Ok(())` if processing is successful.
    /// - `Err(Error)` if an error occurs while processing the snapshot.
    async fn on_snapshot(&self, snapshot: Snapshot, state: State) -> Result<(), Error>;

    /// Handles errors that occur during file monitoring.
    ///
    /// # Parameters
    /// - `error`: The error encountered during monitoring.
    async fn on_error(&self, error: Error);
}

/// A file watcher that monitors specified files for changes and notifies a handler when updates occur.
pub struct Watcher<H: WatcherHandler> {
    /// List of monitored files and their metadata.
    files: Vec<FileInfo>,
    /// Polling interval (in milliseconds) for checking file modifications.
    poll_interval: u64,
    /// Handler for processing snapshots and handling errors.
    handler: H,
    /// Target platform
    platform: Platform,
}

impl<H: WatcherHandler> Watcher<H> {
    /// Creates a new `Watcher` instance that monitors configuration files for changes.
    ///
    /// # Parameters
    /// - `platform`: The target platform for which the configuration state should be monitored.
    /// - `poll_interval`: Time interval (in milliseconds) to check for file changes.
    /// - `handler`: An instance implementing `WatcherHandler` for handling snapshots and errors.
    ///
    /// # Returns
    /// - `Ok(Self)`: A properly initialized `Watcher` instance.
    /// - `Err(Error)`: If any file metadata cannot be retrieved.
    pub async fn new(platform: Platform, poll_interval: u64, handler: H) -> Result<Self, Error> {
        let mut files = Vec::new();

        for path in get_files_to_monitor(platform) {
            let mtime = get_mtime(&path)
                .await
                .map_err(make_error_mapper(ErrorKind::ErrorInitializingWatcher))?;

            files.push(FileInfo { path, mtime });
        }

        Ok(Self {
            files,
            poll_interval,
            handler,
            platform,
        })
    }

    /// Starts monitoring the files and system state for changes.
    ///
    /// This function continuously checks the monitored files for modifications
    /// and observes system state transitions. When a file modification or a
    /// relevant state transition (from `Draft` to `Applied`) is detected, it
    /// triggers the `on_snapshot` method of the handler.
    ///
    /// # Returns
    /// - `Ok(())` if the monitoring process runs smoothly.
    /// - `Err(Error)` if an unrecoverable error occurs.
    pub async fn watch(&mut self) {
        let mut last_state = Detector::check(self.platform).await;

        loop {
            let mut should_upload = self.check_files_for_changes().await;

            let current_state = Detector::check(self.platform).await;

            if last_state == State::Draft && current_state == State::Applied {
                should_upload = true;
            }

            last_state = current_state;

            if should_upload {
                self.handle_snapshot().await;
            }

            tokio::time::sleep(Duration::from_millis(self.poll_interval)).await;
        }
    }

    /// Checks the monitored files for modifications.
    pub async fn check_files_for_changes(&mut self) -> bool {
        let mut should_upload = false;

        for file in &mut self.files {
            match get_mtime(&file.path).await {
                Ok(current) if current > file.mtime => {
                    file.mtime = current;
                    should_upload = true;
                }
                Err(err) => {
                    self.handler.on_error(err).await;
                }
                _ => {}
            }
        }

        should_upload
    }

    /// Captures and processes a snapshot of the monitored files and system state.
    pub async fn handle_snapshot(&mut self) {
        match self.snapshot().await {
            Ok(snapshot) => {
                let state = Detector::check(self.platform).await;
                if let Err(err) = self.handler.on_snapshot(snapshot, state).await {
                    self.handler.on_error(err).await;
                }
            }
            Err(err) => {
                self.handler.on_error(err).await;
            }
        }
    }

    /// Generates a snapshot of the current state of the monitored files.
    ///
    /// # Returns
    /// - `Ok(Snapshot)`: A snapshot containing the contents and metadata of monitored files.
    /// - `Err(Error)`: If a file cannot be read.
    pub async fn snapshot(&self) -> Result<Snapshot, Error> {
        let mut snapshot = Snapshot::new();

        for file in &self.files {
            let content = tokio::fs::read(&file.path)
                .await
                .map_err(make_error_mapper(ErrorKind::ErrorReadingFile))?;

            let filename = file
                .path
                .file_name()
                .unwrap_or(file.path.as_os_str())
                .to_string_lossy()
                .into_owned();

            snapshot.push(FileData { filename, content });
        }

        Ok(snapshot)
    }

    /// Forces the capture of a snapshot and dispatches it to the handler.
    ///
    /// # Returns
    /// - `Ok(())` if the snapshot was successfully processed by the handler.
    /// - `Err(Error)`: If an error occurs during snapshot creation or handling.
    pub async fn force_capture_and_dispatch(&self) -> Result<(), Error> {
        let snapshot = self.snapshot().await?;
        let state = Detector::check(self.platform).await;

        let result = self.handler.on_snapshot(snapshot, state).await;

        if result.is_err() {
            self.handler
                .on_error(result.as_ref().unwrap_err().clone())
                .await
        }

        result
    }
}

/// Returns a list of files that should be monitored based on the given platform.
///
/// # Parameters
/// - `platform`: The target platform for which files need to be monitored.
///
/// # Returns
/// - `Vec<PathBuf>`: A vector containing paths to the configuration files that need monitoring.
fn get_files_to_monitor(platform: Platform) -> Vec<PathBuf> {
    match platform {
        Platform::PfSense | Platform::OPNsense => vec![PathBuf::from("/conf/config.xml")],
    }
}