1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package gadget_test
import (
"errors"
"fmt"
"io"
"os"
"path/filepath"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/gadget"
"github.com/snapcore/snapd/gadget/quantity"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/testutil"
)
type rawTestSuite struct {
dir string
backup string
}
var _ = Suite(&rawTestSuite{})
func (r *rawTestSuite) SetUpTest(c *C) {
r.dir = c.MkDir()
r.backup = c.MkDir()
}
func openSizedFile(c *C, path string, size quantity.Size) *os.File {
f, err := os.Create(path)
c.Assert(err, IsNil)
if size != 0 {
err = f.Truncate(int64(size))
c.Assert(err, IsNil)
}
return f
}
type mutateWrite struct {
what []byte
off int64
}
func mutateFile(c *C, path string, size quantity.Size, writes []mutateWrite) {
out := openSizedFile(c, path, size)
for _, op := range writes {
_, err := out.WriteAt(op.what, op.off)
c.Assert(err, IsNil)
}
}
func (r *rawTestSuite) TestRawWriterHappy(c *C) {
out := openSizedFile(c, filepath.Join(r.dir, "out.img"), 2048)
defer out.Close()
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 128, []byte("foo foo foo"))
makeSizedFile(c, filepath.Join(r.dir, "bar.img"), 128, []byte("bar bar bar"))
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 0,
Size: 128,
Index: 0,
}, {
VolumeContent: &gadget.VolumeContent{
Image: "bar.img",
},
StartOffset: 1024,
Size: 128,
Index: 1,
},
},
}
rw, err := gadget.NewRawStructureWriter(r.dir, ps)
c.Assert(err, IsNil)
c.Assert(rw, NotNil)
err = rw.Write(out)
c.Assert(err, IsNil)
expectedPath := filepath.Join(r.dir, "expected.img")
mutateFile(c, expectedPath, 2048, []mutateWrite{
{[]byte("foo foo foo"), 0},
{[]byte("bar bar bar"), 1024},
})
expected, err := os.Open(expectedPath)
c.Assert(err, IsNil)
defer expected.Close()
// rewind
_, err = out.Seek(0, io.SeekStart)
c.Assert(err, IsNil)
_, err = expected.Seek(0, io.SeekStart)
c.Assert(err, IsNil)
c.Check(osutil.StreamsEqual(out, expected), Equals, true)
}
func (r *rawTestSuite) TestRawWriterNoFile(c *C) {
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 0,
},
},
}
rw, err := gadget.NewRawStructureWriter(r.dir, ps)
c.Assert(err, IsNil)
c.Assert(rw, NotNil)
out := openSizedFile(c, filepath.Join(r.dir, "out.img"), 2048)
defer out.Close()
err = rw.Write(out)
c.Assert(err, ErrorMatches, "failed to write image.* cannot open image file:.* no such file or directory")
}
type mockWriteSeeker struct {
write func(b []byte) (n int, err error)
seek func(offset int64, whence int) (ret int64, err error)
}
func (m *mockWriteSeeker) Write(b []byte) (n int, err error) {
if m.write != nil {
return m.write(b)
}
return len(b), nil
}
func (m *mockWriteSeeker) Seek(offset int64, whence int) (ret int64, err error) {
if m.seek != nil {
return m.seek(offset, whence)
}
return offset, nil
}
func (r *rawTestSuite) TestRawWriterFailInWriteSeeker(c *C) {
out := &mockWriteSeeker{
write: func(b []byte) (n int, err error) {
c.Logf("write write\n")
return 0, errors.New("failed")
},
}
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 128, []byte("foo foo foo"))
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 1024,
Size: 128,
},
},
}
rw, err := gadget.NewRawStructureWriter(r.dir, ps)
c.Assert(err, IsNil)
c.Assert(rw, NotNil)
err = rw.Write(out)
c.Assert(err, ErrorMatches, "failed to write image .*: cannot write image: failed")
out = &mockWriteSeeker{
seek: func(offset int64, whence int) (ret int64, err error) {
return 0, errors.New("failed")
},
}
err = rw.Write(out)
c.Assert(err, ErrorMatches, "failed to write image .*: cannot seek to content start offset 0x400: failed")
}
func (r *rawTestSuite) TestRawWriterNoImage(c *C) {
out := &mockWriteSeeker{}
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
// invalid content
VolumeContent: &gadget.VolumeContent{
Image: "",
},
StartOffset: 1024,
Size: 128,
},
},
}
rw, err := gadget.NewRawStructureWriter(r.dir, ps)
c.Assert(err, IsNil)
c.Assert(rw, NotNil)
err = rw.Write(out)
c.Assert(err, ErrorMatches, "failed to write image .*: no image defined")
}
func (r *rawTestSuite) TestRawWriterFailWithNonBare(c *C) {
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
// non-bare
Filesystem: "ext4",
},
}
rw, err := gadget.NewRawStructureWriter(r.dir, ps)
c.Assert(err, ErrorMatches, "internal error: structure #0 has a filesystem")
c.Assert(rw, IsNil)
}
func (r *rawTestSuite) TestRawWriterInternalErrors(c *C) {
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
}
rw, err := gadget.NewRawStructureWriter("", ps)
c.Assert(err, ErrorMatches, "internal error: gadget content directory cannot be unset")
c.Assert(rw, IsNil)
rw, err = gadget.NewRawStructureWriter(r.dir, nil)
c.Assert(err, ErrorMatches, `internal error: \*LaidOutStructure is nil`)
c.Assert(rw, IsNil)
}
func getFileSize(c *C, path string) int64 {
stat, err := os.Stat(path)
c.Assert(err, IsNil)
return stat.Size()
}
func (r *rawTestSuite) TestRawUpdaterFailWithNonBare(c *C) {
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
// non-bare
Filesystem: "ext4",
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Fatalf("unexpected call")
return "", 0, nil
})
c.Assert(err, ErrorMatches, "internal error: structure #0 has a filesystem")
c.Assert(ru, IsNil)
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreSame(c *C) {
partitionPath := filepath.Join(r.dir, "partition.img")
mutateFile(c, partitionPath, 2048, []mutateWrite{
{[]byte("foo foo foo"), 0},
{[]byte("bar bar bar"), 1024},
})
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 128, []byte("foo foo foo"))
makeSizedFile(c, filepath.Join(r.dir, "bar.img"), 128, []byte("bar bar bar"))
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 1 * quantity.OffsetMiB,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 1 * quantity.OffsetMiB,
Size: 128,
}, {
VolumeContent: &gadget.VolumeContent{
Image: "bar.img",
},
StartOffset: 1*quantity.OffsetMiB + 1024,
Size: 128,
Index: 1,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
// Structure has a partition, thus it starts at 0 offset.
return partitionPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, IsNil)
c.Check(gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])+".same", testutil.FilePresent)
c.Check(gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[1])+".same", testutil.FilePresent)
emptyDiskPath := filepath.Join(r.dir, "disk-not-written.img")
err = osutil.AtomicWriteFile(emptyDiskPath, nil, 0644, 0)
c.Assert(err, IsNil)
// update should be a noop now, use the same locations, point to a file
// of 0 size, so that seek fails and write would increase the size
ru, err = gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
return emptyDiskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Update()
c.Assert(err, Equals, gadget.ErrNoUpdate)
c.Check(getFileSize(c, emptyDiskPath), Equals, int64(0))
// rollback also is a noop
err = ru.Rollback()
c.Assert(err, IsNil)
c.Check(getFileSize(c, emptyDiskPath), Equals, int64(0))
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreDifferent(c *C) {
diskPath := filepath.Join(r.dir, "partition.img")
mutateFile(c, diskPath, 4096, []mutateWrite{
{[]byte("foo foo foo"), 0},
{[]byte("bar bar bar"), 1024},
{[]byte("unchanged unchanged"), 2048},
})
pristinePath := filepath.Join(r.dir, "pristine.img")
err := osutil.CopyFile(diskPath, pristinePath, 0)
c.Assert(err, IsNil)
expectedPath := filepath.Join(r.dir, "expected.img")
mutateFile(c, expectedPath, 4096, []mutateWrite{
{[]byte("zzz zzz zzz zzz"), 0},
{[]byte("xxx xxx xxx xxx"), 1024},
{[]byte("unchanged unchanged"), 2048},
})
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 128, []byte("zzz zzz zzz zzz"))
makeSizedFile(c, filepath.Join(r.dir, "bar.img"), 256, []byte("xxx xxx xxx xxx"))
makeSizedFile(c, filepath.Join(r.dir, "unchanged.img"), 128, []byte("unchanged unchanged"))
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 1 * quantity.OffsetMiB,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 4096,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 1 * quantity.OffsetMiB,
Size: 128,
}, {
VolumeContent: &gadget.VolumeContent{
Image: "bar.img",
},
StartOffset: 1*quantity.OffsetMiB + 1024,
Size: 256,
Index: 1,
}, {
VolumeContent: &gadget.VolumeContent{
Image: "unchanged.img",
},
StartOffset: 1*quantity.OffsetMiB + 2048,
Size: 128,
Index: 2,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
// Structure has a partition, thus it starts at 0 offset.
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, IsNil)
for _, e := range []struct {
path string
size int64
exists bool
}{
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0]) + ".backup", 128, true},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[1]) + ".backup", 256, true},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[2]) + ".backup", 0, false},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[1]) + ".same", 0, false},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[1]) + ".same", 0, false},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[2]) + ".same", 0, true},
} {
if e.exists {
c.Check(e.path, testutil.FilePresent)
c.Check(getFileSize(c, e.path), Equals, e.size)
} else {
c.Check(e.path, testutil.FileAbsent)
}
}
err = ru.Update()
c.Assert(err, IsNil)
// after update, files should be identical
c.Check(osutil.FilesAreEqual(diskPath, expectedPath), Equals, true)
// rollback restores the original contents
err = ru.Rollback()
c.Assert(err, IsNil)
// which should match the pristine copy now
c.Check(osutil.FilesAreEqual(diskPath, pristinePath), Equals, true)
}
func (r *rawTestSuite) testRawUpdaterBackupUpdateRestoreDifferentEMMC(c *C, updateErr string) {
diskPath := filepath.Join(r.dir, "mmcblk1boot0.img")
mutateFile(c, diskPath, 4096, []mutateWrite{
{[]byte("foo foo foo"), 0},
})
pristinePath := filepath.Join(r.dir, "pristine.img")
err := osutil.CopyFile(diskPath, pristinePath, 0)
c.Assert(err, IsNil)
expectedPath := filepath.Join(r.dir, "expected.img")
mutateFile(c, expectedPath, 4096, []mutateWrite{
{[]byte("zzz zzz zzz zzz"), 0},
})
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 4096, []byte("zzz zzz zzz zzz"))
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{},
VolumeStructure: &gadget.VolumeStructure{
Name: "boot0",
Device: "/dev/mmcblk0boot0",
Size: 4096,
EnclosingVolume: &gadget.Volume{
Schema: "emmc",
},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
Size: 4096,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
// Structure has a partition, thus it starts at 0 offset.
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, IsNil)
for _, e := range []struct {
path string
size int64
exists bool
}{
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0]) + ".backup", 4096, true},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0]) + ".same", 0, false},
} {
if e.exists {
c.Check(e.path, testutil.FilePresent)
c.Check(getFileSize(c, e.path), Equals, e.size)
} else {
c.Check(e.path, testutil.FileAbsent)
}
}
err = ru.Update()
if updateErr != "" {
c.Assert(err, ErrorMatches, updateErr)
// the file should not have updated
c.Check(osutil.FilesAreEqual(diskPath, expectedPath), Equals, false)
c.Check(osutil.FilesAreEqual(diskPath, pristinePath), Equals, true)
} else {
c.Assert(err, IsNil)
// after update, files should be identical
c.Check(osutil.FilesAreEqual(diskPath, expectedPath), Equals, true)
// rollback restores the original contents
err = ru.Rollback()
c.Assert(err, IsNil)
// which should match the pristine copy now
c.Check(osutil.FilesAreEqual(diskPath, pristinePath), Equals, true)
}
}
func (r *rawTestSuite) TestRawUpdaterUpdateEMMCWrongDevice(c *C) {
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{},
VolumeStructure: &gadget.VolumeStructure{
Name: "boot0",
Device: "/dev/sda",
Size: 4096,
EnclosingVolume: &gadget.Volume{
Schema: "emmc",
},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
Size: 4096,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return "/dev/sda", 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Update()
c.Assert(err, ErrorMatches, `cannot open device for writing: /dev/sda is not a valid emmc block device`)
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreDifferentEMMCWithPaths(c *C) {
dirs.SetRootDir(r.dir)
// create the force_ro path that should be available for emmc block devices
c.Assert(os.MkdirAll(filepath.Join(r.dir, "sys", "block", "mmcblk1boot0"), 0755), IsNil)
c.Assert(os.WriteFile(filepath.Join(r.dir, "sys", "block", "mmcblk1boot0", "force_ro"), []byte(`1`), 0644), IsNil)
// test with paths in place
r.testRawUpdaterBackupUpdateRestoreDifferentEMMC(c, "")
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreDifferentEMMCCorrectCalls(c *C) {
var calls []string
restore := gadget.MockSetEMMCPartitionReadWrite(func(device string, rw bool) error {
calls = append(calls, fmt.Sprintf("%s %t", device, rw))
return nil
})
defer restore()
// test with mock in place to detect correct calls
r.testRawUpdaterBackupUpdateRestoreDifferentEMMC(c, "")
// one set for update, one set for rollback
c.Check(calls, DeepEquals, []string{
"mmcblk1boot0 true",
"mmcblk1boot0 false",
"mmcblk1boot0 true",
"mmcblk1boot0 false",
})
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreDifferentEMMCCorrectCallsFails(c *C) {
var calls []string
restore := gadget.MockSetEMMCPartitionReadWrite(func(device string, rw bool) error {
calls = append(calls, fmt.Sprintf("%s %t", device, rw))
return fmt.Errorf("failed to mark rw")
})
defer restore()
// test with mock in place to detect correct calls
r.testRawUpdaterBackupUpdateRestoreDifferentEMMC(c, "cannot open device for writing: failed to mark rw")
// one enable for update, which fails
c.Check(calls, DeepEquals, []string{
"mmcblk1boot0 true",
})
}
func (r *rawTestSuite) TestRawUpdaterBackupUpdateRestoreNoPartition(c *C) {
diskPath := filepath.Join(r.dir, "disk.img")
mutateFile(c, diskPath, quantity.SizeMiB+2048, []mutateWrite{
{[]byte("baz baz baz"), int64(quantity.SizeMiB)},
{[]byte("oof oof oof"), int64(quantity.SizeMiB + 1024)},
})
pristinePath := filepath.Join(r.dir, "pristine.img")
err := osutil.CopyFile(diskPath, pristinePath, 0)
c.Assert(err, IsNil)
expectedPath := filepath.Join(r.dir, "expected.img")
mutateFile(c, expectedPath, quantity.SizeMiB+2048, []mutateWrite{
{[]byte("zzz zzz zzz zzz"), int64(quantity.SizeMiB)},
{[]byte("xxx xxx xxx xxx"), int64(quantity.SizeMiB + 1024)},
})
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 128, []byte("zzz zzz zzz zzz"))
makeSizedFile(c, filepath.Join(r.dir, "bar.img"), 256, []byte("xxx xxx xxx xxx"))
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 1 * quantity.OffsetMiB,
},
VolumeStructure: &gadget.VolumeStructure{
// No partition table entry, would trigger fallback lookup path.
Type: "bare",
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 1 * quantity.OffsetMiB,
Size: 128,
}, {
VolumeContent: &gadget.VolumeContent{
Image: "bar.img",
},
StartOffset: 1*quantity.OffsetMiB + 1024,
Size: 256,
Index: 1,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
// No partition table, returned path corresponds to a disk, start offset is non-0.
return diskPath, ps.StartOffset, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, IsNil)
for _, e := range []struct {
path string
size int64
}{
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0]) + ".backup", 128},
{gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[1]) + ".backup", 256},
} {
c.Check(e.path, testutil.FilePresent)
c.Check(getFileSize(c, e.path), Equals, e.size)
}
err = ru.Update()
c.Assert(err, IsNil)
// After update, files should be identical.
c.Check(osutil.FilesAreEqual(diskPath, expectedPath), Equals, true)
// Rollback restores the original contents.
err = ru.Rollback()
c.Assert(err, IsNil)
// Which should match the pristine copy now.
c.Check(osutil.FilesAreEqual(diskPath, pristinePath), Equals, true)
}
func (r *rawTestSuite) TestRawUpdaterBackupErrors(c *C) {
diskPath := filepath.Join(r.dir, "disk.img")
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 128,
Size: 128,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, ErrorMatches, "cannot open device for reading: .*")
c.Check(gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])+".backup", testutil.FileAbsent)
// 0 sized disk, copying will fail with early EOF
makeSizedFile(c, diskPath, 0, nil)
err = ru.Backup()
c.Assert(err, ErrorMatches, "cannot backup image .*: cannot backup original image: EOF")
c.Check(gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])+".backup", testutil.FileAbsent)
// make proper disk image now
err = os.Remove(diskPath)
c.Assert(err, IsNil)
makeSizedFile(c, diskPath, 2048, nil)
err = ru.Backup()
c.Assert(err, ErrorMatches, "cannot backup image .*: cannot checksum update image: .*")
c.Check(gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])+".backup", testutil.FileAbsent)
}
func (r *rawTestSuite) TestRawUpdaterBackupIdempotent(c *C) {
diskPath := filepath.Join(r.dir, "disk.img")
// 0 sized disk, copying will fail with early EOF
makeSizedFile(c, diskPath, 0, nil)
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 128,
Size: 128,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
contentBackupBasePath := gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])
// mock content backed-up marker
makeSizedFile(c, contentBackupBasePath+".backup", 0, nil)
// never reached copy, hence no error
err = ru.Backup()
c.Assert(err, IsNil)
err = os.Remove(contentBackupBasePath + ".backup")
c.Assert(err, IsNil)
// mock content is-identical marker
makeSizedFile(c, contentBackupBasePath+".same", 0, nil)
// never reached copy, hence no error
err = ru.Backup()
c.Assert(err, IsNil)
}
func (r *rawTestSuite) TestRawUpdaterFindDeviceFailed(c *C) {
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 128,
Size: 128,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, nil)
c.Assert(err, ErrorMatches, "internal error: device lookup helper must be provided")
c.Assert(ru, IsNil)
ru, err = gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return "", 0, errors.New("failed")
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Backup()
c.Assert(err, ErrorMatches, "cannot find device matching structure #0: failed")
err = ru.Update()
c.Assert(err, ErrorMatches, "cannot find device matching structure #0: failed")
err = ru.Rollback()
c.Assert(err, ErrorMatches, "cannot find device matching structure #0: failed")
}
func (r *rawTestSuite) TestRawUpdaterRollbackErrors(c *C) {
if os.Geteuid() == 0 {
c.Skip("the test cannot be run by the root user")
}
diskPath := filepath.Join(r.dir, "disk.img")
// 0 sized disk, copying will fail with early EOF
makeSizedFile(c, diskPath, 0, nil)
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 128,
Size: 128,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
err = ru.Rollback()
c.Assert(err, ErrorMatches, `cannot rollback image #0 \("foo.img"@0x80\{128\}\): cannot open backup image: .*no such file or directory`)
contentBackupPath := gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0]) + ".backup"
// trigger short read
makeSizedFile(c, contentBackupPath, 0, nil)
err = ru.Rollback()
c.Assert(err, ErrorMatches, `cannot rollback image #0 \("foo.img"@0x80\{128\}\): cannot restore backup: cannot write image: EOF`)
// pretend device cannot be opened for writing
err = os.Chmod(diskPath, 0000)
c.Assert(err, IsNil)
err = ru.Rollback()
c.Assert(err, ErrorMatches, "cannot open device for writing: .* permission denied")
}
func (r *rawTestSuite) TestRawUpdaterUpdateErrors(c *C) {
if os.Geteuid() == 0 {
c.Skip("the test cannot be run by the root user")
}
diskPath := filepath.Join(r.dir, "disk.img")
// 0 sized disk, copying will fail with early EOF
makeSizedFile(c, diskPath, 2048, nil)
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{
Image: "foo.img",
},
StartOffset: 128,
Size: 128,
},
},
}
ru, err := gadget.NewRawStructureUpdater(r.dir, ps, r.backup, func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
c.Check(to, DeepEquals, ps)
return diskPath, 0, nil
})
c.Assert(err, IsNil)
c.Assert(ru, NotNil)
// backup/analysis not performed
err = ru.Update()
c.Assert(err, ErrorMatches, `cannot update image #0 \("foo.img"@0x80\{128\}\): missing backup file`)
// pretend backup was done
makeSizedFile(c, gadget.RawContentBackupPath(r.backup, ps, &ps.LaidOutContent[0])+".backup", 0, nil)
err = ru.Update()
c.Assert(err, ErrorMatches, `cannot update image #0 \("foo.img"@0x80\{128\}\).*: cannot open image file: .*no such file or directory`)
makeSizedFile(c, filepath.Join(r.dir, "foo.img"), 0, nil)
err = ru.Update()
c.Assert(err, ErrorMatches, `cannot update image #0 \("foo.img"@0x80\{128\}\).*: cannot write image: EOF`)
// pretend device cannot be opened for writing
err = os.Chmod(diskPath, 0000)
c.Assert(err, IsNil)
err = ru.Update()
c.Assert(err, ErrorMatches, "cannot open device for writing: .* permission denied")
}
func (r *rawTestSuite) TestRawUpdaterContentBackupPath(c *C) {
ps := &gadget.LaidOutStructure{
OnDiskStructure: gadget.OnDiskStructure{
StartOffset: 0,
},
VolumeStructure: &gadget.VolumeStructure{},
LaidOutContent: []gadget.LaidOutContent{
{
VolumeContent: &gadget.VolumeContent{},
},
},
}
pc := &ps.LaidOutContent[0]
p := gadget.RawContentBackupPath(r.backup, ps, pc)
c.Assert(p, Equals, r.backup+"/struct-0-0")
pc.Index = 5
p = gadget.RawContentBackupPath(r.backup, ps, pc)
c.Assert(p, Equals, r.backup+"/struct-0-5")
ps.VolumeStructure.YamlIndex = 9
p = gadget.RawContentBackupPath(r.backup, ps, pc)
c.Assert(p, Equals, r.backup+"/struct-9-5")
}
func (r *rawTestSuite) TestRawUpdaterInternalErrors(c *C) {
ps := &gadget.LaidOutStructure{
VolumeStructure: &gadget.VolumeStructure{
Size: 2048,
EnclosingVolume: &gadget.Volume{},
},
}
f := func(to *gadget.LaidOutStructure) (string, quantity.Offset, error) {
return "", 0, errors.New("unexpected call")
}
rw, err := gadget.NewRawStructureUpdater("", ps, r.backup, f)
c.Assert(err, ErrorMatches, "internal error: gadget content directory cannot be unset")
c.Assert(rw, IsNil)
rw, err = gadget.NewRawStructureUpdater(r.dir, nil, r.backup, f)
c.Assert(err, ErrorMatches, `internal error: \*LaidOutStructure is nil`)
c.Assert(rw, IsNil)
rw, err = gadget.NewRawStructureUpdater(r.dir, ps, "", f)
c.Assert(err, ErrorMatches, "internal error: backup directory cannot be unset")
c.Assert(rw, IsNil)
rw, err = gadget.NewRawStructureUpdater(r.dir, ps, r.backup, nil)
c.Assert(err, ErrorMatches, "internal error: device lookup helper must be provided")
c.Assert(rw, IsNil)
}
|