2017-01-13 07:08:52 +00:00
|
|
|
// Copyright 2017 clair authors
|
2016-01-19 20:16:45 +00: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.
|
|
|
|
|
|
|
|
// Package pgsql implements database.Datastore with PostgreSQL.
|
2015-12-28 20:03:29 +00:00
|
|
|
package pgsql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2016-05-02 22:33:03 +00:00
|
|
|
"net/url"
|
2015-12-28 20:03:29 +00:00
|
|
|
"strings"
|
|
|
|
|
2016-11-08 15:45:05 +00:00
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
|
2015-12-28 20:03:29 +00:00
|
|
|
"github.com/hashicorp/golang-lru"
|
2016-11-08 15:45:05 +00:00
|
|
|
"github.com/remind101/migrate"
|
2017-05-04 17:21:25 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2016-05-02 22:33:03 +00:00
|
|
|
|
|
|
|
"github.com/coreos/clair/database"
|
2016-11-08 15:45:05 +00:00
|
|
|
"github.com/coreos/clair/database/pgsql/migrations"
|
2017-01-13 07:08:52 +00:00
|
|
|
"github.com/coreos/clair/pkg/commonerr"
|
2018-09-06 23:15:06 +00:00
|
|
|
"github.com/coreos/clair/pkg/pagination"
|
2015-12-28 20:03:29 +00:00
|
|
|
)
|
|
|
|
|
2016-01-22 20:59:46 +00:00
|
|
|
func init() {
|
2016-05-02 22:33:03 +00:00
|
|
|
database.Register("pgsql", openDatabase)
|
2016-01-22 20:59:46 +00:00
|
|
|
}
|
2015-12-28 20:03:29 +00:00
|
|
|
|
|
|
|
type pgSQL struct {
|
|
|
|
*sql.DB
|
2017-07-26 23:23:54 +00:00
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
cache *lru.ARCCache
|
|
|
|
config Config
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 23:15:06 +00:00
|
|
|
// Begin initiates a transaction to database.
|
|
|
|
//
|
|
|
|
// The expected transaction isolation level in this implementation is "Read
|
|
|
|
// Committed".
|
2017-07-26 23:23:54 +00:00
|
|
|
func (pgSQL *pgSQL) Begin() (database.Session, error) {
|
|
|
|
tx, err := pgSQL.DB.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &pgSession{
|
2018-09-06 23:15:06 +00:00
|
|
|
Tx: tx,
|
|
|
|
key: pagination.Must(pagination.KeyFromString(pgSQL.config.PaginationKey)),
|
2017-07-26 23:23:54 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
// Close closes the database and destroys if ManageDatabaseLifecycle has been specified in
|
|
|
|
// the configuration.
|
2015-12-28 20:03:29 +00:00
|
|
|
func (pgSQL *pgSQL) Close() {
|
2016-05-02 22:33:03 +00:00
|
|
|
if pgSQL.DB != nil {
|
|
|
|
pgSQL.DB.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
if pgSQL.config.ManageDatabaseLifecycle {
|
|
|
|
dbName, pgSourceURL, _ := parseConnectionString(pgSQL.config.Source)
|
|
|
|
dropDatabase(pgSourceURL, dbName)
|
|
|
|
}
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
// Ping verifies that the database is accessible.
|
2016-01-22 20:57:57 +00:00
|
|
|
func (pgSQL *pgSQL) Ping() bool {
|
2016-02-04 21:13:11 +00:00
|
|
|
return pgSQL.DB.Ping() == nil
|
2016-01-22 20:57:57 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
// Config is the configuration that is used by openDatabase.
|
|
|
|
type Config struct {
|
|
|
|
Source string
|
|
|
|
CacheSize int
|
|
|
|
|
|
|
|
ManageDatabaseLifecycle bool
|
|
|
|
FixturePath string
|
2017-07-26 23:23:54 +00:00
|
|
|
PaginationKey string
|
2016-05-02 22:33:03 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 01:14:44 +00:00
|
|
|
// openDatabase opens a PostgresSQL-backed Datastore using the given
|
|
|
|
// configuration.
|
|
|
|
//
|
|
|
|
// It immediately runs all necessary migrations. If ManageDatabaseLifecycle is
|
|
|
|
// specified, the database will be created first. If FixturePath is specified,
|
|
|
|
// every SQL queries that are present insides will be executed.
|
|
|
|
func openDatabase(registrableComponentConfig database.RegistrableComponentConfig) (database.Datastore, error) {
|
2016-05-02 22:33:03 +00:00
|
|
|
var pg pgSQL
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// Parse configuration.
|
|
|
|
pg.config = Config{
|
|
|
|
CacheSize: 16384,
|
|
|
|
}
|
|
|
|
bytes, err := yaml.Marshal(registrableComponentConfig.Options)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("pgsql: could not load configuration: %v", err)
|
|
|
|
}
|
|
|
|
err = yaml.Unmarshal(bytes, &pg.config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("pgsql: could not load configuration: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-07-26 23:23:54 +00:00
|
|
|
if pg.config.PaginationKey == "" {
|
|
|
|
panic("pagination key should be given")
|
|
|
|
}
|
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
dbName, pgSourceURL, err := parseConnectionString(pg.config.Source)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create database.
|
|
|
|
if pg.config.ManageDatabaseLifecycle {
|
|
|
|
log.Info("pgsql: creating database")
|
2016-11-08 15:45:05 +00:00
|
|
|
if err = createDatabase(pgSourceURL, dbName); err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Open database.
|
2016-05-02 22:33:03 +00:00
|
|
|
pg.DB, err = sql.Open("postgres", pg.config.Source)
|
2015-12-28 20:03:29 +00:00
|
|
|
if err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
pg.Close()
|
|
|
|
return nil, fmt.Errorf("pgsql: could not open database: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify database state.
|
2016-11-08 15:45:05 +00:00
|
|
|
if err = pg.DB.Ping(); err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
pg.Close()
|
|
|
|
return nil, fmt.Errorf("pgsql: could not open database: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run migrations.
|
2016-11-08 15:45:05 +00:00
|
|
|
if err = migrateDatabase(pg.DB); err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
pg.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load fixture data.
|
|
|
|
if pg.config.FixturePath != "" {
|
|
|
|
log.Info("pgsql: loading fixtures")
|
|
|
|
|
|
|
|
d, err := ioutil.ReadFile(pg.config.FixturePath)
|
|
|
|
if err != nil {
|
|
|
|
pg.Close()
|
|
|
|
return nil, fmt.Errorf("pgsql: could not open fixture file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = pg.DB.Exec(string(d))
|
|
|
|
if err != nil {
|
|
|
|
pg.Close()
|
2017-07-26 23:23:54 +00:00
|
|
|
return nil, fmt.Errorf("pgsql: an error occurred while importing fixtures: %v", err)
|
2016-05-02 22:33:03 +00:00
|
|
|
}
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize cache.
|
|
|
|
// TODO(Quentin-M): Benchmark with a simple LRU Cache.
|
2016-05-02 22:33:03 +00:00
|
|
|
if pg.config.CacheSize > 0 {
|
|
|
|
pg.cache, _ = lru.NewARC(pg.config.CacheSize)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &pg, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseConnectionString(source string) (dbName string, pgSourceURL string, err error) {
|
|
|
|
if source == "" {
|
2017-01-13 07:08:52 +00:00
|
|
|
return "", "", commonerr.NewBadRequestError("pgsql: no database connection string specified")
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 22:33:03 +00:00
|
|
|
sourceURL, err := url.Parse(source)
|
|
|
|
if err != nil {
|
2017-01-13 07:08:52 +00:00
|
|
|
return "", "", commonerr.NewBadRequestError("pgsql: database connection string is not a valid URL")
|
2016-05-02 22:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dbName = strings.TrimPrefix(sourceURL.Path, "/")
|
|
|
|
|
|
|
|
pgSource := *sourceURL
|
|
|
|
pgSource.Path = "/postgres"
|
|
|
|
pgSourceURL = pgSource.String()
|
|
|
|
|
|
|
|
return
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 16:17:32 +00:00
|
|
|
// migrate runs all available migrations on a pgSQL database.
|
2016-11-08 15:45:05 +00:00
|
|
|
func migrateDatabase(db *sql.DB) error {
|
2015-12-28 20:03:29 +00:00
|
|
|
log.Info("running database migrations")
|
|
|
|
|
2016-11-08 15:45:05 +00:00
|
|
|
err := migrate.NewPostgresMigrator(db).Exec(migrate.Up, migrations.Migrations...)
|
2015-12-28 20:03:29 +00:00
|
|
|
if err != nil {
|
2017-07-26 23:23:54 +00:00
|
|
|
return fmt.Errorf("pgsql: an error occurred while running migrations: %v", err)
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("database migration ran successfully")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-08 16:17:32 +00:00
|
|
|
// createDatabase creates a new database.
|
2016-05-02 22:33:03 +00:00
|
|
|
// The source parameter should not contain a dbname.
|
|
|
|
func createDatabase(source, dbName string) error {
|
2018-10-08 15:11:30 +00:00
|
|
|
log.WithFields(log.Fields{"source": source, "dbName": dbName}).Debug("creating database...")
|
2015-12-28 20:03:29 +00:00
|
|
|
// Open database.
|
2016-05-02 22:33:03 +00:00
|
|
|
db, err := sql.Open("postgres", source)
|
2015-12-28 20:03:29 +00:00
|
|
|
if err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
return fmt.Errorf("pgsql: could not open 'postgres' database for creation: %v", err)
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
// Create database.
|
2016-05-02 22:33:03 +00:00
|
|
|
_, err = db.Exec("CREATE DATABASE " + dbName)
|
2015-12-28 20:03:29 +00:00
|
|
|
if err != nil {
|
2016-05-02 22:33:03 +00:00
|
|
|
return fmt.Errorf("pgsql: could not create database: %v", err)
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-08 16:17:32 +00:00
|
|
|
// dropDatabase drops an existing database.
|
2016-05-02 22:33:03 +00:00
|
|
|
// The source parameter should not contain a dbname.
|
|
|
|
func dropDatabase(source, dbName string) error {
|
2015-12-28 20:03:29 +00:00
|
|
|
// Open database.
|
2016-05-02 22:33:03 +00:00
|
|
|
db, err := sql.Open("postgres", source)
|
2015-12-28 20:03:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not open database (DropDatabase): %v", err)
|
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
|
2016-02-02 18:40:41 +00:00
|
|
|
// Kill any opened connection.
|
2016-05-02 22:33:03 +00:00
|
|
|
if _, err = db.Exec(`
|
2016-02-02 18:40:41 +00:00
|
|
|
SELECT pg_terminate_backend(pg_stat_activity.pid)
|
|
|
|
FROM pg_stat_activity
|
|
|
|
WHERE pg_stat_activity.datname = $1
|
2016-05-02 22:33:03 +00:00
|
|
|
AND pid <> pg_backend_pid()`, dbName); err != nil {
|
2016-02-02 18:40:41 +00:00
|
|
|
return fmt.Errorf("could not drop database: %v", err)
|
|
|
|
}
|
|
|
|
|
2015-12-28 20:03:29 +00:00
|
|
|
// Drop database.
|
2016-05-02 22:33:03 +00:00
|
|
|
if _, err = db.Exec("DROP DATABASE " + dbName); err != nil {
|
2016-01-12 15:40:46 +00:00
|
|
|
return fmt.Errorf("could not drop database: %v", err)
|
2015-12-28 20:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|