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

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

# Authors: 

#   Rob Crittenden <rcritten@redhat.com> 

#   Pavel Zuna <pzuna@redhat.com> 

# 

# Copyright (C) 2008  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/>. 

 

from ipalib import api, errors 

from ipalib import Object, Command 

from ipalib import Flag, Str, IA5Str 

from ipalib.plugins.baseldap import * 

from ipalib import _, ngettext 

import ldap as _ldap 

import os 

 

__doc__ = _(""" 

Automount 

 

Stores automount(8) configuration for autofs(8) in IPA. 

 

The base of an automount configuration is the configuration file auto.master. 

This is also the base location in IPA. Multiple auto.master configurations 

can be stored in separate locations. A location is implementation-specific 

with the default being a location named 'default'. For example, you can have 

locations by geographic region, by floor, by type, etc. 

 

Automount has three basic object types: locations, maps and keys. 

 

A location defines a set of maps anchored in auto.master. This allows you 

to store multiple automount configurations. A location in itself isn't 

very interesting, it is just a point to start a new automount map. 

 

A map is roughly equivalent to a discrete automount file and provides 

storage for keys. 

 

A key is a mount point associated with a map. 

 

When a new location is created, two maps are automatically created for 

it: auto.master and auto.direct. auto.master is the root map for all 

automount maps for the location. auto.direct is the default map for 

direct mounts and is mounted on /-. 

 

An automount map may contain a submount key. This key defines a mount 

location within the map that references another map. This can be done 

either using automountmap-add-indirect --parentmap or manually 

with automountkey-add and setting info to "-type=autofs :<mapname>". 

 

EXAMPLES: 

 

Locations: 

 

  Create a named location, "Baltimore": 

    ipa automountlocation-add baltimore 

 

  Display the new location: 

    ipa automountlocation-show baltimore 

 

  Find available locations: 

    ipa automountlocation-find 

 

  Remove a named automount location: 

    ipa automountlocation-del baltimore 

 

  Show what the automount maps would look like if they were in the filesystem: 

    ipa automountlocation-tofiles baltimore 

 

  Import an existing configuration into a location: 

    ipa automountlocation-import baltimore /etc/auto.master 

 

    The import will fail if any duplicate entries are found. For 

    continuous operation where errors are ignored, use the --continue 

    option. 

 

Maps: 

 

  Create a new map, "auto.share": 

    ipa automountmap-add baltimore auto.share 

 

  Display the new map: 

    ipa automountmap-show baltimore auto.share 

 

  Find maps in the location baltimore: 

    ipa automountmap-find baltimore 

 

  Create an indirect map with auto.share as a submount: 

    ipa automountmap-add-indirect baltimore --parentmap=auto.share --mount=sub auto.man 

 

    This is equivalent to: 

 

    ipa automountmap-add-indirect baltimore --mount=/man auto.man 

    ipa automountkey-add baltimore auto.man --key=sub --info="-fstype=autofs ldap:auto.share" 

 

  Remove the auto.share map: 

    ipa automountmap-del baltimore auto.share 

 

Keys: 

 

  Create a new key for the auto.share map in location baltimore. This ties 

  the map we previously created to auto.master: 

    ipa automountkey-add baltimore auto.master --key=/share --info=auto.share 

 

  Create a new key for our auto.share map, an NFS mount for man pages: 

    ipa automountkey-add baltimore auto.share --key=man --info="-ro,soft,rsize=8192,wsize=8192 ipa.example.com:/shared/man" 

 

  Find all keys for the auto.share map: 

    ipa automountkey-find baltimore auto.share 

 

  Find all direct automount keys: 

    ipa automountkey-find baltimore --key=/- 

 

  Remove the man key from the auto.share map: 

    ipa automountkey-del baltimore auto.share --key=man 

""") 

 

