-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide system dependend wrapper for unix.Mknod
FreeBSD support 64bit inodes so it requires that dev provided to unix.Mknod is type uint64. This commit creates wrapper for unix.Mknod to fix this issue. Signed-off-by: Mateusz Kwiatkowski <[email protected]>
- Loading branch information
1 parent
d72e510
commit 92bf36c
Showing
8 changed files
with
101 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
This file contains 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,47 @@ | ||
/* | ||
* umoci: Umoci Modifies Open Containers' Images | ||
* Copyright (C) 2016-2020 SUSE LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package system | ||
|
||
import ( | ||
"archive/tar" | ||
|
||
"golang.org/x/sys/unix" | ||
) | ||
|
||
func Mknod(path string, mode uint32, dev uint64) error { | ||
return unix.Mknod(path, mode, dev) | ||
} | ||
|
||
// Tarmode takes a Typeflag (from a tar.Header for example) and returns the | ||
// corresponding os.Filemode bit. Unknown typeflags are treated like regular | ||
// files. | ||
func Tarmode(typeflag byte) uint32 { | ||
switch typeflag { | ||
case tar.TypeSymlink: | ||
return unix.S_IFLNK | ||
case tar.TypeChar: | ||
return unix.S_IFCHR | ||
case tar.TypeBlock: | ||
return unix.S_IFBLK | ||
case tar.TypeFifo: | ||
return unix.S_IFIFO | ||
case tar.TypeDir: | ||
return unix.S_IFDIR | ||
} | ||
return 0 | ||
} |
This file contains 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,45 @@ | ||
/* | ||
* umoci: Umoci Modifies Open Containers' Images | ||
* Copyright (C) 2016-2020 SUSE LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package system | ||
|
||
import ( | ||
"archive/tar" | ||
"testing" | ||
|
||
"golang.org/x/sys/unix" | ||
) | ||
|
||
// Exhaustive test for Tarmode mapping. | ||
func TestTarmode(t *testing.T) { | ||
for _, test := range []struct { | ||
typeflag byte | ||
mode uint32 | ||
}{ | ||
{tar.TypeReg, 0}, | ||
{tar.TypeSymlink, unix.S_IFLNK}, | ||
{tar.TypeChar, unix.S_IFCHR}, | ||
{tar.TypeBlock, unix.S_IFBLK}, | ||
{tar.TypeFifo, unix.S_IFIFO}, | ||
{tar.TypeDir, unix.S_IFDIR}, | ||
} { | ||
mode := Tarmode(test.typeflag) | ||
if mode != test.mode { | ||
t.Errorf("got unexpected mode %x with tar typeflag %x, expected %x", mode, test.typeflag, test.mode) | ||
} | ||
} | ||
} |
This file contains 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