Bumps the go-deps group with 7 updates: | Package | From | To | | --- | --- | --- | | [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go) | `1.1.0` | `1.2.0` | | [github.com/google/go-cmp](https://github.com/google/go-cmp) | `0.5.9` | `0.6.0` | | [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.11.1` | `4.11.2` | | [github.com/openshift-online/ocm-sdk-go](https://github.com/openshift-online/ocm-sdk-go) | `0.1.371` | `0.1.373` | | [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.16.0` | `1.17.0` | | [golang.org/x/sync](https://github.com/golang/sync) | `0.3.0` | `0.4.0` | | [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.145.0` | `0.146.0` | Updates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](https://github.com/Azure/azure-sdk-for-go/compare/v1.1...v1.2) Updates `github.com/google/go-cmp` from 0.5.9 to 0.6.0 - [Release notes](https://github.com/google/go-cmp/releases) - [Commits](https://github.com/google/go-cmp/compare/v0.5.9...v0.6.0) Updates `github.com/labstack/echo/v4` from 4.11.1 to 4.11.2 - [Release notes](https://github.com/labstack/echo/releases) - [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md) - [Commits](https://github.com/labstack/echo/compare/v4.11.1...v4.11.2) Updates `github.com/openshift-online/ocm-sdk-go` from 0.1.371 to 0.1.373 - [Release notes](https://github.com/openshift-online/ocm-sdk-go/releases) - [Changelog](https://github.com/openshift-online/ocm-sdk-go/blob/main/CHANGES.md) - [Commits](https://github.com/openshift-online/ocm-sdk-go/compare/v0.1.371...v0.1.373) Updates `github.com/prometheus/client_golang` from 1.16.0 to 1.17.0 - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.16.0...v1.17.0) Updates `golang.org/x/sync` from 0.3.0 to 0.4.0 - [Commits](https://github.com/golang/sync/compare/v0.3.0...v0.4.0) Updates `google.golang.org/api` from 0.145.0 to 0.146.0 - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.145.0...v0.146.0) --- updated-dependencies: - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/storage/azblob dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: github.com/google/go-cmp dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: github.com/labstack/echo/v4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/openshift-online/ocm-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: golang.org/x/sync dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps ... Signed-off-by: dependabot[bot] <support@github.com>
180 lines
5.3 KiB
Go
180 lines
5.3 KiB
Go
// Copyright 2019 The Prometheus Authors
|
|
// 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 procfs
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/prometheus/procfs/internal/util"
|
|
)
|
|
|
|
// A MountInfo is a type that describes the details, options
|
|
// for each mount, parsed from /proc/self/mountinfo.
|
|
// The fields described in each entry of /proc/self/mountinfo
|
|
// is described in the following man page.
|
|
// http://man7.org/linux/man-pages/man5/proc.5.html
|
|
type MountInfo struct {
|
|
// Unique ID for the mount
|
|
MountID int
|
|
// The ID of the parent mount
|
|
ParentID int
|
|
// The value of `st_dev` for the files on this FS
|
|
MajorMinorVer string
|
|
// The pathname of the directory in the FS that forms
|
|
// the root for this mount
|
|
Root string
|
|
// The pathname of the mount point relative to the root
|
|
MountPoint string
|
|
// Mount options
|
|
Options map[string]string
|
|
// Zero or more optional fields
|
|
OptionalFields map[string]string
|
|
// The Filesystem type
|
|
FSType string
|
|
// FS specific information or "none"
|
|
Source string
|
|
// Superblock options
|
|
SuperOptions map[string]string
|
|
}
|
|
|
|
// Reads each line of the mountinfo file, and returns a list of formatted MountInfo structs.
|
|
func parseMountInfo(info []byte) ([]*MountInfo, error) {
|
|
mounts := []*MountInfo{}
|
|
scanner := bufio.NewScanner(bytes.NewReader(info))
|
|
for scanner.Scan() {
|
|
mountString := scanner.Text()
|
|
parsedMounts, err := parseMountInfoString(mountString)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mounts = append(mounts, parsedMounts)
|
|
}
|
|
|
|
err := scanner.Err()
|
|
return mounts, err
|
|
}
|
|
|
|
// Parses a mountinfo file line, and converts it to a MountInfo struct.
|
|
// An important check here is to see if the hyphen separator, as if it does not exist,
|
|
// it means that the line is malformed.
|
|
func parseMountInfoString(mountString string) (*MountInfo, error) {
|
|
var err error
|
|
|
|
mountInfo := strings.Split(mountString, " ")
|
|
mountInfoLength := len(mountInfo)
|
|
if mountInfoLength < 10 {
|
|
return nil, fmt.Errorf("%w: Too few fields in mount string: %s", ErrFileParse, mountString)
|
|
}
|
|
|
|
if mountInfo[mountInfoLength-4] != "-" {
|
|
return nil, fmt.Errorf("%w: couldn't find separator in expected field: %s", ErrFileParse, mountInfo[mountInfoLength-4])
|
|
}
|
|
|
|
mount := &MountInfo{
|
|
MajorMinorVer: mountInfo[2],
|
|
Root: mountInfo[3],
|
|
MountPoint: mountInfo[4],
|
|
Options: mountOptionsParser(mountInfo[5]),
|
|
OptionalFields: nil,
|
|
FSType: mountInfo[mountInfoLength-3],
|
|
Source: mountInfo[mountInfoLength-2],
|
|
SuperOptions: mountOptionsParser(mountInfo[mountInfoLength-1]),
|
|
}
|
|
|
|
mount.MountID, err = strconv.Atoi(mountInfo[0])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%w: mount ID: %q", ErrFileParse, mount.MountID)
|
|
}
|
|
mount.ParentID, err = strconv.Atoi(mountInfo[1])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%w: parent ID: %q", ErrFileParse, mount.ParentID)
|
|
}
|
|
// Has optional fields, which is a space separated list of values.
|
|
// Example: shared:2 master:7
|
|
if mountInfo[6] != "" {
|
|
mount.OptionalFields, err = mountOptionsParseOptionalFields(mountInfo[6 : mountInfoLength-4])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%s: %w", ErrFileParse, err)
|
|
}
|
|
}
|
|
return mount, nil
|
|
}
|
|
|
|
// mountOptionsIsValidField checks a string against a valid list of optional fields keys.
|
|
func mountOptionsIsValidField(s string) bool {
|
|
switch s {
|
|
case
|
|
"shared",
|
|
"master",
|
|
"propagate_from",
|
|
"unbindable":
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// mountOptionsParseOptionalFields parses a list of optional fields strings into a double map of strings.
|
|
func mountOptionsParseOptionalFields(o []string) (map[string]string, error) {
|
|
optionalFields := make(map[string]string)
|
|
for _, field := range o {
|
|
optionSplit := strings.SplitN(field, ":", 2)
|
|
value := ""
|
|
if len(optionSplit) == 2 {
|
|
value = optionSplit[1]
|
|
}
|
|
if mountOptionsIsValidField(optionSplit[0]) {
|
|
optionalFields[optionSplit[0]] = value
|
|
}
|
|
}
|
|
return optionalFields, nil
|
|
}
|
|
|
|
// mountOptionsParser parses the mount options, superblock options.
|
|
func mountOptionsParser(mountOptions string) map[string]string {
|
|
opts := make(map[string]string)
|
|
options := strings.Split(mountOptions, ",")
|
|
for _, opt := range options {
|
|
splitOption := strings.Split(opt, "=")
|
|
if len(splitOption) < 2 {
|
|
key := splitOption[0]
|
|
opts[key] = ""
|
|
} else {
|
|
key, value := splitOption[0], splitOption[1]
|
|
opts[key] = value
|
|
}
|
|
}
|
|
return opts
|
|
}
|
|
|
|
// GetMounts retrieves mountinfo information from `/proc/self/mountinfo`.
|
|
func GetMounts() ([]*MountInfo, error) {
|
|
data, err := util.ReadFileNoStat("/proc/self/mountinfo")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return parseMountInfo(data)
|
|
}
|
|
|
|
// GetProcMounts retrieves mountinfo information from a processes' `/proc/<pid>/mountinfo`.
|
|
func GetProcMounts(pid int) ([]*MountInfo, error) {
|
|
data, err := util.ReadFileNoStat(fmt.Sprintf("/proc/%d/mountinfo", pid))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return parseMountInfo(data)
|
|
}
|