mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 19:32:31 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2349 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			324 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			324 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
| # IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | |
| package xCAT_plugin::yaboot;
 | |
| use Data::Dumper;
 | |
| use Sys::Syslog;
 | |
| use xCAT::Scope;
 | |
| use File::Path;
 | |
| use Socket;
 | |
| 
 | |
| my $request;
 | |
| my %breaknetbootnodes;
 | |
| my %normalnodes;
 | |
| my $callback;
 | |
| my $sub_req;
 | |
| my $dhcpconf = "/etc/dhcpd.conf";
 | |
| my $tftpdir = "/tftpboot";
 | |
| #my $dhcpver = 3;
 | |
| 
 | |
| my %usage = (
 | |
|     "nodeset" => "Usage: nodeset <noderange> [install|shell|boot|runcmd=bmcsetup|netboot|iscsiboot]",
 | |
| );
 | |
| sub handled_commands {
 | |
|   return {
 | |
|     nodeset => "noderes:netboot"
 | |
|   }
 | |
| }
 | |
| 
 | |
| sub check_dhcp {
 | |
|   return 1;
 | |
|   #TODO: omapi magic to do things right
 | |
|   my $node = shift;
 | |
|   my $dhcpfile;
 | |
|   open ($dhcpfile,$dhcpconf);
 | |
|   while (<$dhcpfile>) {
 | |
|     if (/host $node\b/) {
 | |
|       close $dhcpfile;
 | |
|       return 1;
 | |
|     }
 | |
|   }
 | |
|   close $dhcpfile;
 | |
|   return 0;
 | |
| }
 | |
| 
 | |
| sub getstate {
 | |
|   my $node = shift;
 | |
|   if (check_dhcp($node)) {
 | |
|     if (-r $tftpdir . "/etc/".$node) {
 | |
|       my $fhand;
 | |
|       open ($fhand,$tftpdir . "/etc/".$node);
 | |
|       my $headline = <$fhand>;
 | |
|       close $fhand;
 | |
|       $headline =~ s/^#//;
 | |
|       chomp($headline);
 | |
|       return $headline;
 | |
|     } else {
 | |
|       return "boot";
 | |
|     }
 | |
|   } else {
 | |
|     return "discover";
 | |
|   }
 | |
| }
 | |
| 
 | |
| sub setstate {
 | |
| =pod
 | |
| 
 | |
|   This function will manipulate the yaboot structure to match what the noderes/chain tables indicate the node should be booting.
 | |
| 
 | |
| =cut
 | |
|   my $node = shift;
 | |
|   my %bphash = %{shift()};
 | |
|   my %chainhash = %{shift()};
 | |
|   my %machash = %{shift()};
 | |
|   my $kern = $bphash{$node}->[0]; #$bptab->getNodeAttribs($node,['kernel','initrd','kcmdline']);
 | |
|   my $pcfg;
 | |
|   unless (-d "$tftpdir/etc") {
 | |
|      mkpath("$tftpdir/etc");
 | |
|   }
 | |
|   open($pcfg,'>',$tftpdir."/etc/".$node);
 | |
|   my $cref=$chainhash{$node}->[0]; #$chaintab->getNodeAttribs($node,['currstate']);
 | |
|   if ($cref->{currstate}) {
 | |
|     print $pcfg "#".$cref->{currstate}."\n";
 | |
|   }
 | |
|   print $pcfg "timeout=5\n";
 | |
|   $normalnodes{$node}=1; #Assume a normal netboot (well, normal dhcp, 
 | |
|                         #which is normally with a valid 'filename' field,
 | |
|                         #but the typical ppc case will be 'special' makedhcp
 | |
|                         #to clear the filename field, so the logic is a little
 | |
|                         #opposite
 | |
|   #  $sub_req->({command=>['makedhcp'], #This is currently batched elswhere
 | |
|   #         node=>[$node]},$callback);  #It hopefully will perform correctly
 | |
|   if ($cref and $cref->{currstate} eq "boot") {
 | |
|     $breaknetbootnodes{$node}=1;
 | |
|     delete $normalnodes{$node}; #Signify to omit this from one makedhcp command
 | |
|     #$sub_req->({command=>['makedhcp'], #batched elsewhere, this code is stale, hopefully
 | |
|     #       node=>[$node],
 | |
|     #        arg=>['-s','filename = \"xcat/nonexistant_file_to_intentionally_break_netboot_for_localboot_to_work\";']},$callback);
 | |
|     print $pcfg "bye\n";
 | |
|     close($pcfg);
 | |
|   } elsif ($kern and $kern->{kernel}) {
 | |
|     #It's time to set yaboot for this node to boot the kernel..
 | |
|     print $pcfg "image=".$kern->{kernel}."\n\tlabel=xcat\n";
 | |
|     if ($kern and $kern->{initrd}) {
 | |
|       print $pcfg "\tinitrd=".$kern->{initrd}."\n";
 | |
|     }
 | |
|     if ($kern and $kern->{kcmdline}) {
 | |
|       print $pcfg "\tappend=\"".$kern->{kcmdline}."\"\n";
 | |
|     }
 | |
|     close($pcfg);
 | |
|     my $inetn = inet_aton($node);
 | |
|     unless ($inetn) {
 | |
|      syslog("local1|err","xCAT unable to resolve IP for $node in yaboot plugin");
 | |
|      return;
 | |
|     }
 | |
|   } else { #TODO: actually, should possibly default to xCAT image?
 | |
|     print $pcfg "bye\n";
 | |
|     close($pcfg);
 | |
|   }
 | |
|   my $ip = inet_ntoa(inet_aton($node));;
 | |
|   unless ($ip) {
 | |
|     syslog("local1|err","xCAT unable to resolve IP in yaboot plugin");
 | |
|     return;
 | |
|   }
 | |
|   my $mactab = xCAT::Table->new('mac');
 | |
|   my %ipaddrs;
 | |
|   $ipaddrs{$ip} = 1;
 | |
|   if ($mactab) {
 | |
|      my $ment = $machash{$node}->[0]; #$mactab->getNodeAttribs($node,['mac']);
 | |
|      if ($ment and $ment->{mac}) {
 | |
|         my @macs = split(/\|/,$ment->{mac});
 | |
|         foreach (@macs) {
 | |
|            if (/!(.*)/) {
 | |
|               if (inet_aton($1)) {
 | |
|                $ipaddrs{inet_ntoa(inet_aton($1))} = 1;
 | |
|               }
 | |
|            }
 | |
|         }
 | |
|      }
 | |
|   }
 | |
|   my $hassymlink = eval { symlink("",""); 1 };
 | |
|   foreach $ip (keys %ipaddrs) {
 | |
|    my @ipa=split(/\./,$ip);
 | |
|    my $pname = sprintf("%02x%02x%02x%02x",@ipa);
 | |
|    unlink($tftpdir."/etc/".$pname);
 | |
|    if ($hassymlink) { 
 | |
|     symlink($node,$tftpdir."/etc/".$pname);
 | |
|    } else {
 | |
|     link($tftpdir."/etc/".$node,$tftpdir."/etc/".$pname);
 | |
|    }
 | |
|   }
 | |
| }
 | |
