-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.py
465 lines (385 loc) · 18.5 KB
/
install.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
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------
# This file is fork of a part of WAPT
# Copyright (C) 2013 Tranquil IT Systems http://www.tranquil.it
# WAPT aims to help Windows systems administrators to deploy
# setup and update applications on users PC.
#
# WAPT 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.
#
# WAPT 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 WAPT. If not, see <http://www.gnu.org/licenses/>.
# -----------------------------------------------------------------------
from __future__ import absolute_import
from waptserver.config import __version__
usage = """\
%prog [--force-https]"""
import os,sys
try:
wapt_root_dir = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)),'../..'))
except:
wapt_root_dir = 'c:/tranquilit/wapt'
import shutil
import fileinput
import glob
import hashlib
import dialog
import subprocess
import jinja2
import socket
import uuid
import platform
import re
import psutil
import datetime
import string
import random
import pwd
import grp
import ConfigParser
from optparse import OptionParser
import nginxparser
from passlib.hash import pbkdf2_sha256
from waptpackage import WaptLocalRepo
import waptserver.config
from waptserver.config import type_debian,type_redhat
from waptserver.model import init_db,upgrade_db_structure,load_db_config
def run(*args, **kwargs):
return subprocess.check_output(*args, shell=True, **kwargs)
def run_verbose(*args, **kwargs):
output = subprocess.check_output(*args, shell=True, **kwargs)
print output
return output
wapt_folder = '/var/www/wapt'
NGINX_GID= grp.getgrnam('www-data').gr_gid
postconf = dialog.Dialog(dialog="dialog")
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
def mkdir(path):
if not os.path.isdir(path):
os.makedirs(path)
def make_httpd_config(wapt_folder, waptserver_root_dir, fqdn, use_kerberos,force_https, waptserver_port):
if wapt_folder.endswith('\\') or wapt_folder.endswith('/'):
wapt_folder = wapt_folder[:-1]
ssl_dir = os.path.join(waptserver_root_dir, 'ssl')
scripts_dir = os.path.join(waptserver_root_dir, 'scripts')
wapt_ssl_key_file = os.path.join(ssl_dir,'key.pem')
wapt_ssl_cert_file = os.path.join(ssl_dir,'cert.pem')
mkdir(ssl_dir)
# write the apache configuration fragment
jinja_env = jinja2.Environment(loader=jinja2.FileSystemLoader(scripts_dir))
template = jinja_env.get_template('wapt.nginxconfig.template')
krb5_realm = '.'.join(fqdn.split('.')[1:]).upper()
template_vars = {
'waptserver_port': waptserver_port,
'wapt_repository_path': os.path.dirname(wapt_folder),
'apache_root_folder': '/not/used',
'windows': False,
'debian': type_debian(),
'redhat': type_redhat(),
'force_https': force_https,
'wapt_ssl_key_file': wapt_ssl_key_file,
'wapt_ssl_cert_file': wapt_ssl_cert_file,
'fqdn': fqdn,
'use_kerberos': use_kerberos,
'KRB5_REALM': krb5_realm
}
config_string = template.render(template_vars)
if type_debian():
dst_file = file('/etc/nginx/sites-available/wapt.conf', 'wt')
if not os.path.exists('/etc/nginx/sites-enabled/wapt.conf'):
print(subprocess.check_output('ln -s /etc/nginx/sites-available/wapt.conf /etc/nginx/sites-enabled/wapt.conf',shell=True))
if os.path.exists('/etc/nginx/sites-enabled/default'):
os.unlink('/etc/nginx/sites-enabled/default')
elif type_redhat():
dst_file = file('/etc/nginx/conf.d/wapt.conf', 'wt')
dst_file.write(config_string)
dst_file.close()
# create keys for https:// access
if not os.path.exists(wapt_ssl_key_file) or \
not os.path.exists(wapt_ssl_cert_file):
old_apache_key = '/opt/wapt/waptserver/apache/ssl/key.pem'
old_apache_cert = '/opt/wapt/waptserver/apache/ssl/cert.pem'
if os.path.isfile(old_apache_cert) and os.path.isfile(old_apache_key):
shutil.copyfile(old_apache_cert,wapt_ssl_cert_file)
shutil.copyfile(old_apache_key,wapt_ssl_key_file)
else:
void = subprocess.check_output([
'openssl',
'req',
'-new', # create a request
'-x509', # no, actually, create a self-signed certificate!
'-newkey', 'rsa:2048', # and the key that goes along, RSA, 2048 bits
'-nodes', # don't put a passphrase on the key
'-days', '3650', # the cert is valid for ten years
'-out', wapt_ssl_cert_file,
'-keyout', wapt_ssl_key_file,
# fill in the minimum amount of information needed; to be revisited
'-subj', '/C=FR/ST=Wapt/L=Wapt/O=Wapt/CN=' + fqdn + '/'
], stderr=subprocess.STDOUT)
def ensure_postgresql_db(db_name='wapt',db_owner='wapt',db_password=''):
""" create postgresql wapt db and user if it does not exists """
if type_redhat():
# we have to check what postgres we use between the upstream packages and the software collection ones
pass
elif type_debian():
run('systemctl start postgresql')
run('systemctl enable postgresql')
val = run(""" sudo -u postgres psql template1 -c " select usename from pg_catalog.pg_user where usename='wapt';" """, cwd='/opt/wapt')
if 'wapt' in val:
print ("user wapt already exists, skipping creating user ")
else:
print ("we suppose that the db does not exist either (or the installation has been screwed up")
if not db_password:
run(""" sudo -u postgres psql template1 -c "create user %s ; " """ % (db_owner), cwd='/opt/wapt/')
else:
run(""" sudo -u postgres psql template1 -c "create user %s with password '%s'; " """ % (db_owner,db_password), cwd='/opt/wapt/')
val = ''
#val = subprocess.check_output(""" sudo -u postgres psql template1 -c "select schema_name from information_schema.schemata where schema_name='wapt'; " """, shell= True)
val = run(""" sudo -u postgres psql template1 -c " SELECT datname FROM pg_database WHERE datname='wapt'; " """, cwd='/opt/wapt/')
if 'wapt' in val:
print ("db already exists, skipping db creation")
else:
print ('creating db wapt')
run(""" sudo -u postgres psql template1 -c "create database %s with owner=%s encoding='utf-8'; " """ % (db_name,db_owner), cwd='/opt/wapt/')
# check if hstore (for json) is installed
val = run(""" sudo -u postgres psql wapt -c "select * from pg_extension where extname='hstore';" """, cwd='/opt/wapt/')
if 'hstore' in val:
print ("hstore extension already loading into database, skipping create extension")
else:
run(""" sudo -u postgres psql wapt -c "CREATE EXTENSION hstore;" """, cwd='/opt/wapt/')
def enable_nginx():
run_verbose('systemctl enable nginx')
def restart_nginx():
run_verbose('systemctl restart nginx')
def enable_waptserver():
run_verbose('systemctl enable waptserver')
run_verbose('systemctl enable wapttasks')
def start_waptserver():
run_verbose("systemctl restart waptserver")
run_verbose("systemctl restart wapttasks")
def setup_firewall():
if type_redhat():
output = run('firewall-cmd --list-ports')
if '443/tcp' in output and '80/tcp' in output:
print("firewall already configured, skipping firewalld configuration")
return
if subprocess.call(['firewall-cmd', '--state'], stdout=open(os.devnull, 'w')) == 0:
run('firewall-cmd --permanent --add-port=443/tcp')
run('firewall-cmd --permanent --add-port=80/tcp')
run('firewall-cmd --reload')
else:
run('firewall-offline-cmd --add-port=443/tcp')
run('firewall-offline-cmd --add-port=80/tcp')
def check_mongo2pgsql_upgrade_needed(waptserver_ini):
""" return True if upgrade2postgres has been processed.
"""
def mongod_running():
return [p for p in psutil.process_iter() if p.name().lower() in ('mongod','mongod.exe')]
ini = ConfigParser.RawConfigParser()
ini.read(waptserver_ini)
return ini.has_option('options', 'mongodb_port') and len(mongod_running())>0
def upgrade2postgres(configfilename):
print ("mongodb process running, need to migrate")
run_verbose('sudo -u wapt PYTHONPATH=/opt/wapt PYTHONHOME=/opt/wapt /opt/wapt/bin/python /opt/wapt/waptserver/upgrade.py upgrade2postgres -c "%s"' % configfilename)
run_verbose("systemctl stop mongodb")
run_verbose("systemctl disable mongodb")
def nginx_set_worker_limit(nginx_conf):
already_set=False
for entries in nginx_conf:
if entries[0]=='worker_rlimit_nofile':
print( "worker_rlimit_nofile already set")
already_set=True
if not already_set:
nginx_conf.insert(3,['worker_rlimit_nofile', '32768'])
return nginx_conf
def nginx_clean_default_vhost(nginx_conf):
for entry in nginx_conf:
if entry[0]==['http']:
for subentry in entry[1]:
if subentry[0]==['server']:
print('removing default vhost')
entry[1].remove(subentry)
return nginx_conf
def check_if_deb_installed(package_name):
child = subprocess.Popen('/usr/bin/dpkg -l "%s"' % package_name, stdout=subprocess.PIPE,shell=True)
streamdata = child.communicate()[0]
rc = child.returncode
if rc==0:
return True
return False
def main():
global wapt_folder,NGINX_GID
parser = OptionParser(usage=usage, version=__version__)
parser.add_option(
'-c',
'--config',
dest='configfile',
default=waptserver.config.DEFAULT_CONFIG_FILE,
help='Config file full path (default: %default)')
parser.add_option(
"-s",
"--force-https",
dest="force_https",
default=False,
action='store_true',
help="Use https only, http is 301 redirected to https (default: False). Requires a proper DNS name")
(options, args) = parser.parse_args()
# if postconf.yesno("Do you want to launch post configuration tool ?") != postconf.DIALOG_OK:
# print "canceling wapt postconfiguration"
# sys.exit(1)
# TODO : check if it a new install or an upgrade (upgrade from mongodb to postgresql)
if type_redhat():
if re.match('^SELinux status:.*enabled', run('sestatus')):
postconf.msgbox('SELinux detected, tweaking httpd permissions.')
run('setsebool -P httpd_can_network_connect 1')
run('setsebool -P httpd_setrlimit on')
for sepath in ('wapt','wapt-host'):
run('semanage fcontext -a -t httpd_sys_content_t "/var/www/html/%s(/.*)?"' %sepath)
run('restorecon -R -v /var/www/html/%s' %sepath)
postconf.msgbox('SELinux correctly configured for Nginx reverse proxy')
server_config = waptserver.config.load_config(options.configfile)
if os.path.isfile(options.configfile):
print('making a backup copy of the configuration file')
datetime_now = datetime.datetime.now()
shutil.copyfile(options.configfile,'%s.bck_%s'% (options.configfile,datetime_now.isoformat()) )
wapt_folder = server_config['wapt_folder']
# add secret key initialisation string (for session token)
if not server_config['secret_key']:
server_config['secret_key'] = ''.join(random.SystemRandom().choice(string.letters + string.digits) for _ in range(64))
# add user db and password in ini file
if server_config['db_host'] in (None,'','localhost','127.0.0.1','::1'):
ensure_postgresql_db(db_name=server_config['db_name'],db_owner=server_config['db_name'],db_password=server_config['db_password'])
# Password setup/reset screen
wapt_password = 'wapt_password'
# if not server_config['wapt_password'] or \
# postconf.yesno("Do you want to reset admin password ?",yes_label='skip',no_label='reset') != postconf.DIALOG_OK:
# wapt_password_ok = False
# while not wapt_password_ok:
# wapt_password = ''
# wapt_password_check = ''
#
# while wapt_password == '':
# (code,wapt_password) = postconf.passwordbox("Please enter the wapt server password (min. 10 characters): ", insecure=True,width=100)
# if code != postconf.DIALOG_OK:
# exit(0)
#
# while wapt_password_check == '':
# (code,wapt_password_check) = postconf.passwordbox("Please enter the wapt server password again: ", insecure=True,width=100)
# if code != postconf.DIALOG_OK:
# exit(0)
# if wapt_password != wapt_password_check:
# postconf.msgbox('Password mismatch !')
# elif len(wapt_password) < 10:
# postconf.msgbox('Password must be at least 10 characters long !')
# else:
# wapt_password_ok = True
password = pbkdf2_sha256.hash(wapt_password.encode('utf8')) #changement indentation
server_config['wapt_password'] = password #changement indentation
if not server_config['server_uuid']:
server_config['server_uuid'] = str(uuid.uuid1())
# waptagent authentication method
# choices = [
# ("1","Allow unauthenticated registration, same behavior as wapt 1.3", True),
# ("2","Enable kerberos authentication required for machines registration", False),
# ("3","Disable Kerberos but registration require strong authentication", False),
# ]
# code, t = postconf.radiolist("WaptAgent Authentication type?", choices=choices,width=120)
code, t ='OK',1
if code=='cancel':
print("\n\npostconfiguration canceled\n\n")
sys.exit(1)
if t=="1":
server_config['allow_unauthenticated_registration'] = True
server_config['use_kerberos'] = False
if t=="2":
server_config['allow_unauthenticated_registration'] = False
server_config['use_kerberos'] = True
if t=="3":
server_config['allow_unauthenticated_registration'] = False
server_config['use_kerberos'] = False
waptserver.config.write_config_file(cfgfile=options.configfile,server_config=server_config,non_default_values_only=True)
run("/bin/chmod 640 %s" % options.configfile)
run("/bin/chown wapt %s" % options.configfile)
repo = WaptLocalRepo(wapt_folder)
repo.update_packages_index(force_all=True)
final_msg = ['Postconfiguration completed.',]
# postconf.msgbox("Press ok to start waptserver and wapttasks daemons")
enable_waptserver()
start_waptserver()
# In this new version Apache is replaced with Nginx? Proceed to disable Apache. After migration one can remove Apache install altogether
# try:
# run_verbose('systemctl stop %s' % APACHE_SVC)
# except:
# pass
# try:
# run_verbose('systemctl disable %s' % APACHE_SVC)
# except:
# pass
# nginx configuration dialog
reply = 'OK' # au lieu de postconf.yesno("Do you want to configure nginx?")
if reply == 'OK': #au lieu de postconf.DIALOG_OK:
try:
fqdn = socket.getfqdn()
if not fqdn:
fqdn = 'wapt'
if '.' not in fqdn:
fqdn += '.lan'
msg = 'FQDN for the WAPT server (eg. wapt.acme.com)'
# (code, reply) = postconf.inputbox(text=msg, width=len(msg)+4, init=fqdn)
# if code != postconf.DIALOG_OK:
# exit(1)
# else:
# fqdn = reply
dh_filename = '/etc/ssl/certs/dhparam.pem'
if not os.path.exists(dh_filename):
run_verbose('openssl dhparam -out %s 2048' % dh_filename)
os.chown(dh_filename, 0, NGINX_GID) #pylint: disable=no-member
os.chmod(dh_filename, 0o640) #pylint: disable=no-member
# cleanup of nginx.conf file
with open('/etc/nginx/nginx.conf','r') as read_conf:
nginx_conf = nginxparser.load(read_conf)
nginx_conf = nginx_set_worker_limit(nginx_conf)
nginx_conf = nginx_clean_default_vhost(nginx_conf)
with open("/etc/nginx/nginx.conf", "w") as nginx_conf_file:
nginx_conf_file.write(nginxparser.dumps(nginx_conf))
if server_config['use_kerberos']:
if type_debian():
if not check_if_deb_installed('libnginx-mod-http-auth-spnego'):
print('missing dependency libnginx-mod-http-auth-spnego, please install first before configuring kerberos')
sys.exit(1)
make_httpd_config(wapt_folder, '/opt/wapt/waptserver', fqdn, server_config['use_kerberos'], options.force_https,server_config['waptserver_port'])
final_msg.append('Please connect to https://' + fqdn + '/ to access the server.')
# postconf.msgbox("The Nginx config is done. We need to restart Nginx?")
run_verbose('systemctl enable nginx')
run_verbose('systemctl restart nginx')
setup_firewall()
except subprocess.CalledProcessError as cpe:
final_msg += [
'Error while trying to configure Nginx!',
'errno = ' + str(cpe.returncode) + ', output: ' + cpe.output
]
except Exception as e:
import traceback
final_msg += [
'Error while trying to configure Nginx!',
traceback.format_exc()
]
if check_mongo2pgsql_upgrade_needed(options.configfile) and\
postconf.yesno("It is necessary to migrate current database backend from mongodb to postgres. Press yes to start migration",no_label='cancel') == postconf.DIALOG_OK:
upgrade2postgres(options.configfile)
width = 4 + max(10, len(max(final_msg, key=len)))
height = 2 + max(20, len(final_msg))
# postconf.msgbox('\n'.join(final_msg), height=height, width=width)
if __name__ == "__main__":
if not type_debian() and not type_redhat():
print "unsupported distrib"
sys.exit(1)
main()