""" 

Developer notes: 

 

RFC 2707bis http://www.padl.com/~lukeh/rfc2307bis.txt 

 

A few notes on automount: 

- The default parent when adding an indirect map is auto.master 

- This uses the short format for automount maps instead of the 

  URL format. Support for ldap as a map source in nsswitch.conf was added 

  in autofs version 4.1.3-197.  Any version prior to that is not expected 

  to work. 

- An indirect key should not begin with / 

 

As an example, the following automount files: 

 

auto.master: 

/-      auto.direct 

/mnt    auto.mnt 

 

auto.mnt: 

stuff -ro,soft,rsize=8192,wsize=8192 nfs.example.com:/vol/archive/stuff 

 

are equivalent to the following LDAP entries: 

 

# auto.master, automount, example.com 

dn: automountmapname=auto.master,cn=automount,dc=example,dc=com 

objectClass: automountMap 

objectClass: top 

automountMapName: auto.master 

 

# auto.direct, automount, example.com 

dn: automountmapname=auto.direct,cn=automount,dc=example,dc=com 

objectClass: automountMap 

objectClass: top 

automountMapName: auto.direct 

 

# /-, auto.master, automount, example.com 

dn: automountkey=/-,automountmapname=auto.master,cn=automount,dc=example,dc=co 

m 

objectClass: automount 

objectClass: top 

automountKey: /- 

automountInformation: auto.direct 

 

# auto.mnt, automount, example.com 

dn: automountmapname=auto.mnt,cn=automount,dc=example,dc=com 

objectClass: automountMap 

objectClass: top 

automountMapName: auto.mnt 

 

# /mnt, auto.master, automount, example.com 

dn: automountkey=/mnt,automountmapname=auto.master,cn=automount,dc=example,dc= 

com 

objectClass: automount 

objectClass: top 

automountKey: /mnt 

automountInformation: auto.mnt 

 

# stuff, auto.mnt, automount, example.com 

dn: automountkey=stuff,automountmapname=auto.mnt,cn=automount,dc=example,dc=com 

objectClass: automount 

objectClass: top 

automountKey: stuff 

automountInformation: -ro,soft,rsize=8192,wsize=8192 nfs.example.com:/vol/arch 

ive/stuff 

 

""" 

 

DIRECT_MAP_KEY = u'/-' 

DEFAULT_MAPS = (u'auto.direct', ) 

DEFAULT_KEYS = (u'/-', ) 

 

class automountlocation(LDAPObject): 

    """ 

    Location container for automount maps. 

    """ 

    container_dn = api.env.container_automount 

    object_name = _('automount location') 

    object_name_plural = _('automount locations') 

    object_class = ['nscontainer'] 

    default_attributes = ['cn'] 

    label = _('Automount Locations') 

    label_singular = _('Automount Location') 

 

    takes_params = ( 

        Str('cn', 

            cli_name='location', 

            label=_('Location'), 

            doc=_('Automount location name.'), 

            primary_key=True, 

        ), 

    ) 

 

api.register(automountlocation) 

 

 

class automountlocation_add(LDAPCreate): 

    __doc__ = _('Create a new automount location.') 

 

    msg_summary = _('Added automount location "%(value)s"') 

 

    def post_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        # create auto.master for the new location 

        self.api.Command['automountmap_add'](keys[-1], u'auto.master') 

 

        # add additional pre-created maps and keys 

        # IMPORTANT: add pre-created maps/keys to DEFAULT_MAPS/DEFAULT_KEYS 

        # so that they do not cause conflicts during import operation 

        self.api.Command['automountmap_add_indirect']( 

            keys[-1], u'auto.direct', key=DIRECT_MAP_KEY 

        ) 

        return dn 

 

 

api.register(automountlocation_add) 

 

 

class automountlocation_del(LDAPDelete): 

    __doc__ = _('Delete an automount location.') 

 

    msg_summary = _('Deleted automount location "%(value)s"') 

 

api.register(automountlocation_del) 

 

 

class automountlocation_show(LDAPRetrieve): 

    __doc__ = _('Display an automount location.') 

 

api.register(automountlocation_show) 

 

 

class automountlocation_find(LDAPSearch): 

    __doc__ = _('Search for an automount location.') 

 

    msg_summary = ngettext( 

        '%(count)d automount location matched', 

        '%(count)d automount locations matched', 0 

    ) 

 

api.register(automountlocation_find) 

 

 

