This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dns/class_DNS.inc is in gosa-plugin-dns 2.7.4+reloaded2-1+deb8u2.

This file is owned by root:root, with mode 0o644.

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
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
<?php

class DNS
{
    static $RecordTypes= array('aRecord' => "aRecord",
            'mDRecord'      => "mDRecord",         
            'mXRecord'      => "mXRecord",         
            'nSRecord'      => "nSRecord",          
            'pTRRecord'     => "relativeDomainName",
            'hInfoRecord'   => "hInfoRecord",      
            'mInfoRecord'   => "mInfoRecord",       
            'cNAMERecord'   => "relativeDomainName",
            'tXTRecord'     => "tXTRecord",         
            'aFSDBRecord'   => "aFSDBRecord",       
            'SigRecord'     => "SigRecord",         
            'KeyRecord'     => "KeyRecord",         
            'aAAARecord'    => "aAAARecord",        
            'LocRecord'     => "LocRecord",         
            'nXTRecord'     => "nXTRecord",        
            'sRVRecord'     => "sRVRecord",         
            'nAPTRRecord'   => "nAPTRRecord",       
            'kXRecord'      => "kXRecord",          
            'certRecord'    => "certRecord",        
            'a6Record'      => "a6Record",          
            'dSRecord'      => "dSRecord",          
            'sSHFPRecord'   => "sSHFPRecord",       
            'rRSIGRecord'   => "rRSIGRecord",      
            'nSECRecord'    => "nSECRecord");
    /* All available record types */
    /* Return all record types 
     */
    static function getDnsRecordTypes($ForZones = false)
    {
        if($ForZones){
            $tmp = DNS::$RecordTypes;
            unset($tmp['cNAMERecord']);
            unset($tmp['pTRRecord']);
            unset($tmp['tXTRecord']);
            return($tmp);
        }else{
            return(DNS::$RecordTypes);
        }
    }


    /* This fucntion is used to flip the ip address, for example
       12.3.45  ->  45.3.12
       Because some entries (like zones) are store like that 45.3.12.in-addr.arpa.
       but we want to display 12.3.45.
     */
    static function FlipIp($ip)
    {
        $tmp = array_reverse(explode(".",$ip));
        $new = "";
        foreach($tmp as $section){
            $new .= $section.".";
        }
        return(preg_replace("/.$/","",$new));
    }


