2020-02-13 17:27:33 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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 sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/rand"
|
|
|
|
"database/sql"
|
|
|
|
"encoding/base64"
|
|
|
|
|
2020-04-16 09:06:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-10-15 17:09:41 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/devices/sqlite3/deltas"
|
2020-02-13 17:27:33 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The length of generated device IDs
|
|
|
|
var deviceIDByteLength = 6
|
|
|
|
|
|
|
|
// Database represents a device database.
|
|
|
|
type Database struct {
|
|
|
|
db *sql.DB
|
2020-08-21 09:42:08 +00:00
|
|
|
writer sqlutil.Writer
|
2020-02-13 17:27:33 +00:00
|
|
|
devices devicesStatements
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDatabase creates a new device database
|
2020-08-10 13:18:04 +00:00
|
|
|
func NewDatabase(dbProperties *config.DatabaseOptions, serverName gomatrixserverlib.ServerName) (*Database, error) {
|
|
|
|
db, err := sqlutil.Open(dbProperties)
|
2020-06-04 10:18:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
writer := sqlutil.NewExclusiveWriter()
|
2020-02-13 17:27:33 +00:00
|
|
|
d := devicesStatements{}
|
2020-10-15 17:09:41 +00:00
|
|
|
|
|
|
|
// Create tables before executing migrations so we don't fail if the table is missing,
|
|
|
|
// and THEN prepare statements so we don't fail due to referencing new columns
|
|
|
|
if err = d.execSchema(db); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m := sqlutil.NewMigrations()
|
|
|
|
deltas.LoadLastSeenTSIP(m)
|
|
|
|
if err = m.RunDeltas(db, dbProperties); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
if err = d.prepare(db, writer, serverName); err != nil {
|
2020-02-13 17:27:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-21 09:42:08 +00:00
|
|
|
return &Database{db, writer, d}, nil
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetDeviceByAccessToken returns the device matching the given access token.
|
|
|
|
// Returns sql.ErrNoRows if no matching device was found.
|
|
|
|
func (d *Database) GetDeviceByAccessToken(
|
|
|
|
ctx context.Context, token string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (*api.Device, error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
return d.devices.selectDeviceByToken(ctx, token)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDeviceByID returns the device matching the given ID.
|
|
|
|
// Returns sql.ErrNoRows if no matching device was found.
|
|
|
|
func (d *Database) GetDeviceByID(
|
|
|
|
ctx context.Context, localpart, deviceID string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (*api.Device, error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
return d.devices.selectDeviceByID(ctx, localpart, deviceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDevicesByLocalpart returns the devices matching the given localpart.
|
|
|
|
func (d *Database) GetDevicesByLocalpart(
|
|
|
|
ctx context.Context, localpart string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) ([]api.Device, error) {
|
2020-09-04 14:16:13 +00:00
|
|
|
return d.devices.selectDevicesByLocalpart(ctx, nil, localpart, "")
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 16:04:57 +00:00
|
|
|
func (d *Database) GetDevicesByID(ctx context.Context, deviceIDs []string) ([]api.Device, error) {
|
|
|
|
return d.devices.selectDevicesByID(ctx, deviceIDs)
|
|
|
|
}
|
|
|
|
|
2020-02-13 17:27:33 +00:00
|
|
|
// CreateDevice makes a new device associated with the given user ID localpart.
|
|
|
|
// If there is already a device with the same device ID for this user, that access token will be revoked
|
|
|
|
// and replaced with the given accessToken. If the given accessToken is already in use for another device,
|
|
|
|
// an error will be returned.
|
|
|
|
// If no device ID is given one is generated.
|
|
|
|
// Returns the device on success.
|
|
|
|
func (d *Database) CreateDevice(
|
|
|
|
ctx context.Context, localpart string, deviceID *string, accessToken string,
|
2020-10-09 08:17:23 +00:00
|
|
|
displayName *string, ipAddr, userAgent string,
|
2020-06-16 13:10:55 +00:00
|
|
|
) (dev *api.Device, returnErr error) {
|
2020-02-13 17:27:33 +00:00
|
|
|
if deviceID != nil {
|
2020-08-21 09:42:08 +00:00
|
|
|
returnErr = d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
var err error
|
|
|
|
// Revoke existing tokens for this device
|
|
|
|
if err = d.devices.deleteDevice(ctx, txn, *deviceID, localpart); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-10-09 08:17:23 +00:00
|
|
|
dev, err = d.devices.insertDevice(ctx, txn, *deviceID, localpart, accessToken, displayName, ipAddr, userAgent)
|
2020-02-13 17:27:33 +00:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
// We generate device IDs in a loop in case its already taken.
|
|
|
|
// We cap this at going round 5 times to ensure we don't spin forever
|
|
|
|
var newDeviceID string
|
|
|
|
for i := 1; i <= 5; i++ {
|
|
|
|
newDeviceID, returnErr = generateDeviceID()
|
|
|
|
if returnErr != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-21 09:42:08 +00:00
|
|
|
returnErr = d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
var err error
|
2020-10-09 08:17:23 +00:00
|
|
|
dev, err = d.devices.insertDevice(ctx, txn, newDeviceID, localpart, accessToken, displayName, ipAddr, userAgent)
|
2020-02-13 17:27:33 +00:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
if returnErr == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// generateDeviceID creates a new device id. Returns an error if failed to generate
|
|
|
|
// random bytes.
|
|
|
|
func generateDeviceID() (string, error) {
|
|
|
|
b := make([]byte, deviceIDByteLength)
|
|
|
|
_, err := rand.Read(b)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
// url-safe no padding
|
|
|
|
return base64.RawURLEncoding.EncodeToString(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateDevice updates the given device with the display name.
|
|
|
|
// Returns SQL error if there are problems and nil on success.
|
|
|
|
func (d *Database) UpdateDevice(
|
|
|
|
ctx context.Context, localpart, deviceID string, displayName *string,
|
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
return d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
return d.devices.updateDeviceName(ctx, txn, localpart, deviceID, displayName)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveDevice revokes a device by deleting the entry in the database
|
|
|
|
// matching with the given device ID and user ID localpart.
|
|
|
|
// If the device doesn't exist, it will not return an error
|
|
|
|
// If something went wrong during the deletion, it will return the SQL error.
|
|
|
|
func (d *Database) RemoveDevice(
|
|
|
|
ctx context.Context, deviceID, localpart string,
|
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
return d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
if err := d.devices.deleteDevice(ctx, txn, deviceID, localpart); err != sql.ErrNoRows {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveDevices revokes one or more devices by deleting the entry in the database
|
|
|
|
// matching with the given device IDs and user ID localpart.
|
|
|
|
// If the devices don't exist, it will not return an error
|
|
|
|
// If something went wrong during the deletion, it will return the SQL error.
|
|
|
|
func (d *Database) RemoveDevices(
|
|
|
|
ctx context.Context, localpart string, devices []string,
|
|
|
|
) error {
|
2020-08-21 09:42:08 +00:00
|
|
|
return d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-02-13 17:27:33 +00:00
|
|
|
if err := d.devices.deleteDevices(ctx, txn, localpart, devices); err != sql.ErrNoRows {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveAllDevices revokes devices by deleting the entry in the
|
|
|
|
// database matching the given user ID localpart.
|
|
|
|
// If something went wrong during the deletion, it will return the SQL error.
|
|
|
|
func (d *Database) RemoveAllDevices(
|
2020-09-04 14:16:13 +00:00
|
|
|
ctx context.Context, localpart, exceptDeviceID string,
|
2020-08-27 17:53:40 +00:00
|
|
|
) (devices []api.Device, err error) {
|
|
|
|
err = d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-09-04 14:16:13 +00:00
|
|
|
devices, err = d.devices.selectDevicesByLocalpart(ctx, txn, localpart, exceptDeviceID)
|
2020-08-27 17:53:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-04 14:16:13 +00:00
|
|
|
if err := d.devices.deleteDevicesByLocalpart(ctx, txn, localpart, exceptDeviceID); err != sql.ErrNoRows {
|
2020-02-13 17:27:33 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2020-08-27 17:53:40 +00:00
|
|
|
return
|
2020-02-13 17:27:33 +00:00
|
|
|
}
|
2020-10-09 08:17:23 +00:00
|
|
|
|
|
|
|
// UpdateDeviceLastSeen updates a the last seen timestamp and the ip address
|
2020-11-20 11:29:02 +00:00
|
|
|
func (d *Database) UpdateDeviceLastSeen(ctx context.Context, localpart, deviceID, ipAddr string) error {
|
2020-10-09 08:17:23 +00:00
|
|
|
return d.writer.Do(d.db, nil, func(txn *sql.Tx) error {
|
2020-11-20 11:29:02 +00:00
|
|
|
return d.devices.updateDeviceLastSeen(ctx, txn, localpart, deviceID, ipAddr)
|
2020-10-09 08:17:23 +00:00
|
|
|
})
|
|
|
|
}
|