class automountlocation_tofiles(LDAPQuery): 

    __doc__ = _('Generate automount files for a specific location.') 

 

    def execute(self, *args, **options): 

        ldap = self.obj.backend 

 

        location = self.api.Command['automountlocation_show'](args[0]) 

 

        maps = [] 

        result = self.api.Command['automountkey_find'](args[0], u'auto.master') 

        truncated = result['truncated'] 

        maps = result['result'] 

 

        # maps, truncated 

        # TODO: handle truncated results 

        #       ?use ldap.find_entries instead of automountkey_find? 

 

        keys = {} 

        mapnames = [u'auto.master'] 

        for m in maps: 

            info = m['automountinformation'][0] 

            mapnames.append(info) 

            key = info.split(None) 

            result = self.api.Command['automountkey_find'](args[0], key[0]) 

            truncated = result['truncated'] 

            keys[info] = result['result'] 

            # TODO: handle truncated results, same as above 

 

        allmaps = self.api.Command['automountmap_find'](args[0])['result'] 

        orphanmaps = [] 

        for m in allmaps: 

            if m['automountmapname'][0] not in mapnames: 

                orphanmaps.append(m) 

 

        orphankeys = [] 

        # Collect all the keys for the orphaned maps 

        for m in orphanmaps: 

            key = m['automountmapname'] 

            result = self.api.Command['automountkey_find'](args[0], key[0]) 

            truncated = result['truncated'] 

            orphankeys.append(result['result']) 

 

        return dict(result=dict(maps=maps, keys=keys, 

                    orphanmaps=orphanmaps, orphankeys=orphankeys)) 

 

    def output_for_cli(self, textui, result, *keys, **options): 

        maps = result['result']['maps'] 

        keys = result['result']['keys'] 

        orphanmaps = result['result']['orphanmaps'] 

        orphankeys = result['result']['orphankeys'] 

 

        textui.print_plain('/etc/auto.master:') 

        for m in maps: 

            if m['automountinformation'][0].startswith('-'): 

                textui.print_plain( 

                    '%s\t%s' % ( 

                        m['automountkey'][0], m['automountinformation'][0] 

                    ) 

                ) 

            else: 

                textui.print_plain( 

                    '%s\t/etc/%s' % ( 

                        m['automountkey'][0], m['automountinformation'][0] 

                    ) 

                ) 

        for m in maps: 

            if m['automountinformation'][0].startswith('-'): 

                continue 

            info = m['automountinformation'][0] 

            textui.print_plain('---------------------------') 

            textui.print_plain('/etc/%s:' % info) 

            for k in keys[info]: 

                textui.print_plain( 

                    '%s\t%s' % ( 

                        k['automountkey'][0], k['automountinformation'][0] 

                    ) 

                ) 

 

        textui.print_plain('') 

        textui.print_plain(_('maps not connected to /etc/auto.master:')) 

        for m in orphanmaps: 

            textui.print_plain('---------------------------') 

            textui.print_plain('/etc/%s:' % m['automountmapname']) 

            for k in orphankeys: 

                if len(k) == 0: continue 

                dn = DN(k[0]['dn']) 

                if dn['automountmapname'] == m['automountmapname'][0]: 

                    textui.print_plain( 

                        '%s\t%s' % ( 

                            k[0]['automountkey'][0], k[0]['automountinformation'][0] 

                        ) 

                    ) 

 

api.register(automountlocation_tofiles) 

 

 