    /* This static function returns the zones specified for given host
     */
    static function getDNSZoneEntries($config,$HostDn,$silent = false)
    {
        $ldap = $config->get_ldap_link();
        $ldap->cd($config->current['BASE']); 

        /* Not all records are allowed within a zone entry
         */  
        $SkipRecords = array("tXTRecord","cNAMERecord","pTRRecord");

        /* Special sOArecords 
         */
        $sOAREcords  = array("0"=>"sOAprimary","1"=>"sOAmail","2"=>"sOAserial","3"=>"sOArefresh","4"=>"sOAretry","5"=>"sOAexpire","6"=>"sOAttl");

        /* Create tempalte for all fetched zone Data 
         */
        $ZoneBase = array();
        $ZoneBase['exists']  = false;
        $ZoneBase['RECORDS'] = array();
        $ZoneBase['zoneName'] = array();
        $ZoneBase['dNSClass'] = array();

        foreach($sOAREcords as $attr){
            $ZoneBase[$attr] = "";
        }

        $Zones    = array();

        /* Get & Parse all zone entries 
         */
        $ldap->ls("(&(objectClass=dNSZone)(zoneName=*)(relativeDomainName=@))",$HostDn,array("*"));
        $tmp_res = array();
        while($attrs = $ldap->fetch()) {
            $tmp_res[] = $attrs;
        }

        /* Parse fetched zones 
         */
        foreach($tmp_res as $attrs){

            $zoneName                   = $attrs['zoneName'][0];
            $Zones[$zoneName]           = $ZoneBase;
            $Zones[$zoneName]['exists'] = true;

            /* Set basic attributes 
             */
            foreach(array("zoneName","dNSClass") as $attr){
                if(isset($attrs[$attr][0])){
                    $Zones[$zoneName][$attr] = $attrs[$attr][0];
                }
            }

            /* Set initial zone name, to be able to detect if this entry was renamed 
             */
            $Zones[$zoneName]['InitialzoneName'] = $zoneName;

            /* Generate SOA entry
             */
            if(isset($attrs['sOARecord'][0])){
                $tmp = explode(" ",$attrs['sOARecord'][0]) ;
                $tmp2 = array();

                /* Assign soa vars */
                foreach($sOAREcords as $key => $name){
                    if(isset($tmp[$key])){
                        $Zones[$zoneName][$name] = $tmp[$key];
                    }else{
                        $Zones[$zoneName][$name] = "";
                    }
                }
            } // ENDE SOA Record 

            /* Get record attributes 
             */
            foreach(DNS::$RecordTypes as $name => $value){

                /* Skip some attributes 
                 */
                if(in_array_strict($name,$SkipRecords)) continue;

                /* If there is a record attribute
                 */
                if(isset($attrs[$name])){

                    /* get all entries
                     */
                    for($i = 0 ; $i < $attrs[$value]['count']; $i ++){
                        $Zones[$zoneName]['RECORDS'][] =  array("type"=>$name,"value"=>$attrs[$value][$i]);
                    }
                }
            }

            /* Get reverse record ..
             */
            $ldap->ls("(&(objectClass=dNSZone)(relativeDomainName=@)(zoneName=*))",$attrs['dn'],array("zoneName"));

            if($ldap->count() == 0){
                if(!$silent){
                    msg_dialog::display(_("Error"), sprintf(_("Cannot find reverse zone for DNS zone '%s'. Parsing zone aborted."),$zoneName), ERROR_DIALOG);
                }
                unset($Zones[$zoneName]);
            }elseif($ldap->count()>1){
                if(!$silent){
                    msg_dialog::display(_("Error"), sprintf(_("Found more than one reverse zone for '%s'. Parsing zone aborted."),$zoneName), ERROR_DIALOG);
                }
                unset($Zones[$zoneName]);
            }else{
                $tmp = $ldap->fetch();
                $Zones[$zoneName]['ReverseZone']        = DNS::FlipIp(str_replace(".in-addr.arpa.","",$tmp['zoneName'][0]));
                $Zones[$zoneName]['InitialReverseZone'] = DNS::FlipIp(str_replace(".in-addr.arpa.","",$tmp['zoneName'][0]));
            }
        }
        return($Zones);
    }


