-
Notifications
You must be signed in to change notification settings - Fork 1
/
odr-ovpn-connect
executable file
·66 lines (55 loc) · 2.06 KB
/
odr-ovpn-connect
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
#!/usr/bin/env python
# vim:set fileencoding=utf-8 ft=python ts=8 sw=4 sts=4 et cindent:
# odr-ovpn-connect -- Called by the OpenVPN client-connect hook.
#
# Copyright © 2010 Fabian Knittel <[email protected]>
#
# 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-connect'
CMD_SOCKET = '/var/run/odr/cmd.sock'
def main():
#
# Gather configuration
#
cfg_f = open(os.environ['client_connect_config_file'], 'wb')
ret_f = open(os.environ['client_connect_deferred_file'], 'wb')
full_username = os.environ['username']
daemon_name = ovpn.determine_daemon_name(script_name=SCRIPT_NAME)
#
# Build and submit command
#
params = {'full_username':full_username,
'ret_file_idx':'0',
'config_file_idx':'1'}
if daemon_name is not None:
params['daemon_name'] = daemon_name
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.connect(CMD_SOCKET)
ovpn.write_deferred_ret_file(ret_f, ovpn.CC_RET_DEFERRED)
try:
fdsend.sendfds(s, cmdconnection.pack_cmd('request', params),
fds=[ret_f, cfg_f])
ret, _ = fdsend.recvfds(s, 1024, numfds=0)
if ret != 'OK':
raise RuntimeError('starting dhcp request failed (ret: "%s")' % ret)
except:
ovpn.write_deferred_ret_file(ret_f, ovpn.CC_RET_FAILED)
raise
if __name__ == '__main__':
main()