This file is indexed.

/usr/lib/petscdir/3.7.5/x86_64-linux-gnu-real-debug/bin/urlget.py is in libpetsc3.7.5-dbg 3.7.5+dfsg1-4+b1.

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

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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#! /usr/bin/python
#!/bin/env python
# $Id: urlget.py,v 1.28 2001/06/13 15:39:23 bsmith Exp $
#
# change python1.5 to whatever is needed on your system to invoke python
#
#  Retrieves a single file specified as a url and stores it locally.
#
#  Calling sequence:
#      urlget.py [-v] [-tmp tmpdir] [-] [http,ftp][://hostname][/]directoryname/file [local_filename]
#
#  Options:
#       -v             - Print version number and exit
#       -tmp           - Uses tmpdir if one is provided, else, uses /tmp
#       -              - use store the file in current dir, with the same filename as the url
#       local_filename - if provided, store the url in the specified  file [relative to CWD]
#  Notes:
#       If the url has a .gz or .Z suffix, the url is uncompressed
#       The uncompresion is not done if local_filename is specified [or the option '-' is used]
#       If the url is neither ftp, nor http, then a local file copy is assumed.
#
import urllib
import os
import sys
import ftplib
import string
try:
    from http.client import HTTPConnection
except ImportError:
    from httplib import HTTPConnection
try:
    from urllib.parse import urlparse, urlunparse
except ImportError:
    from urlparse import urlparse, urlunparse
from time import *

def error(*args):
    str = ' '.join(args)
    if True:                  # Simplified error message, no stack trace
        print(str)
        sys.exit(1)
    else:
        raise RuntimeError(str)

def parseargs(search_arg,return_nargs,arg_list):
    try:
        index = arg_list.index(search_arg)
    except:
        # Argument not found in list, hence return flag = 0,return val = None
        return 0,None

    if return_nargs == 0:
        arg_list.remove(search_arg)
        return 1,None

    if index+1 == len(arg_list):
        error('Error! Option has no value!\nExpecting value with option: ' + search_arg)
    else:
        ret_arg = arg_list[index+1]
        arg_list.remove(search_arg)
        arg_list.remove(ret_arg)
        return 1,ret_arg

def extension(filename):
    return os.path.splitext(filename)[1]

def basename(filename):
    return os.path.splitext(filename)[0]

def uncompress(filename):
    ext = extension(filename)
    if ext == '.gz':
        try:
            import gzip
            f_in  = gzip.open(filename, 'rb')
            f_out = open(basename(filename), 'wb')
            f_out.writelines(f_in)
            f_out.close()
            f_in.close()
        except ImportError:
            error('Error unable to invoke gunzip on ' + filename)
    elif ext == '.Z':
        err = os.system('uncompress ' + filename)
        if err != 0:
            error('Error unable to invoke uncompress on ' + filename)

def compressed(filename):
    ext = extension(filename)
    if ext == '.gz' or ext == '.Z':
        return 1
    else:
        return 0

# Defines a meta class, whose member functions are common/required
# by ftp/http object classes
class url_object:
    def gettime():
        error('Error Derived function should be implemented')
    def getfile(filename):
        error('Error Derived function should be implemented')

class local_object(url_object):
    def __init__(self,machine,urlpath):
        self.localfilename = urlpath
        if os.path.isfile(self.localfilename) == 0:
            error('Error! file:',self.localfilename,' does not exist')

    def gettime(self):
        return os.stat(self.localfilename)[7]

    def getfile(self,outfilename):
        fp_in  = open(self.localfilename,'rb')
        fp_out = open(outfilename,'wb')
        fp_out.write(fp_in.read())
        fp_in.close()
        fp_out.close()

class ftp_object(url_object):
    def __init__(self,machine,urlpath):
        self.machine = machine
        self.urlpath = urlpath
        self.buf     = ''
        try :
            self.ftp     = ftplib.FTP(self.machine)
        except:
            error('Error! accessing server', self.machine)
        self.ftp.login()

    def __del__(self):
        self.ftp.close()

    def readftplines(self,buf1):
        self.buf   = self.buf + buf1

    def gettime(self):

        self.buf       = ''
        self.ftp.retrlines('LIST ' +self.urlpath,self.readftplines)
        if self.buf == '':
            self.ftp.close()
            error('Error! file does not exist on the server')

        month,day,year = self.buf.split()[5:8]
        hour,min       = '0','0'

        if len(year.split(':')) >=2:
            hour,min   = year.split(':')
            year       = gmtime(time())[0]
        else:
            year = int(year)

        month_d = {'Jan':1,'Feb':2,'Mar':3,'Apr':4,'May':5,'Jun':6,
                   'Jul':7,'Aug':8,'Sep':9,'Oct':10,'Nov':11,'Dec':12}

        newtime = mktime((year,month_d[month],int(day),int(hour),
                          int(min),0,-1,-1,0))
        c_time  = time()
        if newtime > c_time:
            newtime = mktime((year-1,month_d[month],split(day),
                              split(hour),split(min),0,-1,-1,0))
        self.remotetime = newtime - timezone
        return self.remotetime

    def writefile(self,buf):
        self.fp.write(buf)

    def getfile(self,outfilename):
        self.fp  = open(outfilename,'wb')
        self.ftp.retrbinary('RETR '+ self.urlpath,self.writefile)
        self.fp.close()


