2018-10-18 18:01:31 +02:00
|
|
|
// Copyright 2018 Project Harbor Authors
|
2017-04-13 12:54:58 +02: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-04-11 10:43:13 +02:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-03-01 05:02:40 +01:00
|
|
|
"context"
|
2018-08-16 16:31:47 +02:00
|
|
|
"encoding/gob"
|
2016-04-11 10:43:13 +02:00
|
|
|
"fmt"
|
2020-06-15 18:20:18 +02:00
|
|
|
"net/url"
|
2020-01-22 06:00:39 +01:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2020-06-15 18:20:18 +02:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-01-22 06:00:39 +01:00
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
2016-09-13 11:41:32 +02:00
|
|
|
"github.com/astaxie/beego"
|
|
|
|
_ "github.com/astaxie/beego/session/redis"
|
2020-06-15 18:20:18 +02:00
|
|
|
_ "github.com/astaxie/beego/session/redis_sentinel"
|
2018-08-23 09:02:20 +02:00
|
|
|
"github.com/goharbor/harbor/src/common/dao"
|
2020-03-11 07:40:12 +01:00
|
|
|
common_http "github.com/goharbor/harbor/src/common/http"
|
2018-08-23 09:02:20 +02:00
|
|
|
"github.com/goharbor/harbor/src/common/models"
|
2018-09-12 08:38:29 +02:00
|
|
|
"github.com/goharbor/harbor/src/common/utils"
|
2020-03-24 13:45:45 +01:00
|
|
|
_ "github.com/goharbor/harbor/src/controller/event/handler"
|
2018-09-12 08:38:29 +02:00
|
|
|
"github.com/goharbor/harbor/src/core/api"
|
2019-01-11 11:16:50 +01:00
|
|
|
_ "github.com/goharbor/harbor/src/core/auth/authproxy"
|
2018-09-12 08:38:29 +02:00
|
|
|
_ "github.com/goharbor/harbor/src/core/auth/db"
|
|
|
|
_ "github.com/goharbor/harbor/src/core/auth/ldap"
|
2019-09-17 03:52:34 +02:00
|
|
|
_ "github.com/goharbor/harbor/src/core/auth/oidc"
|
2018-09-12 08:38:29 +02:00
|
|
|
_ "github.com/goharbor/harbor/src/core/auth/uaa"
|
|
|
|
"github.com/goharbor/harbor/src/core/config"
|
2019-06-20 13:33:23 +02:00
|
|
|
"github.com/goharbor/harbor/src/core/middlewares"
|
2018-09-12 08:38:29 +02:00
|
|
|
"github.com/goharbor/harbor/src/core/service/token"
|
2020-12-08 10:40:03 +01:00
|
|
|
"github.com/goharbor/harbor/src/lib/cache"
|
|
|
|
_ "github.com/goharbor/harbor/src/lib/cache/memory" // memory cache
|
|
|
|
_ "github.com/goharbor/harbor/src/lib/cache/redis" // redis cache
|
2020-04-02 08:08:52 +02:00
|
|
|
"github.com/goharbor/harbor/src/lib/log"
|
2020-10-18 18:16:02 +02:00
|
|
|
"github.com/goharbor/harbor/src/lib/metric"
|
2021-03-01 05:02:40 +01:00
|
|
|
"github.com/goharbor/harbor/src/lib/orm"
|
2020-03-16 03:20:17 +01:00
|
|
|
"github.com/goharbor/harbor/src/migration"
|
2019-08-07 14:30:26 +02:00
|
|
|
"github.com/goharbor/harbor/src/pkg/notification"
|
2020-02-22 04:05:11 +01:00
|
|
|
_ "github.com/goharbor/harbor/src/pkg/notifier/topic"
|
2019-10-17 06:00:51 +02:00
|
|
|
"github.com/goharbor/harbor/src/pkg/scan"
|
|
|
|
"github.com/goharbor/harbor/src/pkg/scan/dao/scanner"
|
2019-10-29 09:09:54 +01:00
|
|
|
"github.com/goharbor/harbor/src/pkg/version"
|
2019-04-12 16:38:56 +02:00
|
|
|
"github.com/goharbor/harbor/src/replication"
|
2020-01-17 09:46:17 +01:00
|
|
|
"github.com/goharbor/harbor/src/server"
|
2016-04-11 10:43:13 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
adminUserID = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
func updateInitPassword(userID int, password string) error {
|
|
|
|
queryUser := models.User{UserID: userID}
|
|
|
|
user, err := dao.GetUser(queryUser)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Failed to get user, userID: %d %v", userID, err)
|
|
|
|
}
|
|
|
|
if user == nil {
|
2016-11-14 07:46:20 +01:00
|
|
|
return fmt.Errorf("user id: %d does not exist", userID)
|
2016-04-11 10:43:13 +02:00
|
|
|
}
|
|
|
|
if user.Salt == "" {
|
2016-09-13 11:41:32 +02:00
|
|
|
salt := utils.GenerateRandomString()
|
2016-04-11 10:43:13 +02:00
|
|
|
|
|
|
|
user.Salt = salt
|
|
|
|
user.Password = password
|
|
|
|
err = dao.ChangeUserPassword(*user)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Failed to update user encrypted password, userID: %d, err: %v", userID, err)
|
|
|
|
}
|
|
|
|
|
2019-08-06 15:56:18 +02:00
|
|
|
log.Infof("User id: %d updated its encrypted password successfully.", userID)
|
2016-04-11 10:43:13 +02:00
|
|
|
} else {
|
|
|
|
log.Infof("User id: %d already has its encrypted password.", userID)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-22 10:11:37 +02:00
|
|
|
func gracefulShutdown(closing, done chan struct{}) {
|
2019-01-28 09:39:07 +01:00
|
|
|
signals := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(signals, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
|
|
|
|
log.Infof("capture system signal %s, to close \"closing\" channel", <-signals)
|
|
|
|
close(closing)
|
2019-08-22 10:11:37 +02:00
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
log.Infof("Goroutines exited normally")
|
|
|
|
case <-time.After(time.Second * 3):
|
|
|
|
log.Infof("Timeout waiting goroutines to exit")
|
|
|
|
}
|
|
|
|
os.Exit(0)
|
2019-01-28 09:39:07 +01:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:43:13 +02:00
|
|
|
func main() {
|
|
|
|
beego.BConfig.WebConfig.Session.SessionOn = true
|
2019-11-07 06:02:17 +01:00
|
|
|
beego.BConfig.WebConfig.Session.SessionName = config.SessionCookieName
|
2019-08-22 10:11:37 +02:00
|
|
|
|
2020-06-15 18:20:18 +02:00
|
|
|
redisURL := os.Getenv("_REDIS_URL_CORE")
|
2016-07-27 14:12:53 +02:00
|
|
|
if len(redisURL) > 0 {
|
2020-06-15 18:20:18 +02:00
|
|
|
u, err := url.Parse(redisURL)
|
|
|
|
if err != nil {
|
|
|
|
panic("bad _REDIS_URL:" + redisURL)
|
|
|
|
}
|
2018-08-16 16:31:47 +02:00
|
|
|
gob.Register(models.User{})
|
2020-06-15 18:20:18 +02:00
|
|
|
if u.Scheme == "redis+sentinel" {
|
|
|
|
ps := strings.Split(u.Path, "/")
|
|
|
|
if len(ps) < 2 {
|
|
|
|
panic("bad redis sentinel url: no master name")
|
|
|
|
}
|
|
|
|
ss := make([]string, 5)
|
|
|
|
ss[0] = strings.Join(strings.Split(u.Host, ","), ";") // host
|
|
|
|
ss[1] = "100" // pool
|
|
|
|
if u.User != nil {
|
|
|
|
password, isSet := u.User.Password()
|
|
|
|
if isSet {
|
|
|
|
ss[2] = password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(ps) > 2 {
|
|
|
|
db, err := strconv.Atoi(ps[2])
|
|
|
|
if err != nil {
|
|
|
|
panic("bad redis sentinel url: bad db")
|
|
|
|
}
|
|
|
|
if db != 0 {
|
|
|
|
ss[3] = ps[2]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ss[4] = ps[1] // monitor name
|
|
|
|
|
|
|
|
beego.BConfig.WebConfig.Session.SessionProvider = "redis_sentinel"
|
|
|
|
beego.BConfig.WebConfig.Session.SessionProviderConfig = strings.Join(ss, ",")
|
|
|
|
} else {
|
|
|
|
ss := make([]string, 5)
|
|
|
|
ss[0] = u.Host // host
|
|
|
|
ss[1] = "100" // pool
|
|
|
|
if u.User != nil {
|
|
|
|
password, isSet := u.User.Password()
|
|
|
|
if isSet {
|
|
|
|
ss[2] = password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(u.Path) > 1 {
|
|
|
|
if _, err := strconv.Atoi(u.Path[1:]); err != nil {
|
|
|
|
panic("bad redis url: bad db")
|
|
|
|
}
|
|
|
|
ss[3] = u.Path[1:]
|
|
|
|
}
|
|
|
|
ss[4] = u.Query().Get("idle_timeout_seconds")
|
|
|
|
|
|
|
|
beego.BConfig.WebConfig.Session.SessionProvider = "redis"
|
|
|
|
beego.BConfig.WebConfig.Session.SessionProviderConfig = strings.Join(ss, ",")
|
|
|
|
}
|
2020-12-08 10:40:03 +01:00
|
|
|
|
|
|
|
log.Info("initializing cache ...")
|
|
|
|
if err := cache.Initialize(u.Scheme, redisURL); err != nil {
|
|
|
|
log.Fatalf("failed to initialize cache: %v", err)
|
|
|
|
}
|
2016-07-27 14:12:53 +02:00
|
|
|
}
|
2016-04-25 08:31:05 +02:00
|
|
|
beego.AddTemplateExt("htm")
|
2016-09-13 11:41:32 +02:00
|
|
|
|
2016-12-30 11:04:01 +01:00
|
|
|
log.Info("initializing configurations...")
|
2019-11-28 09:53:05 +01:00
|
|
|
config.Init()
|
2016-12-30 11:04:01 +01:00
|
|
|
log.Info("configurations initialization completed")
|
2020-10-18 18:16:02 +02:00
|
|
|
metricCfg := config.Metric()
|
|
|
|
if metricCfg.Enabled {
|
|
|
|
metric.RegisterCollectors()
|
|
|
|
go metric.ServeProm(metricCfg.Path, metricCfg.Port)
|
|
|
|
}
|
2017-02-26 12:53:13 +01:00
|
|
|
token.InitCreators()
|
2016-12-30 11:04:01 +01:00
|
|
|
database, err := config.Database()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("failed to get database configuration: %v", err)
|
|
|
|
}
|
2020-02-24 12:50:02 +01:00
|
|
|
if err := dao.InitDatabase(database); err != nil {
|
2016-12-30 11:04:01 +01:00
|
|
|
log.Fatalf("failed to initialize database: %v", err)
|
|
|
|
}
|
2020-02-24 12:50:02 +01:00
|
|
|
if err = migration.Migrate(database); err != nil {
|
|
|
|
log.Fatalf("failed to migrate: %v", err)
|
|
|
|
}
|
2019-01-09 10:40:27 +01:00
|
|
|
if err := config.Load(); err != nil {
|
|
|
|
log.Fatalf("failed to load config: %v", err)
|
|
|
|
}
|
2016-12-30 11:04:01 +01:00
|
|
|
|
|
|
|
password, err := config.InitialAdminPassword()
|
|
|
|
if err != nil {
|
2019-08-06 15:56:18 +02:00
|
|
|
log.Fatalf("failed to get admin's initial password: %v", err)
|
2016-12-30 11:04:01 +01:00
|
|
|
}
|
|
|
|
if err := updateInitPassword(adminUserID, password); err != nil {
|
2016-04-11 10:43:13 +02:00
|
|
|
log.Error(err)
|
|
|
|
}
|
2017-04-26 09:28:13 +02:00
|
|
|
|
2018-09-05 10:16:31 +02:00
|
|
|
// Init API handler
|
2018-07-19 17:50:25 +02:00
|
|
|
if err := api.Init(); err != nil {
|
|
|
|
log.Fatalf("Failed to initialize API handlers with error: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
2021-03-01 05:02:40 +01:00
|
|
|
registerScanners(orm.Context())
|
2017-07-06 18:38:38 +02:00
|
|
|
|
2019-04-04 16:17:29 +02:00
|
|
|
closing := make(chan struct{})
|
2019-08-22 10:11:37 +02:00
|
|
|
done := make(chan struct{})
|
|
|
|
go gracefulShutdown(closing, done)
|
|
|
|
if err := replication.Init(closing, done); err != nil {
|
2019-04-04 16:17:29 +02:00
|
|
|
log.Fatalf("failed to init for replication: %v", err)
|
2019-04-04 15:58:31 +02:00
|
|
|
}
|
2019-01-28 09:39:07 +01:00
|
|
|
|
2019-08-07 14:30:26 +02:00
|
|
|
log.Info("initializing notification...")
|
|
|
|
notification.Init()
|
|
|
|
|
2020-01-17 09:46:17 +01:00
|
|
|
server.RegisterRoutes()
|
2018-07-13 05:15:41 +02:00
|
|
|
|
2020-03-11 07:40:12 +01:00
|
|
|
if common_http.InternalTLSEnabled() {
|
2020-02-11 07:03:04 +01:00
|
|
|
log.Info("internal TLS enabled, Init TLS ...")
|
|
|
|
iTLSKeyPath := os.Getenv("INTERNAL_TLS_KEY_PATH")
|
|
|
|
iTLSCertPath := os.Getenv("INTERNAL_TLS_CERT_PATH")
|
|
|
|
|
2020-03-11 07:40:12 +01:00
|
|
|
log.Infof("load client key: %s client cert: %s", iTLSKeyPath, iTLSCertPath)
|
2020-04-13 10:41:19 +02:00
|
|
|
beego.BConfig.Listen.EnableHTTP = false
|
2020-02-11 07:03:04 +01:00
|
|
|
beego.BConfig.Listen.EnableHTTPS = true
|
|
|
|
beego.BConfig.Listen.HTTPSPort = 8443
|
|
|
|
beego.BConfig.Listen.HTTPSKeyFile = iTLSKeyPath
|
|
|
|
beego.BConfig.Listen.HTTPSCertFile = iTLSCertPath
|
2020-04-13 10:41:19 +02:00
|
|
|
beego.BeeApp.Server.TLSConfig = common_http.NewServerTLSConfig()
|
2020-02-11 07:03:04 +01:00
|
|
|
}
|
2019-10-29 09:09:54 +01:00
|
|
|
|
2020-02-11 07:03:04 +01:00
|
|
|
log.Infof("Version: %s, Git commit: %s", version.ReleaseVersion, version.GitCommit)
|
2020-01-22 06:00:39 +01:00
|
|
|
beego.RunWithMiddleWares("", middlewares.MiddleWares()...)
|
2016-04-11 10:43:13 +02:00
|
|
|
}
|
2020-02-18 12:46:51 +01:00
|
|
|
|
2020-04-15 04:25:52 +02:00
|
|
|
const (
|
|
|
|
trivyScanner = "Trivy"
|
|
|
|
)
|
|
|
|
|
2021-03-01 05:02:40 +01:00
|
|
|
func registerScanners(ctx context.Context) {
|
2020-02-18 17:31:26 +01:00
|
|
|
wantedScanners := make([]scanner.Registration, 0)
|
2020-04-15 04:25:52 +02:00
|
|
|
uninstallScannerNames := make([]string, 0)
|
2020-02-18 12:46:51 +01:00
|
|
|
|
|
|
|
if config.WithTrivy() {
|
2020-02-18 17:31:26 +01:00
|
|
|
log.Info("Registering Trivy scanner")
|
|
|
|
wantedScanners = append(wantedScanners, scanner.Registration{
|
2020-04-15 04:25:52 +02:00
|
|
|
Name: trivyScanner,
|
2020-02-18 12:46:51 +01:00
|
|
|
Description: "The Trivy scanner adapter",
|
|
|
|
URL: config.TrivyAdapterURL(),
|
|
|
|
UseInternalAddr: true,
|
|
|
|
Immutable: true,
|
2020-02-18 17:31:26 +01:00
|
|
|
})
|
2020-02-18 12:46:51 +01:00
|
|
|
} else {
|
2020-02-18 17:31:26 +01:00
|
|
|
log.Info("Removing Trivy scanner")
|
2020-04-15 04:25:52 +02:00
|
|
|
uninstallScannerNames = append(uninstallScannerNames, trivyScanner)
|
2020-02-18 12:46:51 +01:00
|
|
|
}
|
|
|
|
|
2021-03-01 05:02:40 +01:00
|
|
|
if err := scan.RemoveImmutableScanners(ctx, uninstallScannerNames); err != nil {
|
2020-09-03 05:11:16 +02:00
|
|
|
log.Warningf("failed to remove scanners: %v", err)
|
|
|
|
}
|
|
|
|
|
2021-03-01 05:02:40 +01:00
|
|
|
if err := scan.EnsureScanners(ctx, wantedScanners); err != nil {
|
2020-02-18 17:31:26 +01:00
|
|
|
log.Fatalf("failed to register scanners: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-04-15 04:25:52 +02:00
|
|
|
if defaultScannerName := getDefaultScannerName(); defaultScannerName != "" {
|
|
|
|
log.Infof("Setting %s as default scanner", defaultScannerName)
|
2021-03-01 05:02:40 +01:00
|
|
|
if err := scan.EnsureDefaultScanner(ctx, defaultScannerName); err != nil {
|
2020-02-18 17:31:26 +01:00
|
|
|
log.Fatalf("failed to set default scanner: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2020-02-18 12:46:51 +01:00
|
|
|
}
|
2020-02-18 17:31:26 +01:00
|
|
|
|
2020-04-15 04:25:52 +02:00
|
|
|
func getDefaultScannerName() string {
|
2020-02-18 17:31:26 +01:00
|
|
|
if config.WithTrivy() {
|
2020-04-15 04:25:52 +02:00
|
|
|
return trivyScanner
|
2020-02-18 17:31:26 +01:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|