Skip to content
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

release-20.1: pkg/storage: sync file in SafeWriteToFile #64498

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions pkg/storage/file_util.go
Expand Up @@ -12,26 +12,29 @@ package storage

import (
"bytes"
"fmt"
"io"

"github.com/cockroachdb/pebble/vfs"
)

// SafeWriteToFile writes the byte slice to the filename, contained in dir, using the given fs.
// It returns after both the file and the containing directory are synced.
// SafeWriteToFile writes the byte slice to the filename, contained in dir,
// using the given fs. It returns after both the file and the containing
// directory are synced.
func SafeWriteToFile(fs vfs.FS, dir string, filename string, b []byte) error {
tempName := filename + ".crdbtmp"
f, err := fs.Create(tempName)
if err != nil {
fmt.Printf("%v\n", err)
return err
}
bReader := bytes.NewReader(b)
if _, err = io.Copy(f, bReader); err != nil {
f.Close()
return err
}
if err = f.Sync(); err != nil {
f.Close()
return err
}
if err = f.Close(); err != nil {
return err
}
Expand Down
66 changes: 66 additions & 0 deletions pkg/storage/file_util_test.go
@@ -0,0 +1,66 @@
// Copyright 2021 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.

package storage

import (
"io"
"io/ioutil"
"os"
"testing"

"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/pebble/vfs"
"github.com/stretchr/testify/require"
)

func TestSafeWriteToFile(t *testing.T) {
defer leaktest.AfterTest(t)()

// Use an in-memory FS that strictly enforces syncs.
mem := vfs.NewStrictMem()
syncDir := func(dir string) {
fdir, err := mem.OpenDir(dir)
require.NoError(t, err)
require.NoError(t, fdir.Sync())
require.NoError(t, fdir.Close())
}
readFile := func(filename string) []byte {
f, err := mem.Open("foo/bar")
require.NoError(t, err)
b, err := ioutil.ReadAll(f)
require.NoError(t, err)
require.NoError(t, f.Close())
return b
}

require.NoError(t, mem.MkdirAll("foo", os.ModePerm))
syncDir("")
f, err := mem.Create("foo/bar")
require.NoError(t, err)
_, err = io.WriteString(f, "Hello world")
require.NoError(t, err)
require.NoError(t, f.Sync())
require.NoError(t, f.Close())
syncDir("foo")

// Discard any unsynced writes to make sure we set up the test
// preconditions correctly.
mem.ResetToSyncedState()
require.Equal(t, []byte("Hello world"), readFile("foo/bar"))

// Use SafeWriteToFile to atomically, durably change the contents of the
// file.
require.NoError(t, SafeWriteToFile(mem, "foo", "foo/bar", []byte("Hello everyone")))

// Discard any unsynced writes.
mem.ResetToSyncedState()
require.Equal(t, []byte("Hello everyone"), readFile("foo/bar"))
}