0000-12-31 18:09:24 -05:50
|
|
|
# Authors: Karl MacMillan <kmacmillan@redhat.com>
|
2010-10-20 16:03:10 -05:00
|
|
|
# Authors: Simo Sorce <ssorce@redhat.com>
|
0000-12-31 18:09:24 -05:50
|
|
|
#
|
2010-10-20 16:03:10 -05:00
|
|
|
# Copyright (C) 2007-2010 Red Hat
|
0000-12-31 18:09:24 -05:50
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# This program 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.
|
0000-12-31 18:09:24 -05:50
|
|
|
#
|
|
|
|
# This program 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
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
0000-12-31 18:09:24 -05:50
|
|
|
#
|
|
|
|
|
2015-07-31 03:15:01 -05:00
|
|
|
from ipaserver.install import service
|
2016-06-12 10:02:09 -05:00
|
|
|
from ipaserver.install import sysupgrade
|
2009-02-05 14:03:08 -06:00
|
|
|
from ipapython import ipautil
|
2015-10-06 10:46:00 -05:00
|
|
|
from ipaplatform.constants import constants
|
2014-05-29 07:47:17 -05:00
|
|
|
from ipaplatform.paths import paths
|
2015-12-16 12:04:20 -06:00
|
|
|
from ipapython.ipa_log_manager import root_logger
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2015-10-06 10:46:00 -05:00
|
|
|
NTPD_OPTS_VAR = constants.NTPD_OPTS_VAR
|
|
|
|
NTPD_OPTS_QUOTE = constants.NTPD_OPTS_QUOTE
|
|
|
|
|
2016-06-12 10:02:09 -05:00
|
|
|
NTP_EXPOSED_IN_LDAP = 'exposed_in_ldap'
|
|
|
|
|
|
|
|
|
|
|
|
def ntp_ldap_enable(fqdn, base_dn, realm):
|
|
|
|
ntp = NTPInstance(realm=realm)
|
|
|
|
is_exposed_in_ldap = sysupgrade.get_upgrade_state(
|
|
|
|
'ntp', NTP_EXPOSED_IN_LDAP)
|
|
|
|
|
|
|
|
was_running = ntp.is_running()
|
|
|
|
|
|
|
|
if ntp.is_configured() and not is_exposed_in_ldap:
|
|
|
|
ntp.ldap_enable('NTP', fqdn, None, base_dn)
|
|
|
|
sysupgrade.set_upgrade_state('ntp', NTP_EXPOSED_IN_LDAP, True)
|
|
|
|
|
|
|
|
if was_running:
|
|
|
|
ntp.start()
|
|
|
|
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
class NTPInstance(service.Service):
|
2016-06-12 10:02:09 -05:00
|
|
|
def __init__(self, realm=None, fstore=None):
|
2016-11-03 10:38:06 -05:00
|
|
|
super(NTPInstance, self).__init__(
|
|
|
|
"ntpd",
|
|
|
|
service_desc="NTP daemon",
|
|
|
|
realm_name=realm,
|
|
|
|
fstore=fstore
|
|
|
|
)
|
2008-03-27 18:01:38 -05:00
|
|
|
|
2007-12-13 03:31:28 -06:00
|
|
|
def __write_config(self):
|
2010-10-14 09:52:58 -05:00
|
|
|
|
2014-05-29 07:47:17 -05:00
|
|
|
self.fstore.backup_file(paths.NTP_CONF)
|
|
|
|
self.fstore.backup_file(paths.SYSCONFIG_NTPD)
|
2010-10-14 09:52:58 -05:00
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# We use the OS variable to point it towards either the rhel
|
|
|
|
# or fedora pools. Other distros should be added in the future
|
|
|
|
# or we can get our own pool.
|
|
|
|
os = ""
|
2014-05-29 07:47:17 -05:00
|
|
|
if ipautil.file_exists(paths.ETC_FEDORA_RELEASE):
|
2008-02-20 10:03:46 -06:00
|
|
|
os = "fedora"
|
2014-05-29 07:47:17 -05:00
|
|
|
elif ipautil.file_exists(paths.ETC_REDHAT_RELEASE):
|
2008-02-20 10:03:46 -06:00
|
|
|
os = "rhel"
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2010-10-14 09:52:58 -05:00
|
|
|
srv_vals = []
|
|
|
|
srv_vals.append("0.%s.pool.ntp.org" % os)
|
|
|
|
srv_vals.append("1.%s.pool.ntp.org" % os)
|
|
|
|
srv_vals.append("2.%s.pool.ntp.org" % os)
|
2014-11-29 18:53:03 -06:00
|
|
|
srv_vals.append("3.%s.pool.ntp.org" % os)
|
2010-10-14 09:52:58 -05:00
|
|
|
srv_vals.append("127.127.1.0")
|
|
|
|
fudge = ["fudge", "127.127.1.0", "stratum", "10"]
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2010-10-14 09:52:58 -05:00
|
|
|
#read in memory, change it, then overwrite file
|
|
|
|
file_changed = False
|
|
|
|
fudge_present = False
|
|
|
|
ntpconf = []
|
2014-05-29 07:47:17 -05:00
|
|
|
fd = open(paths.NTP_CONF, "r")
|
2010-10-14 09:52:58 -05:00
|
|
|
for line in fd:
|
|
|
|
opt = line.split()
|
|
|
|
if len(opt) < 1:
|
|
|
|
ntpconf.append(line)
|
|
|
|
continue
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2010-10-14 09:52:58 -05:00
|
|
|
if opt[0] == "server":
|
|
|
|
match = False
|
|
|
|
for srv in srv_vals:
|
|
|
|
if opt[1] == srv:
|
|
|
|
match = True
|
|
|
|
break
|
|
|
|
if match:
|
|
|
|
srv_vals.remove(srv)
|
|
|
|
else:
|
|
|
|
file_changed = True
|
|
|
|
line = ""
|
|
|
|
elif opt[0] == "fudge":
|
|
|
|
if opt[0:4] == fudge[0:4]:
|
|
|
|
fudge_present = True
|
|
|
|
else:
|
|
|
|
file_changed = True
|
|
|
|
line = ""
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2010-10-14 09:52:58 -05:00
|
|
|
ntpconf.append(line)
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2010-10-14 09:52:58 -05:00
|
|
|
if file_changed or len(srv_vals) != 0 or not fudge_present:
|
2014-05-29 07:47:17 -05:00
|
|
|
fd = open(paths.NTP_CONF, "w")
|
2010-10-14 09:52:58 -05:00
|
|
|
for line in ntpconf:
|
|
|
|
fd.write(line)
|
|
|
|
fd.write("\n### Added by IPA Installer ###\n")
|
|
|
|
if len(srv_vals) != 0:
|
|
|
|
for srv in srv_vals:
|
2014-11-29 18:53:03 -06:00
|
|
|
fd.write("server "+srv+" iburst\n")
|
2010-10-14 09:52:58 -05:00
|
|
|
if not fudge_present:
|
|
|
|
fd.write("fudge 127.127.1.0 stratum 10\n")
|
|
|
|
fd.close()
|
|
|
|
|
|
|
|
#read in memory, find OPTIONS, check/change it, then overwrite file
|
2010-10-20 16:03:10 -05:00
|
|
|
needopts = [ {'val':'-x', 'need':True},
|
|
|
|
{'val':'-g', 'need':True} ]
|
2014-05-29 07:47:17 -05:00
|
|
|
fd = open(paths.SYSCONFIG_NTPD, "r")
|
2010-10-20 16:03:10 -05:00
|
|
|
lines = fd.readlines()
|
2008-02-20 10:03:46 -06:00
|
|
|
fd.close()
|
2010-10-20 16:03:10 -05:00
|
|
|
for line in lines:
|
|
|
|
sline = line.strip()
|
2015-10-06 10:46:00 -05:00
|
|
|
if not sline.startswith(NTPD_OPTS_VAR):
|
2010-10-20 16:03:10 -05:00
|
|
|
continue
|
2015-10-06 10:46:00 -05:00
|
|
|
sline = sline.replace(NTPD_OPTS_QUOTE, '')
|
2010-10-20 16:03:10 -05:00
|
|
|
for opt in needopts:
|
|
|
|
if sline.find(opt['val']) != -1:
|
|
|
|
opt['need'] = False
|
|
|
|
|
|
|
|
newopts = []
|
|
|
|
for opt in needopts:
|
|
|
|
if opt['need']:
|
|
|
|
newopts.append(opt['val'])
|
|
|
|
|
|
|
|
done = False
|
|
|
|
if newopts:
|
2014-05-29 07:47:17 -05:00
|
|
|
fd = open(paths.SYSCONFIG_NTPD, "w")
|
2010-10-20 16:03:10 -05:00
|
|
|
for line in lines:
|
|
|
|
if not done:
|
|
|
|
sline = line.strip()
|
2015-10-06 10:46:00 -05:00
|
|
|
if not sline.startswith(NTPD_OPTS_VAR):
|
2010-10-20 16:03:10 -05:00
|
|
|
fd.write(line)
|
|
|
|
continue
|
2015-10-06 10:46:00 -05:00
|
|
|
sline = sline.replace(NTPD_OPTS_QUOTE, '')
|
2016-09-26 07:08:17 -05:00
|
|
|
(_variable, opts) = sline.split('=', 1)
|
2015-10-06 10:46:00 -05:00
|
|
|
fd.write(NTPD_OPTS_VAR + '="%s %s"\n' % (opts, ' '.join(newopts)))
|
2010-10-20 16:03:10 -05:00
|
|
|
done = True
|
|
|
|
else:
|
|
|
|
fd.write(line)
|
2010-10-14 09:52:58 -05:00
|
|
|
fd.close()
|
2008-02-20 10:03:46 -06:00
|
|
|
|
|
|
|
def __stop(self):
|
2008-01-14 11:43:26 -06:00
|
|
|
self.backup_state("running", self.is_running())
|
2008-02-20 10:03:46 -06:00
|
|
|
self.stop()
|
|
|
|
|
|
|
|
def __start(self):
|
2008-01-14 11:43:26 -06:00
|
|
|
self.start()
|
|
|
|
|
|
|
|
def __enable(self):
|
|
|
|
self.backup_state("enabled", self.is_enabled())
|
2011-09-13 02:47:13 -05:00
|
|
|
self.enable()
|
2008-01-14 11:43:26 -06:00
|
|
|
|
2007-12-13 03:31:28 -06:00
|
|
|
def create_instance(self):
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
# we might consider setting the date manually using ntpd -qg in case
|
|
|
|
# the current time is very far off.
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2008-02-20 10:03:46 -06:00
|
|
|
self.step("stopping ntpd", self.__stop)
|
|
|
|
self.step("writing configuration", self.__write_config)
|
2008-01-14 11:43:26 -06:00
|
|
|
self.step("configuring ntpd to start on boot", self.__enable)
|
2008-02-20 10:03:46 -06:00
|
|
|
self.step("starting ntpd", self.__start)
|
2007-12-13 03:31:28 -06:00
|
|
|
|
2012-10-11 02:32:17 -05:00
|
|
|
self.start_creation()
|
2008-01-11 05:57:36 -06:00
|
|
|
|
|
|
|
def uninstall(self):
|
2010-05-03 14:21:51 -05:00
|
|
|
if self.is_configured():
|
|
|
|
self.print_msg("Unconfiguring %s" % self.service_name)
|
|
|
|
|
2008-01-11 05:57:36 -06:00
|
|
|
running = self.restore_state("running")
|
|
|
|
enabled = self.restore_state("enabled")
|
|
|
|
|
2015-01-27 04:04:03 -06:00
|
|
|
# service is not in LDAP, stop and disable service
|
|
|
|
# before restoring configuration
|
|
|
|
self.stop()
|
|
|
|
self.disable()
|
2008-03-27 18:01:38 -05:00
|
|
|
|
|
|
|
try:
|
2014-05-29 07:47:17 -05:00
|
|
|
self.fstore.restore_file(paths.NTP_CONF)
|
2015-07-30 09:49:29 -05:00
|
|
|
except ValueError as error:
|
2011-11-15 13:39:31 -06:00
|
|
|
root_logger.debug(error)
|
2008-03-27 18:01:38 -05:00
|
|
|
|
2015-01-27 04:04:03 -06:00
|
|
|
if enabled:
|
|
|
|
self.enable()
|
2008-01-11 05:57:36 -06:00
|
|
|
|
2015-01-27 04:04:03 -06:00
|
|
|
if running:
|
|
|
|
self.restart()
|