/usr/sbin/samba_kcc is in samba-common-bin 2:4.3.8+dfsg-0ubuntu1.
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 | #! /usr/bin/python2.7
#
# Compute our KCC topology
#
# Copyright (C) Dave Craft 2011
# Copyright (C) Andrew Bartlett 2015
#
# Andrew Bartlett's alleged work performed by his underlings Douglas
# Bagnall and Garming Sam.
#
# 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.
#
# 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
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import random
# ensure we get messages out immediately, so they get in the samba logs,
# and don't get swallowed by a timeout
os.environ['PYTHONUNBUFFERED'] = '1'
# forcing GMT avoids a problem in some timezones with kerberos. Both MIT
# heimdal can get mutual authentication errors due to the 24 second difference
# between UTC and GMT when using some zone files (eg. the PDT zone from
# the US)
os.environ["TZ"] = "GMT"
# Find right directory when running from source tree
import optparse
import time
from samba import getopt as options
from samba.kcc.graph_utils import verify_and_dot, list_verify_tests
from samba.kcc.graph_utils import GraphError
import logging
from samba.kcc.debug import logger, DEBUG, DEBUG_FN
from samba.kcc import KCC
def test_all_reps_from(lp, creds, unix_now, rng_seed=None):
"""Run the KCC from all DSAs in read-only mode
The behaviour depends on the global opts variable which contains
command line variables. Usually you will want to run it with
opt.dot_file_dir set (via --dot-file-dir) to see the graphs that
would be created from each DC.
:param lp: a loadparm object.
:param creds: a Credentials object.
:param unix_now: the unix epoch time as an integer
:param rng_seed: a seed for the random number generator
:return None:
"""
# This implies readonly and attempt_live_connections
kcc = KCC(unix_now, readonly=True,
verify=opts.verify, debug=opts.debug,
dot_file_dir=opts.dot_file_dir)
kcc.load_samdb(opts.dburl, lp, creds)
dsas = kcc.list_dsas()
needed_parts = {}
current_parts = {}
guid_to_dnstr = {}
for site in kcc.site_table.values():
guid_to_dnstr.update((str(dsa.dsa_guid), dnstr)
for dnstr, dsa in site.dsa_table.items())
dot_edges = []
dot_vertices = []
colours = []
vertex_colours = []
for dsa_dn in dsas:
if rng_seed:
random.seed(rng_seed)
kcc = KCC(unix_now, readonly=True,
verify=opts.verify, debug=opts.debug,
dot_file_dir=opts.dot_file_dir)
kcc.run(opts.dburl, lp, creds, forced_local_dsa=dsa_dn,
forget_local_links=opts.forget_local_links,
forget_intersite_links=opts.forget_intersite_links,
attempt_live_connections=opts.attempt_live_connections)
current, needed = kcc.my_dsa.get_rep_tables()
for dsa in kcc.my_site.dsa_table.values():
if dsa is kcc.my_dsa:
continue
kcc.translate_ntdsconn(dsa)
c, n = dsa.get_rep_tables()
current.update(c)
needed.update(n)
for name, rep_table, rep_parts in (
('needed', needed, needed_parts),
('current', current, current_parts)):
for part, nc_rep in rep_table.items():
edges = rep_parts.setdefault(part, [])
for reps_from in nc_rep.rep_repsFrom:
source = guid_to_dnstr[str(reps_from.source_dsa_obj_guid)]
dest = guid_to_dnstr[str(nc_rep.rep_dsa_guid)]
edges.append((source, dest))
for site in kcc.site_table.values():
for dsa in site.dsa_table.values():
if dsa.is_ro():
vertex_colours.append('#cc0000')
else:
vertex_colours.append('#0000cc')
dot_vertices.append(dsa.dsa_dnstr)
if dsa.connect_table:
DEBUG_FN("DSA %s %s connections:\n%s" %
(dsa.dsa_dnstr, len(dsa.connect_table),
[x.from_dnstr for x in
dsa.connect_table.values()]))
for con in dsa.connect_table.values():
if con.is_rodc_topology():
colours.append('red')
else:
colours.append('blue')
dot_edges.append((con.from_dnstr, dsa.dsa_dnstr))
verify_and_dot('all-dsa-connections', dot_edges, vertices=dot_vertices,
label="all dsa NTDSConnections", properties=(),
debug=DEBUG, verify=opts.verify,
dot_file_dir=opts.dot_file_dir,
directed=True, edge_colors=colours,
vertex_colors=vertex_colours)
for name, rep_parts in (('needed', needed_parts),
('current', current_parts)):
for part, edges in rep_parts.items():
verify_and_dot('all-repsFrom_%s__%s' % (name, part), edges,
directed=True, label=part,
properties=(), debug=DEBUG, verify=opts.verify,
dot_file_dir=opts.dot_file_dir)
##################################################
# samba_kcc entry point
##################################################
parser = optparse.OptionParser("samba_kcc [options]")
sambaopts = options.SambaOptions(parser)
credopts = options.CredentialsOptions(parser)
parser.add_option_group(sambaopts)
parser.add_option_group(credopts)
parser.add_option_group(options.VersionOptions(parser))
parser.add_option("--readonly", default=False,
help="compute topology but do not update database",
action="store_true")
parser.add_option("--debug",
help="debug output",
action="store_true")
parser.add_option("--verify",
help="verify that assorted invariants are kept",
action="store_true")
parser.add_option("--list-verify-tests",
help=("list what verification actions are available "
"and do nothing else"),
action="store_true")
parser.add_option("--dot-file-dir", default=None,
help="Write Graphviz .dot files to this directory")
parser.add_option("--seed",
help="random number seed",
type=int)
parser.add_option("--importldif",
help="import topology ldif file",
type=str, metavar="<file>")
parser.add_option("--exportldif",
help="export topology ldif file",
type=str, metavar="<file>")
parser.add_option("-H", "--URL",
help="LDB URL for database or target server",
type=str, metavar="<URL>", dest="dburl")
parser.add_option("--tmpdb",
help="schemaless database file to create for ldif import",
type=str, metavar="<file>")
parser.add_option("--now",
help=("assume current time is this ('YYYYmmddHHMMSS[tz]',"
" default: system time)"),
type=str, metavar="<date>")
parser.add_option("--forced-local-dsa",
help="run calculations assuming the DSA is this DN",
type=str, metavar="<DSA>")
parser.add_option("--attempt-live-connections", default=False,
help="Attempt to connect to other DSAs to test links",
action="store_true")
parser.add_option("--list-valid-dsas", default=False,
help=("Print a list of DSA dnstrs that could be"
" used in --forced-local-dsa"),
action="store_true")
parser.add_option("--test-all-reps-from", default=False,
help="Create and verify a graph of reps-from for every DSA",
action="store_true")
parser.add_option("--forget-local-links", default=False,
help="pretend not to know the existing local topology",
action="store_true")
parser.add_option("--forget-intersite-links", default=False,
help="pretend not to know the existing intersite topology",
action="store_true")
opts, args = parser.parse_args()
if opts.list_verify_tests:
list_verify_tests()
sys.exit(0)
if opts.debug:
logger.setLevel(logging.DEBUG)
elif opts.readonly:
logger.setLevel(logging.INFO)
else:
logger.setLevel(logging.WARNING)
# initialize seed from optional input parameter
if opts.seed:
random.seed(opts.seed)
else:
random.seed(0xACE5CA11)
if opts.now:
for timeformat in ("%Y%m%d%H%M%S%Z", "%Y%m%d%H%M%S"):
try:
now_tuple = time.strptime(opts.now, timeformat)
break
except ValueError:
pass
else:
# else happens if break doesn't --> no match
print >> sys.stderr, "could not parse time '%s'" % opts.now
sys.exit(1)
unix_now = int(time.mktime(now_tuple))
else:
unix_now = int(time.time())
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp, fallback_machine=True)
if opts.dburl is None:
opts.dburl = lp.samdb_url()
if opts.test_all_reps_from:
opts.readonly = True
rng_seed = opts.seed or 0xACE5CA11
test_all_reps_from(lp, creds, unix_now, rng_seed=rng_seed)
sys.exit()
# Instantiate Knowledge Consistency Checker and perform run
kcc = KCC(unix_now, readonly=opts.readonly, verify=opts.verify,
debug=opts.debug, dot_file_dir=opts.dot_file_dir)
if opts.exportldif:
rc = kcc.export_ldif(opts.dburl, lp, creds, opts.exportldif)
sys.exit(rc)
if opts.importldif:
if opts.tmpdb is None or opts.tmpdb.startswith('ldap'):
logger.error("Specify a target temp database file with --tmpdb option")
sys.exit(1)
rc = kcc.import_ldif(opts.tmpdb, lp, creds, opts.importldif,
forced_local_dsa=opts.forced_local_dsa)
if rc != 0:
sys.exit(rc)
if opts.list_valid_dsas:
kcc.load_samdb(opts.dburl, lp, creds)
print '\n'.join(kcc.list_dsas())
sys.exit()
try:
rc = kcc.run(opts.dburl, lp, creds, opts.forced_local_dsa,
opts.forget_local_links, opts.forget_intersite_links,
attempt_live_connections=opts.attempt_live_connections)
sys.exit(rc)
except GraphError, e:
print e
sys.exit(1)
|