mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 05:12:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | 
						|
# The first module to deal with hardware discovery request, write the request into "discoverydata" table only
 | 
						|
package xCAT_plugin::aaadiscovery;
 | 
						|
 | 
						|
BEGIN
 | 
						|
{
 | 
						|
    $::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : '/opt/xcat';
 | 
						|
}
 | 
						|
use lib "$::XCATROOT/lib/perl";
 | 
						|
use xCAT::DiscoveryUtils;
 | 
						|
use xCAT::NetworkUtils;
 | 
						|
 | 
						|
sub handled_commands {
 | 
						|
    return {
 | 
						|
        findme => 'aaadiscovery',
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
sub process_request {
 | 
						|
    my $req   = shift;
 | 
						|
    my $cb    = shift;
 | 
						|
    my $doreq = shift;
 | 
						|
    if ($req->{command}->[0] eq 'findme') {
 | 
						|
        if (defined($req->{discoverymethod}) and defined($req->{discoverymethod}->[0])) {
 | 
						|
            my $rsp = {};
 | 
						|
            $rsp->{error}->[0] = "The findme request had been processed by " . $req->{discoverymethod}->[0] . " module";
 | 
						|
            $cb->($rsp);
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        my $client_ip = $req->{'_xcat_clientip'};
 | 
						|
 | 
						|
        my $arptable;
 | 
						|
        if (-x "/usr/sbin/arp") {
 | 
						|
            $arptable = `/usr/sbin/arp -n`;
 | 
						|
        }
 | 
						|
        else {
 | 
						|
            $arptable = `/sbin/arp -n`;
 | 
						|
        }
 | 
						|
        my @arpents = split /\n/, $arptable;
 | 
						|
        my $mac;
 | 
						|
        foreach (@arpents) {
 | 
						|
            if (m/^($client_ip)\s+\S+\s+(\S+)\s/) {
 | 
						|
                $mac = $2;
 | 
						|
                last;
 | 
						|
            }
 | 
						|
        }
 | 
						|
        unless ($mac) {
 | 
						|
            xCAT::MsgUtils->message("S", "xcat.discovery.aaadiscovery: Failed to get MAC address for $client_ip in arp cache.");
 | 
						|
            $mac = "$req->{mtm}->[0]*$req->{serial}->[0]";
 | 
						|
        }
 | 
						|
 | 
						|
        xCAT::MsgUtils->message("S", "xcat.discovery.aaadiscovery: ($mac) Got a discovery request, attempting to discover the node...");
 | 
						|
        $req->{discoverymethod}->[0] = 'undef';
 | 
						|
        $req->{_xcat_clientmac}->[0] = $mac;
 | 
						|
        #Workaround (#4890) for IP changed cases.
 | 
						|
        xCAT::NetworkUtils->clearcache();
 | 
						|
        xCAT::DiscoveryUtils->update_discovery_data($req);
 | 
						|
        return;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
1;
 |