class automountlocation_import(LDAPQuery): 

    __doc__ = _('Import automount files for a specific location.') 

 

    takes_args = ( 

        Str('masterfile', 

            label=_('Master file'), 

            doc=_('Automount master file.'), 

        ), 

    ) 

 

    takes_options = ( 

        Flag('continue?', 

             cli_name='continue', 

             doc=_('Continuous operation mode. Errors are reported but the process continues.'), 

        ), 

    ) 

 

    def __read_mapfile(self, filename): 

        try: 

            fp = open(filename, 'r') 

            map = fp.readlines() 

            fp.close() 

        except IOError, e: 

            if e.errno == 2: 

                raise errors.NotFound( 

                    reason=_('File %(file)s not found') % {'file': filename} 

                ) 

            else: 

                raise 

        return map 

 

    def forward(self, *args, **options): 

        """ 

        The basic idea is to read the master file and create all the maps 

        we need, then read each map file and add all the keys for the map. 

        """ 

        location = self.api.Command['automountlocation_show'](args[0]) 

 

        result = {'maps':[], 'keys':[], 'skipped':[], 'duplicatekeys':[], 'duplicatemaps':[]} 

        maps = {} 

        master = self.__read_mapfile(args[1]) 

        for m in master: 

            if m.startswith('#'): 

                continue 

            m = m.rstrip() 

            if m.startswith('+'): 

                result['skipped'].append([m,args[1]]) 

                continue 

            if len(m) == 0: 

                continue 

            am = m.split(None) 

            if len(am) < 2: 

                continue 

 

            if am[1].startswith('/'): 

                mapfile = am[1].replace('"','') 

                am[1] = os.path.basename(am[1]) 

                maps[am[1]] = mapfile 

            info = ' '.join(am[1:]) 

 

            # Add a new key to the auto.master map for the new map file 

            try: 

                api.Command['automountkey_add']( 

                            args[0], 

                            u'auto.master', 

                            automountkey=unicode(am[0]), 

                            automountinformation=unicode(' '.join(am[1:]))) 

                result['keys'].append([am[0], u'auto.master']) 

            except errors.DuplicateEntry, e: 

                if unicode(am[0]) in DEFAULT_KEYS: 

                    # ignore conflict when the key was pre-created by the framework 

                    pass 

                elif options.get('continue', False): 

                    result['duplicatekeys'].append(am[0]) 

                    pass 

                else: 

                    raise errors.DuplicateEntry( 

                        message=_('key %(key)s already exists') % dict( 

                            key=am[0])) 

            # Add the new map 

            if not am[1].startswith('-'): 

                try: 

                    api.Command['automountmap_add'](args[0], unicode(am[1])) 

                    result['maps'].append(am[1]) 

                except errors.DuplicateEntry, e: 

                    if unicode(am[1]) in DEFAULT_MAPS: 

                        # ignore conflict when the map was pre-created by the framework 

                        pass 

                    elif options.get('continue', False): 

                        result['duplicatemaps'].append(am[0]) 

                        pass 

                    else: 

                        raise errors.DuplicateEntry( 

                            message=_('map %(map)s already exists') % dict( 

                                map=am[1])) 

                except errors.DuplicateEntry: 

                    # This means the same map is used on several mount points. 

                    pass 

 

        # Now iterate over the map files and add the keys. To handle 

        # continuation lines I'll make a pass through it to skip comments 

        # etc and also to combine lines. 

        for m in maps: 

            map = self.__read_mapfile(maps[m]) 

            lines = [] 

            cont = '' 

            for x in map: 

                if x.startswith('#'): 

                    continue 

                x = x.rstrip() 

                if x.startswith('+'): 

                    result['skipped'].append([m, maps[m]]) 

                    continue 

                if len(x) == 0: 

                    continue 

                if x.endswith("\\"): 

                    cont = cont + x[:-1] + ' ' 

                else: 

                    lines.append(cont + x) 

                    cont='' 

            for x in lines: 

                am = x.split(None) 

                key = unicode(am[0].replace('"','')) 

                try: 

                    api.Command['automountkey_add']( 

                            args[0], 

                            unicode(m), 

                            automountkey=key, 

                            automountinformation=unicode(' '.join(am[1:]))) 

                    result['keys'].append([key,m]) 

                except errors.DuplicateEntry, e: 

                    if options.get('continue', False): 

                        result['duplicatekeys'].append(am[0]) 

                        pass 

                    else: 

                        raise e 

 

        return dict(result=result) 

 

    def output_for_cli(self, textui, result, *keys, **options): 

        maps = result['result']['maps'] 

        keys = result['result']['keys'] 

        duplicatemaps = result['result']['duplicatemaps'] 

        duplicatekeys = result['result']['duplicatekeys'] 

        skipped = result['result']['skipped'] 

 

        textui.print_plain('Imported maps:') 

        for m in maps: 

            textui.print_plain( 

                'Added %s' % m 

            ) 

        textui.print_plain('') 

 

        textui.print_plain('Imported keys:') 

        for k in keys: 

            textui.print_plain( 

                'Added %s to %s' % ( 

                    k[0], k[1] 

                ) 

            ) 

        textui.print_plain('') 

 

        if len(skipped) > 0: 

            textui.print_plain('Ignored keys:') 

            for k in skipped: 

                textui.print_plain( 

                    'Ignored %s to %s' % ( 

                        k[0], k[1] 

                    ) 

                ) 

 

 

        if options.get('continue', False) and len(duplicatemaps) > 0: 

            textui.print_plain('') 

            textui.print_plain('Duplicate maps skipped:') 

            for m in duplicatemaps: 

                textui.print_plain( 

                    'Skipped %s' % m 

                ) 

 

 

        if options.get('continue', False) and len(duplicatekeys) > 0: 

            textui.print_plain('') 

            textui.print_plain('Duplicate keys skipped:') 

            for k in duplicatekeys: 

                textui.print_plain( 

                    'Skipped %s' % k 

                ) 

 

 

