Skip to content

Commit 3a3eca4

Browse files
committed
add violation handler for sudo process killing
1 parent ba226a7 commit 3a3eca4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
from tensorhive.core.utils.decorators import override
2+
from tensorhive.core.managers.SSHConnectionManager import SSHConnectionManager
3+
import tensorhive.core.ssh as ssh
4+
from typing import Dict, Any
5+
import logging
6+
log = logging.getLogger(__name__)
7+
8+
9+
class SudoProcessKillingBehaviour:
10+
'''
11+
When violation is triggered by ProtectionHandler, this behaviour tries to kill violating processes by logging into
12+
the target host via SSH using the TensorHive configured account and executing the proper kill command with sudo.
13+
'''
14+
@override
15+
def trigger_action(self, violation_data: Dict[str, Any]) -> None:
16+
username = violation_data['INTRUDER_USERNAME']
17+
18+
for hostname in violation_data['VIOLATION_PIDS']:
19+
connection = violation_data['SSH_CONNECTIONS'][hostname]
20+
21+
for pid in violation_data['VIOLATION_PIDS'][hostname]:
22+
command = 'sudo kill {}'.format(pid)
23+
connection.run_command(command)
24+
25+
log.warning('Sudo killing process {} on host {}, user: {}'.format(pid, hostname, username))
26+
output = ssh.run_command(connection, command)
27+
28+
if output[hostname].exception:
29+
e = output[hostname].exception
30+
log.warning('Cannot kill process on host {}, user: {}, reason: {}'.format(hostname, username, e))

0 commit comments

Comments
 (0)