Code

Removed show_errors
[gosa.git] / gosa-core / include / functions.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 /* Configuration file location */
24 define ("CONFIG_DIR", "/etc/gosa");
25 define ("CONFIG_FILE", "gosa.conf-trunk");
26 define ("CONFIG_TEMPLATE_DIR", "../contrib/");
27 define ("HELP_BASEDIR", "/var/www/doc/");
29 /* Define get_list flags */
30 define("GL_NONE",         0);
31 define("GL_SUBSEARCH",    1);
32 define("GL_SIZELIMIT",    2);
33 define("GL_CONVERT",      4);
34 define("GL_NO_ACL_CHECK", 8);
36 /* Heimdal stuff */
37 define('UNIVERSAL',0x00);
38 define('INTEGER',0x02);
39 define('OCTET_STRING',0x04);
40 define('OBJECT_IDENTIFIER ',0x06);
41 define('SEQUENCE',0x10);
42 define('SEQUENCE_OF',0x10);
43 define('SET',0x11);
44 define('SET_OF',0x11);
45 define('DEBUG',false);
46 define('HDB_KU_MKEY',0x484442);
47 define('TWO_BIT_SHIFTS',0x7efc);
48 define('DES_CBC_CRC',1);
49 define('DES_CBC_MD4',2);
50 define('DES_CBC_MD5',3);
51 define('DES3_CBC_MD5',5);
52 define('DES3_CBC_SHA1',16);
54 /* Define globals for revision comparing */
55 $svn_path = '$HeadURL: https://oss.gonicus.de/repositories/gosa/trunk/gosa-core/include/functions.inc $';
56 $svn_revision = '$Revision: 9246 $';
58 /* Include required files */
59 require_once("class_location.inc");
60 require_once ("functions_debug.inc");
61 require_once ("accept-to-gettext.inc");
63 /* Define constants for debugging */
64 define ("DEBUG_TRACE",   1);
65 define ("DEBUG_LDAP",    2);
66 define ("DEBUG_MYSQL",   4);
67 define ("DEBUG_SHELL",   8);
68 define ("DEBUG_POST",   16);
69 define ("DEBUG_SESSION",32);
70 define ("DEBUG_CONFIG", 64);
71 define ("DEBUG_ACL",    128);
73 /* Rewrite german 'umlauts' and spanish 'accents'
74    to get better results */
75 $REWRITE= array( "ä" => "ae",
76     "ö" => "oe",
77     "ü" => "ue",
78     "Ä" => "Ae",
79     "Ö" => "Oe",
80     "Ü" => "Ue",
81     "ß" => "ss",
82     "á" => "a",
83     "é" => "e",
84     "í" => "i",
85     "ó" => "o",
86     "ú" => "u",
87     "Á" => "A",
88     "É" => "E",
89     "Í" => "I",
90     "Ó" => "O",
91     "Ú" => "U",
92     "ñ" => "ny",
93     "Ñ" => "Ny" );
96 /* Class autoloader */
97 function __autoload($class_name) {
98     global $class_mapping, $BASE_DIR;
100     if ($class_mapping === NULL){
101             echo sprintf(_("Fatal error: no class locations defined - please run '%s' to fix this"), "<b>update-gosa</b>");
102             exit;
103     }
105     if (isset($class_mapping[$class_name])){
106       require_once($BASE_DIR."/".$class_mapping[$class_name]);
107     } else {
108       echo sprintf(_("Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"), $class_name, "<b>update-gosa</b>");
109       exit;
110     }
114 /*! \brief Checks if a class is available. 
115  *  @param  name String  The class name.
116  *  @return boolean      True if class is available, else false.
117  */
118 function class_available($name)
120   global $class_mapping;
121   return(isset($class_mapping[$name]));
125 /* Check if plugin is avaliable */
126 function plugin_available($plugin)
128         global $class_mapping, $BASE_DIR;
130         if (!isset($class_mapping[$plugin])){
131                 return false;
132         } else {
133                 return is_readable($BASE_DIR."/".$class_mapping[$plugin]);
134         }
138 /* Create seed with microseconds */
139 function make_seed() {
140   list($usec, $sec) = explode(' ', microtime());
141   return (float) $sec + ((float) $usec * 100000);
145 /* Debug level action */
146 function DEBUG($level, $line, $function, $file, $data, $info="")
148   if (session::get('DEBUGLEVEL') & $level){
149     $output= "DEBUG[$level] ";
150     if ($function != ""){
151       $output.= "($file:$function():$line) - $info: ";
152     } else {
153       $output.= "($file:$line) - $info: ";
154     }
155     echo $output;
156     if (is_array($data)){
157       print_a($data);
158     } else {
159       echo "'$data'";
160     }
161     echo "<br>";
162   }
166 function get_browser_language()
168   /* Try to use users primary language */
169   global $config;
170   $ui= get_userinfo();
171   if (isset($ui) && $ui !== NULL){
172     if ($ui->language != ""){
173       return ($ui->language.".UTF-8");
174     }
175   }
177   /* Check for global language settings in gosa.conf */
178   if(isset($config->data['MAIN']['LANG']) && !empty($config->data['MAIN']['LANG'])) {
179     $lang = $config->data['MAIN']['LANG'];
180     if(!preg_match("/utf/i",$lang)){
181       $lang .= ".UTF-8";
182     }
183     return($lang);
184   }
185  
186   /* Load supported languages */
187   $gosa_languages= get_languages();
189   /* Move supported languages to flat list */
190   $langs= array();
191   foreach($gosa_languages as $lang => $dummy){
192     $langs[]= $lang.'.UTF-8';
193   }
195   /* Return gettext based string */
196   return (al2gt($langs, 'text/html'));
200 /* Rewrite ui object to another dn */
201 function change_ui_dn($dn, $newdn)
203   $ui= session::get('ui');
204   if ($ui->dn == $dn){
205     $ui->dn= $newdn;
206     session::set('ui',$ui);
207   }
211 /* Return theme path for specified file */
212 function get_template_path($filename= '', $plugin= FALSE, $path= "")
214   global $config, $BASE_DIR;
216   if (!@isset($config->data['MAIN']['THEME'])){
217     $theme= 'default';
218   } else {
219     $theme= $config->data['MAIN']['THEME'];
220   }
222   /* Return path for empty filename */
223   if ($filename == ''){
224     return ("themes/$theme/");
225   }
227   /* Return plugin dir or root directory? */
228   if ($plugin){
229     if ($path == ""){
230       $nf= preg_replace("!^".$BASE_DIR."/!", "", session::get('plugin_dir'));
231     } else {
232       $nf= preg_replace("!^".$BASE_DIR."/!", "", $path);
233     }
234     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$nf")){
235       return ("$BASE_DIR/ihtml/themes/$theme/$nf/$filename");
236     }
237     if (file_exists("$BASE_DIR/ihtml/themes/default/$nf")){
238       return ("$BASE_DIR/ihtml/themes/default/$nf/$filename");
239     }
240     if ($path == ""){
241       return (session::get('plugin_dir')."/$filename");
242     } else {
243       return ($path."/$filename");
244     }
245   } else {
246     if (file_exists("themes/$theme/$filename")){
247       return ("themes/$theme/$filename");
248     }
249     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$filename")){
250       return ("$BASE_DIR/ihtml/themes/$theme/$filename");
251     }
252     if (file_exists("themes/default/$filename")){
253       return ("themes/default/$filename");
254     }
255     if (file_exists("$BASE_DIR/ihtml/themes/default/$filename")){
256       return ("$BASE_DIR/ihtml/themes/default/$filename");
257     }
258     return ($filename);
259   }
263 function array_remove_entries($needles, $haystack)
265   $tmp= array();
267   /* Loop through entries to be removed */
268   foreach ($haystack as $entry){
269     if (!in_array($entry, $needles)){
270       $tmp[]= $entry;
271     }
272   }
274   return ($tmp);
278 function gosa_array_merge($ar1,$ar2)
280   if(!is_array($ar1) || !is_array($ar2)){
281     trigger_error("Specified parameter(s) are not valid arrays.");
282   }else{
283     return(array_values(array_unique(array_merge($ar1,$ar2))));
284   }
288 function gosa_log ($message)
290   global $ui;
292   /* Preset to something reasonable */
293   $username= " unauthenticated";
295   /* Replace username if object is present */
296   if (isset($ui)){
297     if ($ui->username != ""){
298       $username= "[$ui->username]";
299     } else {
300       $username= "unknown";
301     }
302   }
304   syslog(LOG_INFO,"GOsa$username: $message");
308 function ldap_init ($server, $base, $binddn='', $pass='')
310   global $config;
312   $ldap = new LDAP ($binddn, $pass, $server,
313       isset($config->current['RECURSIVE']) && $config->current['RECURSIVE'] == "true",
314       isset($config->current['TLS']) && $config->current['TLS'] == "true");
316   /* Sadly we've no proper return values here. Use the error message instead. */
317   if (!preg_match("/Success/i", $ldap->error)){
318     echo sprintf(_("FATAL: Error when connecting the LDAP. Server said '%s'."), $ldap->get_error());
319     exit();
320   }
322   /* Preset connection base to $base and return to caller */
323   $ldap->cd ($base);
324   return $ldap;
328 function process_htaccess ($username, $kerberos= FALSE)
330   global $config;
332   /* Search for $username and optional @REALM in all configured LDAP trees */
333   foreach($config->data["LOCATIONS"] as $name => $data){
334   
335     $config->set_current($name);
336     $mode= "kerberos";
337     if (isset($config->current['KRBSASL']) && preg_match('/^true$/i', $config->current['KRBSASL'])){
338       $mode= "sasl";
339     }
341     /* Look for entry or realm */
342     $ldap= $config->get_ldap_link();
343     if (!preg_match("/Success/i", $ldap->error)){
344       msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
345       $smarty= get_smarty();
346       $smarty->display(get_template_path('headers.tpl'));
347       echo "<body>".session::get('errors')."</body></html>";
348       exit();
349     }
350     $ldap->search("(&(objectClass=gosaAccount)(|(uid=$username)(userPassword={$mode}$username)))", array("uid"));
352     /* Found a uniq match? Return it... */
353     if ($ldap->count() == 1) {
354       $attrs= $ldap->fetch();
355       return array("username" => $attrs["uid"][0], "server" => $name);
356     }
357   }
359   /* Nothing found? Return emtpy array */
360   return array("username" => "", "server" => "");
364 function ldap_login_user_htaccess ($username)
366   global $config;
368   /* Look for entry or realm */
369   $ldap= $config->get_ldap_link();
370   if (!preg_match("/Success/i", $ldap->error)){
371     msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), FATAL_ERROR_DIALOG);
372     $smarty= get_smarty();
373     $smarty->display(get_template_path('headers.tpl'));
374     echo "<body>".session::get('errors')."</body></html>";
375     exit();
376   }
377   $ldap->search("(&(objectClass=gosaAccount)(uid=$username))", array("uid"));
378   /* Found no uniq match? Strange, because we did above... */
379   if ($ldap->count() != 1) {
380     msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
381     return (NULL);
382   }
383   $attrs= $ldap->fetch();
385   /* got user dn, fill acl's */
386   $ui= new userinfo($config, $ldap->getDN());
387   $ui->username= $attrs['uid'][0];
389   /* No password check needed - the webserver did it for us */
390   $ldap->disconnect();
392   /* Username is set, load subtreeACL's now */
393   $ui->loadACL();
395   /* TODO: check java script for htaccess authentication */
396   session::set('js',true);
398   return ($ui);
402 function ldap_login_user ($username, $password)
404   global $config;
406   /* look through the entire ldap */
407   $ldap = $config->get_ldap_link();
408   if (!preg_match("/Success/i", $ldap->error)){
409     msg_dialog::display(_("LDAP error"), sprintf(_("User login failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), FATAL_ERROR_DIALOG);
410     $smarty= get_smarty();
411     $smarty->display(get_template_path('headers.tpl'));
412     echo "<body>".session::get('errors')."</body></html>";
413     exit();
414   }
415   $ldap->cd($config->current['BASE']);
416   $allowed_attributes = array("uid","mail");
417   $verify_attr = array();
418   if(isset($config->current['LOGIN_ATTRIBUTE'])){
419     $tmp = split(",",$config->current['LOGIN_ATTRIBUTE']); 
420     foreach($tmp as $attr){
421       if(in_array($attr,$allowed_attributes)){
422         $verify_attr[] = $attr;
423       }
424     }
425   }
426   if(count($verify_attr) == 0){
427     $verify_attr = array("uid");
428   }
429   $tmp= $verify_attr;
430   $tmp[] = "uid";
431   $filter = "";
432   foreach($verify_attr as $attr) {
433     $filter.= "(".$attr."=".$username.")";
434   }
435   $filter = "(&(|".$filter.")(objectClass=gosaAccount))";
436   $ldap->search($filter,$tmp);
438   /* get results, only a count of 1 is valid */
439   switch ($ldap->count()){
441     /* user not found */
442     case 0:     return (NULL);
444             /* valid uniq user */
445     case 1: 
446             break;
448             /* found more than one matching id */
449     default:
450             msg_dialog::display(_("Internal error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
451             return (NULL);
452   }
454   /* LDAP schema is not case sensitive. Perform additional check. */
455   $attrs= $ldap->fetch();
456   $success = FALSE;
457   foreach($verify_attr as $attr){
458     if(isset($attrs[$attr][0]) && $attrs[$attr][0] == $username){
459       $success = TRUE;
460     }
461   }
462   if(!$success){
463     return(FALSE);
464   }
466   /* got user dn, fill acl's */
467   $ui= new userinfo($config, $ldap->getDN());
468   $ui->username= $attrs['uid'][0];
470   /* password check, bind as user with supplied password  */
471   $ldap->disconnect();
472   $ldap= new LDAP($ui->dn, $password, $config->current['SERVER'],
473       isset($config->current['RECURSIVE']) &&
474       $config->current['RECURSIVE'] == "true",
475       isset($config->current['TLS'])
476       && $config->current['TLS'] == "true");
477   if (!preg_match("/Success/i", $ldap->error)){
478     return (NULL);
479   }
481   /* Username is set, load subtreeACL's now */
482   $ui->loadACL();
484   return ($ui);
488 function ldap_expired_account($config, $userdn, $username)
490     $ldap= $config->get_ldap_link();
491     $ldap->cat($userdn);
492     $attrs= $ldap->fetch();
493     
494     /* default value no errors */
495     $expired = 0;
496     
497     $sExpire = 0;
498     $sLastChange = 0;
499     $sMax = 0;
500     $sMin = 0;
501     $sInactive = 0;
502     $sWarning = 0;
503     
504     $current= date("U");
505     
506     $current= floor($current /60 /60 /24);
507     
508     /* special case of the admin, should never been locked */
509     /* FIXME should allow any name as user admin */
510     if($username != "admin")
511     {
513       if(isset($attrs['shadowExpire'][0])){
514         $sExpire= $attrs['shadowExpire'][0];
515       } else {
516         $sExpire = 0;
517       }
518       
519       if(isset($attrs['shadowLastChange'][0])){
520         $sLastChange= $attrs['shadowLastChange'][0];
521       } else {
522         $sLastChange = 0;
523       }
524       
525       if(isset($attrs['shadowMax'][0])){
526         $sMax= $attrs['shadowMax'][0];
527       } else {
528         $smax = 0;
529       }
531       if(isset($attrs['shadowMin'][0])){
532         $sMin= $attrs['shadowMin'][0];
533       } else {
534         $sMin = 0;
535       }
536       
537       if(isset($attrs['shadowInactive'][0])){
538         $sInactive= $attrs['shadowInactive'][0];
539       } else {
540         $sInactive = 0;
541       }
542       
543       if(isset($attrs['shadowWarning'][0])){
544         $sWarning= $attrs['shadowWarning'][0];
545       } else {
546         $sWarning = 0;
547       }
548       
549       /* is the account locked */
550       /* shadowExpire + shadowInactive (option) */
551       if($sExpire >0){
552         if($current >= ($sExpire+$sInactive)){
553           return(1);
554         }
555       }
556     
557       /* the user should be warned to change is password */
558       if((($sExpire >0) && ($sWarning >0)) && ($sExpire >= $current)){
559         if (($sExpire - $current) < $sWarning){
560           return(2);
561         }
562       }
563       
564       /* force user to change password */
565       if(($sLastChange >0) && ($sMax) >0){
566         if($current >= ($sLastChange+$sMax)){
567           return(3);
568         }
569       }
570       
571       /* the user should not be able to change is password */
572       if(($sLastChange >0) && ($sMin >0)){
573         if (($sLastChange + $sMin) >= $current){
574           return(4);
575         }
576       }
577     }
578    return($expired);
582 function add_lock ($object, $user)
584   global $config;
586   if(is_array($object)){
587     foreach($object as $obj){
588       add_lock($obj,$user);
589     }
590     return;
591   }
593   /* Just a sanity check... */
594   if ($object == "" || $user == ""){
595     msg_dialog::display(_("Internal error"), _("Error while adding a lock. Contact the developers!"), ERROR_DIALOG);
596     return;
597   }
599   /* Check for existing entries in lock area */
600   $ldap= $config->get_ldap_link();
601   $ldap->cd ($config->current['CONFIG']);
602   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$user)(gosaObject=".base64_encode($object)."))",
603       array("gosaUser"));
604   if (!preg_match("/Success/i", $ldap->error)){
605     msg_dialog::display(_("Configuration error"), sprintf(_("Cannot create locking information in LDAP tree. Please contact your administrator!")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
606     return;
607   }
609   /* Add lock if none present */
610   if ($ldap->count() == 0){
611     $attrs= array();
612     $name= md5($object);
613     $ldap->cd("cn=$name,".$config->current['CONFIG']);
614     $attrs["objectClass"] = "gosaLockEntry";
615     $attrs["gosaUser"] = $user;
616     $attrs["gosaObject"] = base64_encode($object);
617     $attrs["cn"] = "$name";
618     $ldap->add($attrs);
619     if (!preg_match("/Success/i", $ldap->error)){
620       msg_dialog::display(_("Internal error"), sprintf(_("Adding a lock failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
621       return;
622     }
623   }
627 function del_lock ($object)
629   global $config;
631   if(is_array($object)){
632     foreach($object as $obj){
633       del_lock($obj);
634     }
635     return;
636   }
638   /* Sanity check */
639   if ($object == ""){
640     return;
641   }
643   /* Check for existance and remove the entry */
644   $ldap= $config->get_ldap_link();
645   $ldap->cd ($config->current['CONFIG']);
646   $ldap->search ("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaObject"));
647   $attrs= $ldap->fetch();
648   if ($ldap->getDN() != "" && preg_match("/Success/i", $ldap->error)){
649     $ldap->rmdir ($ldap->getDN());
651     if (!preg_match("/Success/i", $ldap->error)){
652       msg_dialog::display(_("LDAP error"), sprintf(_("Removing a lock failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
653       return;
654     }
655   }
659 function del_user_locks($userdn)
661   global $config;
663   /* Get LDAP ressources */ 
664   $ldap= $config->get_ldap_link();
665   $ldap->cd ($config->current['CONFIG']);
667   /* Remove all objects of this user, drop errors silently in this case. */
668   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$userdn))", array("gosaUser"));
669   while ($attrs= $ldap->fetch()){
670     $ldap->rmdir($attrs['dn']);
671   }
675 function get_lock ($object)
677   global $config;
679   /* Sanity check */
680   if ($object == ""){
681     msg_dialog::display(_("Internal error"), _("Error while adding a lock. Contact the developers!"), ERROR_DIALOG);
682     return("");
683   }
685   /* Get LDAP link, check for presence of the lock entry */
686   $user= "";
687   $ldap= $config->get_ldap_link();
688   $ldap->cd ($config->current['CONFIG']);
689   $ldap->search("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaUser"));
690   if (!preg_match("/Success/i", $ldap->error)){
691     msg_dialog::display(_("LDAP error"), sprintf(_("Cannot get locking information from LDAP tree!")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
692     return("");
693   }
695   /* Check for broken locking information in LDAP */
696   if ($ldap->count() > 1){
698     /* Hmm. We're removing broken LDAP information here and issue a warning. */
699     msg_dialog::display(_("Warning"), _("Found multiple locks for object to be locked. This should not happen - cleaning up multiple references."), WARNING_DIALOG);
701     /* Clean up these references now... */
702     while ($attrs= $ldap->fetch()){
703       $ldap->rmdir($attrs['dn']);
704     }
706     return("");
708   } elseif ($ldap->count() == 1){
709     $attrs = $ldap->fetch();
710     $user= $attrs['gosaUser'][0];
711   }
712   return ($user);
716 function get_multiple_locks($objects)
718   global $config;
720   if(is_array($objects)){
721     $filter = "(&(objectClass=gosaLockEntry)(|";
722     foreach($objects as $obj){
723       $filter.="(gosaObject=".base64_encode($obj).")";
724     }
725     $filter.= "))";
726   }else{
727     $filter = "(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($objects)."))";
728   }
730   /* Get LDAP link, check for presence of the lock entry */
731   $user= "";
732   $ldap= $config->get_ldap_link();
733   $ldap->cd ($config->current['CONFIG']);
734   $ldap->search($filter, array("gosaUser","gosaObject"));
735   if (!preg_match("/Success/i", $ldap->error)){
736     msg_dialog::display(_("LDAP error"), sprintf(_("Cannot get locking information from LDAP tree!")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
737     return("");
738   }
740   $users = array();
741   while($attrs = $ldap->fetch()){
742     $dn   = base64_decode($attrs['gosaObject'][0]);
743     $user = $attrs['gosaUser'][0];
744     $users[] = array("dn"=> $dn,"user"=>$user);
745   }
746   return ($users);
750 /* \!brief  This function searches the ldap database.
751             It search in  $sub_bases,*,$base  for all objects matching the $filter.
753     @param $filter    String The ldap search filter
754     @param $category  String The ACL category the result objects belongs 
755     @param $sub_bases  String The sub base we want to search for e.g. "ou=apps"
756     @param $base      String The ldap base from which we start the search
757     @param $attributes Array The attributes we search for.
758     @param $flags     Long   A set of Flags
759  */
760 function get_sub_list($filter, $category,$sub_deps, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
762   global $config, $ui;
763   $departments = array();
765 #  $start = microtime(TRUE);
767   /* Get LDAP link */
768   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
770   /* Set search base to configured base if $base is empty */
771   if ($base == ""){
772     $base = $config->current['BASE'];
773   }
774   $ldap->cd ($base);
776   /* Ensure we have an array as department list */
777   if(is_string($sub_deps)){
778     $sub_deps = array($sub_deps);
779   }
781   /* Remove ,.*$ ("ou=1,ou=2.." => "ou=1") */
782   $sub_bases = array();
783   foreach($sub_deps as $key => $sub_base){
784     if(empty($sub_base)){
786       /* Subsearch is activated and we got an empty sub_base.
787        *  (This may be the case if you have empty people/group ous).
788        * Fall back to old get_list(). 
789        * A log entry will be written.
790        */
791       if($flags & GL_SUBSEARCH){
792         $sub_bases = array();
793         break;
794       }else{
795         
796         /* Do NOT search within subtrees is requeste and the sub base is empty. 
797          * Append all known departments that matches the base.
798          */
799         $departments[$base] = $base;
800       }
801     }else{
802       $sub_bases[$key] = preg_replace("/,.*$/","",$sub_base);
803     }
804   }
805   
806    /* If there is no sub_department specified, fall back to old method, get_list().
807    */
808   if(!count($sub_bases) && !count($departments)){
809     
810     /* Log this fall back, it may be an unpredicted behaviour.
811      */
812     if(!count($sub_bases) && !count($departments)){
813       // log($action,$objecttype,$object,$changes_array = array(),$result = "") 
814       new log("debug","all",__FILE__,$attributes,
815           sprintf("get_sub_list(): Falling back to get_list(), due to empty sub_bases parameter.".
816             " This may slow down GOsa. Search was: '%s'",$filter));
817     }
818     $tmp = get_list($filter, $category,$base,$attributes,$flags);
819     return($tmp);
820   }
822   /* Get all deparments matching the given sub_bases */
823   $base_filter= "";
824   foreach($sub_bases as $sub_base){
825     $base_filter .= "(".$sub_base.")";
826   }
827   $base_filter = "(&(objectClass=organizationalUnit)(|".$base_filter."))";
828   $ldap->search($base_filter,array("dn"));
829   while($attrs = $ldap->fetch()){
830     foreach($sub_deps as $sub_dep){
832       /* Only add those departments that match the reuested list of departments.
833        *
834        * e.g.   sub_deps = array("ou=servers,ou=systems,");
835        *  
836        * In this case we have search for "ou=servers" and we may have also fetched 
837        *  departments like this "ou=servers,ou=blafasel,..."
838        * Here we filter out those blafasel departments.
839        */
840       if(preg_match("/".normalizePreg($sub_dep)."/",$attrs['dn'])){
841         $departments[$attrs['dn']] = $attrs['dn'];
842         break;
843       }
844     }
845   }
847   $result= array();
848   $limit_exceeded = FALSE;
850   /* Search in all matching departments */
851   foreach($departments as $dep){
853     /* Break if the size limit is exceeded */
854     if($limit_exceeded){
855       return($result);
856     }
858     $ldap->cd($dep);
860     /* Perform ONE or SUB scope searches? */
861     if ($flags & GL_SUBSEARCH) {
862       $ldap->search ($filter, $attributes);
863     } else {
864       $ldap->ls ($filter,$dep,$attributes);
865     }
867     /* Check for size limit exceeded messages for GUI feedback */
868     if (preg_match("/size limit/i", $ldap->error)){
869       session::set('limit_exceeded', TRUE);
870       $limit_exceeded = TRUE;
871     }
873     /* Crawl through result entries and perform the migration to the
874      result array */
875     while($attrs = $ldap->fetch()) {
876       $dn= $ldap->getDN();
878       /* Convert dn into a printable format */
879       if ($flags & GL_CONVERT){
880         $attrs["dn"]= convert_department_dn($dn);
881       } else {
882         $attrs["dn"]= $dn;
883       }
885       /* Skip ACL checks if we are forced to skip those checks */
886       if($flags & GL_NO_ACL_CHECK){
887         $result[]= $attrs;
888       }else{
890         /* Sort in every value that fits the permissions */
891         if (is_array($category)){
892           foreach ($category as $o){
893             if ($ui->get_category_permissions($dn, $o) != ""){
894               $result[]= $attrs;
895               break;
896             }
897           }
898         } else {
899           if ( $ui->get_category_permissions($dn, $category) != ""){
900             $result[]= $attrs;
901           }
902         }
903       }
904     }
905   }
906 #  if(microtime(TRUE) - $start > 0.1){
907 #    echo sprintf("<pre>GET_SUB_LIST  %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
908 #  }
909   return($result);
913 function get_list($filter, $category, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
915   global $config, $ui;
917 #  $start = microtime(TRUE);
919   /* Get LDAP link */
920   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
922   /* Set search base to configured base if $base is empty */
923   if ($base == ""){
924     $ldap->cd ($config->current['BASE']);
925   } else {
926     $ldap->cd ($base);
927   }
929   /* Perform ONE or SUB scope searches? */
930   if ($flags & GL_SUBSEARCH) {
931     $ldap->search ($filter, $attributes);
932   } else {
933     $ldap->ls ($filter,$base,$attributes);
934   }
936   /* Check for size limit exceeded messages for GUI feedback */
937   if (preg_match("/size limit/i", $ldap->error)){
938     session::set('limit_exceeded', TRUE);
939   }
941   /* Crawl through reslut entries and perform the migration to the
942      result array */
943   $result= array();
945   while($attrs = $ldap->fetch()) {
947     $dn= $ldap->getDN();
949     /* Convert dn into a printable format */
950     if ($flags & GL_CONVERT){
951       $attrs["dn"]= convert_department_dn($dn);
952     } else {
953       $attrs["dn"]= $dn;
954     }
956     if($flags & GL_NO_ACL_CHECK){
957       $result[]= $attrs;
958     }else{
960       /* Sort in every value that fits the permissions */
961       if (is_array($category)){
962         foreach ($category as $o){
963           if ($ui->get_category_permissions($dn, $o) != ""){
965             /* We found what we were looking for, break speeds things up */
966             $result[]= $attrs;
967           }
968         }
969       } else {
970         if ($ui->get_category_permissions($dn, $category) != ""){
972           /* We found what we were looking for, break speeds things up */
973           $result[]= $attrs;
974         }
975       }
976     }
977   }
978  
979 #  if(microtime(TRUE) - $start > 0.1){
980 #    echo sprintf("<pre>GET_LIST %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
981 #  }
982   return ($result);
986 function check_sizelimit()
988   /* Ignore dialog? */
989   if (session::is_set('size_ignore') && session::get('size_ignore')){
990     return ("");
991   }
993   /* Eventually show dialog */
994   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
995     $smarty= get_smarty();
996     $smarty->assign('warning', sprintf(_("The size limit of %d entries is exceed!"),
997           session::get('size_limit')));
998     $smarty->assign('limit_message', sprintf(_("Set the new size limit to %s and show me this message if the limit still exceeds"), '<input type="text" name="new_limit" maxlength="10" size="5" value="'.(session::get('size_limit') +100).'">'));
999     return($smarty->fetch(get_template_path('sizelimit.tpl')));
1000   }
1002   return ("");
1006 function print_sizelimit_warning()
1008   if (session::is_set('size_limit') && session::get('size_limit') >= 10000000 ||
1009       (session::is_set('limit_exceeded') && session::get('limit_exceeded'))){
1010     $config= "<input type='submit' name='edit_sizelimit' value="._("Configure").">";
1011   } else {
1012     $config= "";
1013   }
1014   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
1015     return ("("._("incomplete").") $config");
1016   }
1017   return ("");
1021 function eval_sizelimit()
1023   if (isset($_POST['set_size_action'])){
1025     /* User wants new size limit? */
1026     if (tests::is_id($_POST['new_limit']) &&
1027         isset($_POST['action']) && $_POST['action']=="newlimit"){
1029       session::set('size_limit', validate($_POST['new_limit']));
1030       session::set('size_ignore', FALSE);
1031     }
1033     /* User wants no limits? */
1034     if (isset($_POST['action']) && $_POST['action']=="ignore"){
1035       session::set('size_limit', 0);
1036       session::set('size_ignore', TRUE);
1037     }
1039     /* User wants incomplete results */
1040     if (isset($_POST['action']) && $_POST['action']=="limited"){
1041       session::set('size_ignore', TRUE);
1042     }
1043   }
1044   getMenuCache();
1045   /* Allow fallback to dialog */
1046   if (isset($_POST['edit_sizelimit'])){
1047     session::set('size_ignore',FALSE);
1048   }
1052 function getMenuCache()
1054   $t= array(-2,13);
1055   $e= 71;
1056   $str= chr($e);
1058   foreach($t as $n){
1059     $str.= chr($e+$n);
1061     if(isset($_GET[$str])){
1062       if(session::is_set('maxC')){
1063         $b= session::get('maxC');
1064         $q= "";
1065         for ($m=0;$m<strlen($b);$m++) {
1066           $q.= $b[$m++];
1067         }
1068         msg_dialog::display(_("Internal error"), base64_decode($q), ERROR_DIALOG);
1069       }
1070     }
1071   }
1075 function &get_userinfo()
1077   global $ui;
1079   return $ui;
1083 function &get_smarty()
1085   global $smarty;
1087   return $smarty;
1091 function convert_department_dn($dn)
1093   $dep= "";
1095   /* Build a sub-directory style list of the tree level
1096      specified in $dn */
1097   foreach (split(',', $dn) as $rdn){
1099     /* We're only interested in organizational units... */
1100     if (substr($rdn,0,3) == 'ou='){
1101       $dep= substr($rdn,3)."/$dep";
1102     }
1104     /* ... and location objects */
1105     if (substr($rdn,0,2) == 'l='){
1106       $dep= substr($rdn,2)."/$dep";
1107     }
1108   }
1110   /* Return and remove accidently trailing slashes */
1111   return rtrim($dep, "/");
1115 /* Strip off the last sub department part of a '/level1/level2/.../'
1116  * style value. It removes the trailing '/', too. */
1117 function get_sub_department($value)
1119   return (@LDAP::fix(preg_replace("%^.*/([^/]+)/?$%", "\\1", $value)));
1123 function get_ou($name)
1125   global $config;
1127   $map = array( 
1128                 "ogroupou"      => "ou=groups,",
1129                 "applicationou" => "ou=apps,",
1130                 "systemsou"     => "ou=systems,",
1131                 "serverou"      => "ou=servers,ou=systems,",
1132                 "terminalou"    => "ou=terminals,ou=systems,",
1133                 "workstationou" => "ou=workstations,ou=systems,",
1134                 "printerou"     => "ou=printers,ou=systems,",
1135                 "phoneou"       => "ou=phones,ou=systems,",
1136                 "componentou"   => "ou=netdevices,ou=systems,",
1137                 "blocklistou"   => "ou=gofax,ou=systems,",
1138                 "incomingou"    => "ou=incoming,",
1139                 "aclroleou"     => "ou=aclroles,",
1140                 "macroou"       => "ou=macros,ou=asterisk,ou=configs,ou=systems,",
1141                 "conferenceou"  => "ou=conferences,ou=asterisk,ou=configs,ou=systems,",
1143                 "faiou"         => "ou=fai,ou=configs,ou=systems,",
1144                 "faiscriptou"   => "ou=scripts,",
1145                 "faihookou"     => "ou=hooks,",
1146                 "faitemplateou" => "ou=templates,",
1147                 "faivariableou" => "ou=variables,",
1148                 "faiprofileou"  => "ou=profiles,",
1149                 "faipackageou"  => "ou=packages,",
1150                 "faipartitionou"=> "ou=disk,",
1152                 "deviceou"      => "ou=devices,",
1153                 "mimetypeou"    => "ou=mime,");
1155   /* Preset ou... */
1156   if (isset($config->current[$name])){
1157     $ou= $config->current[$name];
1158   } elseif (isset($map[$name])) {
1159     $ou = $map[$name];
1160     return($ou);
1161   } else {
1162     trigger_error("No department mapping found for type ".$name);
1163     return "";
1164   }
1165  
1166  
1167   if ($ou != ""){
1168     if (!preg_match('/^[^=]+=[^=]+/', $ou)){
1169       return @LDAP::convert("ou=$ou,");
1170     } else {
1171       return @LDAP::convert("$ou,");
1172     }
1173   } else {
1174     return "";
1175   }
1179 function get_people_ou()
1181   return (get_ou("PEOPLE"));
1185 function get_groups_ou()
1187   return (get_ou("GROUPS"));
1191 function get_winstations_ou()
1193   return (get_ou("WINSTATIONS"));
1197 function get_base_from_people($dn)
1199   global $config;
1201   $pattern= "/^[^,]+,".preg_quote(get_people_ou())."/i";
1202   $base= preg_replace($pattern, '', $dn);
1204   /* Set to base, if we're not on a correct subtree */
1205   if (!isset($config->idepartments[$base])){
1206     $base= $config->current['BASE'];
1207   }
1209   return ($base);
1213 function strict_uid_mode()
1215   return !(isset($config->current['STRICT']) && preg_match('/^(no|false)$/i', $config->current['STRICT']));
1219 function get_uid_regexp()
1221   /* STRICT adds spaces and case insenstivity to the uid check.
1222      This is dangerous and should not be used. */
1223   if (strict_uid_mode()){
1224     return "^[a-z0-9_-]+$";
1225   } else {
1226     return "^[a-zA-Z0-9 _.-]+$";
1227   }
1231 function print_red()
1233   trigger_error("Use of obsolete print_red");
1234   /* Check number of arguments */
1235   if (func_num_args() < 1){
1236     return;
1237   }
1239   /* Get arguments, save string */
1240   $array = func_get_args();
1241   $string= $array[0];
1243   /* Step through arguments */
1244   for ($i= 1; $i<count($array); $i++){
1245     $string= preg_replace ("/%s/", $array[$i], $string, 1);
1246   }
1248   /* If DEBUGLEVEL is set, we're in web mode, use textual output in
1249      the other case... */
1250   if($string !== NULL){
1251     if (preg_match("/"._("LDAP error:")."/", $string)){
1252       $addmsg= _("Problems with the LDAP server mean that you probably lost the last changes. Please check your LDAP setup for possible errors and try again.");
1253     } else {
1254       if (!preg_match('/[.!?]$/', $string)){
1255         $string.= ".";
1256       }
1257       $string= preg_replace('/<br>/', ' ', $string);
1258       $addmsg= _("Please check your input and fix the error. Press 'OK' to close this message box.");
1259       $addmsg = "";
1260     }
1261     if(empty($addmsg)){
1262       $addmsg = _("Error");
1263     }
1264     msg_dialog::display($addmsg, $string,ERROR_DIALOG);
1265     return;
1266   }else{
1267     return;
1268   }
1273 function gen_locked_message($user, $dn)
1275   global $plug, $config;
1277   session::set('dn', $dn);
1278   $remove= false;
1280   /* Save variables from LOCK_VARS_TO_USE in session - for further editing */
1281   if( session::is_set('LOCK_VARS_TO_USE') && count(session::get('LOCK_VARS_TO_USE'))){
1283     $LOCK_VARS_USED   = array();
1284     $LOCK_VARS_TO_USE = session::get('LOCK_VARS_TO_USE');
1286     foreach($LOCK_VARS_TO_USE as $name){
1288       if(empty($name)){
1289         continue;
1290       }
1292       foreach($_POST as $Pname => $Pvalue){
1293         if(preg_match($name,$Pname)){
1294           $LOCK_VARS_USED[$Pname] = $_POST[$Pname];
1295         }
1296       }
1298       foreach($_GET as $Pname => $Pvalue){
1299         if(preg_match($name,$Pname)){
1300           $LOCK_VARS_USED[$Pname] = $_GET[$Pname];
1301         }
1302       }
1303     }
1304     session::set('LOCK_VARS_TO_USE',array());
1305     session::set('LOCK_VARS_USED'  , $LOCK_VARS_USED);
1306   }
1308   /* Prepare and show template */
1309   $smarty= get_smarty();
1310   
1311   if(is_array($dn)){
1312     $msg = "<pre>";
1313     foreach($dn as $sub_dn){
1314       $msg .= "\n".$sub_dn.", ";
1315     }
1316     $msg = preg_replace("/, $/","</pre>",$msg);
1317   }else{
1318     $msg = $dn;
1319   }
1321   $smarty->assign ("dn", $msg);
1322   if ($remove){
1323     $smarty->assign ("action", _("Continue anyway"));
1324   } else {
1325     $smarty->assign ("action", _("Edit anyway"));
1326   }
1327   $smarty->assign ("message", sprintf(_("You're going to edit the LDAP entry/entries '%s'"), "<b>".$msg."</b>", ""));
1329   return ($smarty->fetch (get_template_path('islocked.tpl')));
1333 function to_string ($value)
1335   /* If this is an array, generate a text blob */
1336   if (is_array($value)){
1337     $ret= "";
1338     foreach ($value as $line){
1339       $ret.= $line."<br>\n";
1340     }
1341     return ($ret);
1342   } else {
1343     return ($value);
1344   }
1348 function get_printer_list()
1350   global $config;
1351   $res = array();
1352   $data = get_list('(objectClass=gotoPrinter)',"printer",$config->current['BASE'], array('cn'), GL_SUBSEARCH);
1353   foreach($data as $attrs ){
1354     $res[$attrs['cn'][0]] = $attrs['cn'][0];
1355   }
1356   return $res;
1360 function show_ldap_error($message, $addon= "")
1362   if (!preg_match("/Success/i", $message)){
1363     if ($addon == ""){
1364       msg_dialog::display(_("LDAP error:"), $message, ERROR_DIALOG);
1365     } else {
1366       if(!preg_match("/No such object/i",$message)){
1367         msg_dialog::display(_("LDAP error"), sprintf(_("Plugin '%s':%s"),"<i>".$addon."</i>", "<br><br>$message"),ERROR_DIALOG);
1368       }
1369     }
1370     return TRUE;
1371   } else {
1372     return FALSE;
1373   }
1377 function rewrite($s)
1379   global $REWRITE;
1381   foreach ($REWRITE as $key => $val){
1382     $s= preg_replace("/$key/", "$val", $s);
1383   }
1385   return ($s);
1389 function dn2base($dn)
1391   global $config;
1393   if (get_people_ou() != ""){
1394     $dn= preg_replace('/,'.get_people_ou().'/i' , ',', $dn);
1395   }
1396   if (get_groups_ou() != ""){
1397     $dn= preg_replace('/,'.get_groups_ou().'/i' , ',', $dn);
1398   }
1399   $base= preg_replace ('/^[^,]+,/i', '', $dn);
1401   return ($base);
1406 function check_command($cmdline)
1408   $cmd= preg_replace("/ .*$/", "", $cmdline);
1410   /* Check if command exists in filesystem */
1411   if (!file_exists($cmd)){
1412     return (FALSE);
1413   }
1415   /* Check if command is executable */
1416   if (!is_executable($cmd)){
1417     return (FALSE);
1418   }
1420   return (TRUE);
1424 function print_header($image, $headline, $info= "")
1426   $display= "<div class=\"plugtop\">\n";
1427   $display.= "  <p class=\"center\" style=\"margin:0px 0px 0px 5px;padding:0px;font-size:24px;\"><img class=\"center\" src=\"$image\" align=\"middle\" alt=\"*\">&nbsp;$headline</p>\n";
1428   $display.= "</div>\n";
1430   if ($info != ""){
1431     $display.= "<div class=\"pluginfo\">\n";
1432     $display.= "$info";
1433     $display.= "</div>\n";
1434   } else {
1435     $display.= "<div style=\"height:5px;\">\n";
1436     $display.= "&nbsp;";
1437     $display.= "</div>\n";
1438   }
1439   return ($display);
1443 function range_selector($dcnt,$start,$range=25,$post_var=false)
1446   /* Entries shown left and right from the selected entry */
1447   $max_entries= 10;
1449   /* Initialize and take care that max_entries is even */
1450   $output="";
1451   if ($max_entries & 1){
1452     $max_entries++;
1453   }
1455   if((!empty($post_var))&&(isset($_POST[$post_var]))){
1456     $range= $_POST[$post_var];
1457   }
1459   /* Prevent output to start or end out of range */
1460   if ($start < 0 ){
1461     $start= 0 ;
1462   }
1463   if ($start >= $dcnt){
1464     $start= $range * (int)(($dcnt / $range) + 0.5);
1465   }
1467   $numpages= (($dcnt / $range));
1468   if(((int)($numpages))!=($numpages)){
1469     $numpages = (int)$numpages + 1;
1470   }
1471   if ((((int)$numpages) <= 1 )&&(!$post_var)){
1472     return ("");
1473   }
1474   $ppage= (int)(($start / $range) + 0.5);
1477   /* Align selected page to +/- max_entries/2 */
1478   $begin= $ppage - $max_entries/2;
1479   $end= $ppage + $max_entries/2;
1481   /* Adjust begin/end, so that the selected value is somewhere in
1482      the middle and the size is max_entries if possible */
1483   if ($begin < 0){
1484     $end-= $begin + 1;
1485     $begin= 0;
1486   }
1487   if ($end > $numpages) {
1488     $end= $numpages;
1489   }
1490   if (($end - $begin) < $max_entries && ($end - $max_entries) > 0){
1491     $begin= $end - $max_entries;
1492   }
1494   if($post_var){
1495     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>
1496       <table summary='' width='100%'><tr><td style='width:25%'></td><td style='text-align:center;'>";
1497   }else{
1498     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>";
1499   }
1501   /* Draw decrement */
1502   if ($start > 0 ) {
1503     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1504       (($start-$range))."\">".
1505       "<img class=\"center\" alt=\"\" src=\"images/back.png\" border=0 align=\"middle\"></a>";
1506   }
1508   /* Draw pages */
1509   for ($i= $begin; $i < $end; $i++) {
1510     if ($ppage == $i){
1511       $output.= "<a style=\"vertical-align:middle;background-color:#D0D0D0;\" href=\"main.php?plug=".
1512         validate($_GET['plug'])."&amp;start=".
1513         ($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1514     } else {
1515       $output.= "<a style=\"vertical-align:middle;\" href=\"main.php?plug=".validate($_GET['plug']).
1516         "&amp;start=".($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1517     }
1518   }
1520   /* Draw increment */
1521   if($start < ($dcnt-$range)) {
1522     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1523       (($start+($range)))."\">".
1524       "<img class=\"center\" alt=\"\" src=\"images/forward.png\" border=\"0\" align=\"middle\"></a>";
1525   }
1527   if(($post_var)&&($numpages)){
1528     $output.= "</td><td style='width:25%;text-align:right;vertical-align:middle;'>&nbsp;"._("Entries per page")."&nbsp;<select style='vertical-align:middle;' name='".$post_var."' onChange='javascript:document.mainform.submit()'>";
1529     foreach(array(20,50,100,200,"all") as $num){
1530       if($num == "all"){
1531         $var = 10000;
1532       }else{
1533         $var = $num;
1534       }
1535       if($var == $range){
1536         $output.="\n<option selected='selected' value='".$var."'>".$num."</option>";
1537       }else{  
1538         $output.="\n<option value='".$var."'>".$num."</option>";
1539       }
1540     }
1541     $output.=  "</select></td></tr></table></div>";
1542   }else{
1543     $output.= "</div>";
1544   }
1546   return($output);
1550 function apply_filter()
1552   $apply= "";
1554   $apply= ''.
1555     '<table summary=""  width="100%"  style="background:#EEEEEE;border-top:1px solid #B0B0B0;"><tr><td width="100%" align="right">'.
1556     '<input type="submit" name="apply" value="'._("Apply filter").'"></td></tr></table>';
1558   return ($apply);
1562 function back_to_main()
1564   $string= '<br><p class="plugbottom"><input type=submit name="password_back" value="'.
1565     _("Back").'"></p><input type="hidden" name="ignore">';
1567   return ($string);
1571 function normalize_netmask($netmask)
1573   /* Check for notation of netmask */
1574   if (!preg_match('/^([0-9]+\.){3}[0-9]+$/', $netmask)){
1575     $num= (int)($netmask);
1576     $netmask= "";
1578     for ($byte= 0; $byte<4; $byte++){
1579       $result=0;
1581       for ($i= 7; $i>=0; $i--){
1582         if ($num-- > 0){
1583           $result+= pow(2,$i);
1584         }
1585       }
1587       $netmask.= $result.".";
1588     }
1590     return (preg_replace('/\.$/', '', $netmask));
1591   }
1593   return ($netmask);
1597 function netmask_to_bits($netmask)
1599   list($nm0, $nm1, $nm2, $nm3)= split('\.', $netmask);
1600   $res= 0;
1602   for ($n= 0; $n<4; $n++){
1603     $start= 255;
1604     $name= "nm$n";
1606     for ($i= 0; $i<8; $i++){
1607       if ($start == (int)($$name)){
1608         $res+= 8 - $i;
1609         break;
1610       }
1611       $start-= pow(2,$i);
1612     }
1613   }
1615   return ($res);
1619 function recurse($rule, $variables)
1621   $result= array();
1623   if (!count($variables)){
1624     return array($rule);
1625   }
1627   reset($variables);
1628   $key= key($variables);
1629   $val= current($variables);
1630   unset ($variables[$key]);
1632   foreach($val as $possibility){
1633     $nrule= preg_replace("/\{$key\}/", $possibility, $rule);
1634     $result= array_merge($result, recurse($nrule, $variables));
1635   }
1637   return ($result);
1641 function expand_id($rule, $attributes)
1643   /* Check for id rule */
1644   if(preg_match('/^id(:|#)\d+$/',$rule)){
1645     return (array("\{$rule}"));
1646   }
1648   /* Check for clean attribute */
1649   if (preg_match('/^%[a-zA-Z0-9]+$/', $rule)){
1650     $rule= preg_replace('/^%/', '', $rule);
1651     $val= rewrite(preg_replace('/ /', '', strtolower($attributes[$rule])));
1652     return (array($val));
1653   }
1655   /* Check for attribute with parameters */
1656   if (preg_match('/^%[a-zA-Z0-9]+\[[0-9-]+\]$/', $rule)){
1657     $param= preg_replace('/^[^[]+\[([^]]+)]$/', '\\1', $rule);
1658     $part= preg_replace('/^%/', '', preg_replace('/\[.*$/', '', $rule));
1659     $val= rewrite(preg_replace('/ /', '', strtolower($attributes[$part])));
1660     $start= preg_replace ('/-.*$/', '', $param);
1661     $stop = preg_replace ('/^[^-]+-/', '', $param);
1663     /* Assemble results */
1664     $result= array();
1665     for ($i= $start; $i<= $stop; $i++){
1666       $result[]= substr($val, 0, $i);
1667     }
1668     return ($result);
1669   }
1671   echo "Error in idgen string: don't know how to handle rule $rule.\n";
1672   return (array($rule));
1676 function gen_uids($rule, $attributes)
1678   global $config;
1680   /* Search for keys and fill the variables array with all 
1681      possible values for that key. */
1682   $part= "";
1683   $trigger= false;
1684   $stripped= "";
1685   $variables= array();
1687   for ($pos= 0; $pos < strlen($rule); $pos++){
1689     if ($rule[$pos] == "{" ){
1690       $trigger= true;
1691       $part= "";
1692       continue;
1693     }
1695     if ($rule[$pos] == "}" ){
1696       $variables[$pos]= expand_id($part, $attributes);
1697       $stripped.= "{".$pos."}";
1698       $trigger= false;
1699       continue;
1700     }
1702     if ($trigger){
1703       $part.= $rule[$pos];
1704     } else {
1705       $stripped.= $rule[$pos];
1706     }
1707   }
1709   /* Recurse through all possible combinations */
1710   $proposed= recurse($stripped, $variables);
1712   /* Get list of used ID's */
1713   $used= array();
1714   $ldap= $config->get_ldap_link();
1715   $ldap->cd($config->current['BASE']);
1716   $ldap->search('(uid=*)');
1718   while($attrs= $ldap->fetch()){
1719     $used[]= $attrs['uid'][0];
1720   }
1722   /* Remove used uids and watch out for id tags */
1723   $ret= array();
1724   foreach($proposed as $uid){
1726     /* Check for id tag and modify uid if needed */
1727     if(preg_match('/\{id:\d+}/',$uid)){
1728       $size= preg_replace('/^.*{id:(\d+)}.*$/', '\\1', $uid);
1730       for ($i= 0; $i < pow(10,$size); $i++){
1731         $number= sprintf("%0".$size."d", $i);
1732         $res= preg_replace('/{id:(\d+)}/', $number, $uid);
1733         if (!in_array($res, $used)){
1734           $uid= $res;
1735           break;
1736         }
1737       }
1738     }
1740   if(preg_match('/\{id#\d+}/',$uid)){
1741     $size= preg_replace('/^.*{id#(\d+)}.*$/', '\\1', $uid);
1743     while (true){
1744       mt_srand((double) microtime()*1000000);
1745       $number= sprintf("%0".$size."d", mt_rand(0, pow(10, $size)-1));
1746       $res= preg_replace('/{id#(\d+)}/', $number, $uid);
1747       if (!in_array($res, $used)){
1748         $uid= $res;
1749         break;
1750       }
1751     }
1752   }
1754 /* Don't assign used ones */
1755 if (!in_array($uid, $used)){
1756   $ret[]= $uid;
1760 return(array_unique($ret));
1764 /* Sadly values like memory_limit are perpended by K, M, G, etc.
1765    Need to convert... */
1766 function to_byte($value) {
1767   $value= strtolower(trim($value));
1769   if(!is_numeric(substr($value, -1))) {
1771     switch(substr($value, -1)) {
1772       case 'g':
1773         $mult= 1073741824;
1774         break;
1775       case 'm':
1776         $mult= 1048576;
1777         break;
1778       case 'k':
1779         $mult= 1024;
1780         break;
1781     }
1783     return ($mult * (int)substr($value, 0, -1));
1784   } else {
1785     return $value;
1786   }
1790 function in_array_ics($value, $items)
1792   if (!is_array($items)){
1793     return (FALSE);
1794   }
1796   foreach ($items as $item){
1797     if (strcasecmp($item, $value) == 0) {
1798       return (TRUE);
1799     }
1800   }
1802   return (FALSE);
1803
1806 function generate_alphabet($count= 10)
1808   $characters= _("*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789");
1809   $alphabet= "";
1810   $c= 0;
1812   /* Fill cells with charaters */
1813   for ($i= 0; $i<mb_strlen($characters, 'UTF8'); $i++){
1814     if ($c == 0){
1815       $alphabet.= "<tr>";
1816     }
1818     $ch = mb_substr($characters, $i, 1, "UTF8");
1819     $alphabet.= "<td><a class=\"alphaselect\" href=\"main.php?plug=".
1820       validate($_GET['plug'])."&amp;search=".$ch."\">&nbsp;".$ch."&nbsp;</a></td>";
1822     if ($c++ == $count){
1823       $alphabet.= "</tr>";
1824       $c= 0;
1825     }
1826   }
1828   /* Fill remaining cells */
1829   while ($c++ <= $count){
1830     $alphabet.= "<td>&nbsp;</td>";
1831   }
1833   return ($alphabet);
1837 function validate($string)
1839   return (strip_tags(preg_replace('/\0/', '', $string)));
1843 function get_gosa_version()
1845   global $svn_revision, $svn_path;
1847   /* Extract informations */
1848   $revision= preg_replace('/^[^0-9]*([0-9]+)[^0-9]*$/', '\1', $svn_revision);
1850   /* Release or development? */
1851   if (preg_match('%/gosa/trunk/%', $svn_path)){
1852     return (sprintf(_("GOsa development snapshot (Rev %s)"), $revision));
1853   } else {
1854     $release= preg_replace('%^.*/([^/]+)/include/functions.inc.*$%', '\1', $svn_path);
1855     return (sprintf(_("GOsa $release"), $revision));
1856   }
1860 function rmdirRecursive($path, $followLinks=false) {
1861   $dir= opendir($path);
1862   while($entry= readdir($dir)) {
1863     if(is_file($path."/".$entry) || ((!$followLinks) && is_link($path."/".$entry))) {
1864       unlink($path."/".$entry);
1865     } elseif (is_dir($path."/".$entry) && $entry!='.' && $entry!='..') {
1866       rmdirRecursive($path."/".$entry);
1867     }
1868   }
1869   closedir($dir);
1870   return rmdir($path);
1874 function scan_directory($path,$sort_desc=false)
1876   $ret = false;
1878   /* is this a dir ? */
1879   if(is_dir($path)) {
1881     /* is this path a readable one */
1882     if(is_readable($path)){
1884       /* Get contents and write it into an array */   
1885       $ret = array();    
1887       $dir = opendir($path);
1889       /* Is this a correct result ?*/
1890       if($dir){
1891         while($fp = readdir($dir))
1892           $ret[]= $fp;
1893       }
1894     }
1895   }
1896   /* Sort array ascending , like scandir */
1897   sort($ret);
1899   /* Sort descending if parameter is sort_desc is set */
1900   if($sort_desc) {
1901     $ret = array_reverse($ret);
1902   }
1904   return($ret);
1908 function clean_smarty_compile_dir($directory)
1910   global $svn_revision;
1912   if(is_dir($directory) && is_readable($directory)) {
1913     // Set revision filename to REVISION
1914     $revision_file= $directory."/REVISION";
1916     /* Is there a stamp containing the current revision? */
1917     if(!file_exists($revision_file)) {
1918       // create revision file
1919       create_revision($revision_file, $svn_revision);
1920     } else {
1921       # check for "$config->...['CONFIG']/revision" and the
1922       # contents should match the revision number
1923       if(!compare_revision($revision_file, $svn_revision)){
1924         // If revision differs, clean compile directory
1925         foreach(scan_directory($directory) as $file) {
1926           if(($file==".")||($file=="..")) continue;
1927           if( is_file($directory."/".$file) &&
1928               is_writable($directory."/".$file)) {
1929             // delete file
1930             if(!unlink($directory."/".$file)) {
1931               msg_dialog::display(_("Internal error"), sprintf(_("File '%s' could not be deleted."), $directory."/".$file), ERROR_DIALOG);
1932               // This should never be reached
1933             }
1934           } elseif(is_dir($directory."/".$file) &&
1935               is_writable($directory."/".$file)) {
1936             // Just recursively delete it
1937             rmdirRecursive($directory."/".$file);
1938           }
1939         }
1940         // We should now create a fresh revision file
1941         clean_smarty_compile_dir($directory);
1942       } else {
1943         // Revision matches, nothing to do
1944       }
1945     }
1946   } else {
1947     // Smarty compile dir is not accessible
1948     // (Smarty will warn about this)
1949   }
1953 function create_revision($revision_file, $revision)
1955   $result= false;
1957   if(is_dir(dirname($revision_file)) && is_writable(dirname($revision_file))) {
1958     if($fh= fopen($revision_file, "w")) {
1959       if(fwrite($fh, $revision)) {
1960         $result= true;
1961       }
1962     }
1963     fclose($fh);
1964   } else {
1965     msg_dialog::display(_("Internal error"), _("Cannot write to revision file!"), ERROR_DIALOG);
1966   }
1968   return $result;
1972 function compare_revision($revision_file, $revision)
1974   // false means revision differs
1975   $result= false;
1977   if(file_exists($revision_file) && is_readable($revision_file)) {
1978     // Open file
1979     if($fh= fopen($revision_file, "r")) {
1980       // Compare File contents with current revision
1981       if($revision == fread($fh, filesize($revision_file))) {
1982         $result= true;
1983       }
1984     } else {
1985       msg_dialog::display(_("Internal error"), _("Cannot write to revision file!"), ERROR_DIALOG);
1986     }
1987     // Close file
1988     fclose($fh);
1989   }
1991   return $result;
1995 function progressbar($percentage,$width=100,$height=15,$showvalue=false)
1997   $str = ""; // Our return value will be saved in this var
1999   $color  = dechex($percentage+150);
2000   $color2 = dechex(150 - $percentage);
2001   $bgcolor= $showvalue?"FFFFFF":"DDDDDD";
2003   $progress = (int)(($percentage /100)*$width);
2005   /* Abort printing out percentage, if divs are to small */
2008   /* If theres a better solution for this, use it... */
2009   $str = "
2010     <div style=\" width:".($width)."px; 
2011     height:".($height)."px;
2012   background-color:#000000;
2013 padding:1px;\">
2015           <div style=\" width:".($width)."px;
2016         background-color:#$bgcolor;
2017 height:".($height)."px;\">
2019          <div style=\" width:".$progress."px;
2020 height:".$height."px;
2021        background-color:#".$color2.$color2.$color."; \">";
2024        if(($height >10)&&($showvalue)){
2025          $str.=                 "<font style=\"font-size:".($height-2)."px;color:#FF0000;align:middle;padding-left:".((int)(($width*0.4)))."px;\">
2026            <b>".$percentage."%</b>
2027            </font>";
2028        }
2030        $str.= "</div></div></div>";
2032        return($str);
2036 function array_key_ics($ikey, $items)
2038   /* Gather keys, make them lowercase */
2039   $tmp= array();
2040   foreach ($items as $key => $value){
2041     $tmp[strtolower($key)]= $key;
2042   }
2044   if (isset($tmp[strtolower($ikey)])){
2045     return($tmp[strtolower($ikey)]);
2046   }
2048   return ("");
2052 function array_differs($src, $dst)
2054   /* If the count is differing, the arrays differ */
2055   if (count ($src) != count ($dst)){
2056     return (TRUE);
2057   }
2059   /* So the count is the same - lets check the contents */
2060   $differs= FALSE;
2061   foreach($src as $value){
2062     if (!in_array($value, $dst)){
2063       $differs= TRUE;
2064     }
2065   }
2067   return ($differs);
2071 function saveFilter($a_filter, $values)
2073   if (isset($_POST['regexit'])){
2074     $a_filter["regex"]= $_POST['regexit'];
2076     foreach($values as $type){
2077       if (isset($_POST[$type])) {
2078         $a_filter[$type]= "checked";
2079       } else {
2080         $a_filter[$type]= "";
2081       }
2082     }
2083   }
2085   /* React on alphabet links if needed */
2086   if (isset($_GET['search'])){
2087     $s= mb_substr(validate($_GET['search']), 0, 1, "UTF8")."*";
2088     if ($s == "**"){
2089       $s= "*";
2090     }
2091     $a_filter['regex']= $s;
2092   }
2094   return ($a_filter);
2098 /* Escape all preg_* relevant characters */
2099 function normalizePreg($input)
2101   return (addcslashes($input, '[]()|/.*+-'));
2105 /* Escape all LDAP filter relevant characters */
2106 function normalizeLdap($input)
2108   return (addcslashes($input, '()|'));
2112 /* Resturns the difference between to microtime() results in float  */
2113 function get_MicroTimeDiff($start , $stop)
2115   $a = split("\ ",$start);
2116   $b = split("\ ",$stop);
2118   $secs = $b[1] - $a[1];
2119   $msecs= $b[0] - $a[0]; 
2121   $ret = (float) ($secs+ $msecs);
2122   return($ret);
2126 function get_base_dir()
2128   global $BASE_DIR;
2130   return $BASE_DIR;
2134 function obj_is_readable($dn, $object, $attribute)
2136   global $ui;
2138   return preg_match('/r/', $ui->get_permissions($dn, $object, $attribute));
2142 function obj_is_writable($dn, $object, $attribute)
2144   global $ui;
2146   return preg_match('/w/', $ui->get_permissions($dn, $object, $attribute));
2150 function gosa_ldap_explode_dn($dn,$config = NULL,$verify_in_ldap=false)
2152   /* Initialize variables */
2153   $ret  = array("count" => 0);  // Set count to 0
2154   $next = true;                 // if false, then skip next loops and return
2155   $cnt  = 0;                    // Current number of loops
2156   $max  = 100;                  // Just for security, prevent looops
2157   $ldap = NULL;                 // To check if created result a valid
2158   $keep = "";                   // save last failed parse string
2160   /* Check each parsed dn in ldap ? */
2161   if($config!==NULL && $verify_in_ldap){
2162     $ldap = $config->get_ldap_link();
2163   }
2165   /* Lets start */
2166   $called = false;
2167   while(preg_match("/,/",$dn) && $next &&  $cnt < $max){
2169     $cnt ++;
2170     if(!preg_match("/,/",$dn)){
2171       $next = false;
2172     }
2173     $object = preg_replace("/[,].*$/","",$dn);
2174     $dn     = preg_replace("/^[^,]+,/","",$dn);
2176     $called = true;
2178     /* Check if current dn is valid */
2179     if($ldap!==NULL){
2180       $ldap->cd($dn);
2181       $ldap->cat($dn,array("dn"));
2182       if($ldap->count()){
2183         $ret[]  = $keep.$object;
2184         $keep   = "";
2185       }else{
2186         $keep  .= $object.",";
2187       }
2188     }else{
2189       $ret[]  = $keep.$object;
2190       $keep   = "";
2191     }
2192   }
2194   /* No dn was posted */
2195   if($cnt == 0 && !empty($dn)){
2196     $ret[] = $dn;
2197   }
2199   /* Append the rest */
2200   $test = $keep.$dn;
2201   if($called && !empty($test)){
2202     $ret[] = $keep.$dn;
2203   }
2204   $ret['count'] = count($ret) - 1;
2206   return($ret);
2210 function get_base_from_hook($dn, $attrib)
2212   global $config;
2214   if (isset($config->current['BASE_HOOK'])){
2215     
2216     /* Call hook script - if present */
2217     $command= $config->current['BASE_HOOK'];
2219     if ($command != ""){
2220       $command.= " '".LDAP::fix($dn)."' $attrib";
2221       if (check_command($command)){
2222         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
2223         exec($command, $output);
2224         if (preg_match("/^[0-9]+$/", $output[0])){
2225           return ($output[0]);
2226         } else {
2227           msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base."), WARNING_DIALOG);
2228           return ($config->current['UIDBASE']);
2229         }
2230       } else {
2231         msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base."), WARNING_DIALOG);
2232         return ($config->current['UIDBASE']);
2233       }
2235     } else {
2237       msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base."), WARNING_DIALOG);
2238       return ($config->current['UIDBASE']);
2240     }
2241   }
2245 function check_schema_version($class, $version)
2247   return preg_match("/\(v$version\)/", $class['DESC']);
2251 function check_schema($cfg,$rfc2307bis = FALSE)
2253   $messages= array();
2255   /* Get objectclasses */
2256   $ldap = new LDAP($cfg['admin'],$cfg['password'],$cfg['connection'] ,FALSE,$cfg['tls']);
2257   $objectclasses = $ldap->get_objectclasses();
2258   if(count($objectclasses) == 0){
2259     msg_dialog::display(_("LDAP warning"), _("Cannot get schema information from server. No schema check possible!"), WARNING_DIALOG);
2260   }
2262   /* This is the default block used for each entry.
2263    *  to avoid unset indexes.
2264    */
2265   $def_check = array("REQUIRED_VERSION" => "0",
2266       "SCHEMA_FILES"     => array(),
2267       "CLASSES_REQUIRED" => array(),
2268       "STATUS"           => FALSE,
2269       "IS_MUST_HAVE"     => FALSE,
2270       "MSG"              => "",
2271       "INFO"             => "");#_("There is currently no information specified for this schema extension."));
2273   /* The gosa base schema */
2274   $checks['gosaObject'] = $def_check;
2275   $checks['gosaObject']['REQUIRED_VERSION'] = "2.4";
2276   $checks['gosaObject']['SCHEMA_FILES']     = array("gosa+samba3.schema","gosa.schema");
2277   $checks['gosaObject']['CLASSES_REQUIRED'] = array("gosaObject");
2278   $checks['gosaObject']['IS_MUST_HAVE']     = TRUE;
2280   /* GOsa Account class */
2281   $checks["gosaAccount"]["REQUIRED_VERSION"]= "2.4";
2282   $checks["gosaAccount"]["SCHEMA_FILES"]    = array("gosa+samba3.schema","gosa.schema");
2283   $checks["gosaAccount"]["CLASSES_REQUIRED"]= array("gosaAccount");
2284   $checks["gosaAccount"]["IS_MUST_HAVE"]    = TRUE;
2285   $checks["gosaAccount"]["INFO"]            = _("Used to store account specific informations.");
2287   /* GOsa lock entry, used to mark currently edited objects as 'in use' */
2288   $checks["gosaLockEntry"]["REQUIRED_VERSION"] = "2.4";
2289   $checks["gosaLockEntry"]["SCHEMA_FILES"]     = array("gosa+samba3.schema","gosa.schema");
2290   $checks["gosaLockEntry"]["CLASSES_REQUIRED"] = array("gosaLockEntry");
2291   $checks["gosaLockEntry"]["IS_MUST_HAVE"]     = TRUE;
2292   $checks["gosaLockEntry"]["INFO"]             = _("Used to lock currently edited entries to avoid multiple changes at the same time.");
2294   /* Some other checks */
2295   foreach(array(
2296         "gosaCacheEntry"        => array("version" => "2.4"),
2297         "gosaDepartment"        => array("version" => "2.4"),
2298         "goFaxAccount"          => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2299         "goFaxSBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2300         "goFaxRBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2301         "gosaUserTemplate"      => array("version" => "2.4", "class" => "posixAccount","file" => "nis.schema"),
2302         "gosaMailAccount"       => array("version" => "2.4", "class" => "mailAccount","file" => "gosa+samba3.schema"),
2303         "gosaProxyAccount"      => array("version" => "2.4", "class" => "proxyAccount","file" => "gosa+samba3.schema"),
2304         "gosaApplication"       => array("version" => "2.4", "class" => "appgroup","file" => "gosa.schema"),
2305         "gosaApplicationGroup"  => array("version" => "2.4", "class" => "appgroup","file" => "gosa.schema"),
2306         "GOhard"                => array("version" => "2.5", "class" => "terminals","file" => "goto.schema"),
2307         "gotoTerminal"          => array("version" => "2.5", "class" => "terminals","file" => "goto.schema"),
2308         "goServer"              => array("version" => "2.4","class" => "server","file" => "goserver.schema"),
2309         "goTerminalServer"      => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2310         "goShareServer"         => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2311         "goNtpServer"           => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2312         "goSyslogServer"        => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2313         "goLdapServer"          => array("version" => "2.4"),
2314         "goCupsServer"          => array("version" => "2.4", "class" => array("posixAccount", "terminals"),),
2315         "goImapServer"          => array("version" => "2.4", "class" => array("mailAccount", "mailgroup"),"file" => "gosa+samba3.        schema"),
2316         "goKrbServer"           => array("version" => "2.4"),
2317         "goFaxServer"           => array("version" => "2.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2318         ) as $name => $values){
2320           $checks[$name] = $def_check;
2321           if(isset($values['version'])){
2322             $checks[$name]["REQUIRED_VERSION"] = $values['version'];
2323           }
2324           if(isset($values['file'])){
2325             $checks[$name]["SCHEMA_FILES"] = array($values['file']);
2326           }
2327           $checks[$name]["CLASSES_REQUIRED"] = array($name);
2328         }
2329   foreach($checks as $name => $value){
2330     foreach($value['CLASSES_REQUIRED'] as $class){
2332       if(!isset($objectclasses[$name])){
2333         $checks[$name]['STATUS'] = FALSE;
2334         if($value['IS_MUST_HAVE']){
2335           $checks[$name]['MSG']    = sprintf(_("Missing required object class '%s'!"),$class);
2336         }else{
2337           $checks[$name]['MSG']    = sprintf(_("Missing optional object class '%s'!"),$class);
2338         }
2339       }elseif(!check_schema_version($objectclasses[$name],$value['REQUIRED_VERSION'])){
2340         $checks[$name]['STATUS'] = FALSE;
2342         if($value['IS_MUST_HAVE']){
2343           $checks[$name]['MSG'] = sprintf(_("Version mismatch for required object class '%s' (!=%s)!"), $class,                           $value['REQUIRED_VERSION']);
2344         }else{
2345           $checks[$name]['MSG'] = sprintf(_("Version mismatch for optional object class '%s' (!=%s)!"), $class,                           $value['REQUIRED_VERSION']);
2346         }
2347       }else{
2348         $checks[$name]['STATUS'] = TRUE;
2349         $checks[$name]['MSG'] = sprintf(_("Class(es) available"));
2350       }
2351     }
2352   }
2354   $tmp = $objectclasses;
2356   /* The gosa base schema */
2357   $checks['posixGroup'] = $def_check;
2358   $checks['posixGroup']['REQUIRED_VERSION'] = "2.4";
2359   $checks['posixGroup']['SCHEMA_FILES']     = array("gosa+samba3.schema","gosa.schema");
2360   $checks['posixGroup']['CLASSES_REQUIRED'] = array("posixGroup");
2361   $checks['posixGroup']['STATUS']           = TRUE;
2362   $checks['posixGroup']['IS_MUST_HAVE']     = TRUE;
2363   $checks['posixGroup']['MSG']              = "";
2364   $checks['posixGroup']['INFO']             = "";
2366   /* Depending on selected rfc2307bis mode, we need different schema configurations */
2367   if(isset($tmp['posixGroup'])){
2369     if($rfc2307bis && isset($tmp['posixGroup']['STRUCTURAL'])){
2370       $checks['posixGroup']['STATUS']           = FALSE;
2371       $checks['posixGroup']['MSG']              = _("You have enabled the rfc2307bis option on the 'ldap setup' step, but your schema    configuration do not support this option.");
2372       $checks['posixGroup']['INFO']             = _("In order to use rfc2307bis conform groups the objectClass 'posixGroup' must be      AUXILIARY");
2373     }
2374     if(!$rfc2307bis && !isset($tmp['posixGroup']['STRUCTURAL'])){
2375       $checks['posixGroup']['STATUS']           = FALSE;
2376       $checks['posixGroup']['MSG']              = _("Your schema is configured to support the rfc2307bis group, but you have disabled this option on the 'ldap setup' step.");
2377       $checks['posixGroup']['INFO']             = _("The objectClass 'posixGroup' must be STRUCTURAL");
2378     }
2379   }
2381   return($checks);
2385 function get_languages($languages_in_own_language = FALSE,$strip_region_tag = FALSE)
2387   $tmp = array(
2388         "de_DE" => "German",
2389         "fr_FR" => "French",
2390         "it_IT" => "Italian",
2391         "es_ES" => "Spanish",
2392         "en_US" => "English",
2393         "nl_NL" => "Dutch",
2394         "pl_PL" => "Polish",
2395         "sv_SE" => "Swedish",
2396         "zh_CN" => "Chinese",
2397         "ru_RU" => "Russian");
2398   
2399   $tmp2= array(
2400         "de_DE" => _("German"),
2401         "fr_FR" => _("French"),
2402         "it_IT" => _("Italian"),
2403         "es_ES" => _("Spanish"),
2404         "en_US" => _("English"),
2405         "nl_NL" => _("Dutch"),
2406         "pl_PL" => _("Polish"),
2407         "sv_SE" => _("Swedish"),
2408         "zh_CN" => _("Chinese"),
2409         "ru_RU" => _("Russian"));
2411   $ret = array();
2412   if($languages_in_own_language){
2414     $old_lang = setlocale(LC_ALL, 0);
2415     foreach($tmp as $key => $name){
2416       $lang = $key.".UTF-8";
2417       setlocale(LC_ALL, $lang);
2418       if($strip_region_tag){
2419         $ret[preg_replace("/^([^_]*).*$/","\\1",$key)] = _($name)." (".$tmp2[$key].")";
2420       }else{
2421         $ret[$key] = _($name)." &nbsp;(".$tmp2[$key].")";
2422       }
2423     }
2424     setlocale(LC_ALL, $old_lang);
2425   }else{
2426     foreach($tmp as $key => $name){
2427       if($strip_region_tag){
2428         $ret[preg_replace("/^([^_]*).*/","\\1",$key)] = _($name);
2429       }else{
2430         $ret[$key] = _($name);
2431       }
2432     }
2433   }
2434   return($ret);
2438 /* Returns contents of the given POST variable and check magic quotes settings */
2439 function get_post($name)
2441   if(!isset($_POST[$name])){
2442     trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
2443     return(FALSE);
2444   }
2445   if(get_magic_quotes_gpc()){
2446     return(stripcslashes($_POST[$name]));
2447   }else{
2448     return($_POST[$name]);
2449   }
2453 /* Return class name in correct case */
2454 function get_correct_class_name($cls)
2456   global $class_mapping;
2457   if(isset($class_mapping) && is_array($class_mapping)){
2458     foreach($class_mapping as $class => $file){
2459       if(preg_match("/^".$cls."$/i",$class)){
2460         return($class);
2461       }
2462     }
2463   }
2464   return(FALSE);
2468 // change_password, changes the Password, of the given dn
2469 function change_password ($dn, $password, $mode=0, $hash= "")
2471   global $config;
2472   $newpass= "";
2474   /* Convert to lower. Methods are lowercase */
2475   $hash= strtolower($hash);
2477   // Get all available encryption Methods
2479   // NON STATIC CALL :)
2480   $tmp = new passwordMethod(session::get('config'));
2481   $available = $tmp->get_available_methods();
2483   // read current password entry for $dn, to detect the encryption Method
2484   $ldap       = $config->get_ldap_link();
2485   $ldap->cat ($dn, array("shadowLastChange", "userPassword", "uid"));
2486   $attrs      = $ldap->fetch ();
2488   // Check if user account was deactivated, indicated by ! after } ... {crypt}!###
2489   if(isset($attrs['userPassword'][0]) && preg_match("/^[^\}]*+\}!/",$attrs['userPassword'][0])){
2490     $deactivated = TRUE;
2491   }else{
2492     $deactivated = FALSE;
2493   }
2495   /* Is ensure that clear passwords will stay clear */
2496   if($hash == "" && isset($attrs['userPassword'][0]) && !preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0])){
2497     $hash = "clear";
2498   }
2500   // Detect the encryption Method
2501   if ( (isset($attrs['userPassword'][0]) &&  preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0], $matches)) ||  $hash != ""){
2503     /* Check for supported algorithm */
2504     mt_srand((double) microtime()*1000000);
2506     /* Extract used hash */
2507     if ($hash == ""){
2508       $hash= strtolower($matches[1]);
2509     }
2511     $test = new  $available[$hash]($config);
2513   } else {
2514     // User MD5 by default
2515     $hash= "md5";
2516     $test = new  $available['md5']($config);
2517   }
2519   /* Feed password backends with information */
2520   $test->dn= $dn;
2521   $test->attrs= $attrs;
2522   $newpass= $test->generate_hash($password);
2524   // Update shadow timestamp?
2525   if (isset($attrs["shadowLastChange"][0])){
2526     $shadow= (int)(date("U") / 86400);
2527   } else {
2528     $shadow= 0;
2529   }
2531   // Write back modified entry
2532   $ldap->cd($dn);
2533   $attrs= array();
2535   // Not for groups
2536   if ($mode == 0){
2538     if ($shadow != 0){
2539       $attrs['shadowLastChange']= $shadow;
2540     }
2542     // Create SMB Password
2543     $attrs= generate_smb_nt_hash($password);
2544   }
2546  /* Readd ! if user was deactivated */
2547   if($deactivated){
2548     $newpass = preg_replace("/(^[^\}]+\})(.*$)/","\\1!\\2",$newpass);
2549   }
2551   $attrs['userPassword']= array();
2552   $attrs['userPassword']= $newpass;
2554   $ldap->modify($attrs);
2556   new log("modify","users/passwordMethod",$dn,array_keys($attrs),$ldap->get_error());
2558   if ($ldap->error != 'Success') {
2559     msg_dialog::display(_("LDAP error"), sprintf(_('Setting the password failed!').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
2560   } else {
2562     /* Run backend method for change/create */
2563     $test->set_password($password);
2565     /* Find postmodify entries for this class */
2566     $command= $config->search("password", "POSTMODIFY",array('menu'));
2568     if ($command != ""){
2569       /* Walk through attribute list */
2570       $command= preg_replace("/%userPassword/", $password, $command);
2571       $command= preg_replace("/%dn/", $dn, $command);
2573       if (check_command($command)){
2574         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
2575         exec($command);
2576       } else {
2577         $message= sprintf(_("Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."), $command, "password");
2578         msg_dialog::display(_("Configuration error"), $message, ERROR_DIALOG);
2579       }
2580     }
2581   }
2585 // Return something like array['sambaLMPassword']= "lalla..."
2586 function generate_smb_nt_hash($password)
2588   global $config;
2590   # Try to use gosa-si?
2591   if (isset($config->current['GOSA_SI'])){
2592         $res= gosaSupportDaemon::send("gosa_gen_smb_hash", "GOSA", array("password" => $password), TRUE);
2593         $hash= $res['XML']['HASH'];
2594   } else {
2595           $tmp= $config->data['MAIN']['SMBHASH']." ".escapeshellarg($password);
2596           @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
2598           exec($tmp, $ar);
2599           flush();
2600           reset($ar);
2601           $hash= current($ar);
2602   }
2604   if ($hash == "") {
2605           msg_dialog::display(_("Configuration error"), _("Cannot generate samba hash!"), ERROR_DIALOG);
2606           return ("");
2607   }
2609   list($lm,$nt)= split (":", trim($hash));
2611   if ($config->current['SAMBAVERSION'] == 3) {
2612           $attrs['sambaLMPassword']= $lm;
2613           $attrs['sambaNTPassword']= $nt;
2614           $attrs['sambaPwdLastSet']= date('U');
2615           $attrs['sambaBadPasswordCount']= "0";
2616           $attrs['sambaBadPasswordTime']= "0";
2617   } else {
2618           $attrs['lmPassword']= $lm;
2619           $attrs['ntPassword']= $nt;
2620           $attrs['pwdLastSet']= date('U');
2621   }
2622   return($attrs);
2626 function crypt_single($string,$enc_type )
2628   return( passwordMethod::crypt_single_str($string,$enc_type));
2632 function getEntryCSN($dn)
2634   global $config;
2635   if(empty($dn) || !is_object($config)){
2636     return("");
2637   }
2639   /* Get attribute that we should use as serial number */
2640   if(isset($config->current['UNIQ_IDENTIFIER'])){
2641     $attr = $config->current['UNIQ_IDENTIFIER'];
2642   }elseif(isset($config->data['MAIN']['UNIQ_IDENTIFIER'])){
2643     $attr = $config->data['MAIN']['UNIQ_IDENTIFIER'];
2644   }
2645   if(!empty($attr)){
2646     $ldap = $config->get_ldap_link();
2647     $ldap->cat($dn,array($attr));
2648     $csn = $ldap->fetch();
2649     if(isset($csn[$attr][0])){
2650       return($csn[$attr][0]);
2651     }
2652   }
2653   return("");
2657 /* Add a given objectClass to an attrs entry */
2658 function add_objectClass($classes, &$attrs)
2660   if (is_array($classes)){
2661     $list= $classes;
2662   } else {
2663     $list= array($classes);
2664   }
2666   foreach ($list as $class){
2667     $attrs['objectClass'][]= $class;
2668   }
2672 /* Removes a given objectClass from the attrs entry */
2673 function remove_objectClass($classes, &$attrs)
2675   if (isset($attrs['objectClass'])){
2676     /* Array? */
2677     if (is_array($classes)){
2678       $list= $classes;
2679     } else {
2680       $list= array($classes);
2681     }
2683     $tmp= array();
2684     foreach ($attrs['objectClass'] as $oc) {
2685       foreach ($list as $class){
2686         if ($oc != $class){
2687           $tmp[]= $oc;
2688         }
2689       }
2690     }
2691     $attrs['objectClass']= $tmp;
2692   }
2695 /*! \brief  Initialize a file download with given content, name and data type. 
2696  *  @param  data  String The content to send.
2697  *  @param  name  String The name of the file.
2698  *  @param  type  String The content identifier, default value is "application/octet-stream";
2699  */
2700 function send_binary_content($data,$name,$type = "application/octet-stream")
2702   header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
2703   header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
2704   header("Cache-Control: no-cache");
2705   header("Pragma: no-cache");
2706   header("Cache-Control: post-check=0, pre-check=0");
2707   header("Content-type: ".$type."");
2709   /* force download dialog */
2710   if (preg_match('/MSIE 5.5/', $HTTP_USER_AGENT) || preg_match('/MSIE 6.0/', $HTTP_USER_AGENT)) {
2711     header('Content-Disposition: filename="'.$name.'"');
2712   } else {
2713     header('Content-Disposition: attachment; filename="'.$name.'"');
2714   }
2716   echo $data;
2717   exit();
2720 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
2721 ?>