api.register(automountlocation_import) 

 

class automountmap(LDAPObject): 

    """ 

    Automount map object. 

    """ 

    parent_object = 'automountlocation' 

    container_dn = api.env.container_automount 

    object_name = _('automount map') 

    object_name_plural = _('automount maps') 

    object_class = ['automountmap'] 

    default_attributes = ['automountmapname', 'description'] 

 

    takes_params = ( 

        IA5Str('automountmapname', 

               cli_name='map', 

               label=_('Map'), 

               doc=_('Automount map name.'), 

               primary_key=True, 

        ), 

        Str('description?', 

            cli_name='desc', 

            label=_('Description'), 

        ), 

    ) 

 

    label = _('Automount Maps') 

    label_singular = _('Automount Map') 

 

api.register(automountmap) 

 

 

class automountmap_add(LDAPCreate): 

    __doc__ = _('Create a new automount map.') 

 

    msg_summary = _('Added automount map "%(value)s"') 

 

api.register(automountmap_add) 

 

 

class automountmap_del(LDAPDelete): 

    __doc__ = _('Delete an automount map.') 

 

    msg_summary = _('Deleted automount map "%(value)s"') 

 

    def post_callback(self, ldap, dn, *keys, **options): 

        assert isinstance(dn, DN) 

        # delete optional parental connection (direct maps may not have this) 

        try: 

            (dn_, entry_attrs) = ldap.find_entry_by_attr( 

                'automountinformation', keys[0], 'automount', 

                base_dn=self.obj.container_dn 

            ) 

            ldap.delete_entry(dn_) 

        except errors.NotFound: 

            pass 

        return True 

 

api.register(automountmap_del) 

 

 

class automountmap_mod(LDAPUpdate): 

    __doc__ = _('Modify an automount map.') 

 

    msg_summary = _('Modified automount map "%(value)s"') 

 

api.register(automountmap_mod) 

 

 

class automountmap_find(LDAPSearch): 

    __doc__ = _('Search for an automount map.') 

 

    msg_summary = ngettext( 

        '%(count)d automount map matched', 

        '%(count)d automount maps matched', 0 

    ) 

 

api.register(automountmap_find) 

 

 

class automountmap_show(LDAPRetrieve): 

    __doc__ = _('Display an automount map.') 

 

api.register(automountmap_show) 

 

 

