Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2020-05-20 09:51:34 -04:00
|
|
|
// +build !gccgo,!purego
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
|
|
|
//go:noescape
|
2019-11-15 16:07:21 -05:00
|
|
|
func update(state *macState, msg []byte)
|
2019-04-20 19:53:34 -04:00
|
|
|
|
2019-11-15 16:07:21 -05:00
|
|
|
// mac is a wrapper for macGeneric that redirects calls that would have gone to
|
|
|
|
// updateGeneric to update.
|
|
|
|
//
|
|
|
|
// Its Write and Sum methods are otherwise identical to the macGeneric ones, but
|
|
|
|
// using function pointers would carry a major performance cost.
|
|
|
|
type mac struct{ macGeneric }
|
2019-04-20 19:53:34 -04:00
|
|
|
|
2019-11-15 16:07:21 -05:00
|
|
|
func (h *mac) Write(p []byte) (int, error) {
|
|
|
|
nn := len(p)
|
2019-04-20 19:53:34 -04:00
|
|
|
if h.offset > 0 {
|
2019-11-15 16:07:21 -05:00
|
|
|
n := copy(h.buffer[h.offset:], p)
|
|
|
|
if h.offset+n < TagSize {
|
|
|
|
h.offset += n
|
|
|
|
return nn, nil
|
2019-04-20 19:53:34 -04:00
|
|
|
}
|
2019-11-15 16:07:21 -05:00
|
|
|
p = p[n:]
|
2019-04-20 19:53:34 -04:00
|
|
|
h.offset = 0
|
2019-11-15 16:07:21 -05:00
|
|
|
update(&h.macState, h.buffer[:])
|
2019-04-20 19:53:34 -04:00
|
|
|
}
|
2019-11-15 16:07:21 -05:00
|
|
|
if n := len(p) - (len(p) % TagSize); n > 0 {
|
|
|
|
update(&h.macState, p[:n])
|
|
|
|
p = p[n:]
|
2019-04-20 19:53:34 -04:00
|
|
|
}
|
|
|
|
if len(p) > 0 {
|
|
|
|
h.offset += copy(h.buffer[h.offset:], p)
|
|
|
|
}
|
2019-11-15 16:07:21 -05:00
|
|
|
return nn, nil
|
2019-04-20 19:53:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *mac) Sum(out *[16]byte) {
|
2019-11-15 16:07:21 -05:00
|
|
|
state := h.macState
|
2019-04-20 19:53:34 -04:00
|
|
|
if h.offset > 0 {
|
|
|
|
update(&state, h.buffer[:h.offset])
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
}
|
2019-11-15 16:07:21 -05:00
|
|
|
finalize(out, &state.h, &state.s)
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
}
|