Code

Updated FAI summary tab
[gosa.git] / gosa-si / modules / ClientPackages.pm
1 package ClientPackages;
3 use Exporter;
4 @ISA = ("Exporter");
6 # Each module has to have a function 'process_incoming_msg'. This function works as a interface to gosa-sd and receives the msg hash from gosa-sd. 'process_incoming_function checks, wether it has a function to process the incoming msg and forward the msg to it. 
8 use strict;
9 use warnings;
10 use GOSA::GosaSupportDaemon;
11 use IO::Socket::INET;
12 use XML::Simple;
13 use Data::Dumper;
14 use NetAddr::IP;
15 use Net::LDAP;
16 use Net::LDAP::Util;
17 use Socket;
18 use Net::hostent;
20 my $event_dir = "/usr/lib/gosa-si/server/ClientPackages";
21 use lib "/usr/lib/gosa-si/server/ClientPackages";
23 BEGIN{}
24 END {}
26 my ($server_ip, $server_port, $ClientPackages_key, $max_clients, $ldap_uri, $ldap_base, $ldap_admin_dn, $ldap_admin_password, $server_interface);
27 my $server;
28 my $network_interface;
29 my (@ldap_cfg, @pam_cfg, @nss_cfg, $goto_admin, $goto_secret);
30 my $mesg;
32 my %cfg_defaults = (
33 "server" => {
34     "ip" => [\$server_ip, "0.0.0.0"],
35     "mac-address" => [\$main::server_mac_address, "00:00:00:00:00"],
36     "port" => [\$server_port, "20081"],
37     "ldap-uri" => [\$ldap_uri, ""],
38     "ldap-base" => [\$ldap_base, ""],
39     "ldap-admin-dn" => [\$ldap_admin_dn, ""],
40     "ldap-admin-password" => [\$ldap_admin_password, ""],
41     "max-clients" => [\$max_clients, 100],
42     },
43 "ClientPackages" => {
44     "key" => [\$ClientPackages_key, ""],
45     },
46 );
48 ### START #####################################################################
50 # read configfile and import variables
51 &local_read_configfile();
54 # if server_ip is not an ip address but a name
55 if( inet_aton($server_ip) ){ $server_ip = inet_ntoa(inet_aton($server_ip)); } 
56 $network_interface= &get_interface_for_ip($server_ip);
57 $main::server_mac_address= &get_mac($network_interface);
60 # import local events
61 my ($error, $result, $event_hash) = &import_events($event_dir);
63 foreach my $log_line (@$result) {
64     if ($log_line =~ / succeed: /) {
65         &main::daemon_log("0 INFO: ClientPackages - $log_line", 5);
66     } else {
67         &main::daemon_log("0 ERROR: ClientPackages - $log_line", 1);
68     }
69 }
70 # build vice versa event_hash, event_name => module
71 my $event2module_hash = {};
72 while (my ($module, $mod_events) = each %$event_hash) {
73     while (my ($event_name, $nothing) = each %$mod_events) {
74         $event2module_hash->{$event_name} = $module;
75     }
77 }
79 # Unit tag can be defined in config
80 if((not defined($main::gosa_unit_tag)) || length($main::gosa_unit_tag) == 0) {
81         # Read gosaUnitTag from LDAP
82         
83     my $ldap_handle = &main::get_ldap_handle(); 
84     if( defined($ldap_handle) ) {
85                 &main::daemon_log("0 INFO: Searching for servers gosaUnitTag with mac address $main::server_mac_address",5);
86                 # Perform search for Unit Tag
87                 $mesg = $ldap_handle->search(
88                         base   => $ldap_base,
89                         scope  => 'sub',
90                         attrs  => ['gosaUnitTag'],
91                         filter => "(macaddress=$main::server_mac_address)"
92                 );
94                 if ((! $main::server_mac_address eq "00:00:00:00:00:00") and $mesg->count == 1) {
95                         my $entry= $mesg->entry(0);
96                         my $unit_tag= $entry->get_value("gosaUnitTag");
97                         $main::ldap_server_dn= $mesg->entry(0)->dn;
98                         if(defined($unit_tag) && length($unit_tag) > 0) {
99                                 &main::daemon_log("0 INFO: Detected gosaUnitTag $unit_tag for creating entries", 5);
100                                 $main::gosa_unit_tag= $unit_tag;
101                         }
102                 } else {
103                         # Perform another search for Unit Tag
104                         my $hostname= `hostname -f`;
105                         chomp($hostname);
106                         &main::daemon_log("0 INFO: Searching for servers gosaUnitTag with hostname $hostname",5);
107                         $mesg = $ldap_handle->search(
108                                 base   => $ldap_base,
109                                 scope  => 'sub',
110                                 attrs  => ['gosaUnitTag'],
111                                 filter => "(&(cn=$hostname)(objectClass=goServer))"
112                         );
113                         if ($mesg->count == 1) {
114                                 my $entry= $mesg->entry(0);
115                                 my $unit_tag= $entry->get_value("gosaUnitTag");
116                                 $main::ldap_server_dn= $mesg->entry(0)->dn;
117                                 if(defined($unit_tag) && length($unit_tag) > 0) {
118                                         &main::daemon_log("0 INFO: Detected gosaUnitTag $unit_tag for creating entries", 5);
119                                         $main::gosa_unit_tag= $unit_tag;
120                                 }
121                         } else {
122                                 # Perform another search for Unit Tag
123                                 $hostname= `hostname -s`;
124                                 chomp($hostname);
125                                 &main::daemon_log("0 INFO: Searching for servers gosaUnitTag with hostname $hostname",5);
126                                 $mesg = $ldap_handle->search(
127                                         base   => $ldap_base,
128                                         scope  => 'sub',
129                                         attrs  => ['gosaUnitTag'],
130                                         filter => "(&(cn=$hostname)(objectClass=goServer))"
131                                 );
132                                 if ($mesg->count == 1) {
133                                         my $entry= $mesg->entry(0);
134                                         my $unit_tag= $entry->get_value("gosaUnitTag");
135                                         $main::ldap_server_dn= $mesg->entry(0)->dn;
136                                         if(defined($unit_tag) && length($unit_tag) > 0) {
137                                                 &main::daemon_log("INFO: Detected gosaUnitTag $unit_tag for creating entries", 5);
138                                                 $main::gosa_unit_tag= $unit_tag;
139                                         }
140                                 } else {
141                                         &main::daemon_log("0 WARNING: No gosaUnitTag detected. Not using gosaUnitTag", 3);
142                                 }
143                         }
144                 }
145         } else {
146                 &main::daemon_log("0 INFO: Using gosaUnitTag from config-file: $main::gosa_unit_tag",5);
147         }
148     &main::release_ldap_handle($ldap_handle);
152 my $server_address = "$server_ip:$server_port";
153 $main::server_address = $server_address;
156   # Check if ou=incoming exists
157   # TODO: This should be transferred to a module init-function
158   my $ldap_handle = &main::get_ldap_handle();
159   if( defined($ldap_handle) ) {
160     &main::daemon_log("0 INFO: Searching for ou=incoming container for new clients", 5);
161     # Perform search
162     my $mesg = $ldap_handle->search(
163       base   => $ldap_base,
164       scope  => 'one',
165       filter => "(&(ou=incoming)(objectClass=organizationalUnit))"
166     );
167     if(not defined($mesg->count) or $mesg->count == 0) {
168             my $incomingou = Net::LDAP::Entry->new();
169             $incomingou->dn('ou=incoming,'.$ldap_base);
170             $incomingou->add('objectClass' => 'organizationalUnit');
171             $incomingou->add('ou' => 'incoming');
172             my $result = $incomingou->update($ldap_handle);
173             if($result->code != 0) {
174                 &main::daemon_log("0 ERROR: Problem adding ou=incoming: '".$result->error()."'!", 1);
175             }
176     }
177   }
178   &main::release_ldap_handle($ldap_handle);
182 ### functions #################################################################
185 sub get_module_info {
186     my @info = ($server_address,
187                 $ClientPackages_key,
188                 $event_hash,
189                 );
190     return \@info;
194 #===  FUNCTION  ================================================================
195 #         NAME:  local_read_configfile
196 #   PARAMETERS:  cfg_file - string -
197 #      RETURNS:  nothing
198 #  DESCRIPTION:  read cfg_file and set variables
199 #===============================================================================
200 sub local_read_configfile {
201     my $cfg;
202     if( defined( $main::cfg_file) && ( (-s $main::cfg_file) > 0 )) {
203         if( -r $main::cfg_file ) {
204             $cfg = Config::IniFiles->new( -file => $main::cfg_file );
205         } else {
206             print STDERR "Couldn't read config file!";
207         }
208     } else {
209         $cfg = Config::IniFiles->new() ;
210     }
211     foreach my $section (keys %cfg_defaults) {
212         foreach my $param (keys %{$cfg_defaults{ $section }}) {
213             my $pinfo = $cfg_defaults{ $section }{ $param };
214             ${@$pinfo[0]} = $cfg->val( $section, $param, @$pinfo[1] );
215         }
216     }
218     # Read non predefined sections
219     my $param;
220     if ($cfg->SectionExists('ldap')){
221                 foreach $param ($cfg->Parameters('ldap')){
222                         push (@ldap_cfg, "$param ".$cfg->val('ldap', $param));
223                 }
224     }
225     if ($cfg->SectionExists('pam_ldap')){
226                 foreach $param ($cfg->Parameters('pam_ldap')){
227                         push (@pam_cfg, "$param ".$cfg->val('pam_ldap', $param));
228                 }
229     }
230     if ($cfg->SectionExists('nss_ldap')){
231                 foreach $param ($cfg->Parameters('nss_ldap')){
232                         push (@nss_cfg, "$param ".$cfg->val('nss_ldap', $param));
233                 }
234     }
235     if ($cfg->SectionExists('goto')){
236         $goto_admin= $cfg->val('goto', 'terminal_admin');
237         $goto_secret= $cfg->val('goto', 'terminal_secret');
238     } else {
239         $goto_admin= undef;
240         $goto_secret= undef;
241     }
246 #===  FUNCTION  ================================================================
247 #         NAME:  get_mac 
248 #   PARAMETERS:  interface name (i.e. eth0)
249 #      RETURNS:  (mac address) 
250 #  DESCRIPTION:  Uses ioctl to get mac address directly from system.
251 #===============================================================================
252 sub get_mac {
253         my $ifreq= shift;
254         my $result;
255         if ($ifreq && length($ifreq) > 0) { 
256                 if($ifreq eq "all") {
257                         $result = "00:00:00:00:00:00";
258                 } else {
259                         my $SIOCGIFHWADDR= 0x8927;     # man 2 ioctl_list
261                         # A configured MAC Address should always override a guessed value
262                         if ($main::server_mac_address and length($main::server_mac_address) > 0) {
263                                 $result= $main::server_mac_address;
264                         }
266                         socket SOCKET, PF_INET, SOCK_DGRAM, getprotobyname('ip')
267                                 or die "socket: $!";
269                         if(ioctl SOCKET, $SIOCGIFHWADDR, $ifreq) {
270                                 my ($if, $mac)= unpack 'h36 H12', $ifreq;
272                                 if (length($mac) > 0) {
273                                         $mac=~ m/^([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])$/;
274                                         $mac= sprintf("%s:%s:%s:%s:%s:%s", $1, $2, $3, $4, $5, $6);
275                                         $result = $mac;
276                                 }
277                         }
278                 }
279         }
280         return $result;
284 #===  FUNCTION  ================================================================
285 #         NAME:  process_incoming_msg
286 #   PARAMETERS:  crypted_msg - string - incoming crypted message
287 #      RETURNS:  nothing
288 #  DESCRIPTION:  handels the proceeded distribution to the appropriated functions
289 #===============================================================================
290 sub process_incoming_msg {
291     my ($msg, $msg_hash, $session_id) = @_ ;
292     my $error = 0;
293     my $host_name;
294     my $host_key;
295     my @out_msg_l = ("nohandler");
296     my $sql_events;
298     # process incoming msg
299     my $header = @{$msg_hash->{header}}[0]; 
300     my $source = @{$msg_hash->{source}}[0]; 
301     my @target_l = @{$msg_hash->{target}};
303     # skip PREFIX
304     $header =~ s/^CLMSG_//;
306     &main::daemon_log("$session_id DEBUG: ClientPackages: msg to process: $header", 26);
308     if( 0 == length @target_l){     
309         &main::daemon_log("$session_id ERROR: no target specified for msg $header", 1);
310         $error++;
311     } elsif( 1 == length @target_l) {
312         my $target = $target_l[0];
313                 if(&server_matches($target, $session_id)) {
314             if ($header eq 'new_key') {
315                 @out_msg_l = &new_key($msg_hash)
316             } elsif ($header eq 'here_i_am') {
317                 @out_msg_l = &here_i_am($msg, $msg_hash, $session_id)
318             } else {
319                 # a event exists with the header as name
320                 if( exists $event2module_hash->{$header} ) {
321                     &main::daemon_log("$session_id DEBUG: found event '$header' at event-module '".$event2module_hash->{$header}."'", 26);
322                     no strict 'refs';
323                     @out_msg_l = &{$event2module_hash->{$header}."::$header"}($msg, $msg_hash, $session_id);
325                 # if no event handler is implemented   
326                 } else {
327                     $sql_events = "SELECT * FROM $main::known_clients_tn WHERE ( (macaddress LIKE '$source') OR (hostname='$source') )"; 
328                     my $res = $main::known_clients_db->select_dbentry( $sql_events );
329                     my $l = keys(%$res);
331                     # set error if no or more than 1 hits are found for sql query
332                     if ( $l != 1) {
333                         @out_msg_l = ('knownclienterror');
335                     # found exact 1 hit in db
336                     } else {
337                         my $client_events = $res->{'1'}->{'events'};
339                         # client is registered for this event, deliver this message to client
340                         $header =~ s/^answer_//;
341                         if ($client_events =~ /,$header,/) {
342                             # answer message finally arrived destination server, so forward messages to GOsa
343                             if ($target eq $main::server_address) {        
344                                 $msg =~ s/<header>answer_/<header>/;
345                                 $msg =~ s/<target>\S+<\/target>/<target>GOSA<\/target>/;
346                             }
347                             @out_msg_l = ( $msg );
349                         # client is not registered for this event, set error
350                         } else {
351                             @out_msg_l = ('noeventerror');
352                         }
353                     }
354                 }
355             }
357             # if delivery not possible raise error and return 
358             if( not defined $out_msg_l[0] ) {
359                 @out_msg_l = ();
360             } elsif( $out_msg_l[0] eq 'nohandler') {
361                 &main::daemon_log("$session_id ERROR: ClientPackages: no event handler or core function defined for '$header'", 1);
362                 @out_msg_l = ();
363             }  elsif ($out_msg_l[0] eq 'knownclienterror') {
364                 &main::daemon_log("$session_id ERROR: no or more than 1 hits are found at known_clients_db with sql query: '$sql_events'", 1);
365                 &main::daemon_log("$session_id ERROR: processing is aborted and message will not be forwarded", 1);
366                 @out_msg_l = ();
367             } elsif ($out_msg_l[0] eq 'noeventerror') {
368                 &main::daemon_log("$session_id ERROR: client '$target' is not registered for event '$header', processing is aborted", 1); 
369                 @out_msg_l = ();
370             }
371         } else {
372                         &main::daemon_log("DEBUG: msg is not for gosa-si-server '$server_address', deliver it to target '$target'", 26);
373                         push(@out_msg_l, $msg);
374                 }
375     }
377     return \@out_msg_l;
381 #===  FUNCTION  ================================================================
382 #         NAME:  new_passwd
383 #   PARAMETERS:  msg_hash - ref - hash from function create_xml_hash
384 #      RETURNS:  nothing
385 #  DESCRIPTION:  process this incoming message
386 #===============================================================================
387 sub new_key {
388     my ($msg_hash) = @_;
389     my @out_msg_l;
390     
391     my $header = @{$msg_hash->{header}}[0];
392     my $source_name = @{$msg_hash->{source}}[0];
393     my $source_key = @{$msg_hash->{new_key}}[0];
394     my $query_res;
396     # check known_clients_db
397     my $sql_statement = "SELECT * FROM known_clients WHERE hostname='$source_name'";
398     $query_res = $main::known_clients_db->select_dbentry( $sql_statement );
399     if( 1 == keys %{$query_res} ) {
400         my $act_time = &get_time;
401         my $sql_statement= "UPDATE known_clients ".
402             "SET hostkey='$source_key', timestamp='$act_time' ".
403             "WHERE hostname='$source_name'";
404         my $res = $main::known_clients_db->update_dbentry( $sql_statement );
405         my $hash = &create_xml_hash("confirm_new_key", $server_address, $source_name);
406         my $out_msg = &create_xml_string($hash);
407         push(@out_msg_l, $out_msg);
408     }
410     # only do if host still not found
411     if( 0 == @out_msg_l ) {
412         # check known_server_db
413         $sql_statement = "SELECT * FROM known_server WHERE hostname='$source_name'";
414         $query_res = $main::known_server_db->select_dbentry( $sql_statement );
415         if( 1 == keys %{$query_res} ) {
416             my $act_time = &get_time;
417             my $sql_statement= "UPDATE known_server ".
418                 "SET hostkey='$source_key', timestamp='$act_time' ".
419                 "WHERE hostname='$source_name'";
420             my $res = $main::known_server_db->update_dbentry( $sql_statement );
422             my $hash = &create_xml_hash("confirm_new_key", $server_address, $source_name);
423             my $out_msg = &create_xml_string($hash);
424             push(@out_msg_l, $out_msg);
425         }
426     }
428     return @out_msg_l;
432 #===  FUNCTION  ================================================================
433 #         NAME:  here_i_am
434 #   PARAMETERS:  msg_hash - hash - hash from function create_xml_hash
435 #      RETURNS:  nothing
436 #  DESCRIPTION:  process this incoming message
437 #===============================================================================
438 sub here_i_am {
439     my ($msg, $msg_hash, $session_id) = @_;
440     my @out_msg_l;
441     my $out_hash;
442     my $source = @{$msg_hash->{source}}[0];
443     my $mac_address = @{$msg_hash->{mac_address}}[0];
444         my $gotoHardwareChecksum = @{$msg_hash->{gotoHardwareChecksum}}[0];
445     my $client_status = @{$msg_hash->{client_status}}[0];
446     my $client_revision = @{$msg_hash->{client_revision}}[0];
447     my $key_lifetime = @{$msg_hash->{key_lifetime}}[0];
449     # Move forced hostname to heap - if used
450     #FIXME: move to some global POE namespace - please
451     if ( defined($msg_hash->{'force-hostname'}[0]) &&
452        length($msg_hash->{'force-hostname'}[0]) > 0){
453     #      $heap->{force-hostname}->{$mac_address}= $msg_hash->{'force-hostname'}[0];
454             open (TFILE, ">/var/tmp/$mac_address");
455             print TFILE $msg_hash->{'force-hostname'}[0];
456             close (TFILE); 
457     } else {
458     #      $heap->{force-hostname}->{$mac_address}= undef;
459         if ( -e "/var/tmp/$mac_address") {
460                 unlink("/var/tmp/$mac_address")
461         }; 
462     }
464     # number of known clients
465     my $nu_clients= $main::known_clients_db->count_dbentries('known_clients');
467     # check wether client address or mac address is already known
468     my $sql_statement= "SELECT * FROM known_clients WHERE hostname='$source'";
469     my $db_res= $main::known_clients_db->select_dbentry( $sql_statement );
470     
471     if ( 1 == keys %{$db_res} ) {
472         &main::daemon_log("$session_id WARNING: $source is already known as a client", 3);
473         &main::daemon_log("$session_id WARNING: values for $source are being overwritten", 3);   
474         $nu_clients --;
475     }
477     # number of current active clients
478     my $act_nu_clients = $nu_clients;
480     &main::daemon_log("$session_id DEBUG: number of current active clients: $act_nu_clients", 26);
481     &main::daemon_log("$session_id DEBUG: number of maximal allowed clients: $max_clients", 26);
483     if($max_clients <= $act_nu_clients) {
484         my $out_hash = &create_xml_hash("denied", $server_address, $source);
485         &add_content2xml_hash($out_hash, "denied", "I_cannot_take_any_more_clients!");
486         my $passwd = @{$msg_hash->{new_passwd}}[0]; 
487         &send_msg_hash2address($out_hash, $source, $passwd);
488         return;
489     }
490     
491     # new client accepted
492     my $new_passwd = @{$msg_hash->{new_passwd}}[0];
494     # add entry to known_clients_db
495     my $events = @{$msg_hash->{events}}[0];
496     my $act_timestamp = &get_time;
497     my $res = $main::known_clients_db->add_dbentry( {table=>'known_clients', 
498                                                 primkey=>['hostname'],
499                                                 hostname=>$source,
500                                                 events=>$events,
501                                                 macaddress=>$mac_address,
502                                                 status=>'registered',
503                                                 hostkey=>$new_passwd,
504                                                 timestamp=>$act_timestamp,
505                                                 keylifetime=>$key_lifetime,
506                                                 } );
508     if ($res != 0)  {
509         &main::daemon_log("$session_id ERROR: cannot add entry to known_clients: $res",1);
510         return;
511     }
512     
513     # return acknowledgement to client
514     $out_hash = &create_xml_hash("registered", $server_address, $source);
517     # give the new client his ldap config
518     # Workaround: Send within the registration response, if the client will get an ldap config later
519         my $new_ldap_config_out = &new_ldap_config($source, $session_id);
520         if($new_ldap_config_out && (!($new_ldap_config_out =~ /error/))) {
521                 &add_content2xml_hash($out_hash, "ldap_available", "true");
522         } elsif($new_ldap_config_out && $new_ldap_config_out =~ /error/){
523                 &add_content2xml_hash($out_hash, "error", $new_ldap_config_out);
525                 my $sql_statement = "UPDATE $main::job_queue_tn ".
526                 "SET status='error', result='$new_ldap_config_out' ".
527                 "WHERE status='processing' AND macaddress LIKE '$mac_address'";
528                 my $res = $main::job_db->update_dbentry($sql_statement);
529                 &main::daemon_log("$session_id DEBUG: $sql_statement RESULT: $res", 26);         
530         }
531     my $register_out = &create_xml_string($out_hash);
532     push(@out_msg_l, $register_out);
534     # Really send the ldap config
535     if( $new_ldap_config_out && (!($new_ldap_config_out =~ /error/))) {
536             push(@out_msg_l, $new_ldap_config_out);
537     }
539     # Send client hardware configuration
540         my $hardware_config_out = &hardware_config($msg, $msg_hash, $session_id);
541         if( $hardware_config_out ) {
542                 push(@out_msg_l, $hardware_config_out);
543         }
545     # Send client ntp server
546     my $ntp_config_out = &new_ntp_config($mac_address, $session_id);
547     if ($ntp_config_out) {
548         push(@out_msg_l, $ntp_config_out);
549     }
551     # Send client syslog server
552     my $syslog_config_out = &new_syslog_config($mac_address, $session_id);
553     if ($syslog_config_out) {
554         push(@out_msg_l, $syslog_config_out);
555     }
557     # notify registered client to all other server
558     my %mydata = ( 'client' => $source, 'macaddress' => $mac_address);
559     my $mymsg = &build_msg('new_foreign_client', $main::server_address, "KNOWN_SERVER", \%mydata);
560     push(@out_msg_l, $mymsg);
562     &main::daemon_log("$session_id INFO: register client $source ($mac_address), $client_status - $client_revision", 5);
563     return @out_msg_l;
567 #===  FUNCTION  ================================================================
568 #         NAME:  who_has
569 #   PARAMETERS:  msg_hash - hash - hash from function create_xml_hash
570 #      RETURNS:  nothing 
571 #  DESCRIPTION:  process this incoming message
572 #===============================================================================
573 sub who_has {
574     my ($msg_hash) = @_ ;
575     my @out_msg_l;
576     
577     # what is your search pattern
578     my $search_pattern = @{$msg_hash->{who_has}}[0];
579     my $search_element = @{$msg_hash->{$search_pattern}}[0];
580     #&main::daemon_log("who_has-msg looking for $search_pattern $search_element", 7);
582     # scanning known_clients for search_pattern
583     my @host_addresses = keys %$main::known_clients;
584     my $known_clients_entries = length @host_addresses;
585     my $host_address;
586     foreach my $host (@host_addresses) {
587         my $client_element = $main::known_clients->{$host}->{$search_pattern};
588         if ($search_element eq $client_element) {
589             $host_address = $host;
590             last;
591         }
592     }
593         
594     # search was successful
595     if (defined $host_address) {
596         my $source = @{$msg_hash->{source}}[0];
597         my $out_hash = &create_xml_hash("who_has_i_do", $server_address, $source, "mac_address");
598         &add_content2xml_hash($out_hash, "mac_address", $search_element);
599         my $out_msg = &create_xml_string($out_hash);
600         push(@out_msg_l, $out_msg);
601     }
602     return @out_msg_l;
606 sub who_has_i_do {
607     my ($msg_hash) = @_ ;
608     my $header = @{$msg_hash->{header}}[0];
609     my $source = @{$msg_hash->{source}}[0];
610     my $search_param = @{$msg_hash->{$header}}[0];
611     my $search_value = @{$msg_hash->{$search_param}}[0];
612     print "\ngot msg $header:\nserver $source has client with $search_param $search_value\n";
616 sub new_syslog_config {
617     my ($mac_address, $session_id) = @_;
618     my $syslog_msg;
619     my $ldap_handle=&main::get_ldap_handle();
621         # Perform search
622     my $ldap_res = $ldap_handle->search( base   => $ldap_base,
623                 scope  => 'sub',
624                 attrs => ['gotoSyslogServer'],
625                 filter => "(&(objectClass=GOhard)(macaddress=$mac_address))");
626         if($ldap_res->code) {
627                 &main::daemon_log("$session_id ERROR: new_syslog_config: ldap search: ".$ldap_res->error, 1);
628         &main::release_ldap_handle($ldap_handle);
629                 return;
630         }
632         # Sanity check
633         if ($ldap_res->count != 1) {
634                 &main::daemon_log("$session_id ERROR: client with mac address $mac_address not found/unique/active - not sending syslog config".
635                 "\n\tbase: $ldap_base".
636                 "\n\tscope: sub".
637                 "\n\tattrs: gotoSyslogServer".
638                 "\n\tfilter: (&(objectClass=GOhard)(macaddress=$mac_address))", 1);
639         &main::release_ldap_handle($ldap_handle);
640                 return;
641         }
643         my $entry= $ldap_res->entry(0);
644     my $filter_dn = &Net::LDAP::Util::escape_filter_value($entry->dn);
645         my $syslog_server = $entry->get_value("gotoSyslogServer");
647     # If no syslog server is specified at host, just have a look at the object group of the host
648     # Perform object group search
649     if (not defined $syslog_server) {
650         my $ldap_res = $ldap_handle->search( base   => $ldap_base,
651                 scope  => 'sub',
652                 attrs => ['gotoSyslogServer'],
653                 filter => "(&(objectClass=gosaGroupOfNames)(member=$filter_dn))");
654         if($ldap_res->code) {
655             &main::daemon_log("$session_id ERROR: new_syslog_config: ldap search: ".$ldap_res->error, 1);
656             &main::release_ldap_handle($ldap_handle);
657             return;
658         }
660         # Sanity check
661         if ($ldap_res->count != 1) {
662             &main::daemon_log("$session_id ERROR: client with mac address $mac_address not found/unique/active - not sending syslog config".
663                     "\n\tbase: $ldap_base".
664                     "\n\tscope: sub".
665                     "\n\tattrs: gotoSyslogServer".
666                     "\n\tfilter: (&(objectClass=gosaGroupOfNames)(member=$filter_dn))", 1);
667             &main::release_ldap_handle($ldap_handle);
668             return;
669         }
671         my $entry= $ldap_res->entry(0);
672         $syslog_server= $entry->get_value("gotoSyslogServer");
673     }
675     # Return if no syslog server specified
676     if (not defined $syslog_server) {
677         &main::daemon_log("$session_id WARNING: no syslog server specified for this host '$mac_address'", 3);
678         &main::release_ldap_handle($ldap_handle);
679         return;
680     }
682  
683     # Add syslog server to 'syslog_config' message
684     my $syslog_msg_hash = &create_xml_hash("new_syslog_config", $server_address, $mac_address);
685     &add_content2xml_hash($syslog_msg_hash, "server", $syslog_server);
687     &main::release_ldap_handle($ldap_handle);
688     return &create_xml_string($syslog_msg_hash);
692 sub new_ntp_config {
693     my ($address, $session_id) = @_;
694     my $ntp_msg;
695     my $ldap_handle=&main::get_ldap_handle();
697         # Perform search
698     my $ldap_res = $ldap_handle->search( base   => $ldap_base,
699                 scope  => 'sub',
700                 attrs => ['gotoNtpServer'],
701                 filter => "(&(objectClass=GOhard)(macaddress=$address))");
702         if($ldap_res->code) {
703                 &main::daemon_log("$session_id ERROR: new_ntp_config: ldap search: ".$ldap_res->error, 1);
704         &main::release_ldap_handle($ldap_handle);
705                 return;
706         }
708         # Sanity check
709         if ($ldap_res->count != 1) {
710                 &main::daemon_log("$session_id ERROR: client with mac address $address not found/unique/active - not sending ntp config".
711                 "\n\tbase: $ldap_base".
712                 "\n\tscope: sub".
713                 "\n\tattrs: gotoNtpServer".
714                 "\n\tfilter: (&(objectClass=GOhard)(macaddress=$address))", 1);
715         &main::release_ldap_handle($ldap_handle);
716                 return;
717         }
719         my $entry= $ldap_res->entry(0);
720     my $filter_dn = &Net::LDAP::Util::escape_filter_value($entry->dn);
721         my @ntp_servers= $entry->get_value("gotoNtpServer");
723     # If no ntp server is specified at host, just have a look at the object group of the host
724     # Perform object group search
725     if ((not @ntp_servers) || (@ntp_servers == 0)) {
726         my $ldap_res = $ldap_handle->search( base   => $ldap_base,
727                 scope  => 'sub',
728                 attrs => ['gotoNtpServer'],
729                 filter => "(&(objectClass=gosaGroupOfNames)(member=$filter_dn))");
730         if($ldap_res->code) {
731             &main::daemon_log("$session_id ERROR: new_ntp_config: ldap search: ".$ldap_res->error, 1);
732             &main::release_ldap_handle($ldap_handle);
733             return;
734         }
736         # Sanity check
737         if ($ldap_res->count != 1) {
738             &main::daemon_log("$session_id ERROR: client with mac address $address not found/unique/active - not sending ntp config".
739                     "\n\tbase: $ldap_base".
740                     "\n\tscope: sub".
741                     "\n\tattrs: gotoNtpServer".
742                     "\n\tfilter: (&(objectClass=gosaGroupOfNames)(member=$filter_dn))", 1);
743             &main::release_ldap_handle($ldap_handle);
744             return;
745         }
747         my $entry= $ldap_res->entry(0);
748         @ntp_servers= $entry->get_value("gotoNtpServer");
749     }
751     # Return if no ntp server specified
752     if ((not @ntp_servers) || (@ntp_servers == 0)) {
753         &main::daemon_log("$session_id WARNING: no ntp server specified for this host '$address'", 3);
754         &main::release_ldap_handle($ldap_handle);
755         return;
756     }
757  
758     # Add each ntp server to 'ntp_config' message
759     my $ntp_msg_hash = &create_xml_hash("new_ntp_config", $server_address, $address);
760     foreach my $ntp_server (@ntp_servers) {
761         &add_content2xml_hash($ntp_msg_hash, "server", $ntp_server);
762     }
764     &main::release_ldap_handle($ldap_handle);
765     return &create_xml_string($ntp_msg_hash);
769 #===  FUNCTION  ================================================================
770 #         NAME:  new_ldap_config
771 #   PARAMETERS:  address - string - ip address and port of a host
772 #      RETURNS:  gosa-si conform message
773 #  DESCRIPTION:  send to address the ldap configuration found for dn gotoLdapServer
774 #===============================================================================
775 sub new_ldap_config {
776         my ($address, $session_id) = @_ ;
778         my $sql_statement= "SELECT * FROM known_clients WHERE hostname='$address' OR macaddress LIKE '$address'";
779         my $res = $main::known_clients_db->select_dbentry( $sql_statement );
781         # check hit
782         my $hit_counter = keys %{$res};
783         if( not $hit_counter == 1 ) {
784                 &main::daemon_log("$session_id ERROR: new_ldap_config: more or no hit found in known_clients_db by query '$sql_statement'", 1);
785         return;
786         }
788     $address = $res->{1}->{hostname};
789         my $macaddress = $res->{1}->{macaddress};
790         my $hostkey = $res->{1}->{hostkey};
791         
792         if (not defined $macaddress) {
793                 &main::daemon_log("$session_id ERROR: new_ldap_config: no mac address found for client $address", 1);
794                 return;
795         }
797         # Perform search
798     my $ldap_handle=&main::get_ldap_handle();
799     $mesg = $ldap_handle->search( base   => $ldap_base,
800                 scope  => 'sub',
801                 attrs => ['dn', 'gotoLdapServer', 'gosaUnitTag', 'FAIclass'],
802                 filter => "(&(objectClass=GOhard)(macaddress=$macaddress))");
803         if($mesg->code) {
804                 &main::daemon_log("$session_id ERROR: new_ldap_config: ldap search: ".$mesg->error, 1);
805         &main::release_ldap_handle($ldap_handle);
806                 return;
807         }
809         # Sanity check
810         if ($mesg->count != 1) {
811                 &main::daemon_log("$session_id ERROR: client with mac address $macaddress not found/unique/active - not sending ldap config".
812                 "\n\tbase: $ldap_base".
813                 "\n\tscope: sub".
814                 "\n\tattrs: dn, gotoLdapServer".
815                 "\n\tfilter: (&(objectClass=GOhard)(macaddress=$macaddress))", 1);
816         &main::release_ldap_handle($ldap_handle);
817                 return;
818         }
820         my $entry= $mesg->entry(0);
821         my $filter_dn= &Net::LDAP::Util::escape_filter_value($entry->dn);
822         my @servers= $entry->get_value("gotoLdapServer");
823         my $unit_tag= $entry->get_value("gosaUnitTag");
824         my @ldap_uris;
825         my $server;
826         my $base;
827         my $release;
828     my $dn= $entry->dn;
830         # Fill release if available
831         my $FAIclass= $entry->get_value("FAIclass");
832         if (defined $FAIclass && $FAIclass =~ /^.* :([A-Za-z0-9\/.]+).*$/) {
833                 $release= $1;
834         }
836         # Do we need to look at an object class?
837         if (not @servers){
838                 $mesg = $ldap_handle->search( base   => $ldap_base,
839                         scope  => 'sub',
840                         attrs => ['dn', 'gotoLdapServer', 'FAIclass'],
841                         filter => "(&(objectClass=gosaGroupOfNames)(member=$filter_dn))");
842                 if($mesg->code) {
843                         &main::daemon_log("$session_id ERROR: new_ldap_config: unable to search for '(&(objectClass=gosaGroupOfNames)(member=$filter_dn))': ".$mesg->error, 1);
844             &main::release_ldap_handle($ldap_handle);
845                         return;
846                 }
848                 # Sanity check
849         if ($mesg->count != 1) {
850             &main::daemon_log("$session_id ERROR: new_ldap_config: client with mac address $macaddress not found/unique/active - not sending ldap config".
851                     "\n\tbase: $ldap_base".
852                     "\n\tscope: sub".
853                     "\n\tattrs: dn, gotoLdapServer, FAIclass".
854                     "\n\tfilter: (&(objectClass=gosaGroupOfNames)(member=$filter_dn))", 1);
855             &main::release_ldap_handle($ldap_handle);
856             return;
857         }
859                 $entry= $mesg->entry(0);
860                 $dn= $entry->dn;
861                 @servers= $entry->get_value("gotoLdapServer");
863                 if (not defined $release){
864                         $FAIclass= $entry->get_value("FAIclass");
865                         if (defined $FAIclass && $FAIclass =~ /^.* :([A-Za-z0-9\/.]+).*$/) {
866                                 $release= $1;
867                         }
868                 }
869         }
871         @servers= sort (@servers);
873     # complain if no ldap information found
874     if (@servers == 0) {
875         &main::daemon_log("$session_id ERROR: no gotoLdapServer information for LDAP entry '$dn'", 1);
876     }
878         foreach $server (@servers){
879                 # Conversation for backward compatibility
880                 if (not $server =~ /^\d+:[^:]+:ldap[^:]*:\/\// ) {
881                     if ($server =~ /^([^:]+):([^:]+)$/ ) {
882                       $server= "1:dummy:ldap://$1/$2";
883                     } elsif ($server =~ /^(\d+):([^:]+):(.*)$/ ) {
884                       $server= "$1:dummy:ldap://$2/$3";
885                     }
886                 }
888                 $base= $server;
889                 $server =~ s%^[^:]+:[^:]+:(ldap.*://[^/]+)/.*$%$1%;
890                 $base =~ s%^[^:]+:[^:]+:ldap.*://[^/]+/(.*)$%$1%;
891                 push (@ldap_uris, $server);
892         }
894         # Assemble data package
895         my %data = ( 'ldap_uri'  => \@ldap_uris, 'ldap_base' => $base,
896                 'ldap_cfg' => \@ldap_cfg, 'pam_cfg' => \@pam_cfg,'nss_cfg' => \@nss_cfg );
897         if (defined $release){
898                 $data{'release'}= $release;
899         }
901         # Need to append GOto settings?
902         if (defined $goto_admin and defined $goto_secret){
903                 $data{'goto_admin'}= $goto_admin;
904                 $data{'goto_secret'}= $goto_secret;
905         }
907         # Append unit tag if needed
908         if (defined $unit_tag){
910                 # Find admin base and department name
911                 $mesg = $ldap_handle->search( base   => $ldap_base,
912                         scope  => 'sub',
913                         attrs => ['dn', 'ou'],
914                         filter => "(&(objectClass=gosaAdministrativeUnit)(gosaUnitTag=$unit_tag))");
915                 #$mesg->code && die $mesg->error;
916                 if($mesg->code) {
917                         &main::daemon_log("$session_id ERROR: new_ldap_config: ldap search: ".$mesg->error, 1);
918             &main::release_ldap_handle($ldap_handle);
919                         return "error-unit-tag-count-0";
920                 }
922                 # Sanity check
923                 if ($mesg->count != 1) {
924                         &main::daemon_log("WARNING: cannot find administrative unit for client with tag $unit_tag", 3);
925             &main::release_ldap_handle($ldap_handle);
926                         return "error-unit-tag-count-".$mesg->count;
927                 }
929                 $entry= $mesg->entry(0);
930                 $data{'admin_base'}= $entry->dn;
931                 $data{'department'}= $entry->get_value("ou");
933                 # Append unit Tag
934                 $data{'unit_tag'}= $unit_tag;
935         }
936     &main::release_ldap_handle($ldap_handle);
938         # Send information
939         return &build_msg("new_ldap_config", $server_address, $address, \%data);
943 #===  FUNCTION  ================================================================
944 #         NAME:  hardware_config
945 #   PARAMETERS:  address - string - ip address and port of a host
946 #      RETURNS:  
947 #  DESCRIPTION:  
948 #===============================================================================
949 sub hardware_config {
950         my ($msg, $msg_hash, $session_id) = @_ ;
951         my $address = @{$msg_hash->{source}}[0];
952         my $header = @{$msg_hash->{header}}[0];
953         my $gotoHardwareChecksum = @{$msg_hash->{gotoHardwareChecksum}}[0];
955         my $sql_statement= "SELECT * FROM known_clients WHERE hostname='$address'";
956         my $res = $main::known_clients_db->select_dbentry( $sql_statement );
958         # check hit
959         my $hit_counter = keys %{$res};
960         if( not $hit_counter == 1 ) {
961                 &main::daemon_log("$session_id ERROR: hardware_config: more or no hit found in known_clients_db by query by '$address'", 1);
962         }
963         my $macaddress = $res->{1}->{macaddress};
964         my $hostkey = $res->{1}->{hostkey};
966         if (not defined $macaddress) {
967                 &main::daemon_log("$session_id ERROR: hardware_config: no mac address found for client $address", 1);
968                 return;
969         }
971         # Perform search
972     my $ldap_handle=&main::get_ldap_handle();
973         $mesg = $ldap_handle->search(
974                 base   => $ldap_base,
975                 scope  => 'sub',
976                 filter => "(&(objectClass=GOhard)(|(macAddress=$macaddress)(dhcpHWaddress=ethernet $macaddress)))"
977         );
979         if($mesg->count() == 0) {
980                 &main::daemon_log("$session_id INFO: Host was not found in LDAP!", 5);
982                 # set status = hardware_detection at jobqueue if entry exists
983                 # TODO
984                 # resolve plain name for host
985                 my $func_dic = {table=>$main::job_queue_tn,
986                                 primkey=>['macaddress', 'headertag'],
987                                 timestamp=>&get_time,
988                                 status=>'processing',
989                                 result=>'none',
990                                 progress=>'hardware-detection',
991                                 headertag=>'trigger_action_reinstall',
992                                 targettag=>$address,
993                                 xmlmessage=>'none',
994                                 macaddress=>$macaddress,
995                                 plainname=>'none',
996                 siserver=>'localhost',
997                 modified=>'1',
998                 };
999                 my $hd_res = $main::job_db->add_dbentry($func_dic);
1000                 &main::daemon_log("$session_id INFO: add '$macaddress' to job queue as an installing job", 5);
1001         
1002         } else {
1003                 my $entry= $mesg->entry(0);
1004                 if (defined($entry->get_value("gotoHardwareChecksum"))) {
1005                         if (! $entry->get_value("gotoHardwareChecksum") eq $gotoHardwareChecksum) {
1006                                 $entry->replace(gotoHardwareChecksum => $gotoHardwareChecksum);
1007                                 if($entry->update($ldap_handle)) {
1008                                         &main::daemon_log("$session_id INFO: Hardware changed! Detection triggered.", 5);
1009                                 }
1010                         } else {
1011                                 # Nothing to do
1012                 &main::release_ldap_handle($ldap_handle);
1013                                 return;
1014                         }
1015                 } 
1016         } 
1018         # Assemble data package
1019         my %data = ();
1021         # Need to append GOto settings?
1022         if (defined $goto_admin and defined $goto_secret){
1023                 $data{'goto_admin'}= $goto_admin;
1024                 $data{'goto_secret'}= $goto_secret;
1025         }
1027     &main::release_ldap_handle($ldap_handle);
1029         # Send information
1030         return &build_msg("detect_hardware", $server_address, $address, \%data);
1033 sub server_matches {
1034     my ($target, $session_id) = @_ ;
1035         my $target_ip = ($1) if $target =~ /^([0-9\.]*?):.*$/;
1036         if(!defined($target_ip) or length($target_ip) == 0) {
1037                 return;
1038         }
1040         my $result = 0;
1042         if($server_ip eq $target_ip) {
1043                 $result= 1;
1044         } elsif ($target_ip eq "0.0.0.0") {
1045                 $result= 1;
1046         } elsif ($server_ip eq "0.0.0.0") {     
1047                 if ($target_ip eq "127.0.0.1") {
1048                         $result= 1;
1049                 } else {
1050                         my $PROC_NET_ROUTE= ('/proc/net/route');
1052                         open(PROC_NET_ROUTE, "<$PROC_NET_ROUTE")
1053                                 or die "Could not open $PROC_NET_ROUTE";
1055                         my @ifs = <PROC_NET_ROUTE>;
1057                         close(PROC_NET_ROUTE);
1059                         # Eat header line
1060                         shift @ifs;
1061                         chomp @ifs;
1062                         foreach my $line(@ifs) {
1063                                 my ($Iface,$Destination,$Gateway,$Flags,$RefCnt,$Use,$Metric,$Mask,$MTU,$Window,$IRTT)=split(/\s/, $line);
1064                                 my $destination;
1065                                 my $mask;
1066                                 my ($d,$c,$b,$a)=unpack('a2 a2 a2 a2', $Destination);
1067                                 $destination= sprintf("%d.%d.%d.%d", hex($a), hex($b), hex($c), hex($d));
1068                                 ($d,$c,$b,$a)=unpack('a2 a2 a2 a2', $Mask);
1069                                 $mask= sprintf("%d.%d.%d.%d", hex($a), hex($b), hex($c), hex($d));
1070                                 if(new NetAddr::IP($target_ip)->within(new NetAddr::IP($destination, $mask))) {
1071                                         # destination matches route, save mac and exit
1072                                         $result= 1;
1073                                         last;
1074                                 }
1075                         }
1076                 }
1077         } else {
1078                 &main::daemon_log("$session_id INFO: Target ip $target_ip does not match Server ip $server_ip",5);
1079         }
1081         return $result;
1084 # vim:ts=4:shiftwidth:expandtab
1085 1;