Code

Added recursive htmlentities.
[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 */
25 /* Allow setting the config patj in the apache configuration
26    e.g.  SetEnv CONFIG_FILE /etc/path
27  */
28 if(!isset($_SERVER['CONFIG_DIR'])){
29   define ("CONFIG_DIR", "/etc/gosa");
30 }else{
31   define ("CONFIG_DIR",$_SERVER['CONFIG_DIR']);
32 }
34 /* Allow setting the config file in the apache configuration
35     e.g.  SetEnv CONFIG_FILE gosa.conf.2.5
36  */
37 if(!isset($_SERVER['CONFIG_FILE'])){
38   define ("CONFIG_FILE", "gosa.conf");
39 }else{
40   define ("CONFIG_FILE",$_SERVER['CONFIG_FILE']);
41 }
43 define ("CONFIG_TEMPLATE_DIR", "../contrib/");
44 define ("TEMP_DIR","/var/cache/gosa/tmp");
46 /* Define get_list flags */
47 define("GL_NONE",         0);
48 define("GL_SUBSEARCH",    1);
49 define("GL_SIZELIMIT",    2);
50 define("GL_CONVERT",      4);
51 define("GL_NO_ACL_CHECK", 8);
53 /* Heimdal stuff */
54 define('UNIVERSAL',0x00);
55 define('INTEGER',0x02);
56 define('OCTET_STRING',0x04);
57 define('OBJECT_IDENTIFIER ',0x06);
58 define('SEQUENCE',0x10);
59 define('SEQUENCE_OF',0x10);
60 define('SET',0x11);
61 define('SET_OF',0x11);
62 define('DEBUG',false);
63 define('HDB_KU_MKEY',0x484442);
64 define('TWO_BIT_SHIFTS',0x7efc);
65 define('DES_CBC_CRC',1);
66 define('DES_CBC_MD4',2);
67 define('DES_CBC_MD5',3);
68 define('DES3_CBC_MD5',5);
69 define('DES3_CBC_SHA1',16);
71 /* Define globals for revision comparing */
72 $svn_path = '$HeadURL: https://oss.gonicus.de/repositories/gosa/trunk/gosa-core/include/functions.inc $';
73 $svn_revision = '$Revision: 9246 $';
75 /* Include required files */
76 require_once("class_location.inc");
77 require_once ("functions_debug.inc");
78 require_once ("accept-to-gettext.inc");
80 /* Define constants for debugging */
81 define ("DEBUG_TRACE",   1);
82 define ("DEBUG_LDAP",    2);
83 define ("DEBUG_MYSQL",   4);
84 define ("DEBUG_SHELL",   8);
85 define ("DEBUG_POST",   16);
86 define ("DEBUG_SESSION",32);
87 define ("DEBUG_CONFIG", 64);
88 define ("DEBUG_ACL",    128);
90 /* Rewrite german 'umlauts' and spanish 'accents'
91    to get better results */
92 $REWRITE= array( "ä" => "ae",
93     "ö" => "oe",
94     "ü" => "ue",
95     "Ä" => "Ae",
96     "Ö" => "Oe",
97     "Ü" => "Ue",
98     "ß" => "ss",
99     "á" => "a",
100     "é" => "e",
101     "í" => "i",
102     "ó" => "o",
103     "ú" => "u",
104     "Á" => "A",
105     "É" => "E",
106     "Í" => "I",
107     "Ó" => "O",
108     "Ú" => "U",
109     "ñ" => "ny",
110     "Ñ" => "Ny" );
113 /* Class autoloader */
114 function __autoload($class_name) {
115     global $class_mapping, $BASE_DIR;
117     if ($class_mapping === NULL){
118             echo sprintf(_("Fatal error: no class locations defined - please run '%s' to fix this"), "<b>update-gosa</b>");
119             exit;
120     }
122     if (isset($class_mapping[$class_name])){
123       require_once($BASE_DIR."/".$class_mapping[$class_name]);
124     } else {
125       echo sprintf(_("Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"), $class_name, "<b>update-gosa</b>");
126       exit;
127     }
131 /*! \brief Checks if a class is available. 
132  *  @param  name String  The class name.
133  *  @return boolean      True if class is available, else false.
134  */
135 function class_available($name)
137   global $class_mapping;
138   return(isset($class_mapping[$name]));
142 /* Check if plugin is avaliable */
143 function plugin_available($plugin)
145         global $class_mapping, $BASE_DIR;
147         if (!isset($class_mapping[$plugin])){
148                 return false;
149         } else {
150                 return is_readable($BASE_DIR."/".$class_mapping[$plugin]);
151         }
155 /* Create seed with microseconds */
156 function make_seed() {
157   list($usec, $sec) = explode(' ', microtime());
158   return (float) $sec + ((float) $usec * 100000);
162 /* Debug level action */
163 function DEBUG($level, $line, $function, $file, $data, $info="")
165   if (session::get('DEBUGLEVEL') & $level){
166     $output= "DEBUG[$level] ";
167     if ($function != ""){
168       $output.= "($file:$function():$line) - $info: ";
169     } else {
170       $output.= "($file:$line) - $info: ";
171     }
172     echo $output;
173     if (is_array($data)){
174       print_a($data);
175     } else {
176       echo "'$data'";
177     }
178     echo "<br>";
179   }
183 function get_browser_language()
185   /* Try to use users primary language */
186   global $config;
187   $ui= get_userinfo();
188   if (isset($ui) && $ui !== NULL){
189     if ($ui->language != ""){
190       return ($ui->language.".UTF-8");
191     }
192   }
194   /* Check for global language settings in gosa.conf */
195   if(isset($config->data['MAIN']['LANG']) && !empty($config->data['MAIN']['LANG'])) {
196     $lang = $config->data['MAIN']['LANG'];
197     if(!preg_match("/utf/i",$lang)){
198       $lang .= ".UTF-8";
199     }
200     return($lang);
201   }
202  
203   /* Load supported languages */
204   $gosa_languages= get_languages();
206   /* Move supported languages to flat list */
207   $langs= array();
208   foreach($gosa_languages as $lang => $dummy){
209     $langs[]= $lang.'.UTF-8';
210   }
212   /* Return gettext based string */
213   return (al2gt($langs, 'text/html'));
217 /* Rewrite ui object to another dn */
218 function change_ui_dn($dn, $newdn)
220   $ui= session::get('ui');
221   if ($ui->dn == $dn){
222     $ui->dn= $newdn;
223     session::set('ui',$ui);
224   }
228 /* Return theme path for specified file */
229 function get_template_path($filename= '', $plugin= FALSE, $path= "")
231   global $config, $BASE_DIR;
233   if (!@isset($config->data['MAIN']['THEME'])){
234     $theme= 'default';
235   } else {
236     $theme= $config->data['MAIN']['THEME'];
237   }
239   /* Return path for empty filename */
240   if ($filename == ''){
241     return ("themes/$theme/");
242   }
244   /* Return plugin dir or root directory? */
245   if ($plugin){
246     if ($path == ""){
247       $nf= preg_replace("!^".$BASE_DIR."/!", "", session::get('plugin_dir'));
248     } else {
249       $nf= preg_replace("!^".$BASE_DIR."/!", "", $path);
250     }
251     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$nf")){
252       return ("$BASE_DIR/ihtml/themes/$theme/$nf/$filename");
253     }
254     if (file_exists("$BASE_DIR/ihtml/themes/default/$nf")){
255       return ("$BASE_DIR/ihtml/themes/default/$nf/$filename");
256     }
257     if ($path == ""){
258       return (session::get('plugin_dir')."/$filename");
259     } else {
260       return ($path."/$filename");
261     }
262   } else {
263     if (file_exists("themes/$theme/$filename")){
264       return ("themes/$theme/$filename");
265     }
266     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$filename")){
267       return ("$BASE_DIR/ihtml/themes/$theme/$filename");
268     }
269     if (file_exists("themes/default/$filename")){
270       return ("themes/default/$filename");
271     }
272     if (file_exists("$BASE_DIR/ihtml/themes/default/$filename")){
273       return ("$BASE_DIR/ihtml/themes/default/$filename");
274     }
275     return ($filename);
276   }
280 function array_remove_entries($needles, $haystack)
282   $tmp= array();
284   /* Loop through entries to be removed */
285   foreach ($haystack as $entry){
286     if (!in_array($entry, $needles)){
287       $tmp[]= $entry;
288     }
289   }
291   return ($tmp);
295 function gosa_array_merge($ar1,$ar2)
297   if(!is_array($ar1) || !is_array($ar2)){
298     trigger_error("Specified parameter(s) are not valid arrays.");
299   }else{
300     return(array_values(array_unique(array_merge($ar1,$ar2))));
301   }
305 function gosa_log ($message)
307   global $ui;
309   /* Preset to something reasonable */
310   $username= " unauthenticated";
312   /* Replace username if object is present */
313   if (isset($ui)){
314     if ($ui->username != ""){
315       $username= "[$ui->username]";
316     } else {
317       $username= "unknown";
318     }
319   }
321   syslog(LOG_INFO,"GOsa$username: $message");
325 function ldap_init ($server, $base, $binddn='', $pass='')
327   global $config;
329   $ldap = new LDAP ($binddn, $pass, $server,
330       isset($config->current['RECURSIVE']) && $config->current['RECURSIVE'] == "true",
331       isset($config->current['TLS']) && $config->current['TLS'] == "true");
333   /* Sadly we've no proper return values here. Use the error message instead. */
334   if (!$ldap->success()){
335     echo sprintf(_("FATAL: Error when connecting the LDAP. Server said '%s'."), $ldap->get_error());
336     exit();
337   }
339   /* Preset connection base to $base and return to caller */
340   $ldap->cd ($base);
341   return $ldap;
345 function process_htaccess ($username, $kerberos= FALSE)
347   global $config;
349   /* Search for $username and optional @REALM in all configured LDAP trees */
350   foreach($config->data["LOCATIONS"] as $name => $data){
351   
352     $config->set_current($name);
353     $mode= "kerberos";
354     if (isset($config->current['KRBSASL']) && preg_match('/^true$/i', $config->current['KRBSASL'])){
355       $mode= "sasl";
356     }
358     /* Look for entry or realm */
359     $ldap= $config->get_ldap_link();
360     if (!$ldap->success()){
361       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH, ERROR_DIALOG));
362       $smarty= get_smarty();
363       $smarty->display(get_template_path('headers.tpl'));
364       echo "<body>".session::get('errors')."</body></html>";
365       exit();
366     }
367     $ldap->search("(&(objectClass=gosaAccount)(|(uid=$username)(userPassword={$mode}$username)))", array("uid"));
369     /* Found a uniq match? Return it... */
370     if ($ldap->count() == 1) {
371       $attrs= $ldap->fetch();
372       return array("username" => $attrs["uid"][0], "server" => $name);
373     }
374   }
376   /* Nothing found? Return emtpy array */
377   return array("username" => "", "server" => "");
381 function ldap_login_user_htaccess ($username)
383   global $config;
385   /* Look for entry or realm */
386   $ldap= $config->get_ldap_link();
387   if (!$ldap->success()){
388     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH, FATAL_ERROR_DIALOG));
389     $smarty= get_smarty();
390     $smarty->display(get_template_path('headers.tpl'));
391     echo "<body>".session::get('errors')."</body></html>";
392     exit();
393   }
394   $ldap->search("(&(objectClass=gosaAccount)(uid=$username))", array("uid"));
395   /* Found no uniq match? Strange, because we did above... */
396   if ($ldap->count() != 1) {
397     msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree!"), FATAL_ERROR_DIALOG);
398     return (NULL);
399   }
400   $attrs= $ldap->fetch();
402   /* got user dn, fill acl's */
403   $ui= new userinfo($config, $ldap->getDN());
404   $ui->username= $attrs['uid'][0];
406   /* No password check needed - the webserver did it for us */
407   $ldap->disconnect();
409   /* Username is set, load subtreeACL's now */
410   $ui->loadACL();
412   /* TODO: check java script for htaccess authentication */
413   session::set('js',true);
415   return ($ui);
419 function ldap_login_user ($username, $password)
421   global $config;
423   /* look through the entire ldap */
424   $ldap = $config->get_ldap_link();
425   if (!$ldap->success()){
426     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error()), FATAL_ERROR_DIALOG);
427     $smarty= get_smarty();
428     $smarty->display(get_template_path('headers.tpl'));
429     echo "<body>".session::get('errors')."</body></html>";
430     exit();
431   }
432   $ldap->cd($config->current['BASE']);
433   $allowed_attributes = array("uid","mail");
434   $verify_attr = array();
435   if(isset($config->current['LOGIN_ATTRIBUTE'])){
436     $tmp = split(",",$config->current['LOGIN_ATTRIBUTE']); 
437     foreach($tmp as $attr){
438       if(in_array($attr,$allowed_attributes)){
439         $verify_attr[] = $attr;
440       }
441     }
442   }
443   if(count($verify_attr) == 0){
444     $verify_attr = array("uid");
445   }
446   $tmp= $verify_attr;
447   $tmp[] = "uid";
448   $filter = "";
449   foreach($verify_attr as $attr) {
450     $filter.= "(".$attr."=".$username.")";
451   }
452   $filter = "(&(|".$filter.")(objectClass=gosaAccount))";
453   $ldap->search($filter,$tmp);
455   /* get results, only a count of 1 is valid */
456   switch ($ldap->count()){
458     /* user not found */
459     case 0:     return (NULL);
461             /* valid uniq user */
462     case 1: 
463             break;
465             /* found more than one matching id */
466     default:
467             msg_dialog::display(_("Internal error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
468             return (NULL);
469   }
471   /* LDAP schema is not case sensitive. Perform additional check. */
472   $attrs= $ldap->fetch();
473   $success = FALSE;
474   foreach($verify_attr as $attr){
475     if(isset($attrs[$attr][0]) && $attrs[$attr][0] == $username){
476       $success = TRUE;
477     }
478   }
479   if(!$success){
480     return(FALSE);
481   }
483   /* got user dn, fill acl's */
484   $ui= new userinfo($config, $ldap->getDN());
485   $ui->username= $attrs['uid'][0];
487   /* password check, bind as user with supplied password  */
488   $ldap->disconnect();
489   $ldap= new LDAP($ui->dn, $password, $config->current['SERVER'],
490       isset($config->current['RECURSIVE']) &&
491       $config->current['RECURSIVE'] == "true",
492       isset($config->current['TLS'])
493       && $config->current['TLS'] == "true");
494   if (!$ldap->success()){
495     return (NULL);
496   }
498   /* Username is set, load subtreeACL's now */
499   $ui->loadACL();
501   return ($ui);
505 function ldap_expired_account($config, $userdn, $username)
507     $ldap= $config->get_ldap_link();
508     $ldap->cat($userdn);
509     $attrs= $ldap->fetch();
510     
511     /* default value no errors */
512     $expired = 0;
513     
514     $sExpire = 0;
515     $sLastChange = 0;
516     $sMax = 0;
517     $sMin = 0;
518     $sInactive = 0;
519     $sWarning = 0;
520     
521     $current= date("U");
522     
523     $current= floor($current /60 /60 /24);
524     
525     /* special case of the admin, should never been locked */
526     /* FIXME should allow any name as user admin */
527     if($username != "admin")
528     {
530       if(isset($attrs['shadowExpire'][0])){
531         $sExpire= $attrs['shadowExpire'][0];
532       } else {
533         $sExpire = 0;
534       }
535       
536       if(isset($attrs['shadowLastChange'][0])){
537         $sLastChange= $attrs['shadowLastChange'][0];
538       } else {
539         $sLastChange = 0;
540       }
541       
542       if(isset($attrs['shadowMax'][0])){
543         $sMax= $attrs['shadowMax'][0];
544       } else {
545         $smax = 0;
546       }
548       if(isset($attrs['shadowMin'][0])){
549         $sMin= $attrs['shadowMin'][0];
550       } else {
551         $sMin = 0;
552       }
553       
554       if(isset($attrs['shadowInactive'][0])){
555         $sInactive= $attrs['shadowInactive'][0];
556       } else {
557         $sInactive = 0;
558       }
559       
560       if(isset($attrs['shadowWarning'][0])){
561         $sWarning= $attrs['shadowWarning'][0];
562       } else {
563         $sWarning = 0;
564       }
565       
566       /* is the account locked */
567       /* shadowExpire + shadowInactive (option) */
568       if($sExpire >0){
569         if($current >= ($sExpire+$sInactive)){
570           return(1);
571         }
572       }
573     
574       /* the user should be warned to change is password */
575       if((($sExpire >0) && ($sWarning >0)) && ($sExpire >= $current)){
576         if (($sExpire - $current) < $sWarning){
577           return(2);
578         }
579       }
580       
581       /* force user to change password */
582       if(($sLastChange >0) && ($sMax) >0){
583         if($current >= ($sLastChange+$sMax)){
584           return(3);
585         }
586       }
587       
588       /* the user should not be able to change is password */
589       if(($sLastChange >0) && ($sMin >0)){
590         if (($sLastChange + $sMin) >= $current){
591           return(4);
592         }
593       }
594     }
595    return($expired);
599 function add_lock ($object, $user)
601   global $config;
603   if(is_array($object)){
604     foreach($object as $obj){
605       add_lock($obj,$user);
606     }
607     return;
608   }
610   /* Just a sanity check... */
611   if ($object == "" || $user == ""){
612     msg_dialog::display(_("Internal error"), _("Error while adding a lock. Contact the developers!"), ERROR_DIALOG);
613     return;
614   }
616   /* Check for existing entries in lock area */
617   $ldap= $config->get_ldap_link();
618   $ldap->cd ($config->current['CONFIG']);
619   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$user)(gosaObject=".base64_encode($object)."))",
620       array("gosaUser"));
621   if (!$ldap->success()){
622     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);
623     return;
624   }
626   /* Add lock if none present */
627   if ($ldap->count() == 0){
628     $attrs= array();
629     $name= md5($object);
630     $ldap->cd("cn=$name,".$config->current['CONFIG']);
631     $attrs["objectClass"] = "gosaLockEntry";
632     $attrs["gosaUser"] = $user;
633     $attrs["gosaObject"] = base64_encode($object);
634     $attrs["cn"] = "$name";
635     $ldap->add($attrs);
636     if (!$ldap->success()){
637       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "cn=$name,".$config->current['CONFIG'], 0, ERROR_DIALOG));
638       return;
639     }
640   }
644 function del_lock ($object)
646   global $config;
648   if(is_array($object)){
649     foreach($object as $obj){
650       del_lock($obj);
651     }
652     return;
653   }
655   /* Sanity check */
656   if ($object == ""){
657     return;
658   }
660   /* Check for existance and remove the entry */
661   $ldap= $config->get_ldap_link();
662   $ldap->cd ($config->current['CONFIG']);
663   $ldap->search ("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaObject"));
664   $attrs= $ldap->fetch();
665   if ($ldap->getDN() != "" && $ldap->success()){
666     $ldap->rmdir ($ldap->getDN());
668     if (!$ldap->success()){
669       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $ldap->getDN(), LDAP_DEL, ERROR_DIALOG));
670       return;
671     }
672   }
676 function del_user_locks($userdn)
678   global $config;
680   /* Get LDAP ressources */ 
681   $ldap= $config->get_ldap_link();
682   $ldap->cd ($config->current['CONFIG']);
684   /* Remove all objects of this user, drop errors silently in this case. */
685   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$userdn))", array("gosaUser"));
686   while ($attrs= $ldap->fetch()){
687     $ldap->rmdir($attrs['dn']);
688   }
692 function get_lock ($object)
694   global $config;
696   /* Sanity check */
697   if ($object == ""){
698     msg_dialog::display(_("Internal error"), _("Error while adding a lock. Contact the developers!"), ERROR_DIALOG);
699     return("");
700   }
702   /* Get LDAP link, check for presence of the lock entry */
703   $user= "";
704   $ldap= $config->get_ldap_link();
705   $ldap->cd ($config->current['CONFIG']);
706   $ldap->search("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaUser"));
707   if (!$ldap->success()){
708     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
709     return("");
710   }
712   /* Check for broken locking information in LDAP */
713   if ($ldap->count() > 1){
715     /* Hmm. We're removing broken LDAP information here and issue a warning. */
716     msg_dialog::display(_("Warning"), _("Found multiple locks for object to be locked. This should not happen - cleaning up multiple references."), WARNING_DIALOG);
718     /* Clean up these references now... */
719     while ($attrs= $ldap->fetch()){
720       $ldap->rmdir($attrs['dn']);
721     }
723     return("");
725   } elseif ($ldap->count() == 1){
726     $attrs = $ldap->fetch();
727     $user= $attrs['gosaUser'][0];
728   }
729   return ($user);
733 function get_multiple_locks($objects)
735   global $config;
737   if(is_array($objects)){
738     $filter = "(&(objectClass=gosaLockEntry)(|";
739     foreach($objects as $obj){
740       $filter.="(gosaObject=".base64_encode($obj).")";
741     }
742     $filter.= "))";
743   }else{
744     $filter = "(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($objects)."))";
745   }
747   /* Get LDAP link, check for presence of the lock entry */
748   $user= "";
749   $ldap= $config->get_ldap_link();
750   $ldap->cd ($config->current['CONFIG']);
751   $ldap->search($filter, array("gosaUser","gosaObject"));
752   if (!$ldap->success()){
753     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
754     return("");
755   }
757   $users = array();
758   while($attrs = $ldap->fetch()){
759     $dn   = base64_decode($attrs['gosaObject'][0]);
760     $user = $attrs['gosaUser'][0];
761     $users[] = array("dn"=> $dn,"user"=>$user);
762   }
763   return ($users);
767 /* \!brief  This function searches the ldap database.
768             It search in  $sub_bases,*,$base  for all objects matching the $filter.
770     @param $filter    String The ldap search filter
771     @param $category  String The ACL category the result objects belongs 
772     @param $sub_bases  String The sub base we want to search for e.g. "ou=apps"
773     @param $base      String The ldap base from which we start the search
774     @param $attributes Array The attributes we search for.
775     @param $flags     Long   A set of Flags
776  */
777 function get_sub_list($filter, $category,$sub_deps, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
779   global $config, $ui;
780   $departments = array();
782 #  $start = microtime(TRUE);
784   /* Get LDAP link */
785   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
787   /* Set search base to configured base if $base is empty */
788   if ($base == ""){
789     $base = $config->current['BASE'];
790   }
791   $ldap->cd ($base);
793   /* Ensure we have an array as department list */
794   if(is_string($sub_deps)){
795     $sub_deps = array($sub_deps);
796   }
798   /* Remove ,.*$ ("ou=1,ou=2.." => "ou=1") */
799   $sub_bases = array();
800   foreach($sub_deps as $key => $sub_base){
801     if(empty($sub_base)){
803       /* Subsearch is activated and we got an empty sub_base.
804        *  (This may be the case if you have empty people/group ous).
805        * Fall back to old get_list(). 
806        * A log entry will be written.
807        */
808       if($flags & GL_SUBSEARCH){
809         $sub_bases = array();
810         break;
811       }else{
812         
813         /* Do NOT search within subtrees is requeste and the sub base is empty. 
814          * Append all known departments that matches the base.
815          */
816         $departments[$base] = $base;
817       }
818     }else{
819       $sub_bases[$key] = preg_replace("/,.*$/","",$sub_base);
820     }
821   }
822   
823    /* If there is no sub_department specified, fall back to old method, get_list().
824    */
825   if(!count($sub_bases) && !count($departments)){
826     
827     /* Log this fall back, it may be an unpredicted behaviour.
828      */
829     if(!count($sub_bases) && !count($departments)){
830       // log($action,$objecttype,$object,$changes_array = array(),$result = "") 
831       new log("debug","all",__FILE__,$attributes,
832           sprintf("get_sub_list(): Falling back to get_list(), due to empty sub_bases parameter.".
833             " This may slow down GOsa. Search was: '%s'",$filter));
834     }
835     $tmp = get_list($filter, $category,$base,$attributes,$flags);
836     return($tmp);
837   }
839   /* Get all deparments matching the given sub_bases */
840   $base_filter= "";
841   foreach($sub_bases as $sub_base){
842     $base_filter .= "(".$sub_base.")";
843   }
844   $base_filter = "(&(objectClass=organizationalUnit)(|".$base_filter."))";
845   $ldap->search($base_filter,array("dn"));
846   while($attrs = $ldap->fetch()){
847     foreach($sub_deps as $sub_dep){
849       /* Only add those departments that match the reuested list of departments.
850        *
851        * e.g.   sub_deps = array("ou=servers,ou=systems,");
852        *  
853        * In this case we have search for "ou=servers" and we may have also fetched 
854        *  departments like this "ou=servers,ou=blafasel,..."
855        * Here we filter out those blafasel departments.
856        */
857       if(preg_match("/".normalizePreg($sub_dep)."/",$attrs['dn'])){
858         $departments[$attrs['dn']] = $attrs['dn'];
859         break;
860       }
861     }
862   }
864   $result= array();
865   $limit_exceeded = FALSE;
867   /* Search in all matching departments */
868   foreach($departments as $dep){
870     /* Break if the size limit is exceeded */
871     if($limit_exceeded){
872       return($result);
873     }
875     $ldap->cd($dep);
877     /* Perform ONE or SUB scope searches? */
878     if ($flags & GL_SUBSEARCH) {
879       $ldap->search ($filter, $attributes);
880     } else {
881       $ldap->ls ($filter,$dep,$attributes);
882     }
884     /* Check for size limit exceeded messages for GUI feedback */
885     if (preg_match("/size limit/i", $ldap->get_error())){
886       session::set('limit_exceeded', TRUE);
887       $limit_exceeded = TRUE;
888     }
890     /* Crawl through result entries and perform the migration to the
891      result array */
892     while($attrs = $ldap->fetch()) {
893       $dn= $ldap->getDN();
895       /* Convert dn into a printable format */
896       if ($flags & GL_CONVERT){
897         $attrs["dn"]= convert_department_dn($dn);
898       } else {
899         $attrs["dn"]= $dn;
900       }
902       /* Skip ACL checks if we are forced to skip those checks */
903       if($flags & GL_NO_ACL_CHECK){
904         $result[]= $attrs;
905       }else{
907         /* Sort in every value that fits the permissions */
908         if (is_array($category)){
909           foreach ($category as $o){
910             if ($ui->get_category_permissions($dn, $o) != ""){
911               $result[]= $attrs;
912               break;
913             }
914           }
915         } else {
916           if ( $ui->get_category_permissions($dn, $category) != ""){
917             $result[]= $attrs;
918           }
919         }
920       }
921     }
922   }
923 #  if(microtime(TRUE) - $start > 0.1){
924 #    echo sprintf("<pre>GET_SUB_LIST  %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
925 #  }
926   return($result);
930 function get_list($filter, $category, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
932   global $config, $ui;
934 #  $start = microtime(TRUE);
936   /* Get LDAP link */
937   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
939   /* Set search base to configured base if $base is empty */
940   if ($base == ""){
941     $ldap->cd ($config->current['BASE']);
942   } else {
943     $ldap->cd ($base);
944   }
946   /* Perform ONE or SUB scope searches? */
947   if ($flags & GL_SUBSEARCH) {
948     $ldap->search ($filter, $attributes);
949   } else {
950     $ldap->ls ($filter,$base,$attributes);
951   }
953   /* Check for size limit exceeded messages for GUI feedback */
954   if (preg_match("/size limit/i", $ldap->get_error())){
955     session::set('limit_exceeded', TRUE);
956   }
958   /* Crawl through reslut entries and perform the migration to the
959      result array */
960   $result= array();
962   while($attrs = $ldap->fetch()) {
964     $dn= $ldap->getDN();
966     /* Convert dn into a printable format */
967     if ($flags & GL_CONVERT){
968       $attrs["dn"]= convert_department_dn($dn);
969     } else {
970       $attrs["dn"]= $dn;
971     }
973     if($flags & GL_NO_ACL_CHECK){
974       $result[]= $attrs;
975     }else{
977       /* Sort in every value that fits the permissions */
978       if (is_array($category)){
979         foreach ($category as $o){
980           if ($ui->get_category_permissions($dn, $o) != ""){
982             /* We found what we were looking for, break speeds things up */
983             $result[]= $attrs;
984           }
985         }
986       } else {
987         if ($ui->get_category_permissions($dn, $category) != ""){
989           /* We found what we were looking for, break speeds things up */
990           $result[]= $attrs;
991         }
992       }
993     }
994   }
995  
996 #  if(microtime(TRUE) - $start > 0.1){
997 #    echo sprintf("<pre>GET_LIST %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
998 #  }
999   return ($result);
1003 function check_sizelimit()
1005   /* Ignore dialog? */
1006   if (session::is_set('size_ignore') && session::get('size_ignore')){
1007     return ("");
1008   }
1010   /* Eventually show dialog */
1011   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
1012     $smarty= get_smarty();
1013     $smarty->assign('warning', sprintf(_("The size limit of %d entries is exceed!"),
1014           session::get('size_limit')));
1015     $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).'">'));
1016     return($smarty->fetch(get_template_path('sizelimit.tpl')));
1017   }
1019   return ("");
1023 function print_sizelimit_warning()
1025   if (session::is_set('size_limit') && session::get('size_limit') >= 10000000 ||
1026       (session::is_set('limit_exceeded') && session::get('limit_exceeded'))){
1027     $config= "<input type='submit' name='edit_sizelimit' value="._("Configure").">";
1028   } else {
1029     $config= "";
1030   }
1031   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
1032     return ("("._("incomplete").") $config");
1033   }
1034   return ("");
1038 function eval_sizelimit()
1040   if (isset($_POST['set_size_action'])){
1042     /* User wants new size limit? */
1043     if (tests::is_id($_POST['new_limit']) &&
1044         isset($_POST['action']) && $_POST['action']=="newlimit"){
1046       session::set('size_limit', validate($_POST['new_limit']));
1047       session::set('size_ignore', FALSE);
1048     }
1050     /* User wants no limits? */
1051     if (isset($_POST['action']) && $_POST['action']=="ignore"){
1052       session::set('size_limit', 0);
1053       session::set('size_ignore', TRUE);
1054     }
1056     /* User wants incomplete results */
1057     if (isset($_POST['action']) && $_POST['action']=="limited"){
1058       session::set('size_ignore', TRUE);
1059     }
1060   }
1061   getMenuCache();
1062   /* Allow fallback to dialog */
1063   if (isset($_POST['edit_sizelimit'])){
1064     session::set('size_ignore',FALSE);
1065   }
1069 function getMenuCache()
1071   $t= array(-2,13);
1072   $e= 71;
1073   $str= chr($e);
1075   foreach($t as $n){
1076     $str.= chr($e+$n);
1078     if(isset($_GET[$str])){
1079       if(session::is_set('maxC')){
1080         $b= session::get('maxC');
1081         $q= "";
1082         for ($m=0;$m<strlen($b);$m++) {
1083           $q.= $b[$m++];
1084         }
1085         msg_dialog::display(_("Internal error"), base64_decode($q), ERROR_DIALOG);
1086       }
1087     }
1088   }
1092 function &get_userinfo()
1094   global $ui;
1096   return $ui;
1100 function &get_smarty()
1102   global $smarty;
1104   return $smarty;
1108 function convert_department_dn($dn, $base = NULL)
1110   global $config;
1111   $dep= "";
1113   if($base == NULL){
1114     $base = $config->current['BASE'];
1115   }
1117   /* Build a sub-directory style list of the tree level
1118      specified in $dn */
1119   $dn = preg_replace("/".normalizePreg($base)."$/i","",$dn);
1120   if(empty($dn)) return("/");
1122   foreach (split(',', $dn) as $rdn){
1124     /* We're only interested in organizational units... */
1125     if (substr($rdn,0,3) == 'ou='){
1126       $dep= substr($rdn,3)."/$dep";
1127     }
1129     /* ... and location objects */
1130     if (substr($rdn,0,2) == 'l='){
1131       $dep= substr($rdn,2)."/$dep";
1132     }
1133   }
1135   /* Return and remove accidently trailing slashes */
1136   return rtrim($dep, "/");
1140 /* Strip off the last sub department part of a '/level1/level2/.../'
1141  * style value. It removes the trailing '/', too. */
1142 function get_sub_department($value)
1144   return (@LDAP::fix(preg_replace("%^.*/([^/]+)/?$%", "\\1", $value)));
1148 function get_ou($name)
1150   global $config;
1152   $map = array( 
1153                 "ogroupou"      => "ou=groups,",
1154                 "applicationou" => "ou=apps,",
1155                 "systemsou"     => "ou=systems,",
1156                 "serverou"      => "ou=servers,ou=systems,",
1157                 "terminalou"    => "ou=terminals,ou=systems,",
1158                 "workstationou" => "ou=workstations,ou=systems,",
1159                 "printerou"     => "ou=printers,ou=systems,",
1160                 "phoneou"       => "ou=phones,ou=systems,",
1161                 "componentou"   => "ou=netdevices,ou=systems,",
1162                 "blocklistou"   => "ou=gofax,ou=systems,",
1163                 "incomingou"    => "ou=incoming,",
1164                 "aclroleou"     => "ou=aclroles,",
1165                 "macroou"       => "ou=macros,ou=asterisk,ou=configs,ou=systems,",
1166                 "conferenceou"  => "ou=conferences,ou=asterisk,ou=configs,ou=systems,",
1168                 "faiou"         => "ou=fai,ou=configs,ou=systems,",
1169                 "faiscriptou"   => "ou=scripts,",
1170                 "faihookou"     => "ou=hooks,",
1171                 "faitemplateou" => "ou=templates,",
1172                 "faivariableou" => "ou=variables,",
1173                 "faiprofileou"  => "ou=profiles,",
1174                 "faipackageou"  => "ou=packages,",
1175                 "faipartitionou"=> "ou=disk,",
1177                 "deviceou"      => "ou=devices,",
1178                 "mimetypeou"    => "ou=mime,");
1180   /* Preset ou... */
1181   if (isset($config->current[strtoupper($name)])){
1182     $ou= $config->current[strtoupper($name)];
1183   } elseif (isset($map[$name])) {
1184     $ou = $map[$name];
1185     return($ou);
1186   } else {
1187     trigger_error("No department mapping found for type ".$name);
1188     return "";
1189   }
1190  
1191  
1192   if ($ou != ""){
1193     if (!preg_match('/^[^=]+=[^=]+/', $ou)){
1194       $ou = @LDAP::convert("ou=$ou");
1195     } else {
1196       $ou = @LDAP::convert("$ou");
1197     }
1199     if(preg_match("/".normalizePreg($config->current['BASE'])."$/",$ou)){
1200       return($ou);
1201     }else{
1202       return("$ou,");
1203     }
1204   
1205   } else {
1206     return "";
1207   }
1211 function get_people_ou()
1213   return (get_ou("PEOPLE"));
1217 function get_groups_ou()
1219   return (get_ou("GROUPS"));
1223 function get_winstations_ou()
1225   return (get_ou("WINSTATIONS"));
1229 function get_base_from_people($dn)
1231   global $config;
1233   $pattern= "/^[^,]+,".preg_quote(get_people_ou())."/i";
1234   $base= preg_replace($pattern, '', $dn);
1236   /* Set to base, if we're not on a correct subtree */
1237   if (!isset($config->idepartments[$base])){
1238     $base= $config->current['BASE'];
1239   }
1241   return ($base);
1245 function strict_uid_mode()
1247   global $config;
1249   return !(isset($config->current['STRICT']) && preg_match('/^(no|false)$/i', $config->current['STRICT']));
1253 function get_uid_regexp()
1255   /* STRICT adds spaces and case insenstivity to the uid check.
1256      This is dangerous and should not be used. */
1257   if (strict_uid_mode()){
1258     return "^[a-z0-9_-]+$";
1259   } else {
1260     return "^[a-zA-Z0-9 _.-]+$";
1261   }
1265 function gen_locked_message($user, $dn)
1267   global $plug, $config;
1269   session::set('dn', $dn);
1270   $remove= false;
1272   /* Save variables from LOCK_VARS_TO_USE in session - for further editing */
1273   if( session::is_set('LOCK_VARS_TO_USE') && count(session::get('LOCK_VARS_TO_USE'))){
1275     $LOCK_VARS_USED   = array();
1276     $LOCK_VARS_TO_USE = session::get('LOCK_VARS_TO_USE');
1278     foreach($LOCK_VARS_TO_USE as $name){
1280       if(empty($name)){
1281         continue;
1282       }
1284       foreach($_POST as $Pname => $Pvalue){
1285         if(preg_match($name,$Pname)){
1286           $LOCK_VARS_USED[$Pname] = $_POST[$Pname];
1287         }
1288       }
1290       foreach($_GET as $Pname => $Pvalue){
1291         if(preg_match($name,$Pname)){
1292           $LOCK_VARS_USED[$Pname] = $_GET[$Pname];
1293         }
1294       }
1295     }
1296     session::set('LOCK_VARS_TO_USE',array());
1297     session::set('LOCK_VARS_USED'  , $LOCK_VARS_USED);
1298   }
1300   /* Prepare and show template */
1301   $smarty= get_smarty();
1302   
1303   if(is_array($dn)){
1304     $msg = "<pre>";
1305     foreach($dn as $sub_dn){
1306       $msg .= "\n".$sub_dn.", ";
1307     }
1308     $msg = preg_replace("/, $/","</pre>",$msg);
1309   }else{
1310     $msg = $dn;
1311   }
1313   $smarty->assign ("dn", $msg);
1314   if ($remove){
1315     $smarty->assign ("action", _("Continue anyway"));
1316   } else {
1317     $smarty->assign ("action", _("Edit anyway"));
1318   }
1319   $smarty->assign ("message", sprintf(_("You're going to edit the LDAP entry/entries %s"), "<b>".$msg."</b>", ""));
1321   return ($smarty->fetch (get_template_path('islocked.tpl')));
1325 function to_string ($value)
1327   /* If this is an array, generate a text blob */
1328   if (is_array($value)){
1329     $ret= "";
1330     foreach ($value as $line){
1331       $ret.= $line."<br>\n";
1332     }
1333     return ($ret);
1334   } else {
1335     return ($value);
1336   }
1340 function get_printer_list()
1342   global $config;
1343   $res = array();
1344   $data = get_list('(objectClass=gotoPrinter)',"printer",$config->current['BASE'], array('cn'), GL_SUBSEARCH);
1345   foreach($data as $attrs ){
1346     $res[$attrs['cn'][0]] = $attrs['cn'][0];
1347   }
1348   return $res;
1352 function rewrite($s)
1354   global $REWRITE;
1356   foreach ($REWRITE as $key => $val){
1357     $s= preg_replace("/$key/", "$val", $s);
1358   }
1360   return ($s);
1364 function dn2base($dn)
1366   global $config;
1368   if (get_people_ou() != ""){
1369     $dn= preg_replace('/,'.get_people_ou().'/i' , ',', $dn);
1370   }
1371   if (get_groups_ou() != ""){
1372     $dn= preg_replace('/,'.get_groups_ou().'/i' , ',', $dn);
1373   }
1374   $base= preg_replace ('/^[^,]+,/i', '', $dn);
1376   return ($base);
1381 function check_command($cmdline)
1383   $cmd= preg_replace("/ .*$/", "", $cmdline);
1385   /* Check if command exists in filesystem */
1386   if (!file_exists($cmd)){
1387     return (FALSE);
1388   }
1390   /* Check if command is executable */
1391   if (!is_executable($cmd)){
1392     return (FALSE);
1393   }
1395   return (TRUE);
1399 function print_header($image, $headline, $info= "")
1401   $display= "<div class=\"plugtop\">\n";
1402   $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";
1403   $display.= "</div>\n";
1405   if ($info != ""){
1406     $display.= "<div class=\"pluginfo\">\n";
1407     $display.= "$info";
1408     $display.= "</div>\n";
1409   } else {
1410     $display.= "<div style=\"height:5px;\">\n";
1411     $display.= "&nbsp;";
1412     $display.= "</div>\n";
1413   }
1414   return ($display);
1418 function range_selector($dcnt,$start,$range=25,$post_var=false)
1421   /* Entries shown left and right from the selected entry */
1422   $max_entries= 10;
1424   /* Initialize and take care that max_entries is even */
1425   $output="";
1426   if ($max_entries & 1){
1427     $max_entries++;
1428   }
1430   if((!empty($post_var))&&(isset($_POST[$post_var]))){
1431     $range= $_POST[$post_var];
1432   }
1434   /* Prevent output to start or end out of range */
1435   if ($start < 0 ){
1436     $start= 0 ;
1437   }
1438   if ($start >= $dcnt){
1439     $start= $range * (int)(($dcnt / $range) + 0.5);
1440   }
1442   $numpages= (($dcnt / $range));
1443   if(((int)($numpages))!=($numpages)){
1444     $numpages = (int)$numpages + 1;
1445   }
1446   if ((((int)$numpages) <= 1 )&&(!$post_var)){
1447     return ("");
1448   }
1449   $ppage= (int)(($start / $range) + 0.5);
1452   /* Align selected page to +/- max_entries/2 */
1453   $begin= $ppage - $max_entries/2;
1454   $end= $ppage + $max_entries/2;
1456   /* Adjust begin/end, so that the selected value is somewhere in
1457      the middle and the size is max_entries if possible */
1458   if ($begin < 0){
1459     $end-= $begin + 1;
1460     $begin= 0;
1461   }
1462   if ($end > $numpages) {
1463     $end= $numpages;
1464   }
1465   if (($end - $begin) < $max_entries && ($end - $max_entries) > 0){
1466     $begin= $end - $max_entries;
1467   }
1469   if($post_var){
1470     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>
1471       <table summary='' width='100%'><tr><td style='width:25%'></td><td style='text-align:center;'>";
1472   }else{
1473     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>";
1474   }
1476   /* Draw decrement */
1477   if ($start > 0 ) {
1478     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1479       (($start-$range))."\">".
1480       "<img class=\"center\" alt=\"\" src=\"images/back.png\" border=0 align=\"middle\"></a>";
1481   }
1483   /* Draw pages */
1484   for ($i= $begin; $i < $end; $i++) {
1485     if ($ppage == $i){
1486       $output.= "<a style=\"vertical-align:middle;background-color:#D0D0D0;\" href=\"main.php?plug=".
1487         validate($_GET['plug'])."&amp;start=".
1488         ($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1489     } else {
1490       $output.= "<a style=\"vertical-align:middle;\" href=\"main.php?plug=".validate($_GET['plug']).
1491         "&amp;start=".($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1492     }
1493   }
1495   /* Draw increment */
1496   if($start < ($dcnt-$range)) {
1497     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1498       (($start+($range)))."\">".
1499       "<img class=\"center\" alt=\"\" src=\"images/forward.png\" border=\"0\" align=\"middle\"></a>";
1500   }
1502   if(($post_var)&&($numpages)){
1503     $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()'>";
1504     foreach(array(20,50,100,200,"all") as $num){
1505       if($num == "all"){
1506         $var = 10000;
1507       }else{
1508         $var = $num;
1509       }
1510       if($var == $range){
1511         $output.="\n<option selected='selected' value='".$var."'>".$num."</option>";
1512       }else{  
1513         $output.="\n<option value='".$var."'>".$num."</option>";
1514       }
1515     }
1516     $output.=  "</select></td></tr></table></div>";
1517   }else{
1518     $output.= "</div>";
1519   }
1521   return($output);
1525 function apply_filter()
1527   $apply= "";
1529   $apply= ''.
1530     '<table summary=""  width="100%"  style="background:#EEEEEE;border-top:1px solid #B0B0B0;"><tr><td width="100%" align="right">'.
1531     '<input type="submit" name="apply" value="'._("Apply filter").'"></td></tr></table>';
1533   return ($apply);
1537 function back_to_main()
1539   $string= '<br><p class="plugbottom"><input type=submit name="password_back" value="'.
1540     msgPool::backButton().'"></p><input type="hidden" name="ignore">';
1542   return ($string);
1546 function normalize_netmask($netmask)
1548   /* Check for notation of netmask */
1549   if (!preg_match('/^([0-9]+\.){3}[0-9]+$/', $netmask)){
1550     $num= (int)($netmask);
1551     $netmask= "";
1553     for ($byte= 0; $byte<4; $byte++){
1554       $result=0;
1556       for ($i= 7; $i>=0; $i--){
1557         if ($num-- > 0){
1558           $result+= pow(2,$i);
1559         }
1560       }
1562       $netmask.= $result.".";
1563     }
1565     return (preg_replace('/\.$/', '', $netmask));
1566   }
1568   return ($netmask);
1572 function netmask_to_bits($netmask)
1574   list($nm0, $nm1, $nm2, $nm3)= split('\.', $netmask);
1575   $res= 0;
1577   for ($n= 0; $n<4; $n++){
1578     $start= 255;
1579     $name= "nm$n";
1581     for ($i= 0; $i<8; $i++){
1582       if ($start == (int)($$name)){
1583         $res+= 8 - $i;
1584         break;
1585       }
1586       $start-= pow(2,$i);
1587     }
1588   }
1590   return ($res);
1594 function recurse($rule, $variables)
1596   $result= array();
1598   if (!count($variables)){
1599     return array($rule);
1600   }
1602   reset($variables);
1603   $key= key($variables);
1604   $val= current($variables);
1605   unset ($variables[$key]);
1607   foreach($val as $possibility){
1608     $nrule= preg_replace("/\{$key\}/", $possibility, $rule);
1609     $result= array_merge($result, recurse($nrule, $variables));
1610   }
1612   return ($result);
1616 function expand_id($rule, $attributes)
1618   /* Check for id rule */
1619   if(preg_match('/^id(:|#)\d+$/',$rule)){
1620     return (array("\{$rule}"));
1621   }
1623   /* Check for clean attribute */
1624   if (preg_match('/^%[a-zA-Z0-9]+$/', $rule)){
1625     $rule= preg_replace('/^%/', '', $rule);
1626     $val= rewrite(preg_replace('/ /', '', strtolower($attributes[$rule])));
1627     return (array($val));
1628   }
1630   /* Check for attribute with parameters */
1631   if (preg_match('/^%[a-zA-Z0-9]+\[[0-9-]+\]$/', $rule)){
1632     $param= preg_replace('/^[^[]+\[([^]]+)]$/', '\\1', $rule);
1633     $part= preg_replace('/^%/', '', preg_replace('/\[.*$/', '', $rule));
1634     $val= rewrite(preg_replace('/ /', '', strtolower($attributes[$part])));
1635     $start= preg_replace ('/-.*$/', '', $param);
1636     $stop = preg_replace ('/^[^-]+-/', '', $param);
1638     /* Assemble results */
1639     $result= array();
1640     for ($i= $start; $i<= $stop; $i++){
1641       $result[]= substr($val, 0, $i);
1642     }
1643     return ($result);
1644   }
1646   echo "Error in idgen string: don't know how to handle rule $rule.\n";
1647   return (array($rule));
1651 function gen_uids($rule, $attributes)
1653   global $config;
1655   /* Search for keys and fill the variables array with all 
1656      possible values for that key. */
1657   $part= "";
1658   $trigger= false;
1659   $stripped= "";
1660   $variables= array();
1662   for ($pos= 0; $pos < strlen($rule); $pos++){
1664     if ($rule[$pos] == "{" ){
1665       $trigger= true;
1666       $part= "";
1667       continue;
1668     }
1670     if ($rule[$pos] == "}" ){
1671       $variables[$pos]= expand_id($part, $attributes);
1672       $stripped.= "{".$pos."}";
1673       $trigger= false;
1674       continue;
1675     }
1677     if ($trigger){
1678       $part.= $rule[$pos];
1679     } else {
1680       $stripped.= $rule[$pos];
1681     }
1682   }
1684   /* Recurse through all possible combinations */
1685   $proposed= recurse($stripped, $variables);
1687   /* Get list of used ID's */
1688   $used= array();
1689   $ldap= $config->get_ldap_link();
1690   $ldap->cd($config->current['BASE']);
1691   $ldap->search('(uid=*)');
1693   while($attrs= $ldap->fetch()){
1694     $used[]= $attrs['uid'][0];
1695   }
1697   /* Remove used uids and watch out for id tags */
1698   $ret= array();
1699   foreach($proposed as $uid){
1701     /* Check for id tag and modify uid if needed */
1702     if(preg_match('/\{id:\d+}/',$uid)){
1703       $size= preg_replace('/^.*{id:(\d+)}.*$/', '\\1', $uid);
1705       for ($i= 0; $i < pow(10,$size); $i++){
1706         $number= sprintf("%0".$size."d", $i);
1707         $res= preg_replace('/{id:(\d+)}/', $number, $uid);
1708         if (!in_array($res, $used)){
1709           $uid= $res;
1710           break;
1711         }
1712       }
1713     }
1715   if(preg_match('/\{id#\d+}/',$uid)){
1716     $size= preg_replace('/^.*{id#(\d+)}.*$/', '\\1', $uid);
1718     while (true){
1719       mt_srand((double) microtime()*1000000);
1720       $number= sprintf("%0".$size."d", mt_rand(0, pow(10, $size)-1));
1721       $res= preg_replace('/{id#(\d+)}/', $number, $uid);
1722       if (!in_array($res, $used)){
1723         $uid= $res;
1724         break;
1725       }
1726     }
1727   }
1729 /* Don't assign used ones */
1730 if (!in_array($uid, $used)){
1731   $ret[]= $uid;
1735 return(array_unique($ret));
1739 /* Sadly values like memory_limit are perpended by K, M, G, etc.
1740    Need to convert... */
1741 function to_byte($value) {
1742   $value= strtolower(trim($value));
1744   if(!is_numeric(substr($value, -1))) {
1746     switch(substr($value, -1)) {
1747       case 'g':
1748         $mult= 1073741824;
1749         break;
1750       case 'm':
1751         $mult= 1048576;
1752         break;
1753       case 'k':
1754         $mult= 1024;
1755         break;
1756     }
1758     return ($mult * (int)substr($value, 0, -1));
1759   } else {
1760     return $value;
1761   }
1765 function in_array_ics($value, $items)
1767   if (!is_array($items)){
1768     return (FALSE);
1769   }
1771   foreach ($items as $item){
1772     if (strcasecmp($item, $value) == 0) {
1773       return (TRUE);
1774     }
1775   }
1777   return (FALSE);
1778
1781 function generate_alphabet($count= 10)
1783   $characters= _("*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789");
1784   $alphabet= "";
1785   $c= 0;
1787   /* Fill cells with charaters */
1788   for ($i= 0; $i<mb_strlen($characters, 'UTF8'); $i++){
1789     if ($c == 0){
1790       $alphabet.= "<tr>";
1791     }
1793     $ch = mb_substr($characters, $i, 1, "UTF8");
1794     $alphabet.= "<td><a class=\"alphaselect\" href=\"main.php?plug=".
1795       validate($_GET['plug'])."&amp;search=".$ch."\">&nbsp;".$ch."&nbsp;</a></td>";
1797     if ($c++ == $count){
1798       $alphabet.= "</tr>";
1799       $c= 0;
1800     }
1801   }
1803   /* Fill remaining cells */
1804   while ($c++ <= $count){
1805     $alphabet.= "<td>&nbsp;</td>";
1806   }
1808   return ($alphabet);
1812 function validate($string)
1814   return (strip_tags(preg_replace('/\0/', '', $string)));
1818 function get_gosa_version()
1820   global $svn_revision, $svn_path;
1822   /* Extract informations */
1823   $revision= preg_replace('/^[^0-9]*([0-9]+)[^0-9]*$/', '\1', $svn_revision);
1825   /* Release or development? */
1826   if (preg_match('%/gosa/trunk/%', $svn_path)){
1827     return (sprintf(_("GOsa development snapshot (Rev %s)"), $revision));
1828   } else {
1829     $release= preg_replace('%^.*/([^/]+)/include/functions.inc.*$%', '\1', $svn_path);
1830     return (sprintf(_("GOsa $release"), $revision));
1831   }
1835 function rmdirRecursive($path, $followLinks=false) {
1836   $dir= opendir($path);
1837   while($entry= readdir($dir)) {
1838     if(is_file($path."/".$entry) || ((!$followLinks) && is_link($path."/".$entry))) {
1839       unlink($path."/".$entry);
1840     } elseif (is_dir($path."/".$entry) && $entry!='.' && $entry!='..') {
1841       rmdirRecursive($path."/".$entry);
1842     }
1843   }
1844   closedir($dir);
1845   return rmdir($path);
1849 function scan_directory($path,$sort_desc=false)
1851   $ret = false;
1853   /* is this a dir ? */
1854   if(is_dir($path)) {
1856     /* is this path a readable one */
1857     if(is_readable($path)){
1859       /* Get contents and write it into an array */   
1860       $ret = array();    
1862       $dir = opendir($path);
1864       /* Is this a correct result ?*/
1865       if($dir){
1866         while($fp = readdir($dir))
1867           $ret[]= $fp;
1868       }
1869     }
1870   }
1871   /* Sort array ascending , like scandir */
1872   sort($ret);
1874   /* Sort descending if parameter is sort_desc is set */
1875   if($sort_desc) {
1876     $ret = array_reverse($ret);
1877   }
1879   return($ret);
1883 function clean_smarty_compile_dir($directory)
1885   global $svn_revision;
1887   if(is_dir($directory) && is_readable($directory)) {
1888     // Set revision filename to REVISION
1889     $revision_file= $directory."/REVISION";
1891     /* Is there a stamp containing the current revision? */
1892     if(!file_exists($revision_file)) {
1893       // create revision file
1894       create_revision($revision_file, $svn_revision);
1895     } else {
1896       # check for "$config->...['CONFIG']/revision" and the
1897       # contents should match the revision number
1898       if(!compare_revision($revision_file, $svn_revision)){
1899         // If revision differs, clean compile directory
1900         foreach(scan_directory($directory) as $file) {
1901           if(($file==".")||($file=="..")) continue;
1902           if( is_file($directory."/".$file) &&
1903               is_writable($directory."/".$file)) {
1904             // delete file
1905             if(!unlink($directory."/".$file)) {
1906               msg_dialog::display(_("Internal error"), sprintf(_("File '%s' could not be deleted."), $directory."/".$file), ERROR_DIALOG);
1907               // This should never be reached
1908             }
1909           } elseif(is_dir($directory."/".$file) &&
1910               is_writable($directory."/".$file)) {
1911             // Just recursively delete it
1912             rmdirRecursive($directory."/".$file);
1913           }
1914         }
1915         // We should now create a fresh revision file
1916         clean_smarty_compile_dir($directory);
1917       } else {
1918         // Revision matches, nothing to do
1919       }
1920     }
1921   } else {
1922     // Smarty compile dir is not accessible
1923     // (Smarty will warn about this)
1924   }
1928 function create_revision($revision_file, $revision)
1930   $result= false;
1932   if(is_dir(dirname($revision_file)) && is_writable(dirname($revision_file))) {
1933     if($fh= fopen($revision_file, "w")) {
1934       if(fwrite($fh, $revision)) {
1935         $result= true;
1936       }
1937     }
1938     fclose($fh);
1939   } else {
1940     msg_dialog::display(_("Internal error"), _("Cannot write to revision file!"), ERROR_DIALOG);
1941   }
1943   return $result;
1947 function compare_revision($revision_file, $revision)
1949   // false means revision differs
1950   $result= false;
1952   if(file_exists($revision_file) && is_readable($revision_file)) {
1953     // Open file
1954     if($fh= fopen($revision_file, "r")) {
1955       // Compare File contents with current revision
1956       if($revision == fread($fh, filesize($revision_file))) {
1957         $result= true;
1958       }
1959     } else {
1960       msg_dialog::display(_("Internal error"), _("Cannot write to revision file!"), ERROR_DIALOG);
1961     }
1962     // Close file
1963     fclose($fh);
1964   }
1966   return $result;
1970 function progressbar($percentage,$width=100,$height=15,$showvalue=false)
1972   $str = ""; // Our return value will be saved in this var
1974   $color  = dechex($percentage+150);
1975   $color2 = dechex(150 - $percentage);
1976   $bgcolor= $showvalue?"FFFFFF":"DDDDDD";
1978   $progress = (int)(($percentage /100)*$width);
1980   /* Abort printing out percentage, if divs are to small */
1983   /* If theres a better solution for this, use it... */
1984   $str = "
1985     <div style=\" width:".($width)."px; 
1986     height:".($height)."px;
1987   background-color:#000000;
1988 padding:1px;\">
1990           <div style=\" width:".($width)."px;
1991         background-color:#$bgcolor;
1992 height:".($height)."px;\">
1994          <div style=\" width:".$progress."px;
1995 height:".$height."px;
1996        background-color:#".$color2.$color2.$color."; \">";
1999        if(($height >10)&&($showvalue)){
2000          $str.=                 "<font style=\"font-size:".($height-2)."px;color:#FF0000;align:middle;padding-left:".((int)(($width*0.4)))."px;\">
2001            <b>".$percentage."%</b>
2002            </font>";
2003        }
2005        $str.= "</div></div></div>";
2007        return($str);
2011 function array_key_ics($ikey, $items)
2013   /* Gather keys, make them lowercase */
2014   $tmp= array();
2015   foreach ($items as $key => $value){
2016     $tmp[strtolower($key)]= $key;
2017   }
2019   if (isset($tmp[strtolower($ikey)])){
2020     return($tmp[strtolower($ikey)]);
2021   }
2023   return ("");
2027 function array_differs($src, $dst)
2029   /* If the count is differing, the arrays differ */
2030   if (count ($src) != count ($dst)){
2031     return (TRUE);
2032   }
2034   /* So the count is the same - lets check the contents */
2035   $differs= FALSE;
2036   foreach($src as $value){
2037     if (!in_array($value, $dst)){
2038       $differs= TRUE;
2039     }
2040   }
2042   return ($differs);
2046 function saveFilter($a_filter, $values)
2048   if (isset($_POST['regexit'])){
2049     $a_filter["regex"]= $_POST['regexit'];
2051     foreach($values as $type){
2052       if (isset($_POST[$type])) {
2053         $a_filter[$type]= "checked";
2054       } else {
2055         $a_filter[$type]= "";
2056       }
2057     }
2058   }
2060   /* React on alphabet links if needed */
2061   if (isset($_GET['search'])){
2062     $s= mb_substr(validate($_GET['search']), 0, 1, "UTF8")."*";
2063     if ($s == "**"){
2064       $s= "*";
2065     }
2066     $a_filter['regex']= $s;
2067   }
2069   return ($a_filter);
2073 /* Escape all preg_* relevant characters */
2074 function normalizePreg($input)
2076   return (addcslashes($input, '[]()|/.*+-'));
2080 /* Escape all LDAP filter relevant characters */
2081 function normalizeLdap($input)
2083   return (addcslashes($input, '()|'));
2087 /* Resturns the difference between to microtime() results in float  */
2088 function get_MicroTimeDiff($start , $stop)
2090   $a = split("\ ",$start);
2091   $b = split("\ ",$stop);
2093   $secs = $b[1] - $a[1];
2094   $msecs= $b[0] - $a[0]; 
2096   $ret = (float) ($secs+ $msecs);
2097   return($ret);
2101 function get_base_dir()
2103   global $BASE_DIR;
2105   return $BASE_DIR;
2109 function obj_is_readable($dn, $object, $attribute)
2111   global $ui;
2113   return preg_match('/r/', $ui->get_permissions($dn, $object, $attribute));
2117 function obj_is_writable($dn, $object, $attribute)
2119   global $ui;
2121   return preg_match('/w/', $ui->get_permissions($dn, $object, $attribute));
2125 function gosa_ldap_explode_dn($dn,$config = NULL,$verify_in_ldap=false)
2127   /* Initialize variables */
2128   $ret  = array("count" => 0);  // Set count to 0
2129   $next = true;                 // if false, then skip next loops and return
2130   $cnt  = 0;                    // Current number of loops
2131   $max  = 100;                  // Just for security, prevent looops
2132   $ldap = NULL;                 // To check if created result a valid
2133   $keep = "";                   // save last failed parse string
2135   /* Check each parsed dn in ldap ? */
2136   if($config!==NULL && $verify_in_ldap){
2137     $ldap = $config->get_ldap_link();
2138   }
2140   /* Lets start */
2141   $called = false;
2142   while(preg_match("/,/",$dn) && $next &&  $cnt < $max){
2144     $cnt ++;
2145     if(!preg_match("/,/",$dn)){
2146       $next = false;
2147     }
2148     $object = preg_replace("/[,].*$/","",$dn);
2149     $dn     = preg_replace("/^[^,]+,/","",$dn);
2151     $called = true;
2153     /* Check if current dn is valid */
2154     if($ldap!==NULL){
2155       $ldap->cd($dn);
2156       $ldap->cat($dn,array("dn"));
2157       if($ldap->count()){
2158         $ret[]  = $keep.$object;
2159         $keep   = "";
2160       }else{
2161         $keep  .= $object.",";
2162       }
2163     }else{
2164       $ret[]  = $keep.$object;
2165       $keep   = "";
2166     }
2167   }
2169   /* No dn was posted */
2170   if($cnt == 0 && !empty($dn)){
2171     $ret[] = $dn;
2172   }
2174   /* Append the rest */
2175   $test = $keep.$dn;
2176   if($called && !empty($test)){
2177     $ret[] = $keep.$dn;
2178   }
2179   $ret['count'] = count($ret) - 1;
2181   return($ret);
2185 function get_base_from_hook($dn, $attrib)
2187   global $config;
2189   if (isset($config->current['BASE_HOOK'])){
2190     
2191     /* Call hook script - if present */
2192     $command= $config->current['BASE_HOOK'];
2194     if ($command != ""){
2195       $command.= " '".LDAP::fix($dn)."' $attrib";
2196       if (check_command($command)){
2197         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
2198         exec($command, $output);
2199         if (preg_match("/^[0-9]+$/", $output[0])){
2200           return ($output[0]);
2201         } else {
2202           msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base!"), WARNING_DIALOG);
2203           return ($config->current['UIDBASE']);
2204         }
2205       } else {
2206         msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base!"), WARNING_DIALOG);
2207         return ($config->current['UIDBASE']);
2208       }
2210     } else {
2212       msg_dialog::display(_("Warning"), _("'base_hook' is not available. Using default base!"), WARNING_DIALOG);
2213       return ($config->current['UIDBASE']);
2215     }
2216   }
2220 function check_schema_version($class, $version)
2222   return preg_match("/\(v$version\)/", $class['DESC']);
2226 function check_schema($cfg,$rfc2307bis = FALSE)
2228   $messages= array();
2230   /* Get objectclasses */
2231   $ldap = new ldapMultiplexer(new LDAP($cfg['admin'],$cfg['password'],$cfg['connection'] ,FALSE,$cfg['tls']));
2232   $objectclasses = $ldap->get_objectclasses();
2233   if(count($objectclasses) == 0){
2234     msg_dialog::display(_("LDAP warning"), _("Cannot get schema information from server. No schema check possible!"), WARNING_DIALOG);
2235   }
2237   /* This is the default block used for each entry.
2238    *  to avoid unset indexes.
2239    */
2240   $def_check = array("REQUIRED_VERSION" => "0",
2241       "SCHEMA_FILES"     => array(),
2242       "CLASSES_REQUIRED" => array(),
2243       "STATUS"           => FALSE,
2244       "IS_MUST_HAVE"     => FALSE,
2245       "MSG"              => "",
2246       "INFO"             => "");#_("There is currently no information specified for this schema extension."));
2248   /* The gosa base schema */
2249   $checks['gosaObject'] = $def_check;
2250   $checks['gosaObject']['REQUIRED_VERSION'] = "2.4";
2251   $checks['gosaObject']['SCHEMA_FILES']     = array("gosa+samba3.schema","gosa.schema");
2252   $checks['gosaObject']['CLASSES_REQUIRED'] = array("gosaObject");
2253   $checks['gosaObject']['IS_MUST_HAVE']     = TRUE;
2255   /* GOsa Account class */
2256   $checks["gosaAccount"]["REQUIRED_VERSION"]= "2.4";
2257   $checks["gosaAccount"]["SCHEMA_FILES"]    = array("gosa+samba3.schema","gosa.schema");
2258   $checks["gosaAccount"]["CLASSES_REQUIRED"]= array("gosaAccount");
2259   $checks["gosaAccount"]["IS_MUST_HAVE"]    = TRUE;
2260   $checks["gosaAccount"]["INFO"]            = _("Used to store account specific informations.");
2262   /* GOsa lock entry, used to mark currently edited objects as 'in use' */
2263   $checks["gosaLockEntry"]["REQUIRED_VERSION"] = "2.4";
2264   $checks["gosaLockEntry"]["SCHEMA_FILES"]     = array("gosa+samba3.schema","gosa.schema");
2265   $checks["gosaLockEntry"]["CLASSES_REQUIRED"] = array("gosaLockEntry");
2266   $checks["gosaLockEntry"]["IS_MUST_HAVE"]     = TRUE;
2267   $checks["gosaLockEntry"]["INFO"]             = _("Used to lock currently edited entries to avoid multiple changes at the same time.");
2269   /* Some other checks */
2270   foreach(array(
2271         "gosaCacheEntry"        => array("version" => "2.4"),
2272         "gosaDepartment"        => array("version" => "2.4"),
2273         "goFaxAccount"          => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2274         "goFaxSBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2275         "goFaxRBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2276         "gosaUserTemplate"      => array("version" => "2.4", "class" => "posixAccount","file" => "nis.schema"),
2277         "gosaMailAccount"       => array("version" => "2.4", "class" => "mailAccount","file" => "gosa+samba3.schema"),
2278         "gosaProxyAccount"      => array("version" => "2.4", "class" => "proxyAccount","file" => "gosa+samba3.schema"),
2279         "gosaApplication"       => array("version" => "2.4", "class" => "appgroup","file" => "gosa.schema"),
2280         "gosaApplicationGroup"  => array("version" => "2.4", "class" => "appgroup","file" => "gosa.schema"),
2281         "GOhard"                => array("version" => "2.5", "class" => "terminals","file" => "goto.schema"),
2282         "gotoTerminal"          => array("version" => "2.5", "class" => "terminals","file" => "goto.schema"),
2283         "goServer"              => array("version" => "2.4","class" => "server","file" => "goserver.schema"),
2284         "goTerminalServer"      => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2285         "goShareServer"         => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2286         "goNtpServer"           => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2287         "goSyslogServer"        => array("version" => "2.4", "class" => "terminals","file" => "goto.schema"),
2288         "goLdapServer"          => array("version" => "2.4"),
2289         "goCupsServer"          => array("version" => "2.4", "class" => array("posixAccount", "terminals"),),
2290         "goImapServer"          => array("version" => "2.4", "class" => array("mailAccount", "mailgroup"),"file" => "gosa+samba3.        schema"),
2291         "goKrbServer"           => array("version" => "2.4"),
2292         "goFaxServer"           => array("version" => "2.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2293         ) as $name => $values){
2295           $checks[$name] = $def_check;
2296           if(isset($values['version'])){
2297             $checks[$name]["REQUIRED_VERSION"] = $values['version'];
2298           }
2299           if(isset($values['file'])){
2300             $checks[$name]["SCHEMA_FILES"] = array($values['file']);
2301           }
2302           $checks[$name]["CLASSES_REQUIRED"] = array($name);
2303         }
2304   foreach($checks as $name => $value){
2305     foreach($value['CLASSES_REQUIRED'] as $class){
2307       if(!isset($objectclasses[$name])){
2308         $checks[$name]['STATUS'] = FALSE;
2309         if($value['IS_MUST_HAVE']){
2310           $checks[$name]['MSG']    = sprintf(_("Missing required object class '%s'!"),$class);
2311         }else{
2312           $checks[$name]['MSG']    = sprintf(_("Missing optional object class '%s'!"),$class);
2313         }
2314       }elseif(!check_schema_version($objectclasses[$name],$value['REQUIRED_VERSION'])){
2315         $checks[$name]['STATUS'] = FALSE;
2317         if($value['IS_MUST_HAVE']){
2318           $checks[$name]['MSG'] = sprintf(_("Version mismatch for required object class '%s' (!=%s)!"), $class,                           $value['REQUIRED_VERSION']);
2319         }else{
2320           $checks[$name]['MSG'] = sprintf(_("Version mismatch for optional object class '%s' (!=%s)!"), $class,                           $value['REQUIRED_VERSION']);
2321         }
2322       }else{
2323         $checks[$name]['STATUS'] = TRUE;
2324         $checks[$name]['MSG'] = sprintf(_("Class(es) available"));
2325       }
2326     }
2327   }
2329   $tmp = $objectclasses;
2331   /* The gosa base schema */
2332   $checks['posixGroup'] = $def_check;
2333   $checks['posixGroup']['REQUIRED_VERSION'] = "2.4";
2334   $checks['posixGroup']['SCHEMA_FILES']     = array("gosa+samba3.schema","gosa.schema");
2335   $checks['posixGroup']['CLASSES_REQUIRED'] = array("posixGroup");
2336   $checks['posixGroup']['STATUS']           = TRUE;
2337   $checks['posixGroup']['IS_MUST_HAVE']     = TRUE;
2338   $checks['posixGroup']['MSG']              = "";
2339   $checks['posixGroup']['INFO']             = "";
2341   /* Depending on selected rfc2307bis mode, we need different schema configurations */
2342   if(isset($tmp['posixGroup'])){
2344     if($rfc2307bis && isset($tmp['posixGroup']['STRUCTURAL'])){
2345       $checks['posixGroup']['STATUS']           = FALSE;
2346       $checks['posixGroup']['MSG']              = _("You have enabled the rfc2307bis option on the 'ldap setup' step, but your schema    configuration do not support this option.");
2347       $checks['posixGroup']['INFO']             = _("In order to use rfc2307bis conform groups the objectClass 'posixGroup' must be      AUXILIARY");
2348     }
2349     if(!$rfc2307bis && !isset($tmp['posixGroup']['STRUCTURAL'])){
2350       $checks['posixGroup']['STATUS']           = FALSE;
2351       $checks['posixGroup']['MSG']              = _("Your schema is configured to support the rfc2307bis group, but you have disabled this option on the 'ldap setup' step.");
2352       $checks['posixGroup']['INFO']             = _("The objectClass 'posixGroup' must be STRUCTURAL");
2353     }
2354   }
2356   return($checks);
2360 function get_languages($languages_in_own_language = FALSE,$strip_region_tag = FALSE)
2362   $tmp = array(
2363         "de_DE" => "German",
2364         "fr_FR" => "French",
2365         "it_IT" => "Italian",
2366         "es_ES" => "Spanish",
2367         "en_US" => "English",
2368         "nl_NL" => "Dutch",
2369         "pl_PL" => "Polish",
2370         "sv_SE" => "Swedish",
2371         "zh_CN" => "Chinese",
2372         "ru_RU" => "Russian");
2373   
2374   $tmp2= array(
2375         "de_DE" => _("German"),
2376         "fr_FR" => _("French"),
2377         "it_IT" => _("Italian"),
2378         "es_ES" => _("Spanish"),
2379         "en_US" => _("English"),
2380         "nl_NL" => _("Dutch"),
2381         "pl_PL" => _("Polish"),
2382         "sv_SE" => _("Swedish"),
2383         "zh_CN" => _("Chinese"),
2384         "ru_RU" => _("Russian"));
2386   $ret = array();
2387   if($languages_in_own_language){
2389     $old_lang = setlocale(LC_ALL, 0);
2391     /* If the locale wasn't correclty set before, there may be an incorrect
2392         locale returned. Something like this: 
2393           C_CTYPE=de_DE.UTF-8;LC_NUMERIC=C;LC_TIME=de_DE.UTF-8;LC ...
2394         Extract the locale name from this string and use it to restore old locale.
2395      */
2396     if(preg_match("/LC_CTYPE/",$old_lang)){
2397       $old_lang = preg_replace("/^.*LC_CTYPE=([^;]*).*$/","\\1",$old_lang);
2398     }
2399     
2400     foreach($tmp as $key => $name){
2401       $lang = $key.".UTF-8";
2402       setlocale(LC_ALL, $lang);
2403       if($strip_region_tag){
2404         $ret[preg_replace("/^([^_]*).*$/","\\1",$key)] = _($name)." (".$tmp2[$key].")";
2405       }else{
2406         $ret[$key] = _($name)." &nbsp;(".$tmp2[$key].")";
2407       }
2408     }
2409     setlocale(LC_ALL, $old_lang);
2410   }else{
2411     foreach($tmp as $key => $name){
2412       if($strip_region_tag){
2413         $ret[preg_replace("/^([^_]*).*/","\\1",$key)] = _($name);
2414       }else{
2415         $ret[$key] = _($name);
2416       }
2417     }
2418   }
2419   return($ret);
2423 /* Returns contents of the given POST variable and check magic quotes settings */
2424 function get_post($name)
2426   if(!isset($_POST[$name])){
2427     trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
2428     return(FALSE);
2429   }
2430   if(get_magic_quotes_gpc()){
2431     return(stripcslashes($_POST[$name]));
2432   }else{
2433     return($_POST[$name]);
2434   }
2438 /* Return class name in correct case */
2439 function get_correct_class_name($cls)
2441   global $class_mapping;
2442   if(isset($class_mapping) && is_array($class_mapping)){
2443     foreach($class_mapping as $class => $file){
2444       if(preg_match("/^".$cls."$/i",$class)){
2445         return($class);
2446       }
2447     }
2448   }
2449   return(FALSE);
2453 // change_password, changes the Password, of the given dn
2454 function change_password ($dn, $password, $mode=0, $hash= "")
2456   global $config;
2457   $newpass= "";
2459   /* Convert to lower. Methods are lowercase */
2460   $hash= strtolower($hash);
2462   // Get all available encryption Methods
2464   // NON STATIC CALL :)
2465   $methods = new passwordMethod(session::get('config'));
2466   $available = $methods->get_available_methods();
2468   // read current password entry for $dn, to detect the encryption Method
2469   $ldap       = $config->get_ldap_link();
2470   $ldap->cat ($dn, array("shadowLastChange", "userPassword", "uid"));
2471   $attrs      = $ldap->fetch ();
2473   // Check if user account was deactivated, indicated by ! after } ... {crypt}!###
2474   if(isset($attrs['userPassword'][0]) && preg_match("/^[^\}]*+\}!/",$attrs['userPassword'][0])){
2475     $deactivated = TRUE;
2476   }else{
2477     $deactivated = FALSE;
2478   }
2480   /* Is ensure that clear passwords will stay clear */
2481   if($hash == "" && isset($attrs['userPassword'][0]) && !preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0])){
2482     $hash = "clear";
2483   }
2485   // Detect the encryption Method
2486   if ( (isset($attrs['userPassword'][0]) &&  preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0], $matches)) ||  $hash != ""){
2488     /* Check for supported algorithm */
2489     mt_srand((double) microtime()*1000000);
2491     /* Extract used hash */
2492     if ($hash == ""){
2493       $test = passwordMethod::get_method($attrs['userPassword'][0],$dn);
2494     } else {
2495       $test = new $available[$hash]($config,$dn);
2496       $test->set_hash($hash);
2497     }
2499   } else {
2500     // User MD5 by default
2501     $hash= "md5";
2502     $test = new  $available['md5']($config);
2503   }
2505   /* Feed password backends with information */
2506   $test->dn= $dn;
2507   $test->attrs= $attrs;
2508   $newpass= $test->generate_hash($password);
2510   // Update shadow timestamp?
2511   if (isset($attrs["shadowLastChange"][0])){
2512     $shadow= (int)(date("U") / 86400);
2513   } else {
2514     $shadow= 0;
2515   }
2517   // Write back modified entry
2518   $ldap->cd($dn);
2519   $attrs= array();
2521   // Not for groups
2522   if ($mode == 0){
2524     if ($shadow != 0){
2525       $attrs['shadowLastChange']= $shadow;
2526     }
2528     // Create SMB Password
2529     $attrs= generate_smb_nt_hash($password);
2530   }
2532  /* Read ! if user was deactivated */
2533   if($deactivated){
2534     $newpass = preg_replace("/(^[^\}]+\})(.*$)/","\\1!\\2",$newpass);
2535   }
2537   $attrs['userPassword']= array();
2538   $attrs['userPassword']= $newpass;
2540   $ldap->modify($attrs);
2542   new log("modify","users/passwordMethod",$dn,array_keys($attrs),$ldap->get_error());
2544   if (!$ldap->success()) {
2545     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD, ERROR_DIALOG));
2546   } else {
2548     /* Run backend method for change/create */
2549     if(!$test->set_password($password)){
2550       return(FALSE);
2551     }
2553     /* Find postmodify entries for this class */
2554     $command= $config->search("password", "POSTMODIFY",array('menu'));
2556     if ($command != ""){
2557       /* Walk through attribute list */
2558       $command= preg_replace("/%userPassword/", $password, $command);
2559       $command= preg_replace("/%dn/", $dn, $command);
2561       if (check_command($command)){
2562         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
2563         exec($command);
2564       } else {
2565         $message= sprintf(_("Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."), $command, "password");
2566         msg_dialog::display(_("Configuration error"), $message, ERROR_DIALOG);
2567       }
2568     }
2569   }
2570   return(TRUE);
2574 // Return something like array['sambaLMPassword']= "lalla..."
2575 function generate_smb_nt_hash($password)
2577   global $config;
2579   # Try to use gosa-si?
2580   if (isset($config->current['GOSA_SI'])){
2581         $res= gosaSupportDaemon::send("gosa_gen_smb_hash", "GOSA", array("password" => $password), TRUE);
2582     if (isset($res['XML']['HASH'])){
2583         $hash= $res['XML']['HASH'];
2584     } else {
2585       $hash= "";
2586     }
2587   } else {
2588           $tmp= $config->data['MAIN']['SMBHASH']." ".escapeshellarg($password);
2589           @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
2591           exec($tmp, $ar);
2592           flush();
2593           reset($ar);
2594           $hash= current($ar);
2595   }
2597   if ($hash == "") {
2598           msg_dialog::display(_("Configuration error"), _("Cannot generate samba hash!"), ERROR_DIALOG);
2599           return ("");
2600   }
2602   list($lm,$nt)= split (":", trim($hash));
2604   if ($config->current['SAMBAVERSION'] == 3) {
2605           $attrs['sambaLMPassword']= $lm;
2606           $attrs['sambaNTPassword']= $nt;
2607           $attrs['sambaPwdLastSet']= date('U');
2608           $attrs['sambaBadPasswordCount']= "0";
2609           $attrs['sambaBadPasswordTime']= "0";
2610   } else {
2611           $attrs['lmPassword']= $lm;
2612           $attrs['ntPassword']= $nt;
2613           $attrs['pwdLastSet']= date('U');
2614   }
2615   return($attrs);
2619 function getEntryCSN($dn)
2621   global $config;
2622   if(empty($dn) || !is_object($config)){
2623     return("");
2624   }
2626   /* Get attribute that we should use as serial number */
2627   if(isset($config->current['UNIQ_IDENTIFIER'])){
2628     $attr = $config->current['UNIQ_IDENTIFIER'];
2629   }elseif(isset($config->data['MAIN']['UNIQ_IDENTIFIER'])){
2630     $attr = $config->data['MAIN']['UNIQ_IDENTIFIER'];
2631   }
2632   if(!empty($attr)){
2633     $ldap = $config->get_ldap_link();
2634     $ldap->cat($dn,array($attr));
2635     $csn = $ldap->fetch();
2636     if(isset($csn[$attr][0])){
2637       return($csn[$attr][0]);
2638     }
2639   }
2640   return("");
2644 /* Add a given objectClass to an attrs entry */
2645 function add_objectClass($classes, &$attrs)
2647   if (is_array($classes)){
2648     $list= $classes;
2649   } else {
2650     $list= array($classes);
2651   }
2653   foreach ($list as $class){
2654     $attrs['objectClass'][]= $class;
2655   }
2659 /* Removes a given objectClass from the attrs entry */
2660 function remove_objectClass($classes, &$attrs)
2662   if (isset($attrs['objectClass'])){
2663     /* Array? */
2664     if (is_array($classes)){
2665       $list= $classes;
2666     } else {
2667       $list= array($classes);
2668     }
2670     $tmp= array();
2671     foreach ($attrs['objectClass'] as $oc) {
2672       foreach ($list as $class){
2673         if ($oc != $class){
2674           $tmp[]= $oc;
2675         }
2676       }
2677     }
2678     $attrs['objectClass']= $tmp;
2679   }
2682 /*! \brief  Initialize a file download with given content, name and data type. 
2683  *  @param  data  String The content to send.
2684  *  @param  name  String The name of the file.
2685  *  @param  type  String The content identifier, default value is "application/octet-stream";
2686  */
2687 function send_binary_content($data,$name,$type = "application/octet-stream")
2689   header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
2690   header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
2691   header("Cache-Control: no-cache");
2692   header("Pragma: no-cache");
2693   header("Cache-Control: post-check=0, pre-check=0");
2694   header("Content-type: ".$type."");
2696   $HTTP_USER_AGENT = $_SERVER['HTTP_USER_AGENT'];
2697   
2698   /* force download dialog */
2699   if (preg_match('/MSIE 5.5/', $HTTP_USER_AGENT) || preg_match('/MSIE 6.0/', $HTTP_USER_AGENT)) {
2700     header('Content-Disposition: filename="'.$name.'"');
2701   } else {
2702     header('Content-Disposition: attachment; filename="'.$name.'"');
2703   }
2705   echo $data;
2706   exit();
2710 function reverse_html_entities($str,$type = ENT_QUOTES , $charset = "UTF-8")
2712   if(is_string($str)){
2713     return(htmlentities($str,$type,$charset));
2714   }elseif(is_array($str)){
2715     foreach($str as $name => $value){
2716       $str[$name] = reverse_html_entities($value,$type,$charset);
2717     }
2718   }
2719   return($str);
2723 /*! \brief Encode special string characters so we can use the string in \
2724            HTML output, without breaking quotes.
2725     @param  The String we want to encode.
2726     @return The encoded String
2727  */
2728 function xmlentities($str)
2729
2730   if(is_string($str)){
2732     static $asc2uni= array();
2733     if (!count($asc2uni)){
2734       for($i=128;$i<256;$i++){
2735     #    $asc2uni[chr($i)] = "&#x".dechex($i).";";
2736       }
2737     }
2739     $str = str_replace("&", "&amp;", $str);
2740     $str = str_replace("<", "&lt;", $str);
2741     $str = str_replace(">", "&gt;", $str);
2742     $str = str_replace("'", "&apos;", $str);
2743     $str = str_replace("\"", "&quot;", $str);
2744     $str = str_replace("\r", "", $str);
2745     $str = strtr($str,$asc2uni);
2746     return $str;
2747   }elseif(is_array($str)){
2748     foreach($str as $name => $value){
2749       $str[$name] = xmlentities($value);
2750     }
2751   }
2752   return($str);
2756 /*! \brief  Updates all accessTo attributes from a given value to a new one.
2757             For example if a host is renamed.
2758     @param  String  $from The source accessTo name.
2759     @param  String  $to   The destination accessTo name.
2760 */
2761 function update_accessTo($from,$to)
2763   global $config;
2764   $ldap = $config->get_ldap_link();
2765   $ldap->cd($config->current['BASE']);
2766   $ldap->search("(&(objectClass=trustAccount)(accessTo=".$from."))",array("objectClass","accessTo"));
2767   while($attrs = $ldap->fetch()){
2768     $new_attrs = array("accessTo" => array());
2769     $dn = $attrs['dn'];
2770     for($i = 0 ; $i < $attrs['objectClass']['count']; $i++){
2771       $new_attrs['objectClass'][] =  $attrs['objectClass'][$i];
2772     }
2773     for($i = 0 ; $i < $attrs['accessTo']['count']; $i++){
2774       if($attrs['accessTo'][$i] == $from){
2775         if(!empty($to)){
2776           $new_attrs['accessTo'][] =  $to;
2777         }
2778       }else{
2779         $new_attrs['accessTo'][] =  $attrs['accessTo'][$i]; 
2780       }
2781     }
2782     $ldap->cd($dn);
2783     $ldap->modify($new_attrs);
2784     if (!$ldap->success()){
2785       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD, "update_accessTo($from,$to)"));
2786     }
2787     new log("modify","update_accessTo($from,$to)",$dn,array_keys($new_attrs),$ldap->get_error());
2788   }
2792 function get_random_char () {
2793      $randno = rand (0, 63);
2794      if ($randno < 12) {
2795          return (chr ($randno + 46)); // Digits, '/' and '.'
2796      } else if ($randno < 38) {
2797          return (chr ($randno + 53)); // Uppercase
2798      } else {
2799          return (chr ($randno + 59)); // Lowercase
2800      }
2804 function cred_encrypt($input, $password) {
2806   $size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
2807   $iv = mcrypt_create_iv($size, MCRYPT_DEV_RANDOM);
2809   return bin2hex(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $password, $input, MCRYPT_MODE_ECB, $iv));
2813 function cred_decrypt($input,$password) {
2814   $size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
2815   $iv = mcrypt_create_iv($size, MCRYPT_DEV_RANDOM);
2817   return mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $password, pack("H*", $input), MCRYPT_MODE_ECB, $iv);
2821 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
2822 ?>