2017-05-15 17:13:34 -04:00
|
|
|
package filesync
|
|
|
|
|
|
|
|
import (
|
2018-06-08 05:26:10 -04:00
|
|
|
"context"
|
2017-09-29 06:32:26 -04:00
|
|
|
"fmt"
|
2018-06-08 05:26:10 -04:00
|
|
|
io "io"
|
2017-05-15 17:13:34 -04:00
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2017-08-07 05:52:40 -04:00
|
|
|
"github.com/moby/buildkit/session"
|
2017-05-15 17:13:34 -04:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/tonistiigi/fsutil"
|
2018-10-05 05:05:42 -04:00
|
|
|
fstypes "github.com/tonistiigi/fsutil/types"
|
2017-05-15 17:13:34 -04:00
|
|
|
"google.golang.org/grpc"
|
2018-08-11 15:04:13 -04:00
|
|
|
"google.golang.org/grpc/codes"
|
2017-05-15 17:13:34 -04:00
|
|
|
"google.golang.org/grpc/metadata"
|
2018-08-11 15:04:13 -04:00
|
|
|
"google.golang.org/grpc/status"
|
2017-05-15 17:13:34 -04:00
|
|
|
)
|
|
|
|
|
2017-08-07 05:52:40 -04:00
|
|
|
const (
|
2019-09-20 20:42:32 -04:00
|
|
|
keyOverrideExcludes = "override-excludes"
|
|
|
|
keyIncludePatterns = "include-patterns"
|
|
|
|
keyExcludePatterns = "exclude-patterns"
|
|
|
|
keyFollowPaths = "followpaths"
|
|
|
|
keyDirName = "dir-name"
|
|
|
|
keyExporterMetaPrefix = "exporter-md-"
|
2017-08-07 05:52:40 -04:00
|
|
|
)
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
type fsSyncProvider struct {
|
2017-09-29 06:32:26 -04:00
|
|
|
dirs map[string]SyncedDir
|
|
|
|
p progressCb
|
|
|
|
doneCh chan error
|
|
|
|
}
|
|
|
|
|
|
|
|
type SyncedDir struct {
|
|
|
|
Name string
|
|
|
|
Dir string
|
|
|
|
Excludes []string
|
2019-04-03 02:23:23 -04:00
|
|
|
Map func(string, *fstypes.Stat) bool
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewFSSyncProvider creates a new provider for sending files from client
|
2017-09-29 06:32:26 -04:00
|
|
|
func NewFSSyncProvider(dirs []SyncedDir) session.Attachable {
|
2017-05-15 17:13:34 -04:00
|
|
|
p := &fsSyncProvider{
|
2017-09-29 06:32:26 -04:00
|
|
|
dirs: map[string]SyncedDir{},
|
|
|
|
}
|
|
|
|
for _, d := range dirs {
|
|
|
|
p.dirs[d.Name] = d
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) Register(server *grpc.Server) {
|
|
|
|
RegisterFileSyncServer(server, sp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) DiffCopy(stream FileSync_DiffCopyServer) error {
|
|
|
|
return sp.handle("diffcopy", stream)
|
|
|
|
}
|
|
|
|
func (sp *fsSyncProvider) TarStream(stream FileSync_TarStreamServer) error {
|
|
|
|
return sp.handle("tarstream", stream)
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
func (sp *fsSyncProvider) handle(method string, stream grpc.ServerStream) (retErr error) {
|
2017-05-15 17:13:34 -04:00
|
|
|
var pr *protocol
|
|
|
|
for _, p := range supportedProtocols {
|
|
|
|
if method == p.name && isProtoSupported(p.name) {
|
|
|
|
pr = &p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pr == nil {
|
|
|
|
return errors.New("failed to negotiate protocol")
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
opts, _ := metadata.FromIncomingContext(stream.Context()) // if no metadata continue with empty object
|
2017-05-15 17:13:34 -04:00
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
dirName := ""
|
2017-09-29 06:32:26 -04:00
|
|
|
name, ok := opts[keyDirName]
|
2018-06-08 05:26:10 -04:00
|
|
|
if ok && len(name) > 0 {
|
|
|
|
dirName = name[0]
|
2017-09-29 06:32:26 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
dir, ok := sp.dirs[dirName]
|
2017-09-29 06:32:26 -04:00
|
|
|
if !ok {
|
2018-08-11 15:04:13 -04:00
|
|
|
return status.Errorf(codes.NotFound, "no access allowed to dir %q", dirName)
|
2017-09-29 06:32:26 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
excludes := opts[keyExcludePatterns]
|
|
|
|
if len(dir.Excludes) != 0 && (len(opts[keyOverrideExcludes]) == 0 || opts[keyOverrideExcludes][0] != "true") {
|
2017-09-29 06:32:26 -04:00
|
|
|
excludes = dir.Excludes
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
2017-08-07 05:52:40 -04:00
|
|
|
includes := opts[keyIncludePatterns]
|
2017-05-15 17:13:34 -04:00
|
|
|
|
2018-06-08 21:07:42 -04:00
|
|
|
followPaths := opts[keyFollowPaths]
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
var progress progressCb
|
|
|
|
if sp.p != nil {
|
|
|
|
progress = sp.p
|
|
|
|
sp.p = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var doneCh chan error
|
|
|
|
if sp.doneCh != nil {
|
|
|
|
doneCh = sp.doneCh
|
|
|
|
sp.doneCh = nil
|
|
|
|
}
|
2018-08-11 15:04:13 -04:00
|
|
|
err := pr.sendFn(stream, fsutil.NewFS(dir.Dir, &fsutil.WalkOpt{
|
|
|
|
ExcludePatterns: excludes,
|
|
|
|
IncludePatterns: includes,
|
|
|
|
FollowPaths: followPaths,
|
|
|
|
Map: dir.Map,
|
|
|
|
}), progress)
|
2017-05-15 17:13:34 -04:00
|
|
|
if doneCh != nil {
|
|
|
|
if err != nil {
|
|
|
|
doneCh <- err
|
|
|
|
}
|
|
|
|
close(doneCh)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) SetNextProgressCallback(f func(int, bool), doneCh chan error) {
|
|
|
|
sp.p = f
|
|
|
|
sp.doneCh = doneCh
|
|
|
|
}
|
|
|
|
|
|
|
|
type progressCb func(int, bool)
|
|
|
|
|
|
|
|
type protocol struct {
|
|
|
|
name string
|
2018-08-11 15:04:13 -04:00
|
|
|
sendFn func(stream grpc.Stream, fs fsutil.FS, progress progressCb) error
|
2019-04-03 02:23:23 -04:00
|
|
|
recvFn func(stream grpc.Stream, destDir string, cu CacheUpdater, progress progressCb, mapFunc func(string, *fstypes.Stat) bool) error
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func isProtoSupported(p string) bool {
|
|
|
|
// TODO: this should be removed after testing if stability is confirmed
|
|
|
|
if override := os.Getenv("BUILD_STREAM_PROTOCOL"); override != "" {
|
|
|
|
return strings.EqualFold(p, override)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var supportedProtocols = []protocol{
|
|
|
|
{
|
|
|
|
name: "diffcopy",
|
|
|
|
sendFn: sendDiffCopy,
|
|
|
|
recvFn: recvDiffCopy,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// FSSendRequestOpt defines options for FSSend request
|
|
|
|
type FSSendRequestOpt struct {
|
2017-09-29 06:32:26 -04:00
|
|
|
Name string
|
2017-08-07 05:52:40 -04:00
|
|
|
IncludePatterns []string
|
2018-06-08 05:26:10 -04:00
|
|
|
ExcludePatterns []string
|
2018-06-08 21:07:42 -04:00
|
|
|
FollowPaths []string
|
2018-06-08 05:26:10 -04:00
|
|
|
OverrideExcludes bool // deprecated: this is used by docker/cli for automatically loading .dockerignore from the directory
|
2017-05-15 17:13:34 -04:00
|
|
|
DestDir string
|
|
|
|
CacheUpdater CacheUpdater
|
2017-09-29 06:32:26 -04:00
|
|
|
ProgressCb func(int, bool)
|
2019-04-03 02:23:23 -04:00
|
|
|
Filter func(string, *fstypes.Stat) bool
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// CacheUpdater is an object capable of sending notifications for the cache hash changes
|
|
|
|
type CacheUpdater interface {
|
|
|
|
MarkSupported(bool)
|
|
|
|
HandleChange(fsutil.ChangeKind, string, os.FileInfo, error) error
|
2017-09-29 06:32:26 -04:00
|
|
|
ContentHasher() fsutil.ContentHasher
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// FSSync initializes a transfer of files
|
|
|
|
func FSSync(ctx context.Context, c session.Caller, opt FSSendRequestOpt) error {
|
|
|
|
var pr *protocol
|
|
|
|
for _, p := range supportedProtocols {
|
|
|
|
if isProtoSupported(p.name) && c.Supports(session.MethodURL(_FileSync_serviceDesc.ServiceName, p.name)) {
|
|
|
|
pr = &p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pr == nil {
|
2018-08-11 15:04:13 -04:00
|
|
|
return errors.New("no local sources enabled")
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
opts := make(map[string][]string)
|
|
|
|
if opt.OverrideExcludes {
|
2017-08-07 05:52:40 -04:00
|
|
|
opts[keyOverrideExcludes] = []string{"true"}
|
|
|
|
}
|
|
|
|
|
|
|
|
if opt.IncludePatterns != nil {
|
|
|
|
opts[keyIncludePatterns] = opt.IncludePatterns
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
if opt.ExcludePatterns != nil {
|
|
|
|
opts[keyExcludePatterns] = opt.ExcludePatterns
|
|
|
|
}
|
|
|
|
|
2018-06-08 21:07:42 -04:00
|
|
|
if opt.FollowPaths != nil {
|
|
|
|
opts[keyFollowPaths] = opt.FollowPaths
|
|
|
|
}
|
|
|
|
|
2017-09-29 06:32:26 -04:00
|
|
|
opts[keyDirName] = []string{opt.Name}
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client := NewFileSyncClient(c.Conn())
|
|
|
|
|
|
|
|
var stream grpc.ClientStream
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
ctx = metadata.NewOutgoingContext(ctx, opts)
|
2017-05-15 17:13:34 -04:00
|
|
|
|
|
|
|
switch pr.name {
|
|
|
|
case "tarstream":
|
|
|
|
cc, err := client.TarStream(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stream = cc
|
|
|
|
case "diffcopy":
|
|
|
|
cc, err := client.DiffCopy(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stream = cc
|
2017-09-29 06:32:26 -04:00
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("invalid protocol: %q", pr.name))
|
|
|
|
}
|
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
return pr.recvFn(stream, opt.DestDir, opt.CacheUpdater, opt.ProgressCb, opt.Filter)
|
2017-09-29 06:32:26 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
// NewFSSyncTargetDir allows writing into a directory
|
|
|
|
func NewFSSyncTargetDir(outdir string) session.Attachable {
|
2017-09-29 06:32:26 -04:00
|
|
|
p := &fsSyncTarget{
|
|
|
|
outdir: outdir,
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
// NewFSSyncTarget allows writing into an io.WriteCloser
|
2019-09-20 20:42:32 -04:00
|
|
|
func NewFSSyncTarget(f func(map[string]string) (io.WriteCloser, error)) session.Attachable {
|
2018-06-08 05:26:10 -04:00
|
|
|
p := &fsSyncTarget{
|
2019-09-20 20:42:32 -04:00
|
|
|
f: f,
|
2018-06-08 05:26:10 -04:00
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2017-09-29 06:32:26 -04:00
|
|
|
type fsSyncTarget struct {
|
2019-09-20 20:42:32 -04:00
|
|
|
outdir string
|
|
|
|
f func(map[string]string) (io.WriteCloser, error)
|
2017-09-29 06:32:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncTarget) Register(server *grpc.Server) {
|
|
|
|
RegisterFileSendServer(server, sp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncTarget) DiffCopy(stream FileSend_DiffCopyServer) error {
|
2018-06-08 05:26:10 -04:00
|
|
|
if sp.outdir != "" {
|
|
|
|
return syncTargetDiffCopy(stream, sp.outdir)
|
|
|
|
}
|
2019-09-20 20:42:32 -04:00
|
|
|
|
|
|
|
if sp.f == nil {
|
2018-06-08 05:26:10 -04:00
|
|
|
return errors.New("empty outfile and outdir")
|
|
|
|
}
|
2019-09-20 20:42:32 -04:00
|
|
|
opts, _ := metadata.FromIncomingContext(stream.Context()) // if no metadata continue with empty object
|
|
|
|
md := map[string]string{}
|
|
|
|
for k, v := range opts {
|
|
|
|
if strings.HasPrefix(k, keyExporterMetaPrefix) {
|
|
|
|
md[strings.TrimPrefix(k, keyExporterMetaPrefix)] = strings.Join(v, ",")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wc, err := sp.f(md)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if wc == nil {
|
|
|
|
return status.Errorf(codes.AlreadyExists, "target already exists")
|
|
|
|
}
|
|
|
|
defer wc.Close()
|
|
|
|
return writeTargetFile(stream, wc)
|
2017-09-29 06:32:26 -04:00
|
|
|
}
|
|
|
|
|
2018-08-11 15:04:13 -04:00
|
|
|
func CopyToCaller(ctx context.Context, fs fsutil.FS, c session.Caller, progress func(int, bool)) error {
|
2017-09-29 06:32:26 -04:00
|
|
|
method := session.MethodURL(_FileSend_serviceDesc.ServiceName, "diffcopy")
|
|
|
|
if !c.Supports(method) {
|
|
|
|
return errors.Errorf("method %s not supported by the client", method)
|
|
|
|
}
|
|
|
|
|
|
|
|
client := NewFileSendClient(c.Conn())
|
|
|
|
|
|
|
|
cc, err := client.DiffCopy(ctx)
|
|
|
|
if err != nil {
|
2019-09-20 20:42:32 -04:00
|
|
|
return errors.WithStack(err)
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
2018-08-11 15:04:13 -04:00
|
|
|
return sendDiffCopy(cc, fs, progress)
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
2018-06-08 05:26:10 -04:00
|
|
|
|
2019-09-20 20:42:32 -04:00
|
|
|
func CopyFileWriter(ctx context.Context, md map[string]string, c session.Caller) (io.WriteCloser, error) {
|
2018-06-08 05:26:10 -04:00
|
|
|
method := session.MethodURL(_FileSend_serviceDesc.ServiceName, "diffcopy")
|
|
|
|
if !c.Supports(method) {
|
|
|
|
return nil, errors.Errorf("method %s not supported by the client", method)
|
|
|
|
}
|
|
|
|
|
|
|
|
client := NewFileSendClient(c.Conn())
|
|
|
|
|
2019-09-20 20:42:32 -04:00
|
|
|
opts := make(map[string][]string, len(md))
|
|
|
|
for k, v := range md {
|
|
|
|
opts[keyExporterMetaPrefix+k] = []string{v}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = metadata.NewOutgoingContext(ctx, opts)
|
|
|
|
|
2018-06-08 05:26:10 -04:00
|
|
|
cc, err := client.DiffCopy(ctx)
|
|
|
|
if err != nil {
|
2019-09-20 20:42:32 -04:00
|
|
|
return nil, errors.WithStack(err)
|
2018-06-08 05:26:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return newStreamWriter(cc), nil
|
|
|
|
}
|