    /* This static function compares two dns zone objects and returns an 
     *  array with following indexes 
     *   - delete, for dns which must be deleted (only if dns zone is removed)
     *   - rename, if a dn must be renamed, for example, the zoneName has changed
     *   - add,    if there is a new dns account created    
     */
    static function getDNSZoneEntriesDiff($config,$newZones,$HostDn)
    {
        $oldZones = DNS::getDNSZoneEntries($config,$HostDn,true);

        $sOAattributes =  array("sOAprimary","sOAmail","sOAserial","sOArefresh","sOAretry","sOAexpire","sOAttl");

        $move   = array();
        $add    = array();
        $del    = array();

        /* Generate a template for zones with default values
         */
        $zoneBase                       = array();
        $zoneBase['objectClass']        = array("top","dNSZone");
        $zoneBase['zoneName']           = "";
        $zoneBase['relativeDomainName'] = "@";
        $zoneBase['dNSClass']           = "IN";
        $zoneBase['sOARecord']          = "";

        /* Contains all renamed zoneNames 
         * For zone entry udpdates
         */
        $PrePareZoneEntries = array();

        /* Walk through all zones and detect renamed/added/deleted zones ... 
         */
        foreach($newZones as $name => $zone){

            /* This zone was renamed 
             */
            if((!empty($zone['InitialzoneName'])) && ($zone['InitialzoneName'] != $zone['zoneName'])){

                /* Move old zone to new position 
                 */ 
                $oldDn = "zoneName=".$zone['InitialzoneName'].",".$HostDn;
                $newDn = "zoneName=".$zone['zoneName'].",".$HostDn;
                $PrePareZoneEntries[$zone['InitialzoneName']] = $zone['zoneName'];
                $move [$oldDn] = $newDn;      
            }

            /* Get old zone if available
             */
            $oldZone=array();
            if(!empty($oldZones[$zone['InitialzoneName']])){
                $oldZone = $oldZones[$zone['InitialzoneName']];
            }

            /* Create forward zone entry and put it in our add queue
             */
            $newDn  = "zoneName=".$zone['zoneName'].",".$HostDn;
            $obj    =  $zoneBase;
            $obj['zoneName'] = $zone['zoneName'];

            /* Create sOARecord & add it to the obj
             */ 
            $soa = "";
            foreach($sOAattributes as $attr){
                $soa.=" ".$zone[$attr];
            }  
            $obj['sOARecord'] = trim($soa);
            $obj['nSRecord'] = $zone['sOAprimary'];

            /* If reverse zone was renamed, move entry 
             */
            if(!empty($zone['InitialReverseZone'])){
                if($zone['InitialReverseZone'] != $zone['ReverseZone']){
                    $base = "zoneName=".$zone['zoneName'].",".$HostDn;
                    $oldRDn = "zoneName=". DNS::FlipIp($zone['InitialReverseZone']).".in-addr.arpa.,".$base; 
                    $newRDn = "zoneName=". DNS::FlipIp($zone['ReverseZone']).".in-addr.arpa.,".$base;
                    $PrePareZoneEntries[DNS::FlipIp($zone['InitialReverseZone']).".in-addr.arpa."] = DNS::FlipIp($zone['ReverseZone']).".in-addr.arpa.";
                    $move [$oldRDn] = $newRDn;
                }
            }

            /* Append record entries 
             *  Set old value to array, to ensure that 
             *  they will be deleted if necessary
             */
            if(isset($oldZone['RECORDS'])){
                foreach($oldZone['RECORDS'] as $rec){
                    $obj[$rec['type']] = array();
                }
            }

            /* Add new Records 
             */
            foreach($zone['RECORDS'] as $rec){
                if(!isset($obj[$rec['type']])||!is_array($obj[$rec['type']])){
                    $obj[$rec['type']] = array();
                }
                $obj[$rec['type']][] = $rec['value'];
            }

            /* Append udpated Zone Forward Entry to our add queue
             */    
            $add[$newDn] = $obj;   

            /* Create Reverse Entry 
             * And append it to our add queue
             */
            $zone['ReverseZone'] = DNS::FlipIp($zone['ReverseZone']).".in-addr.arpa.";
            $base = "zoneName=".$zone['zoneName'].",".$HostDn;
            $newRDn = "zoneName=".$zone['ReverseZone'].",".$base;
            $rObj = $obj;
            $rObj['zoneName']= $zone['ReverseZone'];
            $add[$newRDn] = $rObj;

            /* Remove currently managed zone from oldZones.
             *  this gives us the ability to detect removed zones
             */
            if(isset($oldZones[$zone['InitialzoneName']])){
                unset($oldZones[$zone['InitialzoneName']]); 
            }
        }

        /* The rest of our oldZones must be deleted
         *  because they are no longer available in newZones anymore.
         */
        foreach($oldZones as $zone)  {
            $oldDn = "zoneName=".$zone['InitialzoneName'].",".$HostDn;
            $del[$oldDn] = $zone;
        }

        /* Check for entries which must be updated 
         */
        $zoneUpdates = array();
        $udpate = array();
        if(count($PrePareZoneEntries)){
            $ldap = $config->get_ldap_link();
            foreach($PrePareZoneEntries as $FromZoneName => $ToZoneName){
                $ldap->cd($HostDn);
                $ldap->search("(&(objectClass=dNSZone)(zoneName=".$FromZoneName.")(!(relativeDomainName=@)))",array("zoneName"));
                while($attrs = $ldap->fetch()){
                    $zoneUpdates[$attrs['dn']] = array("zoneName"=>$ToZoneName);
                }
            }
        }

        $ret = array("del" => $del , "move" => $move , "add" => $add,"zoneUpdates"=>$zoneUpdates);
        return($ret);
    }


