1 | // Copyright 2019 The Prometheus Authors
|
---|
2 | // Licensed under the Apache License, Version 2.0 (the "License");
|
---|
3 | // you may not use this file except in compliance with the License.
|
---|
4 | // You may obtain a copy of the License at
|
---|
5 | //
|
---|
6 | // http://www.apache.org/licenses/LICENSE-2.0
|
---|
7 | //
|
---|
8 | // Unless required by applicable law or agreed to in writing, software
|
---|
9 | // distributed under the License is distributed on an "AS IS" BASIS,
|
---|
10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
11 | // See the License for the specific language governing permissions and
|
---|
12 | // limitations under the License.
|
---|
13 |
|
---|
14 | package fs
|
---|
15 |
|
---|
16 | import (
|
---|
17 | "fmt"
|
---|
18 | "os"
|
---|
19 | "path/filepath"
|
---|
20 | )
|
---|
21 |
|
---|
22 | const (
|
---|
23 | // DefaultProcMountPoint is the common mount point of the proc filesystem.
|
---|
24 | DefaultProcMountPoint = "/proc"
|
---|
25 |
|
---|
26 | // DefaultSysMountPoint is the common mount point of the sys filesystem.
|
---|
27 | DefaultSysMountPoint = "/sys"
|
---|
28 |
|
---|
29 | // DefaultConfigfsMountPoint is the common mount point of the configfs.
|
---|
30 | DefaultConfigfsMountPoint = "/sys/kernel/config"
|
---|
31 | )
|
---|
32 |
|
---|
33 | // FS represents a pseudo-filesystem, normally /proc or /sys, which provides an
|
---|
34 | // interface to kernel data structures.
|
---|
35 | type FS string
|
---|
36 |
|
---|
37 | // NewFS returns a new FS mounted under the given mountPoint. It will error
|
---|
38 | // if the mount point can't be read.
|
---|
39 | func NewFS(mountPoint string) (FS, error) {
|
---|
40 | info, err := os.Stat(mountPoint)
|
---|
41 | if err != nil {
|
---|
42 | return "", fmt.Errorf("could not read %q: %w", mountPoint, err)
|
---|
43 | }
|
---|
44 | if !info.IsDir() {
|
---|
45 | return "", fmt.Errorf("mount point %q is not a directory", mountPoint)
|
---|
46 | }
|
---|
47 |
|
---|
48 | return FS(mountPoint), nil
|
---|
49 | }
|
---|
50 |
|
---|
51 | // Path appends the given path elements to the filesystem path, adding separators
|
---|
52 | // as necessary.
|
---|
53 | func (fs FS) Path(p ...string) string {
|
---|
54 | return filepath.Join(append([]string{string(fs)}, p...)...)
|
---|
55 | }
|
---|