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
use std::fs;
use std::env;
use std::ffi::CString;
use std::os::unix::fs::MetadataExt;

use users;
use libc::{self, uid_t, gid_t};

pub mod config;
mod error;
#[cfg(target_os="linux")]
pub mod seccomp;
#[cfg(target_os="linux")]
mod syscalls;

pub use self::error::Error;


pub fn activate_stage1() -> Result<(), Error> {
    #[cfg(target_os="linux")]
    seccomp::activate_stage1()?;

    info!("stage 1/2 is active");

    Ok(())
}

pub fn chroot(path: &str) -> Result<(), Error> {
    let metadata = match fs::metadata(path) {
        Ok(meta) => meta,
        Err(_) => return Err(Error::Chroot),
    };

    if !metadata.is_dir() {
        error!("chroot target is no directory");
        return Err(Error::Chroot);
    }

    if metadata.uid() != 0 {
        error!("chroot target isn't owned by root");
        return Err(Error::Chroot);
    }

    if metadata.mode() & 0o22 != 0 {
        error!("chroot is writable by group or world");
        return Err(Error::Chroot);
    }

    let path = CString::new(path).unwrap();
    let ret = unsafe { libc::chroot(path.as_ptr()) };

    if ret != 0 {
        Err(Error::Chroot)
    } else {
        match env::set_current_dir("/") {
            Ok(_) => Ok(()),
            Err(_) => Err(Error::Chroot),
        }
    }
}

pub fn setresuid(uid: uid_t) -> Result<(), Error> {
    let ret = unsafe { libc::setresuid(uid, uid, uid) };

    if ret != 0 {
        Err(Error::FFI)
    } else {
        Ok(())
    }
}

pub fn setresgid(gid: gid_t) -> Result<(), Error> {
    let ret = unsafe { libc::setresgid(gid, gid, gid) };

    if ret != 0 {
        Err(Error::FFI)
    } else {
        Ok(())
    }
}

pub fn setgroups(groups: &[gid_t]) -> Result<(), Error> {
    let ret = unsafe { libc::setgroups(groups.len(), groups.as_ptr()) };

    if ret < 0 {
        Err(Error::FFI)
    } else {
        Ok(())
    }
}

pub fn getgroups() -> Result<Vec<gid_t>, ()> {
    let size = 128;
    let mut gids: Vec<gid_t> = Vec::with_capacity(size as usize);

    let ret = unsafe { libc::getgroups(size, gids.as_mut_ptr()) };

    if ret < 0 {
        Err(())
    } else {
        let groups = (0..ret)
            .map(|i| unsafe { gids.get_unchecked(i as usize) }.to_owned())
            .collect();
        Ok(groups)
    }
}

pub fn id() -> String {
    let uid = users::get_current_uid();
    let euid = users::get_effective_uid();
    let gid = users::get_current_gid();
    let egid = users::get_effective_gid();
    let groups = getgroups().unwrap();

    format!(
        "uid={:?} euid={:?} gid={:?} egid={:?} groups={:?}",
        uid,
        euid,
        gid,
        egid,
        groups
    )
}

#[inline]
fn is_root() -> bool {
    users::get_current_uid() == 0
}

fn apply_config(config: config::Config) -> Result<(), Error> {
    debug!("got config: {:?}", config);

    let user = match config.sandbox.user {
        Some(user) => {
            let user = match users::get_user_by_name(&user) {
                Some(user) => user,
                None => return Err(Error::InvalidUser),
            };
            Some((user.uid(), user.primary_group_id()))
        },
        _ => None,
    };

    if let (true, Some(path)) = (is_root(), config.sandbox.chroot) {
        info!("starting chroot: {:?}", path);
        chroot(&path)?;
        info!("successfully chrooted");
    }

    match (is_root(), user) {
        (true, Some((uid, gid))) => {
            info!("id: {}", id());
            info!("setting uid to {:?}", uid);
            setgroups(&Vec::new())?;
            setresgid(gid)?;
            setresuid(uid)?;
            info!("id: {}", id());
        },
        (true, None) => {
            warn!("executing as root!");
        },
        (false, _) => {
            info!("can't drop privileges, executing as {}", id());
        },
    };

    Ok(())
}

pub fn activate_stage2() -> Result<(), Error> {
    let config = config::find().map_or_else(
        || {
            warn!("couldn't find config");
            Ok(config::Config::default())
        },
        |config_path| {
            config::load(&config_path)
        },
    )?;

    apply_config(config)?;

    #[cfg(target_os="linux")]
    seccomp::activate_stage2()?;

    info!("stage 2/2 is active");

    Ok(())
}