Skip to content

Commit e420a60

Browse files
authored
Fix broken file_system_rules tests. (#320)
1 parent 4bed346 commit e420a60

File tree

4 files changed

+62
-17
lines changed

4 files changed

+62
-17
lines changed

tests/commonlib/io_utils.py

+55-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
This module provides input / output manipulations on streams / files
33
"""
44

5-
from datetime import datetime
6-
import os
75
import io
86
import json
7+
import os
98
import shutil
10-
from pathlib import Path
9+
import subprocess
1110
import yaml
11+
12+
from datetime import datetime
1213
from munch import Munch, munchify
14+
from pathlib import Path
1315

1416

1517
def get_events_from_index(elastic_client, index_name: str, rule_tag: str, time_after: datetime) -> list[Munch]:
@@ -129,17 +131,62 @@ def exec_command(container_name: str, command: str, param_value: str, resource:
129131
if command == 'chmod':
130132
os.chmod(path=resource, mode=int(param_value, base=8))
131133
elif command == 'chown':
132-
uid_gid = param_value.split(':')
133-
if len(uid_gid) != 2:
134-
raise Exception(
135-
"User and group parameter shall be separated by ':' ")
136-
shutil.chown(path=resource, user=uid_gid[0], group=uid_gid[1])
134+
try:
135+
uid, gid = param_value.split(':')
136+
except ValueError as exc:
137+
raise Exception("User and group parameter shall be separated by ':' ") from exc
138+
139+
FsClient.add_users_to_node([uid, gid], in_place=True)
140+
shutil.chown(path=resource, user=uid, group=gid)
137141
elif command == 'unlink':
138142
if not Path(param_value).is_dir():
139143
Path(param_value).unlink()
140144
else:
141145
raise Exception(
142146
f"Command '{command}' still not implemented in test framework")
147+
148+
@staticmethod
149+
def add_users_to_node(users: list, in_place: bool):
150+
"""
151+
This function creates the given users along with groups with the
152+
same name, on the local container as well the host node.
153+
@param users: List of users to create.
154+
@param in_place: Whether host node configuration files should be modified in-place or overwritten.
155+
@return: None
156+
"""
157+
if in_place:
158+
host_users_file = Path('/hostfs/etc/passwd')
159+
host_groups_file = Path('/hostfs/etc/group')
160+
161+
temp_etc = Path('/tmp/etc')
162+
temp_etc.mkdir(parents=True, exist_ok=True)
163+
164+
temp_users_file = temp_etc / 'passwd'
165+
temp_groups_file = temp_etc / 'group'
166+
167+
shutil.copyfile(host_users_file, temp_users_file)
168+
shutil.copyfile(host_groups_file, temp_groups_file)
169+
170+
for user in users:
171+
# These commands fail silently for users/groups that exist.
172+
subprocess.run(['groupadd', user, '-P', '/tmp'], capture_output=True)
173+
subprocess.run(['useradd', user, '-g', user, '-P', '/tmp'], capture_output=True)
174+
subprocess.run(['useradd', user], capture_output=True) # For container to get around chmod check.
175+
176+
FsClient.in_place_copy(temp_users_file, host_users_file)
177+
FsClient.in_place_copy(temp_groups_file, host_groups_file)
178+
179+
else:
180+
# TODO(yashtewari): Implement this section which simulates a "normal" user flow
181+
# where useradd command overwrites passwd and group files,
182+
# as part of tests for: https://github.com/elastic/cloudbeat/issues/235
183+
pass
184+
185+
@staticmethod
186+
def in_place_copy(source, destination):
187+
with open(source, 'r') as sf, open(destination, 'w') as df:
188+
for line in sf:
189+
df.write(line)
143190

144191
@staticmethod
145192
def edit_process_file(container_name: str, dictionary, resource: str):

tests/deploy/k8s-cloudbeat-tests/templates/tests/cloudbeat-test-pod.yml

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ spec:
2626
- name: etc-kubernetes
2727
mountPath: /etc/kubernetes/
2828
readOnly: false
29+
- name: etc-full
30+
mountPath: /hostfs/etc
31+
readOnly: false
2932
- name: var-lib-etcd
3033
mountPath: /var/lib/etcd
3134
readOnly: false
@@ -44,6 +47,9 @@ spec:
4447
- name: etc-kubernetes
4548
hostPath:
4649
path: /etc/kubernetes/
50+
- name: etc-full
51+
hostPath:
52+
path: /etc/
4753
- name: var-lib-etcd
4854
hostPath:
4955
path: /var/lib/etcd

tests/product/tests/data/file_system/file_system_test_cases.py

-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@
5050

5151
cis_1_1_11 = [
5252
('CIS 1.1.11', 'chmod', '0710', '/var/lib/etcd', 'failed'),
53-
# ('CIS 1.1.11', 'chmod', '0710', '/var/lib/etcd/some_file.txt', 'failed'),
5453
('CIS 1.1.11', 'chmod', '0600', '/var/lib/etcd', 'passed'),
55-
# ('CIS 1.1.11', 'chmod', '0600', '/var/lib/etcd/some_file.txt', 'passed'),
5654
]
5755

5856
cis_1_1_12 = [

tests/product/tests/test_file_system_rules.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,7 @@
2121
*fs_tc.cis_1_1_7,
2222
*fs_tc.cis_1_1_8,
2323
*fs_tc.cis_1_1_11,
24-
*[fs_tc.cis_1_1_12[0]],
25-
*skip_param_case(skip_list=fs_tc.cis_1_1_12[1:],
26-
data_to_report=SkipReportData(
27-
url_title="security-team: #4311",
28-
url_link="https://github.com/elastic/security-team/issues/4311",
29-
skip_reason="known issue: broken file_system_rules tests"
30-
)),
24+
*fs_tc.cis_1_1_12,
3125
*fs_tc.cis_1_1_13,
3226
*fs_tc.cis_1_1_14,
3327
*fs_tc.cis_1_1_15,

0 commit comments

Comments
 (0)