class automountkey(LDAPObject): 

    __doc__ = _('Automount key object.') 

 

    parent_object = 'automountmap' 

    container_dn = api.env.container_automount 

    object_name = _('automount key') 

    object_name_plural = _('automount keys') 

    object_class = ['automount'] 

    default_attributes = [ 

        'automountkey', 'automountinformation', 'description' 

    ] 

    rdn_is_primary_key = True 

    rdn_separator = ' ' 

 

    takes_params = ( 

        IA5Str('automountkey', 

               cli_name='key', 

               label=_('Key'), 

               doc=_('Automount key name.'), 

               flags=('req_update',), 

        ), 

        IA5Str('automountinformation', 

               cli_name='info', 

               label=_('Mount information'), 

        ), 

        Str('description', 

            label=_('description'), 

            primary_key=True, 

            required=False, 

            flags=['no_create', 'no_update', 'no_search', 'no_output'], 

            exclude='webui', 

        ), 

    ) 

 

    num_parents = 2 

    label = _('Automount Keys') 

    label_singular = _('Automount Key') 

    already_exists_msg = _('The key,info pair must be unique. A key named %(key)s with info %(info)s already exists') 

    key_already_exists_msg = _('key named %(key)s already exists') 

    object_not_found_msg = _('The automount key %(key)s with info %(info)s does not exist') 

 

    def get_dn(self, *keys, **kwargs): 

        # all commands except for create send pk in keys, too 

        # create cannot due to validation in frontend.py 

        ldap = self.backend 

        if len(keys) == self.num_parents: 

            try: 

                pkey = kwargs[self.primary_key.name] 

            except KeyError: 

                raise ValueError('Not enough keys and pkey not in kwargs') 

            parent_keys = keys 

        else: 

            pkey = keys[-1] 

            parent_keys = keys[:-1] 

 

        parent_dn = self.api.Object[self.parent_object].get_dn(*parent_keys) 

        dn = self.backend.make_dn_from_attr( 

            self.primary_key.name, 

            pkey, 

            parent_dn 

        ) 

        # If we're doing an add then just return the dn we created, there 

        # is no need to check for it. 

        if kwargs.get('add_operation', False): 

            return dn 

        # We had an older mechanism where description consisted of 

        # 'automountkey automountinformation' so we could support multiple 

        # direct maps. This made showing keys nearly impossible since it 

        # required automountinfo to show, which if you had you didn't need 

        # to look at the key. We still support existing entries but now 

        # only create this type of dn when the key is /- 

        # 

        # First we look with the information given, then try to search for 

        # the right entry. 

        try: 

            (dn, entry_attrs) = ldap.get_entry( 

                dn, ['*'], normalize=self.normalize_dn 

            ) 

        except errors.NotFound: 

            if kwargs.get('automountinformation', False): 

                sfilter = '(&(automountkey=%s)(automountinformation=%s))' % \ 

                    (kwargs['automountkey'], kwargs['automountinformation']) 

            else: 

                sfilter = '(automountkey=%s)' % kwargs['automountkey'] 

            basedn = DN(('automountmapname', parent_keys[1]), ('cn', parent_keys[0]), self.container_dn) 

            attrs_list = ['*'] 

            (entries, truncated) = ldap.find_entries(sfilter, attrs_list, 

                basedn, _ldap.SCOPE_ONELEVEL) 

            if len(entries) > 1: 

                raise errors.NotFound(reason=_('More than one entry with key %(key)s found, use --info to select specific entry.') % dict(key=pkey)) 

            if truncated: 

                raise errors.LimitsExceeded() 

            dn = entries[0][0] 

 

        return dn 

 

    def handle_not_found(self, *keys): 

        pkey = keys[-1] 

        key = pkey.split(self.rdn_separator)[0] 

        info = self.rdn_separator.join(pkey.split(self.rdn_separator)[1:]) 

        raise errors.NotFound( 

            reason=self.object_not_found_msg % { 

                'key': key, 'info': info, 

            } 

        ) 

 

    def handle_duplicate_entry(self, *keys): 

        pkey = keys[-1] 

        key = pkey.split(self.rdn_separator)[0] 

        info = self.rdn_separator.join(pkey.split(self.rdn_separator)[1:]) 

        if info: 

            raise errors.DuplicateEntry( 

                message=self.already_exists_msg % { 

                    'key': key, 'info': info, 

                } 

            ) 

        else: 

            raise errors.DuplicateEntry( 

                message=self.key_already_exists_msg % { 

                    'key': key, 

                } 

            ) 

 

    def get_pk(self, key, info=None): 

        if key == DIRECT_MAP_KEY and info: 

            return self.rdn_separator.join((key,info)) 

        else: 

            return key 

 

    def check_key_uniqueness(self, location, map, **keykw): 

        info = None 

        key = keykw.get('automountkey') 

        if key is None: 

            return 

 

        entries = self.methods.find(location, map, automountkey=key)['result'] 

        if len(entries) > 0: 

            if key == DIRECT_MAP_KEY: 

                info = keykw.get('automountinformation') 

                entries = self.methods.find(location, map, **keykw)['result'] 

                if len(entries) > 0: 

                    self.handle_duplicate_entry(location, map, self.get_pk(key, info)) 

                else: return 

            self.handle_duplicate_entry(location, map, self.get_pk(key, info)) 

 

