| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-08-13 12:25:34 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2015-2019 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08: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-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2018-11-13 07:07:16 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | func handleSignals() { | 
					
						
							|  |  |  | 	// Custom exit function
 | 
					
						
							| 
									
										
										
										
											2019-08-13 12:25:34 +08:00
										 |  |  | 	exit := func(success bool) { | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		// If global profiler is set stop before we exit.
 | 
					
						
							| 
									
										
										
										
											2020-01-11 09:19:58 +08:00
										 |  |  | 		globalProfilerMu.Lock() | 
					
						
							|  |  |  | 		defer globalProfilerMu.Unlock() | 
					
						
							| 
									
										
										
										
											2020-01-22 07:49:25 +08:00
										 |  |  | 		for _, p := range globalProfiler { | 
					
						
							|  |  |  | 			p.Stop() | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-13 12:25:34 +08:00
										 |  |  | 		if success { | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 			os.Exit(0) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		os.Exit(1) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 	stopProcess := func() bool { | 
					
						
							|  |  |  | 		var err, oerr error | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-16 04:03:41 +08:00
										 |  |  | 		if globalNotificationSys != nil { | 
					
						
							|  |  |  | 			globalNotificationSys.RemoveAllRemoteTargets() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-01 03:30:15 +08:00
										 |  |  | 		// Stop watching for any certificate changes.
 | 
					
						
							|  |  |  | 		globalTLSCerts.Stop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-03 07:54:26 +08:00
										 |  |  | 		if httpServer := newHTTPServerFn(); httpServer != nil { | 
					
						
							|  |  |  | 			err = httpServer.Shutdown() | 
					
						
							|  |  |  | 			logger.LogIf(context.Background(), err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 06:33:14 +08:00
										 |  |  | 		// send signal to various go-routines that they need to quit.
 | 
					
						
							|  |  |  | 		close(GlobalServiceDoneCh) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 01:27:23 +08:00
										 |  |  | 		if objAPI := newObjectLayerWithoutSafeModeFn(); objAPI != nil { | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 			oerr = objAPI.Shutdown(context.Background()) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(context.Background(), oerr) | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		return (err == nil && oerr == nil) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							|  |  |  | 		case err := <-globalHTTPServerErrorCh: | 
					
						
							| 
									
										
										
										
											2019-11-10 01:27:23 +08:00
										 |  |  | 			if objAPI := newObjectLayerWithoutSafeModeFn(); objAPI != nil { | 
					
						
							| 
									
										
										
										
											2019-08-13 12:25:34 +08:00
										 |  |  | 				objAPI.Shutdown(context.Background()) | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-08-13 12:25:34 +08:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				logger.Fatal(err, "Unable to start MinIO server") | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			exit(true) | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		case osSignal := <-globalOSSignalCh: | 
					
						
							| 
									
										
										
										
											2018-11-13 07:07:16 +08:00
										 |  |  | 			logger.Info("Exiting on signal: %s", strings.ToUpper(osSignal.String())) | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 			exit(stopProcess()) | 
					
						
							|  |  |  | 		case signal := <-globalServiceSignalCh: | 
					
						
							| 
									
										
										
										
											2019-08-29 06:04:43 +08:00
										 |  |  | 			switch signal { | 
					
						
							|  |  |  | 			case serviceRestart: | 
					
						
							| 
									
										
										
										
											2018-04-11 00:37:14 +08:00
										 |  |  | 				logger.Info("Restarting on service signal") | 
					
						
							| 
									
										
										
										
											2018-06-01 03:30:15 +08:00
										 |  |  | 				stop := stopProcess() | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 				rerr := restartProcess() | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 				logger.LogIf(context.Background(), rerr) | 
					
						
							| 
									
										
										
										
											2018-06-01 03:30:15 +08:00
										 |  |  | 				exit(stop && rerr == nil) | 
					
						
							| 
									
										
										
										
											2019-08-29 06:04:43 +08:00
										 |  |  | 			case serviceStop: | 
					
						
							| 
									
										
										
										
											2018-04-11 00:37:14 +08:00
										 |  |  | 				logger.Info("Stopping on service signal") | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 				exit(stopProcess()) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | } |