1use crate::backend::c;
4use crate::ffi;
5
6pub type RawGid = ffi::c_uint;
8pub type RawUid = ffi::c_uint;
10
11#[repr(transparent)]
13#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash)]
14pub struct Uid(RawUid);
15
16#[repr(transparent)]
18#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash)]
19pub struct Gid(RawGid);
20
21impl Uid {
22 pub const ROOT: Self = Self(0);
24
25 #[inline]
29 pub fn from_raw(raw: RawUid) -> Self {
30 debug_assert_ne!(raw, !0);
31 Self(raw)
32 }
33
34 #[inline]
38 pub const fn from_raw_unchecked(raw: RawUid) -> Self {
39 Self(raw)
40 }
41
42 #[inline]
44 pub const fn as_raw(self) -> RawUid {
45 self.0
46 }
47
48 #[inline]
50 pub const fn is_root(self) -> bool {
51 self.0 == Self::ROOT.0
52 }
53}
54
55impl Gid {
56 pub const ROOT: Self = Self(0);
58
59 #[inline]
63 pub fn from_raw(raw: RawGid) -> Self {
64 debug_assert_ne!(raw, !0);
65 Self(raw)
66 }
67
68 #[inline]
72 pub const fn from_raw_unchecked(raw: RawGid) -> Self {
73 Self(raw)
74 }
75
76 #[inline]
78 pub const fn as_raw(self) -> RawGid {
79 self.0
80 }
81
82 #[inline]
84 pub const fn is_root(self) -> bool {
85 self.0 == Self::ROOT.0
86 }
87}
88
89pub(crate) fn translate_fchown_args(
92 owner: Option<Uid>,
93 group: Option<Gid>,
94) -> (c::uid_t, c::gid_t) {
95 let ow = match owner {
96 Some(o) => o.as_raw(),
97 None => !0,
98 };
99
100 let gr = match group {
101 Some(g) => g.as_raw(),
102 None => !0,
103 };
104
105 (ow as c::uid_t, gr as c::gid_t)
106}
107
108#[cfg(test)]
109mod tests {
110 use super::*;
111
112 #[test]
113 fn test_sizes() {
114 assert_eq_size!(RawUid, u32);
115 assert_eq_size!(RawGid, u32);
116 assert_eq_size!(RawUid, libc::uid_t);
117 assert_eq_size!(RawGid, libc::gid_t);
118 }
119}