api.register(automountkey) 

 

 

class automountkey_add(LDAPCreate): 

    __doc__ = _('Create a new automount key.') 

 

    msg_summary = _('Added automount key "%(value)s"') 

 

    internal_options = ['description', 'add_operation'] 

 

    def pre_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        options.pop('add_operation', None) 

        options.pop('description', None) 

        self.obj.check_key_uniqueness(keys[-2], keys[-1], **options) 

        return dn 

 

    def get_args(self): 

        for key in self.obj.get_ancestor_primary_keys(): 

            yield key 

 

    def execute(self, *keys, **options): 

        key = options['automountkey'] 

        info = options.get('automountinformation', None) 

        options[self.obj.primary_key.name] = self.obj.get_pk(key, info) 

        options['add_operation'] = True 

        result = super(automountkey_add, self).execute(*keys, **options) 

        result['value'] = options['automountkey'] 

        return result 

 

api.register(automountkey_add) 

 

 

class automountmap_add_indirect(LDAPCreate): 

    __doc__ = _('Create a new indirect mount point.') 

 

    msg_summary = _('Added automount indirect map "%(value)s"') 

 

    takes_options = LDAPCreate.takes_options + ( 

        Str('key', 

            cli_name='mount', 

            label=_('Mount point'), 

        ), 

        Str('parentmap?', 

            cli_name='parentmap', 

            label=_('Parent map'), 

            doc=_('Name of parent automount map (default: auto.master).'), 

            default=u'auto.master', 

            autofill=True, 

        ), 

    ) 

 

    def execute(self, *keys, **options): 

        parentmap = options.pop('parentmap', None) 

        key = options.pop('key') 

        result = self.api.Command['automountmap_add'](*keys, **options) 

        try: 

            if parentmap != u'auto.master': 

                if key.startswith('/'): 

                    raise errors.ValidationError(name='mount', 

                        error=_('mount point is relative to parent map, ' 

                            'cannot begin with /')) 

                location = keys[0] 

                map = keys[1] 

                options['automountinformation'] = map 

 

                # Ensure the referenced map exists 

                self.api.Command['automountmap_show'](location, parentmap) 

                # Add a submount key 

                self.api.Command['automountkey_add']( 

                    location, parentmap, automountkey=key, 

                    automountinformation='-fstype=autofs ldap:%s' % map) 

            else: # adding to auto.master 

                # Ensure auto.master exists 

                self.api.Command['automountmap_show'](keys[0], parentmap) 

                self.api.Command['automountkey_add']( 

                    keys[0], u'auto.master', automountkey=key, 

                    automountinformation=keys[1]) 

        except Exception: 

            # The key exists, drop the map 

            self.api.Command['automountmap_del'](*keys) 

            raise 

        return result 

 

api.register(automountmap_add_indirect) 

 

 

class automountkey_del(LDAPDelete): 

    __doc__ = _('Delete an automount key.') 

 

    msg_summary = _('Deleted automount key "%(value)s"') 

 

    takes_options = LDAPDelete.takes_options + ( 

        IA5Str('automountkey', 

               cli_name='key', 

               label=_('Key'), 

               doc=_('Automount key name.'), 

        ), 

        IA5Str('automountinformation?', 

               cli_name='info', 

               label=_('Mount information'), 

        ), 

    ) 

    def get_options(self): 

        for option in self.takes_options: 

            if option.name == 'continue': 

                # TODO: hide for now - remove in future major release 

                yield option.clone(exclude='webui', 

                                   flags=['no_option', 'no_output']) 

            else: 

                yield option 

 

    def get_args(self): 

        for key in self.obj.get_ancestor_primary_keys(): 

            yield key 

 

    def execute(self, *keys, **options): 

        keys += (self.obj.get_pk(options['automountkey'], 

                                 options.get('automountinformation', None)),) 

        options[self.obj.primary_key.name] = self.obj.get_pk( 

                                            options['automountkey'], 

                                            options.get('automountinformation', None)) 

        result = super(automountkey_del, self).execute(*keys, **options) 

        result['value'] = options['automountkey'] 

        return result 

 

