This file is indexed.

/usr/share/pyshared/deap/dtm/commManagerTCP.py is in python-deap 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#    This file is part of DEAP.
#
#    DEAP is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Lesser General Public License as
#    published by the Free Software Foundation, either version 3 of
#    the License, or (at your option) any later version.
#
#    DEAP 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 Lesser General Public License for more details.
#
#    You should have received a copy of the GNU Lesser General Public
#    License along with DEAP. If not, see <http://www.gnu.org/licenses/>.

from multiprocessing.connection import Client,Listener
import Queue
import time
import threading
import sys
import os
import socket
import subprocess
from deap.dtm.abstractCommManager import AbstractCommThread

DTM_TCP_MIN_LATENCY = 0.005
DTM_TCP_MAX_LATENCY = 0.01
DTM_CONCURRENT_RECV_LIMIT = 1000
DTM_CONCURRENT_SEND_LIMIT = 1000

BASE_COMM_PORT = 10011

class CommThread(AbstractCommThread):
    
    def __init__(self, recvQ, sendQ, mainThreadEvent, exitEvent, commReadyEvent, randomGenerator, cmdlineArgs):
        AbstractCommThread.__init__(self, recvQ, sendQ, mainThreadEvent, exitEvent, commReadyEvent, randomGenerator, cmdlineArgs)

        self.props = dict(dtmTCPGlobalLaunch = True, 
                        dtmTCPLocalLaunch = False, 
                        dtmTCPLineNo = -1, 
                        dtmTCPhosts = '', 
                        dtmTCPstartPort = BASE_COMM_PORT, 
                        dtmTCPnPortsByHost = -1,
                        dtmTCPnbrWorkers = -1,
                        dtmTCPmaxWorkersByHost = -1,
                        dtmTCPisRootWorker = False)
                        
        self.userArgs = ""
        indexArg = 1
        while indexArg < len(cmdlineArgs):
            keyDataF = cmdlineArgs[indexArg][2:].split('=')
            if keyDataF[0] in self.props.keys():
                self.props[keyDataF[0]] = keyDataF[1]
            else:
                self.userArgs += cmdlineArgs[indexArg] + " "
            indexArg += 1
        if self.props['dtmTCPhosts'] == '':
            cmdlineArgs = cmdlineArgs[1].split(' ')
            self.userArgs = ""
            indexArg = 1
            while indexArg < len(cmdlineArgs):
                keyDataF = cmdlineArgs[indexArg][2:].split('=')
                if keyDataF[0] in self.props.keys():
                    self.props[keyDataF[0]] = keyDataF[1]
                else:
                    self.userArgs += cmdlineArgs[indexArg] + " "
                indexArg += 1
        
    @property
    def poolSize(self):
        return len(self.tabConn)+1      # +1 because tabConn does not include ourselves

    @property
    def workerId(self):
        return (self.workerHost, self.workerHostId)

    @property
    def isRootWorker(self):
        return bool(int(self.props['dtmTCPisRootWorker']))
        
    @property
    def isLaunchProcess(self):
        return bool(int(self.props['dtmTCPGlobalLaunch'])) or bool(int(self.props['dtmTCPLocalLaunch']))

    def iterOverIDs(self):
        return self.tabConn.keys() + [self.workerId]
    
    def setTraceModeOn(self, xmlLog):
        # Profiling is not currently enabled with TCP
        return
    
    def run(self):
        # Looking if we are in "launch mode" or "execute mode"
        if int(self.props['dtmTCPGlobalLaunch']):
            # Global launch. Create a SSH connection with each node, and
            # execute a local launch on them. Then wait for termination
            sshWait = []
            lineTab = []
            maxWorkersByHost = 1
            totalWorkers = 0
            with open(self.props['dtmTCPhosts']) as hostFile:
                for line in hostFile:
                    if line[0] == '#' or line[0] == '\n' or line[0] == '\r':
                        continue
                    lineTab.append(line.replace("\n", "").replace("\r", "").split(" "))
                    totalWorkers += int(lineTab[-1][1].split("=")[1])
                    if int(lineTab[-1][1].split("=")[1]) > maxWorkersByHost:
                        maxWorkersByHost = int(lineTab[-1][1].split("=")[1])
                    
                for lineCount,hostH in enumerate(lineTab):
                    if hostH[0] == 'localhost' or hostH[0] == '127.0.0.1' or hostH[0] == socket.gethostname():
                        # Local launch
                        if len(lineTab) > 1:
                            sys.stderr.write("Warning : 'localhost' used as a global hostname!\nDTM will probably hang.\nReplace localhost by the fully qualified name or run only on this host.")
                            sys.stderr.flush()
                        sshWait.append(subprocess.Popen(["python"+str(sys.version_info[0])+"."+str(sys.version_info[1]), self.cmdArgs[0], 
                                " --dtmTCPGlobalLaunch=0 --dtmTCPLocalLaunch=1 --dtmTCPLineNo="+str(lineCount) +\
                                " --dtmTCPhosts=" + str(self.props['dtmTCPhosts']) + " --dtmTCPnPortsByHost=" + str(maxWorkersByHost*(totalWorkers-1)) +\
                                " --dtmTCPstartPort="+ str(self.props['dtmTCPstartPort']) + " --dtmTCPnbrWorkers="+str(hostH[1].split("=")[1])+\
                                " --dtmTCPmaxWorkersByHost="+ str(maxWorkersByHost)+" "+ self.userArgs], stdout=sys.stdout, stderr=sys.stderr))
                    else:
                        # Remote launch
                        sshWait.append(subprocess.Popen(["/usr/bin/ssh", "-x", hostH[0], "cd "+str(os.getcwd()) +";", "python"+\
                                str(sys.version_info[0])+"."+str(sys.version_info[1])+" " + self.cmdArgs[0] +\
                                " --dtmTCPGlobalLaunch=0 --dtmTCPLocalLaunch=1 --dtmTCPLineNo="+str(lineCount) +\
                                " --dtmTCPhosts=" + str(self.props['dtmTCPhosts']) + " --dtmTCPnPortsByHost=" + str(maxWorkersByHost*(totalWorkers-1)) +\
                                " --dtmTCPstartPort="+ str(self.props['dtmTCPstartPort']) + " --dtmTCPnbrWorkers="+str(hostH[1].split("=")[1])+\
                                " --dtmTCPmaxWorkersByHost="+ str(maxWorkersByHost)+" "+ self.userArgs], stdout=sys.stdout, stderr=sys.stderr))
           
            for connJob in sshWait:
                connJob.wait()
            self.commReadyEvent.set()
            return
        elif int(self.props['dtmTCPLocalLaunch']):
            # Local launch. Makes use of subprocess.popen to launch DTM workers
            # After that, wait until termination
            dtmLocalWorkersList = []
            for i in range(int(self.props['dtmTCPnbrWorkers'])):
                
                if i == 0 and int(self.props['dtmTCPLineNo']) == 0:
                    dtmLocalWorkersList.append(subprocess.Popen(["python"+str(sys.version_info[0])+"."+str(sys.version_info[1]), self.cmdArgs[0],
                        " --dtmTCPGlobalLaunch=0 --dtmTCPLocalLaunch=0 --dtmTCPLineNo="+str(self.props['dtmTCPLineNo']) +\
                        " --dtmTCPhosts=" + str(self.props['dtmTCPhosts']) + " --dtmTCPnPortsByHost=" + str(self.props['dtmTCPnPortsByHost']) +\
                        " --dtmTCPstartPort="+ str(self.props['dtmTCPstartPort']) + " --dtmTCPnbrWorkers="+str(i)+\
                        " --dtmTCPmaxWorkersByHost="+ str(self.props['dtmTCPmaxWorkersByHost']) +" --dtmTCPisRootWorker=1", self.userArgs]))
                else:
                    dtmLocalWorkersList.append(subprocess.Popen(["python"+str(sys.version_info[0])+"."+str(sys.version_info[1]), self.cmdArgs[0],
                        " --dtmTCPGlobalLaunch=0 --dtmTCPLocalLaunch=0 --dtmTCPLineNo="+str(self.props['dtmTCPLineNo']) +\
                        " --dtmTCPhosts=" + str(self.props['dtmTCPhosts']) + " --dtmTCPnPortsByHost=" + str(self.props['dtmTCPnPortsByHost']) +\
                        " --dtmTCPstartPort="+ str(self.props['dtmTCPstartPort']) + " --dtmTCPnbrWorkers="+str(i)+\
                        " --dtmTCPmaxWorkersByHost="+ str(self.props['dtmTCPmaxWorkersByHost']), self.userArgs]))
                                   
            for dtmW in dtmLocalWorkersList:
                dtmW.wait()
            
            self.commReadyEvent.set()
            return
        
        # Here, we are ready to start DTM
        # We have to open the TCP ports and create the communication sockets
        # This is somewhat tricky, because two workers on the same node
        # must not have the same port number, and we do not want to bind
        # n^2 different ports (which will be the trivial way).
        #
        # Each worker as an ID which is a tuple (host, unique number)
        self.tabConn = {}
        listListeners = {}
        lineTab = []
        self.workerHostId = int(self.props['dtmTCPnbrWorkers'])
        maxWorkersByHost = int(self.props['dtmTCPmaxWorkersByHost'])
        fullyhost = "boumbadaboum"
        with open(self.props['dtmTCPhosts']) as hostFile:
            for hostline in hostFile:
                if hostline[0] == '#' or hostline[0] == '\n' or hostline[0] == '\r':
                    continue
                
                lineTab.append(hostline.replace("\n", "").replace("\r", "").split(" "))
                if len(lineTab)-1 == int(self.props['dtmTCPLineNo']):
                    fullyhost = lineTab[-1][0]
                
                # If our line number is GREATER than the other OR our uniq ID is
                # GREATER than the ID of another worker on our node,
                # we create the Client which will attempt to connect to the
                # listener opened by the other.
            
            for lineC,hostInfos in enumerate(lineTab):
                remoteIp = socket.gethostbyname(hostInfos[0])
                
                if lineC > int(self.props['dtmTCPLineNo']):
                    for i in range(0, int(hostInfos[1].split("=")[1])):
                        try:
                            listListeners[(hostInfos[0], i)] = Listener((fullyhost, int(self.props['dtmTCPstartPort']) +\
                                        lineC*maxWorkersByHost + i + self.workerHostId*maxWorkersByHost*len(lineTab)))
                        except Exception as ex:
                            sys.stderr.write(str(("ERROR IN : ", "Listener", self.props['dtmTCPLineNo'], self.workerHostId, lineC, i, maxWorkersByHost, len(lineTab), " < ", remoteIp,
                                        lineC*maxWorkersByHost + i + self.workerHostId*maxWorkersByHost*len(lineTab))) + "\n\n")
                            raise ex
                elif lineC == int(self.props['dtmTCPLineNo']):
                    self.workerHost = hostInfos[0]
                    for i in range(0, int(hostInfos[1].split("=")[1])):
                        if i == self.workerHostId:
                            continue    # Pas de connexion avec nous-memes
                        
                        if i > self.workerHostId:
                            try:
                                listListeners[(hostInfos[0], i)] = Listener(('127.0.0.1', int(self.props['dtmTCPstartPort']) + lineC*maxWorkersByHost + i + self.workerHostId*maxWorkersByHost*len(lineTab)))
                            except Exception as ex:
                                sys.stderr.write(str(("ERROR IN : ", "Listener", self.props['dtmTCPLineNo'], self.workerHostId, lineC, i, maxWorkersByHost, len(lineTab), " => ", remoteIp,
                                        int(self.props['dtmTCPLineNo'])*maxWorkersByHost + i + self.workerHostId*maxWorkersByHost*len(lineTab))) +"\n\n\n")
                                raise ex
                        else:
                            self.tabConn[(hostInfos[0], i)] = Client(('127.0.0.1', int(self.props['dtmTCPstartPort']) + lineC*maxWorkersByHost + self.workerHostId + i*maxWorkersByHost*len(lineTab)))
                            
                else:
                    # lineC < int(self.props['dtmTCPLineNo'])
                    for i in range(0, int(hostInfos[1].split("=")[1])):
                        self.tabConn[(hostInfos[0], i)] = Client((remoteIp, int(self.props['dtmTCPstartPort']) +\
                                        int(self.props['dtmTCPLineNo'])*maxWorkersByHost + self.workerHostId + i*maxWorkersByHost*len(lineTab)))
        
        
        for le in listListeners.keys():
            conn = listListeners[le].accept()
            self.tabConn[le] = conn

        self.commReadyEvent.set()
        
        working = True
        countRecvNotTransmit = 0
        countRecvTimeInit = time.time()

        while working:
            recvSomething = False
            sendSomething = False

            if self.exitStatus.is_set():    # Exit
                # Warning : the communication thread MUST clear the sendQ
                # BEFORE leaving (the exiting orders must be send)
                working = False

            # Check for incoming messages
            for conn in self.tabConn.values():
                if conn.poll():
                    # We received something
                    try:
                        self.recvQ.put(conn.recv())
                        countRecvNotTransmit += 1
                    except EOFError:
                        working = False
                    recvSomething = True
            
            if countRecvNotTransmit > 50 or (time.time() - countRecvTimeInit > 0.1 and countRecvNotTransmit > 0):
                countRecvNotTransmit = 0
                countRecvTimeInit = time.time()
                self.wakeUpMainThread.set()

            while True:
                # Send all our messages
                try:
                    sendMsg = self.sendQ.get_nowait()
                    self.tabConn[sendMsg.receiverWid].send(sendMsg)
                    sendSomething = True
                except Queue.Empty:
                    break

            if not recvSomething:
                time.sleep(self.random.uniform(DTM_TCP_MIN_LATENCY, DTM_TCP_MAX_LATENCY))