/[pxelator]/lib/PXElator/kvm.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/kvm.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 54 by dpavlin, Thu Jul 30 12:28:49 2009 UTC revision 390 by dpavlin, Mon Sep 7 21:34:05 2009 UTC
# Line 4  use warnings; Line 4  use warnings;
4  use strict;  use strict;
5  use autodie;  use autodie;
6    
 use File::Slurp;  
   
7  use server;  use server;
8    
9  my $interfaces = read_file '/etc/network/interfaces';  use Data::Dump qw/dump/;
10    
11  if ( $interfaces !~ m{tap0.*$server::ip}s ) {  our $memory_size = 512;
12    
13          system "sudo apt-get install vde2";  # AC = private, AD = multicast, AE = local
14    
15          $interfaces .= qq{  sub nr { $ENV{nr} || 0 };
16    
17  iface tap0 inet static  sub port {
18    address $server::ip          my ($port,$del) = @_;
19    netmask $server::netmask          $port += nr();
20    vde2-switch -          return join( $del, $server::ip, $port );
21    }
22    
23          };  sub fork_if_active { qw/monitor serial/ }
24    
25          write_file '/etc/network/interfaces', $interfaces;  use x11;
26    
27    sub monitor {
28            x11::xterm( 'monitor ' . nr() => 'nc ' . port(10000,' ') );
29  }  }
30    
31  if ( grep /tap0/, read_file '/proc/net/dev' ) {  sub serial {
32          warn "tap0 started";          my $nr = $ENV{nr} || 0;
33  } else {          x11::xterm( 'serial ' . nr() => 'nc ' . port(11000,' ') );
         system "sudo ifup tap0";  
34  }  }
35    
36  our $memory_size = 512;  sub actions { qw/reset activate/ }
37  our $mac = '52:54:00:00:00:01';  
38    sub reset {
39            my $sock = IO::Socket::INET->new( port(10000,':') );
40            print $sock "system_reset\n";
41            close $sock;
42    }
43    
44    sub activate {
45            system "xdotool windowactivate `xdotool search --class kvm`"
46    }
47    
48  sub start {  sub start {
49            my $nr = $ENV{nr} || 0;
50    
51            my $mac = sprintf('AC:DE:48:00:00:%02x', $nr);
52            my $mon = port(10000,':');
53            my $ser = port(11000,':');
54    
55            my $ifname = 'kvm' . $nr;
56    
57            warn "# kvm start $nr $mac $mon $ser $ifname";
58    
59    #       system "ifconfig $ifname down";
60    #       system "brctl delif virtual $ifname";
61    #       system "tunctl -d $ifname";
62    
63            my $ifconfig = `/sbin/ifconfig $ifname`;
64    
65            # FIXME tunctl -u $server::user
66            system "tunctl -t $ifname"
67                    unless $ifconfig =~ m{$ifname};
68            system "ifconfig $ifname up"
69                    unless $ifconfig =~ m{UP};
70            system "brctl addif virtual $ifname"
71                    unless `brctl show` =~ m{$ifname};
72    
73          my $kvm = qq|          my $kvm = qq|
74                  vdeq kvm -m $memory_size -net nic,vlan=1,macaddr=$mac                  kvm -m $memory_size -net nic,macaddr=$mac
75                  -net vde,vlan=1,sock=/var/run/vde2/tap0.ctl                  -net tap,ifname=$ifname,script=no
76                  -boot n                  -boot n
77                    -monitor tcp:$mon,server,nowait
78                    -serial  tcp:$ser,server,nowait
79          |;          |;
80            #       -runas $server::user
81          $kvm =~ s{\s+}{ }gs;          $kvm =~ s{\s+}{ }gs;
82    
83          warn $kvm;          warn $kvm;
84          system $kvm;          exec $kvm;
85    
86  }  }
87    

Legend:
Removed from v.54  
changed lines
  Added in v.390

  ViewVC Help
Powered by ViewVC 1.1.26