|
| 1 | +// +build freebsd |
| 2 | + |
| 3 | +/* |
| 4 | + Copyright The containerd Authors. |
| 5 | +
|
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +*/ |
| 18 | + |
| 19 | +package fs |
| 20 | + |
| 21 | +import ( |
| 22 | + "os" |
| 23 | + "syscall" |
| 24 | + |
| 25 | + "github.com/pkg/errors" |
| 26 | + "golang.org/x/sys/unix" |
| 27 | +) |
| 28 | + |
| 29 | +func copyDevice(dst string, fi os.FileInfo) error { |
| 30 | + st, ok := fi.Sys().(*syscall.Stat_t) |
| 31 | + if !ok { |
| 32 | + return errors.New("unsupported stat type") |
| 33 | + } |
| 34 | + return unix.Mknod(dst, uint32(fi.Mode()), st.Rdev) |
| 35 | +} |
| 36 | + |
| 37 | +func utimesNano(name string, atime, mtime syscall.Timespec) error { |
| 38 | + at := unix.NsecToTimespec(atime.Nano()) |
| 39 | + mt := unix.NsecToTimespec(mtime.Nano()) |
| 40 | + utimes := [2]unix.Timespec{at, mt} |
| 41 | + return unix.UtimesNanoAt(unix.AT_FDCWD, name, utimes[0:], unix.AT_SYMLINK_NOFOLLOW) |
| 42 | +} |
0 commit comments