    /* This static function returns the dns-host eintries for given 
     *  name.
     */
    static function getDNSHostEntries($config,$name,$silent = false)
    {
        $types = array();
        $ret = array();
        $ret['RECORDS']   = array();
        $ret['dNSClass']  = "IN";
        $ret['zoneName']  = "";
        $ret['dNSTTL']    = "";
        $ret['exists']    = false;

        $ldap = $config->get_ldap_link();
        $ldap->cd($config->current['BASE']);

        /* First check all zones for an entry with the given name.
         * If the name occurs in more than one entry alert the user ...
         */
        $foundIn = array();
        $zones = DNS::getAvailableZones($config);
        $zonesArr = array();
        foreach($zones as $zoneMix){
            $zoneIndex = explode("/",$zoneMix);
            if(!array_key_exists($zoneIndex[0],$zonesArr)) {
                $zonesArr[$zoneIndex[0]] = array();
            }
            array_push($zonesArr[$zoneIndex[0]],$zoneIndex[1]);
        }

        foreach($zonesArr as $nameServer => $nameServerArr){
            $foundInTmp = array();
            foreach($nameServerArr as $zoneArr => $zone){

                /* Strip eventually domain part from hostname 
                 */
                $zN = trim($zone,".");
                $nN = trim($name,".");  
                if(preg_match("/".preg_quote($zN, '/')."$/",$nN)){
                    $nN = preg_replace("/[\.]*".preg_quote($zN, '/')."[\.]*$/","",$nN);
                }else{
                    $nN = $name;
                }
                $zoneMix = $nameServer."/".$zone;
                $zoneDn = DNS::getDNSZoneDN($config,$zoneMix);
                $ldap->ls("(&(objectClass=dNSZone)(zoneName=*)(relativeDomainName=".$nN.")(!(relativeDomainName=@)))", $zoneDn,$attrs = array("*"));
                while($attrs = $ldap->fetch()){
                    $foundInTmp [$zoneMix] = $attrs['dn'];
                    $foundIn [$zoneMix] = $attrs['dn'];
                }
            }
        }

        /* No zone found which contains an entry for us
         */
        if(count($foundIn) == 0){
            return($ret);
        }

        /* Get host informations from zone
         */ 
        $id_tmp = key($foundIn);
        $ldap->cd($foundIn[$id_tmp]);
        $ldap->search("(&(objectClass=dNSZone)(zoneName=*)(!(relativeDomainName=@)))",array("*"));
        while($attrs = $ldap->fetch()){

            /* Strip eventually domain part from hostname 
             */
            $zN = trim($attrs['zoneName'][0],".");
            $nN = trim($name,"."); 
            $testname = $attrs['relativeDomainName'][0].".".$zN;

            /* Check given host name with zone settings 
             */ 
            if(preg_match("/".preg_quote($testname, '/')."[\.]*$/",$nN) || $attrs['relativeDomainName'][0] == $name){
                $ret['exists'] = true;
                $ret['zoneName'] = $id_tmp;
                foreach(array("dNSClass","dNSTTL") as $atr){
                    if(isset($attrs[$atr][0])){
                        $ret[$atr] = $attrs[$atr][0];
                    }
                }
            }

            /* Create list with all used records */
            foreach(DNS::$RecordTypes as $name => $value){

                /* If there is a record attribute  */
                if(isset($attrs[$name])){

                    /* get all entries */
                    for($i = 0 ; $i < $attrs[$value]['count']; $i ++){
                        $types[] = array( "type"    => $name,
                                "value"   => $attrs[$value][$i]);
                    }
                }
            }
            $ret['RECORDS'] = $types;
        }
        return($ret);
    }  



