/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/kbfs/libkbfs/interfaces.go
2 685 строк
116 KB
zoom-ua
go-git v5 (#29408)
14 июл 2026, 00:27
Не верифицирован
14 июл 2026, 00:27
f6785dd
Код
Авторство
О чём код?
// Copyright 2016 Keybase Inc. All rights reserved. // Use of this source code is governed by a BSD // license that can be found in the LICENSE file. package libkbfs import ( "context" "os" "time" billy "github.com/go-git/go-billy/v5" "github.com/keybase/client/go/kbfs/data" "github.com/keybase/client/go/kbfs/favorites" "github.com/keybase/client/go/kbfs/idutil" "github.com/keybase/client/go/kbfs/kbfsblock" "github.com/keybase/client/go/kbfs/kbfscodec" "github.com/keybase/client/go/kbfs/kbfscrypto" "github.com/keybase/client/go/kbfs/kbfsedits" "github.com/keybase/client/go/kbfs/kbfsmd" "github.com/keybase/client/go/kbfs/ldbutils" "github.com/keybase/client/go/kbfs/libkey" "github.com/keybase/client/go/kbfs/tlf" "github.com/keybase/client/go/kbfs/tlfhandle" "github.com/keybase/client/go/libkb" "github.com/keybase/client/go/logger" "github.com/keybase/client/go/protocol/chat1" "github.com/keybase/client/go/protocol/keybase1" "github.com/keybase/go-framed-msgpack-rpc/rpc" metrics "github.com/rcrowley/go-metrics" ) type logMaker interface { MakeLogger(module string) logger.Logger MakeVLogger(logger.Logger) *libkb.VDebugLog GetPerfLog() logger.Logger } type blockCacher interface { BlockCache() data.BlockCache } type keyGetterGetter interface { keyGetter() blockKeyGetter } type codecGetter interface { Codec() kbfscodec.Codec } type blockOpsGetter interface { BlockOps() BlockOps } type blockServerGetter interface { BlockServer() BlockServer } type cryptoPureGetter interface { cryptoPure() cryptoPure } type cryptoGetter interface { Crypto() Crypto } type chatGetter interface { Chat() Chat } type currentSessionGetterGetter interface { CurrentSessionGetter() idutil.CurrentSessionGetter } type signerGetter interface { Signer() kbfscrypto.Signer } type diskBlockCacheGetter interface { DiskBlockCache() DiskBlockCache } type diskBlockCacheSetter interface { MakeDiskBlockCacheIfNotExists() error } type diskBlockCacheFractionSetter interface { SetDiskBlockCacheFraction(float64) } type syncBlockCacheFractionSetter interface { SetSyncBlockCacheFraction(float64) } type diskMDCacheGetter interface { DiskMDCache() DiskMDCache } type diskMDCacheSetter interface { MakeDiskMDCacheIfNotExists() error } type diskQuotaCacheGetter interface { DiskQuotaCache() DiskQuotaCache } type diskQuotaCacheSetter interface { MakeDiskQuotaCacheIfNotExists() error } type blockMetadataStoreGetSeter interface { MakeBlockMetadataStoreIfNotExists() error XattrStore() XattrStore // Other metadata store types goes here. } type clockGetter interface { Clock() Clock } type reporterGetter interface { Reporter() Reporter } type diskLimiterGetter interface { DiskLimiter() DiskLimiter } type syncedTlfGetterSetter interface { IsSyncedTlf(tlfID tlf.ID) bool IsSyncedTlfPath(tlfPath string) bool GetTlfSyncState(tlfID tlf.ID) FolderSyncConfig SetTlfSyncState( ctx context.Context, tlfID tlf.ID, config FolderSyncConfig) ( <-chan error, error) GetAllSyncedTlfs() []tlf.ID idutil.OfflineStatusGetter } type blockRetrieverGetter interface { BlockRetriever() BlockRetriever } type settingsDBGetter interface { GetSettingsDB() *SettingsDB } // SubscriptionManagerClientID identifies a subscriptionManager client. type SubscriptionManagerClientID string type subscriptionManagerGetter interface { // SubscriptionManager returns a subscription manager that can be used to // subscribe to events. // // clientID identifies a subscriptionManager client. Each user of the // subscription manager should specify a unique clientID. When a // notification happens, the client ID is provided. // // This is helpful for caller to filter out notifications that other clients // subscribe. // // If purgeable is true, the client is marked as purgeable. We keep a // maximum of 3 purgeable clients (FIFO). This is useful as a way to purge // old, likely dead, clients, which happens a lot with electron refreshes. // // notifier specifies how a notification should be delivered when things // change. If different notifiers are used across multiple calls to get the // subscription manager for the same clientID, only the first one is // effective. SubscriptionManager(clientID SubscriptionManagerClientID, purgeable bool, notifier SubscriptionNotifier) SubscriptionManager } type subscriptionManagerPublisherGetter interface { SubscriptionManagerPublisher() SubscriptionManagerPublisher } // NodeID is a unique but transient ID for a Node. That is, two Node // objects in memory at the same time represent the same file or // directory if and only if their NodeIDs are equal (by pointer). type NodeID interface { // ParentID returns the NodeID of the directory containing the // pointed-to file or directory, or nil if none exists. ParentID() NodeID } // NodeFSReadOnly is the subset of billy.Filesystem that is actually // used by libkbfs. The method comments are copied from go-billy. type NodeFSReadOnly interface { // ReadDir reads the directory named by dirname and returns a list of // directory entries sorted by filename. ReadDir(path string) ([]os.FileInfo, error) // Lstat returns a FileInfo describing the named file. If the file is a // symbolic link, the returned FileInfo describes the symbolic link. Lstat // makes no attempt to follow the link. Lstat(filename string) (os.FileInfo, error) // Readlink returns the target path of link. Readlink(link string) (string, error) // Open opens the named file for reading. If successful, methods on the // returned file can be used for reading; the associated file descriptor has // mode O_RDONLY. Open(filename string) (billy.File, error) // OpenFile is the generalized open call; most users will use Open or Create // instead. It opens the named file with specified flag (O_RDONLY etc.) and // perm, (0666 etc.) if applicable. If successful, methods on the returned // File can be used for I/O. OpenFile(filename string, flags int, mode os.FileMode) (billy.File, error) } // Node represents a direct pointer to a file or directory in KBFS. // It is somewhat like an inode in a regular file system. Users of // KBFS can use Node as a handle when accessing files or directories // they have previously looked up. type Node interface { // GetID returns the ID of this Node. This should be used as a // map key instead of the Node itself. GetID() NodeID // GetFolderBranch returns the folder ID and branch for this Node. GetFolderBranch() data.FolderBranch // GetBasename returns the current basename of the node, or "" // if the node has been unlinked. GetBasename() data.PathPartString // GetPathPlaintextSansTlf returns the cleaned path of the node in // plaintext. GetPathPlaintextSansTlf() (string, bool) // Readonly returns true if KBFS should outright reject any write // attempts on data or directory structures of this node. Though // note that even if it returns false, KBFS can reject writes to // the node for other reasons, such as TLF permissions. An // implementation that wraps another `Node` (`inner`) must return // `inner.Readonly()` if it decides not to return `true` on its // own. Readonly(ctx context.Context) bool // ShouldCreateMissedLookup is called for Nodes representing // directories, whenever `name` is looked up but is not found in // the directory. If the Node decides a new entry should be // created matching this lookup, it should return `true` as well // as a context to use for the creation, the type of the new entry // and the symbolic link contents if the entry is a Sym; the // caller should then create this entry. Otherwise it should // return false. It may return the types `FakeDir` or `FakeFile` // to indicate that the caller should pretend the entry exists, // even if it really does not. In the case of fake files, a // non-nil `fi` can be returned and used by the caller to // construct the dir entry for the file. It can also return the // type `RealDir`, along with a non-zero `ptr`, to indicate a real // directory corresponding to that pointer should be used. An // implementation that wraps another `Node` (`inner`) must return // `inner.ShouldCreateMissedLookup()` if it decides not to return // `true` on its own. ShouldCreateMissedLookup(ctx context.Context, name data.PathPartString) ( shouldCreate bool, newCtx context.Context, et data.EntryType, fi os.FileInfo, sympath data.PathPartString, ptr data.BlockPointer) // ShouldRetryOnDirRead is called for Nodes representing // directories, whenever a `Lookup` or `GetDirChildren` is done on // them. It should return true to instruct the caller that it // should re-sync its view of the directory and retry the // operation. ShouldRetryOnDirRead(ctx context.Context) bool // RemoveDir is called on a `Node` before going through the normal // `RemoveDir` flow, to give the Node a chance to handle it in a // custom way. If the `Node` handles it internally, it should // return `true`. RemoveDir(ctx context.Context, dirName data.PathPartString) ( removeHandled bool, err error) // WrapChild returns a wrapped version of child, if desired, to // add custom behavior to the child node. An implementation that // wraps another `Node` (`inner`) must first call // `inner.WrapChild(child)` before performing its own wrapping // operation, to ensure that all wrapping is preserved and that it // happens in the correct order. WrapChild(child Node) Node // Unwrap returns the initial, unwrapped Node that was used to // create this Node. Unwrap() Node // GetFS returns a file system interface that, if non-nil, should // be used to satisfy any directory-related calls on this Node, // instead of the standard, block-based method of acessing data. // The provided context will be used, if possible, for any // subsequent calls on the file system. GetFS(ctx context.Context) NodeFSReadOnly // GetFile returns a file interface that, if non-nil, should be // used to satisfy any file-related calls on this Node, instead of // the standard, block-based method of accessing data. The // provided context will be used, if possible, for any subsequent // calls on the file. GetFile(ctx context.Context) billy.File // EntryType is the type of the entry represented by this node. EntryType() data.EntryType // GetBlockID returns the block ID of the node. GetBlockID() kbfsblock.ID // FillCacheDuration sets `d` to the suggested cache time for this // node, if desired. FillCacheDuration(d *time.Duration) // Obfuscator returns something that can obfuscate the child // entries of this Node in the case of directories; for other // types, it returns nil. Obfuscator() data.Obfuscator // ChildName returns an obfuscatable version of the given name of // a child entry of this node. ChildName(name string) data.PathPartString } // SyncedTlfMD contains the node metadata and handle for a given synced TLF. type SyncedTlfMD struct { MD NodeMetadata Handle *tlfhandle.Handle } // KBFSOps handles all file system operations. Expands all indirect // pointers. Operations that modify the server data change all the // block IDs along the path, and so must return a path with the new // BlockIds so the caller can update their references. // // KBFSOps implementations must guarantee goroutine-safety of calls on // a per-top-level-folder basis. // // There are two types of operations that could block: // - remote-sync operations, that need to synchronously update the // MD for the corresponding top-level folder. When these // operations return successfully, they will have guaranteed to // have successfully written the modification to the KBFS servers. // - remote-access operations, that don't sync any modifications to KBFS // servers, but may block on reading data from the servers. // // KBFSOps implementations are supposed to give git-like consistency // semantics for modification operations; they will be visible to // other clients immediately after the remote-sync operations succeed, // if and only if there was no other intervening modification to the // same folder. If not, the change will be sync'd to the server in a // special per-device "unmerged" area before the operation succeeds. // In this case, the modification will not be visible to other clients // until the KBFS code on this device performs automatic conflict // resolution in the background. // // All methods take a Context (see https://blog.golang.org/context), // and if that context is cancelled during the operation, KBFSOps will // abort any blocking calls and return ctx.Err(). Any notifications // resulting from an operation will also include this ctx (or a // Context derived from it), allowing the caller to determine whether // the notification is a result of their own action or an external // action. // // Each directory and file name is specified with a // `data.PathPartString`, to protect against accidentally logging // plaintext filenames. These can be easily created from the parent // node's `Node` object with the `ChildName` function. type KBFSOps interface { // GetFavorites returns the logged-in user's list of favorite // top-level folders. This is a remote-access operation when the cache // is empty or expired. GetFavorites(ctx context.Context) ([]favorites.Folder, error) // GetFolderWithFavFlags returns a keybase1.FolderWithFavFlags for given // handle. GetFolderWithFavFlags(ctx context.Context, handle *tlfhandle.Handle) (keybase1.FolderWithFavFlags, error) // GetFavoritesAll returns the logged-in user's lists of favorite, ignored, // and new top-level folders. This is a remote-access operation when the // cache is empty or expired. GetFavoritesAll(ctx context.Context) (keybase1.FavoritesResult, error) // GetBadge returns the overall KBFS badge state for this device. // It's cheaper than the other favorites methods. GetBadge(ctx context.Context) (keybase1.FilesTabBadge, error) // RefreshCachedFavorites tells the instances to forget any cached // favorites list and fetch a new list from the server. The // effects are asynchronous; if there's an error refreshing the // favorites, the cached favorites will become empty. RefreshCachedFavorites(ctx context.Context, mode FavoritesRefreshMode) // ClearCachedFavorites tells the instances to forget any cached // favorites list, e.g. when a user logs out. ClearCachedFavorites(ctx context.Context) // AddFavorite adds the favorite to both the server and // the local cache. AddFavorite(ctx context.Context, fav favorites.Folder, data favorites.Data) error // DeleteFavorite deletes the favorite from both the server and // the local cache. Idempotent, so it succeeds even if the folder // isn't favorited. DeleteFavorite(ctx context.Context, fav favorites.Folder) error // SetFavoritesHomeTLFInfo sets the home TLF TeamIDs to initialize the // favorites cache on login. SetFavoritesHomeTLFInfo(ctx context.Context, info homeTLFInfo) // RefreshEditHistory asks the FBO for the given favorite to reload its // edit history. RefreshEditHistory(fav favorites.Folder) // GetTLFCryptKeys gets crypt key of all generations as well as // TLF ID for tlfHandle. The returned keys (the keys slice) are ordered by // generation, starting with the key for FirstValidKeyGen. GetTLFCryptKeys(ctx context.Context, tlfHandle *tlfhandle.Handle) ( keys []kbfscrypto.TLFCryptKey, id tlf.ID, err error) // GetTLFID gets the TLF ID for tlfHandle. GetTLFID(ctx context.Context, tlfHandle *tlfhandle.Handle) (tlf.ID, error) // GetTLFHandle returns the TLF handle for a given node. GetTLFHandle(ctx context.Context, node Node) (*tlfhandle.Handle, error) // GetOrCreateRootNode returns the root node and root entry // info associated with the given TLF handle and branch, if // the logged-in user has read permissions to the top-level // folder. It creates the folder if one doesn't exist yet (and // branch == MasterBranch), and the logged-in user has write // permissions to the top-level folder. This is a // remote-access operation. GetOrCreateRootNode( ctx context.Context, h *tlfhandle.Handle, branch data.BranchName) ( node Node, ei data.EntryInfo, err error) // GetRootNode is like GetOrCreateRootNode but if the root node // does not exist it will return a nil Node and not create it. GetRootNode( ctx context.Context, h *tlfhandle.Handle, branch data.BranchName) ( node Node, ei data.EntryInfo, err error) // GetDirChildren returns a map of children in the directory, // mapped to their EntryInfo, if the logged-in user has read // permission for the top-level folder. This is a remote-access // operation. GetDirChildren(ctx context.Context, dir Node) ( map[data.PathPartString]data.EntryInfo, error) // Lookup returns the Node and entry info associated with a // given name in a directory, if the logged-in user has read // permissions to the top-level folder. The returned Node is nil // if the name is a symlink. This is a remote-access operation. Lookup(ctx context.Context, dir Node, name data.PathPartString) ( Node, data.EntryInfo, error) // Stat returns the entry info associated with a // given Node, if the logged-in user has read permissions to the // top-level folder. This is a remote-access operation. Stat(ctx context.Context, node Node) (data.EntryInfo, error) // CreateDir creates a new subdirectory under the given node, if // the logged-in user has write permission to the top-level // folder. Returns the new Node for the created subdirectory, and // its new entry info. This is a remote-sync operation. CreateDir(ctx context.Context, dir Node, name data.PathPartString) ( Node, data.EntryInfo, error) // CreateFile creates a new file under the given node, if the // logged-in user has write permission to the top-level folder. // Returns the new Node for the created file, and its new // entry info. excl (when implemented) specifies whether this is an exclusive // create. Semantically setting excl to WithExcl is like O_CREAT|O_EXCL in a // Unix open() call. // // This is a remote-sync operation. CreateFile( ctx context.Context, dir Node, name data.PathPartString, isExec bool, excl Excl) (Node, data.EntryInfo, error) // CreateLink creates a new symlink under the given node, if the // logged-in user has write permission to the top-level folder. // Returns the new entry info for the created symlink. The // symlink is represented as a single `data.PathPartString` // (generally obfuscated by `dir`'s Obfuscator) to avoid // accidental logging, even though it could point outside of the // directory. The deobfuscate command will inspect symlinks when // deobfuscating to make this easier to debug. This is a // remote-sync operation. CreateLink( ctx context.Context, dir Node, fromName, toPath data.PathPartString) ( data.EntryInfo, error) // RemoveDir removes the subdirectory represented by the given // node, if the logged-in user has write permission to the // top-level folder. Will return an error if the subdirectory is // not empty. This is a remote-sync operation. RemoveDir(ctx context.Context, dir Node, dirName data.PathPartString) error // RemoveEntry removes the directory entry represented by the // given node, if the logged-in user has write permission to the // top-level folder. This is a remote-sync operation. RemoveEntry(ctx context.Context, dir Node, name data.PathPartString) error // Rename performs an atomic rename operation with a given // top-level folder if the logged-in user has write permission to // that folder, and will return an error if nodes from different // folders are passed in. Also returns an error if the new name // already has an entry corresponding to an existing directory // (only non-dir types may be renamed over). This is a // remote-sync operation. Rename( ctx context.Context, oldParent Node, oldName data.PathPartString, newParent Node, newName data.PathPartString) error // Read fills in the given buffer with data from the file at the // given node starting at the given offset, if the logged-in user // has read permission to the top-level folder. The read data // reflects any outstanding writes and truncates to that file that // have been written through this KBFSOps object, even if those // writes have not yet been sync'd. There is no guarantee that // Read returns all of the requested data; it will return the // number of bytes that it wrote to the dest buffer. Reads on an // unlinked file may or may not succeed, depending on whether or // not the data has been cached locally. If (0, nil) is returned, // that means EOF has been reached. This is a remote-access // operation. Read(ctx context.Context, file Node, dest []byte, off int64) (int64, error) // Write modifies the file at the given node, by writing the given // buffer at the given offset within the file, if the logged-in // user has write permission to the top-level folder. It // overwrites any data already there, and extends the file size as // necessary to accommodate the new data. It guarantees to write // the entire buffer in one operation. Writes on an unlinked file // may or may not succeed as no-ops, depending on whether or not // the necessary blocks have been locally cached. This is a // remote-access operation. Write(ctx context.Context, file Node, data []byte, off int64) error // Truncate modifies the file at the given node, by either // shrinking or extending its size to match the given size, if the // logged-in user has write permission to the top-level folder. // If extending the file, it pads the new data with 0s. Truncates // on an unlinked file may or may not succeed as no-ops, depending // on whether or not the necessary blocks have been locally // cached. This is a remote-access operation. Truncate(ctx context.Context, file Node, size uint64) error // SetEx turns on or off the executable bit on the file // represented by a given node, if the logged-in user has write // permissions to the top-level folder. This is a remote-sync // operation. SetEx(ctx context.Context, file Node, ex bool) error // SetMtime sets the modification time on the file represented by // a given node, if the logged-in user has write permissions to // the top-level folder. If mtime is nil, it is a noop. This is // a remote-sync operation. SetMtime(ctx context.Context, file Node, mtime *time.Time) error // SyncAll flushes all outstanding writes and truncates for any // dirty files to the KBFS servers within the given folder, if the // logged-in user has write permissions to the top-level folder. // If done through a file system interface, this may include // modifications done via multiple file handles. This is a // remote-sync operation. SyncAll(ctx context.Context, folderBranch data.FolderBranch) error // FolderStatus returns the status of a particular folder/branch, along // with a channel that will be closed when the status has been // updated (to eliminate the need for polling this method). FolderStatus(ctx context.Context, folderBranch data.FolderBranch) ( FolderBranchStatus, <-chan StatusUpdate, error) // FolderConflictStatus is a lightweight method to return the // conflict status of a particular folder/branch. (The conflict // status is also available in `FolderBranchStatus`.) FolderConflictStatus(ctx context.Context, folderBranch data.FolderBranch) ( keybase1.FolderConflictType, error) // Status returns the status of KBFS, along with a channel that will be // closed when the status has been updated (to eliminate the need for // polling this method). Note that this channel only applies to // connection status changes. // // KBFSStatus can be non-empty even if there is an error. Status(ctx context.Context) ( KBFSStatus, <-chan StatusUpdate, error) // UnstageForTesting clears out this device's staged state, if // any, and fast-forwards to the current head of this // folder-branch. UnstageForTesting(ctx context.Context, folderBranch data.FolderBranch) error // RequestRekey requests to rekey this folder. Note that this asynchronously // requests a rekey, so canceling ctx doesn't cancel the rekey. RequestRekey(ctx context.Context, id tlf.ID) // SyncFromServer blocks until the local client has contacted the // server and guaranteed that all known updates for the given // top-level folder have been applied locally (and notifications // sent out to any observers). It returns an error if this // folder-branch is currently unmerged or dirty locally. If // lockBeforeGet is non-nil, it blocks on idempotently taking the // lock from server at the time it gets any metadata. SyncFromServer(ctx context.Context, folderBranch data.FolderBranch, lockBeforeGet *keybase1.LockID) error // GetUpdateHistory returns a complete history of all the merged // updates of the given folder, in a data structure that's // suitable for encoding directly into JSON. This is an expensive // operation, and should only be used for occasional debugging. // Note that the history does not include any unmerged changes or // outstanding writes from the local device. To get all the // revisions after `start`, use `kbfsmd.RevisionUninitialized` for // the `end` parameter. GetUpdateHistory( ctx context.Context, folderBranch data.FolderBranch, start, end kbfsmd.Revision) (history TLFUpdateHistory, err error) // GetEditHistory returns the edit history of the TLF, clustered // by writer. GetEditHistory(ctx context.Context, folderBranch data.FolderBranch) ( tlfHistory keybase1.FSFolderEditHistory, err error) // GetNodeMetadata gets metadata associated with a Node. GetNodeMetadata(ctx context.Context, node Node) (NodeMetadata, error) // GetRootNodeMetadata gets metadata associated with the root node // of a FolderBranch, and for convenience the TLF handle as well. GetRootNodeMetadata(ctx context.Context, folderBranch data.FolderBranch) ( NodeMetadata, *tlfhandle.Handle, error) // Shutdown is called to clean up any resources associated with // this KBFSOps instance. Shutdown(ctx context.Context) error // PushConnectionStatusChange updates the status of a service for // human readable connection status tracking. PushConnectionStatusChange(service string, newStatus error) // PushStatusChange causes Status listeners to be notified via closing // the status channel. PushStatusChange() // ClearPrivateFolderMD clears any cached private folder metadata, // e.g. on a logout. ClearPrivateFolderMD(ctx context.Context) // ForceFastForward forwards the nodes of all folders that have // been previously cleared with `ClearPrivateFolderMD` to their // newest version. It works asynchronously, so no error is // returned. ForceFastForward(ctx context.Context) // InvalidateNodeAndChildren sends invalidation messages for the // given node and all of its children that are currently in the // NodeCache. It's useful if the caller has outside knowledge of // data changes to that node or its children that didn't come // through the usual MD update channels (e.g., autogit nodes need // invalidation when the corresponding git repo is updated). InvalidateNodeAndChildren(ctx context.Context, node Node) error // TeamNameChanged indicates that a team has changed its name, and // we should clean up any outstanding handle info associated with // the team ID. TeamNameChanged(ctx context.Context, tid keybase1.TeamID) // TeamAbandoned indicates that a team has been abandoned, and // shouldn't be referred to by its previous name anymore. TeamAbandoned(ctx context.Context, tid keybase1.TeamID) // CheckMigrationPerms returns an error if this device cannot // perform implicit team migration for the given TLF. CheckMigrationPerms(ctx context.Context, id tlf.ID) (err error) // MigrateToImplicitTeam migrates the given folder from a private- // or public-keyed folder, to a team-keyed folder. If it's // already a private/public team-keyed folder, nil is returned. MigrateToImplicitTeam(ctx context.Context, id tlf.ID) error // KickoffAllOutstandingRekeys kicks off all outstanding rekeys. It does // nothing to folders that have not scheduled a rekey. This should be // called when we receive an event of "paper key cached" from service. KickoffAllOutstandingRekeys() error // NewNotificationChannel is called to notify any existing TLF // matching `handle` that a new kbfs-edits channel is available. NewNotificationChannel( ctx context.Context, handle *tlfhandle.Handle, convID chat1.ConversationID, channelName string) // ClearConflictView moves the conflict view of the given TLF out of the // way and resets the state of the TLF. ClearConflictView(ctx context.Context, tlfID tlf.ID) error // FinishResolvingConflict removes the local view of a // previously-cleared conflict. FinishResolvingConflict(ctx context.Context, fb data.FolderBranch) error // ForceStuckConflictForTesting forces the local view of the given // TLF into a stuck conflict view, in order to test the above // `ClearConflictView` method and related state changes. ForceStuckConflictForTesting(ctx context.Context, tlfID tlf.ID) error // CancelUploads stops journal uploads for the given TLF, reverts // the local view of the TLF to the server's view, and clears the // journal from the disk. Note that this could result in // partially-uploaded changes, and may leak blocks on the bserver. CancelUploads(ctx context.Context, fb data.FolderBranch) error // Reset completely resets the given folder. Should only be // called after explicit user confirmation. After the call, // `handle` has the new TLF ID. If `*newTlfID` is non-nil, that // will be the new TLF ID of the reset TLF, if it already points // to a MD object that matches the same handle as the original TLF // (see HOTPOT-685 for an example of how this can happen -- it // should be very rare). Reset(ctx context.Context, handle *tlfhandle.Handle, newTlfID *tlf.ID) error // GetSyncConfig returns the sync state configuration for the // given TLF. GetSyncConfig(ctx context.Context, tlfID tlf.ID) ( keybase1.FolderSyncConfig, error) // SetSyncConfig sets the sync state configuration for the given // TLF to either fully enabled, fully disabled, or partially // syncing selected paths. If syncing is disabled, it returns a // channel that is closed when all of the TLF's blocks have been // removed from the sync cache. For a partially-synced folder, // the config must contain no absolute paths, no duplicate paths, // and no relative paths that go out of the TLF. SetSyncConfig( ctx context.Context, tlfID tlf.ID, config keybase1.FolderSyncConfig) ( <-chan error, error) // GetAllSyncedTlfMDs returns the synced TLF metadata (and // handle), only for those synced TLFs to which the current // logged-in user has access. GetAllSyncedTlfMDs(ctx context.Context) map[tlf.ID]SyncedTlfMD // AddRootNodeWrapper adds a new root node wrapper for every // existing TLF. Any Nodes that have already been returned by // `KBFSOps` won't use these wrappers. AddRootNodeWrapper(func(Node) Node) // StatusOfServices returns the current status of various connected // services. StatusOfServices() (map[string]error, chan StatusUpdate) } type gitMetadataPutter interface { PutGitMetadata(ctx context.Context, folder keybase1.FolderHandle, repoID keybase1.RepoID, metadata keybase1.GitLocalMetadata) error } // KeybaseService is an interface for communicating with the keybase // service. type KeybaseService interface { idutil.KeybaseService gitMetadataPutter SubscriptionNotifier // FavoriteAdd adds the given folder to the list of favorites. FavoriteAdd(ctx context.Context, folder keybase1.FolderHandle) error // FavoriteAdd removes the given folder from the list of // favorites. FavoriteDelete(ctx context.Context, folder keybase1.FolderHandle) error // FavoriteList returns the current list of favorites. FavoriteList(ctx context.Context, sessionID int) (keybase1.FavoritesResult, error) // EncryptFavorites encrypts cached favorites to store on disk. EncryptFavorites(ctx context.Context, dataToEncrypt []byte) ([]byte, error) // DecryptFavorites decrypts cached favorites stored on disk. DecryptFavorites(ctx context.Context, dataToDecrypt []byte) ([]byte, error) // NotifyOnlineStatusChanged notifies about online/offline status // changes. NotifyOnlineStatusChanged(ctx context.Context, online bool) error // Notify sends a filesystem notification. Notify(ctx context.Context, notification *keybase1.FSNotification) error // NotifyPathUpdated sends a path updated notification. NotifyPathUpdated(ctx context.Context, path string) error // NotifySyncStatus sends a sync status notification. NotifySyncStatus(ctx context.Context, status *keybase1.FSPathSyncStatus) error // NotifyOverallSyncStatus sends an overall sync status // notification. NotifyOverallSyncStatus( ctx context.Context, status keybase1.FolderSyncStatus) error // NotifyFavoritesChanged sends a notification that favorites have // changed. NotifyFavoritesChanged(ctx context.Context) error // FlushUserFromLocalCache instructs this layer to clear any // KBFS-side, locally-cached information about the given user. // This does NOT involve communication with the daemon, this is // just to force future calls loading this user to fall through to // the daemon itself, rather than being served from the cache. FlushUserFromLocalCache(ctx context.Context, uid keybase1.UID) // ClearCaches flushes all user and team info from KBFS-side // caches. ClearCaches(ctx context.Context) // TODO: Add CryptoClient methods, too. // EstablishMountDir asks the service for the current mount path // and sets it if not established. EstablishMountDir(ctx context.Context) (string, error) // GetKVStoreClient returns a client for accessing the KVStore service. GetKVStoreClient() keybase1.KvstoreInterface // GetKeybaseDaemonRawClient returns the raw RPC client that can be used to // construct protocol clients. GetKeybaseDaemonRawClient() rpc.GenericClient // Shutdown frees any resources associated with this // instance. No other methods may be called after this is // called. Shutdown() } // KeybaseServiceCn defines methods needed to construct KeybaseService // and Crypto implementations. type KeybaseServiceCn interface { NewKeybaseService( config Config, params InitParams, ctx Context, log logger.Logger) ( KeybaseService, error) NewCrypto( config Config, params InitParams, ctx Context, log logger.Logger) ( Crypto, error) NewChat( config Config, params InitParams, ctx Context, log logger.Logger) ( Chat, error) } // teamMembershipChecker is a copy of kbfsmd.TeamMembershipChecker for // embedding in KBPKI. Unfortunately, this is necessary since mockgen // can't handle embedded interfaces living in other packages. type teamMembershipChecker interface { // IsTeamWriter is a copy of // kbfsmd.TeamMembershipChecker.IsTeamWriter. // // If the caller knows that the writership needs to be checked // while offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `IsTeamWriter` might block on a network // call. IsTeamWriter( ctx context.Context, tid keybase1.TeamID, uid keybase1.UID, verifyingKey kbfscrypto.VerifyingKey, offline keybase1.OfflineAvailability) (bool, error) // NoLongerTeamWriter returns the global Merkle root of the // most-recent time the given user (with the given device key, // which implies an eldest seqno) transitioned from being a writer // to not being a writer on the given team. If the user was never // a writer of the team, it returns an error. // // If the caller knows that the writership needs to be checked // while offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `NoLongerTeamWriter` might block on a // network call. NoLongerTeamWriter( ctx context.Context, tid keybase1.TeamID, tlfType tlf.Type, uid keybase1.UID, verifyingKey kbfscrypto.VerifyingKey, offline keybase1.OfflineAvailability) (keybase1.MerkleRootV2, error) // IsTeamReader is a copy of // kbfsmd.TeamMembershipChecker.IsTeamWriter. // // If the caller knows that the readership needs to be checked // while offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `IsTeamReader` might block on a // network call. IsTeamReader( ctx context.Context, tid keybase1.TeamID, uid keybase1.UID, offline keybase1.OfflineAvailability) (bool, error) } type teamKeysGetter interface { // GetTeamTLFCryptKeys gets all of a team's secret crypt keys, by // generation, as well as the latest key generation number for the // team. The caller can specify `desiredKeyGen` to force a server // check if that particular key gen isn't yet known; it may be set // to UnspecifiedKeyGen if no server check is required. // // If the caller knows that the keys need to be retrieved while // offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `GetTeamTLFCryptKeys` might block on a // network call. GetTeamTLFCryptKeys(ctx context.Context, tid keybase1.TeamID, desiredKeyGen kbfsmd.KeyGen, offline keybase1.OfflineAvailability) ( map[kbfsmd.KeyGen]kbfscrypto.TLFCryptKey, kbfsmd.KeyGen, error) } type teamRootIDGetter interface { // GetTeamRootID returns the root team ID for the given (sub)team // ID. // // If the caller knows that the root needs to be retrieved while // offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `GetTeamRootID` might block on a network // call. GetTeamRootID( ctx context.Context, tid keybase1.TeamID, offline keybase1.OfflineAvailability) (keybase1.TeamID, error) } // KBPKI interacts with the Keybase daemon to fetch user info. type KBPKI interface { idutil.KBPKI idutil.MerkleRootGetter teamMembershipChecker teamKeysGetter teamRootIDGetter gitMetadataPutter // HasVerifyingKey returns nil if the given user has the given // VerifyingKey, and an error otherwise. If the revoked key was // valid according to the untrusted server timestamps, a special // error type `RevokedDeviceVerificationError` is returned, which // includes information the caller can use to verify the key using // the merkle tree. // // If the caller knows that the keys needs to be verified while // offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `HasVerifyingKey` might block on a // network call. HasVerifyingKey(ctx context.Context, uid keybase1.UID, verifyingKey kbfscrypto.VerifyingKey, atServerTime time.Time, offline keybase1.OfflineAvailability) error // GetCryptPublicKeys gets all of a user's crypt public keys (including // paper keys). // // If the caller knows that the keys needs to be retrieved while // offline, they should pass in // `keybase1.OfflineAvailability_BEST_EFFORT` as the `offline` // parameter. Otherwise `GetCryptPublicKeys` might block on a // network call. GetCryptPublicKeys( ctx context.Context, uid keybase1.UID, offline keybase1.OfflineAvailability) ( []kbfscrypto.CryptPublicKey, error) // TODO: Split the methods below off into a separate // FavoriteOps interface. // FavoriteAdd adds folder to the list of the logged in user's // favorite folders. It is idempotent. FavoriteAdd(ctx context.Context, folder keybase1.FolderHandle) error // FavoriteDelete deletes folder from the list of the logged in user's // favorite folders. It is idempotent. FavoriteDelete(ctx context.Context, folder keybase1.FolderHandle) error // FavoriteList returns the list of all favorite folders for // the logged in user. FavoriteList(ctx context.Context) (keybase1.FavoritesResult, error) // CreateTeamTLF associates the given TLF ID with the team ID in // the team's sigchain. If the team already has a TLF ID // associated with it, this overwrites it. CreateTeamTLF( ctx context.Context, teamID keybase1.TeamID, tlfID tlf.ID) error // Notify sends a filesystem notification. Notify(ctx context.Context, notification *keybase1.FSNotification) error // NotifyPathUpdated sends a path updated notification. NotifyPathUpdated(ctx context.Context, path string) error // InvalidateTeamCacheForID instructs KBPKI to discard any cached // information about the given team ID. InvalidateTeamCacheForID(tid keybase1.TeamID) } // KeyMetadataWithRootDirEntry is like KeyMetadata, but can also // return the root dir entry for the associated MD update. type KeyMetadataWithRootDirEntry interface { libkey.KeyMetadata // GetRootDirEntry returns the root directory entry for the // associated MD. GetRootDirEntry() data.DirEntry } type encryptionKeyGetter interface { // GetTLFCryptKeyForEncryption gets the crypt key to use for // encryption (i.e., with the latest key generation) for the // TLF with the given metadata. GetTLFCryptKeyForEncryption(ctx context.Context, kmd libkey.KeyMetadata) ( kbfscrypto.TLFCryptKey, error) } type mdDecryptionKeyGetter interface { // GetTLFCryptKeyForMDDecryption gets the crypt key to use for the // TLF with the given metadata to decrypt the private portion of // the metadata. It finds the appropriate key from mdWithKeys // (which in most cases is the same as mdToDecrypt) if it's not // already cached. GetTLFCryptKeyForMDDecryption(ctx context.Context, kmdToDecrypt, kmdWithKeys libkey.KeyMetadata) ( kbfscrypto.TLFCryptKey, error) // GetFirstTLFCryptKey gets the first valid crypt key for the // TLF with the given metadata. GetFirstTLFCryptKey(ctx context.Context, kmd libkey.KeyMetadata) ( kbfscrypto.TLFCryptKey, error) } type blockDecryptionKeyGetter interface { // GetTLFCryptKeyForBlockDecryption gets the crypt key to use // for the TLF with the given metadata to decrypt the block // pointed to by the given pointer. GetTLFCryptKeyForBlockDecryption(ctx context.Context, kmd libkey.KeyMetadata, blockPtr data.BlockPointer) (kbfscrypto.TLFCryptKey, error) } type blockKeyGetter interface { encryptionKeyGetter blockDecryptionKeyGetter } // KeyManager fetches and constructs the keys needed for KBFS file // operations. type KeyManager interface { blockKeyGetter mdDecryptionKeyGetter // GetTLFCryptKeyOfAllGenerations gets the crypt keys of all generations // for current devices. keys contains crypt keys from all generations, in // order, starting from FirstValidKeyGen. GetTLFCryptKeyOfAllGenerations(ctx context.Context, kmd libkey.KeyMetadata) ( keys []kbfscrypto.TLFCryptKey, err error) // Rekey checks the given MD object, if it is a private TLF, // against the current set of device keys for all valid // readers and writers. If there are any new devices, it // updates all existing key generations to include the new // devices. If there are devices that have been removed, it // creates a new epoch of keys for the TLF. If there was an // error, or the RootMetadata wasn't changed, it returns false. // Otherwise, it returns true. If a new key generation is // added the second return value points to this new key. This // is to allow for caching of the TLF crypt key only after a // successful merged write of the metadata. Otherwise we could // prematurely pollute the key cache. // // If the given MD object is a public TLF, it simply updates // the TLF's handle with any newly-resolved writers. // // If promptPaper is set, prompts for any unlocked paper keys. // promptPaper shouldn't be set if md is for a public TLF. Rekey(ctx context.Context, md *RootMetadata, promptPaper bool) ( bool, *kbfscrypto.TLFCryptKey, error) } // Reporter exports events (asynchronously) to any number of sinks type Reporter interface { // ReportErr records that a given error happened. ReportErr(ctx context.Context, tlfName tlf.CanonicalName, t tlf.Type, mode ErrorModeType, err error) // AllKnownErrors returns all errors known to this Reporter. AllKnownErrors() []ReportedError // NotifyOnlineStatusChanged sends the given notification to any sink. OnlineStatusChanged(ctx context.Context, online bool) // Notify sends the given notification to any sink. Notify(ctx context.Context, notification *keybase1.FSNotification) // NotifyPathUpdated sends the given notification to any sink. NotifyPathUpdated(ctx context.Context, path string) // NotifySyncStatus sends the given path sync status to any sink. NotifySyncStatus(ctx context.Context, status *keybase1.FSPathSyncStatus) // NotifyOverallSyncStatus sends the given path overall sync // status to any sink. NotifyOverallSyncStatus( ctx context.Context, status keybase1.FolderSyncStatus) // NotifyFavoritesChanged sends the a favorites invalidation to any sink. NotifyFavoritesChanged(ctx context.Context) // Shutdown frees any resources allocated by a Reporter. Shutdown() } // MDCache gets and puts plaintext top-level metadata into the cache. type MDCache interface { // Get gets the metadata object associated with the given TLF ID, // revision number, and branch ID (kbfsmd.NullBranchID for merged MD). Get(tlf tlf.ID, rev kbfsmd.Revision, bid kbfsmd.BranchID) (ImmutableRootMetadata, error) // Put stores the metadata object, only if an MD matching that TLF // ID, revision number, and branch ID isn't already cached. If // there is already a matching item in the cache, we require that // caller manages the cache explicitly by deleting or replacing it // explicitly. This should be used when putting existing MDs // being fetched from the server. Put(md ImmutableRootMetadata) error // Delete removes the given metadata object from the cache if it exists. Delete(tlf tlf.ID, rev kbfsmd.Revision, bid kbfsmd.BranchID) // Replace replaces the entry matching the md under the old branch // ID with the new one. If the old entry doesn't exist, this is // equivalent to a Put, except that it overrides anything else // that's already in the cache. This should be used when putting // new MDs created locally. Replace(newRmd ImmutableRootMetadata, oldBID kbfsmd.BranchID) error // MarkPutToServer sets `PutToServer` to true for the specified // MD, if it already exists in the cache. MarkPutToServer(tlf tlf.ID, rev kbfsmd.Revision, bid kbfsmd.BranchID) // GetIDForHandle retrieves a cached, trusted TLF ID for the given // handle, if one exists. GetIDForHandle(handle *tlfhandle.Handle) (tlf.ID, error) // PutIDForHandle caches a trusted TLF ID for the given handle. PutIDForHandle(handle *tlfhandle.Handle, id tlf.ID) error // ChangeHandleForID moves an ID to be under a new handle, if the // ID is cached already. ChangeHandleForID(oldHandle *tlfhandle.Handle, newHandle *tlfhandle.Handle) // GetNextMD returns a cached view of the next MD following the // given global Merkle root. GetNextMD(tlfID tlf.ID, rootSeqno keybase1.Seqno) ( nextKbfsRoot *kbfsmd.MerkleRoot, nextMerkleNodes [][]byte, nextRootSeqno keybase1.Seqno, err error) // PutNextMD caches a view of the next MD following the given // global Merkle root. PutNextMD(tlfID tlf.ID, rootSeqno keybase1.Seqno, nextKbfsRoot *kbfsmd.MerkleRoot, nextMerkleNodes [][]byte, nextRootSeqno keybase1.Seqno) error } // KeyCache handles caching for both TLFCryptKeys and BlockCryptKeys. type KeyCache interface { // GetTLFCryptKey gets the crypt key for the given TLF. GetTLFCryptKey(tlf.ID, kbfsmd.KeyGen) (kbfscrypto.TLFCryptKey, error) // PutTLFCryptKey stores the crypt key for the given TLF. PutTLFCryptKey(tlf.ID, kbfsmd.KeyGen, kbfscrypto.TLFCryptKey) error } // DiskBlockCacheType specifies a type of an on-disk block cache. type DiskBlockCacheType int const ( // DiskBlockAnyCache indicates that any disk block cache is fine. DiskBlockAnyCache DiskBlockCacheType = iota // DiskBlockWorkingSetCache indicates that the working set cache // should be used. DiskBlockWorkingSetCache // DiskBlockSyncCache indicates that the sync cache should be // used. DiskBlockSyncCache ) func (dbct DiskBlockCacheType) String() string { switch dbct { case DiskBlockSyncCache: return "DiskBlockSyncCache" case DiskBlockWorkingSetCache: return "DiskBlockWorkingSetCache" case DiskBlockAnyCache: return "DiskBlockAnyCache" default: return "unknown DiskBlockCacheType" } } // DiskBlockCache caches blocks to the disk. type DiskBlockCache interface { // Get gets a block from the disk cache. If a specific preferred // cache type is given, the block and its metadata are moved to // that cache if they're not yet in it. Get(ctx context.Context, tlfID tlf.ID, blockID kbfsblock.ID, preferredCacheType DiskBlockCacheType) ( buf []byte, serverHalf kbfscrypto.BlockCryptKeyServerHalf, prefetchStatus PrefetchStatus, err error) // GetPrefetchStatus returns just the prefetchStatus for the // block. If a specific preferred cache type is given, the block // and its metadata are moved to that cache if they're not yet in // it. GetPrefetchStatus( ctx context.Context, tlfID tlf.ID, blockID kbfsblock.ID, cacheType DiskBlockCacheType) (PrefetchStatus, error) // Put puts a block to the disk cache. Returns after it has // updated the metadata but before it has finished writing the // block. If cacheType is specified, the block is put into that // cache; by default, block are put into the working set cache. Put(ctx context.Context, tlfID tlf.ID, blockID kbfsblock.ID, buf []byte, serverHalf kbfscrypto.BlockCryptKeyServerHalf, cacheType DiskBlockCacheType) error // Delete deletes some blocks from the disk cache. Delete( ctx context.Context, blockIDs []kbfsblock.ID, cacheType DiskBlockCacheType) ( numRemoved int, sizeRemoved int64, err error) // UpdateMetadata updates metadata for a given block in the disk // cache. If a specific preferred cache type is given, the block // and its metadata are moved to that cache if they're not yet in // it. UpdateMetadata(ctx context.Context, tlfID tlf.ID, blockID kbfsblock.ID, prefetchStatus PrefetchStatus, cacheType DiskBlockCacheType) error // ClearAllTlfBlocks deletes all the synced blocks corresponding // to the given TLF ID from the cache. It doesn't affect // transient blocks for unsynced TLFs. ClearAllTlfBlocks( ctx context.Context, tlfID tlf.ID, cacheType DiskBlockCacheType) error // GetLastUnrefRev returns the last revision that has been marked // unref'd for the given TLF. GetLastUnrefRev( ctx context.Context, tlfID tlf.ID, cacheType DiskBlockCacheType) ( kbfsmd.Revision, error) // PutLastUnrefRev saves the given revision as the last unref'd // revision for the given TLF. PutLastUnrefRev( ctx context.Context, tlfID tlf.ID, rev kbfsmd.Revision, cacheType DiskBlockCacheType) error // Status returns the current status of the disk cache. Status(ctx context.Context) map[string]DiskBlockCacheStatus // DoesCacheHaveSpace returns whether the given cache has // space. DoesCacheHaveSpace(ctx context.Context, cacheType DiskBlockCacheType) (bool, int64, error) // Mark tags a given block in the disk cache with the given tag. Mark( ctx context.Context, blockID kbfsblock.ID, tag string, cacheType DiskBlockCacheType) error // DeleteUnmarked deletes all the given TLF's blocks in the disk // cache without the given tag. DeleteUnmarked( ctx context.Context, tlfID tlf.ID, tag string, cacheType DiskBlockCacheType) error // AddHomeTLF adds a TLF marked as "home" so that the blocks from it are // less likely to be evicted, as well as whether this is their public or // private TLF, where the public TLF's files are more likely to be evicted // than the private one's. AddHomeTLF(ctx context.Context, tlfID tlf.ID) error // ClearHomeTLFs should be called on logout so that the old user's TLFs // are not still marked as home. ClearHomeTLFs(ctx context.Context) error // GetTlfSize returns the number of bytes stored for the given TLF // in the cache of the given type. If `DiskBlockAnyCache` is // specified, it returns the total sum of bytes across all caches. GetTlfSize( ctx context.Context, tlfID tlf.ID, cacheType DiskBlockCacheType) ( uint64, error) // GetTlfIDs returns the TLF IDs with blocks in the cache. If // `DiskBlockAnyCache` is specified, it returns the set of // TLF IDs across all caches. GetTlfIDs( ctx context.Context, cacheType DiskBlockCacheType) ([]tlf.ID, error) // WaitUntilStarted waits until the block cache of the given type // has finished starting. If `DiskBlockAnyCache` is specified, it // waits for all caches to start. WaitUntilStarted(cacheType DiskBlockCacheType) error // Shutdown cleanly shuts down the disk block cache. Shutdown(ctx context.Context) <-chan struct{} } // DiskMDCache caches encrypted MD objects to the disk. type DiskMDCache interface { // Get gets the latest cached MD for the given TLF from the disk // cache. `ver` is the version of the encoded MD, and `timestamp` // is the server timestamp for the MD. Get(ctx context.Context, tlfID tlf.ID) ( buf []byte, ver kbfsmd.MetadataVer, timestamp time.Time, err error) // Stage asks the disk cache to store the given MD in memory, but // not yet write it to disk. A later call to `Commit` or // `Unstage` for `rev` or higher is required to avoid memory leaks. Stage(ctx context.Context, tlfID tlf.ID, rev kbfsmd.Revision, buf []byte, ver kbfsmd.MetadataVer, timestamp time.Time) error // Commit writes a previously-staged MD to disk. Trying to commit // a revision that hasn't been staged is a no-op, to allow callers // to call Commit without knowing whether Stage was called first // (e.g., if the revision came from the cache in the first place). // If older revisions (or other copies of this same revision) are // staged, they will become unstaged. Commit(ctx context.Context, tlfID tlf.ID, rev kbfsmd.Revision) error // Unstage unstages and forgets about a previously-staged MD. (If // multiple copies of the same revision have been staged, it only // unstages the first of them.) Unstage(ctx context.Context, tlfID tlf.ID, rev kbfsmd.Revision) error // Status returns the current status of the disk cache. Status(ctx context.Context) DiskMDCacheStatus // Shutdown cleanly shuts down the disk MD cache. Shutdown(ctx context.Context) } // DiskQuotaCache caches encrypts per-ID quotas to the disk. type DiskQuotaCache interface { // Get gets the latest cached quota for the given ID from the disk // cache. Get(ctx context.Context, id keybase1.UserOrTeamID) ( info kbfsblock.QuotaInfo, err error) // Put stores the latest cached quota for the given ID to the disk // cache. Put(ctx context.Context, id keybase1.UserOrTeamID, info kbfsblock.QuotaInfo) (err error) // Status returns the current status of the disk cache. Status(ctx context.Context) DiskQuotaCacheStatus // Shutdown cleanly shuts down the disk quota cache. Shutdown(ctx context.Context) } // BlockMetadataStore defines a type that stores block metadata locally on // device. type BlockMetadataStore interface { // GetMetadata looks for and returns the block metadata for blockID if it's // found, and an error whose Cause is ldberrors.ErrNotFound if it's not // found. GetMetadata(ctx context.Context, blockID kbfsblock.ID) (BlockMetadataValue, error) // UpdateMetadata updates the block metadata for blockID using updater. // Specifically, it looks for existing block metdata for blockID. If it's // found, it's passed into updater. Otherwise, a zero value of // BlockMetadataValue is passed into the updater. After if updater returns // nil, the updated metadata is stored. UpdateMetadata(ctx context.Context, blockID kbfsblock.ID, updater BlockMetadataUpdater) error // Shutdown cleanly shuts down the disk block metadata cache. Shutdown() } // XattrStore defines a type that handles locally stored xattr // values by interacting with a BlockMetadataStore. type XattrStore interface { // GetXattr looks for and returns the Xattr value of xattrType for blockID // if it's found, and an error whose Cause is ldberrors.ErrNotFound if it's // not found. GetXattr(ctx context.Context, blockID kbfsblock.ID, xattrType XattrType) ([]byte, error) // SetXattr sets xattrType Xattr to xattrValue for blockID. SetXattr(ctx context.Context, blockID kbfsblock.ID, xattrType XattrType, xattrValue []byte) error } // cryptoPure contains all methods of Crypto that don't depend on // implicit state, i.e. they're pure functions of the input. type cryptoPure interface { // MakeRandomTlfID generates a dir ID using a CSPRNG. MakeRandomTlfID(t tlf.Type) (tlf.ID, error) // MakeRandomBranchID generates a per-device branch ID using a // CSPRNG. It will not return LocalSquashBranchID or // kbfsmd.NullBranchID. MakeRandomBranchID() (kbfsmd.BranchID, error) // MakeTemporaryBlockID generates a temporary block ID using a // CSPRNG. This is used for indirect blocks before they're // committed to the server. MakeTemporaryBlockID() (kbfsblock.ID, error) // MakeRefNonce generates a block reference nonce using a // CSPRNG. This is used for distinguishing different references to // the same BlockID. MakeBlockRefNonce() (kbfsblock.RefNonce, error) // MakeRandomTLFEphemeralKeys generates ephemeral keys using a // CSPRNG for a TLF. These keys can then be used to key/rekey // the TLF. MakeRandomTLFEphemeralKeys() (kbfscrypto.TLFEphemeralPublicKey, kbfscrypto.TLFEphemeralPrivateKey, error) // MakeRandomTLFKeys generates keys using a CSPRNG for a // single key generation of a TLF. MakeRandomTLFKeys() (kbfscrypto.TLFPublicKey, kbfscrypto.TLFPrivateKey, kbfscrypto.TLFCryptKey, error) // MakeRandomBlockCryptKeyServerHalf generates the server-side of // a block crypt key. MakeRandomBlockCryptKeyServerHalf() ( kbfscrypto.BlockCryptKeyServerHalf, error) // EncryptPrivateMetadata encrypts a PrivateMetadata object. EncryptPrivateMetadata( pmd PrivateMetadata, key kbfscrypto.TLFCryptKey) ( kbfscrypto.EncryptedPrivateMetadata, error) // DecryptPrivateMetadata decrypts a PrivateMetadata object. DecryptPrivateMetadata( encryptedPMD kbfscrypto.EncryptedPrivateMetadata, key kbfscrypto.TLFCryptKey) (PrivateMetadata, error) // EncryptBlocks encrypts a block. plainSize is the size of the encoded // block; EncryptBlock() must guarantee that plainSize <= // len(encryptedBlock). EncryptBlock( block data.Block, tlfCryptKey kbfscrypto.TLFCryptKey, blockServerHalf kbfscrypto.BlockCryptKeyServerHalf) ( plainSize int, encryptedBlock kbfscrypto.EncryptedBlock, err error) // DecryptBlock decrypts a block. Similar to EncryptBlock(), // DecryptBlock() must guarantee that (size of the decrypted // block) <= len(encryptedBlock). DecryptBlock( encryptedBlock kbfscrypto.EncryptedBlock, tlfCryptKey kbfscrypto.TLFCryptKey, blockServerHalf kbfscrypto.BlockCryptKeyServerHalf, block data.Block) error } // Crypto signs, verifies, encrypts, and decrypts stuff. type Crypto interface { cryptoPure // Duplicate kbfscrypto.Signer here to work around gomock's // limitations. Sign(context.Context, []byte) (kbfscrypto.SignatureInfo, error) SignForKBFS(context.Context, []byte) (kbfscrypto.SignatureInfo, error) SignToString(context.Context, []byte) (string, error) // DecryptTLFCryptKeyClientHalf decrypts a // kbfscrypto.TLFCryptKeyClientHalf using the current device's // private key and the TLF's ephemeral public key. DecryptTLFCryptKeyClientHalf(ctx context.Context, publicKey kbfscrypto.TLFEphemeralPublicKey, encryptedClientHalf kbfscrypto.EncryptedTLFCryptKeyClientHalf) ( kbfscrypto.TLFCryptKeyClientHalf, error) // DecryptTLFCryptKeyClientHalfAny decrypts one of the // kbfscrypto.TLFCryptKeyClientHalf using the available // private keys and the ephemeral public key. If promptPaper // is true, the service will prompt the user for any unlocked // paper keys. DecryptTLFCryptKeyClientHalfAny(ctx context.Context, keys []EncryptedTLFCryptKeyClientAndEphemeral, promptPaper bool) ( kbfscrypto.TLFCryptKeyClientHalf, int, error) // DecryptTeamMerkleLeaf decrypts a team-encrypted Merkle leaf // using some team key generation greater than `minKeyGen`, and // the provided ephemeral public key. DecryptTeamMerkleLeaf(ctx context.Context, teamID keybase1.TeamID, publicKey kbfscrypto.TLFEphemeralPublicKey, encryptedMerkleLeaf kbfscrypto.EncryptedMerkleLeaf, minKeyGen keybase1.PerTeamKeyGeneration) ([]byte, error) // Shutdown frees any resources associated with this instance. Shutdown() } // MDOps gets and puts root metadata to an MDServer. On a get, it // verifies the metadata is signed by the metadata's signing key. type MDOps interface { tlfhandle.IDGetter // GetForTLF returns the current metadata object // corresponding to the given top-level folder, if the logged-in // user has read permission on the folder. // // If lockBeforeGet is not nil, it causes mdserver to take the lock on the // lock ID before the get. GetForTLF(ctx context.Context, id tlf.ID, lockBeforeGet *keybase1.LockID) ( ImmutableRootMetadata, error) // GetForTLFByTime returns the newest merged MD update with a // server timestamp less than or equal to `serverTime`. GetForTLFByTime(ctx context.Context, id tlf.ID, serverTime time.Time) ( ImmutableRootMetadata, error) // GetUnmergedForTLF is the same as the above but for unmerged // metadata. GetUnmergedForTLF(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID) ( ImmutableRootMetadata, error) // GetRange returns a range of metadata objects corresponding to // the passed revision numbers (inclusive). // // If lockBeforeGet is not nil, it causes mdserver to take the lock on the // lock ID before the get. GetRange(ctx context.Context, id tlf.ID, start, stop kbfsmd.Revision, lockID *keybase1.LockID) ([]ImmutableRootMetadata, error) // GetUnmergedRange is the same as the above but for unmerged // metadata history (inclusive). GetUnmergedRange(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID, start, stop kbfsmd.Revision) ([]ImmutableRootMetadata, error) // Put stores the metadata object for the given top-level folder. // This also adds the resulting ImmutableRootMetadata object to // the mdcache, if the Put is successful. Note that constructing // the ImmutableRootMetadata requires knowing the verifying key, // which might not be the same as the local user's verifying key // if the MD has been copied from a previous update. // // If lockContext is not nil, it causes the mdserver to check a lockID at // the time of the put, and optionally (if specified in lockContext) // releases the lock on the lock ID if the put is successful. Releasing the // lock in mdserver is idempotent. Note that journalMDOps doesn't support // lockContext for now. If journaling is enabled, use FinishSinbleOp to // require locks. // // The priority parameter specifies the priority of this particular MD put // operation. When conflict happens, mdserver tries to prioritize writes // with higher priorities. Caller should use pre-defined (or define new) // constants in keybase1 package, such as keybase1.MDPriorityNormal. Note // that journalMDOps doesn't support any priority other than // MDPriorityNormal for now. If journaling is enabled, use FinishSinbleOp // to override priority. Put( ctx context.Context, rmd *RootMetadata, verifyingKey kbfscrypto.VerifyingKey, lockContext *keybase1.LockContext, priority keybase1.MDPriority, bps data.BlockPutState) ( ImmutableRootMetadata, error) // PutUnmerged is the same as the above but for unmerged metadata // history. This also adds the resulting ImmutableRootMetadata // object to the mdcache, if the PutUnmerged is successful. Note // that constructing the ImmutableRootMetadata requires knowing // the verifying key, which might not be the same as the local // user's verifying key if the MD has been copied from a previous // update. PutUnmerged( ctx context.Context, rmd *RootMetadata, verifyingKey kbfscrypto.VerifyingKey, bps data.BlockPutState) ( ImmutableRootMetadata, error) // PruneBranch prunes all unmerged history for the given TLF // branch. PruneBranch(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID) error // ResolveBranch prunes all unmerged history for the given TLF // branch, and also deletes any blocks in `blocksToDelete` that // are still in the local journal. In addition, it appends the // given MD to the journal. This also adds the resulting // ImmutableRootMetadata object to the mdcache, if the // ResolveBranch is successful. Note that constructing the // ImmutableRootMetadata requires knowing the verifying key, which // might not be the same as the local user's verifying key if the // MD has been copied from a previous update. ResolveBranch( ctx context.Context, id tlf.ID, bid kbfsmd.BranchID, blocksToDelete []kbfsblock.ID, rmd *RootMetadata, verifyingKey kbfscrypto.VerifyingKey, bps data.BlockPutState) ( ImmutableRootMetadata, error) // GetLatestHandleForTLF returns the server's idea of the latest // handle for the TLF, which may not yet be reflected in the MD if // the TLF hasn't been rekeyed since it entered into a conflicting // state. GetLatestHandleForTLF(ctx context.Context, id tlf.ID) (tlf.Handle, error) } // Prefetcher is an interface to a block prefetcher. type Prefetcher interface { // ProcessBlockForPrefetch potentially triggers and monitors a prefetch. ProcessBlockForPrefetch(ctx context.Context, ptr data.BlockPointer, block data.Block, kmd libkey.KeyMetadata, priority int, lifetime data.BlockCacheLifetime, prefetchStatus PrefetchStatus, action BlockRequestAction) // WaitChannelForBlockPrefetch returns a channel that can be used // to wait for a block to finish prefetching or be canceled. If // the block isn't currently being prefetched, it will return an // already-closed channel. When the channel is closed, the caller // should still verify that the prefetch status of the block is // what they expect it to be, in case there was an error. WaitChannelForBlockPrefetch(ctx context.Context, ptr data.BlockPointer) ( <-chan struct{}, error) // Status returns the current status of the prefetch for the block // tree rooted at the given pointer. Status(ctx context.Context, ptr data.BlockPointer) (PrefetchProgress, error) // OverallSyncStatus returns the current status of all sync // prefetches. OverallSyncStatus() PrefetchProgress // CancelPrefetch notifies the prefetcher that a prefetch should be // canceled. CancelPrefetch(data.BlockPointer) // CancelTlfPrefetches notifies the prefetcher that all prefetches // for a given TLF should be canceled. CancelTlfPrefetches(context.Context, tlf.ID) error // Shutdown shuts down the prefetcher idempotently. Future calls to // the various Prefetch* methods will return io.EOF. The returned channel // allows upstream components to block until all pending prefetches are // complete. This feature is mainly used for testing, but also to toggle // the prefetcher on and off. Shutdown() <-chan struct{} } // BlockOps gets and puts data blocks to a BlockServer. It performs // the necessary crypto operations on each block. type BlockOps interface { blockRetrieverGetter data.ReadyProvider // Get gets the block associated with the given block pointer // (which belongs to the TLF with the given key metadata), // decrypts it if necessary, and fills in the provided block // object with its contents, if the logged-in user has read // permission for that block. cacheLifetime controls the behavior of the // write-through cache once a Get completes. // // TODO: Make a `BlockRequestParameters` object to encapsulate the // cache lifetime and branch name, to avoid future plumbing. Or // maybe just get rid of the `Get()` method entirely and have // everyone use the block retrieval queue directly. Get(ctx context.Context, kmd libkey.KeyMetadata, blockPtr data.BlockPointer, block data.Block, cacheLifetime data.BlockCacheLifetime, branch data.BranchName) error // GetEncodedSizes gets the encoded sizes and statuses of the // block associated with the given block pointers (which belongs // to the TLF with the given key metadata). If a block is not // found, it gets a size of 0 and an UNKNOWN status. GetEncodedSizes(ctx context.Context, kmd libkey.KeyMetadata, blockPtrs []data.BlockPointer) ([]uint32, []keybase1.BlockStatus, error) // Delete instructs the server to delete the given block references. // It returns the number of not-yet deleted references to // each block reference Delete(ctx context.Context, tlfID tlf.ID, ptrs []data.BlockPointer) ( liveCounts map[kbfsblock.ID]int, err error) // Archive instructs the server to mark the given block references // as "archived"; that is, they are not being used in the current // view of the folder, and shouldn't be served to anyone other // than folder writers. Archive(ctx context.Context, tlfID tlf.ID, ptrs []data.BlockPointer) error // GetLiveCount returns the number of "live" // (non-archived, non-deleted) references for each given block. GetLiveCount( ctx context.Context, tlfID tlf.ID, ptrs []data.BlockPointer) ( liveCounts map[kbfsblock.ID]int, err error) // TogglePrefetcher activates or deactivates the prefetcher. TogglePrefetcher(enable bool) <-chan struct{} // Prefetcher retrieves this BlockOps' Prefetcher. Prefetcher() Prefetcher // Shutdown shuts down all the workers performing Get operations Shutdown(ctx context.Context) error } // Duplicate kbfscrypto.AuthTokenRefreshHandler here to work around // gomock's limitations. type authTokenRefreshHandler interface { RefreshAuthToken(context.Context) } // MDServer gets and puts metadata for each top-level directory. The // instantiation should be able to fetch session/user details via KBPKI. On a // put, the server is responsible for 1) ensuring the user has appropriate // permissions for whatever modifications were made; 2) ensuring that // LastModifyingWriter and LastModifyingUser are updated appropriately; and 3) // detecting conflicting writes based on the previous root block ID (i.e., when // it supports strict consistency). On a get, it verifies the logged-in user // has read permissions. // // TODO: Add interface for searching by time type MDServer interface { authTokenRefreshHandler // GetForHandle returns the current (signed/encrypted) metadata // object corresponding to the given top-level folder's handle, if // the logged-in user has read permission on the folder. It // creates the folder if one doesn't exist yet, and the logged-in // user has permission to do so. // // If lockBeforeGet is not nil, it takes a lock on the lock ID before // trying to get anything. If taking the lock fails, an error is returned. // Note that taking a lock from the mdserver is idempotent. // // If there is no returned error, then the returned ID must // always be non-null. A nil *RootMetadataSigned may be // returned, but if it is non-nil, then its ID must match the // returned ID. GetForHandle(ctx context.Context, handle tlf.Handle, mStatus kbfsmd.MergeStatus, lockBeforeGet *keybase1.LockID) ( tlf.ID, *RootMetadataSigned, error) // GetForTLF returns the current (signed/encrypted) metadata object // corresponding to the given top-level folder, if the logged-in // user has read permission on the folder. // // If lockBeforeGet is not nil, it takes a lock on the lock ID before // trying to get anything. If taking the lock fails, an error is returned. // Note that taking a lock from the mdserver is idempotent. GetForTLF(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID, mStatus kbfsmd.MergeStatus, lockBeforeGet *keybase1.LockID) (*RootMetadataSigned, error) // GetForTLFByTime returns the earliest merged MD update with a // server timestamp equal or greater to `serverTime`. GetForTLFByTime(ctx context.Context, id tlf.ID, serverTime time.Time) ( *RootMetadataSigned, error) // GetRange returns a range of (signed/encrypted) metadata objects // corresponding to the passed revision numbers (inclusive). // // If lockBeforeGet is not nil, it takes a lock on the lock ID before // trying to get anything. If taking the lock fails, an error is returned. // Note that taking a lock from the mdserver is idempotent. GetRange(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID, mStatus kbfsmd.MergeStatus, start, stop kbfsmd.Revision, lockBeforeGet *keybase1.LockID) ( []*RootMetadataSigned, error) // Put stores the (signed/encrypted) metadata object for the given // top-level folder. Note: If the unmerged bit is set in the metadata // block's flags bitmask it will be appended to the unmerged per-device // history. // // If lockContext is not nil, it causes the mdserver to check a lockID at // the time of the put, and optionally (if specified in lockContext) // releases the lock on the lock ID if the put is successful. Releasing the // lock in mdserver is idempotent. Put(ctx context.Context, rmds *RootMetadataSigned, extra kbfsmd.ExtraMetadata, lockContext *keybase1.LockContext, priority keybase1.MDPriority) error // Lock ensures lockID for tlfID is taken by this session, i.e., // idempotently take the lock. If the lock is already taken by *another* // session, mdserver returns a throttle error, causing RPC layer at client // to retry. So caller of this method should observe a behavior similar to // blocking call, which upon successful return, makes sure the lock is // taken on the server. Note that the lock expires after certain time, so // it's important to make writes contingent to the lock by requiring the // lockID in Put. Lock(ctx context.Context, tlfID tlf.ID, lockID keybase1.LockID) error // Release Lock ensures lockID for tlfID is not taken by this session, i.e., // idempotently release the lock. If the lock is already released or // expired, this is a no-op. ReleaseLock(ctx context.Context, tlfID tlf.ID, lockID keybase1.LockID) error // StartImplicitTeamMigration tells mdserver to put a implicit team // migration lock on id, which prevents any rekey MD writes from going // in. Normal classic MD updates can still happen after implicit team // migration has started, until a iTeam-style MD is written. StartImplicitTeamMigration(ctx context.Context, id tlf.ID) (err error) // PruneBranch prunes all unmerged history for the given TLF branch. PruneBranch(ctx context.Context, id tlf.ID, bid kbfsmd.BranchID) error // RegisterForUpdate tells the MD server to inform the caller when // there is a merged update with a revision number greater than // currHead, which did NOT originate from this same MD server // session. This method returns a chan which can receive only a // single error before it's closed. If the received err is nil, // then there is updated MD ready to fetch which didn't originate // locally; if it is non-nil, then the previous registration // cannot send the next notification (e.g., the connection to the // MD server may have failed). In either case, the caller must // re-register to get a new chan that can receive future update // notifications. RegisterForUpdate(ctx context.Context, id tlf.ID, currHead kbfsmd.Revision) (<-chan error, error) // CancelRegistration lets the local MDServer instance know that // we are no longer interested in updates for the specified // folder. It does not necessarily forward this cancellation to // remote servers. CancelRegistration(ctx context.Context, id tlf.ID) // CheckForRekeys initiates the rekey checking process on the // server. The server is allowed to delay this request, and so it // returns a channel for returning the error. Actual rekey // requests are expected to come in asynchronously. CheckForRekeys(ctx context.Context) <-chan error // TruncateLock attempts to take the history truncation lock for // this folder, for a TTL defined by the server. Returns true if // the lock was successfully taken. TruncateLock(ctx context.Context, id tlf.ID) (bool, error) // TruncateUnlock attempts to release the history truncation lock // for this folder. Returns true if the lock was successfully // released. TruncateUnlock(ctx context.Context, id tlf.ID) (bool, error) // DisableRekeyUpdatesForTesting disables processing rekey updates // received from the mdserver while testing. DisableRekeyUpdatesForTesting() // Shutdown is called to shutdown an MDServer connection. Shutdown() // IsConnected returns whether the MDServer is connected. IsConnected() bool // GetLatestHandleForTLF returns the server's idea of the latest handle for the TLF, // which may not yet be reflected in the MD if the TLF hasn't been rekeyed since it // entered into a conflicting state. For the highest level of confidence, the caller // should verify the mapping with a Merkle tree lookup. GetLatestHandleForTLF(ctx context.Context, id tlf.ID) (tlf.Handle, error) // OffsetFromServerTime is the current estimate for how off our // local clock is from the mdserver clock. Add this to any // mdserver-provided timestamps to get the "local" time of the // corresponding event. If the returned bool is false, then we // don't have a current estimate for the offset. OffsetFromServerTime() (time.Duration, bool) // GetKeyBundles looks up the key bundles for the given key // bundle IDs. tlfID must be non-zero but either or both wkbID // and rkbID can be zero, in which case nil will be returned // for the respective bundle. If a bundle cannot be found, an // error is returned and nils are returned for both bundles. GetKeyBundles(ctx context.Context, tlfID tlf.ID, wkbID kbfsmd.TLFWriterKeyBundleID, rkbID kbfsmd.TLFReaderKeyBundleID) ( *kbfsmd.TLFWriterKeyBundleV3, *kbfsmd.TLFReaderKeyBundleV3, error) // CheckReachability is called when the Keybase service sends a notification // that network connectivity has changed. CheckReachability(ctx context.Context) // FastForwardBackoff fast forwards any existing backoff timer for // connecting to the mdserver. If mdserver is connected at the time this // is called, it's essentially a no-op. FastForwardBackoff() // FindNextMD finds the serialized (and possibly encrypted) root // metadata object from the leaf node of the second KBFS merkle // tree to be produced after a given Keybase global merkle tree // sequence number `rootSeqno` (and all merkle nodes between it // and the root, and the root itself). It also returns the global // merkle tree sequence number of the root that first included the // returned metadata object. FindNextMD(ctx context.Context, tlfID tlf.ID, rootSeqno keybase1.Seqno) ( nextKbfsRoot *kbfsmd.MerkleRoot, nextMerkleNodes [][]byte, nextRootSeqno keybase1.Seqno, err error) // GetMerkleRootLatest returns the latest KBFS merkle root for the // given tree ID. GetMerkleRootLatest(ctx context.Context, treeID keybase1.MerkleTreeID) ( root *kbfsmd.MerkleRoot, err error) } type mdServerLocal interface { MDServer addNewAssertionForTest( uid keybase1.UID, newAssertion keybase1.SocialAssertion) error getCurrentMergedHeadRevision(ctx context.Context, id tlf.ID) ( rev kbfsmd.Revision, err error) isShutdown() bool copy(config mdServerLocalConfig) mdServerLocal enableImplicitTeams() setKbfsMerkleRoot(treeID keybase1.MerkleTreeID, root *kbfsmd.MerkleRoot) } // BlockServer gets and puts opaque data blocks. The instantiation // should be able to fetch session/user details via KBPKI. On a // put/delete, the server is responsible for: 1) checking that the ID // matches the hash of the buffer; and 2) enforcing writer quotas. type BlockServer interface { authTokenRefreshHandler // FastForwardBackoff fast forwards any existing backoff timer for // connecting to bserver. If bserver is connected at the time this is // called, it's essentially a no-op. FastForwardBackoff() // Get gets the (encrypted) block data associated with the given // block ID and context, uses the provided block key to decrypt // the block, and fills in the provided block object with its // contents, if the logged-in user has read permission for that // block. Get(ctx context.Context, tlfID tlf.ID, id kbfsblock.ID, context kbfsblock.Context, cacheType DiskBlockCacheType) ( []byte, kbfscrypto.BlockCryptKeyServerHalf, error) // GetEncodedSizes gets the encoded sizes and statuses of the // blocks associated with the given block IDs (which belong to the // TLF with the given key metadata). If a block is not found, it // gets a size of 0 and an UNKNOWN status. GetEncodedSizes( ctx context.Context, tlfID tlf.ID, ids []kbfsblock.ID, contexts []kbfsblock.Context) ([]uint32, []keybase1.BlockStatus, error) // Put stores the (encrypted) block data under the given ID // and context on the server, along with the server half of // the block key. context should contain a kbfsblock.RefNonce // of zero. There will be an initial reference for this block // for the given context. // // Put should be idempotent, although it should also return an // error if, for a given ID, any of the other arguments differ // from previous Put calls with the same ID. // // If this returns a kbfsblock.ServerErrorOverQuota, with // Throttled=false, the caller can treat it as informational // and otherwise ignore the error. Put(ctx context.Context, tlfID tlf.ID, id kbfsblock.ID, context kbfsblock.Context, buf []byte, serverHalf kbfscrypto.BlockCryptKeyServerHalf, cacheType DiskBlockCacheType) error // PutAgain re-stores a previously deleted block under the same ID // with the same data. PutAgain(ctx context.Context, tlfID tlf.ID, id kbfsblock.ID, context kbfsblock.Context, buf []byte, serverHalf kbfscrypto.BlockCryptKeyServerHalf, cacheType DiskBlockCacheType) error // AddBlockReference adds a new reference to the given block, // defined by the given context (which should contain a // non-zero kbfsblock.RefNonce). (Contexts with a // kbfsblock.RefNonce of zero should be used when putting the // block for the first time via Put().) Returns a // kbfsblock.ServerErrorBlockNonExistent if id is unknown within this // folder. // // AddBlockReference should be idempotent, although it should // also return an error if, for a given ID and refnonce, any // of the other fields of context differ from previous // AddBlockReference calls with the same ID and refnonce. // // If this returns a kbfsblock.ServerErrorOverQuota, with // Throttled=false, the caller can treat it as informational // and otherwise ignore the error. AddBlockReference(ctx context.Context, tlfID tlf.ID, id kbfsblock.ID, context kbfsblock.Context) error // RemoveBlockReferences removes the references to the given block // ID defined by the given contexts. If no references to the block // remain after this call, the server is allowed to delete the // corresponding block permanently. If the reference defined by // the count has already been removed, the call is a no-op. // It returns the number of remaining not-yet-deleted references after this // reference has been removed RemoveBlockReferences(ctx context.Context, tlfID tlf.ID, contexts kbfsblock.ContextMap) (liveCounts map[kbfsblock.ID]int, err error) // ArchiveBlockReferences marks the given block references as // "archived"; that is, they are not being used in the current // view of the folder, and shouldn't be served to anyone other // than folder writers. // // For a given ID/refnonce pair, ArchiveBlockReferences should // be idempotent, although it should also return an error if // any of the other fields of the context differ from previous // calls with the same ID/refnonce pair. ArchiveBlockReferences(ctx context.Context, tlfID tlf.ID, contexts kbfsblock.ContextMap) error // GetLiveBlockReferences returns the number of "live" // (non-archived, non-deleted) references for each given block. GetLiveBlockReferences(ctx context.Context, tlfID tlf.ID, contexts kbfsblock.ContextMap) ( liveCounts map[kbfsblock.ID]int, err error) // IsUnflushed returns whether a given block is being queued // locally for later flushing to another block server. If the // block is currently being flushed to the server, this should // return `true`, so that the caller will try to clean it up from // the server if it's no longer needed. IsUnflushed(ctx context.Context, tlfID tlf.ID, id kbfsblock.ID) ( bool, error) // Shutdown is called to shutdown a BlockServer connection. Shutdown(ctx context.Context) // GetUserQuotaInfo returns the quota for the logged-in user. GetUserQuotaInfo(ctx context.Context) (info *kbfsblock.QuotaInfo, err error) // GetTeamQuotaInfo returns the quota for a team. GetTeamQuotaInfo(ctx context.Context, tid keybase1.TeamID) ( info *kbfsblock.QuotaInfo, err error) } // blockServerLocal is the interface for BlockServer implementations // that store data locally. type blockServerLocal interface { BlockServer // getAllRefsForTest returns all the known block references // for the given TLF, and should only be used during testing. getAllRefsForTest(ctx context.Context, tlfID tlf.ID) ( map[kbfsblock.ID]blockRefMap, error) } // NodeChange represents a change made to a node as part of an atomic // file system operation. type NodeChange struct { Node Node // Basenames of entries added/removed. DirUpdated []data.PathPartString FileUpdated []WriteRange } // Observer can be notified that there is an available update for a // given directory. The notification callbacks should not block, or // make any calls to the Notifier interface. Nodes passed to the // observer should not be held past the end of the notification // callback. type Observer interface { // LocalChange announces that the file at this Node has been // updated locally, but not yet saved at the server. LocalChange(ctx context.Context, node Node, write WriteRange) // BatchChanges announces that the nodes have all been updated // together atomically. Each NodeChange in `changes` affects the // same top-level folder and branch. `allAffectedNodeIDs` is a // list of all the nodes that had their underlying data changed, // even if it wasn't an user-visible change (e.g., if a // subdirectory was updated, the directory block for the TLF root // is updated but that wouldn't be visible to a user). BatchChanges(ctx context.Context, changes []NodeChange, allAffectedNodeIDs []NodeID) // TlfHandleChange announces that the handle of the corresponding // folder branch has changed, likely due to previously-unresolved // assertions becoming resolved. This indicates that the listener // should switch over any cached paths for this folder-branch to // the new name. Nodes that were acquired under the old name will // still continue to work, but new lookups on the old name may // either encounter alias errors or entirely new TLFs (in the case // of conflicts). TlfHandleChange(ctx context.Context, newHandle *tlfhandle.Handle) } // SyncedTlfObserver can be notified when a sync has started for a // synced TLF, or when a TLF becomes unsynced. The notification // callbacks should not block, or make any calls to the Notifier // interface. type SyncedTlfObserver interface { // FullSyncStarted announces that a new full sync has begun for // the given tlf ID. The provided `waitCh` will be completed (or // canceled) once `waitCh` is closed. FullSyncStarted( ctx context.Context, tlfID tlf.ID, rev kbfsmd.Revision, waitCh <-chan struct{}) // SyncModeChanged announces that the sync mode has changed for // the given tlf ID. SyncModeChanged( ctx context.Context, tlfID tlf.ID, newMode keybase1.FolderSyncMode) } // Notifier notifies registrants of directory changes type Notifier interface { // RegisterForChanges declares that the given Observer wants to // subscribe to updates for the given top-level folders. RegisterForChanges(folderBranches []data.FolderBranch, obs Observer) error // UnregisterFromChanges declares that the given Observer no // longer wants to subscribe to updates for the given top-level // folders. UnregisterFromChanges(folderBranches []data.FolderBranch, obs Observer) error // RegisterForSyncedTlfs declares that the given // `SyncedTlfObserver` wants to subscribe to updates about synced // TLFs. RegisterForSyncedTlfs(obs SyncedTlfObserver) error // UnregisterFromChanges declares that the given // `SyncedTlfObserver` no longer wants to subscribe to updates // about synced TLFs. UnregisterFromSyncedTlfs(obs SyncedTlfObserver) error } // Clock is an interface for getting the current time type Clock interface { // Now returns the current time. Now() time.Time } // ConflictRenamer deals with names for conflicting directory entries. type ConflictRenamer interface { // ConflictRename returns the appropriately modified filename. ConflictRename( ctx context.Context, op op, original string) (string, error) } // Tracer maybe adds traces to contexts. type Tracer interface { // MaybeStartTrace, if tracing is on, returns a new context // based on the given one with an attached trace made with the // given family and title. Otherwise, it returns the given // context unchanged. MaybeStartTrace(ctx context.Context, family, title string) context.Context // MaybeFinishTrace, finishes the trace attached to the given // context, if any. MaybeFinishTrace(ctx context.Context, err error) } // InitMode encapsulates mode differences. type InitMode interface { // Type returns the InitModeType of this mode. Type() InitModeType // IsTestMode returns whether we are running a test. IsTestMode() bool // IsSingleOp returns whether this is a single-op mode (only one // write is expected at a time). IsSingleOp() bool // BlockWorkers returns the number of block workers to run. BlockWorkers() int // PrefetchWorkers returns the number of prefetch workers to run. PrefetchWorkers() int // ThrottledPrefetchTime returns the period for each prefetch // worker to start a throttled prefetch request. ThrottledPrefetchPeriod() time.Duration // DefaultBlockRequestAction returns the action to be used by // default whenever fetching a block. DefaultBlockRequestAction() BlockRequestAction // RekeyWorkers returns the number of rekey workers to run. RekeyWorkers() int // RekeyQueueSize returns the size of the rekey queue. RekeyQueueSize() int // DirtyBlockCacheEnabled indicates if we should run a dirty block // cache. DirtyBlockCacheEnabled() bool // BackgroundFlushesEnabled indicates if we should periodically be // flushing unsynced dirty writes to the server or journal. BackgroundFlushesEnabled() bool // MetricsEnabled indicates if we should be collecting metrics. MetricsEnabled() bool // ConflictResolutionEnabled indicated if we should be running // the conflict resolution background process. ConflictResolutionEnabled() bool // BlockManagementEnabled indicates whether we should be running // the block archive/delete background process, and whether we // should be re-embedding block change blocks in MDs. BlockManagementEnabled() bool // MaxBlockPtrsToManageAtOnce indicates how many block pointers // the block manager should try to hold in memory at once. -1 // indicates that there is no limit. MaxBlockPtrsToManageAtOnce() int // QuotaReclamationEnabled indicates whether we should be running // the quota reclamation background process. QuotaReclamationEnabled() bool // QuotaReclamationPeriod indicates how often should each TLF // should check for quota to reclaim. If the Duration.Seconds() // == 0, quota reclamation should not run automatically. QuotaReclamationPeriod() time.Duration // QuotaReclamationMinUnrefAge indicates the minimum time a block // must have been unreferenced before it can be reclaimed. QuotaReclamationMinUnrefAge() time.Duration // QuotaReclamationMinHeadAge indicates the minimum age of the // most recently merged MD update before we can run reclamation, // to avoid conflicting with a currently active writer. QuotaReclamationMinHeadAge() time.Duration // NodeCacheEnabled indicates whether we should be caching data nodes. NodeCacheEnabled() bool // TLFUpdatesEnabled indicates whether we should be registering // ourselves with the mdserver for TLF updates. TLFUpdatesEnabled() bool // KBFSServiceEnabled indicates whether we should launch a local // service for answering incoming KBFS-related RPCs. KBFSServiceEnabled() bool // JournalEnabled indicates whether this mode supports a journal. JournalEnabled() bool // UnmergedTLFsEnabled indicates whether it's possible for a // device in this mode to have unmerged TLFs. UnmergedTLFsEnabled() bool // ServiceKeepaliveEnabled indicates whether we need to send // keepalive probes to the Keybase service daemon. ServiceKeepaliveEnabled() bool // TLFEditHistoryEnabled indicates whether we should be running // the background TLF edit history process. TLFEditHistoryEnabled() bool // SendEditNotificationsEnabled indicates whether we should send // edit notifications on FS writes. SendEditNotificationsEnabled() bool // ClientType indicates the type we should advertise to the // Keybase service. ClientType() keybase1.ClientType // LocalHTTPServerEnabled represents whether we should launch an HTTP // server. LocalHTTPServerEnabled() bool // MaxCleanBlockCacheCapacity is the maximum number of bytes to be taken up // by the clean block cache. MaxCleanBlockCacheCapacity() uint64 // OldStorageRootCleaningEnabled indicates whether we should clean // old temporary storage root directories. OldStorageRootCleaningEnabled() bool // DoRefreshFavoritesOnInit indicates whether we should refresh // our cached versions of the favorites immediately upon a login. DoRefreshFavoritesOnInit() bool // DoLogObfuscation indicates whether sensitive data like filenames // should be obfuscated in log messages. DoLogObfuscation() bool // BlockTLFEditHistoryIntialization indicates where we should // delay initializing the edit histories of the most recent TLFs // until the first request that uses them is made. BlockTLFEditHistoryIntialization() bool // InitialDelayForBackgroundWork indicates how long non-critical // work that happens in the background on startup should wait // before it begins. InitialDelayForBackgroundWork() time.Duration // BackgroundWorkPeriod indicates how long to wait between // non-critical background work tasks. BackgroundWorkPeriod() time.Duration // IndexingEnabled indicates whether or not synced TLFs are // indexed and searchable. IndexingEnabled() bool // DelayInitialConnect indicates whether the initial connection to KBFS // servers should be delayed. DelayInitialConnect() bool // DiskCacheCompactionEnabled indicates whether the local disk // block cache should trigger compaction automatically. DiskCacheCompactionEnabled() bool // EditHistoryPrefetchingEnabled indicates whether we should // auto-prefetch the most recently-edited files. EditHistoryPrefetchingEnabled() bool ldbutils.DbWriteBufferSizeGetter } type initModeGetter interface { // Mode indicates how KBFS is configured to run. Mode() InitMode // IsTestMode() inidicates whether KBFS is running in a test. IsTestMode() bool } type blockCryptVersioner interface { // BlockCryptVersion returns the block encryption version to be used for // new blocks. BlockCryptVersion() kbfscrypto.EncryptionVer } // SubscriptionID identifies a subscription. type SubscriptionID string // SubscriptionNotifier defines a group of methods for notifying about changes // on subscribed topics. type SubscriptionNotifier interface { // OnPathChange notifies about a change that's related to a specific path. // Multiple subscriptionIDs may be sent because a client can subscribe on // the same path multiple times. In the future topics will become a single // topic but we don't differeciate between the two topics for now so they // are just sent together if both topics are subscribed. OnPathChange( clientID SubscriptionManagerClientID, subscriptionIDs []SubscriptionID, path string, topics []keybase1.PathSubscriptionTopic) // OnNonPathChange notifies about a change that's not related to a specific // path. OnNonPathChange( clientID SubscriptionManagerClientID, subscriptionIDs []SubscriptionID, topic keybase1.SubscriptionTopic) } // OnlineStatusTracker tracks the online status for the GUI. type OnlineStatusTracker interface { GetOnlineStatus() keybase1.KbfsOnlineStatus UserIn(ctx context.Context, clientKey string) UserOut(ctx context.Context, clientKey string) } // SubscriptionManager manages subscriptions associated with one clientID. // Multiple subscribers can be used with the same SubscriptionManager. // If multiple subscriptions exist on the same topic (and for the same path, if // applicable), notifications are deduplicated. // // The two Subscribe methods are for path and non-path subscriptions // respectively. Notes on some common arguments: // 1. subscriptionID needs to be unique among all subscriptions that happens // with this process. A UUID or even just a timestamp might work. If // duplicate subscriptionIDs are used, an error is returned. // 2. Optionally a deduplicateInterval can be used. When this arg is set, we // debounce the events so it doesn't send more frequently than the interval. // If deduplicateInterval is not set, i.e. nil, no deduplication is done and // all events will be delivered. type SubscriptionManager interface { // SubscribePath subscribes to changes about path, when topic happens. SubscribePath( ctx context.Context, subscriptionID SubscriptionID, path string, topic keybase1.PathSubscriptionTopic, deduplicateInterval *time.Duration) error // SubscribeNonPath subscribes to changes when topic happens. SubscribeNonPath(ctx context.Context, subscriptionID SubscriptionID, topic keybase1.SubscriptionTopic, deduplicateInterval *time.Duration) error // Unsubscribe unsubscribes a previsous subscription. The subscriptionID // should be the same as when caller subscribed. Otherwise, it's a no-op. Unsubscribe(context.Context, SubscriptionID) // OnlineStatusTracker returns the OnlineStatusTracker for getting the // current online status for GUI. OnlineStatusTracker() OnlineStatusTracker // Shutdown shuts the subscription manager down. Shutdown(ctx context.Context) } // SubscriptionManagerPublisher associates with one SubscriptionManager, and is // used to publish changes to subscribers mangaged by it. type SubscriptionManagerPublisher interface { PublishChange(topic keybase1.SubscriptionTopic) } type kbContextGetter interface { // KbContext returns the Keybase Context. KbContext() Context } // ResetForLoginer defines ResetForLogin. type ResetForLoginer interface { ResetForLogin(ctx context.Context, username libkb.NormalizedUsername) (err error) } // Config collects all the singleton instance instantiations needed to // run KBFS in one place. The methods below are self-explanatory and // do not require comments. type Config interface { data.Versioner blockCryptVersioner logMaker blockCacher blockServerGetter blockOpsGetter codecGetter cryptoPureGetter keyGetterGetter cryptoGetter chatGetter signerGetter currentSessionGetterGetter diskBlockCacheGetter diskBlockCacheSetter diskBlockCacheFractionSetter syncBlockCacheFractionSetter diskMDCacheGetter diskMDCacheSetter diskQuotaCacheGetter diskQuotaCacheSetter blockMetadataStoreGetSeter clockGetter diskLimiterGetter syncedTlfGetterSetter initModeGetter settingsDBGetter SetMode(mode InitMode) Tracer KBFSOps() KBFSOps SetKBFSOps(KBFSOps) KBPKI() KBPKI SetKBPKI(KBPKI) KeyManager() KeyManager SetKeyManager(KeyManager) SetReporter(Reporter) reporterGetter MDCache() MDCache SetMDCache(MDCache) KeyCache() KeyCache SetKeyBundleCache(kbfsmd.KeyBundleCache) KeyBundleCache() kbfsmd.KeyBundleCache SetKeyCache(KeyCache) SetBlockCache(data.BlockCache) DirtyBlockCache() data.DirtyBlockCache SetDirtyBlockCache(data.DirtyBlockCache) SetCrypto(Crypto) SetChat(Chat) SetCodec(kbfscodec.Codec) MDOps() MDOps SetMDOps(MDOps) KeyOps() libkey.KeyOps SetKeyOps(libkey.KeyOps) SetBlockOps(BlockOps) MDServer() MDServer SetMDServer(MDServer) SetBlockServer(BlockServer) KeyServer() libkey.KeyServer SetKeyServer(libkey.KeyServer) KeybaseService() KeybaseService SetKeybaseService(KeybaseService) BlockSplitter() data.BlockSplitter SetBlockSplitter(data.BlockSplitter) Notifier() Notifier SetNotifier(Notifier) SetClock(Clock) ConflictRenamer() ConflictRenamer SetConflictRenamer(ConflictRenamer) UserHistory() *kbfsedits.UserHistory SetUserHistory(*kbfsedits.UserHistory) MetadataVersion() kbfsmd.MetadataVer SetMetadataVersion(kbfsmd.MetadataVer) SetBlockCryptVersion(kbfscrypto.EncryptionVer) DefaultBlockType() keybase1.BlockType SetDefaultBlockType(blockType keybase1.BlockType) // GetConflictResolutionDB gets the levelDB in which conflict resolution // status is stored. GetConflictResolutionDB() (db *ldbutils.LevelDb) RekeyQueue() RekeyQueue SetRekeyQueue(RekeyQueue) // ReqsBufSize indicates the number of read or write operations // that can be buffered per folder ReqsBufSize() int // MaxNameBytes indicates the maximum supported size of a // directory entry name in bytes. MaxNameBytes() uint32 // DoBackgroundFlushes says whether we should periodically try to // flush dirty files, even without a sync from the user. Should // be true except for during some testing. DoBackgroundFlushes() bool SetDoBackgroundFlushes(bool) // RekeyWithPromptWaitTime indicates how long to wait, after // setting the rekey bit, before prompting for a paper key. RekeyWithPromptWaitTime() time.Duration SetRekeyWithPromptWaitTime(time.Duration) // PrefetchStatus returns the prefetch status of a block. PrefetchStatus(context.Context, tlf.ID, data.BlockPointer) PrefetchStatus GetQuotaUsage(keybase1.UserOrTeamID) *EventuallyConsistentQuotaUsage // GracePeriod specifies a grace period for which a delayed cancellation // waits before actual cancels the context. This is useful for giving // critical portion of a slow remote operation some extra time to finish as // an effort to avoid conflicting. Example include an O_EXCL Create call // interrupted by ALRM signal actually makes it to the server, while // application assumes not since EINTR is returned. A delayed cancellation // allows us to distinguish between successful cancel (where remote operation // didn't make to server) or failed cancel (where remote operation made to // the server). However, the optimal value of this depends on the network // conditions. A long grace period for really good network condition would // just unnecessarily slow down Ctrl-C. // // TODO: make this adaptive and self-change over time based on network // conditions. DelayedCancellationGracePeriod() time.Duration SetDelayedCancellationGracePeriod(time.Duration) // ResetCaches clears and re-initializes all data and key caches. ResetCaches() // StorageRoot returns the path to the storage root for this config. StorageRoot() string // MetricsRegistry may be nil, which should be interpreted as // not using metrics at all. (i.e., as if UseNilMetrics were // set). This differs from how go-metrics treats nil Registry // objects, which is to use the default registry. MetricsRegistry() metrics.Registry SetMetricsRegistry(metrics.Registry) // SetTraceOptions set the options for tracing (via x/net/trace). SetTraceOptions(enabled bool) // TLFValidDuration is the time TLFs are valid before identification needs to be redone. TLFValidDuration() time.Duration // SetTLFValidDuration sets TLFValidDuration. SetTLFValidDuration(time.Duration) // BGFlushDirOpBatchSize returns the directory op batch size for // background flushes. BGFlushDirOpBatchSize() int // SetBGFlushDirOpBatchSize sets the directory op batch size for // background flushes. SetBGFlushDirOpBatchSize(s int) // BGFlushPeriod returns how long to wait for a batch to fill up // before syncing a set of changes to the servers. BGFlushPeriod() time.Duration // SetBGFlushPeriod sets how long to wait for a batch to fill up // before syncing a set of changes to the servers. SetBGFlushPeriod(p time.Duration) // Shutdown is called to free config resources. Shutdown(context.Context) error // CheckStateOnShutdown tells the caller whether or not it is safe // to check the state of the system on shutdown. CheckStateOnShutdown() bool // GetRekeyFSMLimiter returns the global rekey FSM limiter. GetRekeyFSMLimiter() *OngoingWorkLimiter // RootNodeWrappers returns the set of root node wrapper functions // that will be applied to each newly-created root node. RootNodeWrappers() []func(Node) Node // AddRootNodeWrapper adds a new wrapper function that will be // applied whenever a root Node is created. This will only apply // to TLFs that are first accessed after `AddRootNodeWrapper` is // called. AddRootNodeWrapper(func(Node) Node) // SetVLogLevel sets the vdebug level for all logs. The possible // strings are hard-coded in go/libkb/vdebug.go, but include // "mobile", "vlog1", "vlog2", etc. SetVLogLevel(levelString string) // VLogLevel gets the vdebug level for this config. The possible // strings are hard-coded in go/libkb/vdebug.go, but include // "mobile", "vlog1", "vlog2", etc. VLogLevel() string subscriptionManagerGetter // SubscriptionManagerPublisher retursn a publisher that can be used to // publish events to the subscription manager. SubscriptionManagerPublisher() SubscriptionManagerPublisher // KbEnv returns the *libkb.Env. KbEnv() *libkb.Env kbContextGetter // AddResetForLoginTarget adds t as a target when config.ResetForLogin is called. AddResetForLoginTarget(t ResetForLoginer) // ResetForLogin calls ResetForLogin on additional protocols. ResetForLogin(context.Context, libkb.NormalizedUsername) } // NodeCache holds Nodes, and allows libkbfs to update them when // things change about the underlying KBFS blocks. It is probably // most useful to instantiate this on a per-folder-branch basis, so // that it can create a Path with the correct DirId and Branch name. type NodeCache interface { // GetOrCreate either makes a new Node for the given // BlockPointer, or returns an existing one. TODO: If we ever // support hard links, we will have to revisit the "name" and // "parent" parameters here. name must not be empty. Returns // an error if parent cannot be found. GetOrCreate( ptr data.BlockPointer, name data.PathPartString, parent Node, et data.EntryType) (Node, error) // Get returns the Node associated with the given ptr if one // already exists. Otherwise, it returns nil. Get(ref data.BlockRef) Node // UpdatePointer updates the BlockPointer for the corresponding // Node. NodeCache ignores this call when oldRef is not cached in // any Node. Returns whether the ID of the node that was updated, // or `nil` if nothing was updated. UpdatePointer(oldRef data.BlockRef, newPtr data.BlockPointer) NodeID // Move swaps the parent node for the corresponding Node, and // updates the node's name. NodeCache ignores the call when ptr // is not cached. If newParent is nil, it treats the ptr's // corresponding node as being unlinked from the old parent // completely. If successful, it returns a function that can be // called to undo the effect of the move (or `nil` if nothing // needs to be done); if newParent cannot be found, it returns an // error and a `nil` undo function. Move(ref data.BlockRef, newParent Node, newName data.PathPartString) ( undoFn func(), err error) // Unlink set the corresponding node's parent to nil and caches // the provided path in case the node is still open. NodeCache // ignores the call when ptr is not cached. The path is required // because the caller may have made changes to the parent nodes // already that shouldn't be reflected in the cached path. It // returns a function that can be called to undo the effect of the // unlink (or `nil` if nothing needs to be done). Unlink(ref data.BlockRef, oldPath data.Path, oldDe data.DirEntry) ( undoFn func()) // IsUnlinked returns whether `Unlink` has been called for the // reference behind this node. IsUnlinked(node Node) bool // UnlinkedDirEntry returns a directory entry if `Unlink` has been // called for the reference behind this node. UnlinkedDirEntry(node Node) data.DirEntry // UpdateUnlinkedDirEntry modifies a cached directory entry for a // node that has already been unlinked. UpdateUnlinkedDirEntry(node Node, newDe data.DirEntry) // PathFromNode creates the path up to a given Node. PathFromNode(node Node) data.Path // AllNodes returns the complete set of nodes currently in the // cache. The returned Nodes are not wrapped, and shouldn't be // used for data access. AllNodes() []Node // AllNodeChildren returns the complete set of nodes currently in // the cache, for which the given node `n` is a parent (direct or // indirect). The returned slice does not include `n` itself. // The returned Nodes are not wrapped, and shouldn't be used for // data access. AllNodeChildren(n Node) []Node // AddRootWrapper adds a new wrapper function that will be applied // whenever a root Node is created. AddRootWrapper(func(Node) Node) // SetObfuscatorMaker sets the obfuscator-making function for this cache. SetObfuscatorMaker(func() data.Obfuscator) // ObfuscatorMaker sets the obfuscator-making function for this cache. ObfuscatorMaker() func() data.Obfuscator } // fileBlockDeepCopier fetches a file block, makes a deep copy of it // (duplicating pointer for any indirect blocks) and generates a new // random temporary block ID for it. It returns the new BlockPointer, // and internally saves the block for future uses. type fileBlockDeepCopier func( context.Context, data.PathPartString, data.BlockPointer) ( data.BlockPointer, error) // crAction represents a specific action to take as part of the // conflict resolution process. type crAction interface { // swapUnmergedBlock should be called before do(), and if it // returns true, the caller must use the merged block // corresponding to the returned BlockPointer instead of // unmergedBlock when calling do(). If BlockPointer{} is zeroPtr // (and true is returned), just swap in the regular mergedBlock. swapUnmergedBlock( ctx context.Context, unmergedChains, mergedChains *crChains, unmergedDir *data.DirData) (bool, data.BlockPointer, error) // do modifies the given merged `dirData` in place to resolve the // conflict, and potentially uses the provided // `fileBlockDeepCopier`s to obtain copies of other blocks (along // with new BlockPointers) when requiring a block copy. It // returns a set of block infos that need to be unreferenced as // part of this conflict resolution. do( ctx context.Context, unmergedCopier, mergedCopier fileBlockDeepCopier, unmergedDir, mergedDir *data.DirData) (unrefs []data.BlockInfo, err error) // updateOps potentially modifies, in place, the slices of // unmerged and merged operations stored in the corresponding // crChains for the given unmerged and merged most recent // pointers. Eventually, the "unmerged" ops will be pushed as // part of a MD update, and so should contain any necessarily // operations to fully merge the unmerged data, including any // conflict resolution. The "merged" ops will be played through // locally, to notify any caches about the newly-obtained merged // data (and any changes to local data that were required as part // of conflict resolution, such as renames). A few things to note: // * A particular action's updateOps method may be called more than // once for different sets of chains, however it should only add // new directory operations (like create/rm/rename) into directory // chains. // * updateOps doesn't necessarily result in correct BlockPointers within // each of those ops; that must happen in a later phase. // * mergedDir can be nil if the chain is for a file. updateOps( ctx context.Context, unmergedMostRecent, mergedMostRecent data.BlockPointer, unmergedDir, mergedDir *data.DirData, unmergedChains, mergedChains *crChains) error // String returns a string representation for this crAction, used // for debugging. String() string } // RekeyQueue is a managed queue of folders needing some rekey action taken // upon them by the current client. type RekeyQueue interface { // Enqueue enqueues a folder for rekey action. If the TLF is already in the // rekey queue, the error channel of the existing one is returned. Enqueue(tlf.ID) // IsRekeyPending returns true if the given folder is in the rekey queue. // Note that an ongoing rekey doesn't count as "pending". IsRekeyPending(tlf.ID) bool // Shutdown cancels all pending rekey actions and clears the queue. It // doesn't cancel ongoing rekeys. After Shutdown() is called, the same // RekeyQueue shouldn't be used anymore. Shutdown() } // RekeyFSM is a Finite State Machine (FSM) for housekeeping rekey states for a // FolderBranch. Each FolderBranch has its own FSM for rekeys. // // See rekey_fsm.go for implementation details. // // TODO: report FSM status in FolderBranchStatus? type RekeyFSM interface { // Event sends an event to the FSM. Event(event RekeyEvent) // Shutdown shuts down the FSM. No new event should be sent into the FSM // after this method is called. Shutdown() // listenOnEvent adds a listener (callback) to the FSM so that when // event happens, callback is called with the received event. If repeatedly // is set to false, callback is called only once. Otherwise it's called every // time event happens. // // Currently this is only used in tests and for RekeyFile. See comment for // RequestRekeyAndWaitForOneFinishEvent for more details. listenOnEvent( event rekeyEventType, callback func(RekeyEvent), repeatedly bool) } // BlockRetriever specifies how to retrieve blocks. type BlockRetriever interface { // Request retrieves blocks asynchronously. `action` determines // what happens after the block is fetched successfully. Request(ctx context.Context, priority int, kmd libkey.KeyMetadata, ptr data.BlockPointer, block data.Block, lifetime data.BlockCacheLifetime, action BlockRequestAction) <-chan error // PutInCaches puts the block into the in-memory cache, and ensures that // the disk cache metadata is updated. PutInCaches(ctx context.Context, ptr data.BlockPointer, tlfID tlf.ID, block data.Block, lifetime data.BlockCacheLifetime, prefetchStatus PrefetchStatus, cacheType DiskBlockCacheType) error // TogglePrefetcher creates a new prefetcher. TogglePrefetcher(enable bool, syncCh <-chan struct{}, doneCh chan<- struct{}) <-chan struct{} } // ChatChannelNewMessageCB is a callback function that can be called // when there's a new message on a given conversation. type ChatChannelNewMessageCB func(convID chat1.ConversationID, body string) // Chat specifies a minimal interface for Keybase chatting. type Chat interface { // GetConversationID returns the chat conversation ID associated // with the given TLF name, type, chat type and channel name. GetConversationID( ctx context.Context, tlfName tlf.CanonicalName, tlfType tlf.Type, channelName string, chatType chat1.TopicType) ( chat1.ConversationID, error) // SendTextMessage (asynchronously) sends a text chat message to // the given conversation and channel. SendTextMessage( ctx context.Context, tlfName tlf.CanonicalName, tlfType tlf.Type, convID chat1.ConversationID, body string) error // GetGroupedInbox returns the TLFs with the most-recent chat // messages of the given type, up to `maxChats` of them. GetGroupedInbox( ctx context.Context, chatType chat1.TopicType, maxChats int) ( []*tlfhandle.Handle, error) // GetChannels returns a list of all the channels for a given // chat. The entries in `convIDs` and `channelNames` have a 1-to-1 // correspondence. GetChannels( ctx context.Context, tlfName tlf.CanonicalName, tlfType tlf.Type, chatType chat1.TopicType) ( convIDs []chat1.ConversationID, channelNames []string, err error) // ReadChannel returns a set of text messages from a channel, and // a `nextPage` pointer to the following set of messages. If the // given `startPage` is non-nil, it's used to specify the starting // point for the set of messages returned. ReadChannel( ctx context.Context, convID chat1.ConversationID, startPage []byte) ( messages []string, nextPage []byte, err error) // RegisterForMessages registers a callback that will be called // for each new messages that reaches convID. RegisterForMessages(convID chat1.ConversationID, cb ChatChannelNewMessageCB) // ClearCache is called to force this instance to forget // everything it might have cached, e.g. when a user logs out. ClearCache() } // blockPutState is an interface for keeping track of readied blocks // before putting them to the bserver. type blockPutState interface { data.BlockPutState oldPtr(ctx context.Context, blockPtr data.BlockPointer) (data.BlockPointer, error) getReadyBlockData( ctx context.Context, blockPtr data.BlockPointer) (data.ReadyBlockData, error) synced(blockPtr data.BlockPointer) error numBlocks() int } // blockPutStateCopiable is a more manipulatable interface around // `blockPutState`, allowing copying as well as merging/unmerging. type blockPutStateCopiable interface { blockPutState mergeOtherBps(ctx context.Context, other blockPutStateCopiable) error removeOtherBps(ctx context.Context, other blockPutStateCopiable) error deepCopy(ctx context.Context) (blockPutStateCopiable, error) deepCopyWithBlacklist( ctx context.Context, blacklist map[data.BlockPointer]bool) ( blockPutStateCopiable, error) } type fileBlockMap interface { putTopBlock( ctx context.Context, parentPtr data.BlockPointer, childName data.PathPartString, topBlock *data.FileBlock) error GetTopBlock( ctx context.Context, parentPtr data.BlockPointer, childName data.PathPartString) (*data.FileBlock, error) getFilenames( ctx context.Context, parentPtr data.BlockPointer) ( []data.PathPartString, error) } type dirBlockMap interface { putBlock( ctx context.Context, ptr data.BlockPointer, block *data.DirBlock) error getBlock( ctx context.Context, ptr data.BlockPointer) (*data.DirBlock, error) hasBlock(ctx context.Context, ptr data.BlockPointer) (bool, error) deleteBlock(ctx context.Context, ptr data.BlockPointer) error numBlocks() int }