123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- package main
- import (
- "context"
- "fmt"
- "io/ioutil"
- "net/url"
- "strings"
- "github.com/crowdsecurity/crowdsec/pkg/apiclient"
- "github.com/crowdsecurity/crowdsec/pkg/csconfig"
- "github.com/crowdsecurity/crowdsec/pkg/cwhub"
- "github.com/crowdsecurity/crowdsec/pkg/cwversion"
- "github.com/crowdsecurity/crowdsec/pkg/models"
- "github.com/go-openapi/strfmt"
- log "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "gopkg.in/yaml.v2"
- )
- var LAPIURLPrefix string = "v1"
- var lapiUser string
- func NewLapiCmd() *cobra.Command {
- var cmdLapi = &cobra.Command{
- Use: "lapi [action]",
- Short: "Manage interaction with Local API (LAPI)",
- Args: cobra.MinimumNArgs(1),
- DisableAutoGenTag: true,
- PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
- if err := csConfig.LoadAPIClient(); err != nil {
- return fmt.Errorf("loading api client: %s", err.Error())
- }
- if csConfig.API.Client == nil {
- log.Fatalln("There is no API->client configuration")
- }
- if csConfig.API.Client.Credentials == nil {
- log.Fatalf("no configuration for Local API (LAPI) in '%s'", *csConfig.FilePath)
- }
- return nil
- },
- }
- var cmdLapiRegister = &cobra.Command{
- Use: "register",
- Short: "Register a machine to Local API (LAPI)",
- Long: `Register you machine to the Local API (LAPI).
- Keep in mind the machine needs to be validated by an administrator on LAPI side to be effective.`,
- Args: cobra.MinimumNArgs(0),
- DisableAutoGenTag: true,
- Run: func(cmd *cobra.Command, args []string) {
- var err error
- if lapiUser == "" {
- lapiUser, err = generateID()
- if err != nil {
- log.Fatalf("unable to generate machine id: %s", err)
- }
- }
- password := strfmt.Password(generatePassword(passwordLength))
- if apiURL == "" {
- if csConfig.API.Client != nil && csConfig.API.Client.Credentials != nil && csConfig.API.Client.Credentials.URL != "" {
- apiURL = csConfig.API.Client.Credentials.URL
- } else {
- log.Fatalf("No Local API URL. Please provide it in your configuration or with the -u parameter")
- }
- }
- /*URL needs to end with /, but user doesn't care*/
- if !strings.HasSuffix(apiURL, "/") {
- apiURL += "/"
- }
- /*URL needs to start with http://, but user doesn't care*/
- if !strings.HasPrefix(apiURL, "http://") && !strings.HasPrefix(apiURL, "https://") {
- apiURL = "http://" + apiURL
- }
- apiurl, err := url.Parse(apiURL)
- if err != nil {
- log.Fatalf("parsing api url: %s", err)
- }
- _, err = apiclient.RegisterClient(&apiclient.Config{
- MachineID: lapiUser,
- Password: password,
- UserAgent: fmt.Sprintf("crowdsec/%s", cwversion.VersionStr()),
- URL: apiurl,
- VersionPrefix: LAPIURLPrefix,
- }, nil)
- if err != nil {
- log.Fatalf("api client register: %s", err)
- }
- log.Printf("Successfully registered to Local API (LAPI)")
- var dumpFile string
- if outputFile != "" {
- dumpFile = outputFile
- } else if csConfig.API.Client.CredentialsFilePath != "" {
- dumpFile = csConfig.API.Client.CredentialsFilePath
- } else {
- dumpFile = ""
- }
- apiCfg := csconfig.ApiCredentialsCfg{
- Login: lapiUser,
- Password: password.String(),
- URL: apiURL,
- }
- apiConfigDump, err := yaml.Marshal(apiCfg)
- if err != nil {
- log.Fatalf("unable to marshal api credentials: %s", err)
- }
- if dumpFile != "" {
- err = ioutil.WriteFile(dumpFile, apiConfigDump, 0644)
- if err != nil {
- log.Fatalf("write api credentials in '%s' failed: %s", dumpFile, err)
- }
- log.Printf("Local API credentials dumped to '%s'", dumpFile)
- } else {
- fmt.Printf("%s\n", string(apiConfigDump))
- }
- log.Warningf(ReloadMessage())
- },
- }
- cmdLapiRegister.Flags().StringVarP(&apiURL, "url", "u", "", "URL of the API (ie. http://127.0.0.1)")
- cmdLapiRegister.Flags().StringVarP(&outputFile, "file", "f", "", "output file destination")
- cmdLapiRegister.Flags().StringVar(&lapiUser, "machine", "", "Name of the machine to register with")
- cmdLapi.AddCommand(cmdLapiRegister)
- var cmdLapiStatus = &cobra.Command{
- Use: "status",
- Short: "Check authentication to Local API (LAPI)",
- Args: cobra.MinimumNArgs(0),
- DisableAutoGenTag: true,
- Run: func(cmd *cobra.Command, args []string) {
- var err error
- password := strfmt.Password(csConfig.API.Client.Credentials.Password)
- apiurl, err := url.Parse(csConfig.API.Client.Credentials.URL)
- login := csConfig.API.Client.Credentials.Login
- if err != nil {
- log.Fatalf("parsing api url ('%s'): %s", apiurl, err)
- }
- if err := csConfig.LoadHub(); err != nil {
- log.Fatalf(err.Error())
- }
- if err := cwhub.GetHubIdx(csConfig.Hub); err != nil {
- log.Fatalf("Failed to load hub index : %s", err)
- log.Infoln("Run 'sudo cscli hub update' to get the hub index")
- }
- scenarios, err := cwhub.GetUpstreamInstalledScenariosAsString()
- if err != nil {
- log.Fatalf("failed to get scenarios : %s", err.Error())
- }
- Client, err = apiclient.NewDefaultClient(apiurl,
- LAPIURLPrefix,
- fmt.Sprintf("crowdsec/%s", cwversion.VersionStr()),
- nil)
- if err != nil {
- log.Fatalf("init default client: %s", err)
- }
- t := models.WatcherAuthRequest{
- MachineID: &login,
- Password: &password,
- Scenarios: scenarios,
- }
- log.Infof("Loaded credentials from %s", csConfig.API.Client.CredentialsFilePath)
- log.Infof("Trying to authenticate with username %s on %s", login, apiurl)
- _, err = Client.Auth.AuthenticateWatcher(context.Background(), t)
- if err != nil {
- log.Fatalf("Failed to authenticate to Local API (LAPI) : %s", err)
- } else {
- log.Infof("You can successfully interact with Local API (LAPI)")
- }
- },
- }
- cmdLapi.AddCommand(cmdLapiStatus)
- return cmdLapi
- }
|