-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: test external namespace support
Adapt netns_ext tests to also work with pid namespaces and move it from test/others/netns_ext/ to test/others/ns_ext/. Also enable ns_ext tests in Travis runs. Signed-off-by: Adrian Reber <[email protected]>
- Loading branch information
1 parent
a578355
commit 82b2687
Showing
6 changed files
with
105 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
run: | ||
./run.sh net | ||
./run.sh pid | ||
|
||
clean: | ||
rm -rf images output pidfile pidfile2 pidfile3 | ||
.PHONY: clean run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
ip link set up dev lo | ||
echo $$ > $1 | ||
while :; do | ||
sleep 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
|
||
if [[ "$1" == "pid" ]]; then | ||
NS=pid | ||
else | ||
NS=net | ||
fi | ||
|
||
MNT1=test_ns1 | ||
MNT2=test_ns2 | ||
|
||
trap "cleanup" QUIT TERM INT HUP EXIT | ||
|
||
function cleanup() | ||
{ | ||
kill -9 $pid $pid2 | ||
sleep 0.5 | ||
umount -lf $MNT1 $MNT2 || : | ||
rm -f $MNT1 $MNT2 | ||
rm -f pidfile pidfile2 pidfile3 | ||
} | ||
|
||
CRIU=../../../criu/criu | ||
if [[ "$NS" == "net" ]]; then | ||
setsid unshare -n bash -c 'unshare -n sh _run.sh pidfile2 & unshare -n sh _run.sh pidfile3 & ip link add xxx type veth && ip link add mymacvlan1 link xxx type macvlan mode bridge && . _run.sh pidfile' < /dev/zero &> output & | ||
elif [[ "$NS" == "pid" ]]; then | ||
# Adding some random values to the command-line to easily grep the correct process later | ||
RND1=$RANDOM | ||
RND2=$RANDOM | ||
unshare -p -f bash -c "setsid sh _run.sh pidfile2 $RND2 & . _run.sh pidfile $RND1" < /dev/zero &> output & | ||
fi | ||
sleep 1 | ||
while :; do | ||
test -f pidfile && test -f pidfile2 && break; | ||
sleep 0.1 | ||
done | ||
|
||
# Figure out the PIDs of the relevant processes | ||
if [[ "$NS" == "net" ]]; then | ||
pid=$(cat pidfile) | ||
pid2=$(cat pidfile2) | ||
elif [[ "$NS" == "pid" ]]; then | ||
# Unfortunately we cannot read out 'pidfile' as it contains the PID | ||
# from within the PID namespace. We need to know the outside PID. | ||
pid2=$(pgrep -f ". _run.sh pidfile $RND1" -n) | ||
pid=$(pgrep -f "sh _run.sh pidfile2 $RND2" -n) | ||
fi | ||
|
||
touch $MNT1 | ||
mount --bind /proc/$pid/ns/$NS $MNT1 | ||
touch $MNT2 | ||
mount --bind /proc/$pid2/ns/$NS $MNT2 | ||
mkdir -p images | ||
ino=$(ls -iL $MNT1 | awk '{ print $1 }') | ||
ino2=$(ls -iL $MNT2 | awk '{ print $1 }') | ||
exec 33< $MNT1 | ||
exec 34< $MNT2 | ||
$CRIU dump -v4 -t $pid -o dump.log -D images --external $NS[$ino]:test_ns --external $NS[$ino2]:test_ns2 | ||
RESULT=$? | ||
cat images/dump.log | grep -B 5 Error || echo ok | ||
[ "$RESULT" != "0" ] && { | ||
echo "CRIU dump failed" | ||
echo FAIL | ||
exit 1 | ||
} | ||
|
||
$CRIU restore -v4 -o restore.log -D images --inherit-fd fd[33]:test_ns --inherit-fd fd[34]:test_ns2 -d | ||
RESULT=$? | ||
cat images/restore.log | grep -B 5 Error || echo ok | ||
[ "$RESULT" != "0" ] && { | ||
echo "CRIU restore failed" | ||
echo FAIL | ||
exit 1 | ||
} | ||
|
||
if [[ "$NS" == "pid" ]]; then | ||
pid=$(pgrep -f "^sh _run.sh pidfile2 $RND2") | ||
fi | ||
new_ino=$(ls -iL /proc/$pid/ns/$NS | awk '{ print $1 }') | ||
new_ino2=$(ls -iL /proc/$pid2/ns/$NS | awk '{ print $1 }') | ||
[ "$ino" != "$new_ino" ] && { | ||
echo "Inode of new NS is different" | ||
echo FAIL | ||
exit 1 | ||
} | ||
[ "$ino2" != "$new_ino2" ] && { | ||
echo "Inode of new NS is different" | ||
echo FAIL | ||
exit 1 | ||
} | ||
echo PASS | ||
exit 0 |