-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
238 lines (197 loc) · 6.75 KB
/
client.py
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
import sys, os, socket, package, subprocess, _thread, time, requests
from functools import cmp_to_key
currentDir = os.getcwd();
class Client:
def getAddressList(self):
l = subprocess.check_output(['ifconfig']).decode(encoding='ascii', errors='ignore').split('\n\n')
ret = []
for interface in l:
if(len(interface.split('HWaddr'))==2):
try:
ret.append(interface.split('Bcast:')[1].split()[0])
except:
pass
return ret
def cmp(self, a, b):
a = a[1].split('.')
b = b[1].split('.')
aLength = len(a)
bLength = len(b)
i = 0
while i < aLength and i < bLength:
if int(a[i]) < int(b[i]):
return -1
elif int(a[i]) > int(b[i]):
return 1
i += 1
return 0
def __init__(self, message):
if len(message) == 0:
print('Compulsory argument <package name> missing')
exit(1)
try:
for i in range(len(message)):
self.CWD = os.getcwd()
self.versionList = []
self.downloadingList = []
self._main(message[i])
except Exception as e:
print(e)
exit()
os.chdir('/var/cache/apt/archives')
print("Updating your packages list for distribution.")
FNULL = open(os.devnull, 'w')
subprocess.call("dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz", stdout=FNULL, stderr=FNULL, shell=True)
package.packageListGenerator(self.CWD)
print("Completed.")
def broadcast(self, broadcast_addr, message):
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
server_address = (broadcast_addr, 10000)
print('Broadcasted to <'+broadcast_addr+'>: ', message)
sent = sock.sendto(message.encode(), server_address)
sock.close()
self.threadCount -= 1
def replyHandler(self, conn, address):
data = conn.recv(1000000)
data = data.decode()
print("Received: ",end="")
print(data,end=" ")
print("From: ", end="")
print(address[0])
if(data[0]=='H'):
self.versionList.append((address[0], data[2:]))
else:
self.downloadingList.append((address[0], data[2:]))
def listen(self):
sock = socket.socket()
sock.settimeout(5)
sock.bind(('', 22653))
sock.listen(100)
print("Listening for replies..")
try:
while True:
conn, address = sock.accept()
_thread.start_new_thread(self.replyHandler,(conn, address))
except Exception as e:
print(e)
print("Network successfully checked for the package.")
sock.close()
self.threadCount -= 1
def _main(self, message):
message = '?' + message
baddr_list = self.getAddressList()
print('Searching in Local Network...')
# latestVersion = '0.0.0'
# localRepo = ''
self.versionList = []
self.downloadingList = []
_thread.start_new_thread(self.listen, ())
time.sleep(1)
self.threadCount = 1
for i in baddr_list:
self.threadCount += 1 #Warning. Keep this line before anything else
_thread.start_new_thread(self.broadcast, (i, message))
while self.threadCount!=0:
pass
self.versionList.sort(key = cmp_to_key(self.cmp), reverse = True)
apt_preperation_complete = False
lines_modified = 0
if len(self.downloadingList) != 0:
print("Someone is already downloading the latest packages..")
wait = 1
download_complete = False
while wait<=100:
time.sleep(wait)
res = dict()
try:
res = requests.get("http://"+str(self.downloadingList[0][0])+":35622/current_downloads.conf")
except Exception as e:
print(e)
pass
print("Wait "+str(wait))
if res.status_code!=200 or res.text!=message[1:]:
download_complete = True
break
wait *= 2
if download_complete:
print("Latest downloaded version:", self.downloadingList[0][1])
sourcesFile = open('/etc/apt/sources.list', 'r+')
sourcesLine = sourcesFile.readlines()
newRepoString = ''
for version in self.downloadingList:
newRepoString += ('deb http://%s:35622/ ./\n' % version[0])
lines_modified += 1
print("Adding repo(s) : ", newRepoString)
newRepo = [newRepoString]
finalSourcesLines = newRepo + sourcesLine
sourcesFile.seek(0)
sourcesFile.writelines(finalSourcesLines)
sourcesFile.truncate()
sourcesFile.close()
print("Running APT repositories list update.")
FNULL = open(os.devnull, 'w')
subprocess.call("apt-get update", stdout=FNULL, stderr=FNULL, shell=True)
print("APT repository list update complete.")
apt_preperation_complete = True
if len(self.versionList) != 0 and apt_preperation_complete==False:
print("Latest available version:", self.versionList[0][1])
sourcesFile = open('/etc/apt/sources.list', 'r+')
sourcesLine = sourcesFile.readlines()
newRepoString = ''
for version in self.versionList:
newRepoString += ('deb http://%s:35622/ ./\n' % version[0])
lines_modified += 1
print("Adding repo(s) : ", newRepoString)
newRepo = [newRepoString]
finalSourcesLines = newRepo + sourcesLine
sourcesFile.seek(0)
sourcesFile.writelines(finalSourcesLines)
sourcesFile.truncate()
sourcesFile.close()
print("Running APT repositories list update.")
FNULL = open(os.devnull, 'w')
subprocess.call("apt-get update", stdout=FNULL, stderr=FNULL, shell=True)
print("APT repository list update complete.")
apt_preperation_complete = True
if apt_preperation_complete==False:
print('File not found locally...\nDownloading from the Internet')
f = open('/var/cache/apt/archives/current_downloads.conf','w')
f.write(message[1:])
f.close()
os.system('apt-get install %s --allow-unauthenticated' % message[1:])
f = open('/var/cache/apt/archives/current_downloads.conf','w')
f.write("")
f.close()
if len(self.versionList) != 0:
sourcesFile = open('/etc/apt/sources.list', 'r+')
sourcesLine = sourcesFile.readlines()
for i in range(0, lines_modified):
del sourcesLine[0]
sourcesFile.seek(0)
sourcesFile.writelines(sourcesLine)
sourcesFile.truncate()
sourcesFile.close()
if __name__ == '__main__':
try:
if sys.argv[1] == 'install':
Client(sys.argv[2:])
elif sys.argv[1] == 'remove':
for i in range(2, len(sys.argv)):
os.system('apt-get remove %s' % sys.argv[i])
elif sys.argv[1] == 'store':
print ('Copying install files...')
os.system('test -d %s/debFiles || mkdir -p %s/debFiles && cp /var/cache/apt/archives/* %s/debFiles' % (sys.argv[2], sys.argv[2], sys.argv[2]))
elif sys.argv[1] == 'load':
print ('Copying install files...\n')
os.system('test -d %s/debFiles || mkdir -p %s/debFiles && cp %s/debFiles/* /var/cache/apt/archives/' % (sys.argv[2], sys.argv[2], sys.argv[2]))
print ("Updating package list...\n")
os.chdir('/var/cache/apt/archives')
os.system("dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz")
os.system("apt-get update")
os.chdir(currentDir)
package.packageListGenerator(os.getcwd())
else:
print('Invalid command')
except:
print('Required command missing')