3e470988
hmalti
First commit
|
1
|
#!/bin/bash
|
5cf93464
hmalti
Ajout interfaces ...
|
2
3
4
5
6
7
8
9
|
while getopts i:c:b:r:a:p: o; do
case $o in
(i) NOM_IMAGE=$OPTARG;;
(c) NOM_CONTAINER=$OPTARG;;
(b) BRIDGES=$OPTARG;;
(r) REPERTOIRE=$OPTARG;;
(a) ADDRS_IPV4=$OPTARG;;
(p) PROGRAM=$OPTARG;;
|
5cf93464
hmalti
Ajout interfaces ...
|
10
11
|
esac
done
|
3e470988
hmalti
First commit
|
12
|
|
5721892d
hmalti
Avancées
|
13
|
echo "Creation du container $NOM_CONTAINER basé sur l'image $NOM_IMAGE lancant le programme $PROGRAM connecté au(x) bridge(s) $BRIDGES avec les adresses $ADDRS_IPV4"
|
5721892d
hmalti
Avancées
|
14
|
|
055618a3
hmalti
Ajout hash interf...
|
15
|
#Check existence image
|
5721892d
hmalti
Avancées
|
16
|
if [ -z "$PATH_MANIFEST/images/$NOM_IMAGE.manifest" ] || [ -z $NOM_IMAGE ]; then
|
5cf93464
hmalti
Ajout interfaces ...
|
17
18
19
|
echo "Image non existante."
exit
fi
|
3e470988
hmalti
First commit
|
20
|
|
055618a3
hmalti
Ajout hash interf...
|
21
|
#Check existence bridge
|
5721892d
hmalti
Avancées
|
22
|
if [ ! -z $NOM_BRIDGE ] || [ -z "$PATH_MANIFEST/bridges/$NOM_BRIDGE.manifest" ]; then
|
5cf93464
hmalti
Ajout interfaces ...
|
23
24
25
|
echo "Bridge non existant."
exit
fi
|
3e470988
hmalti
First commit
|
26
27
|
#On veut récupérer le chemin de l'image
|
5721892d
hmalti
Avancées
|
28
|
PATH_IMAGE="$(grep chemin $PATH_MANIFEST/images/$NOM_IMAGE.manifest | cut -d':' -f2)"
|
3e470988
hmalti
First commit
|
29
|
|
055618a3
hmalti
Ajout hash interf...
|
30
|
#On fait une copie dans /var/baleine/images pour mount depuis le conteneur
|
3e470988
hmalti
First commit
|
31
|
if [[ ! -d "$PATH_BALEINE/containers/$NOM_CONTAINER" ]]; then
|
5cf93464
hmalti
Ajout interfaces ...
|
32
|
mkdir -p $PATH_BALEINE/containers/$NOM_CONTAINER
|
3e470988
hmalti
First commit
|
33
34
|
fi
|
055618a3
hmalti
Ajout hash interf...
|
35
|
cp $PATH_IMAGE/$NOM_IMAGE $PATH_BALEINE/containers/$NOM_CONTAINER/$NOM_IMAGE
|
5721892d
hmalti
Avancées
|
36
|
|
3e470988
hmalti
First commit
|
37
|
|
055618a3
hmalti
Ajout hash interf...
|
38
|
#Création du du dossier de montage de l'image du container
|
5721892d
hmalti
Avancées
|
39
40
41
42
|
if [[ ! -d "/mnt/baleine/$NOM_CONTAINER" ]]; then
mkdir -p /mnt/baleine/$NOM_CONTAINER
fi
|
3e470988
hmalti
First commit
|
43
44
|
#on monte le système de fichiers
|
5cf93464
hmalti
Ajout interfaces ...
|
45
|
echo "Montage de l'image"
|
3e470988
hmalti
First commit
|
46
47
|
mount -t ext4 -o loop $PATH_BALEINE/containers/$NOM_CONTAINER/$NOM_IMAGE /mnt/baleine/$NOM_CONTAINER
|
5161dfdb
hmalti
Améliorations scr...
|
48
|
#On renseigne le fichier fstab du conteneur
|
5721892d
hmalti
Avancées
|
49
50
|
echo "proc /proc proc defaults 0 0" >> /mnt/baleine/$NOM_CONTAINER/etc/fstab
echo "$PROGRAM" >> /mnt/baleine/$NOM_CONTAINER/etc/rc.local
|
5161dfdb
hmalti
Améliorations scr...
|
51
|
|
5cf93464
hmalti
Ajout interfaces ...
|
52
|
#On fait le unshare sur l'image passée en paramètre,
|
5721892d
hmalti
Avancées
|
53
|
|
055618a3
hmalti
Ajout hash interf...
|
54
|
nohup unshare -p -f -m -n -u chroot /mnt/baleine/$NOM_CONTAINER /bin/sh -c "mount /proc ; $PROGRAM ; while true ; do sleep 10 ; done" &
|
3e470988
hmalti
First commit
|
55
|
PID=$!
|
3e470988
hmalti
First commit
|
56
|
|
055618a3
hmalti
Ajout hash interf...
|
57
58
|
echo "PID Unshare :$PID"
|
3e470988
hmalti
First commit
|
59
|
FILE=$NOM_CONTAINER.manifest
|
061a7e29
hmalti
Corrections
|
60
|
date=$(date +"%Y-%m-%d-%Hh-%Mm-%Ss")
|
5cf93464
hmalti
Ajout interfaces ...
|
61
|
|
17bfc359
hmalti
Help Image+contai...
|
62
|
echo "nom_container:$NOM_CONTAINER" >> $FILE #nom du conteneur
|
3e470988
hmalti
First commit
|
63
|
echo "nom_image:$NOM_IMAGE" >> $FILE #nom de son image
|
5721892d
hmalti
Avancées
|
64
|
echo "pid:$PID" >> $FILE #Son PID
|
b02be524
hmalti
Correctifs + gest...
|
65
|
echo "nom_bridges:$BRIDGES" >> $FILE #SON BRIDGE
|
5cf93464
hmalti
Ajout interfaces ...
|
66
|
echo "starting_time: $date" >> $FILE #starting time
|
3e470988
hmalti
First commit
|
67
|
|
b1087939
hmalti
Ajout commandes
|
68
|
|
3e470988
hmalti
First commit
|
69
70
71
72
73
|
if [[ ! -d "$PATH_MANIFEST/containers" ]]; then
mkdir -p $PATH_MANIFEST/containers
fi
mv $NOM_CONTAINER.manifest $PATH_MANIFEST/containers/$NOM_CONTAINER.manifest
|
5161dfdb
hmalti
Améliorations scr...
|
74
75
|
|
5cf93464
hmalti
Ajout interfaces ...
|
76
77
78
79
|
#TODO : taille mémoire / limite mémoire
#AWK pour récupèrer le nombre d'addresses IPV4 données en arguments
#(https://unix.stackexchange.com/questions/144217/counting-comma-separated-characters-in-a-row)
|
5721892d
hmalti
Avancées
|
80
|
NOMBRE_INTERFACES="$(echo $ADDRS_IPV4 | awk -F '[,]' '{print NF}')"
|
5721892d
hmalti
Avancées
|
81
|
NOMBRE_BRIDGES="$(echo $BRIDGES | awk -F '[,]' '{print NF}')"
|
5cf93464
hmalti
Ajout interfaces ...
|
82
|
|
5721892d
hmalti
Avancées
|
83
|
if [ $NOMBRE_INTERFACES -ne $NOMBRE_BRIDGES ]; then
|
5cf93464
hmalti
Ajout interfaces ...
|
84
85
|
echo "Erreur: Il n'y a pas autant de bridges que d'interfaces réseaux"
exit 1
|
5721892d
hmalti
Avancées
|
86
|
fi
|
5cf93464
hmalti
Ajout interfaces ...
|
87
|
|
055618a3
hmalti
Ajout hash interf...
|
88
89
90
91
92
93
94
|
#Creation veth
#Problématique : Sur Linux, impossible d'avoir des interfaces avec des noms de plus de 16 caractères
# Impossible donc de mettre des interfaces du type
#Solution : On hash le nom du container, on le ramène aux trois premiers digits, puis on ajoute l'index
ARRAY_INTERFACES=()
|
b02be524
hmalti
Correctifs + gest...
|
95
|
for ((i = 0 ; i<$NOMBRE_INTERFACES ; i++)); do
|
055618a3
hmalti
Ajout hash interf...
|
96
97
98
|
#Creation d'un hash du nom du container pour créer les interfaces
HASH=$(sha1sum <<< $NOM_CONTAINER)
#On prend les trois premiers caractères du hash, succédé de l'index de l'interface
|
b02be524
hmalti
Correctifs + gest...
|
99
|
INTERFACE_NAME="vif${HASH:0:4}_$i"
|
055618a3
hmalti
Ajout hash interf...
|
100
101
102
103
104
105
106
107
108
109
|
ip link add $INTERFACE_NAME type veth peer name eth$i@$INTERFACE_NAME
#On rajoute l'interface à la liste des interfaces du container
ARRAY_INTERFACES+=($INTERFACE_NAME)
#On redemarre l'interface virtuelle
ip link set dev $INTERFACE_NAME down
ip link set dev $INTERFACE_NAME up
#On place l'une des extrémité de la paire veth dans le namespace du container
ip link set eth$i@$INTERFACE_NAME netns /proc/$PID/ns/net name eth$i
|
5cf93464
hmalti
Ajout interfaces ...
|
110
111
|
done
|
5721892d
hmalti
Avancées
|
112
113
|
#Compte le nombre de bridges présents
NOMBRE_BRIDGES=$(echo $BRIDGES | awk -F '[,]' '{print NF}')
|
5cf93464
hmalti
Ajout interfaces ...
|
114
|
|
055618a3
hmalti
Ajout hash interf...
|
115
|
#On met le séparateur à "," pour délimiter les addresses ip et bridges
|
5cf93464
hmalti
Ajout interfaces ...
|
116
117
118
119
120
121
|
IFS=","
ARRAY_BRIDGES=()
ARRAY_IPV4=()
for b in $BRIDGES; do
|
b02be524
hmalti
Correctifs + gest...
|
122
|
ARRAY_BRIDGES+=($b)
|
5cf93464
hmalti
Ajout interfaces ...
|
123
124
125
|
done
for a in $ADDRS_IPV4; do
|
b02be524
hmalti
Correctifs + gest...
|
126
|
ARRAY_IPV4+=($a)
|
5cf93464
hmalti
Ajout interfaces ...
|
127
128
|
done
|
5721892d
hmalti
Avancées
|
129
|
for (( i=0 ; i < ${#ARRAY_IPV4[*]} ; i++ )); do
|
055618a3
hmalti
Ajout hash interf...
|
130
|
#Attribution de la i-ème adresse ip à l'interface i
|
b02be524
hmalti
Correctifs + gest...
|
131
|
nsenter -t $PID -n ip a add ${ARRAY_IPV4[i]} dev eth$i
|
055618a3
hmalti
Ajout hash interf...
|
132
133
134
|
#On redemarre l'interface i dans le container
nsenter -t $PID -n ip link set dev eth$i down
nsenter -t $PID -n ip link set dev eth$i up
|
5721892d
hmalti
Avancées
|
135
|
done
|
3e470988
hmalti
First commit
|
136
|
|
5721892d
hmalti
Avancées
|
137
|
for (( i=0 ; i < ${#ARRAY_BRIDGES[*]} ; i++ )); do
|
055618a3
hmalti
Ajout hash interf...
|
138
|
#Pour chaque interface, on la relie à son bridge associé
|
055618a3
hmalti
Ajout hash interf...
|
139
140
141
|
ip link set ${ARRAY_INTERFACES[i]} master ${ARRAY_BRIDGES[i]}
done
|
0bdad544
hmalti
Ajout affichage c...
|
142
143
144
|
echo "Configuration réseau au sein du conteneur"
nsenter -t $PID -n ip a
|
055618a3
hmalti
Ajout hash interf...
|
145
146
147
|
#Chaine de caractère contenant toutes les interfaces du container, séparées par ","
STRING_INTERFACE=""
|
b02be524
hmalti
Correctifs + gest...
|
148
|
for (( i=0 ; i < ${#ARRAY_INTERFACES[*]} ; i++)); do
|
055618a3
hmalti
Ajout hash interf...
|
149
150
151
152
153
|
STRING_INTERFACE="$STRING_INTERFACE,${ARRAY_INTERFACES[i]}"
#Exemple, à la fin on aura ",vif143,vif560"
done
#On supprime la première virgule exédentaire
|
061a7e29
hmalti
Corrections
|
154
155
|
STRING_INTERFACE=${STRING_INTERFACE:1}
|
b02be524
hmalti
Correctifs + gest...
|
156
|
echo "interfaces:$STRING_INTERFACE" >> $FILE
|