|   
 | |
| 
 | |
|     
 | |
| my $errored = 0;
 | |
| sub pass_along { 
 | |
|     my $resp = shift;
 | |
|     $callback->($resp);
 | |
|     if ($resp and ($resp->{errorcode} and $resp->{errorcode}->[0]) or ($resp->{error} and $resp->{error}->[0])) {
 | |
|         $errored=1;
 | |
|     }
 | |
|     foreach (@{$resp->{node}}) {
 | |
|        if ($_->{error} or $_->{errorcode}) {
 | |
|           $errored=1;
 | |
|        }
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
|   
 | |
| sub preprocess_request {
 | |
|    #Assume shared tftp directory for boring people, but for cool people, help sync up tftpdirectory contents when 
 | |
|    #they specify no sharedtftp in site table
 | |
|    my $stab = xCAT::Table->new('site');
 | |
|    my $req = shift;
 | |
|   
 | |
|    my $sent = $stab->getAttribs({key=>'sharedtftp'},'value');
 | |
|    if ($sent and ($sent->{value} == 0 or $ent->{value} =~ /no/i)) {
 | |
|       $req->{'_disparatetftp'}=[1];
 | |
|       return xCAT::Scope->get_broadcast_scope($req,@_);
 | |
|    }
 | |
|    return [$req];
 | |
| }
 | |
| #sub preprocess_request {
 | |
| #   my $req = shift;
 | |
| #   my $callback = shift;
 | |
| #  my %localnodehash;
 | |
| #  my %dispatchhash;
 | |
| #  my $nrtab = xCAT::Table->new('noderes');
 | |
| #  foreach my $node (@{$req->{node}}) {
 | |
| #     my $nodeserver;
 | |
| #     my $tent = $nrtab->getNodeAttribs($node,['tftpserver']);
 | |
| #     if ($tent) { $nodeserver = $tent->{tftpserver} }
 | |
| #     unless ($tent and $tent->{tftpserver}) {
 | |
| #        $tent = $nrtab->getNodeAttribs($node,['servicenode']);
 | |
| #        if ($tent) { $nodeserver = $tent->{servicenode} }
 | |
| #     }
 | |
| #     if ($nodeserver) {
 | |
| #        $dispatchhash{$nodeserver}->{$node} = 1;
 | |
| #     } else {
 | |
| #        $localnodehash{$node} = 1;
 | |
| #     }
 | |
| #  }
 | |
| #  my @requests;
 | |
| #  my $reqc = {%$req};
 | |
| #  $reqc->{node} = [ keys %localnodehash ];
 | |
| #  if (scalar(@{$reqc->{node}})) { push @requests,$reqc }
 | |
| #
 | |
| #  foreach my $dtarg (keys %dispatchhash) { #iterate dispatch targets
 | |
| #     my $reqcopy = {%$req}; #deep copy
 | |
| #     $reqcopy->{'_xcatdest'} = $dtarg;
 | |
| #     $reqcopy->{node} = [ keys %{$dispatchhash{$dtarg}}];
 | |
| #     push @requests,$reqcopy;
 | |
| #  }
 | |
| #  return \@requests;
 | |
| #}
 | |
| #
 | |
| 
 | |
| 
 | |
| sub process_request {
 | |
|   $request = shift;
 | |
|   $callback = shift;
 | |
|   $sub_req = shift;
 | |
|   %breaknetbootnodes=();
 | |
|   %normalnodes=();
 | |
| 
 | |
|   my @args;
 | |
|   my @nodes;
 | |
|   my @rnodes;
 | |
|   if (ref($request->{node})) {
 | |
|     @rnodes = @{$request->{node}};
 | |
|   } else {
 | |
|     if ($request->{node}) { @rnodes = ($request->{node}); }
 | |
|   }
 | |
|   unless (@rnodes) {
 | |
|       if ($usage{$request->{command}->[0]}) {
 | |
|           $callback->({data=>$usage{$request->{command}->[0]}});
 | |
|       }
 | |
|       return;
 | |
|   }
 | |
| 
 | |
| 
 | |
|   #back to normal business
 | |
|   #if not shared tftpdir, then filter, otherwise, set up everything
 | |
|   if ($req->{_disparatetftp}) { #reading hint from preprocess_command
 | |
|    @nodes = ();
 | |
|    foreach (@rnodes) {
 | |
|      if (xCAT::Utils->nodeonmynet($_)) {
 | |
|         push @nodes,$_;
 | |
|      }
 | |
|    }
 | |
|   } else {
 | |
|      @nodes = @rnodes;
 | |
|   }
 | |
| 
 | |
|   if (ref($request->{arg})) {
 | |
|     @args=@{$request->{arg}};
 | |
|   } else {
 | |
|     @args=($request->{arg});
 | |
|   }
 | |
|   unless ($args[0] eq 'stat' or $args[0] eq 'enact') {
 | |
|     $sub_req->({command=>['setdestiny'],
 | |
|            node=>\@nodes,
 | |
|          arg=>[$args[0]]},\&pass_along);
 | |
|   }
 | |
|   if ($errored) { return; }
 | |
|   my $bptab=xCAT::Table->new('bootparams',-create=>1);
 | |
|   my $bphash = $bptab->getNodesAttribs(\@nodes,['kernel','initrd','kcmdline']);
 | |
|   my $chaintab=xCAT::Table->new('chain',-create=>1);
 | |
|   my $chainhash=$chaintab->getNodesAttribs(\@nodes,['currstate']);
 | |
|   my $mactab=xCAT::Table->new('mac',-create=>1);
 | |
|   my $machash=$mactab->getNodesAttribs(\@nodes,['mac']);
 | |
| 
 | |
|   foreach (@nodes) {
 | |
|     my %response;
 | |
|     $response{node}->[0]->{name}->[0]=$_;
 | |
|     if ($args[0] eq 'stat') {
 | |
|       $response{node}->[0]->{data}->[0]= getstate($_);
 | |
|       $callback->(\%response);
 | |
|     } elsif ($args[0]) { #If anything else, send it on to the destiny plugin, then setstate
 | |
|       setstate($_,$bphash,$chainhash,$machash);
 | |
|     }
 | |
|   }
 | |
|   my @normalnodeset = keys %normalnodes;
 | |
|   $sub_req->({command=>['makedhcp'],
 | |
|            node=>\@normalnodeset},$callback);
 | |
|   my @breaknetboot=keys %breaknetbootnodes;
 | |
|   $sub_req->({command=>['makedhcp'],
 | |
|          node=>\@breaknetboot,
 | |
|          arg=>['-s','filename = \"xcat/nonexistant_file_to_intentionally_break_netboot_for_localboot_to_work\";']},$callback);
 | |
| 
 | |
| }
 | |
| 
 | |
| #----------------------------------------------------------------------------
 | |
| =head3  getNodesetStates
 | |
|        returns the nodeset state for the given nodes. The possible nodeset
 | |
|            states are: netboot, install, boot and discover.
 | |
|     Arguments:
 | |
|         nodes  --- a pointer to an array of nodes
 | |
|         states -- a pointer to a hash table. This hash will be filled by this
 | |
|              function node and key and the nodeset stat as the value. 
 | |
|     Returns:
 | |
|        (return code, error message)
 | |
| =cut
 | |
| #-----------------------------------------------------------------------------
 | |
| sub getNodesetStates {
 | |
|   my $noderef=shift;
 | |
|   if ($noderef =~ /xCAT_plugin::yaboot/) {
 | |
|     $noderef=shift;
 | |
|   }
 | |
|   my @nodes=@$noderef;
 | |
|   my $hashref=shift; 
 | |
|   
 | |
|   if (@nodes>0) {
 | |
|     foreach my $node (@nodes) {
 | |
|       my $tmp=getstate($node);
 | |
|       my @a=split(' ', $tmp);
 | |
|       $stat = $a[0];
 | |
|       $hashref->{$node}=$stat;
 | |
|     }
 | |
|   }
 | |
|   return (0, "");
 | |
| }
 | |
| 
 | |
| 1;
 |