Code

Updated plugin
[gosa.git] / include / class_password-methods.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2004  Cajus Pollmeier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
22 class passwordMethod
23 {
24   var $config = false;
25   var $attrs= array();
27   // Konstructor
28   function passwordMethod($config)
29   {
30   }
32   // Loads Methods in annother way as  get_available_methods do, (For setup ..)
33   // and loads them,.
34   function get_available_methods_if_not_loaded($path_to_load="../include")
35   {
36     $oh = opendir($path_to_load);
37     $i = 0; 
38     $ret = false;
39     while ($file = readdir($oh)) {
40       $one = strtolower($file); 
41       if((strstr($one,"class_password-methods-" ))&&($one[0]!=".")){
42         require_once($file);
43       }
44     }
45     return(passwordMethod::get_available_methods());
46   }
51   // Crypts a single string, with given Method
52   function crypt_single_str($string,$method)
53   {
54     $available = passwordMethod::get_available_methods();
55     if(!is_array($available))
56     {
57       $available = passwordMethod::get_available_methods_if_not_loaded();
58     }
60     $test = new  $available[$method](false);
61     $newpass =  $test->generate_hash($string);
62     return( $newpass); 
63   }
66   // this function returns all loaded classes for password encryption
67   function get_available_methods()
68   {
69     $ret =false;
70     $all = get_declared_classes();
71     $i = 0;
72     foreach($all as $one) {
73       if(preg_match('/passwordMethod/i', $one) && !preg_match("/^passwordMethod$/i", $one)){
74         $name = preg_replace ("/passwordMethod/i", "", $one);
75         $test = new $one(false);
76         if($test->is_available()) {
77           $plugname= strtolower(preg_replace ("/passwordMethod/i","",$one));
78           $ret['name'][$i]= $plugname;
79           $ret['class'][$i]=$one;
80           $ret[$i]['name']= $plugname;
81           $ret[$i]['class']= $one;
82           $ret[$plugname]=$one;                    
83           $i++;
84         }
85       }
86     }
87     return($ret);
88   }
90 }
92 // change_password, changes the Password, of the given dn
93 function change_password ($dn, $password, $mode=0, $hash= "")
94 {
95   global $config;
96   $newpass= "";
98   // Get all available encryption Methods 
100   // NON STATIC CALL :)
101   $tmp = new passwordMethod($_SESSION['config']);
102   $available = $tmp->get_available_methods();
104   // read current password entry for $dn, to detect the encryption Method
105   $ldap       = $config->get_ldap_link();
106   $ldap->cat ($dn, array("shadowLastChange", "userPassword", "uid"));
107   $attrs      = $ldap->fetch ();
109   // Set encryption type to clear if required 
110   if (isset($attrs['userPassword'][0]) && preg_match('/^[^{}]+$/', $attrs['userPassword'][0]) && $hash == ""){
111     $hash= "clear";
112   }
114   // Detect the encryption Method
115   if ( (isset($attrs['userPassword'][0]) &&  preg_match ("/^{([^}]+)}(.+)/", $attrs['userPassword'][0], $matches)) ||  $hash != ""){
117     /* Check for supported algorithm */
118     mt_srand((double) microtime()*1000000);
120     /* Extract used hash */
121     if ($hash == ""){
122       $hash= strtolower($matches[1]);
123     }
125     // Crypt with the detected Method
126     $test = new  $available[$hash]($config);
127     $test->attrs= $attrs;
128     $newpass =  $test->generate_hash($password);
130   } else {
131     // Crypt it by default 
132     $test = new  $available['md5']($config);
133     $newpass =  $test->generate_hash($password);
134   }
136   // Update shadow timestamp? 
137   if (isset($attrs["shadowLastChange"][0])){
138     $shadow= (int)(date("U") / 86400);
139   } else {
140     $shadow= 0;
141   }
143   // Write back modified entry 
144   $ldap->cd($dn);
145   $attrs= array();
147   // Not for groups 
148   if ($mode == 0){
150     if ($shadow != 0){
151       $attrs['shadowLastChange']= $shadow;
152     }
154     // Create SMB Password 
155     $attrs= generate_smb_nt_hash($password);
156   }
158   $attrs['userPassword']= array();
159   $attrs['userPassword']= $newpass;
162   $ldap->modify($attrs);
165   if ($ldap->error != 'Success') {
166     print_red(sprintf(_("Setting the password failed. LDAP server says '%s'."),
167           $ldap->get_error()));
168   } else {
170     /* Find postmodify entries for this class */
171     $command= search_config($config->data['MENU'], "password", "POSTMODIFY");
173     if ($command != ""){
174       /* Walk through attribute list */
175       $command= preg_replace("/%userPassword/", $password, $command);
176       $command= preg_replace("/%dn/", $dn, $command);
178       if (check_command($command)){
179         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute");
180         exec($command);
181       } else {
182         $message= sprintf(_("Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."), $command, "password");
183         print_red ($message);
184       }
185     }
186   }
190 // Return something like array['sambaLMPassword']= "lalla..." 
191 function generate_smb_nt_hash($password)
193   global $config;
194   $tmp= $config->data['MAIN']['SMBHASH']." ".escapeshellarg($password);
195   @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
197   exec($tmp, $ar);
198   flush();
199   reset($ar);
200   $hash= current($ar);
201   if ($hash == "")
202   {
203     print_red (sprintf(_("Setting for SMBHASH in %s is incorrect! Can't change Samba password."),CONFIG_FILE));
204   }
205   else 
206   {
207     list($lm,$nt)= split (":", trim($hash));
209     if ($config->current['SAMBAVERSION'] == 3)
210     {
211       $attrs['sambaLMPassword']= $lm;
212       $attrs['sambaNTPassword']= $nt;
213       $attrs['sambaPwdLastSet']= date('U');
214       $attrs['sambaBadPasswordCount']= "0";
215       $attrs['sambaBadPasswordTime']= "0";
216     } else {
217       $attrs['lmPassword']= $lm;
218       $attrs['ntPassword']= $nt;
219       $attrs['pwdLastSet']= date('U');
220     }
221     return($attrs);
222   }
223
225 function crypt_single($string,$enc_type )
227   if(!class_exists("passwordMethod")){
228     require_once("class_password-methods.inc");
229   }
230   return( passwordMethod::crypt_single_str($string,$enc_type));
233 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
234 ?>