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
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

use std::path::Path;

use crate::{device::CryptDevice, err::LibcryptErr, format::EncryptionFormat};

/// Handle for backup operations on a device
pub struct CryptBackup<'a> {
    reference: &'a mut CryptDevice,
}

impl<'a> CryptBackup<'a> {
    pub(crate) fn new(reference: &'a mut CryptDevice) -> Self {
        CryptBackup { reference }
    }

    /// Back up header and keyslots to a file
    pub fn header_backup(
        &mut self,
        requested_type: EncryptionFormat,
        backup_file: &Path,
    ) -> Result<(), LibcryptErr> {
        let backup_file_cstring = path_to_cstring!(backup_file)?;
        errno!(unsafe {
            libcryptsetup_rs_sys::crypt_header_backup(
                self.reference.as_ptr(),
                requested_type.as_ptr(),
                backup_file_cstring.as_ptr(),
            )
        })
    }

    /// Restore header and keyslots from a file
    pub fn header_restore(
        &mut self,
        requested_type: EncryptionFormat,
        backup_file: &Path,
    ) -> Result<(), LibcryptErr> {
        let backup_file_cstring = path_to_cstring!(backup_file)?;
        errno!(unsafe {
            libcryptsetup_rs_sys::crypt_header_restore(
                self.reference.as_ptr(),
                requested_type.as_ptr(),
                backup_file_cstring.as_ptr(),
            )
        })
    }
}