-
Notifications
You must be signed in to change notification settings - Fork 1
Cache and accessor/file packages #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
61f4461
require MSAL
chlowell e4d1500
Accessor reads/writes storage
chlowell 991806d
file storage
chlowell 7a05cec
cache package
chlowell a45cd8c
integration tests and benchmarks
chlowell 4f75c0c
extensions/accessor -> extensions/cache/accessor
chlowell 9316662
refactor benchmarks
chlowell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
|
||
| package accessor | ||
|
|
||
| import "context" | ||
|
|
||
| // Accessor accesses data storage. | ||
| type Accessor interface { | ||
| Read(context.Context) ([]byte, error) | ||
| Write(context.Context, []byte) error | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
|
||
| package file | ||
|
|
||
| import ( | ||
| "context" | ||
| "errors" | ||
| "os" | ||
| "path/filepath" | ||
| "sync" | ||
|
|
||
| "github.com/AzureAD/microsoft-authentication-extensions-for-go/extensions/accessor" | ||
| ) | ||
|
|
||
| // Storage stores data in an unencrypted file. | ||
| type Storage struct { | ||
| m *sync.RWMutex | ||
| p string | ||
| } | ||
|
|
||
| // New is the constructor for Storage. "p" is the path to the file in which to store data. | ||
| func New(p string) (*Storage, error) { | ||
| return &Storage{m: &sync.RWMutex{}, p: p}, nil | ||
| } | ||
|
|
||
| // Read returns the file's content or, if the file doesn't exist, a nil slice and error. | ||
| func (s *Storage) Read(context.Context) ([]byte, error) { | ||
| s.m.RLock() | ||
| defer s.m.RUnlock() | ||
| b, err := os.ReadFile(s.p) | ||
| if errors.Is(err, os.ErrNotExist) { | ||
| return nil, nil | ||
| } | ||
| return b, err | ||
| } | ||
|
|
||
| // Write stores data in the file, overwriting any content, and creates the file if necessary. | ||
| func (s *Storage) Write(ctx context.Context, data []byte) error { | ||
| s.m.Lock() | ||
| defer s.m.Unlock() | ||
| err := os.WriteFile(s.p, data, 0600) | ||
| if errors.Is(err, os.ErrNotExist) { | ||
| dir := filepath.Dir(s.p) | ||
| if err = os.MkdirAll(dir, 0700); err == nil { | ||
| err = os.WriteFile(s.p, data, 0600) | ||
| } | ||
| } | ||
| return err | ||
| } | ||
|
|
||
| var _ accessor.Accessor = (*Storage)(nil) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
|
||
| package file | ||
|
|
||
| import ( | ||
| "context" | ||
| "os" | ||
| "path/filepath" | ||
| "testing" | ||
|
|
||
| "github.com/stretchr/testify/require" | ||
| ) | ||
|
|
||
| var ctx = context.Background() | ||
|
|
||
| func TestRead(t *testing.T) { | ||
| p := filepath.Join(t.TempDir(), t.Name()) | ||
| a, err := New(p) | ||
| require.NoError(t, err) | ||
|
|
||
| expected := []byte("expected") | ||
| require.NoError(t, os.WriteFile(p, expected, 0600)) | ||
|
|
||
| actual, err := a.Read(ctx) | ||
| require.NoError(t, err) | ||
| require.Equal(t, expected, actual) | ||
| } | ||
|
|
||
| func TestRoundTrip(t *testing.T) { | ||
| p := filepath.Join(t.TempDir(), "nonexistent", t.Name()) | ||
| a, err := New(p) | ||
| require.NoError(t, err) | ||
|
|
||
| var expected []byte | ||
| for i := 0; i < 4; i++ { | ||
| actual, err := a.Read(ctx) | ||
| require.NoError(t, err) | ||
| require.Equal(t, expected, actual) | ||
|
|
||
| expected = append(expected, byte(i)) | ||
| require.NoError(t, a.Write(ctx, expected)) | ||
| } | ||
| } | ||
|
|
||
| func TestWrite(t *testing.T) { | ||
| p := filepath.Join(t.TempDir(), t.Name()) | ||
| for _, create := range []bool{true, false} { | ||
| name := "file exists" | ||
| if create { | ||
| name = "new file" | ||
| } | ||
| t.Run(name, func(t *testing.T) { | ||
| if create { | ||
| f, err := os.OpenFile(p, os.O_CREATE|os.O_EXCL, 0600) | ||
| require.NoError(t, err) | ||
| require.NoError(t, f.Close()) | ||
| } | ||
| a, err := New(p) | ||
| require.NoError(t, err) | ||
|
|
||
| expected := []byte("expected") | ||
| require.NoError(t, a.Write(ctx, expected)) | ||
|
|
||
| actual, err := os.ReadFile(p) | ||
| require.NoError(t, err) | ||
| require.Equal(t, expected, actual) | ||
| }) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,154 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
|
||
| package cache | ||
|
|
||
| import ( | ||
| "context" | ||
| "errors" | ||
| "os" | ||
| "path/filepath" | ||
| "sync" | ||
| "time" | ||
|
|
||
| "github.com/AzureAD/microsoft-authentication-extensions-for-go/extensions/accessor" | ||
| "github.com/AzureAD/microsoft-authentication-extensions-for-go/extensions/internal/lock" | ||
| "github.com/AzureAD/microsoft-authentication-library-for-go/apps/cache" | ||
| ) | ||
|
|
||
| var ( | ||
| // retryDelay lets tests prevent delays when faking errors in Replace | ||
| retryDelay = 10 * time.Millisecond | ||
| // timeout lets tests set the default amount of time allowed to read from the accessor | ||
| timeout = time.Second | ||
| ) | ||
|
|
||
| // locker helps tests fake Lock | ||
| type locker interface { | ||
| Lock(context.Context) error | ||
| Unlock() error | ||
| } | ||
|
|
||
| // Cache caches authentication data in external storage, using a file lock to coordinate | ||
| // access to it with other processes. | ||
| type Cache struct { | ||
| // a provides read/write access to storage | ||
| a accessor.Accessor | ||
| // data is accessor's data as of the last sync | ||
| data []byte | ||
| // l coordinates with other processes | ||
| l locker | ||
| // m coordinates this process's goroutines | ||
| m *sync.Mutex | ||
| // sync is when this Cache last read from or wrote to a | ||
| sync time.Time | ||
| // ts is the path to a file used to timestamp Export and Replace operations | ||
| ts string | ||
| } | ||
|
|
||
| // New is the constructor for Cache. "p" is the path to a file used to track when stored | ||
| // data changes. Export will create this file and any directories in its path which don't | ||
| // already exist. | ||
| func New(a accessor.Accessor, p string) (*Cache, error) { | ||
| lock, err := lock.New(p+".lockfile", retryDelay) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| return &Cache{a: a, l: lock, m: &sync.Mutex{}, ts: p}, err | ||
| } | ||
|
|
||
| // Export writes the bytes marshaled by "m" to the accessor. | ||
| // MSAL clients call this method automatically. | ||
| func (c *Cache) Export(ctx context.Context, m cache.Marshaler, h cache.ExportHints) (err error) { | ||
| c.m.Lock() | ||
| defer c.m.Unlock() | ||
|
|
||
| data, err := m.Marshal() | ||
| if err != nil { | ||
| return err | ||
| } | ||
| err = c.l.Lock(ctx) | ||
| if err != nil { | ||
| return err | ||
| } | ||
| defer func() { | ||
| e := c.l.Unlock() | ||
| if err == nil { | ||
| err = e | ||
| } | ||
| }() | ||
| if err = c.a.Write(ctx, data); err == nil { | ||
| // touch the timestamp file to record the time of this write; discard any | ||
| // error because this is just an optimization to avoid redundant reads | ||
| c.sync = time.Now() | ||
| if er := os.Chtimes(c.ts, c.sync, c.sync); errors.Is(er, os.ErrNotExist) { | ||
| if er = os.MkdirAll(filepath.Dir(c.ts), 0700); er == nil { | ||
| f, _ := os.OpenFile(c.ts, os.O_CREATE, 0600) | ||
| _ = f.Close() | ||
| } | ||
| } | ||
| c.data = data | ||
| } | ||
| return err | ||
| } | ||
|
|
||
| // Replace reads bytes from the accessor and unmarshals them to "u". | ||
| // MSAL clients call this method automatically. | ||
| func (c *Cache) Replace(ctx context.Context, u cache.Unmarshaler, h cache.ReplaceHints) error { | ||
| c.m.Lock() | ||
| defer c.m.Unlock() | ||
|
|
||
| // If the timestamp file indicates cached data hasn't changed since we last read or wrote it, | ||
| // return c.data, which is the data as of that time. Discard any error from reading the timestamp | ||
| // because this is just an optimization to prevent unnecessary reads. If we don't know whether | ||
| // cached data has changed, we assume it has. | ||
| read := true | ||
| data := c.data | ||
| f, err := os.Stat(c.ts) | ||
| if err == nil { | ||
| mt := f.ModTime() | ||
| read = !mt.Equal(c.sync) | ||
| } | ||
| if _, hasDeadline := ctx.Deadline(); !hasDeadline { | ||
| var cancel context.CancelFunc | ||
| ctx, cancel = context.WithTimeout(ctx, timeout) | ||
| defer cancel() | ||
| } | ||
| // Unmarshal the accessor's data, reading it first if needed. We don't acquire the file lock before | ||
| // reading from the accessor because it isn't strictly necessary and is relatively expensive. In the | ||
| // unlikely event that a read overlaps with a write and returns malformed data, Unmarshal will return | ||
| // an error and we'll try another read. | ||
| for { | ||
| if read { | ||
| data, err = c.a.Read(ctx) | ||
| if err != nil { | ||
| break | ||
| } | ||
| } | ||
| err = u.Unmarshal(data) | ||
| if err == nil { | ||
| break | ||
| } else if !read { | ||
| // c.data is apparently corrupt; Read from the accessor before trying again | ||
| read = true | ||
| } | ||
| select { | ||
| case <-ctx.Done(): | ||
| return ctx.Err() | ||
| case <-time.After(retryDelay): | ||
| // Unmarshal error; try again | ||
| } | ||
| } | ||
| // Update the sync time only if we read from the accessor and unmarshaled its data. Otherwise | ||
| // the data hasn't changed since the last read/write, or reading failed and we'll try again on | ||
| // the next call. | ||
| if err == nil && read { | ||
| c.data = data | ||
| if f, err := os.Stat(c.ts); err == nil { | ||
| c.sync = f.ModTime() | ||
| } | ||
| } | ||
| return err | ||
| } | ||
|
|
||
| var _ cache.ExportReplace = (*Cache)(nil) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.