2016-05-04 15:18:20 -04:00
/ *
2018-02-15 20:45:57 -05:00
* Minio Cloud Storage , ( C ) 2016 , 2017 , 2018 Minio , Inc .
2016-05-04 15:18:20 -04:00
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
2016-08-18 19:23:42 -04:00
package cmd
2016-05-04 15:18:20 -04:00
2016-05-07 03:59:43 -04:00
import (
2018-04-05 18:04:40 -04:00
"context"
2016-05-07 03:59:43 -04:00
"encoding/json"
"fmt"
2018-02-15 20:45:57 -05:00
"io/ioutil"
2018-03-15 16:55:23 -04:00
"os"
2016-06-02 19:34:15 -04:00
"sync"
2018-02-15 20:45:57 -05:00
"encoding/hex"
2018-02-20 21:42:09 -05:00
humanize "github.com/dustin/go-humanize"
sha256 "github.com/minio/sha256-simd"
2017-06-12 20:40:28 -04:00
)
const (
// Represents XL backend.
formatBackendXL = "xl"
2018-02-15 20:45:57 -05:00
// formatXLV1.XL.Version - version '1'.
2018-01-08 17:30:55 -05:00
formatXLVersionV1 = "1"
2018-02-15 20:45:57 -05:00
// formatXLV2.XL.Version - version '2'.
formatXLVersionV2 = "2"
2018-03-15 16:55:23 -04:00
// formatXLV3.XL.Version - version '3'.
formatXLVersionV3 = "3"
2018-02-15 20:45:57 -05:00
// Distribution algorithm used.
formatXLVersionV2DistributionAlgo = "CRCMOD"
2018-01-08 17:30:55 -05:00
)
2017-06-12 20:40:28 -04:00
2018-02-15 20:45:57 -05:00
// Offline disk UUID represents an offline disk.
const offlineDiskUUID = "ffffffff-ffff-ffff-ffff-ffffffffffff"
// Healing is only supported for the list of errors mentioned here.
var formatHealErrors = map [ error ] struct { } {
errUnformattedDisk : { } ,
errDiskNotFound : { } ,
}
// List of errors considered critical for disk formatting.
var formatCriticalErrors = map [ error ] struct { } {
errCorruptedFormat : { } ,
errFaultyDisk : { } ,
}
// Used to detect the version of "xl" format.
type formatXLVersionDetect struct {
XL struct {
Version string ` json:"version" `
} ` json:"xl" `
}
// Represents the V1 backend disk structure version
// under `.minio.sys` and actual data namespace.
2018-01-08 17:30:55 -05:00
// formatXLV1 - structure holds format config version '1'.
type formatXLV1 struct {
formatMetaV1
XL struct {
Version string ` json:"version" ` // Version of 'xl' format.
Disk string ` json:"disk" ` // Disk field carries assigned disk uuid.
// JBOD field carries the input disk order generated the first
// time when fresh disks were supplied.
JBOD [ ] string ` json:"jbod" `
} ` json:"xl" ` // XL field holds xl format.
2017-06-12 20:40:28 -04:00
}
2018-02-15 20:45:57 -05:00
// Represents the V2 backend disk structure version
// under `.minio.sys` and actual data namespace.
// formatXLV2 - structure holds format config version '2'.
type formatXLV2 struct {
Version string ` json:"version" `
Format string ` json:"format" `
XL struct {
Version string ` json:"version" ` // Version of 'xl' format.
This string ` json:"this" ` // This field carries assigned disk uuid.
// Sets field carries the input disk order generated the first
// time when fresh disks were supplied, it is a two dimensional
// array second dimension represents list of disks used per set.
Sets [ ] [ ] string ` json:"sets" `
// Distribution algorithm represents the hashing algorithm
// to pick the right set index for an object.
DistributionAlgo string ` json:"distributionAlgo" `
} ` json:"xl" `
}
2018-03-15 16:55:23 -04:00
// formatXLV3 struct is same as formatXLV2 struct except that formatXLV3.XL.Version is "3" indicating
// the simplified multipart backend which is a flat hierarchy now.
// In .minio.sys/multipart we have:
// sha256(bucket/object)/uploadID/[xl.json, part.1, part.2 ....]
type formatXLV3 struct {
Version string ` json:"version" `
Format string ` json:"format" `
XL struct {
Version string ` json:"version" ` // Version of 'xl' format.
This string ` json:"this" ` // This field carries assigned disk uuid.
// Sets field carries the input disk order generated the first
// time when fresh disks were supplied, it is a two dimensional
// array second dimension represents list of disks used per set.
Sets [ ] [ ] string ` json:"sets" `
// Distribution algorithm represents the hashing algorithm
// to pick the right set index for an object.
DistributionAlgo string ` json:"distributionAlgo" `
} ` json:"xl" `
}
2018-02-15 20:45:57 -05:00
// Returns formatXL.XL.Version
2018-03-15 16:55:23 -04:00
func newFormatXLV3 ( numSets int , setLen int ) * formatXLV3 {
format := & formatXLV3 { }
2018-02-15 20:45:57 -05:00
format . Version = formatMetaVersionV1
format . Format = formatBackendXL
2018-03-15 16:55:23 -04:00
format . XL . Version = formatXLVersionV3
2018-02-15 20:45:57 -05:00
format . XL . DistributionAlgo = formatXLVersionV2DistributionAlgo
format . XL . Sets = make ( [ ] [ ] string , numSets )
for i := 0 ; i < numSets ; i ++ {
format . XL . Sets [ i ] = make ( [ ] string , setLen )
for j := 0 ; j < setLen ; j ++ {
format . XL . Sets [ i ] [ j ] = mustGetUUID ( )
}
}
return format
}
// Returns formatXL.XL.Version information, this code is specifically
// used to read XL `format.json` and capture any version information
// that it may have.
func formatXLGetVersion ( formatPath string ) ( string , error ) {
format := & formatXLVersionDetect { }
b , err := ioutil . ReadFile ( formatPath )
if err != nil {
return "" , err
}
if err = json . Unmarshal ( b , format ) ; err != nil {
return "" , err
}
return format . XL . Version , nil
}
// Returns format meta format version from `format.json`. This code
// is specifically used to detect meta format.
func formatMetaGetFormatBackendXL ( formatPath string ) ( string , error ) {
meta := & formatMetaV1 { }
b , err := ioutil . ReadFile ( formatPath )
if err != nil {
return "" , err
}
if err = json . Unmarshal ( b , meta ) ; err != nil {
return "" , err
}
if meta . Version != formatMetaVersionV1 {
return "" , fmt . Errorf ( ` format.Version expected: %s, got: %s ` , formatMetaVersionV1 , meta . Version )
}
return meta . Format , nil
}
// Migrates all previous versions to latest version of `format.json`,
// this code calls migration in sequence, such as V1 is migrated to V2
// first before it V2 migrates to V3.
func formatXLMigrate ( export string ) error {
formatPath := pathJoin ( export , minioMetaBucket , formatConfigFile )
backend , err := formatMetaGetFormatBackendXL ( formatPath )
if err != nil {
return err
}
if backend != formatBackendXL {
return fmt . Errorf ( ` Disk %s: found backend %s, expected %s ` , export , backend , formatBackendXL )
}
version , err := formatXLGetVersion ( formatPath )
if err != nil {
return err
}
switch version {
case formatXLVersionV1 :
if err = formatXLMigrateV1ToV2 ( export ) ; err != nil {
return err
}
fallthrough
case formatXLVersionV2 :
2018-03-15 16:55:23 -04:00
if err = formatXLMigrateV2ToV3 ( export ) ; err != nil {
return err
}
fallthrough
case formatXLVersionV3 :
// format-V3 is the latest verion.
2018-02-15 20:45:57 -05:00
return nil
}
return fmt . Errorf ( ` %s: unknown format version %s ` , export , version )
}
// Migrates version V1 of format.json to version V2 of format.json,
// migration fails upon any error.
func formatXLMigrateV1ToV2 ( export string ) error {
formatPath := pathJoin ( export , minioMetaBucket , formatConfigFile )
version , err := formatXLGetVersion ( formatPath )
if err != nil {
return err
}
if version != formatXLVersionV1 {
return fmt . Errorf ( ` Disk %s: format version expected %s, found %s ` , export , formatXLVersionV1 , version )
}
formatV1 := & formatXLV1 { }
b , err := ioutil . ReadFile ( formatPath )
if err != nil {
return err
}
if err = json . Unmarshal ( b , formatV1 ) ; err != nil {
return err
}
2016-06-02 19:34:15 -04:00
2018-03-15 16:55:23 -04:00
formatV2 := & formatXLV2 { }
formatV2 . Version = formatMetaVersionV1
formatV2 . Format = formatBackendXL
formatV2 . XL . Version = formatXLVersionV2
formatV2 . XL . DistributionAlgo = formatXLVersionV2DistributionAlgo
2018-03-19 12:13:00 -04:00
formatV2 . XL . This = formatV1 . XL . Disk
2018-03-15 16:55:23 -04:00
formatV2 . XL . Sets = make ( [ ] [ ] string , 1 )
formatV2 . XL . Sets [ 0 ] = make ( [ ] string , len ( formatV1 . XL . JBOD ) )
2018-02-15 20:45:57 -05:00
copy ( formatV2 . XL . Sets [ 0 ] , formatV1 . XL . JBOD )
b , err = json . Marshal ( formatV2 )
if err != nil {
return err
}
return ioutil . WriteFile ( formatPath , b , 0644 )
}
2017-08-03 07:37:02 -04:00
2018-03-15 16:55:23 -04:00
// Migrates V2 for format.json to V3 (Flat hierarchy for multipart)
func formatXLMigrateV2ToV3 ( export string ) error {
formatPath := pathJoin ( export , minioMetaBucket , formatConfigFile )
version , err := formatXLGetVersion ( formatPath )
if err != nil {
return err
}
if version != formatXLVersionV2 {
return fmt . Errorf ( ` Disk %s: format version expected %s, found %s ` , export , formatXLVersionV2 , version )
}
formatV2 := & formatXLV2 { }
b , err := ioutil . ReadFile ( formatPath )
if err != nil {
return err
}
err = json . Unmarshal ( b , formatV2 )
if err != nil {
return err
}
if err = os . RemoveAll ( pathJoin ( export , minioMetaMultipartBucket ) ) ; err != nil {
return err
}
if err = os . MkdirAll ( pathJoin ( export , minioMetaMultipartBucket ) , 0755 ) ; err != nil {
return err
}
// format-V2 struct is exactly same as format-V1 except that version is "3"
// which indicates the simplified multipart backend.
formatV3 := formatXLV3 { }
formatV3 . Version = formatV2 . Version
formatV3 . Format = formatV2 . Format
formatV3 . XL = formatV2 . XL
formatV3 . XL . Version = formatXLVersionV3
b , err = json . Marshal ( formatV3 )
if err != nil {
return err
}
return ioutil . WriteFile ( formatPath , b , 0644 )
}
2018-02-15 20:45:57 -05:00
// Returns true, if one of the errors is non-nil.
func hasAnyErrors ( errs [ ] error ) bool {
2017-08-03 07:37:02 -04:00
for _ , err := range errs {
2018-02-15 20:45:57 -05:00
if err != nil {
return true
}
}
return false
}
// countErrs - count a specific error.
func countErrs ( errs [ ] error , err error ) int {
var i = 0
for _ , err1 := range errs {
2018-04-10 12:36:37 -04:00
if err1 == err {
2018-02-15 20:45:57 -05:00
i ++
}
}
return i
2016-06-02 19:34:15 -04:00
}
2018-02-15 20:45:57 -05:00
// Does all errors indicate we need to initialize all disks?.
func shouldInitXLDisks ( errs [ ] error ) bool {
return countErrs ( errs , errUnformattedDisk ) == len ( errs )
}
// loadFormatXLAll - load all format config from all input disks in parallel.
2018-04-04 00:58:48 -04:00
func loadFormatXLAll ( storageDisks [ ] StorageAPI ) ( [ ] * formatXLV3 , [ ] error ) {
2016-06-02 19:34:15 -04:00
// Initialize sync waitgroup.
var wg = & sync . WaitGroup { }
// Initialize list of errors.
2018-04-04 00:58:48 -04:00
var sErrs = make ( [ ] error , len ( storageDisks ) )
2016-06-02 19:34:15 -04:00
// Initialize format configs.
2018-04-04 00:58:48 -04:00
var formats = make ( [ ] * formatXLV3 , len ( storageDisks ) )
2016-06-02 19:34:15 -04:00
2018-01-22 17:54:55 -05:00
// Load format from each disk in parallel
2018-04-04 00:58:48 -04:00
for index , disk := range storageDisks {
2016-07-10 17:38:15 -04:00
if disk == nil {
sErrs [ index ] = errDiskNotFound
continue
}
2016-06-02 19:34:15 -04:00
wg . Add ( 1 )
2018-01-22 17:54:55 -05:00
// Launch go-routine per disk.
2016-06-02 19:34:15 -04:00
go func ( index int , disk StorageAPI ) {
defer wg . Done ( )
2018-04-04 00:58:48 -04:00
2018-02-15 20:45:57 -05:00
format , lErr := loadFormatXL ( disk )
2016-06-02 19:34:15 -04:00
if lErr != nil {
sErrs [ index ] = lErr
return
}
2018-01-08 17:30:55 -05:00
formats [ index ] = format
2016-06-02 19:34:15 -04:00
} ( index , disk )
}
2018-01-22 17:54:55 -05:00
// Wait for all go-routines to finish.
2016-06-02 19:34:15 -04:00
wg . Wait ( )
// Return all formats and nil
2018-01-08 17:30:55 -05:00
return formats , sErrs
2016-06-02 19:34:15 -04:00
}
2018-03-15 16:55:23 -04:00
func saveFormatXL ( disk StorageAPI , format interface { } ) error {
2018-02-15 20:45:57 -05:00
// Marshal and write to disk.
formatBytes , err := json . Marshal ( format )
if err != nil {
return err
2017-08-03 07:37:02 -04:00
}
2018-02-15 20:45:57 -05:00
// Purge any existing temporary file, okay to ignore errors here.
2018-04-03 01:18:06 -04:00
defer disk . DeleteFile ( minioMetaBucket , formatConfigFileTmp )
2017-08-03 07:37:02 -04:00
2018-02-15 20:45:57 -05:00
// Append file `format.json.tmp`.
if err = disk . AppendFile ( minioMetaBucket , formatConfigFileTmp , formatBytes ) ; err != nil {
return err
2017-08-03 07:37:02 -04:00
}
2018-02-15 20:45:57 -05:00
// Rename file `format.json.tmp` --> `format.json`.
return disk . RenameFile ( minioMetaBucket , formatConfigFileTmp , minioMetaBucket , formatConfigFile )
2016-05-20 05:22:22 -04:00
}
2018-02-15 20:45:57 -05:00
// loadFormatXL - loads format.json from disk.
2018-03-15 16:55:23 -04:00
func loadFormatXL ( disk StorageAPI ) ( format * formatXLV3 , err error ) {
2016-06-25 17:51:06 -04:00
buf , err := disk . ReadAll ( minioMetaBucket , formatConfigFile )
if err != nil {
2016-05-20 05:22:22 -04:00
// 'file not found' and 'volume not found' as
// same. 'volume not found' usually means its a fresh disk.
if err == errFileNotFound || err == errVolumeNotFound {
var vols [ ] VolInfo
vols , err = disk . ListVols ( )
if err != nil {
return nil , err
}
2018-01-22 17:54:55 -05:00
if len ( vols ) > 1 || ( len ( vols ) == 1 &&
2018-02-15 20:45:57 -05:00
vols [ 0 ] . Name != minioMetaBucket &&
vols [ 0 ] . Name != "lost+found" ) {
2018-01-22 17:54:55 -05:00
// 'format.json' not found, but we
// found user data.
2016-05-20 05:22:22 -04:00
return nil , errCorruptedFormat
}
// No other data found, its a fresh disk.
return nil , errUnformattedDisk
}
2016-05-07 03:59:43 -04:00
return nil , err
2016-05-04 15:18:20 -04:00
}
2016-06-24 05:06:23 -04:00
// Try to decode format json into formatConfigV1 struct.
2018-03-15 16:55:23 -04:00
format = & formatXLV3 { }
2016-06-25 17:51:06 -04:00
if err = json . Unmarshal ( buf , format ) ; err != nil {
2016-05-07 03:59:43 -04:00
return nil , err
2016-05-04 15:18:20 -04:00
}
2016-06-24 05:06:23 -04:00
// Success.
2016-05-20 05:22:22 -04:00
return format , nil
}
2018-02-15 20:45:57 -05:00
// Valid formatXL basic versions.
2018-03-15 16:55:23 -04:00
func checkFormatXLValue ( formatXL * formatXLV3 ) error {
2018-02-15 20:45:57 -05:00
// Validate format version and format type.
if formatXL . Version != formatMetaVersionV1 {
return fmt . Errorf ( "Unsupported version of backend format [%s] found" , formatXL . Version )
2016-07-26 06:18:47 -04:00
}
2018-02-15 20:45:57 -05:00
if formatXL . Format != formatBackendXL {
return fmt . Errorf ( "Unsupported backend format [%s] found" , formatXL . Format )
2017-08-03 07:37:02 -04:00
}
2018-03-15 16:55:23 -04:00
if formatXL . XL . Version != formatXLVersionV3 {
2018-02-15 20:45:57 -05:00
return fmt . Errorf ( "Unsupported XL backend format found [%s]" , formatXL . XL . Version )
2018-01-22 17:54:55 -05:00
}
return nil
2017-08-03 07:37:02 -04:00
}
2018-02-15 20:45:57 -05:00
// Check all format values.
2018-03-15 16:55:23 -04:00
func checkFormatXLValues ( formats [ ] * formatXLV3 ) error {
2018-02-20 21:42:09 -05:00
for i , formatXL := range formats {
2018-02-15 20:45:57 -05:00
if formatXL == nil {
continue
}
if err := checkFormatXLValue ( formatXL ) ; err != nil {
return err
}
if len ( formats ) != len ( formatXL . XL . Sets ) * len ( formatXL . XL . Sets [ 0 ] ) {
2018-02-20 21:42:09 -05:00
return fmt . Errorf ( "%s disk is already being used in another erasure deployment. (Number of disks specified: %d but the number of disks found in the %s disk's format.json: %d)" ,
humanize . Ordinal ( i + 1 ) , len ( formats ) , humanize . Ordinal ( i + 1 ) , len ( formatXL . XL . Sets ) * len ( formatXL . XL . Sets [ 0 ] ) )
2018-02-15 20:45:57 -05:00
}
2017-08-03 07:37:02 -04:00
}
2018-02-15 20:45:57 -05:00
return nil
}
2017-08-03 07:37:02 -04:00
2018-02-15 20:45:57 -05:00
// Get backend XL format in quorum `format.json`.
2018-03-15 16:55:23 -04:00
func getFormatXLInQuorum ( formats [ ] * formatXLV3 ) ( * formatXLV3 , error ) {
2018-02-15 20:45:57 -05:00
formatHashes := make ( [ ] string , len ( formats ) )
for i , format := range formats {
if format == nil {
2018-01-22 17:54:55 -05:00
continue
}
2018-02-15 20:45:57 -05:00
h := sha256 . New ( )
for _ , set := range format . XL . Sets {
for _ , diskID := range set {
h . Write ( [ ] byte ( diskID ) )
2016-06-22 20:18:31 -04:00
}
2016-06-01 19:15:56 -04:00
}
2018-02-15 20:45:57 -05:00
formatHashes [ i ] = hex . EncodeToString ( h . Sum ( nil ) )
2016-06-01 19:15:56 -04:00
}
2016-07-26 06:18:47 -04:00
2018-02-15 20:45:57 -05:00
formatCountMap := make ( map [ string ] int )
for _ , hash := range formatHashes {
if hash == "" {
continue
}
formatCountMap [ hash ] ++
}
2016-06-01 19:15:56 -04:00
2018-02-15 20:45:57 -05:00
maxHash := ""
maxCount := 0
for hash , count := range formatCountMap {
if count > maxCount {
maxCount = count
maxHash = hash
2016-07-28 19:49:59 -04:00
}
2018-02-15 20:45:57 -05:00
}
if maxCount < len ( formats ) / 2 {
return nil , errXLReadQuorum
}
for i , hash := range formatHashes {
if hash == maxHash {
format := * formats [ i ]
format . XL . This = ""
return & format , nil
2016-07-28 19:49:59 -04:00
}
}
2018-02-15 20:45:57 -05:00
return nil , errXLReadQuorum
2016-07-28 19:49:59 -04:00
}
2018-03-15 16:55:23 -04:00
func formatXLV3Check ( reference * formatXLV3 , format * formatXLV3 ) error {
2018-02-15 20:45:57 -05:00
tmpFormat := * format
this := tmpFormat . XL . This
tmpFormat . XL . This = ""
if len ( reference . XL . Sets ) != len ( format . XL . Sets ) {
return fmt . Errorf ( "Expected number of sets %d, got %d" , len ( reference . XL . Sets ) , len ( format . XL . Sets ) )
}
2017-08-03 07:37:02 -04:00
2018-02-15 20:45:57 -05:00
// Make sure that the sets match.
for i := range reference . XL . Sets {
if len ( reference . XL . Sets [ i ] ) != len ( format . XL . Sets [ i ] ) {
return fmt . Errorf ( "Each set should be of same size, expected %d got %d" ,
len ( reference . XL . Sets [ i ] ) , len ( format . XL . Sets [ i ] ) )
2016-07-28 19:49:59 -04:00
}
2018-02-15 20:45:57 -05:00
for j := range reference . XL . Sets [ i ] {
if reference . XL . Sets [ i ] [ j ] != format . XL . Sets [ i ] [ j ] {
return fmt . Errorf ( "UUID on positions %d:%d do not match with, expected %s got %s" ,
i , j , reference . XL . Sets [ i ] [ j ] , format . XL . Sets [ i ] [ j ] )
2016-07-28 19:49:59 -04:00
}
}
2018-02-15 20:45:57 -05:00
}
// Make sure that the diskID is found in the set.
for i := 0 ; i < len ( tmpFormat . XL . Sets ) ; i ++ {
for j := 0 ; j < len ( tmpFormat . XL . Sets [ i ] ) ; j ++ {
if this == tmpFormat . XL . Sets [ i ] [ j ] {
return nil
2016-07-28 19:49:59 -04:00
}
}
}
2018-02-15 20:45:57 -05:00
return fmt . Errorf ( "Disk ID %s not found in any disk sets %s" , this , format . XL . Sets )
2016-07-28 19:49:59 -04:00
}
2018-02-15 20:45:57 -05:00
// saveFormatXLAll - populates `format.json` on disks in its order.
2018-04-05 18:04:40 -04:00
func saveFormatXLAll ( ctx context . Context , storageDisks [ ] StorageAPI , formats [ ] * formatXLV3 ) error {
2018-02-15 20:45:57 -05:00
var errs = make ( [ ] error , len ( storageDisks ) )
2016-07-28 19:49:59 -04:00
2018-02-15 20:45:57 -05:00
var wg = & sync . WaitGroup { }
2016-07-28 19:49:59 -04:00
2018-02-15 20:45:57 -05:00
// Write `format.json` to all disks.
for index , disk := range storageDisks {
if formats [ index ] == nil || disk == nil {
errs [ index ] = errDiskNotFound
continue
2016-07-28 19:49:59 -04:00
}
2018-02-15 20:45:57 -05:00
wg . Add ( 1 )
2018-03-15 16:55:23 -04:00
go func ( index int , disk StorageAPI , format * formatXLV3 ) {
2018-02-15 20:45:57 -05:00
defer wg . Done ( )
errs [ index ] = saveFormatXL ( disk , format )
} ( index , disk , formats [ index ] )
2016-07-28 19:49:59 -04:00
}
2018-02-15 20:45:57 -05:00
// Wait for the routines to finish.
wg . Wait ( )
2016-07-28 19:49:59 -04:00
2018-04-04 00:58:48 -04:00
writeQuorum := len ( storageDisks ) / 2 + 1
2018-04-05 18:04:40 -04:00
return reduceWriteQuorumErrs ( ctx , errs , nil , writeQuorum )
2018-02-15 20:45:57 -05:00
}
2018-04-04 00:58:48 -04:00
// relinquishes the underlying connection for all storage disks.
func closeStorageDisks ( storageDisks [ ] StorageAPI ) {
for _ , disk := range storageDisks {
if disk == nil {
continue
}
disk . Close ( )
}
}
2018-02-15 20:45:57 -05:00
// Initialize storage disks based on input arguments.
func initStorageDisks ( endpoints EndpointList ) ( [ ] StorageAPI , error ) {
// Bootstrap disks.
storageDisks := make ( [ ] StorageAPI , len ( endpoints ) )
for index , endpoint := range endpoints {
storage , err := newStorageAPI ( endpoint )
if err != nil && err != errDiskNotFound {
2016-05-20 05:22:22 -04:00
return nil , err
}
2018-02-15 20:45:57 -05:00
storageDisks [ index ] = storage
2016-05-07 03:59:43 -04:00
}
2018-02-15 20:45:57 -05:00
return storageDisks , nil
}
2016-06-01 19:43:31 -04:00
2018-03-19 12:13:00 -04:00
// formatXLV3ThisEmpty - find out if '.This' field is empty
// in any of the input `formats`, if yes return true.
func formatXLV3ThisEmpty ( formats [ ] * formatXLV3 ) bool {
for _ , format := range formats {
if format == nil {
continue
}
// NOTE: This code is specifically needed when migrating version
// V1 to V2 to V3, in a scenario such as this we only need to handle
// single sets since we never used to support multiple sets in releases
// with V1 format version.
if len ( format . XL . Sets ) > 1 {
continue
}
if format . XL . This == "" {
return true
}
}
return false
}
// fixFormatXLV3 - fix format XL configuration on all disks.
2018-04-04 00:58:48 -04:00
func fixFormatXLV3 ( storageDisks [ ] StorageAPI , endpoints EndpointList , formats [ ] * formatXLV3 ) error {
2018-03-19 12:13:00 -04:00
for i , format := range formats {
if format == nil || ! endpoints [ i ] . IsLocal {
continue
}
// NOTE: This code is specifically needed when migrating version
// V1 to V2 to V3, in a scenario such as this we only need to handle
// single sets since we never used to support multiple sets in releases
// with V1 format version.
if len ( format . XL . Sets ) > 1 {
continue
}
if format . XL . This == "" {
formats [ i ] . XL . This = format . XL . Sets [ 0 ] [ i ]
2018-04-04 00:58:48 -04:00
if err := saveFormatXL ( storageDisks [ i ] , formats [ i ] ) ; err != nil {
2018-03-19 12:13:00 -04:00
return err
}
}
}
return nil
}
2018-02-15 20:45:57 -05:00
// initFormatXL - save XL format configuration on all disks.
2018-04-05 18:04:40 -04:00
func initFormatXL ( ctx context . Context , storageDisks [ ] StorageAPI , setCount , disksPerSet int ) ( format * formatXLV3 , err error ) {
2018-03-15 16:55:23 -04:00
format = newFormatXLV3 ( setCount , disksPerSet )
2018-04-04 00:58:48 -04:00
formats := make ( [ ] * formatXLV3 , len ( storageDisks ) )
2016-05-04 15:18:20 -04:00
2018-02-15 20:45:57 -05:00
for i := 0 ; i < setCount ; i ++ {
for j := 0 ; j < disksPerSet ; j ++ {
newFormat := * format
newFormat . XL . This = format . XL . Sets [ i ] [ j ]
formats [ i * disksPerSet + j ] = & newFormat
}
2016-05-04 15:18:20 -04:00
}
2018-02-15 20:45:57 -05:00
// Initialize meta volume, if volume already exists ignores it.
2018-04-04 00:58:48 -04:00
if err = initFormatXLMetaVolume ( storageDisks , formats ) ; err != nil {
2018-02-15 20:45:57 -05:00
return format , fmt . Errorf ( "Unable to initialize '.minio.sys' meta volume, %s" , err )
2017-04-18 13:35:17 -04:00
}
2018-02-15 20:45:57 -05:00
// Save formats `format.json` across all disks.
2018-04-05 18:04:40 -04:00
if err = saveFormatXLAll ( ctx , storageDisks , formats ) ; err != nil {
2018-02-15 20:45:57 -05:00
return nil , err
2017-04-18 13:35:17 -04:00
}
2018-02-15 20:45:57 -05:00
return format , nil
2017-04-18 13:35:17 -04:00
}
2018-02-15 20:45:57 -05:00
// Make XL backend meta volumes.
func makeFormatXLMetaVolumes ( disk StorageAPI ) error {
// Attempt to create `.minio.sys`.
if err := disk . MakeVol ( minioMetaBucket ) ; err != nil {
2018-04-10 12:36:37 -04:00
if ! IsErrIgnored ( err , initMetaVolIgnoredErrs ... ) {
2018-02-15 20:45:57 -05:00
return err
2016-05-20 05:22:22 -04:00
}
2018-02-15 20:45:57 -05:00
}
if err := disk . MakeVol ( minioMetaTmpBucket ) ; err != nil {
2018-04-10 12:36:37 -04:00
if ! IsErrIgnored ( err , initMetaVolIgnoredErrs ... ) {
2018-02-15 20:45:57 -05:00
return err
2016-05-20 05:22:22 -04:00
}
2018-02-15 20:45:57 -05:00
}
if err := disk . MakeVol ( minioMetaMultipartBucket ) ; err != nil {
2018-04-10 12:36:37 -04:00
if ! IsErrIgnored ( err , initMetaVolIgnoredErrs ... ) {
2018-02-15 20:45:57 -05:00
return err
2016-05-20 05:22:22 -04:00
}
2016-05-04 15:18:20 -04:00
}
2018-02-15 20:45:57 -05:00
return nil
2016-12-11 18:18:55 -05:00
}
2018-02-15 20:45:57 -05:00
var initMetaVolIgnoredErrs = append ( baseIgnoredErrs , errVolumeExists )
// Initializes meta volume on all input storage disks.
2018-04-04 00:58:48 -04:00
func initFormatXLMetaVolume ( storageDisks [ ] StorageAPI , formats [ ] * formatXLV3 ) error {
2018-02-15 20:45:57 -05:00
// This happens for the first time, but keep this here since this
// is the only place where it can be made expensive optimizing all
// other calls. Create minio meta volume, if it doesn't exist yet.
2016-06-22 20:18:31 -04:00
var wg = & sync . WaitGroup { }
2018-02-15 20:45:57 -05:00
// Initialize errs to collect errors inside go-routine.
var errs = make ( [ ] error , len ( storageDisks ) )
// Initialize all disks in parallel.
2016-05-20 05:22:22 -04:00
for index , disk := range storageDisks {
2018-02-15 20:45:57 -05:00
if formats [ index ] == nil || disk == nil {
// Ignore create meta volume on disks which are not found.
2016-06-22 20:18:31 -04:00
continue
2016-05-20 05:22:22 -04:00
}
2016-06-22 20:18:31 -04:00
wg . Add ( 1 )
2018-02-15 20:45:57 -05:00
go func ( index int , disk StorageAPI ) {
// Indicate this wait group is done.
2016-06-22 20:18:31 -04:00
defer wg . Done ( )
2018-02-15 20:45:57 -05:00
errs [ index ] = makeFormatXLMetaVolumes ( disk )
} ( index , disk )
2016-06-22 20:18:31 -04:00
}
2018-02-15 20:45:57 -05:00
// Wait for all cleanup to finish.
2016-06-22 20:18:31 -04:00
wg . Wait ( )
2018-02-15 20:45:57 -05:00
// Return upon first error.
2016-06-22 20:18:31 -04:00
for _ , err := range errs {
2018-02-15 20:45:57 -05:00
if err == nil {
continue
2016-05-20 05:22:22 -04:00
}
2018-02-15 20:45:57 -05:00
return toObjectErr ( err , minioMetaBucket )
2016-06-22 20:18:31 -04:00
}
2018-02-15 20:45:57 -05:00
// Return success here.
2016-06-22 20:18:31 -04:00
return nil
}
2018-02-15 20:45:57 -05:00
// Get all UUIDs which are present in reference format should
// be present in the list of formats provided, those are considered
// as online UUIDs.
2018-03-15 16:55:23 -04:00
func getOnlineUUIDs ( refFormat * formatXLV3 , formats [ ] * formatXLV3 ) ( onlineUUIDs [ ] string ) {
2018-02-15 20:45:57 -05:00
for _ , format := range formats {
if format == nil {
continue
}
for _ , set := range refFormat . XL . Sets {
for _ , uuid := range set {
if format . XL . This == uuid {
onlineUUIDs = append ( onlineUUIDs , uuid )
}
}
}
2016-05-07 03:59:43 -04:00
}
2018-02-15 20:45:57 -05:00
return onlineUUIDs
}
2016-06-22 20:18:31 -04:00
2018-02-15 20:45:57 -05:00
// Look for all UUIDs which are not present in reference format
// but are present in the onlineUUIDs list, construct of list such
// offline UUIDs.
2018-03-15 16:55:23 -04:00
func getOfflineUUIDs ( refFormat * formatXLV3 , formats [ ] * formatXLV3 ) ( offlineUUIDs [ ] string ) {
2018-02-15 20:45:57 -05:00
onlineUUIDs := getOnlineUUIDs ( refFormat , formats )
for i , set := range refFormat . XL . Sets {
for j , uuid := range set {
var found bool
for _ , onlineUUID := range onlineUUIDs {
if refFormat . XL . Sets [ i ] [ j ] == onlineUUID {
found = true
}
}
if ! found {
offlineUUIDs = append ( offlineUUIDs , uuid )
}
}
2016-05-04 15:18:20 -04:00
}
2018-02-15 20:45:57 -05:00
return offlineUUIDs
2018-01-08 17:30:55 -05:00
}
2018-02-15 20:45:57 -05:00
// Mark all UUIDs that are offline.
2018-03-15 16:55:23 -04:00
func markUUIDsOffline ( refFormat * formatXLV3 , formats [ ] * formatXLV3 ) {
2018-02-15 20:45:57 -05:00
offlineUUIDs := getOfflineUUIDs ( refFormat , formats )
for i , set := range refFormat . XL . Sets {
for j := range set {
for _ , offlineUUID := range offlineUUIDs {
if refFormat . XL . Sets [ i ] [ j ] == offlineUUID {
refFormat . XL . Sets [ i ] [ j ] = offlineDiskUUID
}
}
}
2016-08-30 22:22:27 -04:00
}
2018-02-15 20:45:57 -05:00
}
2016-08-30 22:22:27 -04:00
2018-02-15 20:45:57 -05:00
// Initialize a new set of set formats which will be written to all disks.
2018-03-15 16:55:23 -04:00
func newHealFormatSets ( refFormat * formatXLV3 , setCount , disksPerSet int , formats [ ] * formatXLV3 , errs [ ] error ) [ ] [ ] * formatXLV3 {
newFormats := make ( [ ] [ ] * formatXLV3 , setCount )
2018-02-15 20:45:57 -05:00
for i := range refFormat . XL . Sets {
2018-03-15 16:55:23 -04:00
newFormats [ i ] = make ( [ ] * formatXLV3 , disksPerSet )
2018-02-15 20:45:57 -05:00
}
for i := range refFormat . XL . Sets {
for j := range refFormat . XL . Sets [ i ] {
if errs [ i * disksPerSet + j ] == errUnformattedDisk || errs [ i * disksPerSet + j ] == nil {
2018-03-15 16:55:23 -04:00
newFormats [ i ] [ j ] = & formatXLV3 { }
2018-02-15 20:45:57 -05:00
newFormats [ i ] [ j ] . Version = refFormat . Version
newFormats [ i ] [ j ] . Format = refFormat . Format
newFormats [ i ] [ j ] . XL . Version = refFormat . XL . Version
newFormats [ i ] [ j ] . XL . DistributionAlgo = refFormat . XL . DistributionAlgo
}
if errs [ i * disksPerSet + j ] == errUnformattedDisk {
newFormats [ i ] [ j ] . XL . This = ""
newFormats [ i ] [ j ] . XL . Sets = nil
continue
}
if errs [ i * disksPerSet + j ] == nil {
newFormats [ i ] [ j ] . XL . This = formats [ i * disksPerSet + j ] . XL . This
newFormats [ i ] [ j ] . XL . Sets = nil
}
}
}
return newFormats
2016-05-04 15:18:20 -04:00
}