summaryrefslogtreecommitdiff
path: root/kpov_judge/tasks/openvpn_simple_smb/task.py
blob: 486ddef3d3a9f7028a414c991f97174ca8c4e52c (plain)
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# kpov_random_helpers should be imported by add_assignment.py

instructions = {
    'si':u"""
Postavi dva navidezna računalnika - SimpleArbiter z diska SimpleArbiterVPN ter
VPNClient, ki jima nastavite pravilne mrežne nastavitve (medsebojna povezava in povezava na splet).
Na oba računalnika namestite OpenVPN in program za nadzor nad virtualnimi napravami (s katerim kreirate napravo tap).
Strežnik SimpleArbiterVPN naj generira skupno skrivnost (*.key), ki jo na VPNCLient uporabite skupaj z konfiguracijsko
datoteko za OpenVPN povezavo. Nato poskrbite, da bo VPNClient na navideznem omrežju prek NFS omogočil
dostop do imenika /home/test/IME_IMENIKA, pri čemer IME_IMENIKA preberite na SimpleArbiter.
V ta imenik skopirajte datoteke, ki so prek SMB dostopne na SimpleArbiter.
"""
}

computers = {
    'SimpleArbiter': {
        'disks': [
            {   'name': 'SimpleArbiterVPN',
                # attempt automount
            },
            #{   'name': 'CDROM',
            #    'options': {'readonly': True},
            #    'parts': [{'dev': 'b1', 'path': '/cdrom'}],
            #},
        ],
        'network_interfaces': [
            {
                'network': 'test-net'
            },
            {
                'network': 'net1'
            }
        ],
        'flavor': 'm1.tiny',
        'config_drive': False
    },
    'VPNClient1': {
        'disks': [
            {   'name': 'VPNClient1',
            },
            #{   'name': 'CDROM',
            #    'options':{'readonly': True},
            #    'parts': [],# no parts, no mounting.
            #}
        ],
        'network_interfaces': [
            {
                'network': 'net1'
            }
        },
        'flavor': 'm1.tiny',
        'config_drive': False

    },
    'VPNClient2': {
        'disks': [
            {   'name': 'VPNClient2',
            },
            #{   'name': 'CDROM',
            #    'options':{'readonly': True},
            #    'parts': [],# no parts, no mounting.
            #}
        ],
        'network_interfaces': [
            {
                'network': 'net1'
            }
        },
        'flavor': 'm1.tiny',
        'config_drive': False

    }
}

networks = {
    'test-net': {
        'public': True
    },
    # Used for the VPN tunnel
    'net1': {
        'public': False
    }
}

params_meta = {
    'IP_SimpleArbiterVPN': {
        'descriptions': {
            'si': 'Naslov SimpleArbiter'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    },
    'DNS_SimpleArbiterVPN': {
        'descriptions': {
            'si': 'DNS za SimpleArbiter'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    },
    'IP_VPNClient1': {
        'descriptions': {
            'si': 'Naslov VPNClient1'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    },
    'DNS_VPNClient1': {
        'descriptions': {
            'si': 'DNS za VPNClient1'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    },
    'IP_VPNClient2': {
        'descriptions': {
            'si': 'Naslov VPNClient2'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    },
    'DNS_VPNClient2': {
        'descriptions': {
            'si': 'DNS za VPNClient2'
        },
        'w': False,
        'public': True,
        'type': 'IP',
        'generated': True
    }
}


def task(IP_NM, DNS_NM, IP_static, DNS_static):
    
    import pxssh    # Used to set up an SSH connection to a remote machine
    import pexpect  # Allows the script to spawn a child application and control it as if a human were typing commands
    
    
    # the necessary things we need to check if the task was performed correctly
    results = dict()
    
    # The login params (these must be used on the machines!)
    peer_user = 'student'
    peer_passwd = 'vaje'
    
    # Sets up the SSH connections to the machines
    sA = pxssh.pxssh()
    sB = pxssh.pxssh()
    
    # Logs in to the machines with the default login params
    sA.login(IP_NM, peer_user, peer_passwd)
    sB.login(IP_static, peer_user, peer_passwd)
    
    
    ######
    # sA
    ######
    
    # TODO what is this exactly?
    # Make sure NM is not handling eth0
    results['NM_nmcli'] = sA.run('nmcli d')
    
    # Get the IP of the network as per a DNS server
    results['NM_nslookup'] = sA.run('nslookup www.arnes.si')
    
    
    
    ######
    # sB
    ######
    
    # check whether NM is handling eth0
    results['static_nmcli'] = sB.run('nmcli d')
    
    # Get the IP of the network as per a DNS server
    results['static_nslookup'] = sB.run('nslookup www.arnes.si')
    
    # Check if the tap exists
    # Must return a non-empty string
    results['is_tap_exists'] = sA.run('ls /sys/class/net | grep "tap0"');
    # Check if the VPN server is running
    # Must return a non-empty string
    results['is_VPN_running'] = sA.run('ls /sys/class/net | grep "tun0"');
    
    # TODO
    # Check if both clients are connected
    #sB.run('sudo apt-get install nmap --assume-yes')
    #sB.run('sudo nmap -sP 10.8.0.0/24')
    
    # TODO
    # Check if both clients are connected to the correct VPN (check if first 24 bits of IP addr are the same as the server's)
    
    
    # Pings each of the clients
    # 10.8.0.6 and 10.8.0.10 are the first two default addresses distributed by OpenVPN
    
    
    
    
    sA.logout()
    sB.logout()
    
    
    return results


def gen_params(user_id, params_meta):
    
    alpha = "abcdefghijklmnoprstuvzxyqw"
    alphaupp = "ABCDEFGHIJKLMNOPRSTUVZQWXY"
    alpha2 = ['$','?','!',"%","&"]
    alpha3 = ['IT','DH','JF','PO','LZ']
    
    
    temp = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
    hash = ""
    
    for x in temp:
    	for i in x:
    		if int(i)<5:
    			hash+=random.choice(alpha)+alpha2[int(i)]
    		else:
    			hash+=random.choice(alphaupp)+alpha3[int(i)-5]
        hash+=":"+temp
    
    
    params = dict()
    
    r = random.Random(user_id)
    
    # IP_NM, DNS_NM, IP_static, DNS_static)
    dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220']
    
    net = kpov_random_helpers.IPv4_subnet_gen(r, '172.23.128.0/18', 24)
    
    params['DNS_NM'] = r.choice(dns_servers)
    params['IP_NM'], params['IP_static'] = kpov_random_helpers.IPv4_addr_gen(r, net, 2)
    params['DNS_static'] = r.choice(dns_servers)
    
    params[user_id] = hash
    
    
    return params


def task_check(results, params):
    
    import re
    
    score = -9
    
    if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1:
        score += 3
    if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1:
        score += 3
    if re.search(r'eth0 +802-.*connected', results['NM_nmcli']):
        score += 2
    if not re.search(r'eth0 +802-.*connected', results['static_nmcli']):
        score += 2
    
    score = 0
    
    return score


def prepare_disks(templates, params):
    
    #d = templates['simpleArbiterDhcp']
    
    #guestmount -a d -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt
    #asistent je pocasnela :) 
    
    pass