mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 12:46:46 +00:00
When changing address mode, we would close all a user's update channels and create them from scratch. This involved setting user.updateCh to a new value. However, it was possible for other goroutines to read from user.updateCh during this time. I replaced it with a call to user.updateCh.Clear(), which is threadsafe.
448 lines
12 KiB
Go
448 lines
12 KiB
Go
// Copyright (c) 2022 Proton AG
|
|
//
|
|
// This file is part of Proton Mail Bridge.
|
|
//
|
|
// Proton Mail Bridge is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Proton Mail Bridge is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package user
|
|
|
|
import (
|
|
"context"
|
|
"crypto/subtle"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/ProtonMail/gluon/connector"
|
|
"github.com/ProtonMail/gluon/imap"
|
|
"github.com/ProtonMail/gluon/queue"
|
|
"github.com/ProtonMail/proton-bridge/v2/internal/async"
|
|
"github.com/ProtonMail/proton-bridge/v2/internal/events"
|
|
"github.com/ProtonMail/proton-bridge/v2/internal/safe"
|
|
"github.com/ProtonMail/proton-bridge/v2/internal/vault"
|
|
"github.com/bradenaw/juniper/xslices"
|
|
"github.com/bradenaw/juniper/xsync"
|
|
"github.com/sirupsen/logrus"
|
|
"gitlab.protontech.ch/go/liteapi"
|
|
)
|
|
|
|
var (
|
|
EventPeriod = 20 * time.Second // nolint:gochecknoglobals,revive
|
|
EventJitter = 20 * time.Second // nolint:gochecknoglobals,revive
|
|
)
|
|
|
|
type User struct {
|
|
log *logrus.Entry
|
|
|
|
vault *vault.User
|
|
client *liteapi.Client
|
|
eventCh *queue.QueuedChannel[events.Event]
|
|
|
|
apiUser *safe.Value[liteapi.User]
|
|
apiAddrs *safe.Map[string, liteapi.Address]
|
|
updateCh *safe.Map[string, *queue.QueuedChannel[imap.Update]]
|
|
sendHash *sendRecorder
|
|
|
|
tasks *xsync.Group
|
|
abortable async.Abortable
|
|
goSync func()
|
|
|
|
showAllMail uint32
|
|
}
|
|
|
|
// New returns a new user.
|
|
//
|
|
// nolint:funlen
|
|
func New(
|
|
ctx context.Context,
|
|
encVault *vault.User,
|
|
client *liteapi.Client,
|
|
apiUser liteapi.User,
|
|
showAllMail bool,
|
|
) (*User, error) { //nolint:funlen
|
|
logrus.WithField("userID", apiUser.ID).Debug("Creating new user")
|
|
|
|
// Get the user's API addresses.
|
|
apiAddrs, err := client.GetAddresses(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get addresses: %w", err)
|
|
}
|
|
|
|
// Check we can unlock the keyrings.
|
|
if _, _, err := liteapi.Unlock(apiUser, apiAddrs, encVault.KeyPass()); err != nil {
|
|
return nil, fmt.Errorf("failed to unlock user: %w", err)
|
|
}
|
|
|
|
// Get the latest event ID.
|
|
if encVault.EventID() == "" {
|
|
eventID, err := client.GetLatestEventID(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get latest event ID: %w", err)
|
|
}
|
|
|
|
if err := encVault.SetEventID(eventID); err != nil {
|
|
return nil, fmt.Errorf("failed to set event ID: %w", err)
|
|
}
|
|
}
|
|
|
|
// Create update channels for each of the user's addresses.
|
|
// In combined mode, the addresses all share the same update channel.
|
|
updateCh := make(map[string]*queue.QueuedChannel[imap.Update])
|
|
|
|
switch encVault.AddressMode() {
|
|
case vault.CombinedMode:
|
|
primaryUpdateCh := queue.NewQueuedChannel[imap.Update](0, 0)
|
|
|
|
for _, addr := range apiAddrs {
|
|
updateCh[addr.ID] = primaryUpdateCh
|
|
}
|
|
|
|
case vault.SplitMode:
|
|
for _, addr := range apiAddrs {
|
|
updateCh[addr.ID] = queue.NewQueuedChannel[imap.Update](0, 0)
|
|
}
|
|
}
|
|
|
|
user := &User{
|
|
log: logrus.WithField("userID", apiUser.ID),
|
|
|
|
vault: encVault,
|
|
client: client,
|
|
eventCh: queue.NewQueuedChannel[events.Event](0, 0),
|
|
|
|
apiUser: safe.NewValue(apiUser),
|
|
apiAddrs: safe.NewMapFrom(groupBy(apiAddrs, func(addr liteapi.Address) string { return addr.ID }), sortAddr),
|
|
updateCh: safe.NewMapFrom(updateCh, nil),
|
|
sendHash: newSendRecorder(sendEntryExpiry),
|
|
|
|
tasks: xsync.NewGroup(context.Background()),
|
|
|
|
showAllMail: b32(showAllMail),
|
|
}
|
|
|
|
// When we receive an auth object, we update it in the vault.
|
|
// This will be used to authorize the user on the next run.
|
|
user.client.AddAuthHandler(func(auth liteapi.Auth) {
|
|
if err := user.vault.SetAuth(auth.UID, auth.RefreshToken); err != nil {
|
|
user.log.WithError(err).Error("Failed to update auth in vault")
|
|
}
|
|
})
|
|
|
|
// When we are deauthorized, we send a deauth event to the event channel.
|
|
// Bridge will react to this event by logging out the user.
|
|
user.client.AddDeauthHandler(func() {
|
|
user.eventCh.Enqueue(events.UserDeauth{
|
|
UserID: user.ID(),
|
|
})
|
|
})
|
|
|
|
// Stream events from the API, logging any errors that occur.
|
|
// When we receive an API event, we attempt to handle it.
|
|
// If successful, we update the event ID in the vault.
|
|
goStream := user.tasks.Trigger(func(ctx context.Context) {
|
|
for event := range user.client.NewEventStream(ctx, EventPeriod, EventJitter, user.vault.EventID()) {
|
|
if err := user.handleAPIEvent(ctx, event); err != nil {
|
|
user.log.WithError(err).Error("Failed to handle API event")
|
|
} else if err := user.vault.SetEventID(event.EventID); err != nil {
|
|
user.log.WithError(err).Error("Failed to update event ID in vault")
|
|
}
|
|
}
|
|
})
|
|
|
|
// We only ever want to start one event streamer.
|
|
var once sync.Once
|
|
|
|
// When triggered, attempt to sync the user.
|
|
// If successful, we start the event streamer if we haven't already.
|
|
user.goSync = user.tasks.Trigger(func(ctx context.Context) {
|
|
user.abortable.Do(ctx, func(ctx context.Context) {
|
|
if !user.vault.SyncStatus().IsComplete() {
|
|
if err := user.doSync(ctx); err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
once.Do(goStream)
|
|
})
|
|
})
|
|
|
|
// Trigger an initial sync (if necessary) and start the event stream.
|
|
user.goSync()
|
|
|
|
return user, nil
|
|
}
|
|
|
|
// ID returns the user's ID.
|
|
func (user *User) ID() string {
|
|
return safe.LoadRet(user.apiUser, func(apiUser liteapi.User) string {
|
|
return apiUser.ID
|
|
})
|
|
}
|
|
|
|
// Name returns the user's username.
|
|
func (user *User) Name() string {
|
|
return safe.LoadRet(user.apiUser, func(apiUser liteapi.User) string {
|
|
return apiUser.Name
|
|
})
|
|
}
|
|
|
|
// Match matches the given query against the user's username and email addresses.
|
|
func (user *User) Match(query string) bool {
|
|
return safe.LoadRet(user.apiUser, func(apiUser liteapi.User) bool {
|
|
if query == apiUser.Name {
|
|
return true
|
|
}
|
|
|
|
return user.apiAddrs.HasFunc(func(_ string, addr liteapi.Address) bool {
|
|
return addr.Email == query
|
|
})
|
|
})
|
|
}
|
|
|
|
// Emails returns all the user's email addresses via the callback.
|
|
func (user *User) Emails() []string {
|
|
return safe.MapValuesRet(user.apiAddrs, func(apiAddrs []liteapi.Address) []string {
|
|
return xslices.Map(apiAddrs, func(addr liteapi.Address) string {
|
|
return addr.Email
|
|
})
|
|
})
|
|
}
|
|
|
|
// GetAddressMode returns the user's current address mode.
|
|
func (user *User) GetAddressMode() vault.AddressMode {
|
|
return user.vault.AddressMode()
|
|
}
|
|
|
|
// SetAddressMode sets the user's address mode.
|
|
func (user *User) SetAddressMode(ctx context.Context, mode vault.AddressMode) error {
|
|
user.abortable.Abort()
|
|
defer user.goSync()
|
|
|
|
user.updateCh.Values(func(updateCh []*queue.QueuedChannel[imap.Update]) {
|
|
for _, updateCh := range xslices.Unique(updateCh) {
|
|
updateCh.CloseAndDiscardQueued()
|
|
}
|
|
})
|
|
|
|
user.updateCh.Clear()
|
|
|
|
switch mode {
|
|
case vault.CombinedMode:
|
|
primaryUpdateCh := queue.NewQueuedChannel[imap.Update](0, 0)
|
|
|
|
user.apiAddrs.IterKeys(func(addrID string) {
|
|
user.updateCh.Set(addrID, primaryUpdateCh)
|
|
})
|
|
|
|
case vault.SplitMode:
|
|
user.apiAddrs.IterKeys(func(addrID string) {
|
|
user.updateCh.Set(addrID, queue.NewQueuedChannel[imap.Update](0, 0))
|
|
})
|
|
}
|
|
|
|
if err := user.vault.SetAddressMode(mode); err != nil {
|
|
return fmt.Errorf("failed to set address mode: %w", err)
|
|
}
|
|
|
|
if err := user.vault.ClearSyncStatus(); err != nil {
|
|
return fmt.Errorf("failed to clear sync status: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// GetGluonIDs returns the users gluon IDs.
|
|
func (user *User) GetGluonIDs() map[string]string {
|
|
return user.vault.GetGluonIDs()
|
|
}
|
|
|
|
// GetGluonID returns the gluon ID for the given address, if present.
|
|
func (user *User) GetGluonID(addrID string) (string, bool) {
|
|
gluonID, ok := user.vault.GetGluonIDs()[addrID]
|
|
if !ok {
|
|
return "", false
|
|
}
|
|
|
|
return gluonID, true
|
|
}
|
|
|
|
// SetGluonID sets the gluon ID for the given address.
|
|
func (user *User) SetGluonID(addrID, gluonID string) error {
|
|
return user.vault.SetGluonID(addrID, gluonID)
|
|
}
|
|
|
|
// GluonKey returns the user's gluon key from the vault.
|
|
func (user *User) GluonKey() []byte {
|
|
return user.vault.GluonKey()
|
|
}
|
|
|
|
// BridgePass returns the user's bridge password, used for authentication over SMTP and IMAP.
|
|
func (user *User) BridgePass() []byte {
|
|
return hexEncode(user.vault.BridgePass())
|
|
}
|
|
|
|
// UsedSpace returns the total space used by the user on the API.
|
|
func (user *User) UsedSpace() int {
|
|
return safe.LoadRet(user.apiUser, func(apiUser liteapi.User) int {
|
|
return apiUser.UsedSpace
|
|
})
|
|
}
|
|
|
|
// MaxSpace returns the amount of space the user can use on the API.
|
|
func (user *User) MaxSpace() int {
|
|
return safe.LoadRet(user.apiUser, func(apiUser liteapi.User) int {
|
|
return apiUser.MaxSpace
|
|
})
|
|
}
|
|
|
|
// GetEventCh returns a channel which notifies of events happening to the user (such as deauth, address change).
|
|
func (user *User) GetEventCh() <-chan events.Event {
|
|
return user.eventCh.GetChannel()
|
|
}
|
|
|
|
// NewIMAPConnector returns an IMAP connector for the given address.
|
|
// If not in split mode, this must be the primary address.
|
|
func (user *User) NewIMAPConnector(addrID string) connector.Connector {
|
|
return newIMAPConnector(user, addrID)
|
|
}
|
|
|
|
// NewIMAPConnectors returns IMAP connectors for each of the user's addresses.
|
|
// In combined mode, this is just the user's primary address.
|
|
// In split mode, this is all the user's addresses.
|
|
func (user *User) NewIMAPConnectors() (map[string]connector.Connector, error) {
|
|
imapConn := make(map[string]connector.Connector)
|
|
|
|
switch user.vault.AddressMode() {
|
|
case vault.CombinedMode:
|
|
user.apiAddrs.Index(0, func(addrID string, _ liteapi.Address) {
|
|
imapConn[addrID] = newIMAPConnector(user, addrID)
|
|
})
|
|
|
|
case vault.SplitMode:
|
|
user.apiAddrs.IterKeys(func(addrID string) {
|
|
imapConn[addrID] = newIMAPConnector(user, addrID)
|
|
})
|
|
}
|
|
|
|
return imapConn, nil
|
|
}
|
|
|
|
// SendMail sends an email from the given address to the given recipients.
|
|
func (user *User) SendMail(authID string, from string, to []string, r io.Reader) error {
|
|
if len(to) == 0 {
|
|
return ErrInvalidRecipient
|
|
}
|
|
|
|
return user.apiAddrs.ValuesErr(func(apiAddrs []liteapi.Address) error {
|
|
if _, err := getAddrID(apiAddrs, from); err != nil {
|
|
return ErrInvalidReturnPath
|
|
}
|
|
|
|
emails := xslices.Map(apiAddrs, func(addr liteapi.Address) string {
|
|
return addr.Email
|
|
})
|
|
|
|
return user.sendMail(authID, emails, from, to, r)
|
|
})
|
|
}
|
|
|
|
// CheckAuth returns whether the given email and password can be used to authenticate over IMAP or SMTP with this user.
|
|
// It returns the address ID of the authenticated address.
|
|
func (user *User) CheckAuth(email string, password []byte) (string, error) {
|
|
dec, err := hexDecode(password)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to decode password: %w", err)
|
|
}
|
|
|
|
if subtle.ConstantTimeCompare(user.vault.BridgePass(), dec) != 1 {
|
|
return "", fmt.Errorf("invalid password")
|
|
}
|
|
|
|
return safe.MapValuesRetErr(user.apiAddrs, func(apiAddrs []liteapi.Address) (string, error) {
|
|
for _, addr := range apiAddrs {
|
|
if strings.EqualFold(addr.Email, email) {
|
|
return addr.ID, nil
|
|
}
|
|
}
|
|
|
|
return "", fmt.Errorf("invalid email")
|
|
})
|
|
}
|
|
|
|
// OnStatusUp is called when the connection goes up.
|
|
func (user *User) OnStatusUp() {
|
|
user.goSync()
|
|
}
|
|
|
|
// OnStatusDown is called when the connection goes down.
|
|
func (user *User) OnStatusDown() {
|
|
user.abortable.Abort()
|
|
}
|
|
|
|
// Logout logs the user out from the API.
|
|
func (user *User) Logout(ctx context.Context) error {
|
|
user.tasks.Wait()
|
|
|
|
if err := user.client.AuthDelete(ctx); err != nil {
|
|
return fmt.Errorf("failed to delete auth: %w", err)
|
|
}
|
|
|
|
if err := user.vault.Clear(); err != nil {
|
|
return fmt.Errorf("failed to clear vault: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Close closes ongoing connections and cleans up resources.
|
|
func (user *User) Close() {
|
|
// Stop any ongoing background tasks.
|
|
user.tasks.Wait()
|
|
|
|
// Close the user's API client.
|
|
user.client.Close()
|
|
|
|
// Close the user's update channels.
|
|
user.updateCh.Values(func(updateCh []*queue.QueuedChannel[imap.Update]) {
|
|
for _, updateCh := range xslices.Unique(updateCh) {
|
|
updateCh.CloseAndDiscardQueued()
|
|
}
|
|
})
|
|
|
|
// Close the user's notify channel.
|
|
user.eventCh.CloseAndDiscardQueued()
|
|
|
|
// Close the user's vault.
|
|
if err := user.vault.Close(); err != nil {
|
|
user.log.WithError(err).Error("Failed to close vault")
|
|
}
|
|
}
|
|
|
|
// SetShowAllMail sets whether to show the All Mail mailbox.
|
|
func (user *User) SetShowAllMail(show bool) {
|
|
atomic.StoreUint32(&user.showAllMail, b32(show))
|
|
}
|
|
|
|
// b32 returns a uint32 0 or 1 representing b.
|
|
func b32(b bool) uint32 {
|
|
if b {
|
|
return 1
|
|
}
|
|
|
|
return 0
|
|
}
|