Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# Authors: Sumit Bose <sbose@redhat.com> 

# 

# Copyright (C) 2011  Red Hat 

# see file 'COPYING' for use and warranty information 

# 

# 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 errno 

import ldap 

import tempfile 

import uuid 

from ipaserver import ipaldap 

from ipaserver.install import installutils 

from ipaserver.install import service 

from ipaserver.install.dsinstance import realm_to_serverid 

from ipaserver.install.bindinstance import get_rr, add_rr, del_rr, \ 

                                           dns_zone_exists 

from ipalib import errors, api 

from ipapython import sysrestore 

from ipapython import ipautil 

from ipapython.ipa_log_manager import * 

 

import string 

import struct 

 

ALLOWED_NETBIOS_CHARS = string.ascii_uppercase + string.digits 

 

def check_inst(): 

    for smbfile in ['/usr/sbin/smbd', '/usr/bin/net', '/usr/bin/smbpasswd']: 

        if not os.path.exists(smbfile): 

            print "%s was not found on this system" % file 

            print "Please install the 'samba' packages and " \ 

                  "start the installation again" 

            return False 

 

    #TODO: Add check for needed samba4 libraries 

 

    return True 

 

def ipa_smb_conf_exists(): 

    try: 

        conf_fd = open('/etc/samba/smb.conf', 'r') 

    except IOError, err: 

        if err.errno == errno.ENOENT: 

            return False 

 

    lines = conf_fd.readlines() 

    conf_fd.close() 

    for line in lines: 

        if line.startswith('### Added by IPA Installer ###'): 

            return True 

    return False 

 

 

def check_netbios_name(s): 

    # NetBIOS names may not be longer than 15 allowed characters 

    if not s or len(s) > 15 or \ 

       ''.join([c for c in s if c not in ALLOWED_NETBIOS_CHARS]): 

        return False 

 

    return True 

 

def make_netbios_name(s): 

    return ''.join([c for c in s.split('.')[0].upper() \ 

                    if c in ALLOWED_NETBIOS_CHARS])[:15] 

 