api.register(automountkey_del) 

 

 

class automountkey_mod(LDAPUpdate): 

    __doc__ = _('Modify an automount key.') 

 

    msg_summary = _('Modified automount key "%(value)s"') 

 

    internal_options = ['newautomountkey'] 

 

    takes_options = LDAPUpdate.takes_options + ( 

        IA5Str('newautomountinformation?', 

               cli_name='newinfo', 

               label=_('New mount information'), 

        ), 

    ) 

 

    def get_args(self): 

        for key in self.obj.get_ancestor_primary_keys(): 

            yield key 

 

    def pre_callback(self, ldap, dn, entry_attrs, *keys, **options): 

        assert isinstance(dn, DN) 

        if 'newautomountkey' in options: 

            entry_attrs['automountkey'] = options['newautomountkey'] 

        if 'newautomountinformation' in options: 

            entry_attrs['automountinformation'] = options['newautomountinformation'] 

        return dn 

 

    def execute(self, *keys, **options): 

        ldap = self.api.Backend.ldap2 

        key = options['automountkey'] 

        info = options.get('automountinformation', None) 

        keys += (self.obj.get_pk(key, info), ) 

 

        # handle RDN changes 

        if 'rename' in options or 'newautomountinformation' in options: 

            new_key = options.get('rename', key) 

            new_info = options.get('newautomountinformation', info) 

 

            if new_key == DIRECT_MAP_KEY and not new_info: 

                # automountinformation attribute of existing LDAP object needs 

                # to be retrieved so that RDN can be generated 

                dn = self.obj.get_dn(*keys, **options) 

                (dn_, entry_attrs_) = ldap.get_entry(dn, ['automountinformation']) 

                new_info = entry_attrs_.get('automountinformation', [])[0] 

 

            # automounkey attribute cannot be overwritten so that get_dn() 

            # still works right 

            options['newautomountkey'] = new_key 

 

            new_rdn = self.obj.get_pk(new_key, new_info) 

            if new_rdn != keys[-1]: 

                options['rename'] = new_rdn 

 

        result = super(automountkey_mod, self).execute(*keys, **options) 

        result['value'] = options['automountkey'] 

        return result 

 

api.register(automountkey_mod) 

 

 

class automountkey_find(LDAPSearch): 

    __doc__ = _('Search for an automount key.') 

 

    msg_summary = ngettext( 

        '%(count)d automount key matched', 

        '%(count)d automount keys matched', 0 

    ) 

 

api.register(automountkey_find) 

 

 

class automountkey_show(LDAPRetrieve): 

    __doc__ = _('Display an automount key.') 

 

    takes_options = LDAPRetrieve.takes_options + ( 

        IA5Str('automountkey', 

               cli_name='key', 

               label=_('Key'), 

               doc=_('Automount key name.'), 

        ), 

        IA5Str('automountinformation?', 

               cli_name='info', 

               label=_('Mount information'), 

        ), 

    ) 

 

    def get_args(self): 

        for key in self.obj.get_ancestor_primary_keys(): 

            yield key 

 

    def execute(self, *keys, **options): 

        keys += (self.obj.get_pk(options['automountkey'], 

                                 options.get('automountinformation', None)), ) 

        options[self.obj.primary_key.name] = self.obj.get_pk( 

                                            options['automountkey'], 

                                            options.get('automountinformation', None)) 

 

        result = super(automountkey_show, self).execute(*keys, **options) 

        result['value'] = options['automountkey'] 

        return result 

 

api.register(automountkey_show)