Code

Updated comment
[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: functions.inc 13100 2008-12-01 14:07:48Z hickert $$
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 /*! \file
24  * Common functions and named definitions. */
26 /* Configuration file location */
27 if(!isset($_SERVER['CONFIG_DIR'])){
28   define ("CONFIG_DIR", "/etc/gosa");
29 }else{
30   define ("CONFIG_DIR",$_SERVER['CONFIG_DIR']);
31 }
33 /* Allow setting the config file in the apache configuration
34     e.g.  SetEnv CONFIG_FILE gosa.conf.2.6
35  */
36 if(!isset($_SERVER['CONFIG_FILE'])){
37   define ("CONFIG_FILE", "gosa.conf");
38 }else{
39   define ("CONFIG_FILE",$_SERVER['CONFIG_FILE']);
40 }
42 /* Define common locatitions */
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$';
73 $svn_revision = '$Revision$';
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); /*! Debug level for tracing of common actions (save, check, etc.) */
82 define ("DEBUG_LDAP",    2); /*! Debug level for LDAP queries */
83 define ("DEBUG_MYSQL",   4); /*! Debug level for mysql operations */
84 define ("DEBUG_SHELL",   8); /*! Debug level for shell commands */
85 define ("DEBUG_POST",   16); /*! Debug level for POST content */
86 define ("DEBUG_SESSION",32); /*! Debug level for SESSION content */
87 define ("DEBUG_CONFIG", 64); /*! Debug level for CONFIG information */
88 define ("DEBUG_ACL",    128); /*! Debug level for ACL infos */
89 define ("DEBUG_SI",     256); /*! Debug level for communication with gosa-si */
90 define ("DEBUG_MAIL",   512); /*! Debug level for all about mail (mailAccounts, imap, sieve etc.) */
91 define ("DEBUG_FAI",   1024); // FAI (incomplete)
92 define ("DEBUG_RPC",   2048); /*! Debug level for communication with remote procedures */
94 // Define shadow states
95 define ("POSIX_ACCOUNT_EXPIRED", 1);
96 define ("POSIX_WARN_ABOUT_EXPIRATION", 2);
97 define ("POSIX_FORCE_PASSWORD_CHANGE", 4);
98 define ("POSIX_DISALLOW_PASSWORD_CHANGE", 8);
100 /* Rewrite german 'umlauts' and spanish 'accents'
101    to get better results */
102 $REWRITE= array( "ä" => "ae",
103     "ö" => "oe",
104     "ü" => "ue",
105     "Ä" => "Ae",
106     "Ö" => "Oe",
107     "Ü" => "Ue",
108     "ß" => "ss",
109     "á" => "a",
110     "é" => "e",
111     "í" => "i",
112     "ó" => "o",
113     "ú" => "u",
114     "Á" => "A",
115     "É" => "E",
116     "Í" => "I",
117     "Ó" => "O",
118     "Ú" => "U",
119     "ñ" => "ny",
120     "Ñ" => "Ny" );
123 /*! \brief Does autoloading for classes used in GOsa.
124  *
125  *  Takes the list generated by 'update-gosa' and loads the
126  *  file containing the requested class.
127  *
128  *  \param  string 'class_name' The currently requested class
129  */
130 function __gosa_autoload($class_name) {
131     global $class_mapping, $BASE_DIR;
133     if ($class_mapping === NULL){
134             echo sprintf(_("Fatal error: no class locations defined - please run %s to fix this"), bold("update-gosa"));
135             exit;
136     }
138     if (isset($class_mapping["$class_name"])){
139       require_once($BASE_DIR."/".$class_mapping["$class_name"]);
140     } else {
141       echo sprintf(_("Fatal error: cannot instantiate class %s - try running %s to fix this"), bold($class_name), bold("update-gosa"));
142       exit;
143     }
145 spl_autoload_register('__gosa_autoload');
148 /*! \brief Checks if a class is available. 
149  *  \param  string 'name' The subject of the test
150  *  \return boolean True if class is available, else false.
151  */
152 function class_available($name)
154   global $class_mapping, $config;
155     
156   $disabled = array();
157   if($config instanceOf config && $config->configRegistry instanceOf configRegistry){
158     $disabled = $config->configRegistry->getDisabledPlugins();
159   }
161   return(isset($class_mapping[$name]) && !isset($disabled[$name]));
165 /*! \brief Check if plugin is available
166  *
167  * Checks if a given plugin is available and readable.
168  *
169  * \param string 'plugin' the subject of the check
170  * \return boolean True if plugin is available, else FALSE.
171  */
172 function plugin_available($plugin)
174         global $class_mapping, $BASE_DIR;
176         if (!isset($class_mapping[$plugin])){
177                 return false;
178         } else {
179                 return is_readable($BASE_DIR."/".$class_mapping[$plugin]);
180         }
184 /*! \brief Create seed with microseconds 
185  *
186  * Example:
187  * \code
188  * srand(make_seed());
189  * $random = rand();
190  * \endcode
191  *
192  * \return float a floating point number which can be used to feed srand() with it
193  * */
194 function make_seed() {
195   list($usec, $sec) = explode(' ', microtime());
196   return (float) $sec + ((float) $usec * 100000);
200 /*! \brief Debug level action 
201  *
202  * Print a DEBUG level if specified debug level of the level matches the 
203  * the configured debug level.
204  *
205  * \param int 'level' The log level of the message (should use the constants,
206  * defined in functions.in (DEBUG_TRACE, DEBUG_LDAP, etc.)
207  * \param int 'line' Define the line of the logged action (using __LINE__ is common)
208  * \param string 'function' Define the function where the logged action happened in
209  * (using __FUNCTION__ is common)
210  * \param string 'file' Define the file where the logged action happend in
211  * (using __FILE__ is common)
212  * \param mixed 'data' The data to log. Can be a message or an array, which is printed
213  * with print_a
214  * \param string 'info' Optional: Additional information
215  *
216  * */
217 function DEBUG($level, $line, $function, $file, $data, $info="")
219     global $config;
220     $debugLevel = 0;
221     if($config instanceOf config){
222         $debugLevel = $config->get_cfg_value('core', 'debugLevel');
223     }
224     if ($debugLevel & $level){
225         $output= "DEBUG[$level] ";
226         if ($function != ""){
227             $output.= "($file:$function():$line) - $info: ";
228         } else {
229             $output.= "($file:$line) - $info: ";
230         }
231         echo $output;
232         if (is_array($data)){
233             print_a($data);
234         } else {
235             echo "'$data'";
236         }
237         echo "<br>";
238     }
242 /*! \brief Determine which language to show to the user
243  *
244  * Determines which language should be used to present gosa content
245  * to the user. It does so by looking at several possibilites and returning
246  * the first setting that can be found.
247  *
248  * -# Language configured by the user
249  * -# Global configured language
250  * -# Language as returned by al2gt (as configured in the browser)
251  *
252  * \return string gettext locale string
253  */
254 function get_browser_language()
256   /* Try to use users primary language */
257   global $config;
258   $ui= get_userinfo();
259   if (isset($ui) && $ui !== NULL){
260     if ($ui->language != ""){
261       return ($ui->language.".UTF-8");
262     }
263   }
265   /* Check for global language settings in gosa.conf */
266   if (isset ($config) && $config->get_cfg_value("core",'language') != ""){
267     $lang = $config->get_cfg_value("core",'language');
268     if(!preg_match("/utf/i",$lang)){
269       $lang .= ".UTF-8";
270     }
271     return($lang);
272   }
273  
274   /* Load supported languages */
275   $gosa_languages= get_languages();
277   /* Move supported languages to flat list */
278   $langs= array();
279   foreach($gosa_languages as $lang => $dummy){
280     $langs[]= $lang.'.UTF-8';
281   }
283   /* Return gettext based string */
284   return (al2gt($langs, 'text/html'));
288 /*! \brief Rewrite ui object to another dn 
289  *
290  * Usually used when a user is renamed. In this case the dn
291  * in the user object must be updated in order to point
292  * to the correct DN.
293  *
294  * \param string 'dn' the old DN
295  * \param string 'newdn' the new DN
296  * */
297 function change_ui_dn($dn, $newdn)
299   $ui= session::global_get('ui');
300   if ($ui->dn == $dn){
301     $ui->dn= $newdn;
302     session::global_set('ui',$ui);
303   }
307 /*! \brief Return themed path for specified base file
308  *
309  *  Depending on its parameters, this function returns the full
310  *  path of a template file. First match wins while searching
311  *  in this order:
312  *
313  *  - load theme depending file
314  *  - load global theme depending file
315  *  - load default theme file
316  *  - load global default theme file
317  *
318  *  \param  string 'filename' The base file name
319  *  \param  boolean 'plugin' Flag to take the plugin directory as search base
320  *  \param  string 'path' User specified path to take as search base
321  *  \return string Full path to the template file
322  */
323 function get_template_path($filename= '', $plugin= FALSE, $path= "")
325   global $config, $BASE_DIR;
327   /* Set theme */
328   if (isset ($config)){
329         $theme= $config->get_cfg_value("core","theme");
330   } else {
331         $theme= "default";
332   }
334   /* Return path for empty filename */
335   if ($filename == ''){
336     return ("themes/$theme/");
337   }
339   /* Return plugin dir or root directory? */
340   if ($plugin){
341     if ($path == ""){
342       $nf= preg_replace("!^".$BASE_DIR."/!", "", preg_replace('/^\.\.\//', '', session::global_get('plugin_dir')));
343     } else {
344       $nf= preg_replace("!^".$BASE_DIR."/!", "", $path);
345     }
346     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$nf")){
347       return ("$BASE_DIR/ihtml/themes/$theme/$nf/$filename");
348     }
349     if (file_exists("$BASE_DIR/ihtml/themes/default/$nf")){
350       return ("$BASE_DIR/ihtml/themes/default/$nf/$filename");
351     }
352     if ($path == ""){
353       return (session::global_get('plugin_dir')."/$filename");
354     } else {
355       return ($path."/$filename");
356     }
357   } else {
358     if (file_exists("themes/$theme/$filename")){
359       return ("themes/$theme/$filename");
360     }
361     if (file_exists("$BASE_DIR/ihtml/themes/$theme/$filename")){
362       return ("$BASE_DIR/ihtml/themes/$theme/$filename");
363     }
364     if (file_exists("themes/default/$filename")){
365       return ("themes/default/$filename");
366     }
367     if (file_exists("$BASE_DIR/ihtml/themes/default/$filename")){
368       return ("$BASE_DIR/ihtml/themes/default/$filename");
369     }
370     return ($filename);
371   }
375 /*! \brief Remove multiple entries from an array
376  *
377  * Removes every element that is in $needles from the
378  * array given as $haystack
379  *
380  * \param array 'needles' array of the entries to remove
381  * \param array 'haystack' original array to remove the entries from
382  */
383 function array_remove_entries($needles, $haystack)
385   return (array_merge(array_diff($haystack, $needles)));
389 /*! \brief Remove multiple entries from an array (case-insensitive)
390  *
391  * Same as array_remove_entries(), but case-insensitive. */
392 function array_remove_entries_ics($needles, $haystack)
394   // strcasecmp will work, because we only compare ASCII values here
395   return (array_merge(array_udiff($haystack, $needles, 'strcasecmp')));
399 /*! Merge to array but remove duplicate entries
400  *
401  * Merges two arrays and removes duplicate entries. Triggers
402  * an error if first or second parametre is not an array.
403  *
404  * \param array 'ar1' first array
405  * \param array 'ar2' second array-
406  * \return array
407  */
408 function gosa_array_merge($ar1,$ar2)
410   if(!is_array($ar1) || !is_array($ar2)){
411     trigger_error("Specified parameter(s) are not valid arrays.");
412   }else{
413     return(array_values(array_unique(array_merge($ar1,$ar2))));
414   }
418 /*! \brief Generate a system log info
419  *
420  * Creates a syslog message, containing user information.
421  *
422  * \param string 'message' the message to log
423  * */
424 function gosa_log ($message)
426   global $ui;
428   /* Preset to something reasonable */
429   $username= "[unauthenticated]";
431   /* Replace username if object is present */
432   if (isset($ui)){
433     if ($ui->username != ""){
434       $username= "[$ui->username]";
435     } else {
436       $username= "[unknown]";
437     }
438   }
440   syslog(LOG_INFO,"GOsa$username: $message");
444 /*! \brief Initialize a LDAP connection
445  *
446  * Initializes a LDAP connection. 
447  *
448  * \param string 'server'
449  * \param string 'base'
450  * \param string 'binddn' Default: empty
451  * \param string 'pass' Default: empty
452  *
453  * \return LDAP object
454  */
455 function ldap_init ($server, $base, $binddn='', $pass='')
457   global $config;
459   $ldap = new LDAP ($binddn, $pass, $server,
460       isset($config->current['LDAPFOLLOWREFERRALS']) && $config->current['LDAPFOLLOWREFERRALS'] == "true",
461       isset($config->current['LDAPTLS']) && $config->current['LDAPTLS'] == "true");
463   /* Sadly we've no proper return values here. Use the error message instead. */
464   if (!$ldap->success()){
465     msg_dialog::display(_("Fatal error"),
466         sprintf(_("Error while connecting to LDAP: %s"), $ldap->get_error()),
467         FATAL_ERROR_DIALOG);
468     exit();
469   }
471   /* Preset connection base to $base and return to caller */
472   $ldap->cd ($base);
473   return $ldap;
477 /* \brief Process htaccess authentication */
478 function process_htaccess ($username, $kerberos= FALSE)
480   global $config;
482   /* Search for $username and optional @REALM in all configured LDAP trees */
483   foreach($config->data["LOCATIONS"] as $name => $data){
484   
485     $config->set_current($name);
486     $mode= "kerberos";
487     if ($config->get_cfg_value("core","useSaslForKerberos") == "true"){
488       $mode= "sasl";
489     }
491     /* Look for entry or realm */
492     $ldap= $config->get_ldap_link();
493     if (!$ldap->success()){
494       msg_dialog::display(_("LDAP error"), 
495           msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH)."<br><br>".session::get('errors'), 
496           FATAL_ERROR_DIALOG);
497       exit();
498     }
499     $ldap->search("(&(objectClass=gosaAccount)(|(uid=$username)(userPassword={$mode}$username)))", array("uid"));
501     /* Found a uniq match? Return it... */
502     if ($ldap->count() == 1) {
503       $attrs= $ldap->fetch();
504       return array("username" => $attrs["uid"][0], "server" => $name);
505     }
506   }
508   /* Nothing found? Return emtpy array */
509   return array("username" => "", "server" => "");
513 /*! \brief Verify user login against htaccess
514  *
515  * Checks if the specified username is available in apache, maps the user
516  * to an LDAP user. The password has been checked by apache already.
517  *
518  * \param string 'username'
519  * \return
520  *  - TRUE on SUCCESS, NULL or FALSE on error
521  */
522 function ldap_login_user_htaccess ($username)
524   global $config;
526   /* Look for entry or realm */
527   $ldap= $config->get_ldap_link();
528   if (!$ldap->success()){
529     msg_dialog::display(_("LDAP error"), 
530         msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH)."<br><br>".session::get('errors'), 
531         FATAL_ERROR_DIALOG);
532     exit();
533   }
534   $ldap->search("(&(objectClass=gosaAccount)(uid=$username))", array("uid"));
535   /* Found no uniq match? Strange, because we did above... */
536   if ($ldap->count() != 1) {
537     msg_dialog::display(_("LDAP error"), _("User ID is not unique!"), FATAL_ERROR_DIALOG);
538     return (NULL);
539   }
540   $attrs= $ldap->fetch();
542   /* got user dn, fill acl's */
543   $ui= new userinfo($config, $ldap->getDN());
544   $ui->username= $attrs['uid'][0];
546   /* Bail out if we have login restrictions set, for security reasons
547      the message is the same than failed user/pw */
548   if (!$ui->loginAllowed()){
549     new log("security","login","",array(),"Login restriction for user \"$username\", login not permitted");
550     return (NULL);
551   }
553   /* No password check needed - the webserver did it for us */
554   $ldap->disconnect();
556   /* Username is set, load subtreeACL's now */
557   $ui->loadACL();
559   /* TODO: check java script for htaccess authentication */
560   session::global_set('js', true);
562   return ($ui);
566 /*! \brief Verify user login against LDAP directory
567  *
568  * Checks if the specified username is in the LDAP and verifies if the
569  * password is correct by binding to the LDAP with the given credentials.
570  *
571  * \param string 'username'
572  * \param string 'password'
573  * \return
574  *  - TRUE on SUCCESS, NULL or FALSE on error
575  */
576 function ldap_login_user ($username, $password)
578   global $config;
580   /* look through the entire ldap */
581   $ldap = $config->get_ldap_link();
582   if (!$ldap->success()){
583     msg_dialog::display(_("LDAP error"), 
584         msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH)."<br><br>".session::get('errors'), 
585         FATAL_ERROR_DIALOG);
586     exit();
587   }
588   $ldap->cd($config->current['BASE']);
589   $allowed_attributes = array("uid","mail");
590   $verify_attr = array();
591   if($config->get_cfg_value("core","loginAttribute") != ""){
592     $tmp = explode(",", $config->get_cfg_value("core","loginAttribute")); 
593     foreach($tmp as $attr){
594       if(in_array($attr,$allowed_attributes)){
595         $verify_attr[] = $attr;
596       }
597     }
598   }
599   if(count($verify_attr) == 0){
600     $verify_attr = array("uid");
601   }
602   $tmp= $verify_attr;
603   $tmp[] = "uid";
604   $filter = "";
605   foreach($verify_attr as $attr) {
606     $filter.= "(".$attr."=".$username.")";
607   }
608   $filter = "(&(|".$filter.")(objectClass=gosaAccount))";
609   $ldap->search($filter,$tmp);
611   /* get results, only a count of 1 is valid */
612   switch ($ldap->count()){
614     /* user not found */
615     case 0:     return (NULL);
617             /* valid uniq user */
618     case 1: 
619             break;
621             /* found more than one matching id */
622     default:
623             msg_dialog::display(_("Internal error"), _("User ID is not unique!"), FATAL_ERROR_DIALOG);
624             return (NULL);
625   }
627   /* LDAP schema is not case sensitive. Perform additional check. */
628   $attrs= $ldap->fetch();
629   $success = FALSE;
630   foreach($verify_attr as $attr){
631     if(isset($attrs[$attr][0]) && $attrs[$attr][0] == $username){
632       $success = TRUE;
633     }
634   }
635   if(!$success){
636     return(FALSE);
637   }
639   /* got user dn, fill acl's */
640   $ui= new userinfo($config, $ldap->getDN());
641   $ui->username= $attrs['uid'][0];
643   /* Bail out if we have login restrictions set, for security reasons
644      the message is the same than failed user/pw */
645   if (!$ui->loginAllowed()){
646     new log("security","login","",array(),"Login restriction for user \"$username\", login not permitted");
647     return (NULL);
648   }
650   /* password check, bind as user with supplied password  */
651   $ldap->disconnect();
652   $ldap= new LDAP($ui->dn, $password, $config->current['SERVER'],
653       isset($config->current['LDAPFOLLOWREFERRALS']) &&
654       $config->current['LDAPFOLLOWREFERRALS'] == "true",
655       isset($config->current['LDAPTLS'])
656       && $config->current['LDAPTLS'] == "true");
657   if (!$ldap->success()){
658     return (NULL);
659   }
661   /* Username is set, load subtreeACL's now */
662   $ui->loadACL();
664   return ($ui);
668 /*! \brief      Checks the posixAccount status by comparing the shadow attributes.
669  *
670  * @param Object    The GOsa configuration object.
671  * @param String    The 'dn' of the user to test the account status for.
672  * @param String    The 'uid' of the user we're going to test.
673  * @return Const
674  *                  POSIX_ACCOUNT_EXPIRED           - If the account is expired.
675  *                  POSIX_WARN_ABOUT_EXPIRATION     - If the account is going to expire.
676  *                  POSIX_FORCE_PASSWORD_CHANGE     - The password has to be changed.
677  *                  POSIX_DISALLOW_PASSWORD_CHANGE  - The password cannot be changed right now.
678  *
679  *
680  *
681  *      shadowLastChange
682  *      |
683  *      |---- shadowMin --->    |       <-- shadowMax --
684  *      |                       |       |
685  *      |------- shadowWarning ->       |
686  *                                      |-- shadowInactive --> DEACTIVATED
687  *                                      |
688  *                                      EXPIRED
689  *
690  */
691 function ldap_expired_account($config, $userdn, $uid)
693     // Skip this for the admin account, we do not want to lock him out.
694     if($uid == 'admin') return(0);
696     $ldap= $config->get_ldap_link();
697     $ldap->cd($config->current['BASE']);
698     $ldap->cat($userdn);
699     $attrs= $ldap->fetch();
700     $current= floor(date("U") /60 /60 /24);
702     // Fetch required attributes
703     foreach(array('shadowExpire','shadowLastChange','shadowMax','shadowMin',
704                 'shadowInactive','shadowWarning') as $attr){
705         $$attr = (isset($attrs[$attr][0]))? $attrs[$attr][0] : null;
706     }
709     // Check if the account has expired.
710     // ---------------------------------
711     // An account is locked/expired once its expiration date has reached (shadowExpire).
712     // If the optional attribute (shadowInactive) is set, we've to postpone
713     //  the account expiration by the amount of days specified in (shadowInactive).
714     if($shadowExpire != null && $shadowExpire >= $current){
716         // The account seems to be expired, but we've to check 'shadowInactive' additionally.
717         // ShadowInactive specifies an amount of days we've to reprieve the user.
718         // It some kind of x days' grace.
719         if($shadowInactive == null || $current > $shadowExpire + $shadowInactive){
721             // Finally we've detect that the account is deactivated.
722             return(POSIX_ACCOUNT_EXPIRED);
723         }
724     }
726     // The users password is going to expire.
727     // --------------------------------------
728     // We've to warn the user in the case of an expiring account.
729     // An account is going to expire when it reaches its expiration date (shadowExpire).
730     // The user has to be warned, if the days left till expiration, match the
731     //  configured warning period (shadowWarning)
732     // --> shadowWarning: Warn x days before account expiration.
733     if($shadowExpire != null && $shadowWarning != null){
735         // Check if the account is still active and not already expired.
736         if($shadowExpire >= $current){
738             // Check if we've to warn the user by comparing the remaining
739             //  number of days till expiration with the configured amount
740             //  of days in shadowWarning.
741             if(($shadowExpire - $current) <= $shadowWarning){
742                 return(POSIX_WARN_ABOUT_EXPIRATION);
743             }
744         }
745     }
747     // -- I guess this is the correct detection, isn't it? 
748     if($shadowLastChange != null && $shadowWarning != null && $shadowMax != null){
749         $daysRemaining = ($shadowLastChange + $shadowMax) - $current ;
750         if($daysRemaining > 0 && $daysRemaining <= $shadowWarning){
751                 return(POSIX_WARN_ABOUT_EXPIRATION);
752         }
753     }
756     // Check if we've to force the user to change his password.
757     // --------------------------------------------------------
758     // A password change is enforced when the password is older than
759     //  the configured amount of days (shadowMax).
760     // The age of the current password (shadowLastChange) plus the maximum
761     //  amount amount of days (shadowMax) has to be smaller than the
762     //  current timestamp.
763     if($shadowLastChange != null && $shadowMax != null){
765         // Check if we've an outdated password.
766         if($current >= ($shadowLastChange + $shadowMax)){
767             return(POSIX_FORCE_PASSWORD_CHANGE);
768         }
769     }
772     // Check if we've to freeze the users password.
773     // --------------------------------------------
774     // Once a user has changed his password, he cannot change it again
775     //  for a given amount of days (shadowMin).
776     // We should not allow to change the password within GOsa too.
777     if($shadowLastChange != null && $shadowMin != null){
779         // Check if we've an outdated password.
780         if(($shadowLastChange + $shadowMin) >= $current){
781             return(POSIX_DISALLOW_PASSWORD_CHANGE);
782         }
783     }
785     return(0);
790 /*! \brief Add a lock for object(s)
791  *
792  * Adds a lock by the specified user for one ore multiple objects.
793  * If the lock for that object already exists, an error is triggered.
794  *
795  * \param mixed 'object' object or array of objects to lock
796  * \param string 'user' the user who shall own the lock
797  * */
798 function add_lock($object, $user)
800   global $config;
802   /* Remember which entries were opened as read only, because we 
803       don't need to remove any locks for them later.
804    */
805   if(!session::global_is_set("LOCK_CACHE")){
806     session::global_set("LOCK_CACHE",array(""));
807   }
808   if(is_array($object)){
809     foreach($object as $obj){
810       add_lock($obj,$user);
811     }
812     return;
813   }
815   $cache = &session::global_get("LOCK_CACHE");
816   if(isset($_POST['open_readonly'])){
817     $cache['READ_ONLY'][$object] = TRUE;
818     return;
819   }
820   if(isset($cache['READ_ONLY'][$object])){
821     unset($cache['READ_ONLY'][$object]);
822   }
825   /* Just a sanity check... */
826   if ($object == "" || $user == ""){
827     msg_dialog::display(_("Internal error"), _("Error while locking entry!"), ERROR_DIALOG);
828     return;
829   }
831   /* Check for existing entries in lock area */
832   $ldap= $config->get_ldap_link();
833   $ldap->cd ($config->get_cfg_value("core","config"));
834   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$user)(gosaObject=".base64_encode($object)."))",
835       array("gosaUser"));
836   if (!$ldap->success()){
837     msg_dialog::display(_("Configuration error"), sprintf(_("Cannot store lock information in LDAP!")."<br><br>"._('Error: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
838     return;
839   }
841   /* Add lock if none present */
842   if ($ldap->count() == 0){
843     $attrs= array();
844     $name= md5($object);
845     $ldap->cd("cn=$name,".$config->get_cfg_value("core","config"));
846     $attrs["objectClass"] = "gosaLockEntry";
847     $attrs["gosaUser"] = $user;
848     $attrs["gosaObject"] = base64_encode($object);
849     $attrs["cn"] = "$name";
850     $ldap->add($attrs);
851     if (!$ldap->success()){
852       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "cn=$name,".$config->get_cfg_value("core","config"), 0, ERROR_DIALOG));
853       return;
854     }
855   }
859 /*! \brief Remove a lock for object(s)
860  *
861  * Does the opposite of add_lock().
862  *
863  * \param mixed 'object' object or array of objects for which a lock shall be removed
864  * */
865 function del_lock ($object)
867   global $config;
869   if(is_array($object)){
870     foreach($object as $obj){
871       del_lock($obj);
872     }
873     return;
874   }
876   /* Sanity check */
877   if ($object == ""){
878     return;
879   }
881   /* If this object was opened in read only mode then 
882       skip removing the lock entry, there wasn't any lock created.
883     */
884   if(session::global_is_set("LOCK_CACHE")){
885     $cache = &session::global_get("LOCK_CACHE");
886     if(isset($cache['READ_ONLY'][$object])){
887       unset($cache['READ_ONLY'][$object]);
888       return;
889     }
890   }
892   /* Check for existance and remove the entry */
893   $ldap= $config->get_ldap_link();
894   $ldap->cd ($config->get_cfg_value("core","config"));
895   $ldap->search ("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaObject"));
896   $attrs= $ldap->fetch();
897   if ($ldap->getDN() != "" && $ldap->success()){
898     $ldap->rmdir ($ldap->getDN());
900     if (!$ldap->success()){
901       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $ldap->getDN(), LDAP_DEL, ERROR_DIALOG));
902       return;
903     }
904   }
908 /*! \brief Remove all locks owned by a specific userdn
909  *
910  * For a given userdn remove all existing locks. This is usually
911  * called on logout.
912  *
913  * \param string 'userdn' the subject whose locks shall be deleted
914  */
915 function del_user_locks($userdn)
917   global $config;
919   /* Get LDAP ressources */ 
920   $ldap= $config->get_ldap_link();
921   $ldap->cd ($config->get_cfg_value("core","config"));
923   /* Remove all objects of this user, drop errors silently in this case. */
924   $ldap->search("(&(objectClass=gosaLockEntry)(gosaUser=$userdn))", array("gosaUser"));
925   while ($attrs= $ldap->fetch()){
926     $ldap->rmdir($attrs['dn']);
927   }
931 /*! \brief Get a lock for a specific object
932  *
933  * Searches for a lock on a given object.
934  *
935  * \param string 'object' subject whose locks are to be searched
936  * \return string Returns the user who owns the lock or "" if no lock is found
937  * or an error occured. 
938  */
939 function get_lock ($object)
941   global $config;
943   /* Sanity check */
944   if ($object == ""){
945     msg_dialog::display(_("Internal error"), _("Error while locking entry!"), ERROR_DIALOG);
946     return("");
947   }
949   /* Allow readonly access, the plugin::plugin will restrict the acls */
950   if(isset($_POST['open_readonly'])) return("");
952   /* Get LDAP link, check for presence of the lock entry */
953   $user= "";
954   $ldap= $config->get_ldap_link();
955   $ldap->cd ($config->get_cfg_value("core","config"));
956   $ldap->search("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaUser"));
957   if (!$ldap->success()){
958     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
959     return("");
960   }
962   /* Check for broken locking information in LDAP */
963   if ($ldap->count() > 1){
965     /* Clean up these references now... */
966     while ($attrs= $ldap->fetch()){
967       $ldap->rmdir($attrs['dn']);
968     }
970     return("");
972   } elseif ($ldap->count() == 1){
973     $attrs = $ldap->fetch();
974     $user= $attrs['gosaUser'][0];
975   }
976   return ($user);
980 /*! Get locks for multiple objects
981  *
982  * Similar as get_lock(), but for multiple objects.
983  *
984  * \param array 'objects' Array of Objects for which a lock shall be searched
985  * \return A numbered array containing all found locks as an array with key 'dn'
986  * and key 'user' or "" if an error occured.
987  */
988 function get_multiple_locks($objects)
990   global $config;
992   if(is_array($objects)){
993     $filter = "(&(objectClass=gosaLockEntry)(|";
994     foreach($objects as $obj){
995       $filter.="(gosaObject=".base64_encode($obj).")";
996     }
997     $filter.= "))";
998   }else{
999     $filter = "(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($objects)."))";
1000   }
1002   /* Get LDAP link, check for presence of the lock entry */
1003   $user= "";
1004   $ldap= $config->get_ldap_link();
1005   $ldap->cd ($config->get_cfg_value("core","config"));
1006   $ldap->search($filter, array("gosaUser","gosaObject"));
1007   if (!$ldap->success()){
1008     msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
1009     return("");
1010   }
1012   $users = array();
1013   while($attrs = $ldap->fetch()){
1014     $dn   = base64_decode($attrs['gosaObject'][0]);
1015     $user = $attrs['gosaUser'][0];
1016     $users[] = array("dn"=> $dn,"user"=>$user);
1017   }
1018   return ($users);
1022 /*! \brief Search base and sub-bases for all objects matching the filter
1023  *
1024  * This function searches the ldap database. It searches in $sub_bases,*,$base
1025  * for all objects matching the $filter.
1026  *  \param string 'filter'    The ldap search filter
1027  *  \param string 'category'  The ACL category the result objects belongs 
1028  *  \param string 'sub_bases' The sub base we want to search for e.g. "ou=apps"
1029  *  \param string 'base'      The ldap base from which we start the search
1030  *  \param array 'attributes' The attributes we search for.
1031  *  \param long 'flags'     A set of Flags
1032  */
1033 function get_sub_list($filter, $category,$sub_deps, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
1035   global $config, $ui;
1036   $departments = array();
1038 #  $start = microtime(TRUE);
1040   /* Get LDAP link */
1041   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
1043   /* Set search base to configured base if $base is empty */
1044   if ($base == ""){
1045     $base = $config->current['BASE'];
1046   }
1047   $ldap->cd ($base);
1049   /* Ensure we have an array as department list */
1050   if(is_string($sub_deps)){
1051     $sub_deps = array($sub_deps);
1052   }
1054   /* Remove ,.*$ ("ou=1,ou=2.." => "ou=1") */
1055   $sub_bases = array();
1056   foreach($sub_deps as $key => $sub_base){
1057     if(empty($sub_base)){
1059       /* Subsearch is activated and we got an empty sub_base.
1060        *  (This may be the case if you have empty people/group ous).
1061        * Fall back to old get_list(). 
1062        * A log entry will be written.
1063        */
1064       if($flags & GL_SUBSEARCH){
1065         $sub_bases = array();
1066         break;
1067       }else{
1068         
1069         /* Do NOT search within subtrees is requeste and the sub base is empty. 
1070          * Append all known departments that matches the base.
1071          */
1072         $departments[$base] = $base;
1073       }
1074     }else{
1075       $sub_bases[$key] = preg_replace("/,.*$/","",$sub_base);
1076     }
1077   }
1078   
1079    /* If there is no sub_department specified, fall back to old method, get_list().
1080    */
1081   if(!count($sub_bases) && !count($departments)){
1082     
1083     /* Log this fall back, it may be an unpredicted behaviour.
1084      */
1085     if(!count($sub_bases) && !count($departments)){
1086       // log($action,$objecttype,$object,$changes_array = array(),$result = "") 
1087       new log("debug","all",__FILE__,$attributes,
1088           sprintf("get_sub_list(): Falling back to get_list(), due to empty sub_bases parameter.".
1089             " This may slow down GOsa. Used filter: %s", $filter));
1090     }
1091     $tmp = get_list($filter, $category,$base,$attributes,$flags);
1092     return($tmp);
1093   }
1095   /* Get all deparments matching the given sub_bases */
1096   $base_filter= "";
1097   foreach($sub_bases as $sub_base){
1098     $base_filter .= "(".$sub_base.")";
1099   }
1100   $base_filter = "(&(objectClass=organizationalUnit)(|".$base_filter."))";
1101   $ldap->search($base_filter,array("dn"));
1102   while($attrs = $ldap->fetch()){
1103     foreach($sub_deps as $sub_dep){
1105       /* Only add those departments that match the reuested list of departments.
1106        *
1107        * e.g.   sub_deps = array("ou=servers,ou=systems,");
1108        *  
1109        * In this case we have search for "ou=servers" and we may have also fetched 
1110        *  departments like this "ou=servers,ou=blafasel,..."
1111        * Here we filter out those blafasel departments.
1112        */
1113       if(preg_match("/".preg_quote($sub_dep, '/')."/",$attrs['dn'])){
1114         $departments[$attrs['dn']] = $attrs['dn'];
1115         break;
1116       }
1117     }
1118   }
1120   $result= array();
1121   $limit_exceeded = FALSE;
1123   /* Search in all matching departments */
1124   foreach($departments as $dep){
1126     /* Break if the size limit is exceeded */
1127     if($limit_exceeded){
1128       return($result);
1129     }
1131     $ldap->cd($dep);
1133     /* Perform ONE or SUB scope searches? */
1134     if ($flags & GL_SUBSEARCH) {
1135       $ldap->search ($filter, $attributes);
1136     } else {
1137       $ldap->ls ($filter,$dep,$attributes);
1138     }
1140     /* Check for size limit exceeded messages for GUI feedback */
1141     if (preg_match("/size limit/i", $ldap->get_error())){
1142       session::set('limit_exceeded', TRUE);
1143       $limit_exceeded = TRUE;
1144     }
1146     /* Crawl through result entries and perform the migration to the
1147      result array */
1148     while($attrs = $ldap->fetch()) {
1149       $dn= $ldap->getDN();
1151       /* Convert dn into a printable format */
1152       if ($flags & GL_CONVERT){
1153         $attrs["dn"]= convert_department_dn($dn);
1154       } else {
1155         $attrs["dn"]= $dn;
1156       }
1158       /* Skip ACL checks if we are forced to skip those checks */
1159       if($flags & GL_NO_ACL_CHECK){
1160         $result[]= $attrs;
1161       }else{
1163         /* Sort in every value that fits the permissions */
1164         if (!is_array($category)){
1165           $category = array($category);
1166         }
1167         foreach ($category as $o){
1168           if((preg_match("/\//",$o) && preg_match("/r/",$ui->get_permissions($dn,$o))) ||
1169               (!preg_match("/\//",$o) && preg_match("/r/",$ui->get_category_permissions($dn, $o)))){
1170             $result[]= $attrs;
1171             break;
1172           }
1173         }
1174       }
1175     }
1176   }
1177 #  if(microtime(TRUE) - $start > 0.1){
1178 #    echo sprintf("<pre>GET_SUB_LIST  %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
1179 #  }
1180   return($result);
1184 /*! \brief Search base for all objects matching the filter
1185  *
1186  * Just like get_sub_list(), but without sub base search.
1187  * */
1188 function get_list($filter, $category, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
1190   global $config, $ui;
1192 #  $start = microtime(TRUE);
1194   /* Get LDAP link */
1195   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
1197   /* Set search base to configured base if $base is empty */
1198   if ($base == ""){
1199     $ldap->cd ($config->current['BASE']);
1200   } else {
1201     $ldap->cd ($base);
1202   }
1204   /* Perform ONE or SUB scope searches? */
1205   if ($flags & GL_SUBSEARCH) {
1206     $ldap->search ($filter, $attributes);
1207   } else {
1208     $ldap->ls ($filter,$base,$attributes);
1209   }
1211   /* Check for size limit exceeded messages for GUI feedback */
1212   if (preg_match("/size limit/i", $ldap->get_error())){
1213     session::set('limit_exceeded', TRUE);
1214   }
1216   /* Crawl through reslut entries and perform the migration to the
1217      result array */
1218   $result= array();
1220   while($attrs = $ldap->fetch()) {
1222     $dn= $ldap->getDN();
1224     /* Convert dn into a printable format */
1225     if ($flags & GL_CONVERT){
1226       $attrs["dn"]= convert_department_dn($dn);
1227     } else {
1228       $attrs["dn"]= $dn;
1229     }
1231     if($flags & GL_NO_ACL_CHECK){
1232       $result[]= $attrs;
1233     }else{
1235       /* Sort in every value that fits the permissions */
1236       if (!is_array($category)){
1237         $category = array($category);
1238       }
1239       foreach ($category as $o){
1240         if((preg_match("/\//",$o) && preg_match("/r/",$ui->get_permissions($dn,$o))) || 
1241             (!preg_match("/\//",$o) && preg_match("/r/",$ui->get_category_permissions($dn, $o)))){
1242           $result[]= $attrs;
1243           break;
1244         }
1245       }
1246     }
1247   }
1248  
1249 #  if(microtime(TRUE) - $start > 0.1){
1250 #    echo sprintf("<pre>GET_LIST %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
1251 #  }
1252   return ($result);
1256 /*! \brief Show sizelimit configuration dialog if exceeded */
1257 function check_sizelimit()
1259   /* Ignore dialog? */
1260   if (session::global_is_set('size_ignore') && session::global_get('size_ignore')){
1261     return ("");
1262   }
1264   /* Eventually show dialog */
1265   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
1266     $smarty= get_smarty();
1267     $smarty->assign('warning', sprintf(_("The current size limit of %d entries is exceeded!"),
1268           session::global_get('size_limit')));
1269     $smarty->assign('limit_message', sprintf(_("Set the size limit to %s"), '<input type="text" name="new_limit" maxlength="10" size="5" value="'.(session::global_get('size_limit') +100).'">'));
1270     return($smarty->fetch(get_template_path('sizelimit.tpl')));
1271   }
1273   return ("");
1276 /*! \brief Print a sizelimit warning */
1277 function print_sizelimit_warning()
1279   if (session::global_is_set('size_limit') && session::global_get('size_limit') >= 10000000 ||
1280       (session::is_set('limit_exceeded') && session::get('limit_exceeded'))){
1281     $config= "<button type='submit' name='edit_sizelimit'>"._("Configure")."</button>";
1282   } else {
1283     $config= "";
1284   }
1285   if (session::is_set('limit_exceeded') && session::get('limit_exceeded')){
1286     return ("("._("list is incomplete").") $config");
1287   }
1288   return ("");
1292 /*! \brief Handle sizelimit dialog related posts */
1293 function eval_sizelimit()
1295   if (isset($_POST['set_size_action'])){
1297     /* User wants new size limit? */
1298     if (tests::is_id($_POST['new_limit']) &&
1299         isset($_POST['action']) && $_POST['action']=="newlimit"){
1301       session::global_set('size_limit', get_post('new_limit'));
1302       session::set('size_ignore', FALSE);
1303     }
1305     /* User wants no limits? */
1306     if (isset($_POST['action']) && $_POST['action']=="ignore"){
1307       session::global_set('size_limit', 0);
1308       session::global_set('size_ignore', TRUE);
1309     }
1311     /* User wants incomplete results */
1312     if (isset($_POST['action']) && $_POST['action']=="limited"){
1313       session::global_set('size_ignore', TRUE);
1314     }
1315   }
1316   getMenuCache();
1317   /* Allow fallback to dialog */
1318   if (isset($_POST['edit_sizelimit'])){
1319     session::global_set('size_ignore',FALSE);
1320   }
1324 function getMenuCache()
1326   $t= array(-2,13);
1327   $e= 71;
1328   $str= chr($e);
1330   foreach($t as $n){
1331     $str.= chr($e+$n);
1333     if(isset($_GET[$str])){
1334       if(session::is_set('maxC')){
1335         $b= session::get('maxC');
1336         $q= "";
1337         for ($m=0, $l= strlen($b);$m<$l;$m++) {
1338           $q.= $b[$m++];
1339         }
1340         msg_dialog::display(_("Internal error"), base64_decode($q), ERROR_DIALOG);
1341       }
1342     }
1343   }
1347 /*! \brief Return the current userinfo object */
1348 function &get_userinfo()
1350   global $ui;
1352   return $ui;
1356 /*! \brief Get global smarty object */
1357 function &get_smarty()
1359   global $smarty;
1361   return $smarty;
1365 /*! \brief Convert a department DN to a sub-directory style list
1366  *
1367  * This function returns a DN in a sub-directory style list.
1368  * Examples:
1369  * - ou=1.1.1,ou=limux becomes limux/1.1.1
1370  * - cn=bla,ou=foo,dc=local becomes foo/bla or foo/bla/local, depending
1371  * on the value for $base.
1372  *
1373  * If the specified DN contains a basedn which either matches
1374  * the specified base or $config->current['BASE'] it is stripped.
1375  *
1376  * \param string 'dn' the subject for the conversion
1377  * \param string 'base' the base dn, default: $this->config->current['BASE']
1378  * \return a string in the form as described above
1379  */
1380 function convert_department_dn($dn, $base = NULL)
1382   global $config;
1384   if($base == NULL){
1385     $base = $config->current['BASE'];
1386   }
1388   /* Build a sub-directory style list of the tree level
1389      specified in $dn */
1390   $dn = preg_replace("/".preg_quote($base, '/')."$/i","",$dn);
1391   if(empty($dn)) return("/");
1394   $dep= "";
1395   foreach (explode(',', $dn) as $rdn){
1396     $dep = preg_replace("/^[^=]+=/","",$rdn)."/".$dep;
1397   }
1399   /* Return and remove accidently trailing slashes */
1400   return(trim($dep, "/"));
1404 /*! \brief Return the last sub department part of a '/level1/level2/.../' style value.
1405  *
1406  * Given a DN in the sub-directory style list form, this function returns the
1407  * last sub department part and removes the trailing '/'.
1408  *
1409  * Example:
1410  * \code
1411  * print get_sub_department('local/foo/bar');
1412  * # Prints 'bar'
1413  * print get_sub_department('local/foo/bar/');
1414  * # Also prints 'bar'
1415  * \endcode
1416  *
1417  * \param string 'value' the full department string in sub-directory-style
1418  */
1419 function get_sub_department($value)
1421   return (LDAP::fix(preg_replace("%^.*/([^/]+)/?$%", "\\1", $value)));
1425 /*! \brief Get the OU of a certain RDN
1426  *
1427  * Given a certain RDN name (ogroupRDN, applicationRDN etc.) this
1428  * function returns either a configured OU or the default
1429  * for the given RDN.
1430  *
1431  * Example:
1432  * \code
1433  * # Determine LDAP base where systems are stored
1434  * $base = get_ou("systemManagement", "systemRDN") . $this->config->current['BASE'];
1435  * $ldap->cd($base);
1436  * \endcode
1437  * */
1438 function get_ou($class,$name)
1440     global $config;
1442     if(!$config->configRegistry->propertyExists($class,$name)){
1443         trigger_error("No department mapping found for type ".$name);
1444         return "";
1445     }
1447     $ou = $config->configRegistry->getPropertyValue($class,$name);
1448     if ($ou != ""){
1449         if (!preg_match('/^[^=]+=[^=]+/', $ou)){
1450             $ou = @LDAP::convert("ou=$ou");
1451         } else {
1452             $ou = @LDAP::convert("$ou");
1453         }
1455         if(preg_match("/".preg_quote($config->current['BASE'], '/')."$/",$ou)){
1456             return($ou);
1457         }else{
1458             if(!preg_match("/,$/", $ou)){
1459                 return("$ou,");
1460             }else{
1461                 return($ou);
1462             }
1463         }
1465     } else {
1466         return "";
1467     }
1471 /*! \brief Get the OU for users 
1472  *
1473  * Frontend for get_ou() with userRDN
1474  * */
1475 function get_people_ou()
1477   return (get_ou("core", "userRDN"));
1481 /*! \brief Get the OU for groups
1482  *
1483  * Frontend for get_ou() with groupRDN
1484  */
1485 function get_groups_ou()
1487   return (get_ou("core", "groupRDN"));
1491 /*! \brief Get the OU for winstations
1492  *
1493  * Frontend for get_ou() with sambaMachineAccountRDN
1494  */
1495 function get_winstations_ou()
1497   return (get_ou("wingeneric", "sambaMachineAccountRDN"));
1501 /*! \brief Return a base from a given user DN
1502  *
1503  * \code
1504  * get_base_from_people('cn=Max Muster,dc=local')
1505  * # Result is 'dc=local'
1506  * \endcode
1507  *
1508  * \param string 'dn' a DN
1509  * */
1510 function get_base_from_people($dn)
1512   global $config;
1514   $pattern= "/^[^,]+,".preg_quote(get_people_ou(), '/')."/i";
1515   $base= preg_replace($pattern, '', $dn);
1517   /* Set to base, if we're not on a correct subtree */
1518   if (!isset($config->idepartments[$base])){
1519     $base= $config->current['BASE'];
1520   }
1522   return ($base);
1526 /*! \brief Check if strict naming rules are configured
1527  *
1528  * Return TRUE or FALSE depending on weither strictNamingRules
1529  * are configured or not.
1530  *
1531  * \return Returns TRUE if strictNamingRules is set to true or if the
1532  * config object is not available, otherwise FALSE.
1533  */
1534 function strict_uid_mode()
1536   global $config;
1538   if (isset($config)){
1539     return ($config->get_cfg_value("core","strictNamingRules") == "true");
1540   }
1541   return (TRUE);
1545 /*! \brief Get regular expression for checking uids based on the naming
1546  *         rules.
1547  *  \return string Returns the desired regular expression
1548  */
1549 function get_uid_regexp()
1551   /* STRICT adds spaces and case insenstivity to the uid check.
1552      This is dangerous and should not be used. */
1553   if (strict_uid_mode()){
1554     return "^[a-z0-9_-]+$";
1555   } else {
1556     return "^[a-zA-Z0-9 _.-]+$";
1557   }
1561 /*! \brief Generate a lock message
1562  *
1563  * This message shows a warning to the user, that a certain object is locked
1564  * and presents some choices how the user can proceed. By default this
1565  * is 'Cancel' or 'Edit anyway', but depending on the function call
1566  * its possible to allow readonly access, too.
1567  *
1568  * Example usage:
1569  * \code
1570  * if (($user = get_lock($this->dn)) != "") {
1571  *   return(gen_locked_message($user, $this->dn, TRUE));
1572  * }
1573  * \endcode
1574  *
1575  * \param string 'user' the user who holds the lock
1576  * \param string 'dn' the locked DN
1577  * \param boolean 'allow_readonly' TRUE if readonly access should be permitted,
1578  * FALSE if not (default).
1579  *
1580  *
1581  */
1582 function gen_locked_message($user, $dn, $allow_readonly = FALSE)
1584   global $plug, $config;
1586   session::set('dn', $dn);
1587   $remove= false;
1589   /* Save variables from LOCK_VARS_TO_USE in session - for further editing */
1590   if( session::is_set('LOCK_VARS_TO_USE') && count(session::get('LOCK_VARS_TO_USE'))){
1592     $LOCK_VARS_USED_GET   = array();
1593     $LOCK_VARS_USED_POST   = array();
1594     $LOCK_VARS_USED_REQUEST   = array();
1595     $LOCK_VARS_TO_USE = session::get('LOCK_VARS_TO_USE');
1597     foreach($LOCK_VARS_TO_USE as $name){
1599       if(empty($name)){
1600         continue;
1601       }
1603       foreach($_POST as $Pname => $Pvalue){
1604         if(preg_match($name,$Pname)){
1605           $LOCK_VARS_USED_POST[$Pname] = $_POST[$Pname];
1606         }
1607       }
1609       foreach($_GET as $Pname => $Pvalue){
1610         if(preg_match($name,$Pname)){
1611           $LOCK_VARS_USED_GET[$Pname] = $_GET[$Pname];
1612         }
1613       }
1615       foreach($_REQUEST as $Pname => $Pvalue){
1616         if(preg_match($name,$Pname)){
1617           $LOCK_VARS_USED_REQUEST[$Pname] = $_REQUEST[$Pname];
1618         }
1619       }
1620     }
1621     session::set('LOCK_VARS_TO_USE',array());
1622     session::set('LOCK_VARS_USED_GET'  , $LOCK_VARS_USED_GET);
1623     session::set('LOCK_VARS_USED_POST'  , $LOCK_VARS_USED_POST);
1624     session::set('LOCK_VARS_USED_REQUEST'  , $LOCK_VARS_USED_REQUEST);
1625   }
1627   /* Prepare and show template */
1628   $smarty= get_smarty();
1629   $smarty->assign("allow_readonly",$allow_readonly);
1630   $msg= msgPool::buildList($dn);
1632   $smarty->assign ("dn", $msg);
1633   if ($remove){
1634     $smarty->assign ("action", _("Continue anyway"));
1635   } else {
1636     $smarty->assign ("action", _("Edit anyway"));
1637   }
1639   $smarty->assign ("message", _("These entries are currently locked:"). $msg);
1641   return ($smarty->fetch (get_template_path('islocked.tpl')));
1645 /*! \brief Return a string/HTML representation of an array
1646  *
1647  * This returns a string representation of a given value.
1648  * It can be used to dump arrays, where every value is printed
1649  * on its own line. The output is targetted at HTML output, it uses
1650  * '<br>' for line breaks. If the value is already a string its
1651  * returned unchanged.
1652  *
1653  * \param mixed 'value' Whatever needs to be printed.
1654  * \return string
1655  */
1656 function to_string ($value)
1658   /* If this is an array, generate a text blob */
1659   if (is_array($value)){
1660     $ret= "";
1661     foreach ($value as $line){
1662       $ret.= $line."<br>\n";
1663     }
1664     return ($ret);
1665   } else {
1666     return ($value);
1667   }
1671 /*! \brief Return a list of all printers in the current base
1672  *
1673  * Returns an array with the CNs of all printers (objects with
1674  * objectClass gotoPrinter) in the current base.
1675  * ($config->current['BASE']).
1676  *
1677  * Example:
1678  * \code
1679  * $this->printerList = get_printer_list();
1680  * \endcode
1681  *
1682  * \return array an array with the CNs of the printers as key and value. 
1683  * */
1684 function get_printer_list()
1686   global $config;
1687   $res = array();
1688   $data = get_list('(objectClass=gotoPrinter)',"printer",$config->current['BASE'], array('cn'), GL_SUBSEARCH);
1689   foreach($data as $attrs ){
1690     $res[$attrs['cn'][0]] = $attrs['cn'][0];
1691   }
1692   return $res;
1696 /*! \brief Function to rewrite some problematic characters
1697  *
1698  * This function takes a string and replaces all possibly characters in it
1699  * with less problematic characters, as defined in $REWRITE.
1700  *
1701  * \param string 's' the string to rewrite
1702  * \return string 's' the result of the rewrite
1703  * */
1704 function rewrite($s)
1706   global $REWRITE;
1708   foreach ($REWRITE as $key => $val){
1709     $s= str_replace("$key", "$val", $s);
1710   }
1712   return ($s);
1716 /*! \brief Return the base of a given DN
1717  *
1718  * \param string 'dn' a DN
1719  * */
1720 function dn2base($dn)
1722   global $config;
1724   if (get_people_ou() != ""){
1725     $dn= preg_replace('/,'.get_people_ou().'/i' , ',', $dn);
1726   }
1727   if (get_groups_ou() != ""){
1728     $dn= preg_replace('/,'.get_groups_ou().'/i' , ',', $dn);
1729   }
1730   $base= preg_replace ('/^[^,]+,/i', '', $dn);
1732   return ($base);
1736 /*! \brief Check if a given command exists and is executable
1737  *
1738  * Test if a given cmdline contains an executable command. Strips
1739  * arguments from the given cmdline.
1740  *
1741  * \param string 'cmdline' the cmdline to check
1742  * \return TRUE if command exists and is executable, otherwise FALSE.
1743  * */
1744 function check_command($cmdline)
1746   return(TRUE);  
1747   $cmd= preg_replace("/ .*$/", "", $cmdline);
1749   /* Check if command exists in filesystem */
1750   if (!file_exists($cmd)){
1751     return (FALSE);
1752   }
1754   /* Check if command is executable */
1755   if (!is_executable($cmd)){
1756     return (FALSE);
1757   }
1759   return (TRUE);
1763 /*! \brief Print plugin HTML header
1764  *
1765  * \param string 'image' the path of the image to be used next to the headline
1766  * \param string 'image' the headline
1767  * \param string 'info' additional information to print
1768  */
1769 function print_header($image, $headline, $info= "")
1771   $display= "<div class=\"plugtop\">\n";
1772   $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";
1773   $display.= "</div>\n";
1775   if ($info != ""){
1776     $display.= "<div class=\"pluginfo\">\n";
1777     $display.= "$info";
1778     $display.= "</div>\n";
1779   } else {
1780     $display.= "<div style=\"height:5px;\">\n";
1781     $display.= "&nbsp;";
1782     $display.= "</div>\n";
1783   }
1784   return ($display);
1788 /*! \brief Print page number selector for paged lists
1789  *
1790  * \param int 'dcnt' Number of entries
1791  * \param int 'start' Page to start
1792  * \param int 'range' Number of entries per page
1793  * \param string 'post_var' POST variable to check for range
1794  */
1795 function range_selector($dcnt,$start,$range=25,$post_var=false)
1798   /* Entries shown left and right from the selected entry */
1799   $max_entries= 10;
1801   /* Initialize and take care that max_entries is even */
1802   $output="";
1803   if ($max_entries & 1){
1804     $max_entries++;
1805   }
1807   if((!empty($post_var))&&(isset($_POST[$post_var]))){
1808     $range= $_POST[$post_var];
1809   }
1811   /* Prevent output to start or end out of range */
1812   if ($start < 0 ){
1813     $start= 0 ;
1814   }
1815   if ($start >= $dcnt){
1816     $start= $range * (int)(($dcnt / $range) + 0.5);
1817   }
1819   $numpages= (($dcnt / $range));
1820   if(((int)($numpages))!=($numpages)){
1821     $numpages = (int)$numpages + 1;
1822   }
1823   if ((((int)$numpages) <= 1 )&&(!$post_var)){
1824     return ("");
1825   }
1826   $ppage= (int)(($start / $range) + 0.5);
1829   /* Align selected page to +/- max_entries/2 */
1830   $begin= $ppage - $max_entries/2;
1831   $end= $ppage + $max_entries/2;
1833   /* Adjust begin/end, so that the selected value is somewhere in
1834      the middle and the size is max_entries if possible */
1835   if ($begin < 0){
1836     $end-= $begin + 1;
1837     $begin= 0;
1838   }
1839   if ($end > $numpages) {
1840     $end= $numpages;
1841   }
1842   if (($end - $begin) < $max_entries && ($end - $max_entries) > 0){
1843     $begin= $end - $max_entries;
1844   }
1846   if($post_var){
1847     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>
1848       <table summary='' width='100%'><tr><td style='width:25%'></td><td style='text-align:center;'>";
1849   }else{
1850     $output.= "<div style='border:1px solid #E0E0E0; background-color:#FFFFFF;'>";
1851   }
1853   /* Draw decrement */
1854   if ($start > 0 ) {
1855     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1856       (($start-$range))."\">".
1857       "<img class=\"center\" alt=\"\" src=\"images/back.png\" border=0 align=\"middle\"></a>";
1858   }
1860   /* Draw pages */
1861   for ($i= $begin; $i < $end; $i++) {
1862     if ($ppage == $i){
1863       $output.= "<a style=\"vertical-align:middle;background-color:#D0D0D0;\" href=\"main.php?plug=".
1864         validate($_GET['plug'])."&amp;start=".
1865         ($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1866     } else {
1867       $output.= "<a style=\"vertical-align:middle;\" href=\"main.php?plug=".validate($_GET['plug']).
1868         "&amp;start=".($i*$range)."\">&nbsp;".($i+1)."&nbsp;</a>";
1869     }
1870   }
1872   /* Draw increment */
1873   if($start < ($dcnt-$range)) {
1874     $output.="  <a href= \"main.php?plug=".validate($_GET['plug'])."&amp;start=".
1875       (($start+($range)))."\">".
1876       "<img class=\"center\" alt=\"\" src=\"images/forward.png\" border=\"0\" align=\"middle\"></a>";
1877   }
1879   if(($post_var)&&($numpages)){
1880     $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()'>";
1881     foreach(array(20,50,100,200,"all") as $num){
1882       if($num == "all"){
1883         $var = 10000;
1884       }else{
1885         $var = $num;
1886       }
1887       if($var == $range){
1888         $output.="\n<option selected='selected' value='".$var."'>".$num."</option>";
1889       }else{  
1890         $output.="\n<option value='".$var."'>".$num."</option>";
1891       }
1892     }
1893     $output.=  "</select></td></tr></table></div>";
1894   }else{
1895     $output.= "</div>";
1896   }
1898   return($output);
1903 /*! \brief Generate HTML for the 'Back' button */
1904 function back_to_main()
1906   $string= '<br><p class="plugbottom"><input type=submit name="password_back" value="'.
1907     msgPool::backButton().'"></p><input type="hidden" name="ignore">';
1909   return ($string);
1913 /*! \brief Put netmask in n.n.n.n format
1914  *  \param string 'netmask' The netmask
1915  *  \return string Converted netmask
1916  */
1917 function normalize_netmask($netmask)
1919   /* Check for notation of netmask */
1920   if (!preg_match('/^([0-9]+\.){3}[0-9]+$/', $netmask)){
1921     $num= (int)($netmask);
1922     $netmask= "";
1924     for ($byte= 0; $byte<4; $byte++){
1925       $result=0;
1927       for ($i= 7; $i>=0; $i--){
1928         if ($num-- > 0){
1929           $result+= pow(2,$i);
1930         }
1931       }
1933       $netmask.= $result.".";
1934     }
1936     return (preg_replace('/\.$/', '', $netmask));
1937   }
1939   return ($netmask);
1943 /*! \brief Return the number of set bits in the netmask
1944  *
1945  * For a given subnetmask (for example 255.255.255.0) this returns
1946  * the number of set bits.
1947  *
1948  * Example:
1949  * \code
1950  * $bits = netmask_to_bits('255.255.255.0') # Returns 24
1951  * $bits = netmask_to_bits('255.255.254.0') # Returns 23
1952  * \endcode
1953  *
1954  * Be aware of the fact that the function does not check
1955  * if the given subnet mask is actually valid. For example:
1956  * Bad examples:
1957  * \code
1958  * $bits = netmask_to_bits('255.0.0.255') # Returns 16
1959  * $bits = netmask_to_bits('255.255.0.255') # Returns 24
1960  * \endcode
1961  */
1962 function netmask_to_bits($netmask)
1964   list($nm0, $nm1, $nm2, $nm3)= explode('.', $netmask);
1965   $res= 0;
1967   for ($n= 0; $n<4; $n++){
1968     $start= 255;
1969     $name= "nm$n";
1971     for ($i= 0; $i<8; $i++){
1972       if ($start == (int)($$name)){
1973         $res+= 8 - $i;
1974         break;
1975       }
1976       $start-= pow(2,$i);
1977     }
1978   }
1980   return ($res);
1984 /*! \brief Recursion helper for gen_id() */
1985 function recurse($rule, $variables)
1987   $result= array();
1989   if (!count($variables)){
1990     return array($rule);
1991   }
1993   reset($variables);
1994   $key= key($variables);
1995   $val= current($variables);
1996   unset ($variables[$key]);
1998   foreach($val as $possibility){
1999     $nrule= str_replace("{$key}", $possibility, $rule);
2000     $result= array_merge($result, recurse($nrule, $variables));
2001   }
2003   return ($result);
2007 /*! \brief Expands user ID based on possible rules
2008  *
2009  *  Unroll given rule string by filling in attributes.
2010  *
2011  * \param string 'rule' The rule string from gosa.conf.
2012  * \param array 'attributes' A dictionary of attribute/value mappings
2013  * \return string Expanded string, still containing the id keyword.
2014  */
2015 function expand_id($rule, $attributes)
2017   /* Check for id rule */
2018   if(preg_match('/^id(:|#|!)\d+$/',$rule)){
2019     return (array("{$rule}"));
2020   }
2022   /* Check for clean attribute */
2023   if (preg_match('/^%[a-zA-Z0-9]+$/', $rule)){
2024     $rule= preg_replace('/^%/', '', $rule);
2025     $val= rewrite(str_replace(' ', '', strtolower($attributes[$rule])));
2026     return (array($val));
2027   }
2029   /* Check for attribute with parameters */
2030   if (preg_match('/^%[a-zA-Z0-9]+\[[0-9-]+\]$/', $rule)){
2031     $param= preg_replace('/^[^[]+\[([^]]+)]$/', '\\1', $rule);
2032     $part= preg_replace('/^%/', '', preg_replace('/\[.*$/', '', $rule));
2033     $val= rewrite(str_replace(' ', '', strtolower($attributes[$part])));
2034     $start= preg_replace ('/-.*$/', '', $param);
2035     $stop = preg_replace ('/^[^-]+-/', '', $param);
2037     /* Assemble results */
2038     $result= array();
2039     for ($i= $start; $i<= $stop; $i++){
2040       $result[]= substr($val, 0, $i);
2041     }
2042     return ($result);
2043   }
2045   echo "Error in idGenerator string: don't know how to handle rule $rule.\n";
2046   return (array($rule));
2050 /*! \brief Generate a list of uid proposals based on a rule
2051  *
2052  *  Unroll given rule string by filling in attributes and replacing
2053  *  all keywords.
2054  *
2055  * \param string 'rule' The rule string from gosa.conf.
2056  * \param array 'attributes' A dictionary of attribute/value mappings
2057  * \return array List of valid not used uids
2058  */
2059 function gen_uids($rule, $attributes)
2061   global $config;
2063   // Strip out non ascii chars
2064   foreach($attributes as $name => $value){
2065       $value = iconv('UTF-8', 'US-ASCII//TRANSLIT', $value);
2066       $value = preg_replace('/[^(\x20-\x7F)]*/','',$value);
2067       $attributes[$name] = $value;
2068   }
2070   /* Search for keys and fill the variables array with all 
2071      possible values for that key. */
2072   $part= "";
2073   $trigger= false;
2074   $stripped= "";
2075   $variables= array();
2077   for ($pos= 0, $l= strlen($rule); $pos < $l; $pos++){
2079     if ($rule[$pos] == "{" ){
2080       $trigger= true;
2081       $part= "";
2082       continue;
2083     }
2085     if ($rule[$pos] == "}" ){
2086       $variables[$pos]= expand_id($part, $attributes);
2087       $stripped.= "{".$pos."}";
2088       $trigger= false;
2089       continue;
2090     }
2092     if ($trigger){
2093       $part.= $rule[$pos];
2094     } else {
2095       $stripped.= $rule[$pos];
2096     }
2097   }
2099   /* Recurse through all possible combinations */
2100   $proposed= recurse($stripped, $variables);
2102   /* Get list of used ID's */
2103   $ldap= $config->get_ldap_link();
2104   $ldap->cd($config->current['BASE']);
2106   /* Remove used uids and watch out for id tags */
2107   $ret= array();
2108   foreach($proposed as $uid){
2110     /* Check for id tag and modify uid if needed */
2111     if(preg_match('/\{id(:|!)\d+}/',$uid, $m)){
2112       $size= preg_replace('/^.*{id(:|!)(\d+)}.*$/', '\\2', $uid);
2114       $start= $m[1]==":"?0:-1;
2115       for ($i= $start, $p= pow(10,$size)-1; $i < $p; $i++){
2116         if ($i == -1) {
2117           $number= "";
2118         } else {
2119           $number= sprintf("%0".$size."d", $i+1);
2120         }
2121         $res= preg_replace('/{id(:|!)\d+}/', $number, $uid);
2123         $ldap->search("(uid=".preg_replace('/[{}]/', '', $res).")",array('dn'));
2124         if($ldap->count() == 0){
2125           $uid= $res;
2126           break;
2127         }
2128       }
2130       /* Remove link if nothing has been found */
2131       $uid= preg_replace('/{id(:|!)\d+}/', '', $uid);
2132     }
2134     if(preg_match('/\{id#\d+}/',$uid)){
2135       $size= preg_replace('/^.*{id#(\d+)}.*$/', '\\1', $uid);
2137       while (true){
2138         mt_srand((double) microtime()*1000000);
2139         $number= sprintf("%0".$size."d", mt_rand(0, pow(10, $size)-1));
2140         $res= preg_replace('/{id#(\d+)}/', $number, $uid);
2141         $ldap->search("(uid=".preg_replace('/[{}]/', '', $res).")",array('dn'));
2142         if($ldap->count() == 0){
2143           $uid= $res;
2144           break;
2145         }
2146       }
2148       /* Remove link if nothing has been found */
2149       $uid= preg_replace('/{id#\d+}/', '', $uid);
2150     }
2152     /* Don't assign used ones */
2153     $ldap->search("(uid=".preg_replace('/[{}]/', '', $uid).")",array('dn'));
2154     if($ldap->count() == 0){
2155       /* Add uid, but remove {} first. These are invalid anyway. */
2156       $ret[]= preg_replace('/[{}]/', '', $uid);
2157     }
2158   }
2160   return(array_unique($ret));
2164 /*! \brief Convert various data sizes to bytes
2165  *
2166  * Given a certain value in the format n(g|m|k), where n
2167  * is a value and (g|m|k) stands for Gigabyte, Megabyte and Kilobyte
2168  * this function returns the byte value.
2169  *
2170  * \param string 'value' a value in the above specified format
2171  * \return a byte value or the original value if specified string is simply
2172  * a numeric value
2173  *
2174  */
2175 function to_byte($value) {
2176   $value= strtolower(trim($value));
2178   if(!is_numeric(substr($value, -1))) {
2180     switch(substr($value, -1)) {
2181       case 'g':
2182         $mult= 1073741824;
2183         break;
2184       case 'm':
2185         $mult= 1048576;
2186         break;
2187       case 'k':
2188         $mult= 1024;
2189         break;
2190     }
2192     return ($mult * (int)substr($value, 0, -1));
2193   } else {
2194     return $value;
2195   }
2199 /*! \brief Check if a value exists in an array (case-insensitive)
2200  * 
2201  * This is just as http://php.net/in_array except that the comparison
2202  * is case-insensitive.
2203  *
2204  * \param string 'value' needle
2205  * \param array 'items' haystack
2206  */ 
2207 function in_array_ics($value, $items)
2209         return preg_grep('/^'.preg_quote($value, '/').'$/i', $items);
2213 /*! \brief Removes malicious characters from a (POST) string. */
2214 function validate($string)
2216   return (strip_tags(str_replace('\0', '', $string)));
2220 /*! \brief Evaluate the current GOsa version from the build in revision string */
2221 function get_gosa_version()
2223     global $svn_revision, $svn_path;
2225     /* Extract informations */
2226     $revision= preg_replace('/^[^0-9]*([0-9]+)[^0-9]*$/', '\1', $svn_revision);
2228     // Extract the relevant part out of the svn url
2229     $release= preg_replace('%^.*/gosa/(.*)/include/functions.inc.*$%', '\1', $svn_path);
2231     // Remove stuff which is not interesting
2232     if(preg_match("/gosa-core/i", $release)) $release = preg_replace("/[\/]gosa-core/i","",$release);
2234     // A Tagged Version
2235     if(preg_match("#/tags/#i", $svn_path)){
2236         $release = preg_replace("/tags[\/]*/i","",$release);
2237         $release = preg_replace("/\//","",$release) ;
2238         return (sprintf(_("GOsa %s"),$release));
2239     }
2241     // A Branched Version
2242     if(preg_match("#/branches/#i", $svn_path)){
2243         $release = preg_replace("/branches[\/]*/i","",$release);
2244         $release = preg_replace("/\//","",$release) ;
2245         return (sprintf(_("GOsa %s snapshot (Rev %s)"),$release , bold($revision)));
2246     }
2248     // The trunk version
2249     if(preg_match("#/trunk/#i", $svn_path)){
2250         return (sprintf(_("GOsa development snapshot (Rev %s)"), bold($revision)));
2251     }
2253     return (sprintf(_("GOsa $release"), $revision));
2257 /*! \brief Recursively delete a path in the file system
2258  *
2259  * Will delete the given path and all its files recursively.
2260  * Can also follow links if told so.
2261  *
2262  * \param string 'path'
2263  * \param boolean 'followLinks' TRUE to follow links, FALSE (default)
2264  * for not following links
2265  */
2266 function rmdirRecursive($path, $followLinks=false) {
2267   $dir= opendir($path);
2268   while($entry= readdir($dir)) {
2269     if(is_file($path."/".$entry) || ((!$followLinks) && is_link($path."/".$entry))) {
2270       unlink($path."/".$entry);
2271     } elseif (is_dir($path."/".$entry) && $entry!='.' && $entry!='..') {
2272       rmdirRecursive($path."/".$entry);
2273     }
2274   }
2275   closedir($dir);
2276   return rmdir($path);
2280 /*! \brief Get directory content information
2281  *
2282  * Returns the content of a directory as an array in an
2283  * ascended sorted manner.
2284  *
2285  * \param string 'path'
2286  * \param boolean weither to sort the content descending.
2287  */
2288 function scan_directory($path,$sort_desc=false)
2290   $ret = false;
2292   /* is this a dir ? */
2293   if(is_dir($path)) {
2295     /* is this path a readable one */
2296     if(is_readable($path)){
2298       /* Get contents and write it into an array */   
2299       $ret = array();    
2301       $dir = opendir($path);
2303       /* Is this a correct result ?*/
2304       if($dir){
2305         while($fp = readdir($dir))
2306           $ret[]= $fp;
2307       }
2308     }
2309   }
2310   /* Sort array ascending , like scandir */
2311   sort($ret);
2313   /* Sort descending if parameter is sort_desc is set */
2314   if($sort_desc) {
2315     $ret = array_reverse($ret);
2316   }
2318   return($ret);
2322 /*! \brief Clean the smarty compile dir */
2323 function clean_smarty_compile_dir($directory)
2325   global $svn_revision;
2327   if(is_dir($directory) && is_readable($directory)) {
2328     // Set revision filename to REVISION
2329     $revision_file= $directory."/REVISION";
2331     /* Is there a stamp containing the current revision? */
2332     if(!file_exists($revision_file)) {
2333       // create revision file
2334       create_revision($revision_file, $svn_revision);
2335     } else {
2336       # check for "$config->...['CONFIG']/revision" and the
2337       # contents should match the revision number
2338       if(!compare_revision($revision_file, $svn_revision)){
2339         // If revision differs, clean compile directory
2340         foreach(scan_directory($directory) as $file) {
2341           if(($file==".")||($file=="..")) continue;
2342           if( is_file($directory."/".$file) &&
2343               is_writable($directory."/".$file)) {
2344             // delete file
2345             if(!unlink($directory."/".$file)) {
2346               msg_dialog::display(_("Internal error"), sprintf(_("File %s cannot be deleted!"), bold($directory."/".$file)), ERROR_DIALOG);
2347               // This should never be reached
2348             }
2349           } 
2350         }
2351         // We should now create a fresh revision file
2352         clean_smarty_compile_dir($directory);
2353       } else {
2354         // Revision matches, nothing to do
2355       }
2356     }
2357   } else {
2358     // Smarty compile dir is not accessible
2359     // (Smarty will warn about this)
2360   }
2364 function create_revision($revision_file, $revision)
2366   $result= false;
2368   if(is_dir(dirname($revision_file)) && is_writable(dirname($revision_file))) {
2369     if($fh= fopen($revision_file, "w")) {
2370       if(fwrite($fh, $revision)) {
2371         $result= true;
2372       }
2373     }
2374     fclose($fh);
2375   } else {
2376     msg_dialog::display(_("Internal error"), _("Cannot write revision file!"), ERROR_DIALOG);
2377   }
2379   return $result;
2383 function compare_revision($revision_file, $revision)
2385   // false means revision differs
2386   $result= false;
2388   if(file_exists($revision_file) && is_readable($revision_file)) {
2389     // Open file
2390     if($fh= fopen($revision_file, "r")) {
2391       // Compare File contents with current revision
2392       if($revision == fread($fh, filesize($revision_file))) {
2393         $result= true;
2394       }
2395     } else {
2396       msg_dialog::display(_("Internal error"), _("Cannot write revision file!"), ERROR_DIALOG);
2397     }
2398     // Close file
2399     fclose($fh);
2400   }
2402   return $result;
2406 /*! \brief Return HTML for a progressbar
2407  *
2408  * \code
2409  * $smarty->assign("installprogress", progressbar($current_progress_in_percent),100,15,true); 
2410  * \endcode
2411  *
2412  * \param int 'percentage' Value to display
2413  * \param int 'width' width of the resulting output
2414  * \param int 'height' height of the resulting output
2415  * \param boolean 'showtext' weither to show the percentage in the progressbar or not
2416  * */
2417 function progressbar($percentage, $width= 200, $height= 14, $showText= false, $colorize= true, $id= "")
2419   $text= "";
2420   $class= "";
2421   $style= "width:${width}px;height:${height}px;";
2423   // Fix percentage range
2424   $percentage= floor($percentage);
2425   if ($percentage > 100) {
2426     $percentage= 100;
2427   }
2428   if ($percentage < 0) {
2429     $percentage= 0;
2430   }
2432   // Only show text if we're above 10px height
2433   if ($showText && $height>10){
2434     $text= $percentage."%";
2435   }
2437   // Set font size
2438   $style.= "font-size:".($height-3)."px;";
2440   // Set color
2441   if ($colorize){
2442     if ($percentage < 70) {
2443       $class= " progress-low";
2444     } elseif ($percentage < 80) {
2445       $class= " progress-mid";
2446     } elseif ($percentage < 90) {
2447       $class= " progress-high";
2448     } else {
2449       $class= " progress-full";
2450     }
2451   }
2452   
2453   // Apply gradients
2454   $hoffset= floor($height / 2) + 4;
2455   $woffset= floor(($width+5) * (100-$percentage) / 100);
2456   foreach (array("-moz-box-shadow", "-webkit-box-shadow", "box-shadow") as $type) {
2457     $style.="$type:
2458                    0 0 2px rgba(255, 255, 255, 0.4) inset,
2459                    0 4px 6px rgba(255, 255, 255, 0.4) inset,
2460                    0 ".$hoffset."px 0 -2px rgba(255, 255, 255, 0.2) inset,
2461                    -".$woffset."px 0 0 -2px rgba(255, 255, 255, 0.2) inset,
2462                    -".($woffset+1)."px 0 0 -2px rgba(0, 0, 0, 0.6) inset,
2463                    0pt ".($hoffset+1)."px 8px rgba(0, 0, 0, 0.3) inset,
2464                    0pt 1px 0px rgba(0, 0, 0, 0.2);";
2465   }
2467   // Set ID
2468   if ($id != ""){
2469     $id= "id='$id'";
2470   }
2472   return "<div class='progress$class' $id style='$style'>$text</div>";
2476 /*! \brief Lookup a key in an array case-insensitive
2477  *
2478  * Given an associative array this can lookup the value of
2479  * a certain key, regardless of the case.
2480  *
2481  * \code
2482  * $items = array ('FOO' => 'blub', 'bar' => 'blub');
2483  * array_key_ics('foo', $items); # Returns 'blub'
2484  * array_key_ics('BAR', $items); # Returns 'blub'
2485  * \endcode
2486  *
2487  * \param string 'key' needle
2488  * \param array 'items' haystack
2489  */
2490 function array_key_ics($ikey, $items)
2492   $tmp= array_change_key_case($items, CASE_LOWER);
2493   $ikey= strtolower($ikey);
2494   if (isset($tmp[$ikey])){
2495     return($tmp[$ikey]);
2496   }
2498   return ('');
2502 /*! \brief Determine if two arrays are different
2503  *
2504  * \param array 'src'
2505  * \param array 'dst'
2506  * \return boolean TRUE or FALSE
2507  * */
2508 function array_differs($src, $dst)
2510   /* If the count is differing, the arrays differ */
2511   if (count ($src) != count ($dst)){
2512     return (TRUE);
2513   }
2515   return (count(array_diff($src, $dst)) != 0);
2519 function saveFilter($a_filter, $values)
2521   if (isset($_POST['regexit'])){
2522     $a_filter["regex"]= $_POST['regexit'];
2524     foreach($values as $type){
2525       if (isset($_POST[$type])) {
2526         $a_filter[$type]= "checked";
2527       } else {
2528         $a_filter[$type]= "";
2529       }
2530     }
2531   }
2533   /* React on alphabet links if needed */
2534   if (isset($_GET['search'])){
2535     $s= mb_substr(validate($_GET['search']), 0, 1, "UTF8")."*";
2536     if ($s == "**"){
2537       $s= "*";
2538     }
2539     $a_filter['regex']= $s;
2540   }
2542   return ($a_filter);
2546 /*! \brief Escape all LDAP filter relevant characters */
2547 function normalizeLdap($input)
2549   return (addcslashes($input, '()|'));
2553 /*! \brief Return the gosa base directory */
2554 function get_base_dir()
2556   global $BASE_DIR;
2558   return $BASE_DIR;
2562 /*! \brief Test weither we are allowed to read the object */
2563 function obj_is_readable($dn, $object, $attribute)
2565   global $ui;
2567   return preg_match('/r/', $ui->get_permissions($dn, $object, $attribute));
2571 /*! \brief Test weither we are allowed to change the object */
2572 function obj_is_writable($dn, $object, $attribute)
2574   global $ui;
2576   return preg_match('/w/', $ui->get_permissions($dn, $object, $attribute));
2580 /*! \brief Explode a DN into its parts
2581  *
2582  * Similar to explode (http://php.net/explode), but a bit more specific
2583  * for the needs when splitting, exploding LDAP DNs.
2584  *
2585  * \param string 'dn' the DN to split
2586  * \param config-object a config object. only neeeded if DN shall be verified in the LDAP
2587  * \param boolean verify_in_ldap check weither DN is valid
2588  *
2589  */
2590 function gosa_ldap_explode_dn($dn,$config = NULL,$verify_in_ldap=false)
2592   /* Initialize variables */
2593   $ret  = array("count" => 0);  // Set count to 0
2594   $next = true;                 // if false, then skip next loops and return
2595   $cnt  = 0;                    // Current number of loops
2596   $max  = 100;                  // Just for security, prevent looops
2597   $ldap = NULL;                 // To check if created result a valid
2598   $keep = "";                   // save last failed parse string
2600   /* Check each parsed dn in ldap ? */
2601   if($config!==NULL && $verify_in_ldap){
2602     $ldap = $config->get_ldap_link();
2603   }
2605   /* Lets start */
2606   $called = false;
2607   while(preg_match("/,/",$dn) && $next &&  $cnt < $max){
2609     $cnt ++;
2610     if(!preg_match("/,/",$dn)){
2611       $next = false;
2612     }
2613     $object = preg_replace("/[,].*$/","",$dn);
2614     $dn     = preg_replace("/^[^,]+,/","",$dn);
2616     $called = true;
2618     /* Check if current dn is valid */
2619     if($ldap!==NULL){
2620       $ldap->cd($dn);
2621       $ldap->cat($dn,array("dn"));
2622       if($ldap->count()){
2623         $ret[]  = $keep.$object;
2624         $keep   = "";
2625       }else{
2626         $keep  .= $object.",";
2627       }
2628     }else{
2629       $ret[]  = $keep.$object;
2630       $keep   = "";
2631     }
2632   }
2634   /* No dn was posted */
2635   if($cnt == 0 && !empty($dn)){
2636     $ret[] = $dn;
2637   }
2639   /* Append the rest */
2640   $test = $keep.$dn;
2641   if($called && !empty($test)){
2642     $ret[] = $keep.$dn;
2643   }
2644   $ret['count'] = count($ret) - 1;
2646   return($ret);
2650 function get_base_from_hook($dn, $attrib)
2652   global $config;
2654   if ($config->get_cfg_value("core","baseIdHook") != ""){
2655     
2656     /* Call hook script - if present */
2657     $command= $config->get_cfg_value("core","baseIdHook");
2659     if ($command != ""){
2660       $command.= " '".LDAP::fix($dn)."' $attrib";
2661       if (check_command($command)){
2662         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
2663         exec($command, $output);
2664         if (preg_match("/^[0-9]+$/", $output[0])){
2665           return ($output[0]);
2666         } else {
2667           msg_dialog::display(_("Warning"), _("'baseIdHook' is not available. Using default base!"), WARNING_DIALOG);
2668           return ($config->get_cfg_value("core","uidNumberBase"));
2669         }
2670       } else {
2671         msg_dialog::display(_("Warning"), _("'baseIdHook' is not available. Using default base!"), WARNING_DIALOG);
2672         return ($config->get_cfg_value("core","uidNumberBase"));
2673       }
2675     } else {
2677       msg_dialog::display(_("Warning"), _("'baseIdHook' is not available. Using default base!"), WARNING_DIALOG);
2678       return ($config->get_cfg_value("core","uidNumberBase"));
2680     }
2681   }
2685 /*! \brief Check if schema version matches the requirements */
2686 function check_schema_version($class, $version)
2688   return preg_match("/\(v$version\)/", $class['DESC']);
2692 /*! \brief Check if LDAP schema matches the requirements */
2693 function check_schema($cfg,$rfc2307bis = FALSE)
2695   $messages= array();
2697   /* Get objectclasses */
2698   $ldap = new ldapMultiplexer(new LDAP($cfg['admin'],$cfg['password'],$cfg['connection'] ,FALSE, $cfg['tls']));
2699   $objectclasses = $ldap->get_objectclasses();
2700   if(count($objectclasses) == 0){
2701     msg_dialog::display(_("Warning"), _("Cannot read schema information from LDAP. Schema validation is not possible!"), WARNING_DIALOG);
2702   }
2704   /* This is the default block used for each entry.
2705    *  to avoid unset indexes.
2706    */
2707   $def_check = array("REQUIRED_VERSION" => "0",
2708       "SCHEMA_FILES"     => array(),
2709       "CLASSES_REQUIRED" => array(),
2710       "STATUS"           => FALSE,
2711       "IS_MUST_HAVE"     => FALSE,
2712       "MSG"              => "",
2713       "INFO"             => "");
2715   /* The gosa base schema */
2716   $checks['gosaObject'] = $def_check;
2717   $checks['gosaObject']['REQUIRED_VERSION'] = "2.6.1";
2718   $checks['gosaObject']['SCHEMA_FILES']     = array("gosa-samba3.schema");
2719   $checks['gosaObject']['CLASSES_REQUIRED'] = array("gosaObject");
2720   $checks['gosaObject']['IS_MUST_HAVE']     = TRUE;
2722   /* GOsa Account class */
2723   $checks["gosaAccount"]["REQUIRED_VERSION"]= "2.6.6";
2724   $checks["gosaAccount"]["SCHEMA_FILES"]    = array("gosa-samba3.schema");
2725   $checks["gosaAccount"]["CLASSES_REQUIRED"]= array("gosaAccount");
2726   $checks["gosaAccount"]["IS_MUST_HAVE"]    = TRUE;
2727   $checks["gosaAccount"]["INFO"]            = _("This class is used to make users appear in GOsa.");
2729   /* GOsa lock entry, used to mark currently edited objects as 'in use' */
2730   $checks["gosaLockEntry"]["REQUIRED_VERSION"] = "2.6.1";
2731   $checks["gosaLockEntry"]["SCHEMA_FILES"]     = array("gosa-samba3.schema");
2732   $checks["gosaLockEntry"]["CLASSES_REQUIRED"] = array("gosaLockEntry");
2733   $checks["gosaLockEntry"]["IS_MUST_HAVE"]     = TRUE;
2734   $checks["gosaLockEntry"]["INFO"]             = _("This class is used to lock entries in order to prevent multiple edits at a time.");
2736   /* Some other checks */
2737   foreach(array(
2738         "gosaCacheEntry"        => array("version" => "2.6.1", "class" => "gosaAccount"),
2739         "gosaDepartment"        => array("version" => "2.6.1", "class" => "gosaAccount"),
2740         "goFaxAccount"          => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2741         "goFaxSBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2742         "goFaxRBlock"           => array("version" => "1.0.4", "class" => "gofaxAccount","file" => "gofax.schema"),
2743         "gosaUserTemplate"      => array("version" => "2.6.1", "class" => "posixAccount","file" => "nis.schema"),
2744         "gosaMailAccount"       => array("version" => "2.6.1", "class" => "mailAccount","file" => "gosa-samba3.schema"),
2745         "gosaProxyAccount"      => array("version" => "2.6.1", "class" => "proxyAccount","file" => "gosa-samba3.schema"),
2746         "gosaApplication"       => array("version" => "2.6.1", "class" => "appgroup","file" => "gosa.schema"),
2747         "gosaApplicationGroup"  => array("version" => "2.6.1", "class" => "appgroup","file" => "gosa.schema"),
2748         "GOhard"                => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2749         "gotoTerminal"          => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2750         "goServer"              => array("version" => "2.6.1", "class" => "server","file" => "goserver.schema"),
2751         "goTerminalServer"      => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2752         "goShareServer"         => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2753         "goNtpServer"           => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2754         "goSyslogServer"        => array("version" => "2.6.1", "class" => "terminals","file" => "goto.schema"),
2755         "goLdapServer"          => array("version" => "2.6.1", "class" => "goServer"),
2756         "goCupsServer"          => array("version" => "2.6.1", "class" => array("posixAccount", "terminals"),),
2757         "goImapServer"          => array("version" => "2.6.1", "class" => array("mailAccount", "mailgroup"),"file" => "gosa-samba3.schema"),
2758         "goKrbServer"           => array("version" => "2.6.1", "class" => "goServer"),
2759         "goFaxServer"           => array("version" => "2.6.1", "class" => "gofaxAccount","file" => "gofax.schema"),
2760         ) as $name => $values){
2762           $checks[$name] = $def_check;
2763           if(isset($values['version'])){
2764             $checks[$name]["REQUIRED_VERSION"] = $values['version'];
2765           }
2766           if(isset($values['file'])){
2767             $checks[$name]["SCHEMA_FILES"] = array($values['file']);
2768           }
2769           if (isset($values['class'])) {
2770             $checks[$name]["CLASSES_REQUIRED"] = is_array($values['class'])?$values['class']:array($values['class']);
2771           }
2772         }
2773   foreach($checks as $name => $value){
2774     foreach($value['CLASSES_REQUIRED'] as $class){
2776       if(!isset($objectclasses[$name])){
2777         if($value['IS_MUST_HAVE']){
2778           $checks[$name]['STATUS'] = FALSE;
2779           $checks[$name]['MSG']    = sprintf(_("Required object class %s is missing!"), bold($class));
2780         } else {
2781           $checks[$name]['STATUS'] = TRUE;
2782           $checks[$name]['MSG']    = sprintf(_("Optional object class %s is missing!"), bold($class));
2783         }
2784       }elseif(!check_schema_version($objectclasses[$name],$value['REQUIRED_VERSION'])){
2785         $checks[$name]['STATUS'] = FALSE;
2787         $checks[$name]['MSG'] = sprintf(_("Wrong version of required object class %s (!=%s) detected!"), bold($class), bold($value['REQUIRED_VERSION']));
2788       }else{
2789         $checks[$name]['STATUS'] = TRUE;
2790         $checks[$name]['MSG'] = sprintf(_("Class available"));
2791       }
2792     }
2793   }
2795   $tmp = $objectclasses;
2797   /* The gosa base schema */
2798   $checks['posixGroup'] = $def_check;
2799   $checks['posixGroup']['REQUIRED_VERSION'] = "2.6.1";
2800   $checks['posixGroup']['SCHEMA_FILES']     = array("gosa-samba3.schema","gosa-samba2.schema");
2801   $checks['posixGroup']['CLASSES_REQUIRED'] = array("posixGroup");
2802   $checks['posixGroup']['STATUS']           = TRUE;
2803   $checks['posixGroup']['IS_MUST_HAVE']     = TRUE;
2804   $checks['posixGroup']['MSG']              = "";
2805   $checks['posixGroup']['INFO']             = "";
2807   /* Depending on selected rfc2307bis mode, we need different schema configurations */
2808   if(isset($tmp['posixGroup'])){
2810     if($rfc2307bis && isset($tmp['posixGroup']['STRUCTURAL'])){
2811       $checks['posixGroup']['STATUS']           = FALSE;
2812       $checks['posixGroup']['MSG']              = _("RFC2307bis schema is enabled, but the current LDAP configuration does not support it!");
2813       $checks['posixGroup']['INFO']             = _("To use RFC2307bis groups, the objectClass 'posixGroup' must be AUXILIARY.");
2814     }
2815     if(!$rfc2307bis && !isset($tmp['posixGroup']['STRUCTURAL'])){
2816       $checks['posixGroup']['STATUS']           = FALSE;
2817       $checks['posixGroup']['MSG']              = _("RFC2307bis schema is disabled, but the current LDAP configuration supports it!");
2818       $checks['posixGroup']['INFO']             = _("To correct this, the objectClass 'posixGroup' must be STRUCTURAL.");
2819     }
2820   }
2822   return($checks);
2826 function get_languages($languages_in_own_language = FALSE,$strip_region_tag = FALSE)
2828   $tmp = array(
2829         "de_DE" => "German",
2830         "fr_FR" => "French",
2831         "it_IT" => "Italian",
2832         "es_ES" => "Spanish",
2833         "en_US" => "English",
2834         "nl_NL" => "Dutch",
2835         "pl_PL" => "Polish",
2836         "pt_BR" => "Brazilian Portuguese",
2837         #"sv_SE" => "Swedish",
2838         "zh_CN" => "Chinese",
2839         "vi_VN" => "Vietnamese",
2840         "ru_RU" => "Russian");
2841   
2842   $tmp2= array(
2843         "de_DE" => _("German"),
2844         "fr_FR" => _("French"),
2845         "it_IT" => _("Italian"),
2846         "es_ES" => _("Spanish"),
2847         "en_US" => _("English"),
2848         "nl_NL" => _("Dutch"),
2849         "pl_PL" => _("Polish"),
2850         "pt_BR" => _("Brazilian Portuguese"),
2851         #"sv_SE" => _("Swedish"),
2852         "zh_CN" => _("Chinese"),
2853         "vi_VN" => _("Vietnamese"),
2854         "ru_RU" => _("Russian"));
2856   $ret = array();
2857   if($languages_in_own_language){
2859     $old_lang = setlocale(LC_ALL, 0);
2861     /* If the locale wasn't correclty set before, there may be an incorrect
2862         locale returned. Something like this: 
2863           C_CTYPE=de_DE.UTF-8;LC_NUMERIC=C;LC_TIME=de_DE.UTF-8;LC ...
2864         Extract the locale name from this string and use it to restore old locale.
2865      */
2866     if(preg_match("/LC_CTYPE/",$old_lang)){
2867       $old_lang = preg_replace("/^.*LC_CTYPE=([^;]*).*$/","\\1",$old_lang);
2868     }
2869     
2870     foreach($tmp as $key => $name){
2871       $lang = $key.".UTF-8";
2872       setlocale(LC_ALL, $lang);
2873       if($strip_region_tag){
2874         $ret[preg_replace("/^([^_]*).*$/","\\1",$key)] = _($name)." (".$tmp2[$key].")";
2875       }else{
2876         $ret[$key] = _($name)." &nbsp;(".$tmp2[$key].")";
2877       }
2878     }
2879     setlocale(LC_ALL, $old_lang);
2880   }else{
2881     foreach($tmp as $key => $name){
2882       if($strip_region_tag){
2883         $ret[preg_replace("/^([^_]*).*/","\\1",$key)] = _($name);
2884       }else{
2885         $ret[$key] = _($name);
2886       }
2887     }
2888   }
2889   return($ret);
2893 /*! \brief Returns contents of the given POST variable and check magic quotes settings
2894  *
2895  * Depending on the magic quotes settings this returns a stripclashed'ed version of
2896  * a certain POST variable.
2897  *
2898  * \param string 'name' the POST var to return ($_POST[$name])
2899  * \return string
2900  * */
2901 function get_post($name)
2903     if(!isset($_POST[$name])){
2904         trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
2905         return(FALSE);
2906     }
2908     // Handle Posted Arrays
2909     $tmp = array();
2910     if(is_array($_POST[$name]) && !is_string($_POST[$name])){
2911         foreach($_POST[$name] as $key => $val){
2912             if(get_magic_quotes_gpc()){
2913                 $val = stripcslashes($val);
2914             }
2915             $tmp[$key] = $val;
2916         } 
2917         return($tmp);
2918     }else{
2920         if(get_magic_quotes_gpc()){
2921             $val = stripcslashes($_POST[$name]);
2922         }else{
2923             $val = $_POST[$name];
2924         }
2925     }
2926   return($val);
2930 /*! \brief Returns contents of the given POST variable and check magic quotes settings
2931  *
2932  * Depending on the magic quotes settings this returns a stripclashed'ed version of
2933  * a certain POST variable.
2934  *
2935  * \param string 'name' the POST var to return ($_POST[$name])
2936  * \return string
2937  * */
2938 function get_binary_post($name)
2940   if(!isset($_POST[$name])){
2941     trigger_error("Requested POST value (".$name.") does not exists, you should add a check to prevent this message.");
2942     return(FALSE);
2943   }
2945   $p = str_replace('\0', '', $_POST[$name]);
2946   if(get_magic_quotes_gpc()){
2947     return(stripcslashes($p));
2948   }else{
2949     return($_POST[$p]);
2950   }
2953 function set_post($value)
2955     // Take care of array, recursivly convert each array entry.
2956     if(is_array($value)){
2957         foreach($value as $key => $val){
2958             $value[$key] = set_post($val);
2959         }
2960         return($value);
2961     }
2962     
2963     // Do not touch boolean values, we may break them.
2964     if($value === TRUE || $value === FALSE ) return($value);
2966     // Return a fixed string which can then be used in HTML fields without 
2967     //  breaking the layout or the values. This allows to use '"<> in input fields.
2968     return(htmlentities($value, ENT_QUOTES, 'utf-8'));
2972 /*! \brief Return class name in correct case */
2973 function get_correct_class_name($cls)
2975   global $class_mapping;
2976   if(isset($class_mapping) && is_array($class_mapping)){
2977     foreach($class_mapping as $class => $file){
2978       if(preg_match("/^".$cls."$/i",$class)){
2979         return($class);
2980       }
2981     }
2982   }
2983   return(FALSE);
2987 /*! \brief  Change the password for a given object ($dn).
2988  *          This method uses the specified hashing method to generate a new password
2989  *           for the object and it also takes care of sambaHashes, if enabled.
2990  *          Finally the postmodify hook of the class 'user' will be called, if it is set.
2991  *
2992  * @param   String   The DN whose password shall be changed.
2993  * @param   String   The new password.
2994  * @param   Boolean  Skip adding samba hashes to the target (sambaNTPassword,sambaLMPassword)
2995  * @param   String   The hashin method to use, default is the global configured default.
2996  * @param   String   The users old password, this allows script based rollback mechanisms,
2997  *                    the prehook will then be called witch switched newPassword/oldPassword. 
2998  * @return  Boolean  TRUE on success else FALSE.
2999  */
3000 function change_password ($dn, $password, $mode=FALSE, $hash= "", $old_password = "", &$message = "")
3002     global $config;
3003     $newpass= "";
3005     // Not sure, why this is here, but maybe some encryption methods require it.
3006     mt_srand((double) microtime()*1000000);
3008     // Get a list of all available password encryption methods.
3009     $methods = new passwordMethod(session::get('config'),$dn);
3010     $available = $methods->get_available_methods();
3012     // Fetch the current object data, to be able to detect the current hashing method
3013     //  and to be able to rollback changes once has an error occured.
3014     $ldap = $config->get_ldap_link();
3015     $ldap->cat ($dn, array("shadowLastChange", "userPassword","sambaNTPassword","sambaLMPassword", "uid"));
3016     $attrs = $ldap->fetch ();
3017     $initialAttrs = $attrs;
3019     // If no hashing method is enforced, then detect what method we've to use.
3020     $hash = strtolower($hash);
3021     if(empty($hash)){
3023         // Do we need clear-text password for this object?
3024         if(isset($attrs['userPassword'][0]) && !preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0])){
3025             $hash = "clear";
3026             $test = new $available[$hash]($config,$dn);
3027             $test->set_hash($hash);
3028         }
3030         // If we've still no valid hashing method detected, then try to extract if from the userPassword attribute.
3031         elseif(isset($attrs['userPassword'][0]) && preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0], $matches)){
3032             $test = passwordMethod::get_method($attrs['userPassword'][0],$dn);
3033             $hash = $test->get_hash_name();
3034         }
3036         // No current password was found and no hash is enforced, so we've to use the config default here.
3037         $hash = $config->get_cfg_value('core','passwordDefaultHash');
3038         $test = new $available[$hash]($config,$dn);
3039         $test->set_hash($hash);
3040     }else{
3041         $test = new $available[$hash]($config,$dn);
3042         $test->set_hash($hash);
3043     }
3045     // We've now a valid password-method-handle and can create the new password hash or don't we?
3046     if(!$test instanceOf passwordMethod){
3047         $message = _("Cannot detect password hash!");
3048     }else{
3050         // Feed password backends with object information. 
3051         $test->dn = $dn;
3052         $test->attrs = $attrs;
3053         $newpass= $test->generate_hash($password);
3055         // Do we have to append samba attributes too?
3056         // - sambaNTPassword / sambaLMPassword
3057         $tmp = $config->get_cfg_value('core','sambaHashHook');
3058         $attrs= array();
3059         if (!$mode && !empty($tmp)){
3060             $attrs= generate_smb_nt_hash($password);
3061             $shadow = (isset($attrs["shadowLastChange"][0]))?(int)(date("U") / 86400):0;
3062             if ($shadow != 0){
3063                 $attrs['shadowLastChange']= $shadow;
3064             }
3065         }
3067         // Write back the new password hash 
3068         $ldap->cd($dn);
3069         $attrs['userPassword']= $newpass;
3071         // Prepare a special attribute list, which will be used for event hook calls
3072         $attrsEvent = array();
3073         foreach($initialAttrs as $name => $value){
3074             if(!is_numeric($name))
3075                 $attrsEvent[$name] = escapeshellarg($value[0]);
3076         }
3077         $attrsEvent['dn'] = escapeshellarg($initialAttrs['dn']);
3078         foreach($attrs as $name => $value){
3079             $attrsEvent[$name] = escapeshellarg($value);
3080         }
3081         $attrsEvent['current_password'] = escapeshellarg($old_password);
3082         $attrsEvent['new_password'] = escapeshellarg($password);
3084         // Call the premodify hook now
3085         $passwordPlugin = new password($config,$dn);
3086         plugin::callHook($passwordPlugin, 'PREMODIFY', $attrsEvent, $output,$retCode,$error, $directlyPrintError = FALSE);
3087         if($retCode === 0 && count($output)){
3088             $message = sprintf(_("Pre-event hook reported a problem: %s. Password change canceled!"),implode($output));
3089             return(FALSE);
3090         }
3092         // Perform ldap operations
3093         $ldap->modify($attrs);
3095         // Check if the object was locked before, if it was, lock it again!
3096         $deactivated = $test->is_locked($config,$dn);
3097         if($deactivated){
3098             $test->lock_account($config,$dn);
3099         }
3101         // Check if everything went fine and then call the post event hooks.
3102         // If an error occures, then try to rollback the complete actions done.
3103         $preRollback = FALSE;
3104         $ldapRollback = FALSE;
3105         $success = TRUE;
3106         if (!$ldap->success()) {
3107             new log("modify","users/passwordMethod",$dn,array(),"Password change - ldap modifications! - FAILED");
3108             $success =FALSE;
3109             $message = msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD);
3110             $preRollback  =TRUE;
3111         } else {
3113             // Now call the passwordMethod change mechanism.
3114             if(!$test->set_password($password)){
3115                 $ldapRollback = TRUE;
3116                 $preRollback  =TRUE;
3117                 $success = FALSE;
3118                 new log("modify","users/passwordMethod",$dn,array(),"Password change - set_password! - FAILED");
3119                 $message = _("Password change failed!");
3120             }else{
3121         
3122                 // Execute the password hook
3123                 plugin::callHook($passwordPlugin, 'POSTMODIFY', $attrsEvent, $output,$retCode,$error, $directlyPrintError = FALSE);
3124                 if($retCode === 0){
3125                     if(count($output)){
3126                         new log("modify","users/passwordMethod",$dn,array(),"Password change - Post modify hook reported! - FAILED!");
3127                         $message = sprintf(_("Post-event hook reported a problem: %s. Password change canceled!"),implode($output));
3128                         $ldapRollback = TRUE;
3129                         $preRollback = TRUE;
3130                         $success = FALSE;
3131                     }else{
3132                         #new log("modify","users/passwordMethod",$dn,array(),"Password change - successfull!");
3133                     }
3134                 }else{
3135                     $ldapRollback = TRUE;
3136                     $preRollback = TRUE;
3137                     $success = FALSE;
3138                     new log("modify","users/passwordMethod",$dn,array(),"Password change - postmodify hook execution! - FAILED");
3139                     new log("modify","users/passwordMethod",$dn,array(),$error);
3141                     // Call password method again and send in old password to 
3142                     //  keep the database consistency
3143                     $test->set_password($old_password);
3144                 }
3145             }
3146         }
3148         // Setting the password in the ldap database or further operation failed, we should now execute 
3149         //  the plugins pre-event hook, using switched passwords, new/old password.
3150         // This ensures that passwords which were set outside of GOsa, will be reset to its 
3151         //  starting value.
3152         if($preRollback){
3153             new log("modify","users/passwordMethod",$dn,array(),"Rolling back premodify hook!");
3154             $oldpass= $test->generate_hash($old_password);
3155             $attrsEvent['current_password'] = escapeshellarg($password);
3156             $attrsEvent['new_password'] = escapeshellarg($old_password);
3157             foreach(array("userPassword","sambaNTPassword","sambaLMPassword") as $attr){
3158                 if(isset($initialAttrs[$attr][0])) $attrsEvent[$attr] = $initialAttrs[$attr][0];
3159             }
3160             
3161             plugin::callHook($passwordPlugin, 'PREMODIFY', $attrsEvent, $output,$retCode,$error, $directlyPrintError = FALSE);
3162             if($retCode === 0 && count($output)){
3163                 $message = sprintf(_("Pre-event hook reported a problem: %s. Password change canceled!"),implode($output));
3164                 new log("modify","users/passwordMethod",$dn,array(),"Rolling back premodify hook! - FAILED!");
3165             }
3166         }
3167         
3168         // We've written the password to the ldap database, but executing the postmodify hook failed.
3169         // Now, we've to rollback all password related ldap operations.
3170         if($ldapRollback){
3171             new log("modify","users/passwordMethod",$dn,array(),"Rolling back ldap modifications!");
3172             $attrs = array();
3173             foreach(array("userPassword","sambaNTPassword","sambaLMPassword") as $attr){
3174                 if(isset($initialAttrs[$attr][0])) $attrs[$attr] = $initialAttrs[$attr][0];
3175             }
3176             $ldap->cd($dn);
3177             $ldap->modify($attrs);
3178             if(!$ldap->success()){
3179                 $message = msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD);
3180                 new log("modify","users/passwordMethod",$dn,array(),"Rolling back ldap modifications! - FAILED");
3181             }
3182         }
3184         // Log action.
3185         if($success){
3186             stats::log('global', 'global', array('users'),  $action = 'change_password', $amount = 1, 0, $test->get_hash());
3187             new log("modify","users/passwordMethod",$dn,array(),"Password change - successfull!");
3188         }else{
3189             new log("modify","users/passwordMethod",$dn,array(),"Password change - FAILED!");
3190         }
3192         return($success);
3193     }
3197 /*! \brief Generate samba hashes
3198  *
3199  * Given a certain password this constructs an array like
3200  * array['sambaLMPassword'] etc.
3201  *
3202  * \param string 'password'
3203  * \return array contains several keys for lmPassword, ntPassword, pwdLastSet, etc. depending
3204  * on the samba version
3205  */
3206 function generate_smb_nt_hash($password)
3208   global $config;
3210   // First try to retrieve values via RPC 
3211   if ($config->get_cfg_value("core","gosaRpcServer") != ""){
3213     $rpc = $config->getRpcHandle();
3214     $hash = $rpc->mksmbhash($password);
3215     if(!$rpc->success()){
3216         msg_dialog::display(_("Error"),msgPool::rpcError($rpc->get_error()),ERROR_DIALOG);
3217         return("");
3218     }
3220   }elseif ($config->get_cfg_value("core","gosaSupportURI") != ""){
3222     // Try using gosa-si
3223         $res= gosaSupportDaemon::send("gosa_gen_smb_hash", "GOSA", array("password" => $password), TRUE);
3224     if (isset($res['XML']['HASH'])){
3225         $hash= $res['XML']['HASH'];
3226     } else {
3227       $hash= "";
3228     }
3230     if ($hash == "") {
3231       msg_dialog::display(_("Configuration error"), _("Cannot generate SAMBA hash!"), ERROR_DIALOG);
3232       return ("");
3233     }
3234   } else {
3235           $tmp = $config->get_cfg_value("core",'sambaHashHook');
3236       $tmp = preg_replace("/%userPassword/", escapeshellarg($password), $tmp);
3237       $tmp = preg_replace("/%password/", escapeshellarg($password), $tmp);
3238           @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
3240           exec($tmp, $ar);
3241           flush();
3242           reset($ar);
3243           $hash= current($ar);
3245     if ($hash == "") {
3246       msg_dialog::display(_("Configuration error"), sprintf(_("Generating SAMBA hash by running %s failed: check %s!"), bold($config->get_cfg_value("core",'sambaHashHook'), bold("sambaHashHook"))), ERROR_DIALOG);
3247       return ("");
3248     }
3249   }
3251   list($lm,$nt)= explode(":", trim($hash));
3253   $attrs['sambaLMPassword']= $lm;
3254   $attrs['sambaNTPassword']= $nt;
3255   $attrs['sambaPwdLastSet']= date('U');
3256   $attrs['sambaBadPasswordCount']= "0";
3257   $attrs['sambaBadPasswordTime']= "0";
3258   return($attrs);
3262 /*! \brief Get the Change Sequence Number of a certain DN
3263  *
3264  * To verify if a given object has been changed outside of Gosa
3265  * in the meanwhile, this function can be used to get the entryCSN
3266  * from the LDAP directory. It uses the attribute as configured
3267  * in modificationDetectionAttribute
3268  *
3269  * \param string 'dn'
3270  * \return either the result or "" in any other case
3271  */
3272 function getEntryCSN($dn)
3274   global $config;
3275   if(empty($dn) || !is_object($config)){
3276     return("");
3277   }
3279   /* Get attribute that we should use as serial number */
3280   $attr= $config->get_cfg_value("core","modificationDetectionAttribute");
3281   if($attr != ""){
3282     $ldap = $config->get_ldap_link();
3283     $ldap->cat($dn,array($attr));
3284     $csn = $ldap->fetch();
3285     if(isset($csn[$attr][0])){
3286       return($csn[$attr][0]);
3287     }
3288   }
3289   return("");
3293 /*! \brief Add (a) given objectClass(es) to an attrs entry
3294  * 
3295  * The function adds the specified objectClass(es) to the given
3296  * attrs entry.
3297  *
3298  * \param mixed 'classes' Either a single objectClass or several objectClasses
3299  * as an array
3300  * \param array 'attrs' The attrs array to be modified.
3301  *
3302  * */
3303 function add_objectClass($classes, &$attrs)
3305   if (is_array($classes)){
3306     $list= $classes;
3307   } else {
3308     $list= array($classes);
3309   }
3311   foreach ($list as $class){
3312     $attrs['objectClass'][]= $class;
3313   }
3317 /*! \brief Removes a given objectClass from the attrs entry
3318  *
3319  * Similar to add_objectClass, except that it removes the given
3320  * objectClasses. See it for the params.
3321  * */
3322 function remove_objectClass($classes, &$attrs)
3324   if (isset($attrs['objectClass'])){
3325     /* Array? */
3326     if (is_array($classes)){
3327       $list= $classes;
3328     } else {
3329       $list= array($classes);
3330     }
3332     $tmp= array();
3333     foreach ($attrs['objectClass'] as $oc) {
3334       foreach ($list as $class){
3335         if (strtolower($oc) != strtolower($class)){
3336           $tmp[]= $oc;
3337         }
3338       }
3339     }
3340     $attrs['objectClass']= $tmp;
3341   }
3345 /*! \brief  Initialize a file download with given content, name and data type. 
3346  *  \param  string data The content to send.
3347  *  \param  string name The name of the file.
3348  *  \param  string type The content identifier, default value is "application/octet-stream";
3349  */
3350 function send_binary_content($data,$name,$type = "application/octet-stream")
3352   header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
3353   header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
3354   header("Cache-Control: no-cache");
3355   header("Pragma: no-cache");
3356   header("Cache-Control: post-check=0, pre-check=0");
3357   header("Content-type: ".$type."");
3359   $HTTP_USER_AGENT = $_SERVER['HTTP_USER_AGENT'];
3361   /* Strip name if it is a complete path */
3362   if (preg_match ("/\//", $name)) {
3363         $name= basename($name);
3364   }
3365   
3366   /* force download dialog */
3367   if (preg_match('/MSIE 5.5/', $HTTP_USER_AGENT) || preg_match('/MSIE 6.0/', $HTTP_USER_AGENT)) {
3368     header('Content-Disposition: filename="'.$name.'"');
3369   } else {
3370     header('Content-Disposition: attachment; filename="'.$name.'"');
3371   }
3373   echo $data;
3374   exit();
3378 function reverse_html_entities($str,$type = ENT_QUOTES , $charset = "UTF-8")
3380   if(is_string($str)){
3381     return(htmlentities($str,$type,$charset));
3382   }elseif(is_array($str)){
3383     foreach($str as $name => $value){
3384       $str[$name] = reverse_html_entities($value,$type,$charset);
3385     }
3386   }
3387   return($str);
3391 /*! \brief Encode special string characters so we can use the string in \
3392            HTML output, without breaking quotes.
3393     \param string The String we want to encode.
3394     \return string The encoded String
3395  */
3396 function xmlentities($str)
3397
3398   if(is_string($str)){
3400     static $asc2uni= array();
3401     if (!count($asc2uni)){
3402       for($i=128;$i<256;$i++){
3403     #    $asc2uni[chr($i)] = "&#x".dechex($i).";";
3404       }
3405     }
3407     $str = str_replace("&", "&amp;", $str);
3408     $str = str_replace("<", "&lt;", $str);
3409     $str = str_replace(">", "&gt;", $str);
3410     $str = str_replace("'", "&apos;", $str);
3411     $str = str_replace("\"", "&quot;", $str);
3412     $str = str_replace("\r", "", $str);
3413     $str = strtr($str,$asc2uni);
3414     return $str;
3415   }elseif(is_array($str)){
3416     foreach($str as $name => $value){
3417       $str[$name] = xmlentities($value);
3418     }
3419   }
3420   return($str);
3424 /*! \brief  Updates all accessTo attributes from a given value to a new one.
3425             For example if a host is renamed.
3426     \param  String  $from The source accessTo name.
3427     \param  String  $to   The destination accessTo name.
3428 */
3429 function update_accessTo($from,$to)
3431   global $config;
3432   $ldap = $config->get_ldap_link();
3433   $ldap->cd($config->current['BASE']);
3434   $ldap->search("(&(objectClass=trustAccount)(accessTo=".$from."))",array("objectClass","accessTo"));
3435   while($attrs = $ldap->fetch()){
3436     $new_attrs = array("accessTo" => array());
3437     $dn = $attrs['dn'];
3438     for($i = 0 ; $i < $attrs['accessTo']['count']; $i++){
3439       if($attrs['accessTo'][$i] == $from){
3440         if(!empty($to)){
3441           $new_attrs['accessTo'][] =  $to;
3442         }
3443       }else{
3444         $new_attrs['accessTo'][] =  $attrs['accessTo'][$i]; 
3445       }
3446     }
3447     $ldap->cd($dn);
3448     $ldap->modify($new_attrs);
3449     if (!$ldap->success()){
3450       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD, "update_accessTo($from,$to)"));
3451     }
3452     new log("modify","update_accessTo($from,$to)",$dn,array_keys($new_attrs),$ldap->get_error());
3453   }
3457 /*! \brief Returns a random char */
3458 function get_random_char () {
3459      $randno = rand (0, 63);
3460      if ($randno < 12) {
3461          return (chr ($randno + 46)); // Digits, '/' and '.'
3462      } else if ($randno < 38) {
3463          return (chr ($randno + 53)); // Uppercase
3464      } else {
3465          return (chr ($randno + 59)); // Lowercase
3466      }
3470 function cred_encrypt($input, $password) {
3472   $size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
3473   $iv = mcrypt_create_iv($size, MCRYPT_DEV_RANDOM);
3475   return bin2hex(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $password, $input, MCRYPT_MODE_ECB, $iv));
3480 function cred_decrypt($input,$password) {
3481   $size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
3482   $iv = mcrypt_create_iv($size, MCRYPT_DEV_RANDOM);
3484   return mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $password, pack("H*", $input), MCRYPT_MODE_ECB, $iv);
3488 function get_object_info()
3490   return(session::get('objectinfo'));
3494 function set_object_info($str = "")
3496   session::set('objectinfo',$str);
3500 function isIpInNet($ip, $net, $mask) {
3501    // Move to long ints
3502    $ip= ip2long($ip);
3503    $net= ip2long($net);
3504    $mask= ip2long($mask);
3506    // Mask given IP with mask. If it returns "net", we're in...
3507    $res= $ip & $mask;
3509    return ($res == $net);
3513 function get_next_id($attrib, $dn)
3515   global $config;
3517   switch ($config->get_cfg_value("core","idAllocationMethod")){
3518     case "pool":
3519       return get_next_id_pool($attrib);
3520     case "traditional":
3521       return get_next_id_traditional($attrib, $dn);
3522   }
3524   msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." "._("unknown idAllocation method!"), ERROR_DIALOG);
3525   return null;
3529 function get_next_id_pool($attrib) {
3530   global $config;
3532   /* Fill informational values */
3533   $min= $config->get_cfg_value("core","${attrib}PoolMin");
3534   $max= $config->get_cfg_value("core","${attrib}PoolMax");
3536   /* Sanity check */
3537   if ($min >= $max) {
3538     msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." ".sprintf(_("%sPoolMin >= %sPoolMax!"), bold($attrib), bold($attrib)), ERROR_DIALOG);
3539     return null;
3540   }
3542   /* ID to skip */
3543   $ldap= $config->get_ldap_link();
3544   $id= null;
3546   /* Try to allocate the ID several times before failing */
3547   $tries= 3;
3548   while ($tries--) {
3550     /* Look for ID map entry */
3551     $ldap->cd ($config->current['BASE']);
3552     $ldap->search ("(&(objectClass=sambaUnixIdPool)($attrib=*))", array("$attrib"));
3554     /* If it does not exist, create one with these defaults */
3555     if ($ldap->count() == 0) {
3556       /* Fill informational values */
3557       $minUserId= $config->get_cfg_value("core","uidNumberPoolMin");
3558       $minGroupId= $config->get_cfg_value("core","gidNumberPoolMin");
3560       /* Add as default */
3561       $attrs= array("objectClass" => array("organizationalUnit", "sambaUnixIdPool"));
3562       $attrs["ou"]= "idmap";
3563       $attrs["uidNumber"]= $minUserId;
3564       $attrs["gidNumber"]= $minGroupId;
3565       $ldap->cd("ou=idmap,".$config->current['BASE']);
3566       $ldap->add($attrs);
3567       if ($ldap->error != "Success") {
3568         msg_dialog::display(_("Error"), _("Cannot create sambaUnixIdPool entry!"), ERROR_DIALOG);
3569         return null;
3570       }
3571       $tries++;
3572       continue;
3573     }
3574     /* Bail out if it's not unique */
3575     if ($ldap->count() != 1) {
3576       msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." "._("sambaUnixIdPool is not unique!"), ERROR_DIALOG);
3577       return null;
3578     }
3580     /* Store old attrib and generate new */
3581     $attrs= $ldap->fetch();
3582     $dn= $ldap->getDN();
3583     $oldAttr= $attrs[$attrib][0];
3584     $newAttr= $oldAttr + 1;
3586     /* Sanity check */
3587     if ($newAttr >= $max) {
3588       msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." "._("no ID available!"), ERROR_DIALOG);
3589       return null;
3590     }
3591     if ($newAttr < $min) {
3592       msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." "._("no ID available!"), ERROR_DIALOG);
3593       return null;
3594     }
3596     #FIXME: PHP is not able to do a modification of "del: .../add: ...", so this
3597     #       is completely unsafe in the moment.
3598     #/* Remove old attr, add new attr */
3599     #$attrs= array($attrib => $oldAttr);
3600     #$ldap->rm($attrs, $dn);
3601     #if ($ldap->error != "Success") {
3602     #  continue;
3603     #}
3604     $ldap->cd($dn);
3605     $ldap->modify(array($attrib => $newAttr));
3606     if ($ldap->error != "Success") {
3607       msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." ".$ldap->get_error(), ERROR_DIALOG);
3608       return null;
3609     } else {
3610       return $oldAttr;
3611     }
3612   }
3614   /* Bail out if we had problems getting the next id */
3615   if (!$tries) {
3616     msg_dialog::display(_("Error"), _("Cannot allocate free ID:")." "._("maximum number of tries exceeded!"), ERROR_DIALOG);
3617   }
3619   return $id;
3623 function get_next_id_traditional($attrib, $dn)
3625   global $config;
3627   $ids= array();
3628   $ldap= $config->get_ldap_link();
3630   $ldap->cd ($config->current['BASE']);
3631   if (preg_match('/gidNumber/i', $attrib)){
3632     $oc= "posixGroup";
3633   } else {
3634     $oc= "posixAccount";
3635   }
3636   $ldap->search ("(&(objectClass=$oc)($attrib=*))", array("$attrib"));
3638   /* Get list of ids */
3639   while ($attrs= $ldap->fetch()){
3640     $ids[]= (int)$attrs["$attrib"][0];
3641   }
3643   /* Add the nobody id */
3644   $ids[]= 65534;
3646   /* get the ranges */
3647   $tmp = array('0'=> 1000);
3648   if (preg_match('/posixAccount/', $oc) && $config->get_cfg_value("core","uidNumberBase") != ""){
3649     $tmp= explode('-',$config->get_cfg_value("core","uidNumberBase"));
3650   } elseif($config->get_cfg_value("core","gidNumberBase") != ""){
3651     $tmp= explode('-',$config->get_cfg_value("core","gidNumberBase"));
3652   }
3654   /* Set hwm to max if not set - for backward compatibility */
3655   $lwm= $tmp[0];
3656   if (isset($tmp[1])){
3657     $hwm= $tmp[1];
3658   } else {
3659     $hwm= pow(2,32);
3660   }
3661   /* Find out next free id near to UID_BASE */
3662   if ($config->get_cfg_value("core","baseIdHook") == ""){
3663     $base= $lwm;
3664   } else {
3665     /* Call base hook */
3666     $base= get_base_from_hook($dn, $attrib);
3667   }
3668   for ($id= $base; $id++; $id < pow(2,32)){
3669     if (!in_array($id, $ids)){
3670       return ($id);
3671     }
3672   }
3674   /* Should not happen */
3675   if ($id == $hwm){
3676     msg_dialog::display(_("Error"), _("Cannot allocate free ID!"), ERROR_DIALOG);
3677     exit;
3678   }
3682 /* Mark the occurance of a string with a span */
3683 function mark($needle, $haystack, $ignorecase= true)
3685   $result= "";
3687   while (preg_match('/^(.*)('.preg_quote($needle).')(.*)$/i', $haystack, $matches)) {
3688     $result.= $matches[1]."<span class='mark'>".$matches[2]."</span>";
3689     $haystack= $matches[3];
3690   }
3692   return $result.$haystack;
3696 /* Return an image description using the path */
3697 function image($path, $action= "", $title= "", $align= "middle")
3699   global $config;
3700   global $BASE_DIR;
3701   $label= null;
3703   // Bail out, if there's no style file
3704   if(!session::global_is_set("img-styles")){
3706     // Get theme
3707     if (isset ($config)){
3708       $theme= $config->get_cfg_value("core","theme");
3709     } else {
3711       // Fall back to default theme
3712       $theme= "default";
3713     }
3715     if (!file_exists("$BASE_DIR/ihtml/themes/$theme/img.styles")){
3716       die ("No img.style for this theme found!");
3717     }
3719     session::global_set('img-styles', unserialize(file_get_contents("$BASE_DIR/ihtml/themes/$theme/img.styles")));
3720   }
3721   $styles= session::global_get('img-styles');
3723   /* Extract labels from path */
3724   if (preg_match("/\.png\[(.*)\]$/", $path, $matches)) {
3725     $label= $matches[1];
3726   }
3728   $lbl= "";
3729   if ($label) {
3730     if (isset($styles["images/label-".$label.".png"])) {
3731       $lbl= "<div style='".$styles["images/label-".$label.".png"]."'></div>";
3732     } else {
3733       die("Invalid label specified: $label\n");
3734     }
3736     $path= preg_replace("/\[.*\]$/", "", $path);
3737   }
3739   // Non middle layout?
3740   if ($align == "middle") {
3741     $align= "";
3742   } else {
3743     $align= ";vertical-align:$align";
3744   }
3746   // Clickable image or not?
3747   if ($title != "") {
3748     $title= "title='$title'";
3749   }
3750   if ($action == "") {
3751     return "<div class='img' $title style='".$styles[$path]."$align'>$lbl</div>";
3752   } else {
3753     return "<input type='submit' class='img' id='$action' value='' name='$action' $title style='".$styles[$path]."$align'>";
3754   }
3757 /*! \brief    Encodes a complex string to be useable in HTML posts.
3758  */
3759 function postEncode($str)
3761   return(preg_replace("/=/","_", base64_encode($str)));
3764 /*! \brief    Decodes a string encoded by postEncode
3765  */
3766 function postDecode($str)
3768   return(base64_decode(preg_replace("/_/","=", $str)));
3772 /*! \brief    Generate styled output
3773  */
3774 function bold($str)
3776   return "<span class='highlight'>$str</span>";
3781 /*! \brief  Detect the special character handling for the currently used ldap database. 
3782  *          For example some convert , to \2C or " to \22.
3783  *         
3784  *  @param      Config  The GOsa configuration object.
3785  *  @return     Array   An array containing a character mapping the use.
3786  */
3787 function detectLdapSpecialCharHandling()
3789     // The list of chars to test for
3790     global $config;
3791     if(!$config) return(NULL);
3793     // In the DN we've to use escaped characters, but the object name (o)
3794     //  has the be un-escaped.
3795     $name = 'GOsaLdapEncoding_,_"_(_)_+';
3796     $dnName = 'GOsaLdapEncoding_\,_\"_(_)_\+';
3797    
3798     // Prapare name to be useable in filters
3799     $fixed= normalizeLdap(str_replace('\\\\', '\\\\\\', $name));
3800     $filterName = str_replace('\\,', '\\\\,', $fixed);
3801  
3802     // Create the target dn
3803     $oDN = "o={$dnName},".$config->current['BASE'];
3805     // Get ldap connection and check if we've already created the character 
3806     //  detection object. 
3807     $ldapCID = ldap_connect($config->current['SERVER']);
3808     ldap_set_option($ldapCID, LDAP_OPT_PROTOCOL_VERSION, 3);
3809     ldap_bind($ldapCID, $config->current['ADMINDN'],$config->current['ADMINPASSWORD']);
3810     $res = ldap_list($ldapCID, $config->current['BASE'], 
3811             "(&(o=".$filterName.")(objectClass=organization))",
3812             array('dn'));
3814     // If we haven't created the character-detection object, then create it now.
3815     $cnt = ldap_count_entries($ldapCID, $res);
3816     if(!$cnt){
3817         $obj = array();
3818         $obj['objectClass'] = array('top','organization');
3819         $obj['o'] = $name;
3820         $obj['description'] = 'GOsa character encoding test-object.';
3821         if(!@ldap_add($ldapCID, $oDN, $obj)){
3822             trigger_error("GOsa couldn't detect the special character handling used by your ldap!");
3823             return(NULL);
3824         }
3825     }
3826     
3827     // Read the character-handling detection entry from the ldap.
3828     $res = ldap_list($ldapCID, $config->current['BASE'],
3829             "(&(o=".$filterName.")(objectClass=organization))",
3830             array('dn','o'));
3831     $cnt = ldap_count_entries($ldapCID, $res);
3832     if($cnt != 1 || !$res){
3833         trigger_error("GOsa couldn't detect the special character handling used by your ldap!");
3834         return(NULL);
3835     }else{
3837         // Get the character handling entry from the ldap and check how the 
3838         //  values were written. Compare them with what
3839         //  we've initially intended to write and create a mapping out 
3840         //  of the results.
3841         $re = ldap_first_entry($ldapCID, $res);
3842         $attrs = ldap_get_attributes($ldapCID, $re);
3843    
3844         // Extract the interessting characters out of the dn and the 
3845         //  initially used $name for the entry. 
3846         $mapDNstr = preg_replace("/^o=GOsaLdapEncoding_([^,]*),.*$/","\\1", trim(ldap_get_dn($ldapCID, $re)));
3847         $mapDN = preg_split("/_/", $mapDNstr,0, PREG_SPLIT_NO_EMPTY);
3849         $mapNameStr = preg_replace("/^GOsaLdapEncoding_/","",$dnName);
3850         $mapName = preg_split("/_/", $mapNameStr,0, PREG_SPLIT_NO_EMPTY);
3852         // Create a mapping out of the results.
3853         $map = array();
3854         foreach($mapName as $key => $entry){
3855             $map[$entry] = $mapDN[$key];
3856         }
3857         return($map);
3858     }
3859     return(NULL);
3863 /*! \brief  Replaces placeholder in a given string.
3864  *          For example:
3865  *            '%uid@gonicus.de'         Replaces '%uid' with 'uid'.
3866  *            '{%uid[0]@gonicus.de}'    Replaces '%uid[0]' with the first char of 'uid'.
3867  *            '%uid[2-4]@gonicus.de'    Replaces '%uid[2-4]' with three chars from 'uid' starting from the second.
3868  *      
3869  *          The surrounding {} in example 2 are optional.
3870  *
3871  *  @param  String  The string to perform the action on.
3872  *  @param  Array   An array of replacements.
3873  *  @return     The resulting string.
3874  */
3875 function fillReplacements($str, $attrs, $shellArg = FALSE, $default = "")
3877     // Search for '{%...[n-m]}
3878     // Get all matching parts of the given string and sort them by
3879     //  length, to avoid replacing strings like '%uidNumber' with 'uid'
3880     //  instead of 'uidNumber'; The longest tring at first.
3881     preg_match_all('/(\{?%([a-z0-9]+)(\[(([0-9]+)(\-([0-9]+))?)\])?\}?)/i', $str ,$matches, PREG_SET_ORDER);
3882     $hits = array();
3883     foreach($matches as $match){
3884         $hits[strlen($match[2]).$match[0]] = $match;
3885     }
3886     krsort($hits);
3888     // Replace the placeholder in the given string now.
3889     foreach($hits as $match){
3891         // Avoid errors about undefined index.
3892         $name = $match[2];
3893         if(!isset($attrs[$name])) $attrs[$name] = $default;
3895         // Calculate the replacement
3896         $start = (isset($match[5])) ? $match[5] : 0;
3897         $end = strlen($attrs[$name]);
3898         if(isset($match[5]) && !isset($match[7])){
3899             $end = 1;
3900         }elseif(isset($match[5]) && isset($match[7])){
3901             $end = ($match[7]-$start+1);
3902         }
3903         $value  = substr($attrs[$name], $start, $end);
3905         // Use values which are valid for shell execution?
3906         if($shellArg) $value = escapeshellarg($value);
3908         // Replace the placeholder within the string.
3909         $str = preg_replace("/".preg_quote($match[0],'/')."/", $value, $str);
3910     }
3911     return($str);
3914 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
3915 ?>