-
Notifications
You must be signed in to change notification settings - Fork 1
/
odr-ovpn-disconnect
executable file
·55 lines (46 loc) · 1.7 KB
/
odr-ovpn-disconnect
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
#!/usr/bin/env python
# vim:set fileencoding=utf-8 ft=python ts=8 sw=4 sts=4 et cindent:
# odr-ovpn-disconnect -- Called by the OpenVPN client-disconnect hook.
#
# Copyright © 2010 Fabian Knittel <fabian.knittel@lettink.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import socket
import odr.ovpn as ovpn
import odr.cmdconnection as cmdconnection
import fdsend
SCRIPT_NAME = 'odr-ovpn-disconnect'
CMD_SOCKET = '/var/run/odr/cmd.sock'
def main():
#
# Gather configuration
#
full_username = os.environ['username']
daemon_name = ovpn.determine_daemon_name(script_name=SCRIPT_NAME)
#
# Build and submit command
#
params = {'full_username':full_username}
if daemon_name is not None:
params['daemon_name'] = daemon_name
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.connect(CMD_SOCKET)
fdsend.sendfds(s, cmdconnection.pack_cmd('disconnect', params))
ret, _ = fdsend.recvfds(s, 1024, numfds=0)
if ret != 'OK':
raise RuntimeError('sending disconnect notification failed ' \
'(ret: "%s")' % ret)
if __name__ == '__main__':
main()