class http_object(url_object):
    def __init__(self,machine,urlpath):
        self.machine = machine
        self.urlpath = urlpath
        self.http = HTTPConnection(self.machine)
        try:
            self.http = HTTPConnection(self.machine)
        except:
            error('Error! accessing server', self.machine)
        self.http.putrequest('GET',self.urlpath)
        self.http.putheader('Accept','*/*')
        self.http.endheaders()
        self.response = self.http.getresponse()
        #errcode, errmesg, self.headers = self.http.getreply()
        if self.response.status != 200:
            self.http.close()
            error('Error! Accessing url on the server.',res.status,res.reason)
        filesize   = int(self.response.getheader('content-length'))
        if filesize < 2000 :
            self.http.close()
            error('Error! Accessing url on the server. bytes-received :',filesize)

    def __del__(self):
        self.http.close()


    def gettime(self):

        # Get the remote timestamps
        urltimestamp = self.response.getheader('last-modified')
        month_d             = {'Jan':1,'Feb':2,'Mar':3,'Apr':4,'May':5,'Jun':6,
                               'Jul':7,'Aug':8,'Sep':9,'Oct':10,'Nov':11,'Dec':12}

        urltimesplit = urltimestamp.split()
        if len(urltimesplit) == 6 :      #Sun, 06 Nov 1994 08:49:37 GMT
            day,month,year,time = urltimesplit[1:-1]
        elif len(urltimesplit) == 4 :    #Sunday, 06-Nov-94 08:49:37 GMT
            time           = urltimesplit[2]
            day,month,year = urltimesplits[1].split('-')
        else :                                  #Sun Nov  6 08:49:37 1994
            month,day,time,year = urlsplit[1:]

        hour,min,sec        = time.split(':')
        newtime             = (int(year),month_d[month],int(day),int(hour),
                               int(min),int(sec),-1,-1,0)
        self.remotetime     = mktime(newtime) - timezone
        return self.remotetime

    def getfile(self,outfilename):
        #read the data
        if False:
            f    = self.http.getfile()
            data = f.read()
            f.close()
        data = self.response.read()
        # Now write this data to a file
        fp = open(outfilename,'wb')
        fp.write(data)
        fp.close()

class urlget:

    def __init__(self,url,filename ='',tmpdir='/tmp'):
        self.url                                = urlunparse(urlparse(url))
        self.protocol,self.machine,self.urlpath = urlparse(self.url)[0:3]
        self.compressed = 0
        self.cachefilename = 0

        # Uncompress is not done if the filename is provided
        if filename != '':
            self.cache         = 0
            self.filename      = filename
            self.cachefilename = filename
        else:
            self.cache      = 1
            self.filename   = os.path.join(tmpdir,'@'.join(urlparse(self.url)[0:3]).replace('/','_'))
            self.compressed = compressed(self.filename)
            if self.compressed == 1:
                self.cachefilename = basename(self.filename)
            else:
                self.cachefilename = self.filename

        if self.protocol == 'ftp':
            self.url_obj = ftp_object(self.machine,self.urlpath)
        elif self.protocol == 'http':
            self.url_obj = http_object(self.machine,self.urlpath)
        else:
            # Assume local file copy
            self.url_obj = local_object(self.machine,self.urlpath)
            #error('Error! Unknown protocol. use ftp or http protocols only')
        timestamp = self.url_obj.gettime()
        uselocalcopy = 0
        if os.path.isfile(self.cachefilename) == 1:
            mtime = os.stat(self.cachefilename)[7]
            if mtime >= timestamp:
                uselocalcopy = 1

        if self.cache == 0 and os.path.isfile(self.cachefilename) == 1:
            flag = 0
            while flag == 0:
                print('%s exists. Would you like to replace it? (y/n)' % (self.filename,))
                c = stdin.readline()[0]
                if c == 'y':
                    uselocalcopy = 0
                    flag = 1
                elif c == 'n':
                    uselocalcopy = 1
                    flag = 1

        if uselocalcopy == 0 :
            self.url_obj.getfile(self.filename)
            os.utime(self.filename,(timestamp,timestamp))
            if self.compressed == 1:
                uncompress(self.filename)
            os.chmod(self.cachefilename,500)


def main():

    # Parse for known options.
    flg_tmp,val_tmp = parseargs('-tmp',1,sys.argv)
    flg_hyp,val_hyp = parseargs('-',0,sys.argv)
    flg_v,val_v = parseargs('-v',0,sys.argv)

    if flg_v:
        print('Version 1.1')
        sys.exit()

    arg_len = len(sys.argv)
    if arg_len < 2:
        print('Error! Insufficient arguments.')
        print('Usage: %s [-v] [-tmp tmpdir] [-]  url-filename [local-filename]' % (sys.argv[0],))
        sys.exit(1)

    #Default Values
    tmpdir = '/tmp'
    outfilename = ''
    url = sys.argv[1]

    if arg_len == 3:
        outfilename =  sys.argv[2]
    elif flg_hyp:
        outfilename = os.path.basename(url)

    if flg_tmp:
        tmpdir = val_tmp

    x = urlget(url,outfilename,tmpdir)
    print(x.cachefilename)

# The classes in this file can also
# be used in other python-programs by using 'import'
if __name__ ==  '__main__':
    main()