2013-07-09 19:28:49 +04:00
#!/bin/bash
#
# Copyright (C) 2011,2013 Colin Walters <walters@verbum.org>
#
2018-01-30 22:26:26 +03:00
# SPDX-License-Identifier: LGPL-2.0+
#
2013-07-09 19:28:49 +04:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
2021-12-07 04:20:55 +03:00
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
2013-07-09 19:28:49 +04:00
2016-01-27 19:44:10 +03:00
set -euo pipefail
2013-07-09 19:28:49 +04:00
2016-03-03 22:19:10 +03:00
# If gjs is not installed, skip the test
if ! gjs --help >/dev/null 2>& 1; then
echo "1..0 # SKIP no gjs"
2016-03-04 02:00:54 +03:00
exit 0
2016-03-03 22:19:10 +03:00
fi
2013-07-09 19:28:49 +04:00
. $( dirname $0 ) /libtest.sh
2017-09-01 23:15:33 +03:00
setup_fake_remote_repo1 "archive"
2013-07-09 19:28:49 +04:00
2017-09-05 22:01:12 +03:00
echo '1..3'
2013-07-09 19:28:49 +04:00
repopath = ${ test_tmpdir } /ostree-srv/gnomerepo
cp -a ${ repopath } ${ repopath } .orig
do_corrupt_pull_test( ) {
cd ${ test_tmpdir }
rm repo -rf
mkdir repo
2017-03-24 17:35:59 +03:00
ostree_repo_init repo
2013-09-05 22:50:36 +04:00
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
2013-07-09 19:28:49 +04:00
if ${ CMD_PREFIX } ostree --repo= repo pull origin main; then
2013-08-28 02:01:43 +04:00
assert_not_reached "pull unexpectedly succeeded!"
2013-07-09 19:28:49 +04:00
fi
rm -rf ${ repopath }
cp -a ${ repopath } .orig ${ repopath }
2014-01-19 20:48:27 +04:00
${ CMD_PREFIX } ostree --repo= repo pull origin main
if ${ CMD_PREFIX } ostree --repo= repo fsck; then
2013-08-28 02:01:43 +04:00
echo "ok pull with correct data worked"
else
assert_not_reached "pull with correct data failed!"
fi
2013-07-09 19:28:49 +04:00
}
2014-01-19 21:39:38 +04:00
# FIXME - ignore errors here since gjs in RHEL7 has the final
# unrooting bug
gjs $( dirname $0 ) /corrupt-repo-ref.js ${ repopath } main || true
assert_file_has_content corrupted-status.txt 'Changed byte'
2013-07-09 19:28:49 +04:00
do_corrupt_pull_test
2016-01-27 19:44:10 +03:00
echo "ok corruption"
2017-09-05 22:01:12 +03:00
if ! skip_one_without_user_xattrs; then
# Set up a corrupted commit object
rm ostree-srv httpd repo -rf
setup_fake_remote_repo1 "archive"
rev = $( ostree --repo= ostree-srv/gnomerepo rev-parse main)
corruptrev = $( echo ${ rev } hello | sha256sum | cut -f 1 -d ' ' )
assert_not_streq ${ rev } ${ corruptrev }
rev_path = ostree-srv/gnomerepo/objects/${ rev : 0 : 2 } /${ rev : 2 } .commit
corruptrev_path = ostree-srv/gnomerepo/objects/${ corruptrev : 0 : 2 } /${ corruptrev : 2 } .commit
mkdir -p $( dirname ${ corruptrev_path } )
mv ${ rev_path } ${ corruptrev_path }
echo ${ corruptrev } > ostree-srv/gnomerepo/refs/heads/main
${ CMD_PREFIX } ostree --repo= ostree-srv/gnomerepo summary -u
if ${ CMD_PREFIX } ostree --repo= ostree-srv/gnomerepo fsck 2>err.txt; then
assert_not_reached "fsck with corrupted commit worked?"
fi
2017-12-05 22:27:15 +03:00
assert_file_has_content_literal err.txt " Corrupted commit object; checksum expected=' ${ corruptrev } ' actual=' ${ rev } ' "
2017-09-05 22:01:12 +03:00
# Do a pull-local; this should succeed since we don't verify checksums
# for local repos by default.
rm repo err.txt -rf
ostree_repo_init repo --mode= bare-user
${ CMD_PREFIX } ostree --repo= repo pull-local ostree-srv/gnomerepo main
rm repo err.txt -rf
ostree_repo_init repo --mode= bare-user
if ${ CMD_PREFIX } ostree --repo= repo pull-local --untrusted ostree-srv/gnomerepo main 2>err.txt; then
assert_not_reached "pull-local --untrusted worked?"
fi
2017-10-16 21:35:17 +03:00
assert_file_has_content_literal err.txt " Corrupted commit object; checksum expected=' ${ corruptrev } ' actual=' ${ rev } ' "
2017-09-05 22:01:12 +03:00
rm repo err.txt -rf
ostree_repo_init repo --mode= bare-user
${ CMD_PREFIX } ostree --repo= repo remote add --set= gpg-verify= false origin $( cat httpd-address) /ostree/gnomerepo
if ${ CMD_PREFIX } ostree --repo= repo pull origin main 2>err.txt; then
assert_not_reached "pull unexpectedly succeeded!"
fi
2017-10-16 21:35:17 +03:00
assert_file_has_content_literal err.txt " Corrupted commit object; checksum expected=' ${ corruptrev } ' actual=' ${ rev } ' "
2017-09-05 22:01:12 +03:00
echo "ok pull commit corruption"
fi