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
use crate::constants::SecurityInformation;
use crate::{wrappers, Acl, LocalBox, Sid};
use std::ffi::OsString;
use std::fmt;
use std::io;
use std::str::FromStr;
#[repr(C)]
pub struct SecurityDescriptor {
_opaque: [u8; 0],
}
impl Drop for SecurityDescriptor {
fn drop(&mut self) {
unreachable!("SecurityDescriptor should only be borrowed, not owned")
}
}
impl SecurityDescriptor {
pub fn as_sddl(&self) -> io::Result<OsString> {
wrappers::ConvertSecurityDescriptorToStringSecurityDescriptor(
self,
SecurityInformation::all(),
)
}
pub fn owner(&self) -> Option<&Sid> {
wrappers::GetSecurityDescriptorOwner(self)
.expect("Valid SecurityDescriptor failed to get owner")
}
pub fn group(&self) -> Option<&Sid> {
wrappers::GetSecurityDescriptorGroup(self)
.expect("Valid SecurityDescriptor failed to get group")
}
pub fn dacl(&self) -> Option<&Acl> {
wrappers::GetSecurityDescriptorDacl(self)
.expect("Valid SecurityDescriptor failed to get dacl")
}
pub fn sacl(&self) -> Option<&Acl> {
wrappers::GetSecurityDescriptorSacl(self)
.expect("Valid SecurityDescriptor failed to get sacl")
}
}
impl fmt::Debug for SecurityDescriptor {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_map()
.entry(&"owner", &self.owner())
.entry(&"group", &self.group())
.entry(&"sddl", &self.as_sddl().unwrap())
.finish()
}
}
impl FromStr for LocalBox<SecurityDescriptor> {
type Err = io::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
wrappers::ConvertStringSecurityDescriptorToSecurityDescriptor(s)
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::LocalBox;
use std::ffi::OsStr;
use std::ops::Deref;
static SDDL_TEST_CASES: &[(&str, &str, &str)] = &[
("", "", ""),
("O:AOG:SY", "AO", "SY"),
("O:SU", "SU", ""),
("G:SI", "", "SI"),
("O:AOG:SYD:S:", "AO", "SY"),
];
fn assert_option_eq(lhs: Option<&Sid>, rhs: Option<&LocalBox<Sid>>) {
match (lhs, rhs) {
(None, None) => (),
(Some(_), None) => panic!("Assertion failed: {:?} == {:?}", lhs, rhs),
(None, Some(_)) => panic!("Assertion failed: {:?} == {:?}", lhs, rhs),
(Some(l), Some(r)) => assert_eq!(l, r.deref()),
}
}
fn sddl_test_cases(
) -> impl Iterator<Item = (String, Option<LocalBox<Sid>>, Option<LocalBox<Sid>>)> {
let parse_if_there = |s: &str| {
if s.is_empty() {
None
} else {
Some(s.parse().unwrap())
}
};
SDDL_TEST_CASES.iter().map(move |(sddl, own, grp)| {
(sddl.to_string(), parse_if_there(own), parse_if_there(grp))
})
}
#[test]
fn sddl_get_sids() -> io::Result<()> {
for (sddl, owner, group) in sddl_test_cases() {
let sd: LocalBox<SecurityDescriptor> = sddl.parse()?;
assert_option_eq(sd.owner(), owner.as_ref());
assert_option_eq(sd.group(), group.as_ref());
}
Ok(())
}
#[test]
fn sddl_round_trip() -> io::Result<()> {
for (sddl, _, _) in sddl_test_cases() {
let sd: LocalBox<SecurityDescriptor> = sddl.parse()?;
let sddl2 = sd.as_sddl()?;
assert_eq!(OsStr::new(&sddl), &sddl2);
}
Ok(())
}
#[test]
fn sddl_missing_acls() -> io::Result<()> {
let sd: LocalBox<SecurityDescriptor> = "O:LAG:AO".parse()?;
assert!(sd.dacl().is_none());
assert!(sd.sacl().is_none());
let sd: LocalBox<SecurityDescriptor> = "O:LAG:AOD:".parse()?;
assert!(sd.dacl().is_some());
assert!(sd.sacl().is_none());
let sd: LocalBox<SecurityDescriptor> = "O:LAG:AOS:".parse()?;
assert!(sd.dacl().is_none());
assert!(sd.sacl().is_some());
let sd: LocalBox<SecurityDescriptor> = "O:LAG:AOD:S:".parse()?;
assert!(sd.dacl().is_some());
assert!(sd.sacl().is_some());
Ok(())
}
}