| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 23:52:02 +08:00
										 |  |  | 	"github.com/minio/madmin-go" | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // healTask represents what to heal along with options
 | 
					
						
							| 
									
										
										
										
											2022-08-27 03:52:29 +08:00
										 |  |  | //
 | 
					
						
							|  |  |  | //	path: '/' =>  Heal disk formats along with metadata
 | 
					
						
							|  |  |  | //	path: 'bucket/' or '/bucket/' => Heal bucket
 | 
					
						
							|  |  |  | //	path: 'bucket/object' => Heal object
 | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | type healTask struct { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	bucket    string | 
					
						
							|  |  |  | 	object    string | 
					
						
							|  |  |  | 	versionID string | 
					
						
							|  |  |  | 	opts      madmin.HealOpts | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 	// Healing response will be sent here
 | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 	respCh chan healResult | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // healResult represents a healing result with a possible error
 | 
					
						
							|  |  |  | type healResult struct { | 
					
						
							|  |  |  | 	result madmin.HealResultItem | 
					
						
							|  |  |  | 	err    error | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // healRoutine receives heal tasks, to heal buckets, objects and format.json
 | 
					
						
							|  |  |  | type healRoutine struct { | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 	tasks   chan healTask | 
					
						
							|  |  |  | 	workers int | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | func activeListeners() int { | 
					
						
							| 
									
										
										
										
											2020-07-23 04:16:55 +08:00
										 |  |  | 	// Bucket notification and http trace are not costly, it is okay to ignore them
 | 
					
						
							|  |  |  | 	// while counting the number of concurrent connections
 | 
					
						
							| 
									
										
										
										
											2022-10-29 01:55:42 +08:00
										 |  |  | 	return int(globalHTTPListen.Subscribers()) + int(globalTrace.Subscribers()) | 
					
						
							| 
									
										
										
										
											2021-08-27 05:06:04 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-07-23 04:16:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 05:06:04 +08:00
										 |  |  | func waitForLowHTTPReq() { | 
					
						
							|  |  |  | 	var currentIO func() int | 
					
						
							| 
									
										
										
										
											2020-02-13 22:36:23 +08:00
										 |  |  | 	if httpServer := newHTTPServerFn(); httpServer != nil { | 
					
						
							| 
									
										
										
										
											2021-08-27 05:06:04 +08:00
										 |  |  | 		currentIO = httpServer.GetRequestCount | 
					
						
							| 
									
										
										
										
											2020-02-13 22:36:23 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-27 05:06:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 	globalHealConfig.Wait(currentIO, activeListeners) | 
					
						
							| 
									
										
										
										
											2020-02-13 22:36:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | func initBackgroundHealing(ctx context.Context, objAPI ObjectLayer) { | 
					
						
							|  |  |  | 	// Run the background healer
 | 
					
						
							|  |  |  | 	globalBackgroundHealRoutine = newHealRoutine() | 
					
						
							|  |  |  | 	for i := 0; i < globalBackgroundHealRoutine.workers; i++ { | 
					
						
							|  |  |  | 		go globalBackgroundHealRoutine.AddWorker(ctx, objAPI) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	globalBackgroundHealState.LaunchNewHealSequence(newBgHealSequence(), objAPI) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | // Wait for heal requests and process them
 | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | func (h *healRoutine) AddWorker(ctx context.Context, objAPI ObjectLayer) { | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							|  |  |  | 		case task, ok := <-h.tasks: | 
					
						
							|  |  |  | 			if !ok { | 
					
						
							| 
									
										
										
										
											2021-01-25 23:53:12 +08:00
										 |  |  | 				return | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-01-10 18:35:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 			var res madmin.HealResultItem | 
					
						
							|  |  |  | 			var err error | 
					
						
							| 
									
										
										
										
											2021-01-25 23:53:12 +08:00
										 |  |  | 			switch task.bucket { | 
					
						
							|  |  |  | 			case nopHeal: | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 				task.respCh <- healResult{err: errSkipFile} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2021-01-25 23:53:12 +08:00
										 |  |  | 			case SlashSeparator: | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 				res, err = healDiskFormat(ctx, objAPI, task.opts) | 
					
						
							| 
									
										
										
										
											2021-01-25 23:53:12 +08:00
										 |  |  | 			default: | 
					
						
							|  |  |  | 				if task.object == "" { | 
					
						
							|  |  |  | 					res, err = objAPI.HealBucket(ctx, task.bucket, task.opts) | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					res, err = objAPI.HealObject(ctx, task.bucket, task.object, task.versionID, task.opts) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-08-26 08:46:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 			task.respCh <- healResult{result: res, err: err} | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 		case <-ctx.Done(): | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-30 04:07:26 +08:00
										 |  |  | func newHealRoutine() *healRoutine { | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 	workers := runtime.GOMAXPROCS(0) / 2 | 
					
						
							|  |  |  | 	if workers == 0 { | 
					
						
							|  |  |  | 		workers = 4 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 	return &healRoutine{ | 
					
						
							| 
									
										
										
										
											2021-08-27 11:32:58 +08:00
										 |  |  | 		tasks:   make(chan healTask), | 
					
						
							|  |  |  | 		workers: workers, | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | // healDiskFormat - heals format.json, return value indicates if a
 | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | // failure error occurred.
 | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | func healDiskFormat(ctx context.Context, objAPI ObjectLayer, opts madmin.HealOpts) (madmin.HealResultItem, error) { | 
					
						
							|  |  |  | 	res, err := objAPI.HealFormat(ctx, opts.DryRun) | 
					
						
							| 
									
										
										
										
											2019-06-09 13:14:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// return any error, ignore error returned when disks have
 | 
					
						
							|  |  |  | 	// already healed.
 | 
					
						
							|  |  |  | 	if err != nil && err != errNoHealRequired { | 
					
						
							|  |  |  | 		return madmin.HealResultItem{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return res, nil | 
					
						
							|  |  |  | } |