source: drbl-virt/sbin/functions_drbl_virt @ 184

Last change on this file since 184 was 184, checked in by rock, 14 years ago

Modify: push arch

File size: 8.9 KB
Line 
1#!/bin/bash
2# Program:
3#   DRBL virt module
4# Author:
5#   Jazz, Rock {jazz, rock}@nchc.org.tw
6# Version:
7#    1.0
8# History:
9#   2010/07/20  Rock    First release (1.0)
10
11# [Variable Declation]
12cpu_flag="no"
13Linux_bit=""
14Linux_Distribution=""
15Linux_Version=""
16VMM_select=""
17
18# [Check Root]
19function check_root(){     
20  if [ $USER != "root" ]; then
21    echo -e "Please change root to run it!"
22    exit
23  fi
24} 
25
26function check_root_run(){
27    if [ $USER != "root" ]; then
28    echo -e "Please change root to run it!"
29    sudo su -c ~/"$0" "$@"
30    exit
31fi
32}
33
34
35# [Check CPU support]
36function cpu_check(){
37egrep '(vmx|svm)' --color=always /proc/cpuinfo > /dev/null
38if [ $? == 0 ]; then
39    cpu_flag="yes"
40fi
41}
42
43# [Check System Version]
44function check_systemInfo(){
45Linux_bit=$(uname -m)
46Linux_Distribution=$(lsb_release -i | awk '{print $3}')
47Linux_Version=$(lsb_release -r | awk '{print $2}')
48}
49
50# [Select Hypervisior(Xen/KVM)]
51function VMM_select(){
52echo ""
53if [ $cpu_flag == "yes" ]; then
54    while [ "$VMM_select" != "1" -a "$VMM_select" != "2"  ]
55    do
56       read -p "Which VMM/Hypervisior will be used in DRBL (1)Xen (2)KVM: " VMM_select
57    done
58  if [ $VMM_select == "1"  ]; then
59    echo "Xen" > $Work_Home/etc/hypervisior
60  else
61    echo "KVM" > $Work_Home/etc/hypervisior
62  fi 
63else
64    echo "Xen will be the only Hypervisior in your DRBL"
65    echo -e "Because CPU don't support virtualization, it can't choose KVM to be the Hypervisior"
66    echo ""
67    VMM_select=1
68    echo "Xen" > $Work_Home/etc/hypervisior
69fi 
70}   
71
72
73# [Create drbl-virt path]
74function install_drbl-virt_dir(){
75    mkdir -p $Work_Home/.tmp
76    mkdir -p $Work_Home/etc
77}
78
79
80# [Check Hypervisior]
81function check_hypervisior(){
82    hypervisior=$(cat $Work_Home/etc/hypervisior)   
83}
84
85
86# [Check Debian Xen package]
87function check_debian_xen(){
88aptitude update
89check_debian_xen_pkg=$(aptitude search xen-linux-system)
90if [ -n $check_debian_xen_pkg  ]; then
91    check_debian_xen_pkg="yes"
92else
93    check_debian_xen_pkg="no"
94fi
95}
96
97
98# [Check Xen kernel]
99function check_xen_nu(){
100Kernels=$(ls /boot | grep vmlinuz)
101declare -i Kernels_nu=$(echo $Kernels | wc -w)
102Kernel_choose=""
103
104Xens=$(ls /boot | grep -i ^xen)
105declare -i Xen_nu=$(echo $Xen | wc -w)
106Xen_choose=""
107
108jude="no"
109
110while [ $jude != "yes" -a $jude != "y" ]
111do
112    declare -i i=1
113    declare -i j=1
114    echo ""
115   
116    if [ $Kernels_nu -gt 1  ]; then
117        for Kernel in $Kernels
118        do
119            echo "($i) $Kernel" 
120            i=i+1
121        done
122
123        read -p "Xen Kenrel is (1/2/...): " Kernel_choose
124        Xen_Kernel=$(echo $Kernels | cut -d " " -f${Kernel_choose})
125
126    else
127        Xen_Kernel=$Kernels
128    fi
129
130    if [ $Xen_nu -gt 1  ]; then
131        for Xen in $Xens
132        do
133            echo "($i) $Xen"
134            j=j+1
135        done
136
137        read -p "Xen is (1/2/...): " Xen_choose
138        Xen=$(echo $Xens | cut -d " " -f${Xen_choose})
139    else
140        Xen=$Xens
141    fi
142
143    read -p "Are you sure (yes/no): " jude
144done
145
146#echo "debug: Xen_Kernel=$Xen_Kernel"
147}
148
149
150function debain-lenny_xen_patch(){
151echo xen.independent_wallclock=1 >> /etc/sysctl.conf
152echo loop max_loop=255 >> /etc/modules
153echo xenblktap >> /etc/modules
154ln -s /usr/lib/$/bin/tapdisk /usr/sbin
155}
156
157
158function get_DRBL_eth(){
159eths=$(ls /etc/drbl | grep macadr-eth[0-9] | grep [0-9].txt$ | cut -d "-" -f2 | cut -d "." -f1)
160eths_nu=$(echo $eths | wc -w)
161
162if [ $eths_nu -gt 1 ]; then
163    echo ""
164    echo "There are multiple eth for DRBL environment: "
165    echo "$eths"
166fi
167
168}
169
170function get_Host_IP_range(){
171if [ ! -e /usr/bin/ipcalc ] || [ ! -e /opt/drbl/bin/drbl-get-network ] || [ ! -e /opt/drbl/bin/drbl-get-ipadd ]; then
172    echo "Don't find /usr/bin/ipcalc /opt/drbl/bin/drbl-get-network & /opt/drbl/bin/drbl-get-ipadd"
173    exit 0
174fi
175
176# get eth network X.X.X
177eth_network_f3=$(echo $eth_network | cut -d "." -f 1-3)
178
179IP_nu=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | wc -l)
180Host_first_IP=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | awk "NR==1 {print $1}" | awk '{print $1}')
181Host_last_IP=$(cat /etc/drbl/IP_HOST_TABLE | grep $eth_network_f3 | awk "NR==$IP_nu {print $1}"| awk '{print $1}')
182
183}
184
185function get_VM_IP_range_and_prefix_name(){
186
187echo ""
188echo "DRBL client IP range -> $eth: [$Host_first_IP ~ $Host_last_IP]"
189
190Host_last_IP_4=$(echo $Host_last_IP | cut -d "." -f4)
191Host_last_IP_4=$(($Host_last_IP_4+1))
192VM_first_IP=$(echo $Host_last_IP | cut -d "." -f 1-3)
193VM_first_IP="${VM_first_IP}.${Host_last_IP_4}"
194
195echo "The VM IP Range will start from -> [$VM_first_IP]"
196jude="no"
197while [ $jude != "yes" -a $jude != "y" ];
198do
199    echo ""
200    echo "Input VM number/IP range for $eth (ex. 40)."
201
202    jude_2="no"
203    while [ $jude_2 != "yes" -a $jude_2 != "y" ]
204    do
205        jude_2="yes"
206        read -p "(If you have 10 PCs(4-core), suggestion is 30): " VM_IP_range
207        if [ $((${VM_IP_range}+${Host_last_IP_4})) -ge 254 ]; then
208            echo "range can't greater than 254"
209            jude_2="no"
210        fi
211    done
212
213    #read -p "Input Prefix name for VM for $eth (ex. drblvm): " VM_prefix_name
214    VM_prefix_name=$(cat /etc/drbl/drblpush.conf  | grep hostname= | sed 's/hostname=//')
215    read -p "Is it correct? (yes/no): " jude
216done
217
218#echo "VM_first_IP=$VM_first_IP"
219#echo "VM_IP_range=$VM_IP_range"
220}
221
222#function get_VM_prefix_name(){
223#jude="no"
224#while [ $jude != "yes" -a $jude != "y" ];
225#do
226#    echo ""
227#    read -p "Input Prefix name for VM for $eth (ex. drblvm): " VM_prefix_name
228#    read -p "Is it correct? (yes/no): " jude
229#done
230#echo "VM_prefix_name=$VM_prefix_name"
231#}
232
233function create_VM_IP_table(){
234#/etc/drbl-virt/etc/IP_VM_eth
235VM_prefix_eth=$(echo $eth |  sed 's/eth//g')
236VM_Host_totoal_nu=$((${Host_last_IP_4}-1+${VM_IP_range}))
237if [ -e /opt/drbl-virt/etc/IP_VM_$eth ]; then
238    mv -f /opt/drbl-virt/etc/IP_VM_$eth /opt/drbl-virt/etc/IP_VM_${eth}.$(date +%Y-%m-%d-%H-%M-%S).drbl-virt_bak
239fi
240declare -i VM_IP_0=$VM_prefix_eth
241declare -i VM_IP_1=""
242declare -i VM_IP_2=""
243declare -i VM_IP_3=""
244
245# 2 bit
246if [ $VM_Host_totoal_nu -lt 100 ]; then
247    for (( i=$Host_last_IP_4 ; i<="$VM_Host_totoal_nu" ; i++ ))
248    do
249        if [ $i -lt 10 ]; then
250            VM_IP_1=0
251            VM_IP_2=$i
252            echo "${eth_network_f3}.$VM_IP_2 ${VM_prefix_name}${VM_IP_0}${VM_IP_1}${VM_IP_2}" >> /opt/drbl-virt/etc/IP_VM_$eth
253        else
254            VM_IP_1=$i
255            echo "${eth_network_f3}.$VM_IP_1 ${VM_prefix_name}${VM_IP_0}${VM_IP_1}" >> /opt/drbl-virt/etc/IP_VM_$eth
256        fi
257    done
258# 3 bit
259elif [ $VM_Host_totoal_nu -ge 100 ] && [ $VM_Host_totoal_nu -lt 254 ]; then
260    for (( i=$Host_last_IP_4 ; i<=$VM_Host_totoal_nu ; i++ ))
261    do
262        if [ $i -lt 10 ]; then
263            VM_IP_1=0
264            VM_IP_2=0
265            VM_IP_3=$i
266            echo "${eth_network_f3}.${VM_IP_3} ${VM_prefix_name}${VM_IP_0}${VM_IP_1}${VM_IP_2}${VM_IP_3}" >> /opt/drbl-virt/etc/IP_VM_$eth
267        elif [ $i -ge 10 ] && [ $i -lt 100 ]; then
268            VM_IP_1=0
269            VM_IP_2=$i
270            echo "${eth_network_f3}.${VM_IP_2} ${VM_prefix_name}${VM_IP_0}${VM_IP_1}${VM_IP_2}" >> /opt/drbl-virt/etc/IP_VM_$eth
271        else
272            VM_IP_1=$i
273            echo "${eth_network_f3}.${VM_IP_1} ${VM_prefix_name}${VM_IP_0}${VM_IP_1}" >> /opt/drbl-virt/etc/IP_VM_$eth
274        fi
275    done
276
277fi
278}
279
280function generate_Xen_MAC_address(){
281echo "eth $eth"
282echo "VM_Host_totoal_nu $VM_Host_totoal_nu"
283echo "Host_last_IP_4 $Host_last_IP_4"
284echo "VM_prefix_eth $VM_prefix_eth"
285
286# /opt/drbl-virt/etc/macadr-VM-ethX.txt
287# MAC address [00:16:3e:xx:xx:xx] is for Xen use
288declare -i Xen_MAC_1="0"
289declare -i Xen_MAC_2="$VM_prefix_eth"
290declare -i Xen_MAC_3="0"
291declare -i Xen_MAC_4="0"
292Xen_MAC_5=""
293Xen_MAC_6=""
294
295# backup
296mv -f /opt/drbl-virt/etc/macadr-VM-$eth.txt /opt/drbl-virt/etc/macadr-VM-$eth.txt.$(date +%Y-%m-%d-%H-%M-%S).drbl-virt_bak
297
298# generate MAC
299for (( i=0 ; i<="$VM_Host_totoal_nu" ; i++ ))
300do
301    if [ $i -lt 10 ]; then
302        Xen_MAC_5=0
303        Xen_MAC_6=$i
304        echo "00:16:3e:${Xen_MAC_1}${Xen_MAC_2}:${Xen_MAC_3}${Xen_MAC_4}:${Xen_MAC_5}${Xen_MAC_6}" >> /opt/drbl-virt/etc/macadr-VM-$eth.txt
305    elif [ $i -ge 10 ] && [ $i -le 15 ] ; then
306        Xen_MAC_5=0
307        # translate 10(dec) to 16(hex)
308        printf '%X\n' $i > /tmp/drbl-virt_MAC
309        Xen_MAC_6=$(cat /tmp/drbl-virt_MAC)
310        echo "00:16:3e:${Xen_MAC_1}${Xen_MAC_2}:${Xen_MAC_3}${Xen_MAC_4}:${Xen_MAC_5}${Xen_MAC_6}" >> /opt/drbl-virt/etc/macadr-VM-$eth.txt
311    else
312        printf '%X\n' $i > /tmp/drbl-virt_MAC
313        Xen_MAC_5=$(cat /tmp/drbl-virt_MAC)
314        echo "00:16:3e:${Xen_MAC_1}${Xen_MAC_2}:${Xen_MAC_3}${Xen_MAC_4}:${Xen_MAC_5}" >> /opt/drbl-virt/etc/macadr-VM-$eth.txt
315    fi
316done
317}
318
319function add_VM_dhcpd_conf(){
320# backup dhcpd.conf
321if [ -e /etc/dhcp3/dhcpd.conf ]; then
322cp -f /etc/dhcp3/dhcpd.conf /etc/dhcp3/dhcpd.conf.drbl-virt_bak
323fi
324
325subnet_lines=$(cat -n /etc/dhcp3/dhcpd.conf | grep $eth_network | awk '{print $1}')
326host_lines=$(cat -n /etc/dhcp3/dhcpd.conf | grep 'host ' | grep '{' | awk '{print $1}')
327
328for subnet_line in $subnet_lines
329do
330    host_lines cat -n /etc/dhcp3/dhcpd.conf | sed -n "$subnet_line,\$p" | grep 'host .* {' | awk '{print $1}'
331
332done
333
334}
Note: See TracBrowser for help on using the repository browser.