    /* This static function compares two dns settings and returns an 
     *  array with following indexes 
     *   - delete, for dns which must be deleted (only if dns account is removed)
     *   - rename, if a dn must be renamed, for example, the relativeDomainName has changed
     *   - add,    if there is a new dns account created    
     */
    static function getDNSHostEntriesDiff($config,$oldName,$newEntry,$newName)
    {
        $oldEntry = DNS::getDNSHostEntries($config,$oldName);

        $add    = array();
        $del    = array();
        $move   = array();

        /* Don't go further if there is nothing to do
         * Is no account / was no account
         */
        if(($newEntry['exists'] == false )&& ($oldEntry['exists'] == false)){
            return(array("move"=>$move,"add"=>$add,"del"=>$del));
        }

        $zones              = DNS::getAvailableZones($config);
        $specialAttributes  = array("cNAMERecord","pTRRecord");
        $newRecords         = array();  // Used to remember which records are removed 
        $zoneNameMix           = $newEntry['zoneName'];
        $zoneDn             = DNS::getDNSZoneDN($config,$zoneNameMix);
        $tmp                = array_flip($zones);
        $zoneName 					= DNS::getNameFromMix($zoneNameMix);

        /* Strip domain part out of dns host entry 
         */
        $zN = trim($zoneName,".");
        $nN = trim($newName,".");
        $oN = trim($oldName,".");
        $newName = preg_replace("/[\.]*".preg_quote($zN, '/')."$/i","",$nN);
        $oldName = preg_replace("/[\.]*".preg_quote($zN, '/')."$/i","",$oN);

        /* If reverseZone can't be resolved ... this 
         *  can't be a valid entry, so remove this account
         */ 
        if(isset($tmp[$zoneNameMix])){
            $reverseNameMix  = $tmp[$zoneNameMix];
            $reverseDn    = DNS::getDNSZoneDN($config,$reverseNameMix);
            if(empty($reverseDn)){
                $newEntry['exists'] = false;
            }
        }else{
            $newEntry['exists'] = false;
        }

        /* If account was edited prepare some
         *  attributes & arrays ... if required add some 
         *  dns to $move 
         */
        if($oldEntry['exists']){

            /* Check if the account was removed 
             */
            if($newEntry['exists'] == false){
                $dn = "relativeDomainName=".$oldName.",".DNS::getDNSZoneDN($config,$oldEntry['zoneName']);
                $del[$dn] ="";
                return(array("move"=>$move,"add"=>$add,"del"=>$del));
            }

            /* Check if zoneName has changed 
             */   
            if(count($newEntry['RECORDS'])){
                if($oldEntry['zoneName'] != $newEntry['zoneName']){
                    $oldzoneDn = DNS::getDNSZoneDN($config,$oldEntry['zoneName']);
                    $dn = "relativeDomainName=".$oldName.",".$oldzoneDn;
                    $dn2= "relativeDomainName=".$oldName.",".$zoneDn;
                    $move[$dn]=$dn2;
                }

                /* Check if host name has changed 
                 */ 
                if($oldName != $newName){
                    $dn = "relativeDomainName=".$oldName.",".$zoneDn;
                    $dn2= "relativeDomainName=".$newName.",".$zoneDn;
                    $move[$dn]=$dn2;
                    $dn = "relativeDomainName=".$oldName.",".$dn2;
                    $dn2= "relativeDomainName=".$newName.",".$dn2;
                    $move[$dn]=$dn2;
                }
            }

            /* Prepare record entries
             *  Fill old records with array();
             *  To ensure that they will be deleted if they stay unused
             */
            foreach($oldEntry['RECORDS'] as $id => $rec){
                $newRecords[$rec['type']] = array();
            }
        }

        /* There must be at least one record in our entry  
         */
        if((!count($newEntry['RECORDS'])) || (!$newEntry['exists'])){
            $dn = "relativeDomainName=".$newName.",".DNS::getDNSZoneDN($config,$oldEntry['zoneName']);
            $del[$dn] ="";
            $ret = array("move"=>$move,"add"=>$add,"del"=>$del);
            return($ret);
        }

        /* Prepare temp obj
         */
        $baseObj =  array();
        $baseObj['objectClass']       = array("top","dNSZone");
        if(!empty($newEntry['dNSTTL'])){
            $baseObj['dNSTTL']            = $newEntry['dNSTTL'];
        }
        $baseObj['dNSClass']          = $newEntry['dNSClass'];
        $baseObj['zoneName']          = $zoneName; 
        $baseObj['relativeDomainName']= $newName; 

        /* Add Container Object to zone
         *  (this possibly already exists, check this before writing to ldap)
         */
        $baseDn =  "relativeDomainName=".$newName.",".$zoneDn;
        $add[$baseDn] = $baseObj;

        /* Add base obejct which contains all std records
         */
        $stdDn = "relativeDomainName=".$newName.",".$baseDn;
        $add[$stdDn] = $baseObj;

        /* Set defaults. Normaly only contains old record names.
         *  The old names will be set to array, to ensure that they will be deleted.
         *  Or overwritten and filled with new values.
         */
        foreach($newRecords as $name => $def){
            if(!in_array_strict($name,$specialAttributes)){
                $add[$stdDn][$name] = $def;
            }
        }

        /* Delete all OLD special attributes.
         */
        foreach($oldEntry['RECORDS'] as $id => $rec){
            if(in_array_strict($rec['type'],$specialAttributes)){
                $deldn= "relativeDomainName=".$rec['value'].",".$baseDn;
                $del[$deldn] = "";
            }
        }


        /* Create new record entries 
         */
        foreach($newEntry['RECORDS'] as $id => $rec){
            /* Create object which contains special records 
             *  like pTRRecord or CNAMERecord
             */
            if($rec['type']  == "pTRRecord"){
                $PTRdn= "relativeDomainName=".DNS::FlipIP($rec['value']).",".$baseDn;
                $ptrObj = $baseObj;
                $reverseName = DNS::getNameFromMix($reverseNameMix);
                $ptrObj['zoneName']           = $reverseName;
                if(!preg_match("/\.$/",$newName)){
                    $ptrObj['pTRRecord']          = preg_replace("/\.\.$/",".",$newName.".".$zoneName.".");
                }else{
                    $ptrObj['pTRRecord']          = preg_replace("/\.\.$/",".",$newName.".");
                }
                $ptrObj['relativeDomainName'] = DNS::FlipIP($rec['value']);

                $add[$PTRdn] = $ptrObj;
            }else  
                if($rec['type']  == "cNAMERecord"){
                    $PTRdn= "relativeDomainName=".$rec['value'].",".$baseDn;
                    $ptrObj = $baseObj;
                    $ptrObj['zoneName']           = $zoneName;
                    $ptrObj['cNAMERecord']        = $newName;
                    $ptrObj['relativeDomainName'] = $rec['value'];

                    $add[$PTRdn] = $ptrObj;
                }else{
                    /* Append basic attributes
                     */
                    $add[$stdDn][$rec['type']][] = $rec['value'];  
                }
        } // foreach record 

        $ret = array("move"=>$move,"add"=>$add,"del"=>$del);
        return($ret);
    } 

