From 35b3913d22d2dff67b56263c9fab169d7e579462 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Thu, 29 Mar 2018 09:54:47 -0700 Subject: [PATCH] Fix block id length upto 8bytes only for azure gateway. (#5731) This PR also reverts commit 2f9354b17ec9dc7d0b95a0af9f5573ff87909afe to bring back 8 byte block id requirement for azure gateway. --- cmd/gateway/azure/gateway-azure.go | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/cmd/gateway/azure/gateway-azure.go b/cmd/gateway/azure/gateway-azure.go index eb6ef34fa..88605b8d5 100644 --- a/cmd/gateway/azure/gateway-azure.go +++ b/cmd/gateway/azure/gateway-azure.go @@ -19,6 +19,7 @@ package azure import ( "bytes" "context" + "crypto/rand" "encoding/base64" "encoding/hex" "encoding/json" @@ -38,7 +39,6 @@ import ( "github.com/minio/minio/pkg/errors" "github.com/minio/minio/pkg/hash" sha256 "github.com/minio/sha256-simd" - "github.com/skyrings/skyring-common/tools/uuid" minio "github.com/minio/minio/cmd" ) @@ -354,12 +354,20 @@ func azureToObjectError(err error, params ...string) error { } // mustGetAzureUploadID - returns new upload ID which is hex encoded 8 bytes random value. +// this 8 byte restriction is needed because Azure block id has a restriction of length +// upto 8 bytes. func mustGetAzureUploadID() string { - uuid, err := uuid.New() + var id [8]byte + + n, err := io.ReadFull(rand.Reader, id[:]) if err != nil { - panic(err) + panic(fmt.Errorf("unable to generate upload ID for azure. %s", err)) + } + if n != len(id) { + panic(fmt.Errorf("insufficient random data (expected: %d, read: %d)", len(id), n)) } - return fmt.Sprintf("%x", uuid[:]) + + return hex.EncodeToString(id[:]) } // checkAzureUploadID - returns error in case of given string is upload ID.