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
#[derive(Clone, Debug, Default, PartialEq)]
pub struct SecurityContext {
pub allow_privilege_escalation: Option<bool>,
pub capabilities: Option<crate::api::core::v1::Capabilities>,
pub privileged: Option<bool>,
pub proc_mount: Option<String>,
pub read_only_root_filesystem: Option<bool>,
pub run_as_group: Option<i64>,
pub run_as_non_root: Option<bool>,
pub run_as_user: Option<i64>,
pub se_linux_options: Option<crate::api::core::v1::SELinuxOptions>,
}
impl<'de> serde::Deserialize<'de> for SecurityContext {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: serde::Deserializer<'de> {
#[allow(non_camel_case_types)]
enum Field {
Key_allow_privilege_escalation,
Key_capabilities,
Key_privileged,
Key_proc_mount,
Key_read_only_root_filesystem,
Key_run_as_group,
Key_run_as_non_root,
Key_run_as_user,
Key_se_linux_options,
Other,
}
impl<'de> serde::Deserialize<'de> for Field {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: serde::Deserializer<'de> {
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = Field;
fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("field identifier")
}
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: serde::de::Error {
Ok(match v {
"allowPrivilegeEscalation" => Field::Key_allow_privilege_escalation,
"capabilities" => Field::Key_capabilities,
"privileged" => Field::Key_privileged,
"procMount" => Field::Key_proc_mount,
"readOnlyRootFilesystem" => Field::Key_read_only_root_filesystem,
"runAsGroup" => Field::Key_run_as_group,
"runAsNonRoot" => Field::Key_run_as_non_root,
"runAsUser" => Field::Key_run_as_user,
"seLinuxOptions" => Field::Key_se_linux_options,
_ => Field::Other,
})
}
}
deserializer.deserialize_identifier(Visitor)
}
}
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = SecurityContext;
fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("SecurityContext")
}
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: serde::de::MapAccess<'de> {
let mut value_allow_privilege_escalation: Option<bool> = None;
let mut value_capabilities: Option<crate::api::core::v1::Capabilities> = None;
let mut value_privileged: Option<bool> = None;
let mut value_proc_mount: Option<String> = None;
let mut value_read_only_root_filesystem: Option<bool> = None;
let mut value_run_as_group: Option<i64> = None;
let mut value_run_as_non_root: Option<bool> = None;
let mut value_run_as_user: Option<i64> = None;
let mut value_se_linux_options: Option<crate::api::core::v1::SELinuxOptions> = None;
while let Some(key) = serde::de::MapAccess::next_key::<Field>(&mut map)? {
match key {
Field::Key_allow_privilege_escalation => value_allow_privilege_escalation = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_capabilities => value_capabilities = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_privileged => value_privileged = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_proc_mount => value_proc_mount = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_read_only_root_filesystem => value_read_only_root_filesystem = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_run_as_group => value_run_as_group = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_run_as_non_root => value_run_as_non_root = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_run_as_user => value_run_as_user = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_se_linux_options => value_se_linux_options = serde::de::MapAccess::next_value(&mut map)?,
Field::Other => { let _: serde::de::IgnoredAny = serde::de::MapAccess::next_value(&mut map)?; },
}
}
Ok(SecurityContext {
allow_privilege_escalation: value_allow_privilege_escalation,
capabilities: value_capabilities,
privileged: value_privileged,
proc_mount: value_proc_mount,
read_only_root_filesystem: value_read_only_root_filesystem,
run_as_group: value_run_as_group,
run_as_non_root: value_run_as_non_root,
run_as_user: value_run_as_user,
se_linux_options: value_se_linux_options,
})
}
}
deserializer.deserialize_struct(
"SecurityContext",
&[
"allowPrivilegeEscalation",
"capabilities",
"privileged",
"procMount",
"readOnlyRootFilesystem",
"runAsGroup",
"runAsNonRoot",
"runAsUser",
"seLinuxOptions",
],
Visitor,
)
}
}
impl serde::Serialize for SecurityContext {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: serde::Serializer {
let mut state = serializer.serialize_struct(
"SecurityContext",
self.allow_privilege_escalation.as_ref().map_or(0, |_| 1) +
self.capabilities.as_ref().map_or(0, |_| 1) +
self.privileged.as_ref().map_or(0, |_| 1) +
self.proc_mount.as_ref().map_or(0, |_| 1) +
self.read_only_root_filesystem.as_ref().map_or(0, |_| 1) +
self.run_as_group.as_ref().map_or(0, |_| 1) +
self.run_as_non_root.as_ref().map_or(0, |_| 1) +
self.run_as_user.as_ref().map_or(0, |_| 1) +
self.se_linux_options.as_ref().map_or(0, |_| 1),
)?;
if let Some(value) = &self.allow_privilege_escalation {
serde::ser::SerializeStruct::serialize_field(&mut state, "allowPrivilegeEscalation", value)?;
}
if let Some(value) = &self.capabilities {
serde::ser::SerializeStruct::serialize_field(&mut state, "capabilities", value)?;
}
if let Some(value) = &self.privileged {
serde::ser::SerializeStruct::serialize_field(&mut state, "privileged", value)?;
}
if let Some(value) = &self.proc_mount {
serde::ser::SerializeStruct::serialize_field(&mut state, "procMount", value)?;
}
if let Some(value) = &self.read_only_root_filesystem {
serde::ser::SerializeStruct::serialize_field(&mut state, "readOnlyRootFilesystem", value)?;
}
if let Some(value) = &self.run_as_group {
serde::ser::SerializeStruct::serialize_field(&mut state, "runAsGroup", value)?;
}
if let Some(value) = &self.run_as_non_root {
serde::ser::SerializeStruct::serialize_field(&mut state, "runAsNonRoot", value)?;
}
if let Some(value) = &self.run_as_user {
serde::ser::SerializeStruct::serialize_field(&mut state, "runAsUser", value)?;
}
if let Some(value) = &self.se_linux_options {
serde::ser::SerializeStruct::serialize_field(&mut state, "seLinuxOptions", value)?;
}
serde::ser::SerializeStruct::end(state)
}
}