    static function getNameFromMix($zoneMix){
        $ret = "";
        if(!strstr($zoneMix, '/')) return($ret);	
        $zoneIndex 	  	= explode("/",$zoneMix);
        return($zoneIndex[1]);
    }

    /* returns the dn for a specified zone
     */
    static function getDNSZoneDN($config,$zoneNameMix)
    {
        $ret = "";
        if(!strstr($zoneNameMix, '/')) {
            msg_dialog::display(_("Error"), sprintf(_("Undefined zone name '%s'!"),$zoneNameMix), ERROR_DIALOG);
            return($ret);
        }

        $zoneNameIndex 	  	= explode("/",$zoneNameMix); 
        $zoneName           = $zoneNameIndex[1];
        $nameServer		  		= strtolower($zoneNameIndex[0]);
        $ldap               = $config->get_ldap_link();

        /* search for the nameserver */
        $ldap-> cd($config->current['BASE']);
        $ldap->search("(&(objectClass=goServer)(cn=".$nameServer."))",array("cn"));
        if($ldap->count()){
            $attr = $ldap->fetch();
        } else {
            return($ret);
        }

        $ldap-> cd($attr['dn']);
        $ldap->search("(&(objectClass=dNSZone)(sOARecord=*)(zoneName=".$zoneName."))",array("zoneName"));
        if($ldap->count()){
            $attr = $ldap->fetch();
            return($attr['dn']);
        }

        return($ret);
    }


