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 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
|
package dockerclient
import (
"archive/tar"
"bufio"
"bytes"
"context"
"crypto/rand"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"sort"
"strconv"
"strings"
dockerregistrytypes "github.com/docker/docker/api/types/registry"
docker "github.com/fsouza/go-dockerclient"
"k8s.io/klog"
"github.com/openshift/imagebuilder"
"github.com/openshift/imagebuilder/dockerfile/parser"
"github.com/openshift/imagebuilder/imageprogress"
)
// NewClientFromEnv is exposed to simplify getting a client when vendoring this library.
func NewClientFromEnv() (*docker.Client, error) {
return docker.NewClientFromEnv()
}
// Mount represents a binding between the current system and the destination client
type Mount struct {
SourcePath string
DestinationPath string
}
// ClientExecutor can run Docker builds from a Docker client.
type ClientExecutor struct {
// Name is an optional name for this executor.
Name string
// Named is a map of other named executors.
Named map[string]*ClientExecutor
// TempDir is the temporary directory to use for storing file
// contents. If unset, the default temporary directory for the
// system will be used.
TempDir string
// Client is a client to a Docker daemon.
Client *docker.Client
// Directory is the context directory to build from, will use
// the current working directory if not set. Ignored if
// ContextArchive is set.
Directory string
// A compressed or uncompressed tar archive that should be used
// as the build context.
ContextArchive string
// Excludes are a list of file patterns that should be excluded
// from the context. Will be set to the contents of the
// .dockerignore file if nil.
Excludes []string
// Tag is an optional value to tag the resulting built image.
Tag string
// Additional tags is an optional array of other tags to apply
// to the image.
AdditionalTags []string
// AllowPull when set will pull images that are not present on
// the daemon.
AllowPull bool
// IgnoreUnrecognizedInstructions, if true, allows instructions
// that are not yet supported to be ignored (will be printed)
IgnoreUnrecognizedInstructions bool
// StrictVolumeOwnership if true will fail the build if a RUN
// command follows a VOLUME command, since this client cannot
// guarantee that the restored contents of the VOLUME directory
// will have the right permissions.
StrictVolumeOwnership bool
// TransientMounts are a set of mounts from outside the build
// to the inside that will not be part of the final image. Any
// content created inside the mount's destinationPath will be
// omitted from the final image.
TransientMounts []Mount
// The path within the container to perform the transient mount.
ContainerTransientMount string
// The streams used for canonical output.
Out, ErrOut io.Writer
// Container is optional and can be set to a container to use as
// the execution environment for a build.
Container *docker.Container
// Command, if set, will be used as the entrypoint for the new
// container. This is ignored if Container is set.
Command []string
// Image is optional and may be set to control which image is used
// as a base for this build. Otherwise the FROM value from the
// Dockerfile is read (will be pulled if not locally present).
Image *docker.Image
// Committed is optional and is used to track a temporary image, if one
// was created, that was based on the container as its stage ended.
Committed *docker.Image
// AuthFn will handle authenticating any docker pulls if Image
// is set to nil.
AuthFn func(name string) ([]dockerregistrytypes.AuthConfig, bool)
// HostConfig is used to start the container (if necessary).
HostConfig *docker.HostConfig
// LogFn is an optional command to log information to the end user
LogFn func(format string, args ...interface{})
// Deferred is a list of operations that must be cleaned up at
// the end of execution. Use Release() to invoke all of these.
Deferred []func() error
// Volumes handles saving and restoring volumes after RUN
// commands are executed.
Volumes *ContainerVolumeTracker
}
// NoAuthFn can be used for AuthFn when no authentication is required in Docker.
func NoAuthFn(string) ([]dockerregistrytypes.AuthConfig, bool) {
return nil, false
}
// NewClientExecutor creates a client executor.
func NewClientExecutor(client *docker.Client) *ClientExecutor {
return &ClientExecutor{
Client: client,
LogFn: func(string, ...interface{}) {},
ContainerTransientMount: "/.imagebuilder-transient-mount",
}
}
// DefaultExcludes reads the default list of excluded file patterns from the
// context directory's .containerignore file if it exists, or from the context
// directory's .dockerignore file, if it exists.
func (e *ClientExecutor) DefaultExcludes() error {
var err error
e.Excludes, err = imagebuilder.ParseDockerignore(e.Directory)
return err
}
// WithName creates a new child executor that will be used whenever a COPY statement
// uses --from=NAME or --from=POSITION.
func (e *ClientExecutor) WithName(name string, position int) *ClientExecutor {
if e.Named == nil {
e.Named = make(map[string]*ClientExecutor)
}
e.Deferred = append([]func() error{func() error {
stage, ok := e.Named[strconv.Itoa(position)]
if !ok {
return fmt.Errorf("error finding stage %d", position)
}
errs := stage.Release()
if len(errs) > 0 {
return fmt.Errorf("%v", errs)
}
return nil
}}, e.Deferred...)
copied := *e
copied.Name = name
copied.Container = nil
copied.Deferred = nil
copied.Image = nil
copied.Volumes = nil
copied.Committed = nil
child := &copied
e.Named[name] = child
e.Named[strconv.Itoa(position)] = child
return child
}
// Stages executes all of the provided stages, starting from the base image. It returns the executor of the last stage
// or an error if a stage fails.
func (e *ClientExecutor) Stages(b *imagebuilder.Builder, stages imagebuilder.Stages, from string) (*ClientExecutor, error) {
var stageExecutor *ClientExecutor
for i, stage := range stages {
stageExecutor = e.WithName(stage.Name, stage.Position)
var stageFrom string
if i == 0 {
stageFrom = from
} else {
from, err := b.From(stage.Node)
if err != nil {
return nil, fmt.Errorf("error: Determining base image: %v", err)
}
if prereq := e.Named[from]; prereq != nil {
b, ok := stages.ByName(from)
if !ok {
return nil, fmt.Errorf("error: Unable to find stage %s builder", from)
}
if prereq.Committed == nil {
config := b.Builder.Config()
if prereq.Container.State.Running {
klog.V(4).Infof("Stopping container %s ...", prereq.Container.ID)
if err := e.Client.StopContainer(prereq.Container.ID, 0); err != nil {
return nil, fmt.Errorf("unable to stop build container: %v", err)
}
prereq.Container.State.Running = false
// Starting the container may perform escaping of args, so to be consistent
// we also set that here
config.ArgsEscaped = true
}
image, err := e.Client.CommitContainer(docker.CommitContainerOptions{
Container: prereq.Container.ID,
Run: config,
})
if err != nil {
return nil, fmt.Errorf("unable to commit stage %s container: %v", from, err)
}
klog.V(4).Infof("Committed %s to %s as basis for image %q: %#v", prereq.Container.ID, image.ID, from, config)
// deleting this image will fail with an "image has dependent child images" error
// if it ends up being an ancestor of the final image, so don't bother returning
// errors from this specific removeImage() call
prereq.Deferred = append([]func() error{func() error { e.removeImage(image.ID); return nil }}, prereq.Deferred...)
prereq.Committed = image
}
klog.V(4).Infof("Using image %s based on previous stage %s as image", prereq.Committed.ID, from)
from = prereq.Committed.ID
}
stageFrom = from
}
if err := stageExecutor.Prepare(stage.Builder, stage.Node, stageFrom); err != nil {
return nil, fmt.Errorf("error: preparing stage using %q as base: %v", stageFrom, err)
}
if err := stageExecutor.Execute(stage.Builder, stage.Node); err != nil {
return nil, fmt.Errorf("error: running stage: %v", err)
}
// remember the outcome of the stage execution on the container config in case
// another stage needs to access incremental state
stageExecutor.Container.Config = stage.Builder.Config()
}
return stageExecutor, nil
}
// Build is a helper method to perform a Docker build against the
// provided Docker client. It will load the image if not specified,
// create a container if one does not already exist, and start a
// container if the Dockerfile contains RUN commands. It will cleanup
// any containers it creates directly, and set the e.Committed.ID field
// to the generated image.
func (e *ClientExecutor) Build(b *imagebuilder.Builder, node *parser.Node, from string) error {
defer e.Release()
if err := e.Prepare(b, node, from); err != nil {
return err
}
if err := e.Execute(b, node); err != nil {
return err
}
return e.Commit(b)
}
func (e *ClientExecutor) Prepare(b *imagebuilder.Builder, node *parser.Node, from string) error {
var err error
// identify the base image
if len(from) == 0 {
from, err = b.From(node)
if err != nil {
return err
}
}
// load the image
if e.Image == nil {
if from == imagebuilder.NoBaseImageSpecifier {
if runtime.GOOS == "windows" {
return fmt.Errorf("building from scratch images is not supported")
}
from, err = e.CreateScratchImage()
if err != nil {
return fmt.Errorf("unable to create a scratch image for this build: %v", err)
}
e.Deferred = append([]func() error{func() error { return e.removeImage(from) }}, e.Deferred...)
}
klog.V(4).Infof("Retrieving image %q", from)
e.Image, err = e.LoadImageWithPlatform(from, b.Platform)
if err != nil {
return err
}
}
// update the builder with any information from the image, including ONBUILD
// statements
if err := b.FromImage(e.Image, node); err != nil {
return err
}
b.RunConfig.Image = from
if len(e.Name) > 0 {
e.LogFn("FROM %s as %s", from, e.Name)
} else {
e.LogFn("FROM %s", from)
}
klog.V(4).Infof("step: FROM %s as %s", from, e.Name)
b.Excludes = e.Excludes
var sharedMount string
defaultShell := b.RunConfig.Shell
if len(defaultShell) == 0 {
defaultShell = []string{"/bin/sh", "-c"}
}
// create a container to execute in, if necessary
mustStart := b.RequiresStart(node)
if e.Container == nil {
opts := docker.CreateContainerOptions{
Config: &docker.Config{
Image: from,
},
HostConfig: &docker.HostConfig{},
}
if e.HostConfig != nil {
opts.HostConfig = e.HostConfig
}
originalBinds := opts.HostConfig.Binds
if mustStart {
// Transient mounts only make sense on images that will be running processes
if len(e.TransientMounts) > 0 {
volumeName, err := randSeq(imageSafeCharacters, 24)
if err != nil {
return err
}
v, err := e.Client.CreateVolume(docker.CreateVolumeOptions{Name: volumeName})
if err != nil {
return fmt.Errorf("unable to create volume to mount secrets: %v", err)
}
e.Deferred = append([]func() error{func() error { return e.Client.RemoveVolume(volumeName) }}, e.Deferred...)
sharedMount = v.Mountpoint
opts.HostConfig.Binds = append(opts.HostConfig.Binds, volumeName+":"+e.ContainerTransientMount)
}
// TODO: windows support
if len(e.Command) > 0 {
opts.Config.Cmd = e.Command
opts.Config.Entrypoint = nil
} else {
// TODO; replace me with a better default command
opts.Config.Cmd = []string{"# (imagebuilder)\n/bin/sleep 86400"}
opts.Config.Entrypoint = append([]string{}, defaultShell...)
}
}
if len(opts.Config.Cmd) == 0 {
opts.Config.Entrypoint = append(append([]string{}, defaultShell...), "#(imagebuilder)")
}
// copy any source content into the temporary mount path
if mustStart && len(e.TransientMounts) > 0 {
if len(sharedMount) == 0 {
return fmt.Errorf("no mount point available for temporary mounts")
}
binds, err := e.PopulateTransientMounts(opts, e.TransientMounts, sharedMount)
if err != nil {
return err
}
opts.HostConfig.Binds = append(originalBinds, binds...)
}
klog.V(4).Infof("Creating container with %#v %#v", opts.Config, opts.HostConfig)
container, err := e.Client.CreateContainer(opts)
if err != nil {
return fmt.Errorf("unable to create build container: %v", err)
}
e.Container = container
e.Deferred = append([]func() error{func() error { return e.removeContainer(container.ID) }}, e.Deferred...)
}
// TODO: lazy start
if mustStart && !e.Container.State.Running {
if err := e.Client.StartContainer(e.Container.ID, nil); err != nil {
return fmt.Errorf("unable to start build container: %v", err)
}
e.Container.State.Running = true
// TODO: is this racy? may have to loop wait in the actual run step
}
return nil
}
// Execute performs all of the provided steps against the initialized container. May be
// invoked multiple times for a given container.
func (e *ClientExecutor) Execute(b *imagebuilder.Builder, node *parser.Node) error {
for i, child := range node.Children {
step := b.Step()
if err := step.Resolve(child); err != nil {
return err
}
klog.V(4).Infof("step: %s", step.Original)
if e.LogFn != nil {
// original may have unescaped %, so perform fmt escaping
e.LogFn(strings.Replace(step.Original, "%", "%%", -1))
}
noRunsRemaining := !b.RequiresStart(&parser.Node{Children: node.Children[i+1:]})
if err := b.Run(step, e, noRunsRemaining); err != nil {
return err
}
}
return nil
}
// Commit saves the completed build as an image with the provided tag. It will
// stop the container, commit the image, and then remove the container.
func (e *ClientExecutor) Commit(b *imagebuilder.Builder) error {
config := b.Config()
if e.Container.State.Running {
klog.V(4).Infof("Stopping container %s ...", e.Container.ID)
if err := e.Client.StopContainer(e.Container.ID, 0); err != nil {
return fmt.Errorf("unable to stop build container: %v", err)
}
e.Container.State.Running = false
// Starting the container may perform escaping of args, so to be consistent
// we also set that here
config.ArgsEscaped = true
}
var repository, tag string
if len(e.Tag) > 0 {
repository, tag = docker.ParseRepositoryTag(e.Tag)
klog.V(4).Infof("Committing built container %s as image %q: %#v", e.Container.ID, e.Tag, config)
if e.LogFn != nil {
e.LogFn("Committing changes to %s ...", e.Tag)
}
} else {
klog.V(4).Infof("Committing built container %s: %#v", e.Container.ID, config)
if e.LogFn != nil {
e.LogFn("Committing changes ...")
}
}
defer func() {
for _, err := range e.Release() {
e.LogFn("Unable to cleanup: %v", err)
}
}()
image, err := e.Client.CommitContainer(docker.CommitContainerOptions{
Author: b.Author,
Container: e.Container.ID,
Run: config,
Repository: repository,
Tag: tag,
})
if err != nil {
return fmt.Errorf("unable to commit build container: %v", err)
}
e.Committed = image
klog.V(4).Infof("Committed %s to %s", e.Container.ID, image.ID)
if len(e.Tag) > 0 {
for _, s := range e.AdditionalTags {
repository, tag := docker.ParseRepositoryTag(s)
err := e.Client.TagImage(image.ID, docker.TagImageOptions{
Repo: repository,
Tag: tag,
})
if err != nil {
e.Deferred = append([]func() error{func() error { return e.removeImage(image.ID) }}, e.Deferred...)
return fmt.Errorf("unable to tag %q: %v", s, err)
}
e.LogFn("Tagged as %s", s)
}
}
if e.LogFn != nil {
e.LogFn("Done")
}
return nil
}
func (e *ClientExecutor) PopulateTransientMounts(opts docker.CreateContainerOptions, transientMounts []Mount, sharedMount string) ([]string, error) {
container, err := e.Client.CreateContainer(opts)
if err != nil {
return nil, fmt.Errorf("unable to create transient container: %v", err)
}
defer e.removeContainer(container.ID)
var copies []imagebuilder.Copy
for i, mount := range transientMounts {
copies = append(copies, imagebuilder.Copy{
FromFS: true,
Src: []string{mount.SourcePath},
Dest: filepath.Join(e.ContainerTransientMount, strconv.Itoa(i)),
})
}
if err := e.CopyContainer(container, nil, copies...); err != nil {
return nil, fmt.Errorf("unable to copy transient context into container: %v", err)
}
// mount individual items temporarily
var binds []string
for i, mount := range e.TransientMounts {
binds = append(binds, fmt.Sprintf("%s:%s:%s", filepath.Join(sharedMount, strconv.Itoa(i)), mount.DestinationPath, "ro"))
}
return binds, nil
}
// Release deletes any items started by this executor.
func (e *ClientExecutor) Release() []error {
errs := e.Volumes.Release()
for _, fn := range e.Deferred {
if err := fn(); err != nil {
errs = append(errs, err)
}
}
e.Deferred = nil
return errs
}
// removeContainer removes the provided container ID
func (e *ClientExecutor) removeContainer(id string) error {
e.Client.StopContainer(id, 0)
err := e.Client.RemoveContainer(docker.RemoveContainerOptions{
ID: id,
RemoveVolumes: true,
Force: true,
})
if _, ok := err.(*docker.NoSuchContainer); err != nil && !ok {
return fmt.Errorf("unable to cleanup container %s: %v", id, err)
}
return nil
}
// removeImage removes the provided image ID
func (e *ClientExecutor) removeImage(id string) error {
if err := e.Client.RemoveImageExtended(id, docker.RemoveImageOptions{
Force: true,
}); err != nil {
return fmt.Errorf("unable to clean up image %s: %v", id, err)
}
return nil
}
// CreateScratchImage creates a new, zero byte layer that is identical to "scratch"
// except that the resulting image will have two layers.
func (e *ClientExecutor) CreateScratchImage() (string, error) {
random, err := randSeq(imageSafeCharacters, 24)
if err != nil {
return "", err
}
name := fmt.Sprintf("scratch%s", random)
buf := &bytes.Buffer{}
w := tar.NewWriter(buf)
w.Close()
return name, e.Client.ImportImage(docker.ImportImageOptions{
Repository: name,
Source: "-",
InputStream: buf,
})
}
// imageSafeCharacters are characters allowed to be part of a Docker image name.
const imageSafeCharacters = "abcdefghijklmnopqrstuvwxyz0123456789"
// randSeq returns a sequence of random characters drawn from source. It returns
// an error if cryptographic randomness is not available or source is more than 255
// characters.
func randSeq(source string, n int) (string, error) {
if len(source) > 255 {
return "", fmt.Errorf("source must be less than 256 bytes long")
}
random := make([]byte, n)
if _, err := io.ReadFull(rand.Reader, random); err != nil {
return "", err
}
for i := range random {
random[i] = source[random[i]%byte(len(source))]
}
return string(random), nil
}
// LoadImage checks the client for an image matching from. If not found,
// attempts to pull the image and then tries to inspect again.
func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
return e.LoadImageWithPlatform(from, "")
}
// LoadImage checks the client for an image matching from. If not found,
// attempts to pull the image with specified platform string.
func (e *ClientExecutor) LoadImageWithPlatform(from string, platform string) (*docker.Image, error) {
image, err := e.Client.InspectImage(from)
if err == nil {
return image, nil
}
if err != docker.ErrNoSuchImage {
return nil, err
}
if !e.AllowPull {
klog.V(4).Infof("image %s did not exist", from)
return nil, docker.ErrNoSuchImage
}
repository, tag := docker.ParseRepositoryTag(from)
if len(tag) == 0 {
tag = "latest"
}
klog.V(4).Infof("attempting to pull %s with auth from repository %s:%s", from, repository, tag)
// TODO: we may want to abstract looping over multiple credentials
auth, _ := e.AuthFn(repository)
if len(auth) == 0 {
auth = append(auth, dockerregistrytypes.AuthConfig{})
}
if e.LogFn != nil {
e.LogFn("Image %s was not found, pulling ...", from)
}
var lastErr error
outputProgress := func(s string) {
e.LogFn("%s", s)
}
for _, config := range auth {
// TODO: handle IDs?
var pullErr error
func() { // A scope for defer
pullWriter := imageprogress.NewPullWriter(outputProgress)
defer func() {
err := pullWriter.Close()
if pullErr == nil {
pullErr = err
}
}()
pullImageOptions := docker.PullImageOptions{
Repository: repository,
Tag: tag,
OutputStream: pullWriter,
Platform: platform,
RawJSONStream: true,
}
if klog.V(5) {
pullImageOptions.OutputStream = os.Stderr
pullImageOptions.RawJSONStream = false
}
authConfig := docker.AuthConfiguration{Username: config.Username, ServerAddress: config.ServerAddress, Password: config.Password}
pullErr = e.Client.PullImage(pullImageOptions, authConfig)
}()
if pullErr == nil {
break
}
lastErr = pullErr
continue
}
if lastErr != nil {
return nil, fmt.Errorf("unable to pull image (from: %s, tag: %s): %v", repository, tag, lastErr)
}
return e.Client.InspectImage(from)
}
func (e *ClientExecutor) Preserve(path string) error {
if e.Volumes == nil {
e.Volumes = NewContainerVolumeTracker()
}
if err := e.EnsureContainerPath(path); err != nil {
return err
}
e.Volumes.Add(path)
return nil
}
func (e *ClientExecutor) EnsureContainerPath(path string) error {
return e.createOrReplaceContainerPathWithOwner(path, 0, 0, nil)
}
func (e *ClientExecutor) EnsureContainerPathAs(path, user string, mode *os.FileMode) error {
uid, gid := 0, 0
u, g, err := e.getUser(user)
if err == nil {
uid = u
gid = g
}
return e.createOrReplaceContainerPathWithOwner(path, uid, gid, mode)
}
func (e *ClientExecutor) createOrReplaceContainerPathWithOwner(path string, uid, gid int, mode *os.FileMode) error {
if mode == nil {
m := os.FileMode(0755)
mode = &m
}
createPath := func(dest string) error {
var writerErr error
if !strings.HasSuffix(dest, "/") {
dest = dest + "/"
}
reader, writer := io.Pipe()
opts := docker.UploadToContainerOptions{
InputStream: reader,
Path: "/",
Context: context.TODO(),
}
go func() {
defer writer.Close()
tarball := tar.NewWriter(writer)
defer tarball.Close()
writerErr = tarball.WriteHeader(&tar.Header{
Name: dest,
Typeflag: tar.TypeDir,
Mode: int64(*mode),
Uid: uid,
Gid: gid,
})
}()
klog.V(4).Infof("Uploading empty archive to %q", dest)
err := e.Client.UploadToContainer(e.Container.ID, opts)
if err != nil {
return fmt.Errorf("unable to ensure existence of preserved path %s: %v", dest, err)
}
if writerErr != nil {
return fmt.Errorf("error generating tarball to ensure existence of preserved path %s: %v", dest, writerErr)
}
return nil
}
readPath := func(dest string) error {
if !strings.HasSuffix(dest, "/") {
dest = dest + "/"
}
err := e.Client.DownloadFromContainer(e.Container.ID, docker.DownloadFromContainerOptions{
Path: dest,
OutputStream: ioutil.Discard,
})
return err
}
var pathsToCreate []string
pathToCheck := path
for {
if err := readPath(pathToCheck); err != nil {
pathsToCreate = append([]string{pathToCheck}, pathsToCreate...)
}
if filepath.Dir(pathToCheck) == pathToCheck {
break
}
pathToCheck = filepath.Dir(pathToCheck)
}
for _, path := range pathsToCreate {
if err := createPath(path); err != nil {
return fmt.Errorf("error creating container directory %s: %v", path, err)
}
}
return nil
}
func (e *ClientExecutor) UnrecognizedInstruction(step *imagebuilder.Step) error {
if e.IgnoreUnrecognizedInstructions {
e.LogFn("warning: Unknown instruction: %s", strings.ToUpper(step.Command))
return nil
}
return fmt.Errorf("Unknown instruction: %s", strings.ToUpper(step.Command))
}
// Run executes a single Run command against the current container using exec().
// Since exec does not allow ENV or WORKINGDIR to be set, we force the execution of
// the user command into a shell and perform those operations before. Since RUN
// requires /bin/sh, we can use both 'cd' and 'export'.
func (e *ClientExecutor) Run(run imagebuilder.Run, config docker.Config) error {
if len(run.Files) > 0 {
return fmt.Errorf("Heredoc syntax is not supported")
}
if len(run.Mounts) > 0 {
return fmt.Errorf("RUN --mount not supported")
}
if run.Network != "" {
return fmt.Errorf("RUN --network not supported")
}
args := make([]string, len(run.Args))
copy(args, run.Args)
defaultShell := config.Shell
if len(defaultShell) == 0 {
if runtime.GOOS == "windows" {
defaultShell = []string{"cmd", "/S", "/C"}
} else {
defaultShell = []string{"/bin/sh", "-c"}
}
}
if runtime.GOOS == "windows" {
if len(config.WorkingDir) > 0 {
args[0] = fmt.Sprintf("cd %s && %s", imagebuilder.BashQuote(config.WorkingDir), args[0])
}
// TODO: implement windows ENV
args = append(defaultShell, args...)
} else {
if run.Shell {
if len(config.WorkingDir) > 0 {
args[0] = fmt.Sprintf("cd %s && %s", imagebuilder.BashQuote(config.WorkingDir), args[0])
}
if len(config.Env) > 0 {
args[0] = imagebuilder.ExportEnv(config.Env) + args[0]
}
args = append(defaultShell, args...)
} else {
switch {
case len(config.WorkingDir) == 0 && len(config.Env) == 0:
// no change necessary
case len(args) > 0:
setup := "exec \"$@\""
if len(config.WorkingDir) > 0 {
setup = fmt.Sprintf("cd %s && %s", imagebuilder.BashQuote(config.WorkingDir), setup)
}
if len(config.Env) > 0 {
setup = imagebuilder.ExportEnv(config.Env) + setup
}
newArgs := make([]string, 0, len(args)+4)
newArgs = append(newArgs, defaultShell...)
newArgs = append(newArgs, setup, "")
newArgs = append(newArgs, args...)
args = newArgs
}
}
}
if e.StrictVolumeOwnership && !e.Volumes.Empty() {
return fmt.Errorf("a RUN command was executed after a VOLUME command, which may result in ownership information being lost")
}
if err := e.Volumes.Save(e.Container.ID, e.TempDir, e.Client); err != nil {
return err
}
config.Cmd = args
klog.V(4).Infof("Running %#v inside of %s as user %s", config.Cmd, e.Container.ID, config.User)
exec, err := e.Client.CreateExec(docker.CreateExecOptions{
Cmd: config.Cmd,
Container: e.Container.ID,
AttachStdout: true,
AttachStderr: true,
User: config.User,
})
if err != nil {
return err
}
if err := e.Client.StartExec(exec.ID, docker.StartExecOptions{
OutputStream: e.Out,
ErrorStream: e.ErrOut,
}); err != nil {
return err
}
status, err := e.Client.InspectExec(exec.ID)
if err != nil {
return err
}
if status.ExitCode != 0 {
klog.V(4).Infof("Failed command (code %d): %v", status.ExitCode, args)
return fmt.Errorf("running '%s' failed with exit code %d", strings.Join(run.Args, " "), status.ExitCode)
}
if err := e.Volumes.Restore(e.Container.ID, e.Client); err != nil {
return err
}
return nil
}
// Copy implements the executor copy function.
func (e *ClientExecutor) Copy(excludes []string, copies ...imagebuilder.Copy) error {
// copying content into a volume invalidates the archived state of any given directory
for _, copy := range copies {
if copy.Checksum != "" {
return fmt.Errorf("ADD --checksum not supported")
}
if copy.Link {
return fmt.Errorf("ADD or COPY --link not supported")
}
if copy.Parents {
return fmt.Errorf("COPY --parents not supported")
}
if copy.KeepGitDir {
return fmt.Errorf("ADD --keep-git-dir not supported")
}
if len(copy.Excludes) > 0 {
return fmt.Errorf("ADD or COPY --exclude not supported")
}
if len(copy.Files) > 0 {
return fmt.Errorf("Heredoc syntax is not supported")
}
e.Volumes.Invalidate(copy.Dest)
}
return e.CopyContainer(e.Container, excludes, copies...)
}
func (e *ClientExecutor) findMissingParents(container *docker.Container, dest string) (parents []string, err error) {
destParent := filepath.Clean(dest)
for filepath.Dir(destParent) != destParent {
exists, err := isContainerPathDirectory(e.Client, container.ID, destParent)
if err != nil {
return nil, err
}
if !exists {
parents = append(parents, destParent)
}
destParent = filepath.Dir(destParent)
}
return parents, nil
}
func (e *ClientExecutor) getUser(userspec string) (int, int, error) {
readFile := func(path string) ([]byte, error) {
var buffer, contents bytes.Buffer
if err := e.Client.DownloadFromContainer(e.Container.ID, docker.DownloadFromContainerOptions{
OutputStream: &buffer,
Path: path,
Context: context.TODO(),
}); err != nil {
return nil, err
}
tr := tar.NewReader(&buffer)
hdr, err := tr.Next()
if err != nil {
return nil, err
}
if hdr.Typeflag != tar.TypeReg && hdr.Typeflag != tar.TypeRegA {
return nil, fmt.Errorf("expected %q to be a regular file, but it was of type %q", path, string(hdr.Typeflag))
}
if filepath.FromSlash(hdr.Name) != filepath.Base(path) {
return nil, fmt.Errorf("error reading contents of %q: got %q instead", path, hdr.Name)
}
n, err := io.Copy(&contents, tr)
if err != nil {
return nil, fmt.Errorf("error reading contents of %q: %v", path, err)
}
if n != hdr.Size {
return nil, fmt.Errorf("size mismatch reading contents of %q: %v", path, err)
}
hdr, err = tr.Next()
if err != nil && !errors.Is(err, io.EOF) {
return nil, fmt.Errorf("error reading archive of %q: %v", path, err)
}
if err == nil {
return nil, fmt.Errorf("got unexpected extra content while reading archive of %q: %v", path, err)
}
return contents.Bytes(), nil
}
parse := func(file []byte, matchField int, key string, numFields, readField int) (string, error) {
var value *string
scanner := bufio.NewScanner(bytes.NewReader(file))
for scanner.Scan() {
line := scanner.Text()
fields := strings.SplitN(line, ":", numFields)
if len(fields) != numFields {
return "", fmt.Errorf("error parsing line %q: incorrect number of fields", line)
}
if fields[matchField] != key {
continue
}
v := fields[readField]
value = &v
}
if err := scanner.Err(); err != nil {
return "", fmt.Errorf("error scanning file: %v", err)
}
if value == nil {
return "", os.ErrNotExist
}
return *value, nil
}
spec := strings.SplitN(userspec, ":", 2)
if len(spec) == 2 {
parsedUid, err := strconv.ParseUint(spec[0], 10, 32)
if err != nil {
// maybe it's a user name? look up the UID
passwdFile, err := readFile("/etc/passwd")
if err != nil {
return -1, -1, err
}
uid, err := parse(passwdFile, 0, spec[0], 7, 2)
if err != nil {
return -1, -1, fmt.Errorf("error reading UID value from passwd file for --chown=%s: %v", spec[0], err)
}
parsedUid, err = strconv.ParseUint(uid, 10, 32)
if err != nil {
return -1, -1, fmt.Errorf("error parsing UID value %q from passwd file for --chown=%s", uid, userspec)
}
}
parsedGid, err := strconv.ParseUint(spec[1], 10, 32)
if err != nil {
// maybe it's a group name? look up the GID
groupFile, err := readFile("/etc/group")
if err != nil {
return -1, -1, err
}
gid, err := parse(groupFile, 0, spec[1], 4, 2)
if err != nil {
return -1, -1, err
}
parsedGid, err = strconv.ParseUint(gid, 10, 32)
if err != nil {
return -1, -1, fmt.Errorf("error parsing GID value %q from group file for --chown=%s", gid, userspec)
}
}
return int(parsedUid), int(parsedGid), nil
}
var parsedUid, parsedGid uint64
if id, err := strconv.ParseUint(spec[0], 10, 32); err == nil {
// it's an ID. use it as both the UID and the GID
parsedUid = id
parsedGid = id
} else {
// it's a user name, we'll need to look up their UID and primary GID
passwdFile, err := readFile("/etc/passwd")
if err != nil {
return -1, -1, err
}
// read the UID and primary GID
uid, err := parse(passwdFile, 0, spec[0], 7, 2)
if err != nil {
return -1, -1, fmt.Errorf("error reading UID value from /etc/passwd for --chown=%s", userspec)
}
gid, err := parse(passwdFile, 0, spec[0], 7, 3)
if err != nil {
return -1, -1, fmt.Errorf("error reading GID value from /etc/passwd for --chown=%s", userspec)
}
if parsedUid, err = strconv.ParseUint(uid, 10, 32); err != nil {
return -1, -1, fmt.Errorf("error parsing UID value %q from /etc/passwd for --chown=%s", uid, userspec)
}
if parsedGid, err = strconv.ParseUint(gid, 10, 32); err != nil {
return -1, -1, fmt.Errorf("error parsing GID value %q from /etc/passwd for --chown=%s", gid, userspec)
}
}
return int(parsedUid), int(parsedGid), nil
}
// CopyContainer copies the provided content into a destination container.
func (e *ClientExecutor) CopyContainer(container *docker.Container, excludes []string, copies ...imagebuilder.Copy) error {
chownUid, chownGid := -1, -1
chown := func(h *tar.Header, r io.Reader) (data []byte, update bool, skip bool, err error) {
if chownUid != -1 {
h.Uid = chownUid
}
if chownGid != -1 {
h.Gid = chownGid
}
if (h.Uid > 0x1fffff || h.Gid > 0x1fffff) && h.Format == tar.FormatUSTAR {
h.Format = tar.FormatPAX
}
return nil, false, false, nil
}
for _, c := range copies {
var chmod func(h *tar.Header, r io.Reader) (data []byte, update bool, skip bool, err error)
if c.Chmod != "" {
parsed, err := strconv.ParseInt(c.Chmod, 8, 16)
if err != nil {
return err
}
chmod = func(h *tar.Header, r io.Reader) (data []byte, update bool, skip bool, err error) {
mode := h.Mode &^ 0o777
mode |= parsed & 0o7777
h.Mode = mode
return nil, false, false, nil
}
}
chownUid, chownGid = -1, -1
if c.Chown != "" {
var err error
chownUid, chownGid, err = e.getUser(c.Chown)
if err != nil {
return err
}
}
// TODO: reuse source
for _, src := range c.Src {
if src == "" {
src = "*"
}
assumeDstIsDirectory := len(c.Src) > 1
repeatThisSrc:
klog.V(4).Infof("Archiving %s download=%t fromFS=%t from=%s", src, c.Download, c.FromFS, c.From)
var r io.Reader
var closer io.Closer
var err error
if len(c.From) > 0 {
if !assumeDstIsDirectory {
var err error
if assumeDstIsDirectory, err = e.isContainerGlobMultiple(e.Client, c.From, src); err != nil {
return err
}
}
r, closer, err = e.archiveFromContainer(c.From, src, c.Dest, assumeDstIsDirectory)
} else {
r, closer, err = e.Archive(c.FromFS, src, c.Dest, c.Download, excludes)
}
if err != nil {
return err
}
asOwner := ""
if c.Chown != "" {
asOwner = fmt.Sprintf(" as %d:%d", chownUid, chownGid)
// the daemon would implicitly create missing
// directories with the wrong ownership, so
// check for any that don't exist and create
// them ourselves
missingParents, err := e.findMissingParents(container, c.Dest)
if err != nil {
return err
}
if len(missingParents) > 0 {
sort.Strings(missingParents)
klog.V(5).Infof("Uploading directories %v to %s%s", missingParents, container.ID, asOwner)
for _, missingParent := range missingParents {
if err := e.createOrReplaceContainerPathWithOwner(missingParent, chownUid, chownGid, nil); err != nil {
return err
}
}
}
filtered, err := transformArchive(r, false, chown)
if err != nil {
return err
}
r = filtered
}
if c.Chmod != "" {
filtered, err := transformArchive(r, false, chmod)
if err != nil {
return err
}
r = filtered
}
klog.V(5).Infof("Uploading to %s%s at %s", container.ID, asOwner, c.Dest)
if klog.V(6) {
logArchiveOutput(r, "Archive file for %s")
}
// add a workaround allow us to notice if a
// dstNeedsToBeDirectoryError was returned while
// attempting to read the data we're uploading,
// indicating that we thought the content would be just
// one item, but it actually isn't
reader := &readErrorWrapper{Reader: r}
r = reader
err = e.Client.UploadToContainer(container.ID, docker.UploadToContainerOptions{
InputStream: r,
Path: "/",
})
if err := closer.Close(); err != nil {
klog.Errorf("Error while closing stream container copy stream %s: %v", container.ID, err)
}
if err != nil {
if errors.Is(reader.err, dstNeedsToBeDirectoryError) && !assumeDstIsDirectory {
assumeDstIsDirectory = true
goto repeatThisSrc
}
if apiErr, ok := err.(*docker.Error); ok && apiErr.Status == 404 {
klog.V(4).Infof("path %s did not exist in container %s: %v", src, container.ID, err)
}
return err
}
}
}
return nil
}
type readErrorWrapper struct {
io.Reader
err error
}
func (r *readErrorWrapper) Read(p []byte) (n int, err error) {
n, r.err = r.Reader.Read(p)
return n, r.err
}
type closers []func() error
func (c closers) Close() error {
var lastErr error
for _, fn := range c {
if err := fn(); err != nil {
lastErr = err
}
}
return lastErr
}
func (e *ClientExecutor) archiveFromContainer(from string, src, dst string, multipleSources bool) (io.Reader, io.Closer, error) {
var containerID string
if other, ok := e.Named[from]; ok {
if other.Container == nil {
return nil, nil, fmt.Errorf("the stage %q has not been built yet", from)
}
klog.V(5).Infof("Using container %s as input for archive request", other.Container.ID)
containerID = other.Container.ID
} else {
klog.V(5).Infof("Creating a container temporarily for image input from %q in %s", from, src)
_, err := e.LoadImage(from)
if err != nil {
return nil, nil, err
}
c, err := e.Client.CreateContainer(docker.CreateContainerOptions{
Config: &docker.Config{
Image: from,
},
})
if err != nil {
return nil, nil, err
}
containerID = c.ID
e.Deferred = append([]func() error{func() error { return e.removeContainer(containerID) }}, e.Deferred...)
}
check := newDirectoryCheck(e.Client, e.Container.ID)
pr, pw := io.Pipe()
var archiveRoot string
fetch := func(pw *io.PipeWriter) {
klog.V(6).Infof("Download from container %s at path %s", containerID, archiveRoot)
err := e.Client.DownloadFromContainer(containerID, docker.DownloadFromContainerOptions{
OutputStream: pw,
Path: archiveRoot,
})
pw.CloseWithError(err)
}
ar, archiveRoot, err := archiveFromContainer(pr, src, dst, nil, check, fetch, multipleSources)
if err != nil {
pr.Close()
pw.Close()
return nil, nil, err
}
closer := newCloser(func() error {
err2 := pr.Close()
err3 := ar.Close()
if err3 != nil {
return err3
}
return err2
})
go fetch(pw)
return &readCloser{Reader: ar, Closer: closer}, pr, nil
}
func (e *ClientExecutor) isContainerGlobMultiple(client *docker.Client, from, glob string) (bool, error) {
reader, closer, err := e.archiveFromContainer(from, glob, "/ignored", true)
if err != nil {
return false, nil
}
defer closer.Close()
tr := tar.NewReader(reader)
h, err := tr.Next()
if err != nil {
if err == io.EOF {
err = nil
} else {
if apiErr, ok := err.(*docker.Error); ok && apiErr.Status == 404 {
klog.V(4).Infof("path %s did not exist in container %s: %v", glob, e.Container.ID, err)
err = nil
}
}
return false, err
}
klog.V(4).Infof("Retrieved first header from %s using glob %s: %#v", from, glob, h)
h, err = tr.Next()
if err != nil {
if err == io.EOF {
err = nil
}
return false, err
}
klog.V(4).Infof("Retrieved second header from %s using glob %s: %#v", from, glob, h)
// take the remainder of the input and discard it
go func() {
n, err := io.Copy(ioutil.Discard, reader)
if n > 0 || err != nil {
klog.V(6).Infof("Discarded %d bytes from end of from glob check, and got error: %v", n, err)
}
}()
return true, nil
}
func (e *ClientExecutor) Archive(fromFS bool, src, dst string, allowDownload bool, excludes []string) (io.Reader, io.Closer, error) {
var check DirectoryCheck
if e.Container != nil {
check = newDirectoryCheck(e.Client, e.Container.ID)
}
if isURL(src) {
if !allowDownload {
return nil, nil, fmt.Errorf("source can't be a URL")
}
klog.V(5).Infof("Archiving %s -> %s from URL", src, dst)
return archiveFromURL(src, dst, e.TempDir, check)
}
// the input is from the filesystem, use the source as the input
if fromFS {
klog.V(5).Infof("Archiving %s %s -> %s from a filesystem location", src, ".", dst)
return archiveFromDisk(src, ".", dst, allowDownload, excludes, check)
}
// if the context is in archive form, read from it without decompressing
if len(e.ContextArchive) > 0 {
klog.V(5).Infof("Archiving %s %s -> %s from context archive", e.ContextArchive, src, dst)
return archiveFromFile(e.ContextArchive, src, dst, excludes, check)
}
// if the context is a directory, we only allow relative includes
klog.V(5).Infof("Archiving %q %q -> %q from disk", e.Directory, src, dst)
return archiveFromDisk(e.Directory, src, dst, allowDownload, excludes, check)
}
// ContainerVolumeTracker manages tracking archives of specific paths inside a container.
type ContainerVolumeTracker struct {
paths map[string]string
errs []error
}
func NewContainerVolumeTracker() *ContainerVolumeTracker {
return &ContainerVolumeTracker{
paths: make(map[string]string),
}
}
// Empty returns true if the tracker is not watching any paths
func (t *ContainerVolumeTracker) Empty() bool {
return t == nil || len(t.paths) == 0
}
// Add tracks path unless it already is being tracked.
func (t *ContainerVolumeTracker) Add(path string) {
if _, ok := t.paths[path]; !ok {
t.paths[path] = ""
}
}
// Release removes any stored snapshots
func (t *ContainerVolumeTracker) Release() []error {
if t == nil {
return nil
}
for path := range t.paths {
t.ReleasePath(path)
}
return t.errs
}
func (t *ContainerVolumeTracker) ReleasePath(path string) {
if t == nil {
return
}
if archivePath, ok := t.paths[path]; ok && len(archivePath) > 0 {
err := os.Remove(archivePath)
if err != nil && !os.IsNotExist(err) {
t.errs = append(t.errs, err)
}
klog.V(5).Infof("Releasing path %s (%v)", path, err)
t.paths[path] = ""
}
}
func (t *ContainerVolumeTracker) Invalidate(path string) {
if t == nil {
return
}
set := imagebuilder.VolumeSet{}
set.Add(path)
for path := range t.paths {
if set.Covers(path) {
t.ReleasePath(path)
}
}
}
// Save ensures that all paths tracked underneath this container are archived or
// returns an error.
func (t *ContainerVolumeTracker) Save(containerID, tempDir string, client *docker.Client) error {
if t == nil {
return nil
}
set := imagebuilder.VolumeSet{}
for dest := range t.paths {
set.Add(dest)
}
// remove archive paths that are covered by other paths
for dest := range t.paths {
if !set.Has(dest) {
t.ReleasePath(dest)
delete(t.paths, dest)
}
}
for dest, archivePath := range t.paths {
if len(archivePath) > 0 {
continue
}
archivePath, err := snapshotPath(dest, containerID, tempDir, client)
if err != nil {
return err
}
t.paths[dest] = archivePath
}
return nil
}
// filterTarPipe transforms a tar file as it is streamed, calling fn on each header in the file.
// If fn returns false, the file is skipped. If an error occurs it is returned.
func filterTarPipe(w *tar.Writer, r *tar.Reader, fn func(*tar.Header) bool) error {
for {
h, err := r.Next()
if err != nil {
return err
}
if fn(h) {
if err := w.WriteHeader(h); err != nil {
return err
}
if _, err := io.Copy(w, r); err != nil {
return err
}
} else {
if _, err := io.Copy(ioutil.Discard, r); err != nil {
return err
}
}
}
}
// snapshotPath preserves the contents of path in container containerID as a temporary
// archive, returning either an error or the path of the archived file.
func snapshotPath(path, containerID, tempDir string, client *docker.Client) (string, error) {
f, err := ioutil.TempFile(tempDir, "archived-path")
if err != nil {
return "", err
}
klog.V(4).Infof("Snapshot %s for later use under %s", path, f.Name())
r, w := io.Pipe()
tr := tar.NewReader(r)
tw := tar.NewWriter(f)
go func() {
err := filterTarPipe(tw, tr, func(h *tar.Header) bool {
if i := strings.Index(h.Name, "/"); i != -1 {
h.Name = h.Name[i+1:]
}
return len(h.Name) > 0
})
if err == nil || errors.Is(err, io.EOF) {
tw.Flush()
w.Close()
klog.V(5).Infof("Snapshot rewritten from %s", path)
return
}
klog.V(5).Infof("Snapshot of %s failed: %v", path, err)
w.CloseWithError(err)
}()
if !strings.HasSuffix(path, "/") {
path += "/"
}
err = client.DownloadFromContainer(containerID, docker.DownloadFromContainerOptions{
Path: path,
OutputStream: w,
})
f.Close()
if err != nil {
os.Remove(f.Name())
return "", err
}
return f.Name(), nil
}
// Restore ensures the paths managed by t exactly match the container. This requires running
// exec as a user that can delete contents from the container. It will return an error if
// any client operation fails.
func (t *ContainerVolumeTracker) Restore(containerID string, client *docker.Client) error {
if t == nil {
return nil
}
for dest, archivePath := range t.paths {
if len(archivePath) == 0 {
return fmt.Errorf("path %s does not have an archive and cannot be restored", dest)
}
klog.V(4).Infof("Restoring contents of %s from %s", dest, archivePath)
if !strings.HasSuffix(dest, "/") {
dest = dest + "/"
}
exec, err := client.CreateExec(docker.CreateExecOptions{
Container: containerID,
Cmd: []string{"/bin/sh", "-c", "rm -rf $@", "", dest + "*"},
User: "0",
})
if err != nil {
return fmt.Errorf("unable to setup clearing preserved path %s: %v", dest, err)
}
if err := client.StartExec(exec.ID, docker.StartExecOptions{}); err != nil {
return fmt.Errorf("unable to clear preserved path %s: %v", dest, err)
}
var status *docker.ExecInspect
for status == nil {
status, err = client.InspectExec(exec.ID)
if err != nil {
break
}
if !status.Running {
break
}
status = nil
}
if err != nil {
return fmt.Errorf("clearing preserved path %s did not succeed: %v", dest, err)
}
if status.ExitCode != 0 {
return fmt.Errorf("clearing preserved path %s failed with exit code %d", dest, status.ExitCode)
}
err = func() error {
f, err := os.Open(archivePath)
if err != nil {
return fmt.Errorf("unable to open archive %s for preserved path %s: %v", archivePath, dest, err)
}
defer f.Close()
if err := client.UploadToContainer(containerID, docker.UploadToContainerOptions{
InputStream: f,
Path: dest,
}); err != nil {
return fmt.Errorf("unable to upload preserved contents from %s to %s: %v", archivePath, dest, err)
}
return nil
}()
if err != nil {
return err
}
}
return nil
}
|