class ADTRUSTInstance(service.Service): 

 

    ATTR_SID = "ipaNTSecurityIdentifier" 

    ATTR_FLAT_NAME = "ipaNTFlatName" 

    ATTR_GUID = "ipaNTDomainGUID" 

    OBJC_USER = "ipaNTUserAttrs" 

    OBJC_GROUP = "ipaNTGroupAttrs" 

    OBJC_DOMAIN = "ipaNTDomainAttrs" 

 

    def __init__(self, fstore=None, dm_password=None): 

        self.fqdn = None 

        self.ip_address = None 

        self.realm_name = None 

        self.domain_name = None 

        self.netbios_name = None 

        self.no_msdcs = None 

        self.smbd_user = None 

        self.suffix = None 

        self.ldapi_socket = None 

        self.smb_conf = None 

        self.smb_dn = None 

        self.smb_dn_pwd = None 

        self.trust_dn = None 

        self.smb_dom_dn = None 

        self.sub_dict = None 

 

        service.Service.__init__(self, "smb", dm_password=dm_password) 

 

        if fstore: 

            self.fstore = fstore 

        else: 

            self.fstore = sysrestore.FileStore('/var/lib/ipa/sysrestore') 

 

    def __create_samba_user(self): 

        print "The user for Samba is %s" % self.smb_dn 

        try: 

            self.admin_conn.getEntry(self.smb_dn, ldap.SCOPE_BASE) 

            print "Samba user entry exists, resetting password" 

 

            self.admin_conn.modify_s(self.smb_dn, \ 

                          [(ldap.MOD_REPLACE, "userPassword", self.smb_dn_pwd)]) 

            return 

 

        except errors.NotFound: 

            pass 

 

        # The user doesn't exist, add it 

        entry = ipaldap.Entry(self.smb_dn) 

        entry.setValues("objectclass", ["account", "simplesecurityobject"]) 

        entry.setValues("uid", "samba") 

        entry.setValues("userPassword", self.smb_dn_pwd) 

        self.admin_conn.addEntry(entry) 

 

        # And finally grant it permission to read NT passwords, we do not want 

        # to support LM passwords so there is no need to allow access to them. 

        # Also the premission to create trusted domain objects below the 

        # domain object is granted. 

        mod = [(ldap.MOD_ADD, 'aci', 

            str('(targetattr = "ipaNTHash")' \ 

                '(version 3.0; acl "Samba user can read NT passwords";' \ 

                'allow (read) userdn="ldap:///%s";)' % self.smb_dn)), 

               (ldap.MOD_ADD, 'aci', 

            str('(target = "ldap:///cn=ad,cn=trusts,%s")' \ 

                '(targetattr = "ipaNTTrustType || ipaNTTrustAttributes || ' \ 

                               'ipaNTTrustDirection || ' \ 

                               'ipaNTTrustPartner || ipaNTFlatName || ' \ 

                               'ipaNTTrustAuthOutgoing || ' \ 

                               'ipaNTTrustAuthIncoming || ' \ 

                               'ipaNTSecurityIdentifier || ' \ 

                               'ipaNTTrustForestTrustInfo || ' \ 

                               'ipaNTTrustPosixOffset || ' \ 

                               'ipaNTSupportedEncryptionTypes")' \ 

                '(version 3.0;acl "Allow samba user to create and delete ' \ 

                                  'trust accounts";' \ 

                'allow (write,add,delete) userdn = "ldap:///%s";)' % \ 

                 (self.suffix, self.smb_dn)))] 

 

        try: 

            self.admin_conn.modify_s(self.suffix, mod) 

        except ldap.TYPE_OR_VALUE_EXISTS: 

            root_logger.debug("samba user aci already exists in suffix %s on %s" % (self.suffix, self.admin_conn.host)) 

 

    def __gen_sid_string(self): 

        sub_ids = struct.unpack("<LLL", os.urandom(12)) 

        return "S-1-5-21-%d-%d-%d" % (sub_ids[0], sub_ids[1], sub_ids[2]) 

 

    def __add_admin_sids(self): 

        admin_dn = "uid=admin,cn=users,cn=accounts,%s" % self.suffix 

        admin_group_dn = "cn=admins,cn=groups,cn=accounts,%s" % self.suffix 

 

        try: 

            dom_entry = self.admin_conn.getEntry(self.smb_dom_dn, \ 

                                                 ldap.SCOPE_BASE) 

        except errors.NotFound: 

            print "Samba domain object not found" 

            return 

 

        dom_sid = dom_entry.getValue(self.ATTR_SID) 

        if not dom_sid: 

            print "Samba domain object does not have a SID" 

            return 

 

        try: 

            admin_entry = self.admin_conn.getEntry(admin_dn, ldap.SCOPE_BASE) 

        except: 

            print "IPA admin object not found" 

            return 

 

        try: 

            admin_group_entry = self.admin_conn.getEntry(admin_group_dn, \ 

                                                         ldap.SCOPE_BASE) 

        except: 

            print "IPA admin group object not found" 

            return 

 

        if admin_entry.getValue(self.ATTR_SID) or \ 

           admin_group_entry.getValue(self.ATTR_SID): 

            print "Admin SID already set, nothing to do" 

            return 

 

        try: 

            self.admin_conn.modify_s(admin_dn, \ 

                        [(ldap.MOD_ADD, "objectclass", self.OBJC_USER), \ 

                         (ldap.MOD_ADD, self.ATTR_SID, dom_sid + "-500")]) 

        except: 

            print "Failed to modify IPA admin object" 

 

        try: 

            self.admin_conn.modify_s(admin_group_dn, \ 

                        [(ldap.MOD_ADD, "objectclass", self.OBJC_GROUP), \ 

                         (ldap.MOD_ADD, self.ATTR_SID, dom_sid + "-512")]) 

        except: 

            print "Failed to modify IPA admin group object" 

 

    def __create_samba_domain_object(self): 

 

        try: 

            self.admin_conn.getEntry(self.smb_dom_dn, ldap.SCOPE_BASE) 

            print "Samba domain object already exists" 

            return 

        except errors.NotFound: 

            pass 

 

        for new_dn in (self.trust_dn, \ 

                       "cn=ad,"+self.trust_dn, \ 

                       "cn=ad,cn=etc,"+self.suffix): 

            try: 

                self.admin_conn.getEntry(new_dn, ldap.SCOPE_BASE) 

            except errors.NotFound: 

                entry = ipaldap.Entry(new_dn) 

                entry.setValues("objectclass", ["nsContainer"]) 

                name = new_dn.split('=')[1].split(',')[0] 

                if not name: 

                    print "Cannot extract RDN attribute value from [%s]" % \ 

                          new_dn 

                    return 

                entry.setValues("cn", name) 

                self.admin_conn.addEntry(entry) 

 

        entry = ipaldap.Entry(self.smb_dom_dn) 

        entry.setValues("objectclass", [self.OBJC_DOMAIN, "nsContainer"]) 

        entry.setValues("cn", self.domain_name) 

        entry.setValues(self.ATTR_FLAT_NAME, self.netbios_name) 

        entry.setValues(self.ATTR_SID, self.__gen_sid_string()) 

        entry.setValues(self.ATTR_GUID, str(uuid.uuid4())) 

        #TODO: which MAY attributes do we want to set ? 

        self.admin_conn.addEntry(entry) 

 

    def __write_smb_conf(self): 

        self.fstore.backup_file(self.smb_conf) 

 

        conf_fd = open(self.smb_conf, "w") 

        conf_fd.write('### Added by IPA Installer ###\n') 

        conf_fd.write('[global]\n') 

        conf_fd.write('config backend = registry\n') 

        conf_fd.close() 

 

    def __add_cldap_module(self): 

        self._ldap_mod("ipa-cldap-conf.ldif", self.sub_dict) 

 

    def __write_smb_registry(self): 

        template = os.path.join(ipautil.SHARE_DIR, "smb.conf.template") 

        conf = ipautil.template_file(template, self.sub_dict) 

        [tmp_fd, tmp_name] = tempfile.mkstemp() 

        os.write(tmp_fd, conf) 

        os.close(tmp_fd) 

 

        args = ["/usr/bin/net", "conf", "import", tmp_name] 

 

        try: 

            ipautil.run(args) 

        finally: 

            os.remove(tmp_name) 

 

    def __set_smb_ldap_password(self): 

        args = ["/usr/bin/smbpasswd", "-c", self.smb_conf, "-s", "-W" ] 

 

        ipautil.run(args, stdin = self.smb_dn_pwd + "\n" + \ 

                                  self.smb_dn_pwd + "\n" ) 

 

    def __setup_principal(self): 

        cifs_principal = "cifs/" + self.fqdn + "@" + self.realm_name 

        installutils.kadmin_addprinc(cifs_principal) 

 

        self.move_service(cifs_principal) 

 

        try: 

            ipautil.run(["ipa-rmkeytab", "--principal", cifs_principal, 

                                         "-k", "/etc/krb5.keytab"]) 

        except ipautil.CalledProcessError, e: 

            if e.returncode != 5: 

                root_logger.critical("Failed to remove old key for %s" % cifs_principal) 

 

        try: 

            ipautil.run(["ipa-getkeytab", "--server", self.fqdn, 

                                          "--principal", cifs_principal, 

                                          "-k", "/etc/krb5.keytab"]) 

        except ipautil.CalledProcessError, e: 

            root_logger.critical("Failed to add key for %s" % cifs_principal) 

 

    def __add_dns_service_records(self): 

        """ 

        Add DNS service records for Windows if DNS is enabled and the DNS zone 

        is managed. If there are already service records for LDAP and Kerberos 

        their values are used. Otherwise default values are used. 

        """ 

 

        zone = self.domain_name 

        host = self.fqdn.split(".")[0] 

 

        ipa_srv_rec = ( 

            ("_ldap._tcp", ["0 100 389 %s" % host]), 

            ("_kerberos._tcp", ["0 100 88 %s" % host]), 

            ("_kerberos._udp", ["0 100 88 %s" % host]) 

        ) 

        win_srv_suffix = (".Default-First-Site-Name._sites.dc._msdcs", 

                          ".dc._msdcs") 

 

        err_msg = None 

        ret = api.Command['dns_is_enabled']() 

        if not ret['result']: 

            err_msg = "DNS management was not enabled at install time." 

        else: 

            if not dns_zone_exists(zone): 

                err_msg = "DNS zone %s cannot be managed " \ 

                          "as it is not defined in IPA" % zone 

 

        if err_msg: 

            print err_msg 

            print "Add the following service records to your DNS server " \ 

                  "for DNS zone %s: " % zone 

            for (srv, rdata) in ipa_srv_rec: 

                for suff in win_srv_suffix: 

                    print " - %s%s"  % (srv, suff) 

            return 

 

        for (srv, rdata) in ipa_srv_rec: 

            ipa_rdata = get_rr(zone, srv, "SRV") 

            if not ipa_rdata: 

                ipa_rdata = rdata 

 

            for suff in win_srv_suffix: 

                win_srv = srv+suff 

                win_rdata = get_rr(zone, win_srv, "SRV") 

                if win_rdata: 

                    for rec in win_rdata: 

                        del_rr(zone, win_srv, "SRV", rec) 

                for rec in ipa_rdata: 

                    add_rr(zone, win_srv, "SRV", rec) 

 

    def __start(self): 

        try: 

            self.start() 

        except: 

            root_logger.critical("smbd service failed to start") 

 

    def __stop(self): 

        self.backup_state("running", self.is_running()) 

        try: 

            self.stop() 

        except: 

            pass 

 

    def __enable(self): 

        self.backup_state("enabled", self.is_enabled()) 

        # We do not let the system start IPA components on its own, 

        # Instead we reply on the IPA init script to start only enabled 

        # components as found in our LDAP configuration tree 

        try: 

            self.ldap_enable('ADTRUST', self.fqdn, self.dm_password, \ 

                             self.suffix) 

        except ldap.ALREADY_EXISTS: 

            root_logger.critical("ADTRUST Service startup entry already exists.") 

            pass 

 

    def __setup_sub_dict(self): 

        self.sub_dict = dict(REALM = self.realm_name, 

                             SUFFIX = self.suffix, 

                             NETBIOS_NAME = self.netbios_name, 

                             SMB_DN = self.smb_dn, 

                             LDAPI_SOCKET = self.ldapi_socket) 

 

    def setup(self, fqdn, ip_address, realm_name, domain_name, netbios_name, 

              no_msdcs=False, smbd_user="samba"): 

        self.fqdn = fqdn 

        self.ip_address = ip_address 

        self.realm_name = realm_name 

        self.domain_name = domain_name 

        self.netbios_name = netbios_name 

        self.no_msdcs = no_msdcs 

        self.smbd_user = smbd_user 

        self.suffix = ipautil.realm_to_suffix(self.realm_name) 

        self.ldapi_socket = "%%2fvar%%2frun%%2fslapd-%s.socket" % \ 

                            realm_to_serverid(self.realm_name) 

 

        self.smb_conf = "/etc/samba/smb.conf" 

 

        self.smb_dn = "uid=samba,cn=sysaccounts,cn=etc,%s" % self.suffix 

        self.smb_dn_pwd = ipautil.ipa_generate_password() 

 

        self.trust_dn = "cn=trusts,%s" % self.suffix 

        self.smb_dom_dn = "cn=%s,cn=ad,cn=etc,%s" % (self.domain_name, \ 

                                                     self.suffix) 

 

        self.__setup_sub_dict() 

 

 

    def create_instance(self): 

 

        self.ldap_connect() 

 

        self.step("stopping smbd", self.__stop) 

        self.step("create samba user", self.__create_samba_user) 

        self.step("create samba domain object", \ 

                  self.__create_samba_domain_object) 

        self.step("create samba config registry", self.__write_smb_registry) 

        self.step("writing samba config file", self.__write_smb_conf) 

        self.step("setting password for the samba user", \ 

                  self.__set_smb_ldap_password) 

        self.step("Adding cifs Kerberos principal", self.__setup_principal) 

        self.step("Adding admin(group) SIDs", self.__add_admin_sids) 

        self.step("Activation CLDAP plugin", self.__add_cldap_module) 

        self.step("configuring smbd to start on boot", self.__enable) 

        if not self.no_msdcs: 

            self.step("adding special DNS service records", \ 

                      self.__add_dns_service_records) 

        self.step("starting smbd", self.__start) 

 

        self.start_creation("Configuring smbd:") 

 

    def uninstall(self): 

        if self.is_configured(): 

            self.print_msg("Unconfiguring %s" % self.service_name) 

 

        running = self.restore_state("running") 

        enabled = self.restore_state("enabled") 

 

        try: 

            self.stop() 

        except: 

            pass 

 

        for r_file in [self.smb_conf]: 

            try: 

                self.fstore.restore_file(r_file) 

            except ValueError, error: 

                root_logger.debug(error) 

                pass 

 

        if not enabled is None and not enabled: 

            self.disable() 

 

        if not running is None and running: 

            self.start()