| 
									
										
										
										
											2019-09-13 02:06:12 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * MinIO Cloud Storage, (C) 2019 MinIO, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-02-23 05:19:44 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2019-09-13 02:06:12 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-01-26 02:01:27 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2019-09-13 02:06:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 05:19:44 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2019-09-13 05:52:30 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/madmin" | 
					
						
							| 
									
										
										
										
											2019-09-13 02:06:12 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 10:37:09 +08:00
										 |  |  | // getLocalServerProperty - returns madmin.ServerProperties for only the
 | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | // local endpoints from given list of endpoints
 | 
					
						
							| 
									
										
										
										
											2020-12-02 05:50:33 +08:00
										 |  |  | func getLocalServerProperty(endpointServerPools EndpointServerPools, r *http.Request) madmin.ServerProperties { | 
					
						
							| 
									
										
										
										
											2020-12-22 01:35:19 +08:00
										 |  |  | 	var localEndpoints Endpoints | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 	addr := r.Host | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	if globalIsDistErasure { | 
					
						
							| 
									
										
										
										
											2020-12-02 05:50:33 +08:00
										 |  |  | 		addr = GetLocalPeer(endpointServerPools) | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	network := make(map[string]string) | 
					
						
							| 
									
										
										
										
											2020-12-02 05:50:33 +08:00
										 |  |  | 	for _, ep := range endpointServerPools { | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 		for _, endpoint := range ep.Endpoints { | 
					
						
							| 
									
										
										
										
											2020-02-02 09:45:29 +08:00
										 |  |  | 			nodeName := endpoint.Host | 
					
						
							|  |  |  | 			if nodeName == "" { | 
					
						
							|  |  |  | 				nodeName = r.Host | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if endpoint.IsLocal { | 
					
						
							| 
									
										
										
										
											2020-02-02 09:45:29 +08:00
										 |  |  | 				// Only proceed for local endpoints
 | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 				network[nodeName] = string(madmin.ItemOnline) | 
					
						
							| 
									
										
										
										
											2020-12-22 01:35:19 +08:00
										 |  |  | 				localEndpoints = append(localEndpoints, endpoint) | 
					
						
							| 
									
										
										
										
											2020-07-14 00:51:07 +08:00
										 |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			_, present := network[nodeName] | 
					
						
							|  |  |  | 			if !present { | 
					
						
							| 
									
										
										
										
											2021-02-23 05:19:44 +08:00
										 |  |  | 				if err := isServerResolvable(endpoint, 2*time.Second); err == nil { | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 					network[nodeName] = string(madmin.ItemOnline) | 
					
						
							| 
									
										
										
										
											2020-02-02 09:45:29 +08:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 					network[nodeName] = string(madmin.ItemOffline) | 
					
						
							| 
									
										
										
										
											2021-02-23 05:19:44 +08:00
										 |  |  | 					// log once the error
 | 
					
						
							|  |  |  | 					logger.LogOnceIf(context.Background(), err, nodeName) | 
					
						
							| 
									
										
										
										
											2020-02-02 09:45:29 +08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 	props := madmin.ServerProperties{ | 
					
						
							|  |  |  | 		State:    string(madmin.ItemInitializing), | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 		Endpoint: addr, | 
					
						
							| 
									
										
										
										
											2019-12-12 09:56:02 +08:00
										 |  |  | 		Uptime:   UTCNow().Unix() - globalBootTime.Unix(), | 
					
						
							| 
									
										
										
										
											2019-12-12 06:27:03 +08:00
										 |  |  | 		Version:  Version, | 
					
						
							|  |  |  | 		CommitID: CommitID, | 
					
						
							|  |  |  | 		Network:  network, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 	objLayer := newObjectLayerFn() | 
					
						
							|  |  |  | 	if objLayer != nil { | 
					
						
							|  |  |  | 		storageInfo, _ := objLayer.LocalStorageInfo(GlobalContext) | 
					
						
							|  |  |  | 		props.State = string(madmin.ItemOnline) | 
					
						
							|  |  |  | 		props.Disks = storageInfo.Disks | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-02-23 05:19:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-03 09:28:04 +08:00
										 |  |  | 	return props | 
					
						
							| 
									
										
										
										
											2021-01-19 12:35:38 +08:00
										 |  |  | } |