mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
716316f711
Ref #3229 After review with @abperiasamy we decided to remove all the unnecessary options - MINIO_BROWSER (Implemented as a security feature but now deemed obsolete since even if blocking access to MINIO_BROWSER, s3 API port is open) - MINIO_CACHE_EXPIRY (Defaults to 72h) - MINIO_MAXCONN (No one used this option and we don't test this) - MINIO_ENABLE_FSMETA (Enable FSMETA all the time) Remove --ignore-disks option - this option was implemented when XL layer would initialize the backend disks and heal them automatically to disallow XL accidentally using the root partition itself this option was introduced. This behavior has been changed XL no longer automatically initializes `format.json` a HEAL is controlled activity, so ignore-disks is not useful anymore. This change also addresses the problems of our documentation going forward and keeps things simple. This patch brings in reduction of options and defaulting them to a valid known inputs. This patch also serves as a guideline of limiting many ways to do the same thing.
228 lines
6.1 KiB
Go
228 lines
6.1 KiB
Go
/*
|
||
* Minio Cloud Storage, (C) 2015, 2016 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 (
|
||
"errors"
|
||
"fmt"
|
||
"os"
|
||
"sort"
|
||
"strings"
|
||
"time"
|
||
|
||
"github.com/minio/cli"
|
||
"github.com/minio/mc/pkg/console"
|
||
)
|
||
|
||
var (
|
||
// global flags for minio.
|
||
globalFlags = []cli.Flag{
|
||
cli.BoolFlag{
|
||
Name: "help, h",
|
||
Usage: "Show help.",
|
||
},
|
||
cli.StringFlag{
|
||
Name: "config-dir, C",
|
||
Value: mustGetConfigPath(),
|
||
Usage: "Path to configuration directory.",
|
||
},
|
||
cli.BoolFlag{
|
||
Name: "quiet",
|
||
Usage: "Disable startup information.",
|
||
},
|
||
}
|
||
)
|
||
|
||
// Help template for minio.
|
||
var minioHelpTemplate = `NAME:
|
||
{{.Name}} - {{.Usage}}
|
||
|
||
DESCRIPTION:
|
||
{{.Description}}
|
||
|
||
USAGE:
|
||
minio {{if .Flags}}[flags] {{end}}command{{if .Flags}}{{end}} [arguments...]
|
||
|
||
COMMANDS:
|
||
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
|
||
{{end}}{{if .Flags}}
|
||
FLAGS:
|
||
{{range .Flags}}{{.}}
|
||
{{end}}{{end}}
|
||
VERSION:
|
||
` + Version +
|
||
`{{ "\n"}}`
|
||
|
||
// init - check the environment before main starts
|
||
func init() {
|
||
// Check if minio was compiled using a supported version of Golang.
|
||
checkGoVersion()
|
||
}
|
||
|
||
func migrate() {
|
||
// Migrate config file
|
||
err := migrateConfig()
|
||
fatalIf(err, "Config migration failed.")
|
||
|
||
// Migrate other configs here.
|
||
}
|
||
|
||
func enableLoggers() {
|
||
// Enable all loggers here.
|
||
enableConsoleLogger()
|
||
enableFileLogger()
|
||
// Add your logger here.
|
||
}
|
||
|
||
func findClosestCommands(command string) []string {
|
||
var closestCommands []string
|
||
for _, value := range commandsTree.PrefixMatch(command) {
|
||
closestCommands = append(closestCommands, value.(string))
|
||
}
|
||
sort.Strings(closestCommands)
|
||
// Suggest other close commands - allow missed, wrongly added and
|
||
// even transposed characters
|
||
for _, value := range commandsTree.walk(commandsTree.root) {
|
||
if sort.SearchStrings(closestCommands, value.(string)) < len(closestCommands) {
|
||
continue
|
||
}
|
||
// 2 is arbitrary and represents the max
|
||
// allowed number of typed errors
|
||
if DamerauLevenshteinDistance(command, value.(string)) < 2 {
|
||
closestCommands = append(closestCommands, value.(string))
|
||
}
|
||
}
|
||
return closestCommands
|
||
}
|
||
|
||
func registerApp() *cli.App {
|
||
// Register all commands.
|
||
registerCommand(serverCmd)
|
||
registerCommand(versionCmd)
|
||
registerCommand(updateCmd)
|
||
registerCommand(controlCmd)
|
||
|
||
// Set up app.
|
||
app := cli.NewApp()
|
||
app.Name = "Minio"
|
||
app.Author = "Minio.io"
|
||
app.Usage = "Cloud Storage Server."
|
||
app.Description = `Minio is an Amazon S3 compatible object storage server. Use it to store photos, videos, VMs, containers, log files, or any blob of data as objects.`
|
||
app.Flags = globalFlags
|
||
app.Commands = commands
|
||
app.CustomAppHelpTemplate = minioHelpTemplate
|
||
app.CommandNotFound = func(ctx *cli.Context, command string) {
|
||
msg := fmt.Sprintf("‘%s’ is not a minio sub-command. See ‘minio --help’.", command)
|
||
closestCommands := findClosestCommands(command)
|
||
if len(closestCommands) > 0 {
|
||
msg += fmt.Sprintf("\n\nDid you mean one of these?\n")
|
||
for _, cmd := range closestCommands {
|
||
msg += fmt.Sprintf(" ‘%s’\n", cmd)
|
||
}
|
||
}
|
||
console.Fatalln(msg)
|
||
}
|
||
return app
|
||
}
|
||
|
||
// Verify main command syntax.
|
||
func checkMainSyntax(c *cli.Context) {
|
||
configPath, err := getConfigPath()
|
||
if err != nil {
|
||
console.Fatalf("Unable to obtain user's home directory. \nError: %s\n", err)
|
||
}
|
||
if configPath == "" {
|
||
console.Fatalln("Config directory cannot be empty, please specify --config-dir <directoryname>.")
|
||
}
|
||
}
|
||
|
||
// Main main for minio server.
|
||
func Main() {
|
||
app := registerApp()
|
||
app.Before = func(c *cli.Context) error {
|
||
configDir := c.GlobalString("config-dir")
|
||
if configDir == "" {
|
||
fatalIf(errors.New("Config directory is empty"), "Unable to get config file.")
|
||
}
|
||
// Sets new config directory.
|
||
setGlobalConfigPath(configDir)
|
||
|
||
// Valid input arguments to main.
|
||
checkMainSyntax(c)
|
||
|
||
// Migrate any old version of config / state files to newer format.
|
||
migrate()
|
||
|
||
// Initialize config.
|
||
configCreated, err := initConfig()
|
||
fatalIf(err, "Unable to initialize minio config.")
|
||
if configCreated {
|
||
console.Println("Created minio configuration file at " + mustGetConfigPath())
|
||
}
|
||
|
||
// Fetch access keys from environment variables and update the config.
|
||
accessKey := os.Getenv("MINIO_ACCESS_KEY")
|
||
secretKey := os.Getenv("MINIO_SECRET_KEY")
|
||
if accessKey != "" && secretKey != "" {
|
||
// Set new credentials.
|
||
serverConfig.SetCredential(credential{
|
||
AccessKeyID: accessKey,
|
||
SecretAccessKey: secretKey,
|
||
})
|
||
}
|
||
if !isValidAccessKey(serverConfig.GetCredential().AccessKeyID) {
|
||
fatalIf(errInvalidArgument, "Invalid access key. Accept only a string starting with a alphabetic and containing from 5 to 20 characters.")
|
||
}
|
||
if !isValidSecretKey(serverConfig.GetCredential().SecretAccessKey) {
|
||
fatalIf(errInvalidArgument, "Invalid secret key. Accept only a string containing from 8 to 40 characters.")
|
||
}
|
||
|
||
// Enable all loggers by now.
|
||
enableLoggers()
|
||
|
||
// Init the error tracing module.
|
||
initError()
|
||
|
||
// Set global quiet flag.
|
||
globalQuiet = c.Bool("quiet") || c.GlobalBool("quiet")
|
||
|
||
// Do not print update messages, if quiet flag is set.
|
||
if !globalQuiet {
|
||
if strings.HasPrefix(ReleaseTag, "RELEASE.") && c.Args().Get(0) != "update" {
|
||
updateMsg, _, err := getReleaseUpdate(minioUpdateStableURL, 1*time.Second)
|
||
if err != nil {
|
||
// Ignore any errors during getReleaseUpdate(), possibly
|
||
// because of network errors.
|
||
return nil
|
||
}
|
||
if updateMsg.Update {
|
||
console.Println(updateMsg)
|
||
}
|
||
}
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// Start profiler if env is set.
|
||
if profiler := os.Getenv("_MINIO_PROFILER"); profiler != "" {
|
||
globalProfiler = startProfiler(profiler)
|
||
}
|
||
|
||
// Run the app - exit on error.
|
||
app.RunAndExitOnError()
|
||
}
|