    /* returns all available zones 
     *  array[reverseName] = zoneName;
     */
    static function getAvailableZones($config)
    {
        $ReverseZones = $ForwardZones = $zones = array();
        $runtime_cache = session::get("runtime_cache");
        if(!isset($runtime_cache['DNS']['getAvailableZones'])){

            $ret = array();
            $ldap = $config->get_ldap_link();
            $tmp = get_sub_list("(&(objectClass=dNSZone)(sOARecord=*))","",get_ou("servgeneric", "serverRDN"),
                    $config->current['BASE'],array("zoneName"),GL_NO_ACL_CHECK | GL_SUBSEARCH);

            foreach($tmp as $at){
                if(preg_match("/\.in\-addr\.arpa\./",$at['zoneName'][0])){
                    $ReverseZones[$at['dn']] = $at;
                }else{
                    $ForwardZones[$at['dn']] = $at;
                }
            }

            foreach($ForwardZones as $dn => $obj){

                /* try to find reverse
                 */  
                foreach($ReverseZones as $Rdn => $Robj ){
                    if(preg_match("/".$dn."/",$Rdn)){
                        $zones[strtoupper($ldap->getCn($dn))."/".$Robj['zoneName'][0]] =  
                            strtoupper($ldap->getCn($dn))."/".$obj['zoneName'][0];
                    }
                }   
            }
            $runtime_cache['DNS']['getAvailableZones'] = $zones;
            session::set("runtime_cache",$runtime_cache);
        }
        return($runtime_cache['DNS']['getAvailableZones']);
    }


    static function touchDNSZone($config,$zoneName)
    {
        if(empty($zoneName)){
            return null;
        }

        preg_match('@(?<server>[^/]*)/(?<name>.*)@',$zoneName,$matches);
        $name = $matches['name'];
        $server = strtolower($matches['server']);

        // Search for the zone entry and its reverse entry.
        $ldap = $config->get_ldap_link();
        $ldap-> cd($config->current['BASE']);
        $ldap->search("(&(objectClass=dNSZone)(zoneName=$name)(sOARecord=*))",array("sOARecord"));
        if($ldap->count() != 1){
            trigger_error("Invalid Zone ".$zoneName);
        }else{
            $to_update= array();
            $forward = $ldap->fetch();
            $to_update[$forward['dn']] = $forward;
            $ldap->cd($forward['dn']);
            $ldap->search("(&(objectClass=dNSZone)(relativeDomainName=@)(sOARecord=*))",array("sOARecord"));

            // We may have multiple reverse zones later.
            while($attrs = $ldap->fetch()){
                $to_update[$attrs['dn']] = $attrs;
            }

            // Increase the sAONumber for each zone
            foreach($to_update as $zone){
                $tmp = explode(' ',$zone['sOARecord'][0]);
                $sOA = $tmp[2];
                $sOAdate = substr($sOA,0,8);
                $sOAnumber = substr($sOA,-2);
                $date = date('Ymd');
                $number = '01';
                if($sOAdate < $date){
                    $sOA = $date.$number;
                } else {
                    $number = sprintf("%02d", $sOAnumber+1);
                    $sOA = $sOAdate.$number;
                }
                $tmp[2] = $sOA;
                $zone['sOARecord'][0] = implode(' ', $tmp);
                $attrs = array('sOARecord' => $zone['sOARecord'][0]);
                $ldap = $config->get_ldap_link();
                $ldap->cd($zone['dn']);
                $ldap->modify($attrs);
                if (!$ldap->success()){
                    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_DEL, get_class()));
                }
            }
        }
    }
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>