build: upgrade base dependency
This commit is contained in:
		
							
								
								
									
										14
									
								
								vendor/github.com/cyrilix/robocar-base/cli/cli.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								vendor/github.com/cyrilix/robocar-base/cli/cli.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -5,7 +5,7 @@ import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"github.com/cyrilix/robocar-base/service"
 | 
			
		||||
	MQTT "github.com/eclipse/paho.mqtt.golang"
 | 
			
		||||
	"log"
 | 
			
		||||
	"go.uber.org/zap"
 | 
			
		||||
	"os"
 | 
			
		||||
	"os/signal"
 | 
			
		||||
	"strconv"
 | 
			
		||||
@@ -25,7 +25,7 @@ func SetIntDefaultValueFromEnv(value *int, key string, defaultValue int) error {
 | 
			
		||||
		sVal = os.Getenv(key)
 | 
			
		||||
		val, err := strconv.Atoi(sVal)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			log.Printf("unable to convert string to int: %v", err)
 | 
			
		||||
			zap.S().Errorf("unable to convert string to int: %v", err)
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		*value = val
 | 
			
		||||
@@ -40,7 +40,7 @@ func SetFloat64DefaultValueFromEnv(value *float64, key string, defaultValue floa
 | 
			
		||||
		sVal = os.Getenv(key)
 | 
			
		||||
		val, err := strconv.ParseFloat(sVal, 64)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			log.Printf("unable to convert string to float: %v", err)
 | 
			
		||||
			zap.S().Errorf("unable to convert string to float: %v", err)
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		*value = val
 | 
			
		||||
@@ -81,7 +81,7 @@ func InitIntFlag(key string, defValue int) int {
 | 
			
		||||
	var value int
 | 
			
		||||
	err := SetIntDefaultValueFromEnv(&value, key, defValue)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Panicf("invalid int value: %v", err)
 | 
			
		||||
		zap.S().Panicf("invalid int value: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	return value
 | 
			
		||||
}
 | 
			
		||||
@@ -90,7 +90,7 @@ func InitFloat64Flag(key string, defValue float64) float64 {
 | 
			
		||||
	var value float64
 | 
			
		||||
	err := SetFloat64DefaultValueFromEnv(&value, key, defValue)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Panicf("invalid value: %v", err)
 | 
			
		||||
		zap.S().Panicf("invalid value: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	return value
 | 
			
		||||
}
 | 
			
		||||
@@ -106,8 +106,8 @@ func Connect(uri, username, password, clientId string) (MQTT.Client, error) {
 | 
			
		||||
	opts.SetDefaultPublishHandler(
 | 
			
		||||
		//define a function for the default message handler
 | 
			
		||||
		func(client MQTT.Client, msg MQTT.Message) {
 | 
			
		||||
			fmt.Printf("TOPIC: %s\n", msg.Topic())
 | 
			
		||||
			fmt.Printf("MSG: %s\n", msg.Payload())
 | 
			
		||||
			zap.S().Infof("TOPIC: %s", msg.Topic())
 | 
			
		||||
			zap.S().Infof("MSG: %s", msg.Payload())
 | 
			
		||||
		})
 | 
			
		||||
 | 
			
		||||
	//create and start a client using the above ClientOptions
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										8
									
								
								vendor/github.com/cyrilix/robocar-base/service/part.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/github.com/cyrilix/robocar-base/service/part.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -3,21 +3,21 @@ package service
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	mqtt "github.com/eclipse/paho.mqtt.golang"
 | 
			
		||||
	"log"
 | 
			
		||||
	"go.uber.org/zap"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func StopService(name string, client mqtt.Client, topics ...string) {
 | 
			
		||||
	log.Printf("Stop %s service", name)
 | 
			
		||||
	zap.S().Infof("Stop %s service", name)
 | 
			
		||||
	token := client.Unsubscribe(topics...)
 | 
			
		||||
	token.Wait()
 | 
			
		||||
	if token.Error() != nil {
 | 
			
		||||
		log.Printf("unable to unsubscribe service: %v", token.Error())
 | 
			
		||||
		zap.S().Errorf("unable to unsubscribe service: %v", token.Error())
 | 
			
		||||
	}
 | 
			
		||||
	client.Disconnect(50)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func RegisterCallback(client mqtt.Client, topic string, callback mqtt.MessageHandler) error {
 | 
			
		||||
	log.Printf("Register callback on topic %v", topic)
 | 
			
		||||
	zap.S().Infof("Register callback on topic %v", topic)
 | 
			
		||||
	token := client.Subscribe(topic, 0, callback)
 | 
			
		||||
	token.Wait()
 | 
			
		||||
	if token.Error() != nil {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/github.com/sirupsen/logrus/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/github.com/sirupsen/logrus/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,4 +0,0 @@
 | 
			
		||||
logrus
 | 
			
		||||
vendor
 | 
			
		||||
 | 
			
		||||
.idea/
 | 
			
		||||
							
								
								
									
										40
									
								
								vendor/github.com/sirupsen/logrus/.golangci.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										40
									
								
								vendor/github.com/sirupsen/logrus/.golangci.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,40 +0,0 @@
 | 
			
		||||
run:
 | 
			
		||||
  # do not run on test files yet
 | 
			
		||||
  tests: false
 | 
			
		||||
 | 
			
		||||
# all available settings of specific linters
 | 
			
		||||
linters-settings:
 | 
			
		||||
  errcheck:
 | 
			
		||||
    # report about not checking of errors in type assetions: `a := b.(MyStruct)`;
 | 
			
		||||
    # default is false: such cases aren't reported by default.
 | 
			
		||||
    check-type-assertions: false
 | 
			
		||||
 | 
			
		||||
    # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
 | 
			
		||||
    # default is false: such cases aren't reported by default.
 | 
			
		||||
    check-blank: false
 | 
			
		||||
 | 
			
		||||
  lll:
 | 
			
		||||
    line-length: 100
 | 
			
		||||
    tab-width: 4
 | 
			
		||||
 | 
			
		||||
  prealloc:
 | 
			
		||||
    simple: false
 | 
			
		||||
    range-loops: false
 | 
			
		||||
    for-loops: false
 | 
			
		||||
 | 
			
		||||
  whitespace:
 | 
			
		||||
    multi-if: false   # Enforces newlines (or comments) after every multi-line if statement
 | 
			
		||||
    multi-func: false # Enforces newlines (or comments) after every multi-line function signature
 | 
			
		||||
 | 
			
		||||
linters:
 | 
			
		||||
  enable:
 | 
			
		||||
    - megacheck
 | 
			
		||||
    - govet
 | 
			
		||||
  disable:
 | 
			
		||||
    - maligned
 | 
			
		||||
    - prealloc
 | 
			
		||||
  disable-all: false
 | 
			
		||||
  presets:
 | 
			
		||||
    - bugs
 | 
			
		||||
    - unused
 | 
			
		||||
  fast: false
 | 
			
		||||
							
								
								
									
										15
									
								
								vendor/github.com/sirupsen/logrus/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								vendor/github.com/sirupsen/logrus/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,15 +0,0 @@
 | 
			
		||||
language: go
 | 
			
		||||
go_import_path: github.com/sirupsen/logrus
 | 
			
		||||
git:
 | 
			
		||||
  depth: 1
 | 
			
		||||
env:
 | 
			
		||||
  - GO111MODULE=on
 | 
			
		||||
go: 1.15.x
 | 
			
		||||
os: linux
 | 
			
		||||
install:
 | 
			
		||||
  - ./travis/install.sh
 | 
			
		||||
script:
 | 
			
		||||
  - cd ci
 | 
			
		||||
  - go run mage.go -v -w ../ crossBuild
 | 
			
		||||
  - go run mage.go -v -w ../ lint
 | 
			
		||||
  - go run mage.go -v -w ../ test
 | 
			
		||||
							
								
								
									
										259
									
								
								vendor/github.com/sirupsen/logrus/CHANGELOG.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										259
									
								
								vendor/github.com/sirupsen/logrus/CHANGELOG.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,259 +0,0 @@
 | 
			
		||||
# 1.8.1
 | 
			
		||||
Code quality:
 | 
			
		||||
  * move magefile in its own subdir/submodule to remove magefile dependency on logrus consumer
 | 
			
		||||
  * improve timestamp format documentation
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * fix race condition on logger hooks
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# 1.8.0
 | 
			
		||||
 | 
			
		||||
Correct versioning number replacing v1.7.1.
 | 
			
		||||
 | 
			
		||||
# 1.7.1
 | 
			
		||||
 | 
			
		||||
Beware this release has introduced a new public API and its semver is therefore incorrect.
 | 
			
		||||
 | 
			
		||||
Code quality:
 | 
			
		||||
  * use go 1.15 in travis
 | 
			
		||||
  * use magefile as task runner
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * small fixes about new go 1.13 error formatting system
 | 
			
		||||
  * Fix for long time race condiction with mutating data hooks
 | 
			
		||||
 | 
			
		||||
Features:
 | 
			
		||||
  * build support for zos
 | 
			
		||||
 | 
			
		||||
# 1.7.0
 | 
			
		||||
Fixes:
 | 
			
		||||
  * the dependency toward a windows terminal library has been removed
 | 
			
		||||
 | 
			
		||||
Features:
 | 
			
		||||
  * a new buffer pool management API has been added
 | 
			
		||||
  * a set of `<LogLevel>Fn()` functions have been added
 | 
			
		||||
 | 
			
		||||
# 1.6.0
 | 
			
		||||
Fixes:
 | 
			
		||||
  * end of line cleanup
 | 
			
		||||
  * revert the entry concurrency bug fix whic leads to deadlock under some circumstances
 | 
			
		||||
  * update dependency on go-windows-terminal-sequences to fix a crash with go 1.14
 | 
			
		||||
 | 
			
		||||
Features:
 | 
			
		||||
  * add an option to the `TextFormatter` to completely disable fields quoting
 | 
			
		||||
 | 
			
		||||
# 1.5.0
 | 
			
		||||
Code quality:
 | 
			
		||||
  * add golangci linter run on travis
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * add mutex for hooks concurrent access on `Entry` data
 | 
			
		||||
  * caller function field for go1.14
 | 
			
		||||
  * fix build issue for gopherjs target
 | 
			
		||||
 | 
			
		||||
Feature:
 | 
			
		||||
  * add an hooks/writer sub-package whose goal is to split output on different stream depending on the trace level
 | 
			
		||||
  * add a `DisableHTMLEscape` option in the `JSONFormatter`
 | 
			
		||||
  * add `ForceQuote` and `PadLevelText` options in the `TextFormatter`
 | 
			
		||||
 | 
			
		||||
# 1.4.2
 | 
			
		||||
  * Fixes build break for plan9, nacl, solaris
 | 
			
		||||
# 1.4.1
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * Enhance TextFormatter to not print caller information when they are empty (#944)
 | 
			
		||||
  * Remove dependency on golang.org/x/crypto (#932, #943)
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * Fix Entry.WithContext method to return a copy of the initial entry (#941)
 | 
			
		||||
 | 
			
		||||
# 1.4.0
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * Add `DeferExitHandler`, similar to `RegisterExitHandler` but prepending the handler to the list of handlers (semantically like `defer`) (#848).
 | 
			
		||||
  * Add `CallerPrettyfier` to `JSONFormatter` and `TextFormatter` (#909, #911)
 | 
			
		||||
  * Add `Entry.WithContext()` and `Entry.Context`, to set a context on entries to be used e.g. in hooks (#919).
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * Fix wrong method calls `Logger.Print` and `Logger.Warningln` (#893).
 | 
			
		||||
  * Update `Entry.Logf` to not do string formatting unless the log level is enabled (#903)
 | 
			
		||||
  * Fix infinite recursion on unknown `Level.String()` (#907)
 | 
			
		||||
  * Fix race condition in `getCaller` (#916).
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# 1.3.0
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * Log, Logf, Logln functions for Logger and Entry that take a Level
 | 
			
		||||
 | 
			
		||||
Fixes:
 | 
			
		||||
  * Building prometheus node_exporter on AIX (#840)
 | 
			
		||||
  * Race condition in TextFormatter (#468)
 | 
			
		||||
  * Travis CI import path (#868)
 | 
			
		||||
  * Remove coloured output on Windows (#862)
 | 
			
		||||
  * Pointer to func as field in JSONFormatter (#870)
 | 
			
		||||
  * Properly marshal Levels (#873)
 | 
			
		||||
 | 
			
		||||
# 1.2.0
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * A new method `SetReportCaller` in the `Logger` to enable the file, line and calling function from which the trace has been issued
 | 
			
		||||
  * A new trace level named `Trace` whose level is below `Debug`
 | 
			
		||||
  * A configurable exit function to be called upon a Fatal trace
 | 
			
		||||
  * The `Level` object now implements `encoding.TextUnmarshaler` interface
 | 
			
		||||
 | 
			
		||||
# 1.1.1
 | 
			
		||||
This is a bug fix release.
 | 
			
		||||
  * fix the build break on Solaris
 | 
			
		||||
  * don't drop a whole trace in JSONFormatter when a field param is a function pointer which can not be serialized
 | 
			
		||||
 | 
			
		||||
# 1.1.0
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * several fixes:
 | 
			
		||||
    * a fix for a race condition on entry formatting
 | 
			
		||||
    * proper cleanup of previously used entries before putting them back in the pool
 | 
			
		||||
    * the extra new line at the end of message in text formatter has been removed
 | 
			
		||||
  * a new global public API to check if a level is activated: IsLevelEnabled
 | 
			
		||||
  * the following methods have been added to the Logger object
 | 
			
		||||
    * IsLevelEnabled
 | 
			
		||||
    * SetFormatter
 | 
			
		||||
    * SetOutput
 | 
			
		||||
    * ReplaceHooks
 | 
			
		||||
  * introduction of go module
 | 
			
		||||
  * an indent configuration for the json formatter
 | 
			
		||||
  * output colour support for windows
 | 
			
		||||
  * the field sort function is now configurable for text formatter
 | 
			
		||||
  * the CLICOLOR and CLICOLOR\_FORCE environment variable support in text formater
 | 
			
		||||
 | 
			
		||||
# 1.0.6
 | 
			
		||||
 | 
			
		||||
This new release introduces:
 | 
			
		||||
  * a new api WithTime which allows to easily force the time of the log entry
 | 
			
		||||
    which is mostly useful for logger wrapper
 | 
			
		||||
  * a fix reverting the immutability of the entry given as parameter to the hooks
 | 
			
		||||
    a new configuration field of the json formatter in order to put all the fields
 | 
			
		||||
    in a nested dictionnary
 | 
			
		||||
  * a new SetOutput method in the Logger
 | 
			
		||||
  * a new configuration of the textformatter to configure the name of the default keys
 | 
			
		||||
  * a new configuration of the text formatter to disable the level truncation
 | 
			
		||||
 | 
			
		||||
# 1.0.5
 | 
			
		||||
 | 
			
		||||
* Fix hooks race (#707)
 | 
			
		||||
* Fix panic deadlock (#695)
 | 
			
		||||
 | 
			
		||||
# 1.0.4
 | 
			
		||||
 | 
			
		||||
* Fix race when adding hooks (#612)
 | 
			
		||||
* Fix terminal check in AppEngine (#635)
 | 
			
		||||
 | 
			
		||||
# 1.0.3
 | 
			
		||||
 | 
			
		||||
* Replace example files with testable examples
 | 
			
		||||
 | 
			
		||||
# 1.0.2
 | 
			
		||||
 | 
			
		||||
* bug: quote non-string values in text formatter (#583)
 | 
			
		||||
* Make (*Logger) SetLevel a public method
 | 
			
		||||
 | 
			
		||||
# 1.0.1
 | 
			
		||||
 | 
			
		||||
* bug: fix escaping in text formatter (#575)
 | 
			
		||||
 | 
			
		||||
# 1.0.0
 | 
			
		||||
 | 
			
		||||
* Officially changed name to lower-case
 | 
			
		||||
* bug: colors on Windows 10 (#541)
 | 
			
		||||
* bug: fix race in accessing level (#512)
 | 
			
		||||
 | 
			
		||||
# 0.11.5
 | 
			
		||||
 | 
			
		||||
* feature: add writer and writerlevel to entry (#372)
 | 
			
		||||
 | 
			
		||||
# 0.11.4
 | 
			
		||||
 | 
			
		||||
* bug: fix undefined variable on solaris (#493)
 | 
			
		||||
 | 
			
		||||
# 0.11.3
 | 
			
		||||
 | 
			
		||||
* formatter: configure quoting of empty values (#484)
 | 
			
		||||
* formatter: configure quoting character (default is `"`) (#484)
 | 
			
		||||
* bug: fix not importing io correctly in non-linux environments (#481)
 | 
			
		||||
 | 
			
		||||
# 0.11.2
 | 
			
		||||
 | 
			
		||||
* bug: fix windows terminal detection (#476)
 | 
			
		||||
 | 
			
		||||
# 0.11.1
 | 
			
		||||
 | 
			
		||||
* bug: fix tty detection with custom out (#471)
 | 
			
		||||
 | 
			
		||||
# 0.11.0
 | 
			
		||||
 | 
			
		||||
* performance: Use bufferpool to allocate (#370)
 | 
			
		||||
* terminal: terminal detection for app-engine (#343)
 | 
			
		||||
* feature: exit handler (#375)
 | 
			
		||||
 | 
			
		||||
# 0.10.0
 | 
			
		||||
 | 
			
		||||
* feature: Add a test hook (#180)
 | 
			
		||||
* feature: `ParseLevel` is now case-insensitive (#326)
 | 
			
		||||
* feature: `FieldLogger` interface that generalizes `Logger` and `Entry` (#308)
 | 
			
		||||
* performance: avoid re-allocations on `WithFields` (#335)
 | 
			
		||||
 | 
			
		||||
# 0.9.0
 | 
			
		||||
 | 
			
		||||
* logrus/text_formatter: don't emit empty msg
 | 
			
		||||
* logrus/hooks/airbrake: move out of main repository
 | 
			
		||||
* logrus/hooks/sentry: move out of main repository
 | 
			
		||||
* logrus/hooks/papertrail: move out of main repository
 | 
			
		||||
* logrus/hooks/bugsnag: move out of main repository
 | 
			
		||||
* logrus/core: run tests with `-race`
 | 
			
		||||
* logrus/core: detect TTY based on `stderr`
 | 
			
		||||
* logrus/core: support `WithError` on logger
 | 
			
		||||
* logrus/core: Solaris support
 | 
			
		||||
 | 
			
		||||
# 0.8.7
 | 
			
		||||
 | 
			
		||||
* logrus/core: fix possible race (#216)
 | 
			
		||||
* logrus/doc: small typo fixes and doc improvements
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# 0.8.6
 | 
			
		||||
 | 
			
		||||
* hooks/raven: allow passing an initialized client
 | 
			
		||||
 | 
			
		||||
# 0.8.5
 | 
			
		||||
 | 
			
		||||
* logrus/core: revert #208
 | 
			
		||||
 | 
			
		||||
# 0.8.4
 | 
			
		||||
 | 
			
		||||
* formatter/text: fix data race (#218)
 | 
			
		||||
 | 
			
		||||
# 0.8.3
 | 
			
		||||
 | 
			
		||||
* logrus/core: fix entry log level (#208)
 | 
			
		||||
* logrus/core: improve performance of text formatter by 40%
 | 
			
		||||
* logrus/core: expose `LevelHooks` type
 | 
			
		||||
* logrus/core: add support for DragonflyBSD and NetBSD
 | 
			
		||||
* formatter/text: print structs more verbosely
 | 
			
		||||
 | 
			
		||||
# 0.8.2
 | 
			
		||||
 | 
			
		||||
* logrus: fix more Fatal family functions
 | 
			
		||||
 | 
			
		||||
# 0.8.1
 | 
			
		||||
 | 
			
		||||
* logrus: fix not exiting on `Fatalf` and `Fatalln`
 | 
			
		||||
 | 
			
		||||
# 0.8.0
 | 
			
		||||
 | 
			
		||||
* logrus: defaults to stderr instead of stdout
 | 
			
		||||
* hooks/sentry: add special field for `*http.Request`
 | 
			
		||||
* formatter/text: ignore Windows for colors
 | 
			
		||||
 | 
			
		||||
# 0.7.3
 | 
			
		||||
 | 
			
		||||
* formatter/\*: allow configuration of timestamp layout
 | 
			
		||||
 | 
			
		||||
# 0.7.2
 | 
			
		||||
 | 
			
		||||
* formatter/text: Add configuration option for time format (#158)
 | 
			
		||||
							
								
								
									
										21
									
								
								vendor/github.com/sirupsen/logrus/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								vendor/github.com/sirupsen/logrus/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,21 +0,0 @@
 | 
			
		||||
The MIT License (MIT)
 | 
			
		||||
 | 
			
		||||
Copyright (c) 2014 Simon Eskildsen
 | 
			
		||||
 | 
			
		||||
Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
			
		||||
of this software and associated documentation files (the "Software"), to deal
 | 
			
		||||
in the Software without restriction, including without limitation the rights
 | 
			
		||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
			
		||||
copies of the Software, and to permit persons to whom the Software is
 | 
			
		||||
furnished to do so, subject to the following conditions:
 | 
			
		||||
 | 
			
		||||
The above copyright notice and this permission notice shall be included in
 | 
			
		||||
all copies or substantial portions of the Software.
 | 
			
		||||
 | 
			
		||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
			
		||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
			
		||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
			
		||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
			
		||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
			
		||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
			
		||||
THE SOFTWARE.
 | 
			
		||||
							
								
								
									
										513
									
								
								vendor/github.com/sirupsen/logrus/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										513
									
								
								vendor/github.com/sirupsen/logrus/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,513 +0,0 @@
 | 
			
		||||
# Logrus <img src="http://i.imgur.com/hTeVwmJ.png" width="40" height="40" alt=":walrus:" class="emoji" title=":walrus:"/> [](https://travis-ci.org/sirupsen/logrus) [](https://godoc.org/github.com/sirupsen/logrus)
 | 
			
		||||
 | 
			
		||||
Logrus is a structured logger for Go (golang), completely API compatible with
 | 
			
		||||
the standard library logger.
 | 
			
		||||
 | 
			
		||||
**Logrus is in maintenance-mode.** We will not be introducing new features. It's
 | 
			
		||||
simply too hard to do in a way that won't break many people's projects, which is
 | 
			
		||||
the last thing you want from your Logging library (again...).
 | 
			
		||||
 | 
			
		||||
This does not mean Logrus is dead. Logrus will continue to be maintained for
 | 
			
		||||
security, (backwards compatible) bug fixes, and performance (where we are
 | 
			
		||||
limited by the interface). 
 | 
			
		||||
 | 
			
		||||
I believe Logrus' biggest contribution is to have played a part in today's
 | 
			
		||||
widespread use of structured logging in Golang. There doesn't seem to be a
 | 
			
		||||
reason to do a major, breaking iteration into Logrus V2, since the fantastic Go
 | 
			
		||||
community has built those independently. Many fantastic alternatives have sprung
 | 
			
		||||
up. Logrus would look like those, had it been re-designed with what we know
 | 
			
		||||
about structured logging in Go today. Check out, for example,
 | 
			
		||||
[Zerolog][zerolog], [Zap][zap], and [Apex][apex].
 | 
			
		||||
 | 
			
		||||
[zerolog]: https://github.com/rs/zerolog
 | 
			
		||||
[zap]: https://github.com/uber-go/zap
 | 
			
		||||
[apex]: https://github.com/apex/log
 | 
			
		||||
 | 
			
		||||
**Seeing weird case-sensitive problems?** It's in the past been possible to
 | 
			
		||||
import Logrus as both upper- and lower-case. Due to the Go package environment,
 | 
			
		||||
this caused issues in the community and we needed a standard. Some environments
 | 
			
		||||
experienced problems with the upper-case variant, so the lower-case was decided.
 | 
			
		||||
Everything using `logrus` will need to use the lower-case:
 | 
			
		||||
`github.com/sirupsen/logrus`. Any package that isn't, should be changed.
 | 
			
		||||
 | 
			
		||||
To fix Glide, see [these
 | 
			
		||||
comments](https://github.com/sirupsen/logrus/issues/553#issuecomment-306591437).
 | 
			
		||||
For an in-depth explanation of the casing issue, see [this
 | 
			
		||||
comment](https://github.com/sirupsen/logrus/issues/570#issuecomment-313933276).
 | 
			
		||||
 | 
			
		||||
Nicely color-coded in development (when a TTY is attached, otherwise just
 | 
			
		||||
plain text):
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
With `log.SetFormatter(&log.JSONFormatter{})`, for easy parsing by logstash
 | 
			
		||||
or Splunk:
 | 
			
		||||
 | 
			
		||||
```json
 | 
			
		||||
{"animal":"walrus","level":"info","msg":"A group of walrus emerges from the
 | 
			
		||||
ocean","size":10,"time":"2014-03-10 19:57:38.562264131 -0400 EDT"}
 | 
			
		||||
 | 
			
		||||
{"level":"warning","msg":"The group's number increased tremendously!",
 | 
			
		||||
"number":122,"omg":true,"time":"2014-03-10 19:57:38.562471297 -0400 EDT"}
 | 
			
		||||
 | 
			
		||||
{"animal":"walrus","level":"info","msg":"A giant walrus appears!",
 | 
			
		||||
"size":10,"time":"2014-03-10 19:57:38.562500591 -0400 EDT"}
 | 
			
		||||
 | 
			
		||||
{"animal":"walrus","level":"info","msg":"Tremendously sized cow enters the ocean.",
 | 
			
		||||
"size":9,"time":"2014-03-10 19:57:38.562527896 -0400 EDT"}
 | 
			
		||||
 | 
			
		||||
{"level":"fatal","msg":"The ice breaks!","number":100,"omg":true,
 | 
			
		||||
"time":"2014-03-10 19:57:38.562543128 -0400 EDT"}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
With the default `log.SetFormatter(&log.TextFormatter{})` when a TTY is not
 | 
			
		||||
attached, the output is compatible with the
 | 
			
		||||
[logfmt](http://godoc.org/github.com/kr/logfmt) format:
 | 
			
		||||
 | 
			
		||||
```text
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=debug msg="Started observing beach" animal=walrus number=8
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=info msg="A group of walrus emerges from the ocean" animal=walrus size=10
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=warning msg="The group's number increased tremendously!" number=122 omg=true
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=debug msg="Temperature changes" temperature=-4
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=panic msg="It's over 9000!" animal=orca size=9009
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=fatal msg="The ice breaks!" err=&{0x2082280c0 map[animal:orca size:9009] 2015-03-26 01:27:38.441574009 -0400 EDT panic It's over 9000!} number=100 omg=true
 | 
			
		||||
```
 | 
			
		||||
To ensure this behaviour even if a TTY is attached, set your formatter as follows:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
	log.SetFormatter(&log.TextFormatter{
 | 
			
		||||
		DisableColors: true,
 | 
			
		||||
		FullTimestamp: true,
 | 
			
		||||
	})
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Logging Method Name
 | 
			
		||||
 | 
			
		||||
If you wish to add the calling method as a field, instruct the logger via:
 | 
			
		||||
```go
 | 
			
		||||
log.SetReportCaller(true)
 | 
			
		||||
```
 | 
			
		||||
This adds the caller as 'method' like so:
 | 
			
		||||
 | 
			
		||||
```json
 | 
			
		||||
{"animal":"penguin","level":"fatal","method":"github.com/sirupsen/arcticcreatures.migrate","msg":"a penguin swims by",
 | 
			
		||||
"time":"2014-03-10 19:57:38.562543129 -0400 EDT"}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
```text
 | 
			
		||||
time="2015-03-26T01:27:38-04:00" level=fatal method=github.com/sirupsen/arcticcreatures.migrate msg="a penguin swims by" animal=penguin
 | 
			
		||||
```
 | 
			
		||||
Note that this does add measurable overhead - the cost will depend on the version of Go, but is
 | 
			
		||||
between 20 and 40% in recent tests with 1.6 and 1.7.  You can validate this in your
 | 
			
		||||
environment via benchmarks: 
 | 
			
		||||
```
 | 
			
		||||
go test -bench=.*CallerTracing
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#### Case-sensitivity
 | 
			
		||||
 | 
			
		||||
The organization's name was changed to lower-case--and this will not be changed
 | 
			
		||||
back. If you are getting import conflicts due to case sensitivity, please use
 | 
			
		||||
the lower-case import: `github.com/sirupsen/logrus`.
 | 
			
		||||
 | 
			
		||||
#### Example
 | 
			
		||||
 | 
			
		||||
The simplest way to use Logrus is simply the package-level exported logger:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
package main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
  log "github.com/sirupsen/logrus"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func main() {
 | 
			
		||||
  log.WithFields(log.Fields{
 | 
			
		||||
    "animal": "walrus",
 | 
			
		||||
  }).Info("A walrus appears")
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Note that it's completely api-compatible with the stdlib logger, so you can
 | 
			
		||||
replace your `log` imports everywhere with `log "github.com/sirupsen/logrus"`
 | 
			
		||||
and you'll now have the flexibility of Logrus. You can customize it all you
 | 
			
		||||
want:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
package main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
  "os"
 | 
			
		||||
  log "github.com/sirupsen/logrus"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
  // Log as JSON instead of the default ASCII formatter.
 | 
			
		||||
  log.SetFormatter(&log.JSONFormatter{})
 | 
			
		||||
 | 
			
		||||
  // Output to stdout instead of the default stderr
 | 
			
		||||
  // Can be any io.Writer, see below for File example
 | 
			
		||||
  log.SetOutput(os.Stdout)
 | 
			
		||||
 | 
			
		||||
  // Only log the warning severity or above.
 | 
			
		||||
  log.SetLevel(log.WarnLevel)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func main() {
 | 
			
		||||
  log.WithFields(log.Fields{
 | 
			
		||||
    "animal": "walrus",
 | 
			
		||||
    "size":   10,
 | 
			
		||||
  }).Info("A group of walrus emerges from the ocean")
 | 
			
		||||
 | 
			
		||||
  log.WithFields(log.Fields{
 | 
			
		||||
    "omg":    true,
 | 
			
		||||
    "number": 122,
 | 
			
		||||
  }).Warn("The group's number increased tremendously!")
 | 
			
		||||
 | 
			
		||||
  log.WithFields(log.Fields{
 | 
			
		||||
    "omg":    true,
 | 
			
		||||
    "number": 100,
 | 
			
		||||
  }).Fatal("The ice breaks!")
 | 
			
		||||
 | 
			
		||||
  // A common pattern is to re-use fields between logging statements by re-using
 | 
			
		||||
  // the logrus.Entry returned from WithFields()
 | 
			
		||||
  contextLogger := log.WithFields(log.Fields{
 | 
			
		||||
    "common": "this is a common field",
 | 
			
		||||
    "other": "I also should be logged always",
 | 
			
		||||
  })
 | 
			
		||||
 | 
			
		||||
  contextLogger.Info("I'll be logged with common and other field")
 | 
			
		||||
  contextLogger.Info("Me too")
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
For more advanced usage such as logging to multiple locations from the same
 | 
			
		||||
application, you can also create an instance of the `logrus` Logger:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
package main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
  "os"
 | 
			
		||||
  "github.com/sirupsen/logrus"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Create a new instance of the logger. You can have any number of instances.
 | 
			
		||||
var log = logrus.New()
 | 
			
		||||
 | 
			
		||||
func main() {
 | 
			
		||||
  // The API for setting attributes is a little different than the package level
 | 
			
		||||
  // exported logger. See Godoc.
 | 
			
		||||
  log.Out = os.Stdout
 | 
			
		||||
 | 
			
		||||
  // You could set this to any `io.Writer` such as a file
 | 
			
		||||
  // file, err := os.OpenFile("logrus.log", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
 | 
			
		||||
  // if err == nil {
 | 
			
		||||
  //  log.Out = file
 | 
			
		||||
  // } else {
 | 
			
		||||
  //  log.Info("Failed to log to file, using default stderr")
 | 
			
		||||
  // }
 | 
			
		||||
 | 
			
		||||
  log.WithFields(logrus.Fields{
 | 
			
		||||
    "animal": "walrus",
 | 
			
		||||
    "size":   10,
 | 
			
		||||
  }).Info("A group of walrus emerges from the ocean")
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Fields
 | 
			
		||||
 | 
			
		||||
Logrus encourages careful, structured logging through logging fields instead of
 | 
			
		||||
long, unparseable error messages. For example, instead of: `log.Fatalf("Failed
 | 
			
		||||
to send event %s to topic %s with key %d")`, you should log the much more
 | 
			
		||||
discoverable:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
log.WithFields(log.Fields{
 | 
			
		||||
  "event": event,
 | 
			
		||||
  "topic": topic,
 | 
			
		||||
  "key": key,
 | 
			
		||||
}).Fatal("Failed to send event")
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
We've found this API forces you to think about logging in a way that produces
 | 
			
		||||
much more useful logging messages. We've been in countless situations where just
 | 
			
		||||
a single added field to a log statement that was already there would've saved us
 | 
			
		||||
hours. The `WithFields` call is optional.
 | 
			
		||||
 | 
			
		||||
In general, with Logrus using any of the `printf`-family functions should be
 | 
			
		||||
seen as a hint you should add a field, however, you can still use the
 | 
			
		||||
`printf`-family functions with Logrus.
 | 
			
		||||
 | 
			
		||||
#### Default Fields
 | 
			
		||||
 | 
			
		||||
Often it's helpful to have fields _always_ attached to log statements in an
 | 
			
		||||
application or parts of one. For example, you may want to always log the
 | 
			
		||||
`request_id` and `user_ip` in the context of a request. Instead of writing
 | 
			
		||||
`log.WithFields(log.Fields{"request_id": request_id, "user_ip": user_ip})` on
 | 
			
		||||
every line, you can create a `logrus.Entry` to pass around instead:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
requestLogger := log.WithFields(log.Fields{"request_id": request_id, "user_ip": user_ip})
 | 
			
		||||
requestLogger.Info("something happened on that request") # will log request_id and user_ip
 | 
			
		||||
requestLogger.Warn("something not great happened")
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Hooks
 | 
			
		||||
 | 
			
		||||
You can add hooks for logging levels. For example to send errors to an exception
 | 
			
		||||
tracking service on `Error`, `Fatal` and `Panic`, info to StatsD or log to
 | 
			
		||||
multiple places simultaneously, e.g. syslog.
 | 
			
		||||
 | 
			
		||||
Logrus comes with [built-in hooks](hooks/). Add those, or your custom hook, in
 | 
			
		||||
`init`:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
import (
 | 
			
		||||
  log "github.com/sirupsen/logrus"
 | 
			
		||||
  "gopkg.in/gemnasium/logrus-airbrake-hook.v2" // the package is named "airbrake"
 | 
			
		||||
  logrus_syslog "github.com/sirupsen/logrus/hooks/syslog"
 | 
			
		||||
  "log/syslog"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
 | 
			
		||||
  // Use the Airbrake hook to report errors that have Error severity or above to
 | 
			
		||||
  // an exception tracker. You can create custom hooks, see the Hooks section.
 | 
			
		||||
  log.AddHook(airbrake.NewHook(123, "xyz", "production"))
 | 
			
		||||
 | 
			
		||||
  hook, err := logrus_syslog.NewSyslogHook("udp", "localhost:514", syslog.LOG_INFO, "")
 | 
			
		||||
  if err != nil {
 | 
			
		||||
    log.Error("Unable to connect to local syslog daemon")
 | 
			
		||||
  } else {
 | 
			
		||||
    log.AddHook(hook)
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
Note: Syslog hook also support connecting to local syslog (Ex. "/dev/log" or "/var/run/syslog" or "/var/run/log"). For the detail, please check the [syslog hook README](hooks/syslog/README.md).
 | 
			
		||||
 | 
			
		||||
A list of currently known service hooks can be found in this wiki [page](https://github.com/sirupsen/logrus/wiki/Hooks)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#### Level logging
 | 
			
		||||
 | 
			
		||||
Logrus has seven logging levels: Trace, Debug, Info, Warning, Error, Fatal and Panic.
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
log.Trace("Something very low level.")
 | 
			
		||||
log.Debug("Useful debugging information.")
 | 
			
		||||
log.Info("Something noteworthy happened!")
 | 
			
		||||
log.Warn("You should probably take a look at this.")
 | 
			
		||||
log.Error("Something failed but I'm not quitting.")
 | 
			
		||||
// Calls os.Exit(1) after logging
 | 
			
		||||
log.Fatal("Bye.")
 | 
			
		||||
// Calls panic() after logging
 | 
			
		||||
log.Panic("I'm bailing.")
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
You can set the logging level on a `Logger`, then it will only log entries with
 | 
			
		||||
that severity or anything above it:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
// Will log anything that is info or above (warn, error, fatal, panic). Default.
 | 
			
		||||
log.SetLevel(log.InfoLevel)
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
It may be useful to set `log.Level = logrus.DebugLevel` in a debug or verbose
 | 
			
		||||
environment if your application has that.
 | 
			
		||||
 | 
			
		||||
#### Entries
 | 
			
		||||
 | 
			
		||||
Besides the fields added with `WithField` or `WithFields` some fields are
 | 
			
		||||
automatically added to all logging events:
 | 
			
		||||
 | 
			
		||||
1. `time`. The timestamp when the entry was created.
 | 
			
		||||
2. `msg`. The logging message passed to `{Info,Warn,Error,Fatal,Panic}` after
 | 
			
		||||
   the `AddFields` call. E.g. `Failed to send event.`
 | 
			
		||||
3. `level`. The logging level. E.g. `info`.
 | 
			
		||||
 | 
			
		||||
#### Environments
 | 
			
		||||
 | 
			
		||||
Logrus has no notion of environment.
 | 
			
		||||
 | 
			
		||||
If you wish for hooks and formatters to only be used in specific environments,
 | 
			
		||||
you should handle that yourself. For example, if your application has a global
 | 
			
		||||
variable `Environment`, which is a string representation of the environment you
 | 
			
		||||
could do:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
import (
 | 
			
		||||
  log "github.com/sirupsen/logrus"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
init() {
 | 
			
		||||
  // do something here to set environment depending on an environment variable
 | 
			
		||||
  // or command-line flag
 | 
			
		||||
  if Environment == "production" {
 | 
			
		||||
    log.SetFormatter(&log.JSONFormatter{})
 | 
			
		||||
  } else {
 | 
			
		||||
    // The TextFormatter is default, you don't actually have to do this.
 | 
			
		||||
    log.SetFormatter(&log.TextFormatter{})
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
This configuration is how `logrus` was intended to be used, but JSON in
 | 
			
		||||
production is mostly only useful if you do log aggregation with tools like
 | 
			
		||||
Splunk or Logstash.
 | 
			
		||||
 | 
			
		||||
#### Formatters
 | 
			
		||||
 | 
			
		||||
The built-in logging formatters are:
 | 
			
		||||
 | 
			
		||||
* `logrus.TextFormatter`. Logs the event in colors if stdout is a tty, otherwise
 | 
			
		||||
  without colors.
 | 
			
		||||
  * *Note:* to force colored output when there is no TTY, set the `ForceColors`
 | 
			
		||||
    field to `true`.  To force no colored output even if there is a TTY  set the
 | 
			
		||||
    `DisableColors` field to `true`. For Windows, see
 | 
			
		||||
    [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable).
 | 
			
		||||
  * When colors are enabled, levels are truncated to 4 characters by default. To disable
 | 
			
		||||
    truncation set the `DisableLevelTruncation` field to `true`.
 | 
			
		||||
  * When outputting to a TTY, it's often helpful to visually scan down a column where all the levels are the same width. Setting the `PadLevelText` field to `true` enables this behavior, by adding padding to the level text.
 | 
			
		||||
  * All options are listed in the [generated docs](https://godoc.org/github.com/sirupsen/logrus#TextFormatter).
 | 
			
		||||
* `logrus.JSONFormatter`. Logs fields as JSON.
 | 
			
		||||
  * All options are listed in the [generated docs](https://godoc.org/github.com/sirupsen/logrus#JSONFormatter).
 | 
			
		||||
 | 
			
		||||
Third party logging formatters:
 | 
			
		||||
 | 
			
		||||
* [`FluentdFormatter`](https://github.com/joonix/log). Formats entries that can be parsed by Kubernetes and Google Container Engine.
 | 
			
		||||
* [`GELF`](https://github.com/fabienm/go-logrus-formatters). Formats entries so they comply to Graylog's [GELF 1.1 specification](http://docs.graylog.org/en/2.4/pages/gelf.html).
 | 
			
		||||
* [`logstash`](https://github.com/bshuster-repo/logrus-logstash-hook). Logs fields as [Logstash](http://logstash.net) Events.
 | 
			
		||||
* [`prefixed`](https://github.com/x-cray/logrus-prefixed-formatter). Displays log entry source along with alternative layout.
 | 
			
		||||
* [`zalgo`](https://github.com/aybabtme/logzalgo). Invoking the Power of Zalgo.
 | 
			
		||||
* [`nested-logrus-formatter`](https://github.com/antonfisher/nested-logrus-formatter). Converts logrus fields to a nested structure.
 | 
			
		||||
* [`powerful-logrus-formatter`](https://github.com/zput/zxcTool). get fileName, log's line number and the latest function's name when print log; Sava log to files.
 | 
			
		||||
* [`caption-json-formatter`](https://github.com/nolleh/caption_json_formatter). logrus's message json formatter with human-readable caption added.
 | 
			
		||||
 | 
			
		||||
You can define your formatter by implementing the `Formatter` interface,
 | 
			
		||||
requiring a `Format` method. `Format` takes an `*Entry`. `entry.Data` is a
 | 
			
		||||
`Fields` type (`map[string]interface{}`) with all your fields as well as the
 | 
			
		||||
default ones (see Entries section above):
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
type MyJSONFormatter struct {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
log.SetFormatter(new(MyJSONFormatter))
 | 
			
		||||
 | 
			
		||||
func (f *MyJSONFormatter) Format(entry *Entry) ([]byte, error) {
 | 
			
		||||
  // Note this doesn't include Time, Level and Message which are available on
 | 
			
		||||
  // the Entry. Consult `godoc` on information about those fields or read the
 | 
			
		||||
  // source of the official loggers.
 | 
			
		||||
  serialized, err := json.Marshal(entry.Data)
 | 
			
		||||
    if err != nil {
 | 
			
		||||
      return nil, fmt.Errorf("Failed to marshal fields to JSON, %w", err)
 | 
			
		||||
    }
 | 
			
		||||
  return append(serialized, '\n'), nil
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Logger as an `io.Writer`
 | 
			
		||||
 | 
			
		||||
Logrus can be transformed into an `io.Writer`. That writer is the end of an `io.Pipe` and it is your responsibility to close it.
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
w := logger.Writer()
 | 
			
		||||
defer w.Close()
 | 
			
		||||
 | 
			
		||||
srv := http.Server{
 | 
			
		||||
    // create a stdlib log.Logger that writes to
 | 
			
		||||
    // logrus.Logger.
 | 
			
		||||
    ErrorLog: log.New(w, "", 0),
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Each line written to that writer will be printed the usual way, using formatters
 | 
			
		||||
and hooks. The level for those entries is `info`.
 | 
			
		||||
 | 
			
		||||
This means that we can override the standard library logger easily:
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
logger := logrus.New()
 | 
			
		||||
logger.Formatter = &logrus.JSONFormatter{}
 | 
			
		||||
 | 
			
		||||
// Use logrus for standard log output
 | 
			
		||||
// Note that `log` here references stdlib's log
 | 
			
		||||
// Not logrus imported under the name `log`.
 | 
			
		||||
log.SetOutput(logger.Writer())
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Rotation
 | 
			
		||||
 | 
			
		||||
Log rotation is not provided with Logrus. Log rotation should be done by an
 | 
			
		||||
external program (like `logrotate(8)`) that can compress and delete old log
 | 
			
		||||
entries. It should not be a feature of the application-level logger.
 | 
			
		||||
 | 
			
		||||
#### Tools
 | 
			
		||||
 | 
			
		||||
| Tool | Description |
 | 
			
		||||
| ---- | ----------- |
 | 
			
		||||
|[Logrus Mate](https://github.com/gogap/logrus_mate)|Logrus mate is a tool for Logrus to manage loggers, you can initial logger's level, hook and formatter by config file, the logger will be generated with different configs in different environments.|
 | 
			
		||||
|[Logrus Viper Helper](https://github.com/heirko/go-contrib/tree/master/logrusHelper)|An Helper around Logrus to wrap with spf13/Viper to load configuration with fangs! And to simplify Logrus configuration use some behavior of [Logrus Mate](https://github.com/gogap/logrus_mate). [sample](https://github.com/heirko/iris-contrib/blob/master/middleware/logrus-logger/example) |
 | 
			
		||||
 | 
			
		||||
#### Testing
 | 
			
		||||
 | 
			
		||||
Logrus has a built in facility for asserting the presence of log messages. This is implemented through the `test` hook and provides:
 | 
			
		||||
 | 
			
		||||
* decorators for existing logger (`test.NewLocal` and `test.NewGlobal`) which basically just adds the `test` hook
 | 
			
		||||
* a test logger (`test.NewNullLogger`) that just records log messages (and does not output any):
 | 
			
		||||
 | 
			
		||||
```go
 | 
			
		||||
import(
 | 
			
		||||
  "github.com/sirupsen/logrus"
 | 
			
		||||
  "github.com/sirupsen/logrus/hooks/test"
 | 
			
		||||
  "github.com/stretchr/testify/assert"
 | 
			
		||||
  "testing"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func TestSomething(t*testing.T){
 | 
			
		||||
  logger, hook := test.NewNullLogger()
 | 
			
		||||
  logger.Error("Helloerror")
 | 
			
		||||
 | 
			
		||||
  assert.Equal(t, 1, len(hook.Entries))
 | 
			
		||||
  assert.Equal(t, logrus.ErrorLevel, hook.LastEntry().Level)
 | 
			
		||||
  assert.Equal(t, "Helloerror", hook.LastEntry().Message)
 | 
			
		||||
 | 
			
		||||
  hook.Reset()
 | 
			
		||||
  assert.Nil(t, hook.LastEntry())
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Fatal handlers
 | 
			
		||||
 | 
			
		||||
Logrus can register one or more functions that will be called when any `fatal`
 | 
			
		||||
level message is logged. The registered handlers will be executed before
 | 
			
		||||
logrus performs an `os.Exit(1)`. This behavior may be helpful if callers need
 | 
			
		||||
to gracefully shutdown. Unlike a `panic("Something went wrong...")` call which can be intercepted with a deferred `recover` a call to `os.Exit(1)` can not be intercepted.
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
...
 | 
			
		||||
handler := func() {
 | 
			
		||||
  // gracefully shutdown something...
 | 
			
		||||
}
 | 
			
		||||
logrus.RegisterExitHandler(handler)
 | 
			
		||||
...
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
#### Thread safety
 | 
			
		||||
 | 
			
		||||
By default, Logger is protected by a mutex for concurrent writes. The mutex is held when calling hooks and writing logs.
 | 
			
		||||
If you are sure such locking is not needed, you can call logger.SetNoLock() to disable the locking.
 | 
			
		||||
 | 
			
		||||
Situation when locking is not needed includes:
 | 
			
		||||
 | 
			
		||||
* You have no hooks registered, or hooks calling is already thread-safe.
 | 
			
		||||
 | 
			
		||||
* Writing to logger.Out is already thread-safe, for example:
 | 
			
		||||
 | 
			
		||||
  1) logger.Out is protected by locks.
 | 
			
		||||
 | 
			
		||||
  2) logger.Out is an os.File handler opened with `O_APPEND` flag, and every write is smaller than 4k. (This allows multi-thread/multi-process writing)
 | 
			
		||||
 | 
			
		||||
     (Refer to http://www.notthewizard.com/2014/06/17/are-files-appends-really-atomic/)
 | 
			
		||||
							
								
								
									
										76
									
								
								vendor/github.com/sirupsen/logrus/alt_exit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										76
									
								
								vendor/github.com/sirupsen/logrus/alt_exit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,76 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
// The following code was sourced and modified from the
 | 
			
		||||
// https://github.com/tebeka/atexit package governed by the following license:
 | 
			
		||||
//
 | 
			
		||||
// Copyright (c) 2012 Miki Tebeka <miki.tebeka@gmail.com>.
 | 
			
		||||
//
 | 
			
		||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of
 | 
			
		||||
// this software and associated documentation files (the "Software"), to deal in
 | 
			
		||||
// the Software without restriction, including without limitation the rights to
 | 
			
		||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 | 
			
		||||
// the Software, and to permit persons to whom the Software is furnished to do so,
 | 
			
		||||
// subject to the following conditions:
 | 
			
		||||
//
 | 
			
		||||
// The above copyright notice and this permission notice shall be included in all
 | 
			
		||||
// copies or substantial portions of the Software.
 | 
			
		||||
//
 | 
			
		||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
			
		||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 | 
			
		||||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 | 
			
		||||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 | 
			
		||||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 | 
			
		||||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"os"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var handlers = []func(){}
 | 
			
		||||
 | 
			
		||||
func runHandler(handler func()) {
 | 
			
		||||
	defer func() {
 | 
			
		||||
		if err := recover(); err != nil {
 | 
			
		||||
			fmt.Fprintln(os.Stderr, "Error: Logrus exit handler error:", err)
 | 
			
		||||
		}
 | 
			
		||||
	}()
 | 
			
		||||
 | 
			
		||||
	handler()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func runHandlers() {
 | 
			
		||||
	for _, handler := range handlers {
 | 
			
		||||
		runHandler(handler)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Exit runs all the Logrus atexit handlers and then terminates the program using os.Exit(code)
 | 
			
		||||
func Exit(code int) {
 | 
			
		||||
	runHandlers()
 | 
			
		||||
	os.Exit(code)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// RegisterExitHandler appends a Logrus Exit handler to the list of handlers,
 | 
			
		||||
// call logrus.Exit to invoke all handlers. The handlers will also be invoked when
 | 
			
		||||
// any Fatal log entry is made.
 | 
			
		||||
//
 | 
			
		||||
// This method is useful when a caller wishes to use logrus to log a fatal
 | 
			
		||||
// message but also needs to gracefully shutdown. An example usecase could be
 | 
			
		||||
// closing database connections, or sending a alert that the application is
 | 
			
		||||
// closing.
 | 
			
		||||
func RegisterExitHandler(handler func()) {
 | 
			
		||||
	handlers = append(handlers, handler)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// DeferExitHandler prepends a Logrus Exit handler to the list of handlers,
 | 
			
		||||
// call logrus.Exit to invoke all handlers. The handlers will also be invoked when
 | 
			
		||||
// any Fatal log entry is made.
 | 
			
		||||
//
 | 
			
		||||
// This method is useful when a caller wishes to use logrus to log a fatal
 | 
			
		||||
// message but also needs to gracefully shutdown. An example usecase could be
 | 
			
		||||
// closing database connections, or sending a alert that the application is
 | 
			
		||||
// closing.
 | 
			
		||||
func DeferExitHandler(handler func()) {
 | 
			
		||||
	handlers = append([]func(){handler}, handlers...)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								vendor/github.com/sirupsen/logrus/appveyor.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								vendor/github.com/sirupsen/logrus/appveyor.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,14 +0,0 @@
 | 
			
		||||
version: "{build}"
 | 
			
		||||
platform: x64
 | 
			
		||||
clone_folder: c:\gopath\src\github.com\sirupsen\logrus
 | 
			
		||||
environment:
 | 
			
		||||
  GOPATH: c:\gopath
 | 
			
		||||
branches:
 | 
			
		||||
  only:
 | 
			
		||||
    - master
 | 
			
		||||
install:
 | 
			
		||||
  - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
 | 
			
		||||
  - go version
 | 
			
		||||
build_script:
 | 
			
		||||
  - go get -t
 | 
			
		||||
  - go test
 | 
			
		||||
							
								
								
									
										52
									
								
								vendor/github.com/sirupsen/logrus/buffer_pool.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										52
									
								
								vendor/github.com/sirupsen/logrus/buffer_pool.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,52 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"sync"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
	bufferPool BufferPool
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type BufferPool interface {
 | 
			
		||||
	Put(*bytes.Buffer)
 | 
			
		||||
	Get() *bytes.Buffer
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type defaultPool struct {
 | 
			
		||||
	pool *sync.Pool
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (p *defaultPool) Put(buf *bytes.Buffer) {
 | 
			
		||||
	p.pool.Put(buf)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (p *defaultPool) Get() *bytes.Buffer {
 | 
			
		||||
	return p.pool.Get().(*bytes.Buffer)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func getBuffer() *bytes.Buffer {
 | 
			
		||||
	return bufferPool.Get()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func putBuffer(buf *bytes.Buffer) {
 | 
			
		||||
	buf.Reset()
 | 
			
		||||
	bufferPool.Put(buf)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetBufferPool allows to replace the default logrus buffer pool
 | 
			
		||||
// to better meets the specific needs of an application.
 | 
			
		||||
func SetBufferPool(bp BufferPool) {
 | 
			
		||||
	bufferPool = bp
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	SetBufferPool(&defaultPool{
 | 
			
		||||
		pool: &sync.Pool{
 | 
			
		||||
			New: func() interface{} {
 | 
			
		||||
				return new(bytes.Buffer)
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	})
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										26
									
								
								vendor/github.com/sirupsen/logrus/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								vendor/github.com/sirupsen/logrus/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,26 +0,0 @@
 | 
			
		||||
/*
 | 
			
		||||
Package logrus is a structured logger for Go, completely API compatible with the standard library logger.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
The simplest way to use Logrus is simply the package-level exported logger:
 | 
			
		||||
 | 
			
		||||
  package main
 | 
			
		||||
 | 
			
		||||
  import (
 | 
			
		||||
    log "github.com/sirupsen/logrus"
 | 
			
		||||
  )
 | 
			
		||||
 | 
			
		||||
  func main() {
 | 
			
		||||
    log.WithFields(log.Fields{
 | 
			
		||||
      "animal": "walrus",
 | 
			
		||||
      "number": 1,
 | 
			
		||||
      "size":   10,
 | 
			
		||||
    }).Info("A walrus appears")
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
Output:
 | 
			
		||||
  time="2015-09-07T08:48:33Z" level=info msg="A walrus appears" animal=walrus number=1 size=10
 | 
			
		||||
 | 
			
		||||
For a full guide visit https://github.com/sirupsen/logrus
 | 
			
		||||
*/
 | 
			
		||||
package logrus
 | 
			
		||||
							
								
								
									
										431
									
								
								vendor/github.com/sirupsen/logrus/entry.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										431
									
								
								vendor/github.com/sirupsen/logrus/entry.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,431 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"context"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"os"
 | 
			
		||||
	"reflect"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"sync"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
 | 
			
		||||
	// qualified package name, cached at first use
 | 
			
		||||
	logrusPackage string
 | 
			
		||||
 | 
			
		||||
	// Positions in the call stack when tracing to report the calling method
 | 
			
		||||
	minimumCallerDepth int
 | 
			
		||||
 | 
			
		||||
	// Used for caller information initialisation
 | 
			
		||||
	callerInitOnce sync.Once
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	maximumCallerDepth int = 25
 | 
			
		||||
	knownLogrusFrames  int = 4
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	// start at the bottom of the stack before the package-name cache is primed
 | 
			
		||||
	minimumCallerDepth = 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Defines the key when adding errors using WithError.
 | 
			
		||||
var ErrorKey = "error"
 | 
			
		||||
 | 
			
		||||
// An entry is the final or intermediate Logrus logging entry. It contains all
 | 
			
		||||
// the fields passed with WithField{,s}. It's finally logged when Trace, Debug,
 | 
			
		||||
// Info, Warn, Error, Fatal or Panic is called on it. These objects can be
 | 
			
		||||
// reused and passed around as much as you wish to avoid field duplication.
 | 
			
		||||
type Entry struct {
 | 
			
		||||
	Logger *Logger
 | 
			
		||||
 | 
			
		||||
	// Contains all the fields set by the user.
 | 
			
		||||
	Data Fields
 | 
			
		||||
 | 
			
		||||
	// Time at which the log entry was created
 | 
			
		||||
	Time time.Time
 | 
			
		||||
 | 
			
		||||
	// Level the log entry was logged at: Trace, Debug, Info, Warn, Error, Fatal or Panic
 | 
			
		||||
	// This field will be set on entry firing and the value will be equal to the one in Logger struct field.
 | 
			
		||||
	Level Level
 | 
			
		||||
 | 
			
		||||
	// Calling method, with package name
 | 
			
		||||
	Caller *runtime.Frame
 | 
			
		||||
 | 
			
		||||
	// Message passed to Trace, Debug, Info, Warn, Error, Fatal or Panic
 | 
			
		||||
	Message string
 | 
			
		||||
 | 
			
		||||
	// When formatter is called in entry.log(), a Buffer may be set to entry
 | 
			
		||||
	Buffer *bytes.Buffer
 | 
			
		||||
 | 
			
		||||
	// Contains the context set by the user. Useful for hook processing etc.
 | 
			
		||||
	Context context.Context
 | 
			
		||||
 | 
			
		||||
	// err may contain a field formatting error
 | 
			
		||||
	err string
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func NewEntry(logger *Logger) *Entry {
 | 
			
		||||
	return &Entry{
 | 
			
		||||
		Logger: logger,
 | 
			
		||||
		// Default is three fields, plus one optional.  Give a little extra room.
 | 
			
		||||
		Data: make(Fields, 6),
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Dup() *Entry {
 | 
			
		||||
	data := make(Fields, len(entry.Data))
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		data[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	return &Entry{Logger: entry.Logger, Data: data, Time: entry.Time, Context: entry.Context, err: entry.err}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Returns the bytes representation of this entry from the formatter.
 | 
			
		||||
func (entry *Entry) Bytes() ([]byte, error) {
 | 
			
		||||
	return entry.Logger.Formatter.Format(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Returns the string representation from the reader and ultimately the
 | 
			
		||||
// formatter.
 | 
			
		||||
func (entry *Entry) String() (string, error) {
 | 
			
		||||
	serialized, err := entry.Bytes()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return "", err
 | 
			
		||||
	}
 | 
			
		||||
	str := string(serialized)
 | 
			
		||||
	return str, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add an error as single field (using the key defined in ErrorKey) to the Entry.
 | 
			
		||||
func (entry *Entry) WithError(err error) *Entry {
 | 
			
		||||
	return entry.WithField(ErrorKey, err)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add a context to the Entry.
 | 
			
		||||
func (entry *Entry) WithContext(ctx context.Context) *Entry {
 | 
			
		||||
	dataCopy := make(Fields, len(entry.Data))
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		dataCopy[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	return &Entry{Logger: entry.Logger, Data: dataCopy, Time: entry.Time, err: entry.err, Context: ctx}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add a single field to the Entry.
 | 
			
		||||
func (entry *Entry) WithField(key string, value interface{}) *Entry {
 | 
			
		||||
	return entry.WithFields(Fields{key: value})
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add a map of fields to the Entry.
 | 
			
		||||
func (entry *Entry) WithFields(fields Fields) *Entry {
 | 
			
		||||
	data := make(Fields, len(entry.Data)+len(fields))
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		data[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	fieldErr := entry.err
 | 
			
		||||
	for k, v := range fields {
 | 
			
		||||
		isErrField := false
 | 
			
		||||
		if t := reflect.TypeOf(v); t != nil {
 | 
			
		||||
			switch {
 | 
			
		||||
			case t.Kind() == reflect.Func, t.Kind() == reflect.Ptr && t.Elem().Kind() == reflect.Func:
 | 
			
		||||
				isErrField = true
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		if isErrField {
 | 
			
		||||
			tmp := fmt.Sprintf("can not add field %q", k)
 | 
			
		||||
			if fieldErr != "" {
 | 
			
		||||
				fieldErr = entry.err + ", " + tmp
 | 
			
		||||
			} else {
 | 
			
		||||
				fieldErr = tmp
 | 
			
		||||
			}
 | 
			
		||||
		} else {
 | 
			
		||||
			data[k] = v
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return &Entry{Logger: entry.Logger, Data: data, Time: entry.Time, err: fieldErr, Context: entry.Context}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Overrides the time of the Entry.
 | 
			
		||||
func (entry *Entry) WithTime(t time.Time) *Entry {
 | 
			
		||||
	dataCopy := make(Fields, len(entry.Data))
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		dataCopy[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	return &Entry{Logger: entry.Logger, Data: dataCopy, Time: t, err: entry.err, Context: entry.Context}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// getPackageName reduces a fully qualified function name to the package name
 | 
			
		||||
// There really ought to be to be a better way...
 | 
			
		||||
func getPackageName(f string) string {
 | 
			
		||||
	for {
 | 
			
		||||
		lastPeriod := strings.LastIndex(f, ".")
 | 
			
		||||
		lastSlash := strings.LastIndex(f, "/")
 | 
			
		||||
		if lastPeriod > lastSlash {
 | 
			
		||||
			f = f[:lastPeriod]
 | 
			
		||||
		} else {
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return f
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// getCaller retrieves the name of the first non-logrus calling function
 | 
			
		||||
func getCaller() *runtime.Frame {
 | 
			
		||||
	// cache this package's fully-qualified name
 | 
			
		||||
	callerInitOnce.Do(func() {
 | 
			
		||||
		pcs := make([]uintptr, maximumCallerDepth)
 | 
			
		||||
		_ = runtime.Callers(0, pcs)
 | 
			
		||||
 | 
			
		||||
		// dynamic get the package name and the minimum caller depth
 | 
			
		||||
		for i := 0; i < maximumCallerDepth; i++ {
 | 
			
		||||
			funcName := runtime.FuncForPC(pcs[i]).Name()
 | 
			
		||||
			if strings.Contains(funcName, "getCaller") {
 | 
			
		||||
				logrusPackage = getPackageName(funcName)
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		minimumCallerDepth = knownLogrusFrames
 | 
			
		||||
	})
 | 
			
		||||
 | 
			
		||||
	// Restrict the lookback frames to avoid runaway lookups
 | 
			
		||||
	pcs := make([]uintptr, maximumCallerDepth)
 | 
			
		||||
	depth := runtime.Callers(minimumCallerDepth, pcs)
 | 
			
		||||
	frames := runtime.CallersFrames(pcs[:depth])
 | 
			
		||||
 | 
			
		||||
	for f, again := frames.Next(); again; f, again = frames.Next() {
 | 
			
		||||
		pkg := getPackageName(f.Function)
 | 
			
		||||
 | 
			
		||||
		// If the caller isn't part of this package, we're done
 | 
			
		||||
		if pkg != logrusPackage {
 | 
			
		||||
			return &f //nolint:scopelint
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// if we got here, we failed to find the caller's context
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry Entry) HasCaller() (has bool) {
 | 
			
		||||
	return entry.Logger != nil &&
 | 
			
		||||
		entry.Logger.ReportCaller &&
 | 
			
		||||
		entry.Caller != nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) log(level Level, msg string) {
 | 
			
		||||
	var buffer *bytes.Buffer
 | 
			
		||||
 | 
			
		||||
	newEntry := entry.Dup()
 | 
			
		||||
 | 
			
		||||
	if newEntry.Time.IsZero() {
 | 
			
		||||
		newEntry.Time = time.Now()
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	newEntry.Level = level
 | 
			
		||||
	newEntry.Message = msg
 | 
			
		||||
 | 
			
		||||
	newEntry.Logger.mu.Lock()
 | 
			
		||||
	reportCaller := newEntry.Logger.ReportCaller
 | 
			
		||||
	newEntry.Logger.mu.Unlock()
 | 
			
		||||
 | 
			
		||||
	if reportCaller {
 | 
			
		||||
		newEntry.Caller = getCaller()
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	newEntry.fireHooks()
 | 
			
		||||
 | 
			
		||||
	buffer = getBuffer()
 | 
			
		||||
	defer func() {
 | 
			
		||||
		newEntry.Buffer = nil
 | 
			
		||||
		putBuffer(buffer)
 | 
			
		||||
	}()
 | 
			
		||||
	buffer.Reset()
 | 
			
		||||
	newEntry.Buffer = buffer
 | 
			
		||||
 | 
			
		||||
	newEntry.write()
 | 
			
		||||
 | 
			
		||||
	newEntry.Buffer = nil
 | 
			
		||||
 | 
			
		||||
	// To avoid Entry#log() returning a value that only would make sense for
 | 
			
		||||
	// panic() to use in Entry#Panic(), we avoid the allocation by checking
 | 
			
		||||
	// directly here.
 | 
			
		||||
	if level <= PanicLevel {
 | 
			
		||||
		panic(newEntry)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) fireHooks() {
 | 
			
		||||
	var tmpHooks LevelHooks
 | 
			
		||||
	entry.Logger.mu.Lock()
 | 
			
		||||
	tmpHooks = make(LevelHooks, len(entry.Logger.Hooks))
 | 
			
		||||
	for k, v := range entry.Logger.Hooks {
 | 
			
		||||
		tmpHooks[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	entry.Logger.mu.Unlock()
 | 
			
		||||
 | 
			
		||||
	err := tmpHooks.Fire(entry.Level, entry)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		fmt.Fprintf(os.Stderr, "Failed to fire hook: %v\n", err)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) write() {
 | 
			
		||||
	serialized, err := entry.Logger.Formatter.Format(entry)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		fmt.Fprintf(os.Stderr, "Failed to obtain reader, %v\n", err)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	entry.Logger.mu.Lock()
 | 
			
		||||
	defer entry.Logger.mu.Unlock()
 | 
			
		||||
	if _, err := entry.Logger.Out.Write(serialized); err != nil {
 | 
			
		||||
		fmt.Fprintf(os.Stderr, "Failed to write to log, %v\n", err)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Log(level Level, args ...interface{}) {
 | 
			
		||||
	if entry.Logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry.log(level, fmt.Sprint(args...))
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Trace(args ...interface{}) {
 | 
			
		||||
	entry.Log(TraceLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Debug(args ...interface{}) {
 | 
			
		||||
	entry.Log(DebugLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Print(args ...interface{}) {
 | 
			
		||||
	entry.Info(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Info(args ...interface{}) {
 | 
			
		||||
	entry.Log(InfoLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warn(args ...interface{}) {
 | 
			
		||||
	entry.Log(WarnLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warning(args ...interface{}) {
 | 
			
		||||
	entry.Warn(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Error(args ...interface{}) {
 | 
			
		||||
	entry.Log(ErrorLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Fatal(args ...interface{}) {
 | 
			
		||||
	entry.Log(FatalLevel, args...)
 | 
			
		||||
	entry.Logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Panic(args ...interface{}) {
 | 
			
		||||
	entry.Log(PanicLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Entry Printf family functions
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Logf(level Level, format string, args ...interface{}) {
 | 
			
		||||
	if entry.Logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry.Log(level, fmt.Sprintf(format, args...))
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Tracef(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(TraceLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Debugf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(DebugLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Infof(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(InfoLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Printf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Infof(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warnf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(WarnLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warningf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Warnf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Errorf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(ErrorLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Fatalf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(FatalLevel, format, args...)
 | 
			
		||||
	entry.Logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Panicf(format string, args ...interface{}) {
 | 
			
		||||
	entry.Logf(PanicLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Entry Println family functions
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Logln(level Level, args ...interface{}) {
 | 
			
		||||
	if entry.Logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry.Log(level, entry.sprintlnn(args...))
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Traceln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(TraceLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Debugln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(DebugLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Infoln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(InfoLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Println(args ...interface{}) {
 | 
			
		||||
	entry.Infoln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warnln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(WarnLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Warningln(args ...interface{}) {
 | 
			
		||||
	entry.Warnln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Errorln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(ErrorLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Fatalln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(FatalLevel, args...)
 | 
			
		||||
	entry.Logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Panicln(args ...interface{}) {
 | 
			
		||||
	entry.Logln(PanicLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Sprintlnn => Sprint no newline. This is to get the behavior of how
 | 
			
		||||
// fmt.Sprintln where spaces are always added between operands, regardless of
 | 
			
		||||
// their type. Instead of vendoring the Sprintln implementation to spare a
 | 
			
		||||
// string allocation, we do the simplest thing.
 | 
			
		||||
func (entry *Entry) sprintlnn(args ...interface{}) string {
 | 
			
		||||
	msg := fmt.Sprintln(args...)
 | 
			
		||||
	return msg[:len(msg)-1]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										270
									
								
								vendor/github.com/sirupsen/logrus/exported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										270
									
								
								vendor/github.com/sirupsen/logrus/exported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,270 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"context"
 | 
			
		||||
	"io"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
	// std is the name of the standard logger in stdlib `log`
 | 
			
		||||
	std = New()
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func StandardLogger() *Logger {
 | 
			
		||||
	return std
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetOutput sets the standard logger output.
 | 
			
		||||
func SetOutput(out io.Writer) {
 | 
			
		||||
	std.SetOutput(out)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetFormatter sets the standard logger formatter.
 | 
			
		||||
func SetFormatter(formatter Formatter) {
 | 
			
		||||
	std.SetFormatter(formatter)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetReportCaller sets whether the standard logger will include the calling
 | 
			
		||||
// method as a field.
 | 
			
		||||
func SetReportCaller(include bool) {
 | 
			
		||||
	std.SetReportCaller(include)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetLevel sets the standard logger level.
 | 
			
		||||
func SetLevel(level Level) {
 | 
			
		||||
	std.SetLevel(level)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetLevel returns the standard logger level.
 | 
			
		||||
func GetLevel() Level {
 | 
			
		||||
	return std.GetLevel()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsLevelEnabled checks if the log level of the standard logger is greater than the level param
 | 
			
		||||
func IsLevelEnabled(level Level) bool {
 | 
			
		||||
	return std.IsLevelEnabled(level)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// AddHook adds a hook to the standard logger hooks.
 | 
			
		||||
func AddHook(hook Hook) {
 | 
			
		||||
	std.AddHook(hook)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithError creates an entry from the standard logger and adds an error to it, using the value defined in ErrorKey as key.
 | 
			
		||||
func WithError(err error) *Entry {
 | 
			
		||||
	return std.WithField(ErrorKey, err)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithContext creates an entry from the standard logger and adds a context to it.
 | 
			
		||||
func WithContext(ctx context.Context) *Entry {
 | 
			
		||||
	return std.WithContext(ctx)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithField creates an entry from the standard logger and adds a field to
 | 
			
		||||
// it. If you want multiple fields, use `WithFields`.
 | 
			
		||||
//
 | 
			
		||||
// Note that it doesn't log until you call Debug, Print, Info, Warn, Fatal
 | 
			
		||||
// or Panic on the Entry it returns.
 | 
			
		||||
func WithField(key string, value interface{}) *Entry {
 | 
			
		||||
	return std.WithField(key, value)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithFields creates an entry from the standard logger and adds multiple
 | 
			
		||||
// fields to it. This is simply a helper for `WithField`, invoking it
 | 
			
		||||
// once for each field.
 | 
			
		||||
//
 | 
			
		||||
// Note that it doesn't log until you call Debug, Print, Info, Warn, Fatal
 | 
			
		||||
// or Panic on the Entry it returns.
 | 
			
		||||
func WithFields(fields Fields) *Entry {
 | 
			
		||||
	return std.WithFields(fields)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithTime creates an entry from the standard logger and overrides the time of
 | 
			
		||||
// logs generated with it.
 | 
			
		||||
//
 | 
			
		||||
// Note that it doesn't log until you call Debug, Print, Info, Warn, Fatal
 | 
			
		||||
// or Panic on the Entry it returns.
 | 
			
		||||
func WithTime(t time.Time) *Entry {
 | 
			
		||||
	return std.WithTime(t)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Trace logs a message at level Trace on the standard logger.
 | 
			
		||||
func Trace(args ...interface{}) {
 | 
			
		||||
	std.Trace(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Debug logs a message at level Debug on the standard logger.
 | 
			
		||||
func Debug(args ...interface{}) {
 | 
			
		||||
	std.Debug(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Print logs a message at level Info on the standard logger.
 | 
			
		||||
func Print(args ...interface{}) {
 | 
			
		||||
	std.Print(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Info logs a message at level Info on the standard logger.
 | 
			
		||||
func Info(args ...interface{}) {
 | 
			
		||||
	std.Info(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warn logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warn(args ...interface{}) {
 | 
			
		||||
	std.Warn(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warning logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warning(args ...interface{}) {
 | 
			
		||||
	std.Warning(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Error logs a message at level Error on the standard logger.
 | 
			
		||||
func Error(args ...interface{}) {
 | 
			
		||||
	std.Error(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Panic logs a message at level Panic on the standard logger.
 | 
			
		||||
func Panic(args ...interface{}) {
 | 
			
		||||
	std.Panic(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Fatal logs a message at level Fatal on the standard logger then the process will exit with status set to 1.
 | 
			
		||||
func Fatal(args ...interface{}) {
 | 
			
		||||
	std.Fatal(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// TraceFn logs a message from a func at level Trace on the standard logger.
 | 
			
		||||
func TraceFn(fn LogFunction) {
 | 
			
		||||
	std.TraceFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// DebugFn logs a message from a func at level Debug on the standard logger.
 | 
			
		||||
func DebugFn(fn LogFunction) {
 | 
			
		||||
	std.DebugFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// PrintFn logs a message from a func at level Info on the standard logger.
 | 
			
		||||
func PrintFn(fn LogFunction) {
 | 
			
		||||
	std.PrintFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// InfoFn logs a message from a func at level Info on the standard logger.
 | 
			
		||||
func InfoFn(fn LogFunction) {
 | 
			
		||||
	std.InfoFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarnFn logs a message from a func at level Warn on the standard logger.
 | 
			
		||||
func WarnFn(fn LogFunction) {
 | 
			
		||||
	std.WarnFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarningFn logs a message from a func at level Warn on the standard logger.
 | 
			
		||||
func WarningFn(fn LogFunction) {
 | 
			
		||||
	std.WarningFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ErrorFn logs a message from a func at level Error on the standard logger.
 | 
			
		||||
func ErrorFn(fn LogFunction) {
 | 
			
		||||
	std.ErrorFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// PanicFn logs a message from a func at level Panic on the standard logger.
 | 
			
		||||
func PanicFn(fn LogFunction) {
 | 
			
		||||
	std.PanicFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FatalFn logs a message from a func at level Fatal on the standard logger then the process will exit with status set to 1.
 | 
			
		||||
func FatalFn(fn LogFunction) {
 | 
			
		||||
	std.FatalFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Tracef logs a message at level Trace on the standard logger.
 | 
			
		||||
func Tracef(format string, args ...interface{}) {
 | 
			
		||||
	std.Tracef(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Debugf logs a message at level Debug on the standard logger.
 | 
			
		||||
func Debugf(format string, args ...interface{}) {
 | 
			
		||||
	std.Debugf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Printf logs a message at level Info on the standard logger.
 | 
			
		||||
func Printf(format string, args ...interface{}) {
 | 
			
		||||
	std.Printf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Infof logs a message at level Info on the standard logger.
 | 
			
		||||
func Infof(format string, args ...interface{}) {
 | 
			
		||||
	std.Infof(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warnf logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warnf(format string, args ...interface{}) {
 | 
			
		||||
	std.Warnf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warningf logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warningf(format string, args ...interface{}) {
 | 
			
		||||
	std.Warningf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Errorf logs a message at level Error on the standard logger.
 | 
			
		||||
func Errorf(format string, args ...interface{}) {
 | 
			
		||||
	std.Errorf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Panicf logs a message at level Panic on the standard logger.
 | 
			
		||||
func Panicf(format string, args ...interface{}) {
 | 
			
		||||
	std.Panicf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Fatalf logs a message at level Fatal on the standard logger then the process will exit with status set to 1.
 | 
			
		||||
func Fatalf(format string, args ...interface{}) {
 | 
			
		||||
	std.Fatalf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Traceln logs a message at level Trace on the standard logger.
 | 
			
		||||
func Traceln(args ...interface{}) {
 | 
			
		||||
	std.Traceln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Debugln logs a message at level Debug on the standard logger.
 | 
			
		||||
func Debugln(args ...interface{}) {
 | 
			
		||||
	std.Debugln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Println logs a message at level Info on the standard logger.
 | 
			
		||||
func Println(args ...interface{}) {
 | 
			
		||||
	std.Println(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Infoln logs a message at level Info on the standard logger.
 | 
			
		||||
func Infoln(args ...interface{}) {
 | 
			
		||||
	std.Infoln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warnln logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warnln(args ...interface{}) {
 | 
			
		||||
	std.Warnln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Warningln logs a message at level Warn on the standard logger.
 | 
			
		||||
func Warningln(args ...interface{}) {
 | 
			
		||||
	std.Warningln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Errorln logs a message at level Error on the standard logger.
 | 
			
		||||
func Errorln(args ...interface{}) {
 | 
			
		||||
	std.Errorln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Panicln logs a message at level Panic on the standard logger.
 | 
			
		||||
func Panicln(args ...interface{}) {
 | 
			
		||||
	std.Panicln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Fatalln logs a message at level Fatal on the standard logger then the process will exit with status set to 1.
 | 
			
		||||
func Fatalln(args ...interface{}) {
 | 
			
		||||
	std.Fatalln(args...)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										78
									
								
								vendor/github.com/sirupsen/logrus/formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										78
									
								
								vendor/github.com/sirupsen/logrus/formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,78 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import "time"
 | 
			
		||||
 | 
			
		||||
// Default key names for the default fields
 | 
			
		||||
const (
 | 
			
		||||
	defaultTimestampFormat = time.RFC3339
 | 
			
		||||
	FieldKeyMsg            = "msg"
 | 
			
		||||
	FieldKeyLevel          = "level"
 | 
			
		||||
	FieldKeyTime           = "time"
 | 
			
		||||
	FieldKeyLogrusError    = "logrus_error"
 | 
			
		||||
	FieldKeyFunc           = "func"
 | 
			
		||||
	FieldKeyFile           = "file"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// The Formatter interface is used to implement a custom Formatter. It takes an
 | 
			
		||||
// `Entry`. It exposes all the fields, including the default ones:
 | 
			
		||||
//
 | 
			
		||||
// * `entry.Data["msg"]`. The message passed from Info, Warn, Error ..
 | 
			
		||||
// * `entry.Data["time"]`. The timestamp.
 | 
			
		||||
// * `entry.Data["level"]. The level the entry was logged at.
 | 
			
		||||
//
 | 
			
		||||
// Any additional fields added with `WithField` or `WithFields` are also in
 | 
			
		||||
// `entry.Data`. Format is expected to return an array of bytes which are then
 | 
			
		||||
// logged to `logger.Out`.
 | 
			
		||||
type Formatter interface {
 | 
			
		||||
	Format(*Entry) ([]byte, error)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// This is to not silently overwrite `time`, `msg`, `func` and `level` fields when
 | 
			
		||||
// dumping it. If this code wasn't there doing:
 | 
			
		||||
//
 | 
			
		||||
//  logrus.WithField("level", 1).Info("hello")
 | 
			
		||||
//
 | 
			
		||||
// Would just silently drop the user provided level. Instead with this code
 | 
			
		||||
// it'll logged as:
 | 
			
		||||
//
 | 
			
		||||
//  {"level": "info", "fields.level": 1, "msg": "hello", "time": "..."}
 | 
			
		||||
//
 | 
			
		||||
// It's not exported because it's still using Data in an opinionated way. It's to
 | 
			
		||||
// avoid code duplication between the two default formatters.
 | 
			
		||||
func prefixFieldClashes(data Fields, fieldMap FieldMap, reportCaller bool) {
 | 
			
		||||
	timeKey := fieldMap.resolve(FieldKeyTime)
 | 
			
		||||
	if t, ok := data[timeKey]; ok {
 | 
			
		||||
		data["fields."+timeKey] = t
 | 
			
		||||
		delete(data, timeKey)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	msgKey := fieldMap.resolve(FieldKeyMsg)
 | 
			
		||||
	if m, ok := data[msgKey]; ok {
 | 
			
		||||
		data["fields."+msgKey] = m
 | 
			
		||||
		delete(data, msgKey)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	levelKey := fieldMap.resolve(FieldKeyLevel)
 | 
			
		||||
	if l, ok := data[levelKey]; ok {
 | 
			
		||||
		data["fields."+levelKey] = l
 | 
			
		||||
		delete(data, levelKey)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	logrusErrKey := fieldMap.resolve(FieldKeyLogrusError)
 | 
			
		||||
	if l, ok := data[logrusErrKey]; ok {
 | 
			
		||||
		data["fields."+logrusErrKey] = l
 | 
			
		||||
		delete(data, logrusErrKey)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// If reportCaller is not set, 'func' will not conflict.
 | 
			
		||||
	if reportCaller {
 | 
			
		||||
		funcKey := fieldMap.resolve(FieldKeyFunc)
 | 
			
		||||
		if l, ok := data[funcKey]; ok {
 | 
			
		||||
			data["fields."+funcKey] = l
 | 
			
		||||
		}
 | 
			
		||||
		fileKey := fieldMap.resolve(FieldKeyFile)
 | 
			
		||||
		if l, ok := data[fileKey]; ok {
 | 
			
		||||
			data["fields."+fileKey] = l
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										34
									
								
								vendor/github.com/sirupsen/logrus/hooks.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										34
									
								
								vendor/github.com/sirupsen/logrus/hooks.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,34 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
// A hook to be fired when logging on the logging levels returned from
 | 
			
		||||
// `Levels()` on your implementation of the interface. Note that this is not
 | 
			
		||||
// fired in a goroutine or a channel with workers, you should handle such
 | 
			
		||||
// functionality yourself if your call is non-blocking and you don't wish for
 | 
			
		||||
// the logging calls for levels returned from `Levels()` to block.
 | 
			
		||||
type Hook interface {
 | 
			
		||||
	Levels() []Level
 | 
			
		||||
	Fire(*Entry) error
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Internal type for storing the hooks on a logger instance.
 | 
			
		||||
type LevelHooks map[Level][]Hook
 | 
			
		||||
 | 
			
		||||
// Add a hook to an instance of logger. This is called with
 | 
			
		||||
// `log.Hooks.Add(new(MyHook))` where `MyHook` implements the `Hook` interface.
 | 
			
		||||
func (hooks LevelHooks) Add(hook Hook) {
 | 
			
		||||
	for _, level := range hook.Levels() {
 | 
			
		||||
		hooks[level] = append(hooks[level], hook)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Fire all the hooks for the passed level. Used by `entry.log` to fire
 | 
			
		||||
// appropriate hooks for a log entry.
 | 
			
		||||
func (hooks LevelHooks) Fire(level Level, entry *Entry) error {
 | 
			
		||||
	for _, hook := range hooks[level] {
 | 
			
		||||
		if err := hook.Fire(entry); err != nil {
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										128
									
								
								vendor/github.com/sirupsen/logrus/json_formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										128
									
								
								vendor/github.com/sirupsen/logrus/json_formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,128 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"runtime"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type fieldKey string
 | 
			
		||||
 | 
			
		||||
// FieldMap allows customization of the key names for default fields.
 | 
			
		||||
type FieldMap map[fieldKey]string
 | 
			
		||||
 | 
			
		||||
func (f FieldMap) resolve(key fieldKey) string {
 | 
			
		||||
	if k, ok := f[key]; ok {
 | 
			
		||||
		return k
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return string(key)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// JSONFormatter formats logs into parsable json
 | 
			
		||||
type JSONFormatter struct {
 | 
			
		||||
	// TimestampFormat sets the format used for marshaling timestamps.
 | 
			
		||||
	// The format to use is the same than for time.Format or time.Parse from the standard
 | 
			
		||||
	// library.
 | 
			
		||||
	// The standard Library already provides a set of predefined format.
 | 
			
		||||
	TimestampFormat string
 | 
			
		||||
 | 
			
		||||
	// DisableTimestamp allows disabling automatic timestamps in output
 | 
			
		||||
	DisableTimestamp bool
 | 
			
		||||
 | 
			
		||||
	// DisableHTMLEscape allows disabling html escaping in output
 | 
			
		||||
	DisableHTMLEscape bool
 | 
			
		||||
 | 
			
		||||
	// DataKey allows users to put all the log entry parameters into a nested dictionary at a given key.
 | 
			
		||||
	DataKey string
 | 
			
		||||
 | 
			
		||||
	// FieldMap allows users to customize the names of keys for default fields.
 | 
			
		||||
	// As an example:
 | 
			
		||||
	// formatter := &JSONFormatter{
 | 
			
		||||
	//   	FieldMap: FieldMap{
 | 
			
		||||
	// 		 FieldKeyTime:  "@timestamp",
 | 
			
		||||
	// 		 FieldKeyLevel: "@level",
 | 
			
		||||
	// 		 FieldKeyMsg:   "@message",
 | 
			
		||||
	// 		 FieldKeyFunc:  "@caller",
 | 
			
		||||
	//    },
 | 
			
		||||
	// }
 | 
			
		||||
	FieldMap FieldMap
 | 
			
		||||
 | 
			
		||||
	// CallerPrettyfier can be set by the user to modify the content
 | 
			
		||||
	// of the function and file keys in the json data when ReportCaller is
 | 
			
		||||
	// activated. If any of the returned value is the empty string the
 | 
			
		||||
	// corresponding key will be removed from json fields.
 | 
			
		||||
	CallerPrettyfier func(*runtime.Frame) (function string, file string)
 | 
			
		||||
 | 
			
		||||
	// PrettyPrint will indent all json logs
 | 
			
		||||
	PrettyPrint bool
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Format renders a single log entry
 | 
			
		||||
func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {
 | 
			
		||||
	data := make(Fields, len(entry.Data)+4)
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		switch v := v.(type) {
 | 
			
		||||
		case error:
 | 
			
		||||
			// Otherwise errors are ignored by `encoding/json`
 | 
			
		||||
			// https://github.com/sirupsen/logrus/issues/137
 | 
			
		||||
			data[k] = v.Error()
 | 
			
		||||
		default:
 | 
			
		||||
			data[k] = v
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if f.DataKey != "" {
 | 
			
		||||
		newData := make(Fields, 4)
 | 
			
		||||
		newData[f.DataKey] = data
 | 
			
		||||
		data = newData
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	prefixFieldClashes(data, f.FieldMap, entry.HasCaller())
 | 
			
		||||
 | 
			
		||||
	timestampFormat := f.TimestampFormat
 | 
			
		||||
	if timestampFormat == "" {
 | 
			
		||||
		timestampFormat = defaultTimestampFormat
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if entry.err != "" {
 | 
			
		||||
		data[f.FieldMap.resolve(FieldKeyLogrusError)] = entry.err
 | 
			
		||||
	}
 | 
			
		||||
	if !f.DisableTimestamp {
 | 
			
		||||
		data[f.FieldMap.resolve(FieldKeyTime)] = entry.Time.Format(timestampFormat)
 | 
			
		||||
	}
 | 
			
		||||
	data[f.FieldMap.resolve(FieldKeyMsg)] = entry.Message
 | 
			
		||||
	data[f.FieldMap.resolve(FieldKeyLevel)] = entry.Level.String()
 | 
			
		||||
	if entry.HasCaller() {
 | 
			
		||||
		funcVal := entry.Caller.Function
 | 
			
		||||
		fileVal := fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
 | 
			
		||||
		if f.CallerPrettyfier != nil {
 | 
			
		||||
			funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
 | 
			
		||||
		}
 | 
			
		||||
		if funcVal != "" {
 | 
			
		||||
			data[f.FieldMap.resolve(FieldKeyFunc)] = funcVal
 | 
			
		||||
		}
 | 
			
		||||
		if fileVal != "" {
 | 
			
		||||
			data[f.FieldMap.resolve(FieldKeyFile)] = fileVal
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var b *bytes.Buffer
 | 
			
		||||
	if entry.Buffer != nil {
 | 
			
		||||
		b = entry.Buffer
 | 
			
		||||
	} else {
 | 
			
		||||
		b = &bytes.Buffer{}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	encoder := json.NewEncoder(b)
 | 
			
		||||
	encoder.SetEscapeHTML(!f.DisableHTMLEscape)
 | 
			
		||||
	if f.PrettyPrint {
 | 
			
		||||
		encoder.SetIndent("", "  ")
 | 
			
		||||
	}
 | 
			
		||||
	if err := encoder.Encode(data); err != nil {
 | 
			
		||||
		return nil, fmt.Errorf("failed to marshal fields to JSON, %w", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return b.Bytes(), nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										404
									
								
								vendor/github.com/sirupsen/logrus/logger.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										404
									
								
								vendor/github.com/sirupsen/logrus/logger.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,404 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"context"
 | 
			
		||||
	"io"
 | 
			
		||||
	"os"
 | 
			
		||||
	"sync"
 | 
			
		||||
	"sync/atomic"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// LogFunction For big messages, it can be more efficient to pass a function
 | 
			
		||||
// and only call it if the log level is actually enables rather than
 | 
			
		||||
// generating the log message and then checking if the level is enabled
 | 
			
		||||
type LogFunction func() []interface{}
 | 
			
		||||
 | 
			
		||||
type Logger struct {
 | 
			
		||||
	// The logs are `io.Copy`'d to this in a mutex. It's common to set this to a
 | 
			
		||||
	// file, or leave it default which is `os.Stderr`. You can also set this to
 | 
			
		||||
	// something more adventurous, such as logging to Kafka.
 | 
			
		||||
	Out io.Writer
 | 
			
		||||
	// Hooks for the logger instance. These allow firing events based on logging
 | 
			
		||||
	// levels and log entries. For example, to send errors to an error tracking
 | 
			
		||||
	// service, log to StatsD or dump the core on fatal errors.
 | 
			
		||||
	Hooks LevelHooks
 | 
			
		||||
	// All log entries pass through the formatter before logged to Out. The
 | 
			
		||||
	// included formatters are `TextFormatter` and `JSONFormatter` for which
 | 
			
		||||
	// TextFormatter is the default. In development (when a TTY is attached) it
 | 
			
		||||
	// logs with colors, but to a file it wouldn't. You can easily implement your
 | 
			
		||||
	// own that implements the `Formatter` interface, see the `README` or included
 | 
			
		||||
	// formatters for examples.
 | 
			
		||||
	Formatter Formatter
 | 
			
		||||
 | 
			
		||||
	// Flag for whether to log caller info (off by default)
 | 
			
		||||
	ReportCaller bool
 | 
			
		||||
 | 
			
		||||
	// The logging level the logger should log at. This is typically (and defaults
 | 
			
		||||
	// to) `logrus.Info`, which allows Info(), Warn(), Error() and Fatal() to be
 | 
			
		||||
	// logged.
 | 
			
		||||
	Level Level
 | 
			
		||||
	// Used to sync writing to the log. Locking is enabled by Default
 | 
			
		||||
	mu MutexWrap
 | 
			
		||||
	// Reusable empty entry
 | 
			
		||||
	entryPool sync.Pool
 | 
			
		||||
	// Function to exit the application, defaults to `os.Exit()`
 | 
			
		||||
	ExitFunc exitFunc
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type exitFunc func(int)
 | 
			
		||||
 | 
			
		||||
type MutexWrap struct {
 | 
			
		||||
	lock     sync.Mutex
 | 
			
		||||
	disabled bool
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (mw *MutexWrap) Lock() {
 | 
			
		||||
	if !mw.disabled {
 | 
			
		||||
		mw.lock.Lock()
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (mw *MutexWrap) Unlock() {
 | 
			
		||||
	if !mw.disabled {
 | 
			
		||||
		mw.lock.Unlock()
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (mw *MutexWrap) Disable() {
 | 
			
		||||
	mw.disabled = true
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Creates a new logger. Configuration should be set by changing `Formatter`,
 | 
			
		||||
// `Out` and `Hooks` directly on the default logger instance. You can also just
 | 
			
		||||
// instantiate your own:
 | 
			
		||||
//
 | 
			
		||||
//    var log = &logrus.Logger{
 | 
			
		||||
//      Out: os.Stderr,
 | 
			
		||||
//      Formatter: new(logrus.TextFormatter),
 | 
			
		||||
//      Hooks: make(logrus.LevelHooks),
 | 
			
		||||
//      Level: logrus.DebugLevel,
 | 
			
		||||
//    }
 | 
			
		||||
//
 | 
			
		||||
// It's recommended to make this a global instance called `log`.
 | 
			
		||||
func New() *Logger {
 | 
			
		||||
	return &Logger{
 | 
			
		||||
		Out:          os.Stderr,
 | 
			
		||||
		Formatter:    new(TextFormatter),
 | 
			
		||||
		Hooks:        make(LevelHooks),
 | 
			
		||||
		Level:        InfoLevel,
 | 
			
		||||
		ExitFunc:     os.Exit,
 | 
			
		||||
		ReportCaller: false,
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) newEntry() *Entry {
 | 
			
		||||
	entry, ok := logger.entryPool.Get().(*Entry)
 | 
			
		||||
	if ok {
 | 
			
		||||
		return entry
 | 
			
		||||
	}
 | 
			
		||||
	return NewEntry(logger)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) releaseEntry(entry *Entry) {
 | 
			
		||||
	entry.Data = map[string]interface{}{}
 | 
			
		||||
	logger.entryPool.Put(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WithField allocates a new entry and adds a field to it.
 | 
			
		||||
// Debug, Print, Info, Warn, Error, Fatal or Panic must be then applied to
 | 
			
		||||
// this new returned entry.
 | 
			
		||||
// If you want multiple fields, use `WithFields`.
 | 
			
		||||
func (logger *Logger) WithField(key string, value interface{}) *Entry {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	defer logger.releaseEntry(entry)
 | 
			
		||||
	return entry.WithField(key, value)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Adds a struct of fields to the log entry. All it does is call `WithField` for
 | 
			
		||||
// each `Field`.
 | 
			
		||||
func (logger *Logger) WithFields(fields Fields) *Entry {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	defer logger.releaseEntry(entry)
 | 
			
		||||
	return entry.WithFields(fields)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add an error as single field to the log entry.  All it does is call
 | 
			
		||||
// `WithError` for the given `error`.
 | 
			
		||||
func (logger *Logger) WithError(err error) *Entry {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	defer logger.releaseEntry(entry)
 | 
			
		||||
	return entry.WithError(err)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Add a context to the log entry.
 | 
			
		||||
func (logger *Logger) WithContext(ctx context.Context) *Entry {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	defer logger.releaseEntry(entry)
 | 
			
		||||
	return entry.WithContext(ctx)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Overrides the time of the log entry.
 | 
			
		||||
func (logger *Logger) WithTime(t time.Time) *Entry {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	defer logger.releaseEntry(entry)
 | 
			
		||||
	return entry.WithTime(t)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Logf(level Level, format string, args ...interface{}) {
 | 
			
		||||
	if logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry := logger.newEntry()
 | 
			
		||||
		entry.Logf(level, format, args...)
 | 
			
		||||
		logger.releaseEntry(entry)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Tracef(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(TraceLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Debugf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(DebugLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Infof(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(InfoLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Printf(format string, args ...interface{}) {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	entry.Printf(format, args...)
 | 
			
		||||
	logger.releaseEntry(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warnf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(WarnLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warningf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Warnf(format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Errorf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(ErrorLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Fatalf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(FatalLevel, format, args...)
 | 
			
		||||
	logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Panicf(format string, args ...interface{}) {
 | 
			
		||||
	logger.Logf(PanicLevel, format, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Log(level Level, args ...interface{}) {
 | 
			
		||||
	if logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry := logger.newEntry()
 | 
			
		||||
		entry.Log(level, args...)
 | 
			
		||||
		logger.releaseEntry(entry)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) LogFn(level Level, fn LogFunction) {
 | 
			
		||||
	if logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry := logger.newEntry()
 | 
			
		||||
		entry.Log(level, fn()...)
 | 
			
		||||
		logger.releaseEntry(entry)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Trace(args ...interface{}) {
 | 
			
		||||
	logger.Log(TraceLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Debug(args ...interface{}) {
 | 
			
		||||
	logger.Log(DebugLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Info(args ...interface{}) {
 | 
			
		||||
	logger.Log(InfoLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Print(args ...interface{}) {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	entry.Print(args...)
 | 
			
		||||
	logger.releaseEntry(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warn(args ...interface{}) {
 | 
			
		||||
	logger.Log(WarnLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warning(args ...interface{}) {
 | 
			
		||||
	logger.Warn(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Error(args ...interface{}) {
 | 
			
		||||
	logger.Log(ErrorLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Fatal(args ...interface{}) {
 | 
			
		||||
	logger.Log(FatalLevel, args...)
 | 
			
		||||
	logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Panic(args ...interface{}) {
 | 
			
		||||
	logger.Log(PanicLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) TraceFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(TraceLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) DebugFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(DebugLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) InfoFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(InfoLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) PrintFn(fn LogFunction) {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	entry.Print(fn()...)
 | 
			
		||||
	logger.releaseEntry(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) WarnFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(WarnLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) WarningFn(fn LogFunction) {
 | 
			
		||||
	logger.WarnFn(fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) ErrorFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(ErrorLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) FatalFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(FatalLevel, fn)
 | 
			
		||||
	logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) PanicFn(fn LogFunction) {
 | 
			
		||||
	logger.LogFn(PanicLevel, fn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Logln(level Level, args ...interface{}) {
 | 
			
		||||
	if logger.IsLevelEnabled(level) {
 | 
			
		||||
		entry := logger.newEntry()
 | 
			
		||||
		entry.Logln(level, args...)
 | 
			
		||||
		logger.releaseEntry(entry)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Traceln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(TraceLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Debugln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(DebugLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Infoln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(InfoLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Println(args ...interface{}) {
 | 
			
		||||
	entry := logger.newEntry()
 | 
			
		||||
	entry.Println(args...)
 | 
			
		||||
	logger.releaseEntry(entry)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warnln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(WarnLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Warningln(args ...interface{}) {
 | 
			
		||||
	logger.Warnln(args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Errorln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(ErrorLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Fatalln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(FatalLevel, args...)
 | 
			
		||||
	logger.Exit(1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Panicln(args ...interface{}) {
 | 
			
		||||
	logger.Logln(PanicLevel, args...)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) Exit(code int) {
 | 
			
		||||
	runHandlers()
 | 
			
		||||
	if logger.ExitFunc == nil {
 | 
			
		||||
		logger.ExitFunc = os.Exit
 | 
			
		||||
	}
 | 
			
		||||
	logger.ExitFunc(code)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//When file is opened with appending mode, it's safe to
 | 
			
		||||
//write concurrently to a file (within 4k message on Linux).
 | 
			
		||||
//In these cases user can choose to disable the lock.
 | 
			
		||||
func (logger *Logger) SetNoLock() {
 | 
			
		||||
	logger.mu.Disable()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) level() Level {
 | 
			
		||||
	return Level(atomic.LoadUint32((*uint32)(&logger.Level)))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetLevel sets the logger level.
 | 
			
		||||
func (logger *Logger) SetLevel(level Level) {
 | 
			
		||||
	atomic.StoreUint32((*uint32)(&logger.Level), uint32(level))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetLevel returns the logger level.
 | 
			
		||||
func (logger *Logger) GetLevel() Level {
 | 
			
		||||
	return logger.level()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// AddHook adds a hook to the logger hooks.
 | 
			
		||||
func (logger *Logger) AddHook(hook Hook) {
 | 
			
		||||
	logger.mu.Lock()
 | 
			
		||||
	defer logger.mu.Unlock()
 | 
			
		||||
	logger.Hooks.Add(hook)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsLevelEnabled checks if the log level of the logger is greater than the level param
 | 
			
		||||
func (logger *Logger) IsLevelEnabled(level Level) bool {
 | 
			
		||||
	return logger.level() >= level
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetFormatter sets the logger formatter.
 | 
			
		||||
func (logger *Logger) SetFormatter(formatter Formatter) {
 | 
			
		||||
	logger.mu.Lock()
 | 
			
		||||
	defer logger.mu.Unlock()
 | 
			
		||||
	logger.Formatter = formatter
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SetOutput sets the logger output.
 | 
			
		||||
func (logger *Logger) SetOutput(output io.Writer) {
 | 
			
		||||
	logger.mu.Lock()
 | 
			
		||||
	defer logger.mu.Unlock()
 | 
			
		||||
	logger.Out = output
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (logger *Logger) SetReportCaller(reportCaller bool) {
 | 
			
		||||
	logger.mu.Lock()
 | 
			
		||||
	defer logger.mu.Unlock()
 | 
			
		||||
	logger.ReportCaller = reportCaller
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ReplaceHooks replaces the logger hooks and returns the old ones
 | 
			
		||||
func (logger *Logger) ReplaceHooks(hooks LevelHooks) LevelHooks {
 | 
			
		||||
	logger.mu.Lock()
 | 
			
		||||
	oldHooks := logger.Hooks
 | 
			
		||||
	logger.Hooks = hooks
 | 
			
		||||
	logger.mu.Unlock()
 | 
			
		||||
	return oldHooks
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										186
									
								
								vendor/github.com/sirupsen/logrus/logrus.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										186
									
								
								vendor/github.com/sirupsen/logrus/logrus.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,186 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"log"
 | 
			
		||||
	"strings"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Fields type, used to pass to `WithFields`.
 | 
			
		||||
type Fields map[string]interface{}
 | 
			
		||||
 | 
			
		||||
// Level type
 | 
			
		||||
type Level uint32
 | 
			
		||||
 | 
			
		||||
// Convert the Level to a string. E.g. PanicLevel becomes "panic".
 | 
			
		||||
func (level Level) String() string {
 | 
			
		||||
	if b, err := level.MarshalText(); err == nil {
 | 
			
		||||
		return string(b)
 | 
			
		||||
	} else {
 | 
			
		||||
		return "unknown"
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ParseLevel takes a string level and returns the Logrus log level constant.
 | 
			
		||||
func ParseLevel(lvl string) (Level, error) {
 | 
			
		||||
	switch strings.ToLower(lvl) {
 | 
			
		||||
	case "panic":
 | 
			
		||||
		return PanicLevel, nil
 | 
			
		||||
	case "fatal":
 | 
			
		||||
		return FatalLevel, nil
 | 
			
		||||
	case "error":
 | 
			
		||||
		return ErrorLevel, nil
 | 
			
		||||
	case "warn", "warning":
 | 
			
		||||
		return WarnLevel, nil
 | 
			
		||||
	case "info":
 | 
			
		||||
		return InfoLevel, nil
 | 
			
		||||
	case "debug":
 | 
			
		||||
		return DebugLevel, nil
 | 
			
		||||
	case "trace":
 | 
			
		||||
		return TraceLevel, nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var l Level
 | 
			
		||||
	return l, fmt.Errorf("not a valid logrus Level: %q", lvl)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// UnmarshalText implements encoding.TextUnmarshaler.
 | 
			
		||||
func (level *Level) UnmarshalText(text []byte) error {
 | 
			
		||||
	l, err := ParseLevel(string(text))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	*level = l
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (level Level) MarshalText() ([]byte, error) {
 | 
			
		||||
	switch level {
 | 
			
		||||
	case TraceLevel:
 | 
			
		||||
		return []byte("trace"), nil
 | 
			
		||||
	case DebugLevel:
 | 
			
		||||
		return []byte("debug"), nil
 | 
			
		||||
	case InfoLevel:
 | 
			
		||||
		return []byte("info"), nil
 | 
			
		||||
	case WarnLevel:
 | 
			
		||||
		return []byte("warning"), nil
 | 
			
		||||
	case ErrorLevel:
 | 
			
		||||
		return []byte("error"), nil
 | 
			
		||||
	case FatalLevel:
 | 
			
		||||
		return []byte("fatal"), nil
 | 
			
		||||
	case PanicLevel:
 | 
			
		||||
		return []byte("panic"), nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil, fmt.Errorf("not a valid logrus level %d", level)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// A constant exposing all logging levels
 | 
			
		||||
var AllLevels = []Level{
 | 
			
		||||
	PanicLevel,
 | 
			
		||||
	FatalLevel,
 | 
			
		||||
	ErrorLevel,
 | 
			
		||||
	WarnLevel,
 | 
			
		||||
	InfoLevel,
 | 
			
		||||
	DebugLevel,
 | 
			
		||||
	TraceLevel,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// These are the different logging levels. You can set the logging level to log
 | 
			
		||||
// on your instance of logger, obtained with `logrus.New()`.
 | 
			
		||||
const (
 | 
			
		||||
	// PanicLevel level, highest level of severity. Logs and then calls panic with the
 | 
			
		||||
	// message passed to Debug, Info, ...
 | 
			
		||||
	PanicLevel Level = iota
 | 
			
		||||
	// FatalLevel level. Logs and then calls `logger.Exit(1)`. It will exit even if the
 | 
			
		||||
	// logging level is set to Panic.
 | 
			
		||||
	FatalLevel
 | 
			
		||||
	// ErrorLevel level. Logs. Used for errors that should definitely be noted.
 | 
			
		||||
	// Commonly used for hooks to send errors to an error tracking service.
 | 
			
		||||
	ErrorLevel
 | 
			
		||||
	// WarnLevel level. Non-critical entries that deserve eyes.
 | 
			
		||||
	WarnLevel
 | 
			
		||||
	// InfoLevel level. General operational entries about what's going on inside the
 | 
			
		||||
	// application.
 | 
			
		||||
	InfoLevel
 | 
			
		||||
	// DebugLevel level. Usually only enabled when debugging. Very verbose logging.
 | 
			
		||||
	DebugLevel
 | 
			
		||||
	// TraceLevel level. Designates finer-grained informational events than the Debug.
 | 
			
		||||
	TraceLevel
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Won't compile if StdLogger can't be realized by a log.Logger
 | 
			
		||||
var (
 | 
			
		||||
	_ StdLogger = &log.Logger{}
 | 
			
		||||
	_ StdLogger = &Entry{}
 | 
			
		||||
	_ StdLogger = &Logger{}
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// StdLogger is what your logrus-enabled library should take, that way
 | 
			
		||||
// it'll accept a stdlib logger and a logrus logger. There's no standard
 | 
			
		||||
// interface, this is the closest we get, unfortunately.
 | 
			
		||||
type StdLogger interface {
 | 
			
		||||
	Print(...interface{})
 | 
			
		||||
	Printf(string, ...interface{})
 | 
			
		||||
	Println(...interface{})
 | 
			
		||||
 | 
			
		||||
	Fatal(...interface{})
 | 
			
		||||
	Fatalf(string, ...interface{})
 | 
			
		||||
	Fatalln(...interface{})
 | 
			
		||||
 | 
			
		||||
	Panic(...interface{})
 | 
			
		||||
	Panicf(string, ...interface{})
 | 
			
		||||
	Panicln(...interface{})
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// The FieldLogger interface generalizes the Entry and Logger types
 | 
			
		||||
type FieldLogger interface {
 | 
			
		||||
	WithField(key string, value interface{}) *Entry
 | 
			
		||||
	WithFields(fields Fields) *Entry
 | 
			
		||||
	WithError(err error) *Entry
 | 
			
		||||
 | 
			
		||||
	Debugf(format string, args ...interface{})
 | 
			
		||||
	Infof(format string, args ...interface{})
 | 
			
		||||
	Printf(format string, args ...interface{})
 | 
			
		||||
	Warnf(format string, args ...interface{})
 | 
			
		||||
	Warningf(format string, args ...interface{})
 | 
			
		||||
	Errorf(format string, args ...interface{})
 | 
			
		||||
	Fatalf(format string, args ...interface{})
 | 
			
		||||
	Panicf(format string, args ...interface{})
 | 
			
		||||
 | 
			
		||||
	Debug(args ...interface{})
 | 
			
		||||
	Info(args ...interface{})
 | 
			
		||||
	Print(args ...interface{})
 | 
			
		||||
	Warn(args ...interface{})
 | 
			
		||||
	Warning(args ...interface{})
 | 
			
		||||
	Error(args ...interface{})
 | 
			
		||||
	Fatal(args ...interface{})
 | 
			
		||||
	Panic(args ...interface{})
 | 
			
		||||
 | 
			
		||||
	Debugln(args ...interface{})
 | 
			
		||||
	Infoln(args ...interface{})
 | 
			
		||||
	Println(args ...interface{})
 | 
			
		||||
	Warnln(args ...interface{})
 | 
			
		||||
	Warningln(args ...interface{})
 | 
			
		||||
	Errorln(args ...interface{})
 | 
			
		||||
	Fatalln(args ...interface{})
 | 
			
		||||
	Panicln(args ...interface{})
 | 
			
		||||
 | 
			
		||||
	// IsDebugEnabled() bool
 | 
			
		||||
	// IsInfoEnabled() bool
 | 
			
		||||
	// IsWarnEnabled() bool
 | 
			
		||||
	// IsErrorEnabled() bool
 | 
			
		||||
	// IsFatalEnabled() bool
 | 
			
		||||
	// IsPanicEnabled() bool
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Ext1FieldLogger (the first extension to FieldLogger) is superfluous, it is
 | 
			
		||||
// here for consistancy. Do not use. Use Logger or Entry instead.
 | 
			
		||||
type Ext1FieldLogger interface {
 | 
			
		||||
	FieldLogger
 | 
			
		||||
	Tracef(format string, args ...interface{})
 | 
			
		||||
	Trace(args ...interface{})
 | 
			
		||||
	Traceln(args ...interface{})
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
// +build appengine
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func checkIfTerminal(w io.Writer) bool {
 | 
			
		||||
	return true
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										13
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,13 +0,0 @@
 | 
			
		||||
// +build darwin dragonfly freebsd netbsd openbsd
 | 
			
		||||
// +build !js
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import "golang.org/x/sys/unix"
 | 
			
		||||
 | 
			
		||||
const ioctlReadTermios = unix.TIOCGETA
 | 
			
		||||
 | 
			
		||||
func isTerminal(fd int) bool {
 | 
			
		||||
	_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
 | 
			
		||||
	return err == nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										7
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_js.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_js.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,7 +0,0 @@
 | 
			
		||||
// +build js
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
func isTerminal(fd int) bool {
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
// +build js nacl plan9
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func checkIfTerminal(w io.Writer) bool {
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										17
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,17 +0,0 @@
 | 
			
		||||
// +build !appengine,!js,!windows,!nacl,!plan9
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
	"os"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func checkIfTerminal(w io.Writer) bool {
 | 
			
		||||
	switch v := w.(type) {
 | 
			
		||||
	case *os.File:
 | 
			
		||||
		return isTerminal(int(v.Fd()))
 | 
			
		||||
	default:
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"golang.org/x/sys/unix"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// IsTerminal returns true if the given file descriptor is a terminal.
 | 
			
		||||
func isTerminal(fd int) bool {
 | 
			
		||||
	_, err := unix.IoctlGetTermio(fd, unix.TCGETA)
 | 
			
		||||
	return err == nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										13
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,13 +0,0 @@
 | 
			
		||||
// +build linux aix zos
 | 
			
		||||
// +build !js
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import "golang.org/x/sys/unix"
 | 
			
		||||
 | 
			
		||||
const ioctlReadTermios = unix.TCGETS
 | 
			
		||||
 | 
			
		||||
func isTerminal(fd int) bool {
 | 
			
		||||
	_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
 | 
			
		||||
	return err == nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_windows.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/github.com/sirupsen/logrus/terminal_check_windows.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,27 +0,0 @@
 | 
			
		||||
// +build !appengine,!js,windows
 | 
			
		||||
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
	"os"
 | 
			
		||||
 | 
			
		||||
	"golang.org/x/sys/windows"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func checkIfTerminal(w io.Writer) bool {
 | 
			
		||||
	switch v := w.(type) {
 | 
			
		||||
	case *os.File:
 | 
			
		||||
		handle := windows.Handle(v.Fd())
 | 
			
		||||
		var mode uint32
 | 
			
		||||
		if err := windows.GetConsoleMode(handle, &mode); err != nil {
 | 
			
		||||
			return false
 | 
			
		||||
		}
 | 
			
		||||
		mode |= windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING
 | 
			
		||||
		if err := windows.SetConsoleMode(handle, mode); err != nil {
 | 
			
		||||
			return false
 | 
			
		||||
		}
 | 
			
		||||
		return true
 | 
			
		||||
	}
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										339
									
								
								vendor/github.com/sirupsen/logrus/text_formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										339
									
								
								vendor/github.com/sirupsen/logrus/text_formatter.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,339 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"os"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"sort"
 | 
			
		||||
	"strconv"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"sync"
 | 
			
		||||
	"time"
 | 
			
		||||
	"unicode/utf8"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	red    = 31
 | 
			
		||||
	yellow = 33
 | 
			
		||||
	blue   = 36
 | 
			
		||||
	gray   = 37
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var baseTimestamp time.Time
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	baseTimestamp = time.Now()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// TextFormatter formats logs into text
 | 
			
		||||
type TextFormatter struct {
 | 
			
		||||
	// Set to true to bypass checking for a TTY before outputting colors.
 | 
			
		||||
	ForceColors bool
 | 
			
		||||
 | 
			
		||||
	// Force disabling colors.
 | 
			
		||||
	DisableColors bool
 | 
			
		||||
 | 
			
		||||
	// Force quoting of all values
 | 
			
		||||
	ForceQuote bool
 | 
			
		||||
 | 
			
		||||
	// DisableQuote disables quoting for all values.
 | 
			
		||||
	// DisableQuote will have a lower priority than ForceQuote.
 | 
			
		||||
	// If both of them are set to true, quote will be forced on all values.
 | 
			
		||||
	DisableQuote bool
 | 
			
		||||
 | 
			
		||||
	// Override coloring based on CLICOLOR and CLICOLOR_FORCE. - https://bixense.com/clicolors/
 | 
			
		||||
	EnvironmentOverrideColors bool
 | 
			
		||||
 | 
			
		||||
	// Disable timestamp logging. useful when output is redirected to logging
 | 
			
		||||
	// system that already adds timestamps.
 | 
			
		||||
	DisableTimestamp bool
 | 
			
		||||
 | 
			
		||||
	// Enable logging the full timestamp when a TTY is attached instead of just
 | 
			
		||||
	// the time passed since beginning of execution.
 | 
			
		||||
	FullTimestamp bool
 | 
			
		||||
 | 
			
		||||
	// TimestampFormat to use for display when a full timestamp is printed.
 | 
			
		||||
	// The format to use is the same than for time.Format or time.Parse from the standard
 | 
			
		||||
	// library.
 | 
			
		||||
	// The standard Library already provides a set of predefined format.
 | 
			
		||||
	TimestampFormat string
 | 
			
		||||
 | 
			
		||||
	// The fields are sorted by default for a consistent output. For applications
 | 
			
		||||
	// that log extremely frequently and don't use the JSON formatter this may not
 | 
			
		||||
	// be desired.
 | 
			
		||||
	DisableSorting bool
 | 
			
		||||
 | 
			
		||||
	// The keys sorting function, when uninitialized it uses sort.Strings.
 | 
			
		||||
	SortingFunc func([]string)
 | 
			
		||||
 | 
			
		||||
	// Disables the truncation of the level text to 4 characters.
 | 
			
		||||
	DisableLevelTruncation bool
 | 
			
		||||
 | 
			
		||||
	// PadLevelText Adds padding the level text so that all the levels output at the same length
 | 
			
		||||
	// PadLevelText is a superset of the DisableLevelTruncation option
 | 
			
		||||
	PadLevelText bool
 | 
			
		||||
 | 
			
		||||
	// QuoteEmptyFields will wrap empty fields in quotes if true
 | 
			
		||||
	QuoteEmptyFields bool
 | 
			
		||||
 | 
			
		||||
	// Whether the logger's out is to a terminal
 | 
			
		||||
	isTerminal bool
 | 
			
		||||
 | 
			
		||||
	// FieldMap allows users to customize the names of keys for default fields.
 | 
			
		||||
	// As an example:
 | 
			
		||||
	// formatter := &TextFormatter{
 | 
			
		||||
	//     FieldMap: FieldMap{
 | 
			
		||||
	//         FieldKeyTime:  "@timestamp",
 | 
			
		||||
	//         FieldKeyLevel: "@level",
 | 
			
		||||
	//         FieldKeyMsg:   "@message"}}
 | 
			
		||||
	FieldMap FieldMap
 | 
			
		||||
 | 
			
		||||
	// CallerPrettyfier can be set by the user to modify the content
 | 
			
		||||
	// of the function and file keys in the data when ReportCaller is
 | 
			
		||||
	// activated. If any of the returned value is the empty string the
 | 
			
		||||
	// corresponding key will be removed from fields.
 | 
			
		||||
	CallerPrettyfier func(*runtime.Frame) (function string, file string)
 | 
			
		||||
 | 
			
		||||
	terminalInitOnce sync.Once
 | 
			
		||||
 | 
			
		||||
	// The max length of the level text, generated dynamically on init
 | 
			
		||||
	levelTextMaxLength int
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) init(entry *Entry) {
 | 
			
		||||
	if entry.Logger != nil {
 | 
			
		||||
		f.isTerminal = checkIfTerminal(entry.Logger.Out)
 | 
			
		||||
	}
 | 
			
		||||
	// Get the max length of the level text
 | 
			
		||||
	for _, level := range AllLevels {
 | 
			
		||||
		levelTextLength := utf8.RuneCount([]byte(level.String()))
 | 
			
		||||
		if levelTextLength > f.levelTextMaxLength {
 | 
			
		||||
			f.levelTextMaxLength = levelTextLength
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) isColored() bool {
 | 
			
		||||
	isColored := f.ForceColors || (f.isTerminal && (runtime.GOOS != "windows"))
 | 
			
		||||
 | 
			
		||||
	if f.EnvironmentOverrideColors {
 | 
			
		||||
		switch force, ok := os.LookupEnv("CLICOLOR_FORCE"); {
 | 
			
		||||
		case ok && force != "0":
 | 
			
		||||
			isColored = true
 | 
			
		||||
		case ok && force == "0", os.Getenv("CLICOLOR") == "0":
 | 
			
		||||
			isColored = false
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return isColored && !f.DisableColors
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Format renders a single log entry
 | 
			
		||||
func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
 | 
			
		||||
	data := make(Fields)
 | 
			
		||||
	for k, v := range entry.Data {
 | 
			
		||||
		data[k] = v
 | 
			
		||||
	}
 | 
			
		||||
	prefixFieldClashes(data, f.FieldMap, entry.HasCaller())
 | 
			
		||||
	keys := make([]string, 0, len(data))
 | 
			
		||||
	for k := range data {
 | 
			
		||||
		keys = append(keys, k)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var funcVal, fileVal string
 | 
			
		||||
 | 
			
		||||
	fixedKeys := make([]string, 0, 4+len(data))
 | 
			
		||||
	if !f.DisableTimestamp {
 | 
			
		||||
		fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyTime))
 | 
			
		||||
	}
 | 
			
		||||
	fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLevel))
 | 
			
		||||
	if entry.Message != "" {
 | 
			
		||||
		fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyMsg))
 | 
			
		||||
	}
 | 
			
		||||
	if entry.err != "" {
 | 
			
		||||
		fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLogrusError))
 | 
			
		||||
	}
 | 
			
		||||
	if entry.HasCaller() {
 | 
			
		||||
		if f.CallerPrettyfier != nil {
 | 
			
		||||
			funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
 | 
			
		||||
		} else {
 | 
			
		||||
			funcVal = entry.Caller.Function
 | 
			
		||||
			fileVal = fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if funcVal != "" {
 | 
			
		||||
			fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyFunc))
 | 
			
		||||
		}
 | 
			
		||||
		if fileVal != "" {
 | 
			
		||||
			fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyFile))
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if !f.DisableSorting {
 | 
			
		||||
		if f.SortingFunc == nil {
 | 
			
		||||
			sort.Strings(keys)
 | 
			
		||||
			fixedKeys = append(fixedKeys, keys...)
 | 
			
		||||
		} else {
 | 
			
		||||
			if !f.isColored() {
 | 
			
		||||
				fixedKeys = append(fixedKeys, keys...)
 | 
			
		||||
				f.SortingFunc(fixedKeys)
 | 
			
		||||
			} else {
 | 
			
		||||
				f.SortingFunc(keys)
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		fixedKeys = append(fixedKeys, keys...)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var b *bytes.Buffer
 | 
			
		||||
	if entry.Buffer != nil {
 | 
			
		||||
		b = entry.Buffer
 | 
			
		||||
	} else {
 | 
			
		||||
		b = &bytes.Buffer{}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	f.terminalInitOnce.Do(func() { f.init(entry) })
 | 
			
		||||
 | 
			
		||||
	timestampFormat := f.TimestampFormat
 | 
			
		||||
	if timestampFormat == "" {
 | 
			
		||||
		timestampFormat = defaultTimestampFormat
 | 
			
		||||
	}
 | 
			
		||||
	if f.isColored() {
 | 
			
		||||
		f.printColored(b, entry, keys, data, timestampFormat)
 | 
			
		||||
	} else {
 | 
			
		||||
 | 
			
		||||
		for _, key := range fixedKeys {
 | 
			
		||||
			var value interface{}
 | 
			
		||||
			switch {
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyTime):
 | 
			
		||||
				value = entry.Time.Format(timestampFormat)
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyLevel):
 | 
			
		||||
				value = entry.Level.String()
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyMsg):
 | 
			
		||||
				value = entry.Message
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyLogrusError):
 | 
			
		||||
				value = entry.err
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyFunc) && entry.HasCaller():
 | 
			
		||||
				value = funcVal
 | 
			
		||||
			case key == f.FieldMap.resolve(FieldKeyFile) && entry.HasCaller():
 | 
			
		||||
				value = fileVal
 | 
			
		||||
			default:
 | 
			
		||||
				value = data[key]
 | 
			
		||||
			}
 | 
			
		||||
			f.appendKeyValue(b, key, value)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	b.WriteByte('\n')
 | 
			
		||||
	return b.Bytes(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, keys []string, data Fields, timestampFormat string) {
 | 
			
		||||
	var levelColor int
 | 
			
		||||
	switch entry.Level {
 | 
			
		||||
	case DebugLevel, TraceLevel:
 | 
			
		||||
		levelColor = gray
 | 
			
		||||
	case WarnLevel:
 | 
			
		||||
		levelColor = yellow
 | 
			
		||||
	case ErrorLevel, FatalLevel, PanicLevel:
 | 
			
		||||
		levelColor = red
 | 
			
		||||
	case InfoLevel:
 | 
			
		||||
		levelColor = blue
 | 
			
		||||
	default:
 | 
			
		||||
		levelColor = blue
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	levelText := strings.ToUpper(entry.Level.String())
 | 
			
		||||
	if !f.DisableLevelTruncation && !f.PadLevelText {
 | 
			
		||||
		levelText = levelText[0:4]
 | 
			
		||||
	}
 | 
			
		||||
	if f.PadLevelText {
 | 
			
		||||
		// Generates the format string used in the next line, for example "%-6s" or "%-7s".
 | 
			
		||||
		// Based on the max level text length.
 | 
			
		||||
		formatString := "%-" + strconv.Itoa(f.levelTextMaxLength) + "s"
 | 
			
		||||
		// Formats the level text by appending spaces up to the max length, for example:
 | 
			
		||||
		// 	- "INFO   "
 | 
			
		||||
		//	- "WARNING"
 | 
			
		||||
		levelText = fmt.Sprintf(formatString, levelText)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Remove a single newline if it already exists in the message to keep
 | 
			
		||||
	// the behavior of logrus text_formatter the same as the stdlib log package
 | 
			
		||||
	entry.Message = strings.TrimSuffix(entry.Message, "\n")
 | 
			
		||||
 | 
			
		||||
	caller := ""
 | 
			
		||||
	if entry.HasCaller() {
 | 
			
		||||
		funcVal := fmt.Sprintf("%s()", entry.Caller.Function)
 | 
			
		||||
		fileVal := fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
 | 
			
		||||
 | 
			
		||||
		if f.CallerPrettyfier != nil {
 | 
			
		||||
			funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if fileVal == "" {
 | 
			
		||||
			caller = funcVal
 | 
			
		||||
		} else if funcVal == "" {
 | 
			
		||||
			caller = fileVal
 | 
			
		||||
		} else {
 | 
			
		||||
			caller = fileVal + " " + funcVal
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch {
 | 
			
		||||
	case f.DisableTimestamp:
 | 
			
		||||
		fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m%s %-44s ", levelColor, levelText, caller, entry.Message)
 | 
			
		||||
	case !f.FullTimestamp:
 | 
			
		||||
		fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%04d]%s %-44s ", levelColor, levelText, int(entry.Time.Sub(baseTimestamp)/time.Second), caller, entry.Message)
 | 
			
		||||
	default:
 | 
			
		||||
		fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s]%s %-44s ", levelColor, levelText, entry.Time.Format(timestampFormat), caller, entry.Message)
 | 
			
		||||
	}
 | 
			
		||||
	for _, k := range keys {
 | 
			
		||||
		v := data[k]
 | 
			
		||||
		fmt.Fprintf(b, " \x1b[%dm%s\x1b[0m=", levelColor, k)
 | 
			
		||||
		f.appendValue(b, v)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) needsQuoting(text string) bool {
 | 
			
		||||
	if f.ForceQuote {
 | 
			
		||||
		return true
 | 
			
		||||
	}
 | 
			
		||||
	if f.QuoteEmptyFields && len(text) == 0 {
 | 
			
		||||
		return true
 | 
			
		||||
	}
 | 
			
		||||
	if f.DisableQuote {
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
	for _, ch := range text {
 | 
			
		||||
		if !((ch >= 'a' && ch <= 'z') ||
 | 
			
		||||
			(ch >= 'A' && ch <= 'Z') ||
 | 
			
		||||
			(ch >= '0' && ch <= '9') ||
 | 
			
		||||
			ch == '-' || ch == '.' || ch == '_' || ch == '/' || ch == '@' || ch == '^' || ch == '+') {
 | 
			
		||||
			return true
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) appendKeyValue(b *bytes.Buffer, key string, value interface{}) {
 | 
			
		||||
	if b.Len() > 0 {
 | 
			
		||||
		b.WriteByte(' ')
 | 
			
		||||
	}
 | 
			
		||||
	b.WriteString(key)
 | 
			
		||||
	b.WriteByte('=')
 | 
			
		||||
	f.appendValue(b, value)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *TextFormatter) appendValue(b *bytes.Buffer, value interface{}) {
 | 
			
		||||
	stringVal, ok := value.(string)
 | 
			
		||||
	if !ok {
 | 
			
		||||
		stringVal = fmt.Sprint(value)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if !f.needsQuoting(stringVal) {
 | 
			
		||||
		b.WriteString(stringVal)
 | 
			
		||||
	} else {
 | 
			
		||||
		b.WriteString(fmt.Sprintf("%q", stringVal))
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										70
									
								
								vendor/github.com/sirupsen/logrus/writer.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										70
									
								
								vendor/github.com/sirupsen/logrus/writer.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,70 +0,0 @@
 | 
			
		||||
package logrus
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bufio"
 | 
			
		||||
	"io"
 | 
			
		||||
	"runtime"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Writer at INFO level. See WriterLevel for details.
 | 
			
		||||
func (logger *Logger) Writer() *io.PipeWriter {
 | 
			
		||||
	return logger.WriterLevel(InfoLevel)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WriterLevel returns an io.Writer that can be used to write arbitrary text to
 | 
			
		||||
// the logger at the given log level. Each line written to the writer will be
 | 
			
		||||
// printed in the usual way using formatters and hooks. The writer is part of an
 | 
			
		||||
// io.Pipe and it is the callers responsibility to close the writer when done.
 | 
			
		||||
// This can be used to override the standard library logger easily.
 | 
			
		||||
func (logger *Logger) WriterLevel(level Level) *io.PipeWriter {
 | 
			
		||||
	return NewEntry(logger).WriterLevel(level)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) Writer() *io.PipeWriter {
 | 
			
		||||
	return entry.WriterLevel(InfoLevel)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) WriterLevel(level Level) *io.PipeWriter {
 | 
			
		||||
	reader, writer := io.Pipe()
 | 
			
		||||
 | 
			
		||||
	var printFunc func(args ...interface{})
 | 
			
		||||
 | 
			
		||||
	switch level {
 | 
			
		||||
	case TraceLevel:
 | 
			
		||||
		printFunc = entry.Trace
 | 
			
		||||
	case DebugLevel:
 | 
			
		||||
		printFunc = entry.Debug
 | 
			
		||||
	case InfoLevel:
 | 
			
		||||
		printFunc = entry.Info
 | 
			
		||||
	case WarnLevel:
 | 
			
		||||
		printFunc = entry.Warn
 | 
			
		||||
	case ErrorLevel:
 | 
			
		||||
		printFunc = entry.Error
 | 
			
		||||
	case FatalLevel:
 | 
			
		||||
		printFunc = entry.Fatal
 | 
			
		||||
	case PanicLevel:
 | 
			
		||||
		printFunc = entry.Panic
 | 
			
		||||
	default:
 | 
			
		||||
		printFunc = entry.Print
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	go entry.writerScanner(reader, printFunc)
 | 
			
		||||
	runtime.SetFinalizer(writer, writerFinalizer)
 | 
			
		||||
 | 
			
		||||
	return writer
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (entry *Entry) writerScanner(reader *io.PipeReader, printFunc func(args ...interface{})) {
 | 
			
		||||
	scanner := bufio.NewScanner(reader)
 | 
			
		||||
	for scanner.Scan() {
 | 
			
		||||
		printFunc(scanner.Text())
 | 
			
		||||
	}
 | 
			
		||||
	if err := scanner.Err(); err != nil {
 | 
			
		||||
		entry.Errorf("Error while reading from Writer: %s", err)
 | 
			
		||||
	}
 | 
			
		||||
	reader.Close()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func writerFinalizer(writer *io.PipeWriter) {
 | 
			
		||||
	writer.Close()
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/golang.org/x/sys/AUTHORS
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/golang.org/x/sys/AUTHORS
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,3 +0,0 @@
 | 
			
		||||
# This source code refers to The Go Authors for copyright purposes.
 | 
			
		||||
# The master list of authors is in the main Go distribution,
 | 
			
		||||
# visible at http://tip.golang.org/AUTHORS.
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/golang.org/x/sys/CONTRIBUTORS
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/golang.org/x/sys/CONTRIBUTORS
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,3 +0,0 @@
 | 
			
		||||
# This source code was written by the Go contributors.
 | 
			
		||||
# The master list of contributors is in the main Go distribution,
 | 
			
		||||
# visible at http://tip.golang.org/CONTRIBUTORS.
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,27 +0,0 @@
 | 
			
		||||
Copyright (c) 2009 The Go Authors. All rights reserved.
 | 
			
		||||
 | 
			
		||||
Redistribution and use in source and binary forms, with or without
 | 
			
		||||
modification, are permitted provided that the following conditions are
 | 
			
		||||
met:
 | 
			
		||||
 | 
			
		||||
   * Redistributions of source code must retain the above copyright
 | 
			
		||||
notice, this list of conditions and the following disclaimer.
 | 
			
		||||
   * Redistributions in binary form must reproduce the above
 | 
			
		||||
copyright notice, this list of conditions and the following disclaimer
 | 
			
		||||
in the documentation and/or other materials provided with the
 | 
			
		||||
distribution.
 | 
			
		||||
   * Neither the name of Google Inc. nor the names of its
 | 
			
		||||
contributors may be used to endorse or promote products derived from
 | 
			
		||||
this software without specific prior written permission.
 | 
			
		||||
 | 
			
		||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
			
		||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
			
		||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 | 
			
		||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 | 
			
		||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 | 
			
		||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 | 
			
		||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 | 
			
		||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 | 
			
		||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 | 
			
		||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 | 
			
		||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
			
		||||
							
								
								
									
										22
									
								
								vendor/golang.org/x/sys/PATENTS
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										22
									
								
								vendor/golang.org/x/sys/PATENTS
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,22 +0,0 @@
 | 
			
		||||
Additional IP Rights Grant (Patents)
 | 
			
		||||
 | 
			
		||||
"This implementation" means the copyrightable works distributed by
 | 
			
		||||
Google as part of the Go project.
 | 
			
		||||
 | 
			
		||||
Google hereby grants to You a perpetual, worldwide, non-exclusive,
 | 
			
		||||
no-charge, royalty-free, irrevocable (except as stated in this section)
 | 
			
		||||
patent license to make, have made, use, offer to sell, sell, import,
 | 
			
		||||
transfer and otherwise run, modify and propagate the contents of this
 | 
			
		||||
implementation of Go, where such license applies only to those patent
 | 
			
		||||
claims, both currently owned or controlled by Google and acquired in
 | 
			
		||||
the future, licensable by Google that are necessarily infringed by this
 | 
			
		||||
implementation of Go.  This grant does not include claims that would be
 | 
			
		||||
infringed only as a consequence of further modification of this
 | 
			
		||||
implementation.  If you or your agent or exclusive licensee institute or
 | 
			
		||||
order or agree to the institution of patent litigation against any
 | 
			
		||||
entity (including a cross-claim or counterclaim in a lawsuit) alleging
 | 
			
		||||
that this implementation of Go or any code incorporated within this
 | 
			
		||||
implementation of Go constitutes direct or contributory patent
 | 
			
		||||
infringement, or inducement of patent infringement, then any patent
 | 
			
		||||
rights granted to you under this License for this implementation of Go
 | 
			
		||||
shall terminate as of the date such litigation is filed.
 | 
			
		||||
							
								
								
									
										30
									
								
								vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Package unsafeheader contains header declarations for the Go runtime's
 | 
			
		||||
// slice and string implementations.
 | 
			
		||||
//
 | 
			
		||||
// This package allows x/sys to use types equivalent to
 | 
			
		||||
// reflect.SliceHeader and reflect.StringHeader without introducing
 | 
			
		||||
// a dependency on the (relatively heavy) "reflect" package.
 | 
			
		||||
package unsafeheader
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Slice is the runtime representation of a slice.
 | 
			
		||||
// It cannot be used safely or portably and its representation may change in a later release.
 | 
			
		||||
type Slice struct {
 | 
			
		||||
	Data unsafe.Pointer
 | 
			
		||||
	Len  int
 | 
			
		||||
	Cap  int
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// String is the runtime representation of a string.
 | 
			
		||||
// It cannot be used safely or portably and its representation may change in a later release.
 | 
			
		||||
type String struct {
 | 
			
		||||
	Data unsafe.Pointer
 | 
			
		||||
	Len  int
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,2 +0,0 @@
 | 
			
		||||
_obj/
 | 
			
		||||
unix.test
 | 
			
		||||
							
								
								
									
										184
									
								
								vendor/golang.org/x/sys/unix/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										184
									
								
								vendor/golang.org/x/sys/unix/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,184 +0,0 @@
 | 
			
		||||
# Building `sys/unix`
 | 
			
		||||
 | 
			
		||||
The sys/unix package provides access to the raw system call interface of the
 | 
			
		||||
underlying operating system. See: https://godoc.org/golang.org/x/sys/unix
 | 
			
		||||
 | 
			
		||||
Porting Go to a new architecture/OS combination or adding syscalls, types, or
 | 
			
		||||
constants to an existing architecture/OS pair requires some manual effort;
 | 
			
		||||
however, there are tools that automate much of the process.
 | 
			
		||||
 | 
			
		||||
## Build Systems
 | 
			
		||||
 | 
			
		||||
There are currently two ways we generate the necessary files. We are currently
 | 
			
		||||
migrating the build system to use containers so the builds are reproducible.
 | 
			
		||||
This is being done on an OS-by-OS basis. Please update this documentation as
 | 
			
		||||
components of the build system change.
 | 
			
		||||
 | 
			
		||||
### Old Build System (currently for `GOOS != "linux"`)
 | 
			
		||||
 | 
			
		||||
The old build system generates the Go files based on the C header files
 | 
			
		||||
present on your system. This means that files
 | 
			
		||||
for a given GOOS/GOARCH pair must be generated on a system with that OS and
 | 
			
		||||
architecture. This also means that the generated code can differ from system
 | 
			
		||||
to system, based on differences in the header files.
 | 
			
		||||
 | 
			
		||||
To avoid this, if you are using the old build system, only generate the Go
 | 
			
		||||
files on an installation with unmodified header files. It is also important to
 | 
			
		||||
keep track of which version of the OS the files were generated from (ex.
 | 
			
		||||
Darwin 14 vs Darwin 15). This makes it easier to track the progress of changes
 | 
			
		||||
and have each OS upgrade correspond to a single change.
 | 
			
		||||
 | 
			
		||||
To build the files for your current OS and architecture, make sure GOOS and
 | 
			
		||||
GOARCH are set correctly and run `mkall.sh`. This will generate the files for
 | 
			
		||||
your specific system. Running `mkall.sh -n` shows the commands that will be run.
 | 
			
		||||
 | 
			
		||||
Requirements: bash, go
 | 
			
		||||
 | 
			
		||||
### New Build System (currently for `GOOS == "linux"`)
 | 
			
		||||
 | 
			
		||||
The new build system uses a Docker container to generate the go files directly
 | 
			
		||||
from source checkouts of the kernel and various system libraries. This means
 | 
			
		||||
that on any platform that supports Docker, all the files using the new build
 | 
			
		||||
system can be generated at once, and generated files will not change based on
 | 
			
		||||
what the person running the scripts has installed on their computer.
 | 
			
		||||
 | 
			
		||||
The OS specific files for the new build system are located in the `${GOOS}`
 | 
			
		||||
directory, and the build is coordinated by the `${GOOS}/mkall.go` program. When
 | 
			
		||||
the kernel or system library updates, modify the Dockerfile at
 | 
			
		||||
`${GOOS}/Dockerfile` to checkout the new release of the source.
 | 
			
		||||
 | 
			
		||||
To build all the files under the new build system, you must be on an amd64/Linux
 | 
			
		||||
system and have your GOOS and GOARCH set accordingly. Running `mkall.sh` will
 | 
			
		||||
then generate all of the files for all of the GOOS/GOARCH pairs in the new build
 | 
			
		||||
system. Running `mkall.sh -n` shows the commands that will be run.
 | 
			
		||||
 | 
			
		||||
Requirements: bash, go, docker
 | 
			
		||||
 | 
			
		||||
## Component files
 | 
			
		||||
 | 
			
		||||
This section describes the various files used in the code generation process.
 | 
			
		||||
It also contains instructions on how to modify these files to add a new
 | 
			
		||||
architecture/OS or to add additional syscalls, types, or constants. Note that
 | 
			
		||||
if you are using the new build system, the scripts/programs cannot be called normally.
 | 
			
		||||
They must be called from within the docker container.
 | 
			
		||||
 | 
			
		||||
### asm files
 | 
			
		||||
 | 
			
		||||
The hand-written assembly file at `asm_${GOOS}_${GOARCH}.s` implements system
 | 
			
		||||
call dispatch. There are three entry points:
 | 
			
		||||
```
 | 
			
		||||
  func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
 | 
			
		||||
  func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
 | 
			
		||||
  func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
 | 
			
		||||
```
 | 
			
		||||
The first and second are the standard ones; they differ only in how many
 | 
			
		||||
arguments can be passed to the kernel. The third is for low-level use by the
 | 
			
		||||
ForkExec wrapper. Unlike the first two, it does not call into the scheduler to
 | 
			
		||||
let it know that a system call is running.
 | 
			
		||||
 | 
			
		||||
When porting Go to an new architecture/OS, this file must be implemented for
 | 
			
		||||
each GOOS/GOARCH pair.
 | 
			
		||||
 | 
			
		||||
### mksysnum
 | 
			
		||||
 | 
			
		||||
Mksysnum is a Go program located at `${GOOS}/mksysnum.go` (or `mksysnum_${GOOS}.go`
 | 
			
		||||
for the old system). This program takes in a list of header files containing the
 | 
			
		||||
syscall number declarations and parses them to produce the corresponding list of
 | 
			
		||||
Go numeric constants. See `zsysnum_${GOOS}_${GOARCH}.go` for the generated
 | 
			
		||||
constants.
 | 
			
		||||
 | 
			
		||||
Adding new syscall numbers is mostly done by running the build on a sufficiently
 | 
			
		||||
new installation of the target OS (or updating the source checkouts for the
 | 
			
		||||
new build system). However, depending on the OS, you may need to update the
 | 
			
		||||
parsing in mksysnum.
 | 
			
		||||
 | 
			
		||||
### mksyscall.go
 | 
			
		||||
 | 
			
		||||
The `syscall.go`, `syscall_${GOOS}.go`, `syscall_${GOOS}_${GOARCH}.go` are
 | 
			
		||||
hand-written Go files which implement system calls (for unix, the specific OS,
 | 
			
		||||
or the specific OS/Architecture pair respectively) that need special handling
 | 
			
		||||
and list `//sys` comments giving prototypes for ones that can be generated.
 | 
			
		||||
 | 
			
		||||
The mksyscall.go program takes the `//sys` and `//sysnb` comments and converts
 | 
			
		||||
them into syscalls. This requires the name of the prototype in the comment to
 | 
			
		||||
match a syscall number in the `zsysnum_${GOOS}_${GOARCH}.go` file. The function
 | 
			
		||||
prototype can be exported (capitalized) or not.
 | 
			
		||||
 | 
			
		||||
Adding a new syscall often just requires adding a new `//sys` function prototype
 | 
			
		||||
with the desired arguments and a capitalized name so it is exported. However, if
 | 
			
		||||
you want the interface to the syscall to be different, often one will make an
 | 
			
		||||
unexported `//sys` prototype, an then write a custom wrapper in
 | 
			
		||||
`syscall_${GOOS}.go`.
 | 
			
		||||
 | 
			
		||||
### types files
 | 
			
		||||
 | 
			
		||||
For each OS, there is a hand-written Go file at `${GOOS}/types.go` (or
 | 
			
		||||
`types_${GOOS}.go` on the old system). This file includes standard C headers and
 | 
			
		||||
creates Go type aliases to the corresponding C types. The file is then fed
 | 
			
		||||
through godef to get the Go compatible definitions. Finally, the generated code
 | 
			
		||||
is fed though mkpost.go to format the code correctly and remove any hidden or
 | 
			
		||||
private identifiers. This cleaned-up code is written to
 | 
			
		||||
`ztypes_${GOOS}_${GOARCH}.go`.
 | 
			
		||||
 | 
			
		||||
The hardest part about preparing this file is figuring out which headers to
 | 
			
		||||
include and which symbols need to be `#define`d to get the actual data
 | 
			
		||||
structures that pass through to the kernel system calls. Some C libraries
 | 
			
		||||
preset alternate versions for binary compatibility and translate them on the
 | 
			
		||||
way in and out of system calls, but there is almost always a `#define` that can
 | 
			
		||||
get the real ones.
 | 
			
		||||
See `types_darwin.go` and `linux/types.go` for examples.
 | 
			
		||||
 | 
			
		||||
To add a new type, add in the necessary include statement at the top of the
 | 
			
		||||
file (if it is not already there) and add in a type alias line. Note that if
 | 
			
		||||
your type is significantly different on different architectures, you may need
 | 
			
		||||
some `#if/#elif` macros in your include statements.
 | 
			
		||||
 | 
			
		||||
### mkerrors.sh
 | 
			
		||||
 | 
			
		||||
This script is used to generate the system's various constants. This doesn't
 | 
			
		||||
just include the error numbers and error strings, but also the signal numbers
 | 
			
		||||
an a wide variety of miscellaneous constants. The constants come from the list
 | 
			
		||||
of include files in the `includes_${uname}` variable. A regex then picks out
 | 
			
		||||
the desired `#define` statements, and generates the corresponding Go constants.
 | 
			
		||||
The error numbers and strings are generated from `#include <errno.h>`, and the
 | 
			
		||||
signal numbers and strings are generated from `#include <signal.h>`. All of
 | 
			
		||||
these constants are written to `zerrors_${GOOS}_${GOARCH}.go` via a C program,
 | 
			
		||||
`_errors.c`, which prints out all the constants.
 | 
			
		||||
 | 
			
		||||
To add a constant, add the header that includes it to the appropriate variable.
 | 
			
		||||
Then, edit the regex (if necessary) to match the desired constant. Avoid making
 | 
			
		||||
the regex too broad to avoid matching unintended constants.
 | 
			
		||||
 | 
			
		||||
### mkmerge.go
 | 
			
		||||
 | 
			
		||||
This program is used to extract duplicate const, func, and type declarations
 | 
			
		||||
from the generated architecture-specific files listed below, and merge these
 | 
			
		||||
into a common file for each OS.
 | 
			
		||||
 | 
			
		||||
The merge is performed in the following steps:
 | 
			
		||||
1. Construct the set of common code that is idential in all architecture-specific files.
 | 
			
		||||
2. Write this common code to the merged file.
 | 
			
		||||
3. Remove the common code from all architecture-specific files.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Generated files
 | 
			
		||||
 | 
			
		||||
### `zerrors_${GOOS}_${GOARCH}.go`
 | 
			
		||||
 | 
			
		||||
A file containing all of the system's generated error numbers, error strings,
 | 
			
		||||
signal numbers, and constants. Generated by `mkerrors.sh` (see above).
 | 
			
		||||
 | 
			
		||||
### `zsyscall_${GOOS}_${GOARCH}.go`
 | 
			
		||||
 | 
			
		||||
A file containing all the generated syscalls for a specific GOOS and GOARCH.
 | 
			
		||||
Generated by `mksyscall.go` (see above).
 | 
			
		||||
 | 
			
		||||
### `zsysnum_${GOOS}_${GOARCH}.go`
 | 
			
		||||
 | 
			
		||||
A list of numeric constants for all the syscall number of the specific GOOS
 | 
			
		||||
and GOARCH. Generated by mksysnum (see above).
 | 
			
		||||
 | 
			
		||||
### `ztypes_${GOOS}_${GOARCH}.go`
 | 
			
		||||
 | 
			
		||||
A file containing Go types for passing into (or returning from) syscalls.
 | 
			
		||||
Generated by godefs and the types file (see above).
 | 
			
		||||
							
								
								
									
										86
									
								
								vendor/golang.org/x/sys/unix/affinity_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										86
									
								
								vendor/golang.org/x/sys/unix/affinity_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,86 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// CPU affinity functions
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"math/bits"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const cpuSetSize = _CPU_SETSIZE / _NCPUBITS
 | 
			
		||||
 | 
			
		||||
// CPUSet represents a CPU affinity mask.
 | 
			
		||||
type CPUSet [cpuSetSize]cpuMask
 | 
			
		||||
 | 
			
		||||
func schedAffinity(trap uintptr, pid int, set *CPUSet) error {
 | 
			
		||||
	_, _, e := RawSyscall(trap, uintptr(pid), uintptr(unsafe.Sizeof(*set)), uintptr(unsafe.Pointer(set)))
 | 
			
		||||
	if e != 0 {
 | 
			
		||||
		return errnoErr(e)
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SchedGetaffinity gets the CPU affinity mask of the thread specified by pid.
 | 
			
		||||
// If pid is 0 the calling thread is used.
 | 
			
		||||
func SchedGetaffinity(pid int, set *CPUSet) error {
 | 
			
		||||
	return schedAffinity(SYS_SCHED_GETAFFINITY, pid, set)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SchedSetaffinity sets the CPU affinity mask of the thread specified by pid.
 | 
			
		||||
// If pid is 0 the calling thread is used.
 | 
			
		||||
func SchedSetaffinity(pid int, set *CPUSet) error {
 | 
			
		||||
	return schedAffinity(SYS_SCHED_SETAFFINITY, pid, set)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Zero clears the set s, so that it contains no CPUs.
 | 
			
		||||
func (s *CPUSet) Zero() {
 | 
			
		||||
	for i := range s {
 | 
			
		||||
		s[i] = 0
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func cpuBitsIndex(cpu int) int {
 | 
			
		||||
	return cpu / _NCPUBITS
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func cpuBitsMask(cpu int) cpuMask {
 | 
			
		||||
	return cpuMask(1 << (uint(cpu) % _NCPUBITS))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Set adds cpu to the set s.
 | 
			
		||||
func (s *CPUSet) Set(cpu int) {
 | 
			
		||||
	i := cpuBitsIndex(cpu)
 | 
			
		||||
	if i < len(s) {
 | 
			
		||||
		s[i] |= cpuBitsMask(cpu)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Clear removes cpu from the set s.
 | 
			
		||||
func (s *CPUSet) Clear(cpu int) {
 | 
			
		||||
	i := cpuBitsIndex(cpu)
 | 
			
		||||
	if i < len(s) {
 | 
			
		||||
		s[i] &^= cpuBitsMask(cpu)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsSet reports whether cpu is in the set s.
 | 
			
		||||
func (s *CPUSet) IsSet(cpu int) bool {
 | 
			
		||||
	i := cpuBitsIndex(cpu)
 | 
			
		||||
	if i < len(s) {
 | 
			
		||||
		return s[i]&cpuBitsMask(cpu) != 0
 | 
			
		||||
	}
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Count returns the number of CPUs in the set s.
 | 
			
		||||
func (s *CPUSet) Count() int {
 | 
			
		||||
	c := 0
 | 
			
		||||
	for _, b := range s {
 | 
			
		||||
		c += bits.OnesCount64(uint64(b))
 | 
			
		||||
	}
 | 
			
		||||
	return c
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										15
									
								
								vendor/golang.org/x/sys/unix/aliases.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								vendor/golang.org/x/sys/unix/aliases.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,15 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos) && go1.9
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
 | 
			
		||||
// +build go1.9
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "syscall"
 | 
			
		||||
 | 
			
		||||
type Signal = syscall.Signal
 | 
			
		||||
type Errno = syscall.Errno
 | 
			
		||||
type SysProcAttr = syscall.SysProcAttr
 | 
			
		||||
							
								
								
									
										18
									
								
								vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,18 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for ppc64, AIX are implemented in runtime/syscall_aix.go
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall6(SB),NOSPLIT,$0-88
 | 
			
		||||
	JMP	syscall·syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·rawSyscall6(SB),NOSPLIT,$0-88
 | 
			
		||||
	JMP	syscall·rawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2021 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (darwin || freebsd || netbsd || openbsd) && gc
 | 
			
		||||
// +build darwin freebsd netbsd openbsd
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// System call support for 386 BSD
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall9(SB),NOSPLIT,$0-52
 | 
			
		||||
	JMP	syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2021 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (darwin || dragonfly || freebsd || netbsd || openbsd) && gc
 | 
			
		||||
// +build darwin dragonfly freebsd netbsd openbsd
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// System call support for AMD64 BSD
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall9(SB),NOSPLIT,$0-104
 | 
			
		||||
	JMP	syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2021 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (darwin || freebsd || netbsd || openbsd) && gc
 | 
			
		||||
// +build darwin freebsd netbsd openbsd
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// System call support for ARM BSD
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	B	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	B	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall9(SB),NOSPLIT,$0-52
 | 
			
		||||
	B	syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	B	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	B	syscall·RawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2021 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (darwin || freebsd || netbsd || openbsd) && gc
 | 
			
		||||
// +build darwin freebsd netbsd openbsd
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// System call support for ARM64 BSD
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall9(SB),NOSPLIT,$0-104
 | 
			
		||||
	JMP	syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										66
									
								
								vendor/golang.org/x/sys/unix/asm_linux_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										66
									
								
								vendor/golang.org/x/sys/unix/asm_linux_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,66 +0,0 @@
 | 
			
		||||
// Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for 386, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// See ../runtime/sys_linux_386.s for the reason why we always use int 0x80
 | 
			
		||||
// instead of the glibc-specific "CALL 0x10(GS)".
 | 
			
		||||
#define INVOKE_SYSCALL	INT	$0x80
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	CALL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVL	trap+0(FP), AX  // syscall entry
 | 
			
		||||
	MOVL	a1+4(FP), BX
 | 
			
		||||
	MOVL	a2+8(FP), CX
 | 
			
		||||
	MOVL	a3+12(FP), DX
 | 
			
		||||
	MOVL	$0, SI
 | 
			
		||||
	MOVL	$0, DI
 | 
			
		||||
	INVOKE_SYSCALL
 | 
			
		||||
	MOVL	AX, r1+16(FP)
 | 
			
		||||
	MOVL	DX, r2+20(FP)
 | 
			
		||||
	CALL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	MOVL	trap+0(FP), AX  // syscall entry
 | 
			
		||||
	MOVL	a1+4(FP), BX
 | 
			
		||||
	MOVL	a2+8(FP), CX
 | 
			
		||||
	MOVL	a3+12(FP), DX
 | 
			
		||||
	MOVL	$0, SI
 | 
			
		||||
	MOVL	$0, DI
 | 
			
		||||
	INVOKE_SYSCALL
 | 
			
		||||
	MOVL	AX, r1+16(FP)
 | 
			
		||||
	MOVL	DX, r2+20(FP)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·socketcall(SB),NOSPLIT,$0-36
 | 
			
		||||
	JMP	syscall·socketcall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·rawsocketcall(SB),NOSPLIT,$0-36
 | 
			
		||||
	JMP	syscall·rawsocketcall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·seek(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP	syscall·seek(SB)
 | 
			
		||||
							
								
								
									
										58
									
								
								vendor/golang.org/x/sys/unix/asm_linux_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										58
									
								
								vendor/golang.org/x/sys/unix/asm_linux_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,58 +0,0 @@
 | 
			
		||||
// Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for AMD64, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	CALL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVQ	a1+8(FP), DI
 | 
			
		||||
	MOVQ	a2+16(FP), SI
 | 
			
		||||
	MOVQ	a3+24(FP), DX
 | 
			
		||||
	MOVQ	$0, R10
 | 
			
		||||
	MOVQ	$0, R8
 | 
			
		||||
	MOVQ	$0, R9
 | 
			
		||||
	MOVQ	trap+0(FP), AX	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVQ	AX, r1+32(FP)
 | 
			
		||||
	MOVQ	DX, r2+40(FP)
 | 
			
		||||
	CALL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOVQ	a1+8(FP), DI
 | 
			
		||||
	MOVQ	a2+16(FP), SI
 | 
			
		||||
	MOVQ	a3+24(FP), DX
 | 
			
		||||
	MOVQ	$0, R10
 | 
			
		||||
	MOVQ	$0, R8
 | 
			
		||||
	MOVQ	$0, R9
 | 
			
		||||
	MOVQ	trap+0(FP), AX	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVQ	AX, r1+32(FP)
 | 
			
		||||
	MOVQ	DX, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·gettimeofday(SB),NOSPLIT,$0-16
 | 
			
		||||
	JMP	syscall·gettimeofday(SB)
 | 
			
		||||
							
								
								
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,57 +0,0 @@
 | 
			
		||||
// Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for arm, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	B	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	B	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVW	trap+0(FP), R7
 | 
			
		||||
	MOVW	a1+4(FP), R0
 | 
			
		||||
	MOVW	a2+8(FP), R1
 | 
			
		||||
	MOVW	a3+12(FP), R2
 | 
			
		||||
	MOVW	$0, R3
 | 
			
		||||
	MOVW	$0, R4
 | 
			
		||||
	MOVW	$0, R5
 | 
			
		||||
	SWI	$0
 | 
			
		||||
	MOVW	R0, r1+16(FP)
 | 
			
		||||
	MOVW	$0, R0
 | 
			
		||||
	MOVW	R0, r2+20(FP)
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	B	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	B	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	MOVW	trap+0(FP), R7	// syscall entry
 | 
			
		||||
	MOVW	a1+4(FP), R0
 | 
			
		||||
	MOVW	a2+8(FP), R1
 | 
			
		||||
	MOVW	a3+12(FP), R2
 | 
			
		||||
	SWI	$0
 | 
			
		||||
	MOVW	R0, r1+16(FP)
 | 
			
		||||
	MOVW	$0, R0
 | 
			
		||||
	MOVW	R0, r2+20(FP)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·seek(SB),NOSPLIT,$0-28
 | 
			
		||||
	B	syscall·seek(SB)
 | 
			
		||||
							
								
								
									
										53
									
								
								vendor/golang.org/x/sys/unix/asm_linux_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										53
									
								
								vendor/golang.org/x/sys/unix/asm_linux_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,53 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && arm64 && gc
 | 
			
		||||
// +build linux
 | 
			
		||||
// +build arm64
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	B	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	B	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R0
 | 
			
		||||
	MOVD	a2+16(FP), R1
 | 
			
		||||
	MOVD	a3+24(FP), R2
 | 
			
		||||
	MOVD	$0, R3
 | 
			
		||||
	MOVD	$0, R4
 | 
			
		||||
	MOVD	$0, R5
 | 
			
		||||
	MOVD	trap+0(FP), R8	// syscall entry
 | 
			
		||||
	SVC
 | 
			
		||||
	MOVD	R0, r1+32(FP)	// r1
 | 
			
		||||
	MOVD	R1, r2+40(FP)	// r2
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	B	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	B	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOVD	a1+8(FP), R0
 | 
			
		||||
	MOVD	a2+16(FP), R1
 | 
			
		||||
	MOVD	a3+24(FP), R2
 | 
			
		||||
	MOVD	$0, R3
 | 
			
		||||
	MOVD	$0, R4
 | 
			
		||||
	MOVD	$0, R5
 | 
			
		||||
	MOVD	trap+0(FP), R8	// syscall entry
 | 
			
		||||
	SVC
 | 
			
		||||
	MOVD	R0, r1+32(FP)
 | 
			
		||||
	MOVD	R1, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,57 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && (mips64 || mips64le) && gc
 | 
			
		||||
// +build linux
 | 
			
		||||
// +build mips64 mips64le
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for mips64, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	JAL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVV	a1+8(FP), R4
 | 
			
		||||
	MOVV	a2+16(FP), R5
 | 
			
		||||
	MOVV	a3+24(FP), R6
 | 
			
		||||
	MOVV	R0, R7
 | 
			
		||||
	MOVV	R0, R8
 | 
			
		||||
	MOVV	R0, R9
 | 
			
		||||
	MOVV	trap+0(FP), R2	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVV	R2, r1+32(FP)
 | 
			
		||||
	MOVV	R3, r2+40(FP)
 | 
			
		||||
	JAL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOVV	a1+8(FP), R4
 | 
			
		||||
	MOVV	a2+16(FP), R5
 | 
			
		||||
	MOVV	a3+24(FP), R6
 | 
			
		||||
	MOVV	R0, R7
 | 
			
		||||
	MOVV	R0, R8
 | 
			
		||||
	MOVV	R0, R9
 | 
			
		||||
	MOVV	trap+0(FP), R2	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVV	R2, r1+32(FP)
 | 
			
		||||
	MOVV	R3, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										55
									
								
								vendor/golang.org/x/sys/unix/asm_linux_mipsx.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										55
									
								
								vendor/golang.org/x/sys/unix/asm_linux_mipsx.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,55 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && (mips || mipsle) && gc
 | 
			
		||||
// +build linux
 | 
			
		||||
// +build mips mipsle
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for mips, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall9(SB),NOSPLIT,$0-52
 | 
			
		||||
	JMP syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	JAL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVW	a1+4(FP), R4
 | 
			
		||||
	MOVW	a2+8(FP), R5
 | 
			
		||||
	MOVW	a3+12(FP), R6
 | 
			
		||||
	MOVW	R0, R7
 | 
			
		||||
	MOVW	trap+0(FP), R2	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVW	R2, r1+16(FP)	// r1
 | 
			
		||||
	MOVW	R3, r2+20(FP)	// r2
 | 
			
		||||
	JAL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
 | 
			
		||||
	JMP syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
 | 
			
		||||
	JMP syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24
 | 
			
		||||
	MOVW	a1+4(FP), R4
 | 
			
		||||
	MOVW	a2+8(FP), R5
 | 
			
		||||
	MOVW	a3+12(FP), R6
 | 
			
		||||
	MOVW	trap+0(FP), R2	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVW	R2, r1+16(FP)
 | 
			
		||||
	MOVW	R3, r2+20(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										45
									
								
								vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										45
									
								
								vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,45 +0,0 @@
 | 
			
		||||
// Copyright 2014 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && (ppc64 || ppc64le) && gc
 | 
			
		||||
// +build linux
 | 
			
		||||
// +build ppc64 ppc64le
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for ppc64, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R3
 | 
			
		||||
	MOVD	a2+16(FP), R4
 | 
			
		||||
	MOVD	a3+24(FP), R5
 | 
			
		||||
	MOVD	R0, R6
 | 
			
		||||
	MOVD	R0, R7
 | 
			
		||||
	MOVD	R0, R8
 | 
			
		||||
	MOVD	trap+0(FP), R9	// syscall entry
 | 
			
		||||
	SYSCALL R9
 | 
			
		||||
	MOVD	R3, r1+32(FP)
 | 
			
		||||
	MOVD	R4, r2+40(FP)
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOVD	a1+8(FP), R3
 | 
			
		||||
	MOVD	a2+16(FP), R4
 | 
			
		||||
	MOVD	a3+24(FP), R5
 | 
			
		||||
	MOVD	R0, R6
 | 
			
		||||
	MOVD	R0, R7
 | 
			
		||||
	MOVD	R0, R8
 | 
			
		||||
	MOVD	trap+0(FP), R9	// syscall entry
 | 
			
		||||
	SYSCALL R9
 | 
			
		||||
	MOVD	R3, r1+32(FP)
 | 
			
		||||
	MOVD	R4, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										49
									
								
								vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										49
									
								
								vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,49 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build riscv64 && gc
 | 
			
		||||
// +build riscv64
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for linux/riscv64.
 | 
			
		||||
//
 | 
			
		||||
// Where available, just jump to package syscall's implementation of
 | 
			
		||||
// these functions.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	CALL	runtime·entersyscall(SB)
 | 
			
		||||
	MOV	a1+8(FP), A0
 | 
			
		||||
	MOV	a2+16(FP), A1
 | 
			
		||||
	MOV	a3+24(FP), A2
 | 
			
		||||
	MOV	trap+0(FP), A7	// syscall entry
 | 
			
		||||
	ECALL
 | 
			
		||||
	MOV	A0, r1+32(FP)	// r1
 | 
			
		||||
	MOV	A1, r2+40(FP)	// r2
 | 
			
		||||
	CALL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOV	a1+8(FP), A0
 | 
			
		||||
	MOV	a2+16(FP), A1
 | 
			
		||||
	MOV	a3+24(FP), A2
 | 
			
		||||
	MOV	trap+0(FP), A7	// syscall entry
 | 
			
		||||
	ECALL
 | 
			
		||||
	MOV	A0, r1+32(FP)
 | 
			
		||||
	MOV	A1, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_s390x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										57
									
								
								vendor/golang.org/x/sys/unix/asm_linux_s390x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,57 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && s390x && gc
 | 
			
		||||
// +build linux
 | 
			
		||||
// +build s390x
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for s390x, Linux
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	BR	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	BR	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R2
 | 
			
		||||
	MOVD	a2+16(FP), R3
 | 
			
		||||
	MOVD	a3+24(FP), R4
 | 
			
		||||
	MOVD	$0, R5
 | 
			
		||||
	MOVD	$0, R6
 | 
			
		||||
	MOVD	$0, R7
 | 
			
		||||
	MOVD	trap+0(FP), R1	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVD	R2, r1+32(FP)
 | 
			
		||||
	MOVD	R3, r2+40(FP)
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	BR	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	BR	syscall·RawSyscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48
 | 
			
		||||
	MOVD	a1+8(FP), R2
 | 
			
		||||
	MOVD	a2+16(FP), R3
 | 
			
		||||
	MOVD	a3+24(FP), R4
 | 
			
		||||
	MOVD	$0, R5
 | 
			
		||||
	MOVD	$0, R6
 | 
			
		||||
	MOVD	$0, R7
 | 
			
		||||
	MOVD	trap+0(FP), R1	// syscall entry
 | 
			
		||||
	SYSCALL
 | 
			
		||||
	MOVD	R2, r1+32(FP)
 | 
			
		||||
	MOVD	R3, r2+40(FP)
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										30
									
								
								vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System call support for mips64, OpenBSD
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
// Just jump to package syscall's implementation for all these functions.
 | 
			
		||||
// The runtime may know about them.
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·Syscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·Syscall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·Syscall9(SB),NOSPLIT,$0-104
 | 
			
		||||
	JMP	syscall·Syscall9(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	JMP	syscall·RawSyscall(SB)
 | 
			
		||||
 | 
			
		||||
TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	JMP	syscall·RawSyscall6(SB)
 | 
			
		||||
							
								
								
									
										18
									
								
								vendor/golang.org/x/sys/unix/asm_solaris_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								vendor/golang.org/x/sys/unix/asm_solaris_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,18 +0,0 @@
 | 
			
		||||
// Copyright 2014 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
TEXT ·sysvicall6(SB),NOSPLIT,$0-88
 | 
			
		||||
	JMP	syscall·sysvicall6(SB)
 | 
			
		||||
 | 
			
		||||
TEXT ·rawSysvicall6(SB),NOSPLIT,$0-88
 | 
			
		||||
	JMP	syscall·rawSysvicall6(SB)
 | 
			
		||||
							
								
								
									
										426
									
								
								vendor/golang.org/x/sys/unix/asm_zos_s390x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										426
									
								
								vendor/golang.org/x/sys/unix/asm_zos_s390x.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,426 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build zos && s390x && gc
 | 
			
		||||
// +build zos
 | 
			
		||||
// +build s390x
 | 
			
		||||
// +build gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
#define PSALAA            1208(R0)
 | 
			
		||||
#define GTAB64(x)           80(x)
 | 
			
		||||
#define LCA64(x)            88(x)
 | 
			
		||||
#define CAA(x)               8(x)
 | 
			
		||||
#define EDCHPXV(x)        1016(x)       // in the CAA
 | 
			
		||||
#define SAVSTACK_ASYNC(x)  336(x)       // in the LCA
 | 
			
		||||
 | 
			
		||||
// SS_*, where x=SAVSTACK_ASYNC
 | 
			
		||||
#define SS_LE(x)             0(x)
 | 
			
		||||
#define SS_GO(x)             8(x)
 | 
			
		||||
#define SS_ERRNO(x)         16(x)
 | 
			
		||||
#define SS_ERRNOJR(x)       20(x)
 | 
			
		||||
 | 
			
		||||
#define LE_CALL BYTE $0x0D; BYTE $0x76; // BL R7, R6
 | 
			
		||||
 | 
			
		||||
TEXT ·clearErrno(SB),NOSPLIT,$0-0
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVD	$0, 0(R3)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// Returns the address of errno in R3.
 | 
			
		||||
TEXT addrerrno<>(SB),NOSPLIT|NOFRAME,$0-0
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get __errno FuncDesc.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	ADD	$(0x156*16), R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Switch to saved LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Call __errno function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
 | 
			
		||||
	// Switch back to Go stack.
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_syscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+32(FP)
 | 
			
		||||
	MOVD	R0, r2+40(FP)
 | 
			
		||||
	MOVD	R0, err+48(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+48(FP)
 | 
			
		||||
done:
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_rawsyscall(SB),NOSPLIT,$0-56
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+32(FP)
 | 
			
		||||
	MOVD	R0, r2+40(FP)
 | 
			
		||||
	MOVD	R0, err+48(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+48(FP)
 | 
			
		||||
done:
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_syscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Fill in parameter list.
 | 
			
		||||
	MOVD	a4+32(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+24)(R4)
 | 
			
		||||
	MOVD	a5+40(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+32)(R4)
 | 
			
		||||
	MOVD	a6+48(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+40)(R4)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+56(FP)
 | 
			
		||||
	MOVD	R0, r2+64(FP)
 | 
			
		||||
	MOVD	R0, err+72(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+72(FP)
 | 
			
		||||
done:
 | 
			
		||||
	BL	runtime·exitsyscall(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_rawsyscall6(SB),NOSPLIT,$0-80
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Fill in parameter list.
 | 
			
		||||
	MOVD	a4+32(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+24)(R4)
 | 
			
		||||
	MOVD	a5+40(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+32)(R4)
 | 
			
		||||
	MOVD	a6+48(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+40)(R4)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+56(FP)
 | 
			
		||||
	MOVD	R0, r2+64(FP)
 | 
			
		||||
	MOVD	R0, err+72(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	·rrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+72(FP)
 | 
			
		||||
done:
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_syscall9(SB),NOSPLIT,$0
 | 
			
		||||
	BL	runtime·entersyscall(SB)
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Fill in parameter list.
 | 
			
		||||
	MOVD	a4+32(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+24)(R4)
 | 
			
		||||
	MOVD	a5+40(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+32)(R4)
 | 
			
		||||
	MOVD	a6+48(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+40)(R4)
 | 
			
		||||
	MOVD	a7+56(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+48)(R4)
 | 
			
		||||
	MOVD	a8+64(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+56)(R4)
 | 
			
		||||
	MOVD	a9+72(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+64)(R4)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+80(FP)
 | 
			
		||||
	MOVD	R0, r2+88(FP)
 | 
			
		||||
	MOVD	R0, err+96(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+96(FP)
 | 
			
		||||
done:
 | 
			
		||||
        BL	runtime·exitsyscall(SB)
 | 
			
		||||
        RET
 | 
			
		||||
 | 
			
		||||
TEXT ·syscall_rawsyscall9(SB),NOSPLIT,$0
 | 
			
		||||
	MOVD	a1+8(FP), R1
 | 
			
		||||
	MOVD	a2+16(FP), R2
 | 
			
		||||
	MOVD	a3+24(FP), R3
 | 
			
		||||
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get function.
 | 
			
		||||
	MOVD	CAA(R8), R9
 | 
			
		||||
	MOVD	EDCHPXV(R9), R9
 | 
			
		||||
	MOVD	trap+0(FP), R5
 | 
			
		||||
	SLD	$4, R5
 | 
			
		||||
	ADD	R5, R9
 | 
			
		||||
	LMG	0(R9), R5, R6
 | 
			
		||||
 | 
			
		||||
	// Restore LE stack.
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R4
 | 
			
		||||
	MOVD	$0, 0(R9)
 | 
			
		||||
 | 
			
		||||
	// Fill in parameter list.
 | 
			
		||||
	MOVD	a4+32(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+24)(R4)
 | 
			
		||||
	MOVD	a5+40(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+32)(R4)
 | 
			
		||||
	MOVD	a6+48(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+40)(R4)
 | 
			
		||||
	MOVD	a7+56(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+48)(R4)
 | 
			
		||||
	MOVD	a8+64(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+56)(R4)
 | 
			
		||||
	MOVD	a9+72(FP), R12
 | 
			
		||||
	MOVD	R12, (2176+64)(R4)
 | 
			
		||||
 | 
			
		||||
	// Call function.
 | 
			
		||||
	LE_CALL
 | 
			
		||||
	NOPH
 | 
			
		||||
	XOR	R0, R0      // Restore R0 to $0.
 | 
			
		||||
	MOVD	R4, 0(R9)   // Save stack pointer.
 | 
			
		||||
 | 
			
		||||
	MOVD	R3, r1+80(FP)
 | 
			
		||||
	MOVD	R0, r2+88(FP)
 | 
			
		||||
	MOVD	R0, err+96(FP)
 | 
			
		||||
	MOVW	R3, R4
 | 
			
		||||
	CMP	R4, $-1
 | 
			
		||||
	BNE	done
 | 
			
		||||
	BL	addrerrno<>(SB)
 | 
			
		||||
	MOVWZ	0(R3), R3
 | 
			
		||||
	MOVD	R3, err+96(FP)
 | 
			
		||||
done:
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// func svcCall(fnptr unsafe.Pointer, argv *unsafe.Pointer, dsa *uint64)
 | 
			
		||||
TEXT ·svcCall(SB),NOSPLIT,$0
 | 
			
		||||
	BL	runtime·save_g(SB)   // Save g and stack pointer
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	R15, 0(R9)
 | 
			
		||||
 | 
			
		||||
	MOVD	argv+8(FP), R1       // Move function arguments into registers
 | 
			
		||||
	MOVD	dsa+16(FP), g
 | 
			
		||||
	MOVD	fnptr+0(FP), R15
 | 
			
		||||
 | 
			
		||||
	BYTE	$0x0D                // Branch to function
 | 
			
		||||
	BYTE	$0xEF
 | 
			
		||||
 | 
			
		||||
	BL	runtime·load_g(SB)   // Restore g and stack pointer
 | 
			
		||||
	MOVW	PSALAA, R8
 | 
			
		||||
	MOVD	LCA64(R8), R8
 | 
			
		||||
	MOVD	SAVSTACK_ASYNC(R8), R9
 | 
			
		||||
	MOVD	0(R9), R15
 | 
			
		||||
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// func svcLoad(name *byte) unsafe.Pointer
 | 
			
		||||
TEXT ·svcLoad(SB),NOSPLIT,$0
 | 
			
		||||
	MOVD	R15, R2          // Save go stack pointer
 | 
			
		||||
	MOVD	name+0(FP), R0   // Move SVC args into registers
 | 
			
		||||
	MOVD	$0x80000000, R1
 | 
			
		||||
	MOVD	$0, R15
 | 
			
		||||
	BYTE	$0x0A            // SVC 08 LOAD
 | 
			
		||||
	BYTE	$0x08
 | 
			
		||||
	MOVW	R15, R3          // Save return code from SVC
 | 
			
		||||
	MOVD	R2, R15          // Restore go stack pointer
 | 
			
		||||
	CMP	R3, $0           // Check SVC return code
 | 
			
		||||
	BNE	error
 | 
			
		||||
 | 
			
		||||
	MOVD	$-2, R3          // Reset last bit of entry point to zero
 | 
			
		||||
	AND	R0, R3
 | 
			
		||||
	MOVD	R3, addr+8(FP)   // Return entry point returned by SVC
 | 
			
		||||
	CMP	R0, R3           // Check if last bit of entry point was set
 | 
			
		||||
	BNE	done
 | 
			
		||||
 | 
			
		||||
	MOVD	R15, R2          // Save go stack pointer
 | 
			
		||||
	MOVD	$0, R15          // Move SVC args into registers (entry point still in r0 from SVC 08)
 | 
			
		||||
	BYTE	$0x0A            // SVC 09 DELETE
 | 
			
		||||
	BYTE	$0x09
 | 
			
		||||
	MOVD	R2, R15          // Restore go stack pointer
 | 
			
		||||
 | 
			
		||||
error:
 | 
			
		||||
	MOVD	$0, addr+8(FP)   // Return 0 on failure
 | 
			
		||||
done:
 | 
			
		||||
	XOR	R0, R0           // Reset r0 to 0
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// func svcUnload(name *byte, fnptr unsafe.Pointer) int64
 | 
			
		||||
TEXT ·svcUnload(SB),NOSPLIT,$0
 | 
			
		||||
	MOVD	R15, R2          // Save go stack pointer
 | 
			
		||||
	MOVD	name+0(FP), R0   // Move SVC args into registers
 | 
			
		||||
	MOVD	addr+8(FP), R15
 | 
			
		||||
	BYTE	$0x0A            // SVC 09
 | 
			
		||||
	BYTE	$0x09
 | 
			
		||||
	XOR	R0, R0           // Reset r0 to 0
 | 
			
		||||
	MOVD	R15, R1          // Save SVC return code
 | 
			
		||||
	MOVD	R2, R15          // Restore go stack pointer
 | 
			
		||||
	MOVD	R1, rc+0(FP)     // Return SVC return code
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// func gettid() uint64
 | 
			
		||||
TEXT ·gettid(SB), NOSPLIT, $0
 | 
			
		||||
	// Get library control area (LCA).
 | 
			
		||||
	MOVW PSALAA, R8
 | 
			
		||||
	MOVD LCA64(R8), R8
 | 
			
		||||
 | 
			
		||||
	// Get CEECAATHDID
 | 
			
		||||
	MOVD CAA(R8), R9
 | 
			
		||||
	MOVD 0x3D0(R9), R9
 | 
			
		||||
	MOVD R9, ret+0(FP)
 | 
			
		||||
 | 
			
		||||
	RET
 | 
			
		||||
							
								
								
									
										36
									
								
								vendor/golang.org/x/sys/unix/bluetooth_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								vendor/golang.org/x/sys/unix/bluetooth_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,36 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Bluetooth sockets and messages
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Bluetooth Protocols
 | 
			
		||||
const (
 | 
			
		||||
	BTPROTO_L2CAP  = 0
 | 
			
		||||
	BTPROTO_HCI    = 1
 | 
			
		||||
	BTPROTO_SCO    = 2
 | 
			
		||||
	BTPROTO_RFCOMM = 3
 | 
			
		||||
	BTPROTO_BNEP   = 4
 | 
			
		||||
	BTPROTO_CMTP   = 5
 | 
			
		||||
	BTPROTO_HIDP   = 6
 | 
			
		||||
	BTPROTO_AVDTP  = 7
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	HCI_CHANNEL_RAW     = 0
 | 
			
		||||
	HCI_CHANNEL_USER    = 1
 | 
			
		||||
	HCI_CHANNEL_MONITOR = 2
 | 
			
		||||
	HCI_CHANNEL_CONTROL = 3
 | 
			
		||||
	HCI_CHANNEL_LOGGING = 4
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Socketoption Level
 | 
			
		||||
const (
 | 
			
		||||
	SOL_BLUETOOTH = 0x112
 | 
			
		||||
	SOL_HCI       = 0x0
 | 
			
		||||
	SOL_L2CAP     = 0x6
 | 
			
		||||
	SOL_RFCOMM    = 0x12
 | 
			
		||||
	SOL_SCO       = 0x11
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										196
									
								
								vendor/golang.org/x/sys/unix/cap_freebsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										196
									
								
								vendor/golang.org/x/sys/unix/cap_freebsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,196 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build freebsd
 | 
			
		||||
// +build freebsd
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Go implementation of C mostly found in /usr/src/sys/kern/subr_capability.c
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	// This is the version of CapRights this package understands. See C implementation for parallels.
 | 
			
		||||
	capRightsGoVersion = CAP_RIGHTS_VERSION_00
 | 
			
		||||
	capArSizeMin       = CAP_RIGHTS_VERSION_00 + 2
 | 
			
		||||
	capArSizeMax       = capRightsGoVersion + 2
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
	bit2idx = []int{
 | 
			
		||||
		-1, 0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1,
 | 
			
		||||
		4, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
 | 
			
		||||
	}
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func capidxbit(right uint64) int {
 | 
			
		||||
	return int((right >> 57) & 0x1f)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func rightToIndex(right uint64) (int, error) {
 | 
			
		||||
	idx := capidxbit(right)
 | 
			
		||||
	if idx < 0 || idx >= len(bit2idx) {
 | 
			
		||||
		return -2, fmt.Errorf("index for right 0x%x out of range", right)
 | 
			
		||||
	}
 | 
			
		||||
	return bit2idx[idx], nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func caprver(right uint64) int {
 | 
			
		||||
	return int(right >> 62)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func capver(rights *CapRights) int {
 | 
			
		||||
	return caprver(rights.Rights[0])
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func caparsize(rights *CapRights) int {
 | 
			
		||||
	return capver(rights) + 2
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsSet sets the permissions in setrights in rights.
 | 
			
		||||
func CapRightsSet(rights *CapRights, setrights []uint64) error {
 | 
			
		||||
	// This is essentially a copy of cap_rights_vset()
 | 
			
		||||
	if capver(rights) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
		return fmt.Errorf("bad rights version %d", capver(rights))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	n := caparsize(rights)
 | 
			
		||||
	if n < capArSizeMin || n > capArSizeMax {
 | 
			
		||||
		return errors.New("bad rights size")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for _, right := range setrights {
 | 
			
		||||
		if caprver(right) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
			return errors.New("bad right version")
 | 
			
		||||
		}
 | 
			
		||||
		i, err := rightToIndex(right)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		if i >= n {
 | 
			
		||||
			return errors.New("index overflow")
 | 
			
		||||
		}
 | 
			
		||||
		if capidxbit(rights.Rights[i]) != capidxbit(right) {
 | 
			
		||||
			return errors.New("index mismatch")
 | 
			
		||||
		}
 | 
			
		||||
		rights.Rights[i] |= right
 | 
			
		||||
		if capidxbit(rights.Rights[i]) != capidxbit(right) {
 | 
			
		||||
			return errors.New("index mismatch (after assign)")
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsClear clears the permissions in clearrights from rights.
 | 
			
		||||
func CapRightsClear(rights *CapRights, clearrights []uint64) error {
 | 
			
		||||
	// This is essentially a copy of cap_rights_vclear()
 | 
			
		||||
	if capver(rights) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
		return fmt.Errorf("bad rights version %d", capver(rights))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	n := caparsize(rights)
 | 
			
		||||
	if n < capArSizeMin || n > capArSizeMax {
 | 
			
		||||
		return errors.New("bad rights size")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for _, right := range clearrights {
 | 
			
		||||
		if caprver(right) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
			return errors.New("bad right version")
 | 
			
		||||
		}
 | 
			
		||||
		i, err := rightToIndex(right)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		if i >= n {
 | 
			
		||||
			return errors.New("index overflow")
 | 
			
		||||
		}
 | 
			
		||||
		if capidxbit(rights.Rights[i]) != capidxbit(right) {
 | 
			
		||||
			return errors.New("index mismatch")
 | 
			
		||||
		}
 | 
			
		||||
		rights.Rights[i] &= ^(right & 0x01FFFFFFFFFFFFFF)
 | 
			
		||||
		if capidxbit(rights.Rights[i]) != capidxbit(right) {
 | 
			
		||||
			return errors.New("index mismatch (after assign)")
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsIsSet checks whether all the permissions in setrights are present in rights.
 | 
			
		||||
func CapRightsIsSet(rights *CapRights, setrights []uint64) (bool, error) {
 | 
			
		||||
	// This is essentially a copy of cap_rights_is_vset()
 | 
			
		||||
	if capver(rights) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
		return false, fmt.Errorf("bad rights version %d", capver(rights))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	n := caparsize(rights)
 | 
			
		||||
	if n < capArSizeMin || n > capArSizeMax {
 | 
			
		||||
		return false, errors.New("bad rights size")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for _, right := range setrights {
 | 
			
		||||
		if caprver(right) != CAP_RIGHTS_VERSION_00 {
 | 
			
		||||
			return false, errors.New("bad right version")
 | 
			
		||||
		}
 | 
			
		||||
		i, err := rightToIndex(right)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return false, err
 | 
			
		||||
		}
 | 
			
		||||
		if i >= n {
 | 
			
		||||
			return false, errors.New("index overflow")
 | 
			
		||||
		}
 | 
			
		||||
		if capidxbit(rights.Rights[i]) != capidxbit(right) {
 | 
			
		||||
			return false, errors.New("index mismatch")
 | 
			
		||||
		}
 | 
			
		||||
		if (rights.Rights[i] & right) != right {
 | 
			
		||||
			return false, nil
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return true, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func capright(idx uint64, bit uint64) uint64 {
 | 
			
		||||
	return ((1 << (57 + idx)) | bit)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsInit returns a pointer to an initialised CapRights structure filled with rights.
 | 
			
		||||
// See man cap_rights_init(3) and rights(4).
 | 
			
		||||
func CapRightsInit(rights []uint64) (*CapRights, error) {
 | 
			
		||||
	var r CapRights
 | 
			
		||||
	r.Rights[0] = (capRightsGoVersion << 62) | capright(0, 0)
 | 
			
		||||
	r.Rights[1] = capright(1, 0)
 | 
			
		||||
 | 
			
		||||
	err := CapRightsSet(&r, rights)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	return &r, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsLimit reduces the operations permitted on fd to at most those contained in rights.
 | 
			
		||||
// The capability rights on fd can never be increased by CapRightsLimit.
 | 
			
		||||
// See man cap_rights_limit(2) and rights(4).
 | 
			
		||||
func CapRightsLimit(fd uintptr, rights *CapRights) error {
 | 
			
		||||
	return capRightsLimit(int(fd), rights)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CapRightsGet returns a CapRights structure containing the operations permitted on fd.
 | 
			
		||||
// See man cap_rights_get(3) and rights(4).
 | 
			
		||||
func CapRightsGet(fd uintptr) (*CapRights, error) {
 | 
			
		||||
	r, err := CapRightsInit(nil)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	err = capRightsGet(capRightsGoVersion, int(fd), r)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	return r, nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								vendor/golang.org/x/sys/unix/constants.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								vendor/golang.org/x/sys/unix/constants.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,14 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	R_OK = 0x4
 | 
			
		||||
	W_OK = 0x2
 | 
			
		||||
	X_OK = 0x1
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/dev_aix_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/dev_aix_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,27 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix && ppc
 | 
			
		||||
// +build aix,ppc
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used by AIX.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a Linux device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev >> 16) & 0xffff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a Linux device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32(dev & 0xffff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a Linux device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	return uint64(((major) << 16) | (minor))
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix && ppc64
 | 
			
		||||
// +build aix,ppc64
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used AIX.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a Linux device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev & 0x3fffffff00000000) >> 32)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a Linux device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev & 0x00000000ffffffff) >> 0)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a Linux device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	var DEVNO64 uint64
 | 
			
		||||
	DEVNO64 = 0x8000000000000000
 | 
			
		||||
	return ((uint64(major) << 32) | (uint64(minor) & 0x00000000FFFFFFFF) | DEVNO64)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/dev_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/dev_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,24 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used in Darwin's sys/types.h header.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a Darwin device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev >> 24) & 0xff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a Darwin device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32(dev & 0xffffff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a Darwin device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	return (uint64(major) << 24) | uint64(minor)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								vendor/golang.org/x/sys/unix/dev_dragonfly.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/golang.org/x/sys/unix/dev_dragonfly.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used in Dragonfly's sys/types.h header.
 | 
			
		||||
//
 | 
			
		||||
// The information below is extracted and adapted from sys/types.h:
 | 
			
		||||
//
 | 
			
		||||
// Minor gives a cookie instead of an index since in order to avoid changing the
 | 
			
		||||
// meanings of bits 0-15 or wasting time and space shifting bits 16-31 for
 | 
			
		||||
// devices that don't use them.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a DragonFlyBSD device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev >> 8) & 0xff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a DragonFlyBSD device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32(dev & 0xffff00ff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a DragonFlyBSD device number generated from the given major and
 | 
			
		||||
// minor components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	return (uint64(major) << 8) | uint64(minor)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								vendor/golang.org/x/sys/unix/dev_freebsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/golang.org/x/sys/unix/dev_freebsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used in FreeBSD's sys/types.h header.
 | 
			
		||||
//
 | 
			
		||||
// The information below is extracted and adapted from sys/types.h:
 | 
			
		||||
//
 | 
			
		||||
// Minor gives a cookie instead of an index since in order to avoid changing the
 | 
			
		||||
// meanings of bits 0-15 or wasting time and space shifting bits 16-31 for
 | 
			
		||||
// devices that don't use them.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a FreeBSD device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev >> 8) & 0xff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a FreeBSD device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32(dev & 0xffff00ff)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a FreeBSD device number generated from the given major and
 | 
			
		||||
// minor components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	return (uint64(major) << 8) | uint64(minor)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										42
									
								
								vendor/golang.org/x/sys/unix/dev_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										42
									
								
								vendor/golang.org/x/sys/unix/dev_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,42 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used by the Linux kernel and glibc.
 | 
			
		||||
//
 | 
			
		||||
// The information below is extracted and adapted from bits/sysmacros.h in the
 | 
			
		||||
// glibc sources:
 | 
			
		||||
//
 | 
			
		||||
// dev_t in glibc is 64-bit, with 32-bit major and minor numbers. glibc's
 | 
			
		||||
// default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major
 | 
			
		||||
// number and m is a hex digit of the minor number. This is backward compatible
 | 
			
		||||
// with legacy systems where dev_t is 16 bits wide, encoded as MMmm. It is also
 | 
			
		||||
// backward compatible with the Linux kernel, which for some architectures uses
 | 
			
		||||
// 32-bit dev_t, encoded as mmmM MMmm.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a Linux device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	major := uint32((dev & 0x00000000000fff00) >> 8)
 | 
			
		||||
	major |= uint32((dev & 0xfffff00000000000) >> 32)
 | 
			
		||||
	return major
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a Linux device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	minor := uint32((dev & 0x00000000000000ff) >> 0)
 | 
			
		||||
	minor |= uint32((dev & 0x00000ffffff00000) >> 12)
 | 
			
		||||
	return minor
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a Linux device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	dev := (uint64(major) & 0x00000fff) << 8
 | 
			
		||||
	dev |= (uint64(major) & 0xfffff000) << 32
 | 
			
		||||
	dev |= (uint64(minor) & 0x000000ff) << 0
 | 
			
		||||
	dev |= (uint64(minor) & 0xffffff00) << 12
 | 
			
		||||
	return dev
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_netbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_netbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used in NetBSD's sys/types.h header.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a NetBSD device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev & 0x000fff00) >> 8)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a NetBSD device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	minor := uint32((dev & 0x000000ff) >> 0)
 | 
			
		||||
	minor |= uint32((dev & 0xfff00000) >> 12)
 | 
			
		||||
	return minor
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a NetBSD device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	dev := (uint64(major) << 8) & 0x000fff00
 | 
			
		||||
	dev |= (uint64(minor) << 12) & 0xfff00000
 | 
			
		||||
	dev |= (uint64(minor) << 0) & 0x000000ff
 | 
			
		||||
	return dev
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used in OpenBSD's sys/types.h header.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of an OpenBSD device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev & 0x0000ff00) >> 8)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of an OpenBSD device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	minor := uint32((dev & 0x000000ff) >> 0)
 | 
			
		||||
	minor |= uint32((dev & 0xffff0000) >> 8)
 | 
			
		||||
	return minor
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns an OpenBSD device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	dev := (uint64(major) << 8) & 0x0000ff00
 | 
			
		||||
	dev |= (uint64(minor) << 8) & 0xffff0000
 | 
			
		||||
	dev |= (uint64(minor) << 0) & 0x000000ff
 | 
			
		||||
	return dev
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										29
									
								
								vendor/golang.org/x/sys/unix/dev_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,29 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build zos && s390x
 | 
			
		||||
// +build zos,s390x
 | 
			
		||||
 | 
			
		||||
// Functions to access/create device major and minor numbers matching the
 | 
			
		||||
// encoding used by z/OS.
 | 
			
		||||
//
 | 
			
		||||
// The information below is extracted and adapted from <sys/stat.h> macros.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Major returns the major component of a z/OS device number.
 | 
			
		||||
func Major(dev uint64) uint32 {
 | 
			
		||||
	return uint32((dev >> 16) & 0x0000FFFF)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Minor returns the minor component of a z/OS device number.
 | 
			
		||||
func Minor(dev uint64) uint32 {
 | 
			
		||||
	return uint32(dev & 0x0000FFFF)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Mkdev returns a z/OS device number generated from the given major and minor
 | 
			
		||||
// components.
 | 
			
		||||
func Mkdev(major, minor uint32) uint64 {
 | 
			
		||||
	return (uint64(major) << 16) | uint64(minor)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										103
									
								
								vendor/golang.org/x/sys/unix/dirent.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										103
									
								
								vendor/golang.org/x/sys/unix/dirent.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,103 +0,0 @@
 | 
			
		||||
// Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
// readInt returns the size-bytes unsigned integer in native byte order at offset off.
 | 
			
		||||
func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
 | 
			
		||||
	if len(b) < int(off+size) {
 | 
			
		||||
		return 0, false
 | 
			
		||||
	}
 | 
			
		||||
	if isBigEndian {
 | 
			
		||||
		return readIntBE(b[off:], size), true
 | 
			
		||||
	}
 | 
			
		||||
	return readIntLE(b[off:], size), true
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func readIntBE(b []byte, size uintptr) uint64 {
 | 
			
		||||
	switch size {
 | 
			
		||||
	case 1:
 | 
			
		||||
		return uint64(b[0])
 | 
			
		||||
	case 2:
 | 
			
		||||
		_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[1]) | uint64(b[0])<<8
 | 
			
		||||
	case 4:
 | 
			
		||||
		_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[3]) | uint64(b[2])<<8 | uint64(b[1])<<16 | uint64(b[0])<<24
 | 
			
		||||
	case 8:
 | 
			
		||||
		_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[7]) | uint64(b[6])<<8 | uint64(b[5])<<16 | uint64(b[4])<<24 |
 | 
			
		||||
			uint64(b[3])<<32 | uint64(b[2])<<40 | uint64(b[1])<<48 | uint64(b[0])<<56
 | 
			
		||||
	default:
 | 
			
		||||
		panic("syscall: readInt with unsupported size")
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func readIntLE(b []byte, size uintptr) uint64 {
 | 
			
		||||
	switch size {
 | 
			
		||||
	case 1:
 | 
			
		||||
		return uint64(b[0])
 | 
			
		||||
	case 2:
 | 
			
		||||
		_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[0]) | uint64(b[1])<<8
 | 
			
		||||
	case 4:
 | 
			
		||||
		_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24
 | 
			
		||||
	case 8:
 | 
			
		||||
		_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
 | 
			
		||||
		return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
 | 
			
		||||
			uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
 | 
			
		||||
	default:
 | 
			
		||||
		panic("syscall: readInt with unsupported size")
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ParseDirent parses up to max directory entries in buf,
 | 
			
		||||
// appending the names to names. It returns the number of
 | 
			
		||||
// bytes consumed from buf, the number of entries added
 | 
			
		||||
// to names, and the new names slice.
 | 
			
		||||
func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string) {
 | 
			
		||||
	origlen := len(buf)
 | 
			
		||||
	count = 0
 | 
			
		||||
	for max != 0 && len(buf) > 0 {
 | 
			
		||||
		reclen, ok := direntReclen(buf)
 | 
			
		||||
		if !ok || reclen > uint64(len(buf)) {
 | 
			
		||||
			return origlen, count, names
 | 
			
		||||
		}
 | 
			
		||||
		rec := buf[:reclen]
 | 
			
		||||
		buf = buf[reclen:]
 | 
			
		||||
		ino, ok := direntIno(rec)
 | 
			
		||||
		if !ok {
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
		if ino == 0 { // File absent in directory.
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
		const namoff = uint64(unsafe.Offsetof(Dirent{}.Name))
 | 
			
		||||
		namlen, ok := direntNamlen(rec)
 | 
			
		||||
		if !ok || namoff+namlen > uint64(len(rec)) {
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
		name := rec[namoff : namoff+namlen]
 | 
			
		||||
		for i, c := range name {
 | 
			
		||||
			if c == 0 {
 | 
			
		||||
				name = name[:i]
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		// Check for useless names before allocating a string.
 | 
			
		||||
		if string(name) == "." || string(name) == ".." {
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
		max--
 | 
			
		||||
		count++
 | 
			
		||||
		names = append(names, string(name))
 | 
			
		||||
	}
 | 
			
		||||
	return origlen - len(buf), count, names
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										10
									
								
								vendor/golang.org/x/sys/unix/endian_big.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								vendor/golang.org/x/sys/unix/endian_big.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,10 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
//
 | 
			
		||||
//go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
 | 
			
		||||
// +build armbe arm64be m68k mips mips64 mips64p32 ppc ppc64 s390 s390x shbe sparc sparc64
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const isBigEndian = true
 | 
			
		||||
							
								
								
									
										10
									
								
								vendor/golang.org/x/sys/unix/endian_little.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								vendor/golang.org/x/sys/unix/endian_little.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,10 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
//
 | 
			
		||||
//go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh
 | 
			
		||||
// +build 386 amd64 amd64p32 alpha arm arm64 mipsle mips64le mips64p32le nios2 ppc64le riscv riscv64 sh
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const isBigEndian = false
 | 
			
		||||
							
								
								
									
										32
									
								
								vendor/golang.org/x/sys/unix/env_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										32
									
								
								vendor/golang.org/x/sys/unix/env_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,32 +0,0 @@
 | 
			
		||||
// Copyright 2010 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
 | 
			
		||||
 | 
			
		||||
// Unix environment variables.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "syscall"
 | 
			
		||||
 | 
			
		||||
func Getenv(key string) (value string, found bool) {
 | 
			
		||||
	return syscall.Getenv(key)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Setenv(key, value string) error {
 | 
			
		||||
	return syscall.Setenv(key, value)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Clearenv() {
 | 
			
		||||
	syscall.Clearenv()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Environ() []string {
 | 
			
		||||
	return syscall.Environ()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Unsetenv(key string) error {
 | 
			
		||||
	return syscall.Unsetenv(key)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										221
									
								
								vendor/golang.org/x/sys/unix/epoll_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										221
									
								
								vendor/golang.org/x/sys/unix/epoll_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,221 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build zos && s390x
 | 
			
		||||
// +build zos,s390x
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"sync"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// This file simulates epoll on z/OS using poll.
 | 
			
		||||
 | 
			
		||||
// Analogous to epoll_event on Linux.
 | 
			
		||||
// TODO(neeilan): Pad is because the Linux kernel expects a 96-bit struct. We never pass this to the kernel; remove?
 | 
			
		||||
type EpollEvent struct {
 | 
			
		||||
	Events uint32
 | 
			
		||||
	Fd     int32
 | 
			
		||||
	Pad    int32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	EPOLLERR      = 0x8
 | 
			
		||||
	EPOLLHUP      = 0x10
 | 
			
		||||
	EPOLLIN       = 0x1
 | 
			
		||||
	EPOLLMSG      = 0x400
 | 
			
		||||
	EPOLLOUT      = 0x4
 | 
			
		||||
	EPOLLPRI      = 0x2
 | 
			
		||||
	EPOLLRDBAND   = 0x80
 | 
			
		||||
	EPOLLRDNORM   = 0x40
 | 
			
		||||
	EPOLLWRBAND   = 0x200
 | 
			
		||||
	EPOLLWRNORM   = 0x100
 | 
			
		||||
	EPOLL_CTL_ADD = 0x1
 | 
			
		||||
	EPOLL_CTL_DEL = 0x2
 | 
			
		||||
	EPOLL_CTL_MOD = 0x3
 | 
			
		||||
	// The following constants are part of the epoll API, but represent
 | 
			
		||||
	// currently unsupported functionality on z/OS.
 | 
			
		||||
	// EPOLL_CLOEXEC  = 0x80000
 | 
			
		||||
	// EPOLLET        = 0x80000000
 | 
			
		||||
	// EPOLLONESHOT   = 0x40000000
 | 
			
		||||
	// EPOLLRDHUP     = 0x2000     // Typically used with edge-triggered notis
 | 
			
		||||
	// EPOLLEXCLUSIVE = 0x10000000 // Exclusive wake-up mode
 | 
			
		||||
	// EPOLLWAKEUP    = 0x20000000 // Relies on Linux's BLOCK_SUSPEND capability
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// TODO(neeilan): We can eliminate these epToPoll / pToEpoll calls by using identical mask values for POLL/EPOLL
 | 
			
		||||
// constants where possible The lower 16 bits of epoll events (uint32) can fit any system poll event (int16).
 | 
			
		||||
 | 
			
		||||
// epToPollEvt converts epoll event field to poll equivalent.
 | 
			
		||||
// In epoll, Events is a 32-bit field, while poll uses 16 bits.
 | 
			
		||||
func epToPollEvt(events uint32) int16 {
 | 
			
		||||
	var ep2p = map[uint32]int16{
 | 
			
		||||
		EPOLLIN:  POLLIN,
 | 
			
		||||
		EPOLLOUT: POLLOUT,
 | 
			
		||||
		EPOLLHUP: POLLHUP,
 | 
			
		||||
		EPOLLPRI: POLLPRI,
 | 
			
		||||
		EPOLLERR: POLLERR,
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var pollEvts int16 = 0
 | 
			
		||||
	for epEvt, pEvt := range ep2p {
 | 
			
		||||
		if (events & epEvt) != 0 {
 | 
			
		||||
			pollEvts |= pEvt
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return pollEvts
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// pToEpollEvt converts 16 bit poll event bitfields to 32-bit epoll event fields.
 | 
			
		||||
func pToEpollEvt(revents int16) uint32 {
 | 
			
		||||
	var p2ep = map[int16]uint32{
 | 
			
		||||
		POLLIN:  EPOLLIN,
 | 
			
		||||
		POLLOUT: EPOLLOUT,
 | 
			
		||||
		POLLHUP: EPOLLHUP,
 | 
			
		||||
		POLLPRI: EPOLLPRI,
 | 
			
		||||
		POLLERR: EPOLLERR,
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var epollEvts uint32 = 0
 | 
			
		||||
	for pEvt, epEvt := range p2ep {
 | 
			
		||||
		if (revents & pEvt) != 0 {
 | 
			
		||||
			epollEvts |= epEvt
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return epollEvts
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Per-process epoll implementation.
 | 
			
		||||
type epollImpl struct {
 | 
			
		||||
	mu       sync.Mutex
 | 
			
		||||
	epfd2ep  map[int]*eventPoll
 | 
			
		||||
	nextEpfd int
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// eventPoll holds a set of file descriptors being watched by the process. A process can have multiple epoll instances.
 | 
			
		||||
// On Linux, this is an in-kernel data structure accessed through a fd.
 | 
			
		||||
type eventPoll struct {
 | 
			
		||||
	mu  sync.Mutex
 | 
			
		||||
	fds map[int]*EpollEvent
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// epoll impl for this process.
 | 
			
		||||
var impl epollImpl = epollImpl{
 | 
			
		||||
	epfd2ep:  make(map[int]*eventPoll),
 | 
			
		||||
	nextEpfd: 0,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (e *epollImpl) epollcreate(size int) (epfd int, err error) {
 | 
			
		||||
	e.mu.Lock()
 | 
			
		||||
	defer e.mu.Unlock()
 | 
			
		||||
	epfd = e.nextEpfd
 | 
			
		||||
	e.nextEpfd++
 | 
			
		||||
 | 
			
		||||
	e.epfd2ep[epfd] = &eventPoll{
 | 
			
		||||
		fds: make(map[int]*EpollEvent),
 | 
			
		||||
	}
 | 
			
		||||
	return epfd, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (e *epollImpl) epollcreate1(flag int) (fd int, err error) {
 | 
			
		||||
	return e.epollcreate(4)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (e *epollImpl) epollctl(epfd int, op int, fd int, event *EpollEvent) (err error) {
 | 
			
		||||
	e.mu.Lock()
 | 
			
		||||
	defer e.mu.Unlock()
 | 
			
		||||
 | 
			
		||||
	ep, ok := e.epfd2ep[epfd]
 | 
			
		||||
	if !ok {
 | 
			
		||||
 | 
			
		||||
		return EBADF
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch op {
 | 
			
		||||
	case EPOLL_CTL_ADD:
 | 
			
		||||
		// TODO(neeilan): When we make epfds and fds disjoint, detect epoll
 | 
			
		||||
		// loops here (instances watching each other) and return ELOOP.
 | 
			
		||||
		if _, ok := ep.fds[fd]; ok {
 | 
			
		||||
			return EEXIST
 | 
			
		||||
		}
 | 
			
		||||
		ep.fds[fd] = event
 | 
			
		||||
	case EPOLL_CTL_MOD:
 | 
			
		||||
		if _, ok := ep.fds[fd]; !ok {
 | 
			
		||||
			return ENOENT
 | 
			
		||||
		}
 | 
			
		||||
		ep.fds[fd] = event
 | 
			
		||||
	case EPOLL_CTL_DEL:
 | 
			
		||||
		if _, ok := ep.fds[fd]; !ok {
 | 
			
		||||
			return ENOENT
 | 
			
		||||
		}
 | 
			
		||||
		delete(ep.fds, fd)
 | 
			
		||||
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Must be called while holding ep.mu
 | 
			
		||||
func (ep *eventPoll) getFds() []int {
 | 
			
		||||
	fds := make([]int, len(ep.fds))
 | 
			
		||||
	for fd := range ep.fds {
 | 
			
		||||
		fds = append(fds, fd)
 | 
			
		||||
	}
 | 
			
		||||
	return fds
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (e *epollImpl) epollwait(epfd int, events []EpollEvent, msec int) (n int, err error) {
 | 
			
		||||
	e.mu.Lock() // in [rare] case of concurrent epollcreate + epollwait
 | 
			
		||||
	ep, ok := e.epfd2ep[epfd]
 | 
			
		||||
 | 
			
		||||
	if !ok {
 | 
			
		||||
		e.mu.Unlock()
 | 
			
		||||
		return 0, EBADF
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	pollfds := make([]PollFd, 4)
 | 
			
		||||
	for fd, epollevt := range ep.fds {
 | 
			
		||||
		pollfds = append(pollfds, PollFd{Fd: int32(fd), Events: epToPollEvt(epollevt.Events)})
 | 
			
		||||
	}
 | 
			
		||||
	e.mu.Unlock()
 | 
			
		||||
 | 
			
		||||
	n, err = Poll(pollfds, msec)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return n, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	i := 0
 | 
			
		||||
	for _, pFd := range pollfds {
 | 
			
		||||
		if pFd.Revents != 0 {
 | 
			
		||||
			events[i] = EpollEvent{Fd: pFd.Fd, Events: pToEpollEvt(pFd.Revents)}
 | 
			
		||||
			i++
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if i == n {
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return n, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func EpollCreate(size int) (fd int, err error) {
 | 
			
		||||
	return impl.epollcreate(size)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func EpollCreate1(flag int) (fd int, err error) {
 | 
			
		||||
	return impl.epollcreate1(flag)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
 | 
			
		||||
	return impl.epollctl(epfd, op, fd, event)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Because EpollWait mutates events, the caller is expected to coordinate
 | 
			
		||||
// concurrent access if calling with the same epfd from multiple goroutines.
 | 
			
		||||
func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {
 | 
			
		||||
	return impl.epollwait(epfd, events, msec)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										233
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										233
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,233 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep
 | 
			
		||||
// them here for backwards compatibility.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	DLT_HHDLC                         = 0x79
 | 
			
		||||
	IFF_SMART                         = 0x20
 | 
			
		||||
	IFT_1822                          = 0x2
 | 
			
		||||
	IFT_A12MPPSWITCH                  = 0x82
 | 
			
		||||
	IFT_AAL2                          = 0xbb
 | 
			
		||||
	IFT_AAL5                          = 0x31
 | 
			
		||||
	IFT_ADSL                          = 0x5e
 | 
			
		||||
	IFT_AFLANE8023                    = 0x3b
 | 
			
		||||
	IFT_AFLANE8025                    = 0x3c
 | 
			
		||||
	IFT_ARAP                          = 0x58
 | 
			
		||||
	IFT_ARCNET                        = 0x23
 | 
			
		||||
	IFT_ARCNETPLUS                    = 0x24
 | 
			
		||||
	IFT_ASYNC                         = 0x54
 | 
			
		||||
	IFT_ATM                           = 0x25
 | 
			
		||||
	IFT_ATMDXI                        = 0x69
 | 
			
		||||
	IFT_ATMFUNI                       = 0x6a
 | 
			
		||||
	IFT_ATMIMA                        = 0x6b
 | 
			
		||||
	IFT_ATMLOGICAL                    = 0x50
 | 
			
		||||
	IFT_ATMRADIO                      = 0xbd
 | 
			
		||||
	IFT_ATMSUBINTERFACE               = 0x86
 | 
			
		||||
	IFT_ATMVCIENDPT                   = 0xc2
 | 
			
		||||
	IFT_ATMVIRTUAL                    = 0x95
 | 
			
		||||
	IFT_BGPPOLICYACCOUNTING           = 0xa2
 | 
			
		||||
	IFT_BSC                           = 0x53
 | 
			
		||||
	IFT_CCTEMUL                       = 0x3d
 | 
			
		||||
	IFT_CEPT                          = 0x13
 | 
			
		||||
	IFT_CES                           = 0x85
 | 
			
		||||
	IFT_CHANNEL                       = 0x46
 | 
			
		||||
	IFT_CNR                           = 0x55
 | 
			
		||||
	IFT_COFFEE                        = 0x84
 | 
			
		||||
	IFT_COMPOSITELINK                 = 0x9b
 | 
			
		||||
	IFT_DCN                           = 0x8d
 | 
			
		||||
	IFT_DIGITALPOWERLINE              = 0x8a
 | 
			
		||||
	IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
 | 
			
		||||
	IFT_DLSW                          = 0x4a
 | 
			
		||||
	IFT_DOCSCABLEDOWNSTREAM           = 0x80
 | 
			
		||||
	IFT_DOCSCABLEMACLAYER             = 0x7f
 | 
			
		||||
	IFT_DOCSCABLEUPSTREAM             = 0x81
 | 
			
		||||
	IFT_DS0                           = 0x51
 | 
			
		||||
	IFT_DS0BUNDLE                     = 0x52
 | 
			
		||||
	IFT_DS1FDL                        = 0xaa
 | 
			
		||||
	IFT_DS3                           = 0x1e
 | 
			
		||||
	IFT_DTM                           = 0x8c
 | 
			
		||||
	IFT_DVBASILN                      = 0xac
 | 
			
		||||
	IFT_DVBASIOUT                     = 0xad
 | 
			
		||||
	IFT_DVBRCCDOWNSTREAM              = 0x93
 | 
			
		||||
	IFT_DVBRCCMACLAYER                = 0x92
 | 
			
		||||
	IFT_DVBRCCUPSTREAM                = 0x94
 | 
			
		||||
	IFT_ENC                           = 0xf4
 | 
			
		||||
	IFT_EON                           = 0x19
 | 
			
		||||
	IFT_EPLRS                         = 0x57
 | 
			
		||||
	IFT_ESCON                         = 0x49
 | 
			
		||||
	IFT_ETHER                         = 0x6
 | 
			
		||||
	IFT_FAITH                         = 0xf2
 | 
			
		||||
	IFT_FAST                          = 0x7d
 | 
			
		||||
	IFT_FASTETHER                     = 0x3e
 | 
			
		||||
	IFT_FASTETHERFX                   = 0x45
 | 
			
		||||
	IFT_FDDI                          = 0xf
 | 
			
		||||
	IFT_FIBRECHANNEL                  = 0x38
 | 
			
		||||
	IFT_FRAMERELAYINTERCONNECT        = 0x3a
 | 
			
		||||
	IFT_FRAMERELAYMPI                 = 0x5c
 | 
			
		||||
	IFT_FRDLCIENDPT                   = 0xc1
 | 
			
		||||
	IFT_FRELAY                        = 0x20
 | 
			
		||||
	IFT_FRELAYDCE                     = 0x2c
 | 
			
		||||
	IFT_FRF16MFRBUNDLE                = 0xa3
 | 
			
		||||
	IFT_FRFORWARD                     = 0x9e
 | 
			
		||||
	IFT_G703AT2MB                     = 0x43
 | 
			
		||||
	IFT_G703AT64K                     = 0x42
 | 
			
		||||
	IFT_GIF                           = 0xf0
 | 
			
		||||
	IFT_GIGABITETHERNET               = 0x75
 | 
			
		||||
	IFT_GR303IDT                      = 0xb2
 | 
			
		||||
	IFT_GR303RDT                      = 0xb1
 | 
			
		||||
	IFT_H323GATEKEEPER                = 0xa4
 | 
			
		||||
	IFT_H323PROXY                     = 0xa5
 | 
			
		||||
	IFT_HDH1822                       = 0x3
 | 
			
		||||
	IFT_HDLC                          = 0x76
 | 
			
		||||
	IFT_HDSL2                         = 0xa8
 | 
			
		||||
	IFT_HIPERLAN2                     = 0xb7
 | 
			
		||||
	IFT_HIPPI                         = 0x2f
 | 
			
		||||
	IFT_HIPPIINTERFACE                = 0x39
 | 
			
		||||
	IFT_HOSTPAD                       = 0x5a
 | 
			
		||||
	IFT_HSSI                          = 0x2e
 | 
			
		||||
	IFT_HY                            = 0xe
 | 
			
		||||
	IFT_IBM370PARCHAN                 = 0x48
 | 
			
		||||
	IFT_IDSL                          = 0x9a
 | 
			
		||||
	IFT_IEEE80211                     = 0x47
 | 
			
		||||
	IFT_IEEE80212                     = 0x37
 | 
			
		||||
	IFT_IEEE8023ADLAG                 = 0xa1
 | 
			
		||||
	IFT_IFGSN                         = 0x91
 | 
			
		||||
	IFT_IMT                           = 0xbe
 | 
			
		||||
	IFT_INTERLEAVE                    = 0x7c
 | 
			
		||||
	IFT_IP                            = 0x7e
 | 
			
		||||
	IFT_IPFORWARD                     = 0x8e
 | 
			
		||||
	IFT_IPOVERATM                     = 0x72
 | 
			
		||||
	IFT_IPOVERCDLC                    = 0x6d
 | 
			
		||||
	IFT_IPOVERCLAW                    = 0x6e
 | 
			
		||||
	IFT_IPSWITCH                      = 0x4e
 | 
			
		||||
	IFT_IPXIP                         = 0xf9
 | 
			
		||||
	IFT_ISDN                          = 0x3f
 | 
			
		||||
	IFT_ISDNBASIC                     = 0x14
 | 
			
		||||
	IFT_ISDNPRIMARY                   = 0x15
 | 
			
		||||
	IFT_ISDNS                         = 0x4b
 | 
			
		||||
	IFT_ISDNU                         = 0x4c
 | 
			
		||||
	IFT_ISO88022LLC                   = 0x29
 | 
			
		||||
	IFT_ISO88023                      = 0x7
 | 
			
		||||
	IFT_ISO88024                      = 0x8
 | 
			
		||||
	IFT_ISO88025                      = 0x9
 | 
			
		||||
	IFT_ISO88025CRFPINT               = 0x62
 | 
			
		||||
	IFT_ISO88025DTR                   = 0x56
 | 
			
		||||
	IFT_ISO88025FIBER                 = 0x73
 | 
			
		||||
	IFT_ISO88026                      = 0xa
 | 
			
		||||
	IFT_ISUP                          = 0xb3
 | 
			
		||||
	IFT_L3IPXVLAN                     = 0x89
 | 
			
		||||
	IFT_LAPB                          = 0x10
 | 
			
		||||
	IFT_LAPD                          = 0x4d
 | 
			
		||||
	IFT_LAPF                          = 0x77
 | 
			
		||||
	IFT_LOCALTALK                     = 0x2a
 | 
			
		||||
	IFT_LOOP                          = 0x18
 | 
			
		||||
	IFT_MEDIAMAILOVERIP               = 0x8b
 | 
			
		||||
	IFT_MFSIGLINK                     = 0xa7
 | 
			
		||||
	IFT_MIOX25                        = 0x26
 | 
			
		||||
	IFT_MODEM                         = 0x30
 | 
			
		||||
	IFT_MPC                           = 0x71
 | 
			
		||||
	IFT_MPLS                          = 0xa6
 | 
			
		||||
	IFT_MPLSTUNNEL                    = 0x96
 | 
			
		||||
	IFT_MSDSL                         = 0x8f
 | 
			
		||||
	IFT_MVL                           = 0xbf
 | 
			
		||||
	IFT_MYRINET                       = 0x63
 | 
			
		||||
	IFT_NFAS                          = 0xaf
 | 
			
		||||
	IFT_NSIP                          = 0x1b
 | 
			
		||||
	IFT_OPTICALCHANNEL                = 0xc3
 | 
			
		||||
	IFT_OPTICALTRANSPORT              = 0xc4
 | 
			
		||||
	IFT_OTHER                         = 0x1
 | 
			
		||||
	IFT_P10                           = 0xc
 | 
			
		||||
	IFT_P80                           = 0xd
 | 
			
		||||
	IFT_PARA                          = 0x22
 | 
			
		||||
	IFT_PFLOG                         = 0xf6
 | 
			
		||||
	IFT_PFSYNC                        = 0xf7
 | 
			
		||||
	IFT_PLC                           = 0xae
 | 
			
		||||
	IFT_POS                           = 0xab
 | 
			
		||||
	IFT_PPPMULTILINKBUNDLE            = 0x6c
 | 
			
		||||
	IFT_PROPBWAP2MP                   = 0xb8
 | 
			
		||||
	IFT_PROPCNLS                      = 0x59
 | 
			
		||||
	IFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5
 | 
			
		||||
	IFT_PROPDOCSWIRELESSMACLAYER      = 0xb4
 | 
			
		||||
	IFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6
 | 
			
		||||
	IFT_PROPMUX                       = 0x36
 | 
			
		||||
	IFT_PROPWIRELESSP2P               = 0x9d
 | 
			
		||||
	IFT_PTPSERIAL                     = 0x16
 | 
			
		||||
	IFT_PVC                           = 0xf1
 | 
			
		||||
	IFT_QLLC                          = 0x44
 | 
			
		||||
	IFT_RADIOMAC                      = 0xbc
 | 
			
		||||
	IFT_RADSL                         = 0x5f
 | 
			
		||||
	IFT_REACHDSL                      = 0xc0
 | 
			
		||||
	IFT_RFC1483                       = 0x9f
 | 
			
		||||
	IFT_RS232                         = 0x21
 | 
			
		||||
	IFT_RSRB                          = 0x4f
 | 
			
		||||
	IFT_SDLC                          = 0x11
 | 
			
		||||
	IFT_SDSL                          = 0x60
 | 
			
		||||
	IFT_SHDSL                         = 0xa9
 | 
			
		||||
	IFT_SIP                           = 0x1f
 | 
			
		||||
	IFT_SLIP                          = 0x1c
 | 
			
		||||
	IFT_SMDSDXI                       = 0x2b
 | 
			
		||||
	IFT_SMDSICIP                      = 0x34
 | 
			
		||||
	IFT_SONET                         = 0x27
 | 
			
		||||
	IFT_SONETOVERHEADCHANNEL          = 0xb9
 | 
			
		||||
	IFT_SONETPATH                     = 0x32
 | 
			
		||||
	IFT_SONETVT                       = 0x33
 | 
			
		||||
	IFT_SRP                           = 0x97
 | 
			
		||||
	IFT_SS7SIGLINK                    = 0x9c
 | 
			
		||||
	IFT_STACKTOSTACK                  = 0x6f
 | 
			
		||||
	IFT_STARLAN                       = 0xb
 | 
			
		||||
	IFT_STF                           = 0xd7
 | 
			
		||||
	IFT_T1                            = 0x12
 | 
			
		||||
	IFT_TDLC                          = 0x74
 | 
			
		||||
	IFT_TERMPAD                       = 0x5b
 | 
			
		||||
	IFT_TR008                         = 0xb0
 | 
			
		||||
	IFT_TRANSPHDLC                    = 0x7b
 | 
			
		||||
	IFT_TUNNEL                        = 0x83
 | 
			
		||||
	IFT_ULTRA                         = 0x1d
 | 
			
		||||
	IFT_USB                           = 0xa0
 | 
			
		||||
	IFT_V11                           = 0x40
 | 
			
		||||
	IFT_V35                           = 0x2d
 | 
			
		||||
	IFT_V36                           = 0x41
 | 
			
		||||
	IFT_V37                           = 0x78
 | 
			
		||||
	IFT_VDSL                          = 0x61
 | 
			
		||||
	IFT_VIRTUALIPADDRESS              = 0x70
 | 
			
		||||
	IFT_VOICEEM                       = 0x64
 | 
			
		||||
	IFT_VOICEENCAP                    = 0x67
 | 
			
		||||
	IFT_VOICEFXO                      = 0x65
 | 
			
		||||
	IFT_VOICEFXS                      = 0x66
 | 
			
		||||
	IFT_VOICEOVERATM                  = 0x98
 | 
			
		||||
	IFT_VOICEOVERFRAMERELAY           = 0x99
 | 
			
		||||
	IFT_VOICEOVERIP                   = 0x68
 | 
			
		||||
	IFT_X213                          = 0x5d
 | 
			
		||||
	IFT_X25                           = 0x5
 | 
			
		||||
	IFT_X25DDN                        = 0x4
 | 
			
		||||
	IFT_X25HUNTGROUP                  = 0x7a
 | 
			
		||||
	IFT_X25MLP                        = 0x79
 | 
			
		||||
	IFT_X25PLE                        = 0x28
 | 
			
		||||
	IFT_XETHER                        = 0x1a
 | 
			
		||||
	IPPROTO_MAXID                     = 0x34
 | 
			
		||||
	IPV6_FAITH                        = 0x1d
 | 
			
		||||
	IPV6_MIN_MEMBERSHIPS              = 0x1f
 | 
			
		||||
	IP_FAITH                          = 0x16
 | 
			
		||||
	IP_MAX_SOURCE_FILTER              = 0x400
 | 
			
		||||
	IP_MIN_MEMBERSHIPS                = 0x1f
 | 
			
		||||
	MAP_NORESERVE                     = 0x40
 | 
			
		||||
	MAP_RENAME                        = 0x20
 | 
			
		||||
	NET_RT_MAXID                      = 0x6
 | 
			
		||||
	RTF_PRCLONING                     = 0x10000
 | 
			
		||||
	RTM_OLDADD                        = 0x9
 | 
			
		||||
	RTM_OLDDEL                        = 0xa
 | 
			
		||||
	RT_CACHING_CONTEXT                = 0x1
 | 
			
		||||
	RT_NORTREF                        = 0x2
 | 
			
		||||
	SIOCADDRT                         = 0x8030720a
 | 
			
		||||
	SIOCALIFADDR                      = 0x8118691b
 | 
			
		||||
	SIOCDELRT                         = 0x8030720b
 | 
			
		||||
	SIOCDLIFADDR                      = 0x8118691d
 | 
			
		||||
	SIOCGLIFADDR                      = 0xc118691c
 | 
			
		||||
	SIOCGLIFPHYADDR                   = 0xc118694b
 | 
			
		||||
	SIOCSLIFPHYADDR                   = 0x8118694a
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										233
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										233
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,233 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep
 | 
			
		||||
// them here for backwards compatibility.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	DLT_HHDLC                         = 0x79
 | 
			
		||||
	IFF_SMART                         = 0x20
 | 
			
		||||
	IFT_1822                          = 0x2
 | 
			
		||||
	IFT_A12MPPSWITCH                  = 0x82
 | 
			
		||||
	IFT_AAL2                          = 0xbb
 | 
			
		||||
	IFT_AAL5                          = 0x31
 | 
			
		||||
	IFT_ADSL                          = 0x5e
 | 
			
		||||
	IFT_AFLANE8023                    = 0x3b
 | 
			
		||||
	IFT_AFLANE8025                    = 0x3c
 | 
			
		||||
	IFT_ARAP                          = 0x58
 | 
			
		||||
	IFT_ARCNET                        = 0x23
 | 
			
		||||
	IFT_ARCNETPLUS                    = 0x24
 | 
			
		||||
	IFT_ASYNC                         = 0x54
 | 
			
		||||
	IFT_ATM                           = 0x25
 | 
			
		||||
	IFT_ATMDXI                        = 0x69
 | 
			
		||||
	IFT_ATMFUNI                       = 0x6a
 | 
			
		||||
	IFT_ATMIMA                        = 0x6b
 | 
			
		||||
	IFT_ATMLOGICAL                    = 0x50
 | 
			
		||||
	IFT_ATMRADIO                      = 0xbd
 | 
			
		||||
	IFT_ATMSUBINTERFACE               = 0x86
 | 
			
		||||
	IFT_ATMVCIENDPT                   = 0xc2
 | 
			
		||||
	IFT_ATMVIRTUAL                    = 0x95
 | 
			
		||||
	IFT_BGPPOLICYACCOUNTING           = 0xa2
 | 
			
		||||
	IFT_BSC                           = 0x53
 | 
			
		||||
	IFT_CCTEMUL                       = 0x3d
 | 
			
		||||
	IFT_CEPT                          = 0x13
 | 
			
		||||
	IFT_CES                           = 0x85
 | 
			
		||||
	IFT_CHANNEL                       = 0x46
 | 
			
		||||
	IFT_CNR                           = 0x55
 | 
			
		||||
	IFT_COFFEE                        = 0x84
 | 
			
		||||
	IFT_COMPOSITELINK                 = 0x9b
 | 
			
		||||
	IFT_DCN                           = 0x8d
 | 
			
		||||
	IFT_DIGITALPOWERLINE              = 0x8a
 | 
			
		||||
	IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
 | 
			
		||||
	IFT_DLSW                          = 0x4a
 | 
			
		||||
	IFT_DOCSCABLEDOWNSTREAM           = 0x80
 | 
			
		||||
	IFT_DOCSCABLEMACLAYER             = 0x7f
 | 
			
		||||
	IFT_DOCSCABLEUPSTREAM             = 0x81
 | 
			
		||||
	IFT_DS0                           = 0x51
 | 
			
		||||
	IFT_DS0BUNDLE                     = 0x52
 | 
			
		||||
	IFT_DS1FDL                        = 0xaa
 | 
			
		||||
	IFT_DS3                           = 0x1e
 | 
			
		||||
	IFT_DTM                           = 0x8c
 | 
			
		||||
	IFT_DVBASILN                      = 0xac
 | 
			
		||||
	IFT_DVBASIOUT                     = 0xad
 | 
			
		||||
	IFT_DVBRCCDOWNSTREAM              = 0x93
 | 
			
		||||
	IFT_DVBRCCMACLAYER                = 0x92
 | 
			
		||||
	IFT_DVBRCCUPSTREAM                = 0x94
 | 
			
		||||
	IFT_ENC                           = 0xf4
 | 
			
		||||
	IFT_EON                           = 0x19
 | 
			
		||||
	IFT_EPLRS                         = 0x57
 | 
			
		||||
	IFT_ESCON                         = 0x49
 | 
			
		||||
	IFT_ETHER                         = 0x6
 | 
			
		||||
	IFT_FAITH                         = 0xf2
 | 
			
		||||
	IFT_FAST                          = 0x7d
 | 
			
		||||
	IFT_FASTETHER                     = 0x3e
 | 
			
		||||
	IFT_FASTETHERFX                   = 0x45
 | 
			
		||||
	IFT_FDDI                          = 0xf
 | 
			
		||||
	IFT_FIBRECHANNEL                  = 0x38
 | 
			
		||||
	IFT_FRAMERELAYINTERCONNECT        = 0x3a
 | 
			
		||||
	IFT_FRAMERELAYMPI                 = 0x5c
 | 
			
		||||
	IFT_FRDLCIENDPT                   = 0xc1
 | 
			
		||||
	IFT_FRELAY                        = 0x20
 | 
			
		||||
	IFT_FRELAYDCE                     = 0x2c
 | 
			
		||||
	IFT_FRF16MFRBUNDLE                = 0xa3
 | 
			
		||||
	IFT_FRFORWARD                     = 0x9e
 | 
			
		||||
	IFT_G703AT2MB                     = 0x43
 | 
			
		||||
	IFT_G703AT64K                     = 0x42
 | 
			
		||||
	IFT_GIF                           = 0xf0
 | 
			
		||||
	IFT_GIGABITETHERNET               = 0x75
 | 
			
		||||
	IFT_GR303IDT                      = 0xb2
 | 
			
		||||
	IFT_GR303RDT                      = 0xb1
 | 
			
		||||
	IFT_H323GATEKEEPER                = 0xa4
 | 
			
		||||
	IFT_H323PROXY                     = 0xa5
 | 
			
		||||
	IFT_HDH1822                       = 0x3
 | 
			
		||||
	IFT_HDLC                          = 0x76
 | 
			
		||||
	IFT_HDSL2                         = 0xa8
 | 
			
		||||
	IFT_HIPERLAN2                     = 0xb7
 | 
			
		||||
	IFT_HIPPI                         = 0x2f
 | 
			
		||||
	IFT_HIPPIINTERFACE                = 0x39
 | 
			
		||||
	IFT_HOSTPAD                       = 0x5a
 | 
			
		||||
	IFT_HSSI                          = 0x2e
 | 
			
		||||
	IFT_HY                            = 0xe
 | 
			
		||||
	IFT_IBM370PARCHAN                 = 0x48
 | 
			
		||||
	IFT_IDSL                          = 0x9a
 | 
			
		||||
	IFT_IEEE80211                     = 0x47
 | 
			
		||||
	IFT_IEEE80212                     = 0x37
 | 
			
		||||
	IFT_IEEE8023ADLAG                 = 0xa1
 | 
			
		||||
	IFT_IFGSN                         = 0x91
 | 
			
		||||
	IFT_IMT                           = 0xbe
 | 
			
		||||
	IFT_INTERLEAVE                    = 0x7c
 | 
			
		||||
	IFT_IP                            = 0x7e
 | 
			
		||||
	IFT_IPFORWARD                     = 0x8e
 | 
			
		||||
	IFT_IPOVERATM                     = 0x72
 | 
			
		||||
	IFT_IPOVERCDLC                    = 0x6d
 | 
			
		||||
	IFT_IPOVERCLAW                    = 0x6e
 | 
			
		||||
	IFT_IPSWITCH                      = 0x4e
 | 
			
		||||
	IFT_IPXIP                         = 0xf9
 | 
			
		||||
	IFT_ISDN                          = 0x3f
 | 
			
		||||
	IFT_ISDNBASIC                     = 0x14
 | 
			
		||||
	IFT_ISDNPRIMARY                   = 0x15
 | 
			
		||||
	IFT_ISDNS                         = 0x4b
 | 
			
		||||
	IFT_ISDNU                         = 0x4c
 | 
			
		||||
	IFT_ISO88022LLC                   = 0x29
 | 
			
		||||
	IFT_ISO88023                      = 0x7
 | 
			
		||||
	IFT_ISO88024                      = 0x8
 | 
			
		||||
	IFT_ISO88025                      = 0x9
 | 
			
		||||
	IFT_ISO88025CRFPINT               = 0x62
 | 
			
		||||
	IFT_ISO88025DTR                   = 0x56
 | 
			
		||||
	IFT_ISO88025FIBER                 = 0x73
 | 
			
		||||
	IFT_ISO88026                      = 0xa
 | 
			
		||||
	IFT_ISUP                          = 0xb3
 | 
			
		||||
	IFT_L3IPXVLAN                     = 0x89
 | 
			
		||||
	IFT_LAPB                          = 0x10
 | 
			
		||||
	IFT_LAPD                          = 0x4d
 | 
			
		||||
	IFT_LAPF                          = 0x77
 | 
			
		||||
	IFT_LOCALTALK                     = 0x2a
 | 
			
		||||
	IFT_LOOP                          = 0x18
 | 
			
		||||
	IFT_MEDIAMAILOVERIP               = 0x8b
 | 
			
		||||
	IFT_MFSIGLINK                     = 0xa7
 | 
			
		||||
	IFT_MIOX25                        = 0x26
 | 
			
		||||
	IFT_MODEM                         = 0x30
 | 
			
		||||
	IFT_MPC                           = 0x71
 | 
			
		||||
	IFT_MPLS                          = 0xa6
 | 
			
		||||
	IFT_MPLSTUNNEL                    = 0x96
 | 
			
		||||
	IFT_MSDSL                         = 0x8f
 | 
			
		||||
	IFT_MVL                           = 0xbf
 | 
			
		||||
	IFT_MYRINET                       = 0x63
 | 
			
		||||
	IFT_NFAS                          = 0xaf
 | 
			
		||||
	IFT_NSIP                          = 0x1b
 | 
			
		||||
	IFT_OPTICALCHANNEL                = 0xc3
 | 
			
		||||
	IFT_OPTICALTRANSPORT              = 0xc4
 | 
			
		||||
	IFT_OTHER                         = 0x1
 | 
			
		||||
	IFT_P10                           = 0xc
 | 
			
		||||
	IFT_P80                           = 0xd
 | 
			
		||||
	IFT_PARA                          = 0x22
 | 
			
		||||
	IFT_PFLOG                         = 0xf6
 | 
			
		||||
	IFT_PFSYNC                        = 0xf7
 | 
			
		||||
	IFT_PLC                           = 0xae
 | 
			
		||||
	IFT_POS                           = 0xab
 | 
			
		||||
	IFT_PPPMULTILINKBUNDLE            = 0x6c
 | 
			
		||||
	IFT_PROPBWAP2MP                   = 0xb8
 | 
			
		||||
	IFT_PROPCNLS                      = 0x59
 | 
			
		||||
	IFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5
 | 
			
		||||
	IFT_PROPDOCSWIRELESSMACLAYER      = 0xb4
 | 
			
		||||
	IFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6
 | 
			
		||||
	IFT_PROPMUX                       = 0x36
 | 
			
		||||
	IFT_PROPWIRELESSP2P               = 0x9d
 | 
			
		||||
	IFT_PTPSERIAL                     = 0x16
 | 
			
		||||
	IFT_PVC                           = 0xf1
 | 
			
		||||
	IFT_QLLC                          = 0x44
 | 
			
		||||
	IFT_RADIOMAC                      = 0xbc
 | 
			
		||||
	IFT_RADSL                         = 0x5f
 | 
			
		||||
	IFT_REACHDSL                      = 0xc0
 | 
			
		||||
	IFT_RFC1483                       = 0x9f
 | 
			
		||||
	IFT_RS232                         = 0x21
 | 
			
		||||
	IFT_RSRB                          = 0x4f
 | 
			
		||||
	IFT_SDLC                          = 0x11
 | 
			
		||||
	IFT_SDSL                          = 0x60
 | 
			
		||||
	IFT_SHDSL                         = 0xa9
 | 
			
		||||
	IFT_SIP                           = 0x1f
 | 
			
		||||
	IFT_SLIP                          = 0x1c
 | 
			
		||||
	IFT_SMDSDXI                       = 0x2b
 | 
			
		||||
	IFT_SMDSICIP                      = 0x34
 | 
			
		||||
	IFT_SONET                         = 0x27
 | 
			
		||||
	IFT_SONETOVERHEADCHANNEL          = 0xb9
 | 
			
		||||
	IFT_SONETPATH                     = 0x32
 | 
			
		||||
	IFT_SONETVT                       = 0x33
 | 
			
		||||
	IFT_SRP                           = 0x97
 | 
			
		||||
	IFT_SS7SIGLINK                    = 0x9c
 | 
			
		||||
	IFT_STACKTOSTACK                  = 0x6f
 | 
			
		||||
	IFT_STARLAN                       = 0xb
 | 
			
		||||
	IFT_STF                           = 0xd7
 | 
			
		||||
	IFT_T1                            = 0x12
 | 
			
		||||
	IFT_TDLC                          = 0x74
 | 
			
		||||
	IFT_TERMPAD                       = 0x5b
 | 
			
		||||
	IFT_TR008                         = 0xb0
 | 
			
		||||
	IFT_TRANSPHDLC                    = 0x7b
 | 
			
		||||
	IFT_TUNNEL                        = 0x83
 | 
			
		||||
	IFT_ULTRA                         = 0x1d
 | 
			
		||||
	IFT_USB                           = 0xa0
 | 
			
		||||
	IFT_V11                           = 0x40
 | 
			
		||||
	IFT_V35                           = 0x2d
 | 
			
		||||
	IFT_V36                           = 0x41
 | 
			
		||||
	IFT_V37                           = 0x78
 | 
			
		||||
	IFT_VDSL                          = 0x61
 | 
			
		||||
	IFT_VIRTUALIPADDRESS              = 0x70
 | 
			
		||||
	IFT_VOICEEM                       = 0x64
 | 
			
		||||
	IFT_VOICEENCAP                    = 0x67
 | 
			
		||||
	IFT_VOICEFXO                      = 0x65
 | 
			
		||||
	IFT_VOICEFXS                      = 0x66
 | 
			
		||||
	IFT_VOICEOVERATM                  = 0x98
 | 
			
		||||
	IFT_VOICEOVERFRAMERELAY           = 0x99
 | 
			
		||||
	IFT_VOICEOVERIP                   = 0x68
 | 
			
		||||
	IFT_X213                          = 0x5d
 | 
			
		||||
	IFT_X25                           = 0x5
 | 
			
		||||
	IFT_X25DDN                        = 0x4
 | 
			
		||||
	IFT_X25HUNTGROUP                  = 0x7a
 | 
			
		||||
	IFT_X25MLP                        = 0x79
 | 
			
		||||
	IFT_X25PLE                        = 0x28
 | 
			
		||||
	IFT_XETHER                        = 0x1a
 | 
			
		||||
	IPPROTO_MAXID                     = 0x34
 | 
			
		||||
	IPV6_FAITH                        = 0x1d
 | 
			
		||||
	IPV6_MIN_MEMBERSHIPS              = 0x1f
 | 
			
		||||
	IP_FAITH                          = 0x16
 | 
			
		||||
	IP_MAX_SOURCE_FILTER              = 0x400
 | 
			
		||||
	IP_MIN_MEMBERSHIPS                = 0x1f
 | 
			
		||||
	MAP_NORESERVE                     = 0x40
 | 
			
		||||
	MAP_RENAME                        = 0x20
 | 
			
		||||
	NET_RT_MAXID                      = 0x6
 | 
			
		||||
	RTF_PRCLONING                     = 0x10000
 | 
			
		||||
	RTM_OLDADD                        = 0x9
 | 
			
		||||
	RTM_OLDDEL                        = 0xa
 | 
			
		||||
	RT_CACHING_CONTEXT                = 0x1
 | 
			
		||||
	RT_NORTREF                        = 0x2
 | 
			
		||||
	SIOCADDRT                         = 0x8040720a
 | 
			
		||||
	SIOCALIFADDR                      = 0x8118691b
 | 
			
		||||
	SIOCDELRT                         = 0x8040720b
 | 
			
		||||
	SIOCDLIFADDR                      = 0x8118691d
 | 
			
		||||
	SIOCGLIFADDR                      = 0xc118691c
 | 
			
		||||
	SIOCGLIFPHYADDR                   = 0xc118694b
 | 
			
		||||
	SIOCSLIFPHYADDR                   = 0x8118694a
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										226
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										226
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,226 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	IFT_1822                          = 0x2
 | 
			
		||||
	IFT_A12MPPSWITCH                  = 0x82
 | 
			
		||||
	IFT_AAL2                          = 0xbb
 | 
			
		||||
	IFT_AAL5                          = 0x31
 | 
			
		||||
	IFT_ADSL                          = 0x5e
 | 
			
		||||
	IFT_AFLANE8023                    = 0x3b
 | 
			
		||||
	IFT_AFLANE8025                    = 0x3c
 | 
			
		||||
	IFT_ARAP                          = 0x58
 | 
			
		||||
	IFT_ARCNET                        = 0x23
 | 
			
		||||
	IFT_ARCNETPLUS                    = 0x24
 | 
			
		||||
	IFT_ASYNC                         = 0x54
 | 
			
		||||
	IFT_ATM                           = 0x25
 | 
			
		||||
	IFT_ATMDXI                        = 0x69
 | 
			
		||||
	IFT_ATMFUNI                       = 0x6a
 | 
			
		||||
	IFT_ATMIMA                        = 0x6b
 | 
			
		||||
	IFT_ATMLOGICAL                    = 0x50
 | 
			
		||||
	IFT_ATMRADIO                      = 0xbd
 | 
			
		||||
	IFT_ATMSUBINTERFACE               = 0x86
 | 
			
		||||
	IFT_ATMVCIENDPT                   = 0xc2
 | 
			
		||||
	IFT_ATMVIRTUAL                    = 0x95
 | 
			
		||||
	IFT_BGPPOLICYACCOUNTING           = 0xa2
 | 
			
		||||
	IFT_BSC                           = 0x53
 | 
			
		||||
	IFT_CCTEMUL                       = 0x3d
 | 
			
		||||
	IFT_CEPT                          = 0x13
 | 
			
		||||
	IFT_CES                           = 0x85
 | 
			
		||||
	IFT_CHANNEL                       = 0x46
 | 
			
		||||
	IFT_CNR                           = 0x55
 | 
			
		||||
	IFT_COFFEE                        = 0x84
 | 
			
		||||
	IFT_COMPOSITELINK                 = 0x9b
 | 
			
		||||
	IFT_DCN                           = 0x8d
 | 
			
		||||
	IFT_DIGITALPOWERLINE              = 0x8a
 | 
			
		||||
	IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba
 | 
			
		||||
	IFT_DLSW                          = 0x4a
 | 
			
		||||
	IFT_DOCSCABLEDOWNSTREAM           = 0x80
 | 
			
		||||
	IFT_DOCSCABLEMACLAYER             = 0x7f
 | 
			
		||||
	IFT_DOCSCABLEUPSTREAM             = 0x81
 | 
			
		||||
	IFT_DS0                           = 0x51
 | 
			
		||||
	IFT_DS0BUNDLE                     = 0x52
 | 
			
		||||
	IFT_DS1FDL                        = 0xaa
 | 
			
		||||
	IFT_DS3                           = 0x1e
 | 
			
		||||
	IFT_DTM                           = 0x8c
 | 
			
		||||
	IFT_DVBASILN                      = 0xac
 | 
			
		||||
	IFT_DVBASIOUT                     = 0xad
 | 
			
		||||
	IFT_DVBRCCDOWNSTREAM              = 0x93
 | 
			
		||||
	IFT_DVBRCCMACLAYER                = 0x92
 | 
			
		||||
	IFT_DVBRCCUPSTREAM                = 0x94
 | 
			
		||||
	IFT_ENC                           = 0xf4
 | 
			
		||||
	IFT_EON                           = 0x19
 | 
			
		||||
	IFT_EPLRS                         = 0x57
 | 
			
		||||
	IFT_ESCON                         = 0x49
 | 
			
		||||
	IFT_ETHER                         = 0x6
 | 
			
		||||
	IFT_FAST                          = 0x7d
 | 
			
		||||
	IFT_FASTETHER                     = 0x3e
 | 
			
		||||
	IFT_FASTETHERFX                   = 0x45
 | 
			
		||||
	IFT_FDDI                          = 0xf
 | 
			
		||||
	IFT_FIBRECHANNEL                  = 0x38
 | 
			
		||||
	IFT_FRAMERELAYINTERCONNECT        = 0x3a
 | 
			
		||||
	IFT_FRAMERELAYMPI                 = 0x5c
 | 
			
		||||
	IFT_FRDLCIENDPT                   = 0xc1
 | 
			
		||||
	IFT_FRELAY                        = 0x20
 | 
			
		||||
	IFT_FRELAYDCE                     = 0x2c
 | 
			
		||||
	IFT_FRF16MFRBUNDLE                = 0xa3
 | 
			
		||||
	IFT_FRFORWARD                     = 0x9e
 | 
			
		||||
	IFT_G703AT2MB                     = 0x43
 | 
			
		||||
	IFT_G703AT64K                     = 0x42
 | 
			
		||||
	IFT_GIF                           = 0xf0
 | 
			
		||||
	IFT_GIGABITETHERNET               = 0x75
 | 
			
		||||
	IFT_GR303IDT                      = 0xb2
 | 
			
		||||
	IFT_GR303RDT                      = 0xb1
 | 
			
		||||
	IFT_H323GATEKEEPER                = 0xa4
 | 
			
		||||
	IFT_H323PROXY                     = 0xa5
 | 
			
		||||
	IFT_HDH1822                       = 0x3
 | 
			
		||||
	IFT_HDLC                          = 0x76
 | 
			
		||||
	IFT_HDSL2                         = 0xa8
 | 
			
		||||
	IFT_HIPERLAN2                     = 0xb7
 | 
			
		||||
	IFT_HIPPI                         = 0x2f
 | 
			
		||||
	IFT_HIPPIINTERFACE                = 0x39
 | 
			
		||||
	IFT_HOSTPAD                       = 0x5a
 | 
			
		||||
	IFT_HSSI                          = 0x2e
 | 
			
		||||
	IFT_HY                            = 0xe
 | 
			
		||||
	IFT_IBM370PARCHAN                 = 0x48
 | 
			
		||||
	IFT_IDSL                          = 0x9a
 | 
			
		||||
	IFT_IEEE80211                     = 0x47
 | 
			
		||||
	IFT_IEEE80212                     = 0x37
 | 
			
		||||
	IFT_IEEE8023ADLAG                 = 0xa1
 | 
			
		||||
	IFT_IFGSN                         = 0x91
 | 
			
		||||
	IFT_IMT                           = 0xbe
 | 
			
		||||
	IFT_INTERLEAVE                    = 0x7c
 | 
			
		||||
	IFT_IP                            = 0x7e
 | 
			
		||||
	IFT_IPFORWARD                     = 0x8e
 | 
			
		||||
	IFT_IPOVERATM                     = 0x72
 | 
			
		||||
	IFT_IPOVERCDLC                    = 0x6d
 | 
			
		||||
	IFT_IPOVERCLAW                    = 0x6e
 | 
			
		||||
	IFT_IPSWITCH                      = 0x4e
 | 
			
		||||
	IFT_ISDN                          = 0x3f
 | 
			
		||||
	IFT_ISDNBASIC                     = 0x14
 | 
			
		||||
	IFT_ISDNPRIMARY                   = 0x15
 | 
			
		||||
	IFT_ISDNS                         = 0x4b
 | 
			
		||||
	IFT_ISDNU                         = 0x4c
 | 
			
		||||
	IFT_ISO88022LLC                   = 0x29
 | 
			
		||||
	IFT_ISO88023                      = 0x7
 | 
			
		||||
	IFT_ISO88024                      = 0x8
 | 
			
		||||
	IFT_ISO88025                      = 0x9
 | 
			
		||||
	IFT_ISO88025CRFPINT               = 0x62
 | 
			
		||||
	IFT_ISO88025DTR                   = 0x56
 | 
			
		||||
	IFT_ISO88025FIBER                 = 0x73
 | 
			
		||||
	IFT_ISO88026                      = 0xa
 | 
			
		||||
	IFT_ISUP                          = 0xb3
 | 
			
		||||
	IFT_L3IPXVLAN                     = 0x89
 | 
			
		||||
	IFT_LAPB                          = 0x10
 | 
			
		||||
	IFT_LAPD                          = 0x4d
 | 
			
		||||
	IFT_LAPF                          = 0x77
 | 
			
		||||
	IFT_LOCALTALK                     = 0x2a
 | 
			
		||||
	IFT_LOOP                          = 0x18
 | 
			
		||||
	IFT_MEDIAMAILOVERIP               = 0x8b
 | 
			
		||||
	IFT_MFSIGLINK                     = 0xa7
 | 
			
		||||
	IFT_MIOX25                        = 0x26
 | 
			
		||||
	IFT_MODEM                         = 0x30
 | 
			
		||||
	IFT_MPC                           = 0x71
 | 
			
		||||
	IFT_MPLS                          = 0xa6
 | 
			
		||||
	IFT_MPLSTUNNEL                    = 0x96
 | 
			
		||||
	IFT_MSDSL                         = 0x8f
 | 
			
		||||
	IFT_MVL                           = 0xbf
 | 
			
		||||
	IFT_MYRINET                       = 0x63
 | 
			
		||||
	IFT_NFAS                          = 0xaf
 | 
			
		||||
	IFT_NSIP                          = 0x1b
 | 
			
		||||
	IFT_OPTICALCHANNEL                = 0xc3
 | 
			
		||||
	IFT_OPTICALTRANSPORT              = 0xc4
 | 
			
		||||
	IFT_OTHER                         = 0x1
 | 
			
		||||
	IFT_P10                           = 0xc
 | 
			
		||||
	IFT_P80                           = 0xd
 | 
			
		||||
	IFT_PARA                          = 0x22
 | 
			
		||||
	IFT_PFLOG                         = 0xf6
 | 
			
		||||
	IFT_PFSYNC                        = 0xf7
 | 
			
		||||
	IFT_PLC                           = 0xae
 | 
			
		||||
	IFT_POS                           = 0xab
 | 
			
		||||
	IFT_PPPMULTILINKBUNDLE            = 0x6c
 | 
			
		||||
	IFT_PROPBWAP2MP                   = 0xb8
 | 
			
		||||
	IFT_PROPCNLS                      = 0x59
 | 
			
		||||
	IFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5
 | 
			
		||||
	IFT_PROPDOCSWIRELESSMACLAYER      = 0xb4
 | 
			
		||||
	IFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6
 | 
			
		||||
	IFT_PROPMUX                       = 0x36
 | 
			
		||||
	IFT_PROPWIRELESSP2P               = 0x9d
 | 
			
		||||
	IFT_PTPSERIAL                     = 0x16
 | 
			
		||||
	IFT_PVC                           = 0xf1
 | 
			
		||||
	IFT_QLLC                          = 0x44
 | 
			
		||||
	IFT_RADIOMAC                      = 0xbc
 | 
			
		||||
	IFT_RADSL                         = 0x5f
 | 
			
		||||
	IFT_REACHDSL                      = 0xc0
 | 
			
		||||
	IFT_RFC1483                       = 0x9f
 | 
			
		||||
	IFT_RS232                         = 0x21
 | 
			
		||||
	IFT_RSRB                          = 0x4f
 | 
			
		||||
	IFT_SDLC                          = 0x11
 | 
			
		||||
	IFT_SDSL                          = 0x60
 | 
			
		||||
	IFT_SHDSL                         = 0xa9
 | 
			
		||||
	IFT_SIP                           = 0x1f
 | 
			
		||||
	IFT_SLIP                          = 0x1c
 | 
			
		||||
	IFT_SMDSDXI                       = 0x2b
 | 
			
		||||
	IFT_SMDSICIP                      = 0x34
 | 
			
		||||
	IFT_SONET                         = 0x27
 | 
			
		||||
	IFT_SONETOVERHEADCHANNEL          = 0xb9
 | 
			
		||||
	IFT_SONETPATH                     = 0x32
 | 
			
		||||
	IFT_SONETVT                       = 0x33
 | 
			
		||||
	IFT_SRP                           = 0x97
 | 
			
		||||
	IFT_SS7SIGLINK                    = 0x9c
 | 
			
		||||
	IFT_STACKTOSTACK                  = 0x6f
 | 
			
		||||
	IFT_STARLAN                       = 0xb
 | 
			
		||||
	IFT_STF                           = 0xd7
 | 
			
		||||
	IFT_T1                            = 0x12
 | 
			
		||||
	IFT_TDLC                          = 0x74
 | 
			
		||||
	IFT_TERMPAD                       = 0x5b
 | 
			
		||||
	IFT_TR008                         = 0xb0
 | 
			
		||||
	IFT_TRANSPHDLC                    = 0x7b
 | 
			
		||||
	IFT_TUNNEL                        = 0x83
 | 
			
		||||
	IFT_ULTRA                         = 0x1d
 | 
			
		||||
	IFT_USB                           = 0xa0
 | 
			
		||||
	IFT_V11                           = 0x40
 | 
			
		||||
	IFT_V35                           = 0x2d
 | 
			
		||||
	IFT_V36                           = 0x41
 | 
			
		||||
	IFT_V37                           = 0x78
 | 
			
		||||
	IFT_VDSL                          = 0x61
 | 
			
		||||
	IFT_VIRTUALIPADDRESS              = 0x70
 | 
			
		||||
	IFT_VOICEEM                       = 0x64
 | 
			
		||||
	IFT_VOICEENCAP                    = 0x67
 | 
			
		||||
	IFT_VOICEFXO                      = 0x65
 | 
			
		||||
	IFT_VOICEFXS                      = 0x66
 | 
			
		||||
	IFT_VOICEOVERATM                  = 0x98
 | 
			
		||||
	IFT_VOICEOVERFRAMERELAY           = 0x99
 | 
			
		||||
	IFT_VOICEOVERIP                   = 0x68
 | 
			
		||||
	IFT_X213                          = 0x5d
 | 
			
		||||
	IFT_X25                           = 0x5
 | 
			
		||||
	IFT_X25DDN                        = 0x4
 | 
			
		||||
	IFT_X25HUNTGROUP                  = 0x7a
 | 
			
		||||
	IFT_X25MLP                        = 0x79
 | 
			
		||||
	IFT_X25PLE                        = 0x28
 | 
			
		||||
	IFT_XETHER                        = 0x1a
 | 
			
		||||
 | 
			
		||||
	// missing constants on FreeBSD-11.1-RELEASE, copied from old values in ztypes_freebsd_arm.go
 | 
			
		||||
	IFF_SMART       = 0x20
 | 
			
		||||
	IFT_FAITH       = 0xf2
 | 
			
		||||
	IFT_IPXIP       = 0xf9
 | 
			
		||||
	IPPROTO_MAXID   = 0x34
 | 
			
		||||
	IPV6_FAITH      = 0x1d
 | 
			
		||||
	IP_FAITH        = 0x16
 | 
			
		||||
	MAP_NORESERVE   = 0x40
 | 
			
		||||
	MAP_RENAME      = 0x20
 | 
			
		||||
	NET_RT_MAXID    = 0x6
 | 
			
		||||
	RTF_PRCLONING   = 0x10000
 | 
			
		||||
	RTM_OLDADD      = 0x9
 | 
			
		||||
	RTM_OLDDEL      = 0xa
 | 
			
		||||
	SIOCADDRT       = 0x8030720a
 | 
			
		||||
	SIOCALIFADDR    = 0x8118691b
 | 
			
		||||
	SIOCDELRT       = 0x8030720b
 | 
			
		||||
	SIOCDLIFADDR    = 0x8118691d
 | 
			
		||||
	SIOCGLIFADDR    = 0xc118691c
 | 
			
		||||
	SIOCGLIFPHYADDR = 0xc118694b
 | 
			
		||||
	SIOCSLIFPHYADDR = 0x8118694a
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										17
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,17 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep
 | 
			
		||||
// them here for backwards compatibility.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	DLT_HHDLC            = 0x79
 | 
			
		||||
	IPV6_MIN_MEMBERSHIPS = 0x1f
 | 
			
		||||
	IP_MAX_SOURCE_FILTER = 0x400
 | 
			
		||||
	IP_MIN_MEMBERSHIPS   = 0x1f
 | 
			
		||||
	RT_CACHING_CONTEXT   = 0x1
 | 
			
		||||
	RT_NORTREF           = 0x2
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										37
									
								
								vendor/golang.org/x/sys/unix/fcntl.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										37
									
								
								vendor/golang.org/x/sys/unix/fcntl.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,37 +0,0 @@
 | 
			
		||||
// Copyright 2014 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build dragonfly || freebsd || linux || netbsd || openbsd
 | 
			
		||||
// +build dragonfly freebsd linux netbsd openbsd
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
// fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux
 | 
			
		||||
// systems by fcntl_linux_32bit.go to be SYS_FCNTL64.
 | 
			
		||||
var fcntl64Syscall uintptr = SYS_FCNTL
 | 
			
		||||
 | 
			
		||||
func fcntl(fd int, cmd, arg int) (int, error) {
 | 
			
		||||
	valptr, _, errno := Syscall(fcntl64Syscall, uintptr(fd), uintptr(cmd), uintptr(arg))
 | 
			
		||||
	var err error
 | 
			
		||||
	if errno != 0 {
 | 
			
		||||
		err = errno
 | 
			
		||||
	}
 | 
			
		||||
	return int(valptr), err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FcntlInt performs a fcntl syscall on fd with the provided command and argument.
 | 
			
		||||
func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
 | 
			
		||||
	return fcntl(int(fd), cmd, arg)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
 | 
			
		||||
func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
 | 
			
		||||
	_, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
 | 
			
		||||
	if errno == 0 {
 | 
			
		||||
		return nil
 | 
			
		||||
	}
 | 
			
		||||
	return errno
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/fcntl_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/fcntl_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,24 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
// FcntlInt performs a fcntl syscall on fd with the provided command and argument.
 | 
			
		||||
func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
 | 
			
		||||
	return fcntl(int(fd), cmd, arg)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
 | 
			
		||||
func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
 | 
			
		||||
	_, err := fcntl(int(fd), cmd, int(uintptr(unsafe.Pointer(lk))))
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FcntlFstore performs a fcntl syscall for the F_PREALLOCATE command.
 | 
			
		||||
func FcntlFstore(fd uintptr, cmd int, fstore *Fstore_t) error {
 | 
			
		||||
	_, err := fcntl(int(fd), cmd, int(uintptr(unsafe.Pointer(fstore))))
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,14 +0,0 @@
 | 
			
		||||
// Copyright 2014 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle) || (linux && ppc)
 | 
			
		||||
// +build linux,386 linux,arm linux,mips linux,mipsle linux,ppc
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	// On 32-bit Linux systems, the fcntl syscall that matches Go's
 | 
			
		||||
	// Flock_t type is SYS_FCNTL64, not SYS_FCNTL.
 | 
			
		||||
	fcntl64Syscall = SYS_FCNTL64
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								vendor/golang.org/x/sys/unix/fdset.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								vendor/golang.org/x/sys/unix/fdset.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Set adds fd to the set fds.
 | 
			
		||||
func (fds *FdSet) Set(fd int) {
 | 
			
		||||
	fds.Bits[fd/NFDBITS] |= (1 << (uintptr(fd) % NFDBITS))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Clear removes fd from the set fds.
 | 
			
		||||
func (fds *FdSet) Clear(fd int) {
 | 
			
		||||
	fds.Bits[fd/NFDBITS] &^= (1 << (uintptr(fd) % NFDBITS))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsSet returns whether fd is in the set fds.
 | 
			
		||||
func (fds *FdSet) IsSet(fd int) bool {
 | 
			
		||||
	return fds.Bits[fd/NFDBITS]&(1<<(uintptr(fd)%NFDBITS)) != 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Zero clears the set fds.
 | 
			
		||||
func (fds *FdSet) Zero() {
 | 
			
		||||
	for i := range fds.Bits {
 | 
			
		||||
		fds.Bits[i] = 0
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										164
									
								
								vendor/golang.org/x/sys/unix/fstatfs_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										164
									
								
								vendor/golang.org/x/sys/unix/fstatfs_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,164 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build zos && s390x
 | 
			
		||||
// +build zos,s390x
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// This file simulates fstatfs on z/OS using fstatvfs and w_getmntent.
 | 
			
		||||
 | 
			
		||||
func Fstatfs(fd int, stat *Statfs_t) (err error) {
 | 
			
		||||
	var stat_v Statvfs_t
 | 
			
		||||
	err = Fstatvfs(fd, &stat_v)
 | 
			
		||||
	if err == nil {
 | 
			
		||||
		// populate stat
 | 
			
		||||
		stat.Type = 0
 | 
			
		||||
		stat.Bsize = stat_v.Bsize
 | 
			
		||||
		stat.Blocks = stat_v.Blocks
 | 
			
		||||
		stat.Bfree = stat_v.Bfree
 | 
			
		||||
		stat.Bavail = stat_v.Bavail
 | 
			
		||||
		stat.Files = stat_v.Files
 | 
			
		||||
		stat.Ffree = stat_v.Ffree
 | 
			
		||||
		stat.Fsid = stat_v.Fsid
 | 
			
		||||
		stat.Namelen = stat_v.Namemax
 | 
			
		||||
		stat.Frsize = stat_v.Frsize
 | 
			
		||||
		stat.Flags = stat_v.Flag
 | 
			
		||||
		for passn := 0; passn < 5; passn++ {
 | 
			
		||||
			switch passn {
 | 
			
		||||
			case 0:
 | 
			
		||||
				err = tryGetmntent64(stat)
 | 
			
		||||
				break
 | 
			
		||||
			case 1:
 | 
			
		||||
				err = tryGetmntent128(stat)
 | 
			
		||||
				break
 | 
			
		||||
			case 2:
 | 
			
		||||
				err = tryGetmntent256(stat)
 | 
			
		||||
				break
 | 
			
		||||
			case 3:
 | 
			
		||||
				err = tryGetmntent512(stat)
 | 
			
		||||
				break
 | 
			
		||||
			case 4:
 | 
			
		||||
				err = tryGetmntent1024(stat)
 | 
			
		||||
				break
 | 
			
		||||
			default:
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
			//proceed to return if: err is nil (found), err is nonnil but not ERANGE (another error occurred)
 | 
			
		||||
			if err == nil || err != nil && err != ERANGE {
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func tryGetmntent64(stat *Statfs_t) (err error) {
 | 
			
		||||
	var mnt_ent_buffer struct {
 | 
			
		||||
		header       W_Mnth
 | 
			
		||||
		filesys_info [64]W_Mntent
 | 
			
		||||
	}
 | 
			
		||||
	var buffer_size int = int(unsafe.Sizeof(mnt_ent_buffer))
 | 
			
		||||
	fs_count, err := W_Getmntent((*byte)(unsafe.Pointer(&mnt_ent_buffer)), buffer_size)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	err = ERANGE //return ERANGE if no match is found in this batch
 | 
			
		||||
	for i := 0; i < fs_count; i++ {
 | 
			
		||||
		if stat.Fsid == uint64(mnt_ent_buffer.filesys_info[i].Dev) {
 | 
			
		||||
			stat.Type = uint32(mnt_ent_buffer.filesys_info[i].Fstname[0])
 | 
			
		||||
			err = nil
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func tryGetmntent128(stat *Statfs_t) (err error) {
 | 
			
		||||
	var mnt_ent_buffer struct {
 | 
			
		||||
		header       W_Mnth
 | 
			
		||||
		filesys_info [128]W_Mntent
 | 
			
		||||
	}
 | 
			
		||||
	var buffer_size int = int(unsafe.Sizeof(mnt_ent_buffer))
 | 
			
		||||
	fs_count, err := W_Getmntent((*byte)(unsafe.Pointer(&mnt_ent_buffer)), buffer_size)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	err = ERANGE //return ERANGE if no match is found in this batch
 | 
			
		||||
	for i := 0; i < fs_count; i++ {
 | 
			
		||||
		if stat.Fsid == uint64(mnt_ent_buffer.filesys_info[i].Dev) {
 | 
			
		||||
			stat.Type = uint32(mnt_ent_buffer.filesys_info[i].Fstname[0])
 | 
			
		||||
			err = nil
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func tryGetmntent256(stat *Statfs_t) (err error) {
 | 
			
		||||
	var mnt_ent_buffer struct {
 | 
			
		||||
		header       W_Mnth
 | 
			
		||||
		filesys_info [256]W_Mntent
 | 
			
		||||
	}
 | 
			
		||||
	var buffer_size int = int(unsafe.Sizeof(mnt_ent_buffer))
 | 
			
		||||
	fs_count, err := W_Getmntent((*byte)(unsafe.Pointer(&mnt_ent_buffer)), buffer_size)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	err = ERANGE //return ERANGE if no match is found in this batch
 | 
			
		||||
	for i := 0; i < fs_count; i++ {
 | 
			
		||||
		if stat.Fsid == uint64(mnt_ent_buffer.filesys_info[i].Dev) {
 | 
			
		||||
			stat.Type = uint32(mnt_ent_buffer.filesys_info[i].Fstname[0])
 | 
			
		||||
			err = nil
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func tryGetmntent512(stat *Statfs_t) (err error) {
 | 
			
		||||
	var mnt_ent_buffer struct {
 | 
			
		||||
		header       W_Mnth
 | 
			
		||||
		filesys_info [512]W_Mntent
 | 
			
		||||
	}
 | 
			
		||||
	var buffer_size int = int(unsafe.Sizeof(mnt_ent_buffer))
 | 
			
		||||
	fs_count, err := W_Getmntent((*byte)(unsafe.Pointer(&mnt_ent_buffer)), buffer_size)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	err = ERANGE //return ERANGE if no match is found in this batch
 | 
			
		||||
	for i := 0; i < fs_count; i++ {
 | 
			
		||||
		if stat.Fsid == uint64(mnt_ent_buffer.filesys_info[i].Dev) {
 | 
			
		||||
			stat.Type = uint32(mnt_ent_buffer.filesys_info[i].Fstname[0])
 | 
			
		||||
			err = nil
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func tryGetmntent1024(stat *Statfs_t) (err error) {
 | 
			
		||||
	var mnt_ent_buffer struct {
 | 
			
		||||
		header       W_Mnth
 | 
			
		||||
		filesys_info [1024]W_Mntent
 | 
			
		||||
	}
 | 
			
		||||
	var buffer_size int = int(unsafe.Sizeof(mnt_ent_buffer))
 | 
			
		||||
	fs_count, err := W_Getmntent((*byte)(unsafe.Pointer(&mnt_ent_buffer)), buffer_size)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	err = ERANGE //return ERANGE if no match is found in this batch
 | 
			
		||||
	for i := 0; i < fs_count; i++ {
 | 
			
		||||
		if stat.Fsid == uint64(mnt_ent_buffer.filesys_info[i].Dev) {
 | 
			
		||||
			stat.Type = uint32(mnt_ent_buffer.filesys_info[i].Fstname[0])
 | 
			
		||||
			err = nil
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										60
									
								
								vendor/golang.org/x/sys/unix/gccgo.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										60
									
								
								vendor/golang.org/x/sys/unix/gccgo.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,60 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gccgo && !aix
 | 
			
		||||
// +build gccgo,!aix
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "syscall"
 | 
			
		||||
 | 
			
		||||
// We can't use the gc-syntax .s files for gccgo. On the plus side
 | 
			
		||||
// much of the functionality can be written directly in Go.
 | 
			
		||||
 | 
			
		||||
func realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r uintptr)
 | 
			
		||||
 | 
			
		||||
func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, errno uintptr)
 | 
			
		||||
 | 
			
		||||
func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {
 | 
			
		||||
	syscall.Entersyscall()
 | 
			
		||||
	r := realSyscallNoError(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)
 | 
			
		||||
	syscall.Exitsyscall()
 | 
			
		||||
	return r, 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {
 | 
			
		||||
	syscall.Entersyscall()
 | 
			
		||||
	r, errno := realSyscall(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)
 | 
			
		||||
	syscall.Exitsyscall()
 | 
			
		||||
	return r, 0, syscall.Errno(errno)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {
 | 
			
		||||
	syscall.Entersyscall()
 | 
			
		||||
	r, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, 0, 0, 0)
 | 
			
		||||
	syscall.Exitsyscall()
 | 
			
		||||
	return r, 0, syscall.Errno(errno)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) {
 | 
			
		||||
	syscall.Entersyscall()
 | 
			
		||||
	r, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9)
 | 
			
		||||
	syscall.Exitsyscall()
 | 
			
		||||
	return r, 0, syscall.Errno(errno)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {
 | 
			
		||||
	r := realSyscallNoError(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)
 | 
			
		||||
	return r, 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {
 | 
			
		||||
	r, errno := realSyscall(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)
 | 
			
		||||
	return r, 0, syscall.Errno(errno)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {
 | 
			
		||||
	r, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, 0, 0, 0)
 | 
			
		||||
	return r, 0, syscall.Errno(errno)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										45
									
								
								vendor/golang.org/x/sys/unix/gccgo_c.c
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										45
									
								
								vendor/golang.org/x/sys/unix/gccgo_c.c
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,45 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// +build gccgo
 | 
			
		||||
// +build !aix
 | 
			
		||||
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <stdint.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
 | 
			
		||||
#define _STRINGIFY2_(x) #x
 | 
			
		||||
#define _STRINGIFY_(x) _STRINGIFY2_(x)
 | 
			
		||||
#define GOSYM_PREFIX _STRINGIFY_(__USER_LABEL_PREFIX__)
 | 
			
		||||
 | 
			
		||||
// Call syscall from C code because the gccgo support for calling from
 | 
			
		||||
// Go to C does not support varargs functions.
 | 
			
		||||
 | 
			
		||||
struct ret {
 | 
			
		||||
	uintptr_t r;
 | 
			
		||||
	uintptr_t err;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct ret gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
 | 
			
		||||
  __asm__(GOSYM_PREFIX GOPKGPATH ".realSyscall");
 | 
			
		||||
 | 
			
		||||
struct ret
 | 
			
		||||
gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
 | 
			
		||||
{
 | 
			
		||||
	struct ret r;
 | 
			
		||||
 | 
			
		||||
	errno = 0;
 | 
			
		||||
	r.r = syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);
 | 
			
		||||
	r.err = errno;
 | 
			
		||||
	return r;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
uintptr_t gccgoRealSyscallNoError(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
 | 
			
		||||
  __asm__(GOSYM_PREFIX GOPKGPATH ".realSyscallNoError");
 | 
			
		||||
 | 
			
		||||
uintptr_t
 | 
			
		||||
gccgoRealSyscallNoError(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
 | 
			
		||||
{
 | 
			
		||||
	return syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										21
									
								
								vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,21 +0,0 @@
 | 
			
		||||
// Copyright 2015 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gccgo && linux && amd64
 | 
			
		||||
// +build gccgo,linux,amd64
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "syscall"
 | 
			
		||||
 | 
			
		||||
//extern gettimeofday
 | 
			
		||||
func realGettimeofday(*Timeval, *byte) int32
 | 
			
		||||
 | 
			
		||||
func gettimeofday(tv *Timeval) (err syscall.Errno) {
 | 
			
		||||
	r := realGettimeofday(tv, nil)
 | 
			
		||||
	if r < 0 {
 | 
			
		||||
		return syscall.GetErrno()
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										75
									
								
								vendor/golang.org/x/sys/unix/ioctl.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										75
									
								
								vendor/golang.org/x/sys/unix/ioctl.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,75 +0,0 @@
 | 
			
		||||
// Copyright 2018 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// ioctl itself should not be exposed directly, but additional get/set
 | 
			
		||||
// functions for specific types are permissible.
 | 
			
		||||
 | 
			
		||||
// IoctlSetInt performs an ioctl operation which sets an integer value
 | 
			
		||||
// on fd, using the specified request number.
 | 
			
		||||
func IoctlSetInt(fd int, req uint, value int) error {
 | 
			
		||||
	return ioctl(fd, req, uintptr(value))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetPointerInt performs an ioctl operation which sets an
 | 
			
		||||
// integer value on fd, using the specified request number. The ioctl
 | 
			
		||||
// argument is called with a pointer to the integer value, rather than
 | 
			
		||||
// passing the integer value directly.
 | 
			
		||||
func IoctlSetPointerInt(fd int, req uint, value int) error {
 | 
			
		||||
	v := int32(value)
 | 
			
		||||
	return ioctl(fd, req, uintptr(unsafe.Pointer(&v)))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
 | 
			
		||||
//
 | 
			
		||||
// To change fd's window size, the req argument should be TIOCSWINSZ.
 | 
			
		||||
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
 | 
			
		||||
	// TODO: if we get the chance, remove the req parameter and
 | 
			
		||||
	// hardcode TIOCSWINSZ.
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetTermios performs an ioctl on fd with a *Termios.
 | 
			
		||||
//
 | 
			
		||||
// The req value will usually be TCSETA or TIOCSETA.
 | 
			
		||||
func IoctlSetTermios(fd int, req uint, value *Termios) error {
 | 
			
		||||
	// TODO: if we get the chance, remove the req parameter.
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetInt performs an ioctl operation which gets an integer value
 | 
			
		||||
// from fd, using the specified request number.
 | 
			
		||||
//
 | 
			
		||||
// A few ioctl requests use the return value as an output parameter;
 | 
			
		||||
// for those, IoctlRetInt should be used instead of this function.
 | 
			
		||||
func IoctlGetInt(fd int, req uint) (int, error) {
 | 
			
		||||
	var value int
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
 | 
			
		||||
	var value Winsize
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
 | 
			
		||||
	var value Termios
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										196
									
								
								vendor/golang.org/x/sys/unix/ioctl_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										196
									
								
								vendor/golang.org/x/sys/unix/ioctl_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,196 +0,0 @@
 | 
			
		||||
// Copyright 2021 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// IoctlRetInt performs an ioctl operation specified by req on a device
 | 
			
		||||
// associated with opened file descriptor fd, and returns a non-negative
 | 
			
		||||
// integer that is returned by the ioctl syscall.
 | 
			
		||||
func IoctlRetInt(fd int, req uint) (int, error) {
 | 
			
		||||
	ret, _, err := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), 0)
 | 
			
		||||
	if err != 0 {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	return int(ret), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetUint32(fd int, req uint) (uint32, error) {
 | 
			
		||||
	var value uint32
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetRTCTime(fd int) (*RTCTime, error) {
 | 
			
		||||
	var value RTCTime
 | 
			
		||||
	err := ioctl(fd, RTC_RD_TIME, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlSetRTCTime(fd int, value *RTCTime) error {
 | 
			
		||||
	err := ioctl(fd, RTC_SET_TIME, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetRTCWkAlrm(fd int) (*RTCWkAlrm, error) {
 | 
			
		||||
	var value RTCWkAlrm
 | 
			
		||||
	err := ioctl(fd, RTC_WKALM_RD, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlSetRTCWkAlrm(fd int, value *RTCWkAlrm) error {
 | 
			
		||||
	err := ioctl(fd, RTC_WKALM_SET, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ifreqEthtool struct {
 | 
			
		||||
	name [IFNAMSIZ]byte
 | 
			
		||||
	data unsafe.Pointer
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetEthtoolDrvinfo fetches ethtool driver information for the network
 | 
			
		||||
// device specified by ifname.
 | 
			
		||||
func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, error) {
 | 
			
		||||
	// Leave room for terminating NULL byte.
 | 
			
		||||
	if len(ifname) >= IFNAMSIZ {
 | 
			
		||||
		return nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	value := EthtoolDrvinfo{
 | 
			
		||||
		Cmd: ETHTOOL_GDRVINFO,
 | 
			
		||||
	}
 | 
			
		||||
	ifreq := ifreqEthtool{
 | 
			
		||||
		data: unsafe.Pointer(&value),
 | 
			
		||||
	}
 | 
			
		||||
	copy(ifreq.name[:], ifname)
 | 
			
		||||
	err := ioctl(fd, SIOCETHTOOL, uintptr(unsafe.Pointer(&ifreq)))
 | 
			
		||||
	runtime.KeepAlive(ifreq)
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetWatchdogInfo fetches information about a watchdog device from the
 | 
			
		||||
// Linux watchdog API. For more information, see:
 | 
			
		||||
// https://www.kernel.org/doc/html/latest/watchdog/watchdog-api.html.
 | 
			
		||||
func IoctlGetWatchdogInfo(fd int) (*WatchdogInfo, error) {
 | 
			
		||||
	var value WatchdogInfo
 | 
			
		||||
	err := ioctl(fd, WDIOC_GETSUPPORT, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlWatchdogKeepalive issues a keepalive ioctl to a watchdog device. For
 | 
			
		||||
// more information, see:
 | 
			
		||||
// https://www.kernel.org/doc/html/latest/watchdog/watchdog-api.html.
 | 
			
		||||
func IoctlWatchdogKeepalive(fd int) error {
 | 
			
		||||
	return ioctl(fd, WDIOC_KEEPALIVE, 0)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlFileCloneRange performs an FICLONERANGE ioctl operation to clone the
 | 
			
		||||
// range of data conveyed in value to the file associated with the file
 | 
			
		||||
// descriptor destFd. See the ioctl_ficlonerange(2) man page for details.
 | 
			
		||||
func IoctlFileCloneRange(destFd int, value *FileCloneRange) error {
 | 
			
		||||
	err := ioctl(destFd, FICLONERANGE, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlFileClone performs an FICLONE ioctl operation to clone the entire file
 | 
			
		||||
// associated with the file description srcFd to the file associated with the
 | 
			
		||||
// file descriptor destFd. See the ioctl_ficlone(2) man page for details.
 | 
			
		||||
func IoctlFileClone(destFd, srcFd int) error {
 | 
			
		||||
	return ioctl(destFd, FICLONE, uintptr(srcFd))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type FileDedupeRange struct {
 | 
			
		||||
	Src_offset uint64
 | 
			
		||||
	Src_length uint64
 | 
			
		||||
	Reserved1  uint16
 | 
			
		||||
	Reserved2  uint32
 | 
			
		||||
	Info       []FileDedupeRangeInfo
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type FileDedupeRangeInfo struct {
 | 
			
		||||
	Dest_fd       int64
 | 
			
		||||
	Dest_offset   uint64
 | 
			
		||||
	Bytes_deduped uint64
 | 
			
		||||
	Status        int32
 | 
			
		||||
	Reserved      uint32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlFileDedupeRange performs an FIDEDUPERANGE ioctl operation to share the
 | 
			
		||||
// range of data conveyed in value from the file associated with the file
 | 
			
		||||
// descriptor srcFd to the value.Info destinations. See the
 | 
			
		||||
// ioctl_fideduperange(2) man page for details.
 | 
			
		||||
func IoctlFileDedupeRange(srcFd int, value *FileDedupeRange) error {
 | 
			
		||||
	buf := make([]byte, SizeofRawFileDedupeRange+
 | 
			
		||||
		len(value.Info)*SizeofRawFileDedupeRangeInfo)
 | 
			
		||||
	rawrange := (*RawFileDedupeRange)(unsafe.Pointer(&buf[0]))
 | 
			
		||||
	rawrange.Src_offset = value.Src_offset
 | 
			
		||||
	rawrange.Src_length = value.Src_length
 | 
			
		||||
	rawrange.Dest_count = uint16(len(value.Info))
 | 
			
		||||
	rawrange.Reserved1 = value.Reserved1
 | 
			
		||||
	rawrange.Reserved2 = value.Reserved2
 | 
			
		||||
 | 
			
		||||
	for i := range value.Info {
 | 
			
		||||
		rawinfo := (*RawFileDedupeRangeInfo)(unsafe.Pointer(
 | 
			
		||||
			uintptr(unsafe.Pointer(&buf[0])) + uintptr(SizeofRawFileDedupeRange) +
 | 
			
		||||
				uintptr(i*SizeofRawFileDedupeRangeInfo)))
 | 
			
		||||
		rawinfo.Dest_fd = value.Info[i].Dest_fd
 | 
			
		||||
		rawinfo.Dest_offset = value.Info[i].Dest_offset
 | 
			
		||||
		rawinfo.Bytes_deduped = value.Info[i].Bytes_deduped
 | 
			
		||||
		rawinfo.Status = value.Info[i].Status
 | 
			
		||||
		rawinfo.Reserved = value.Info[i].Reserved
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err := ioctl(srcFd, FIDEDUPERANGE, uintptr(unsafe.Pointer(&buf[0])))
 | 
			
		||||
 | 
			
		||||
	// Output
 | 
			
		||||
	for i := range value.Info {
 | 
			
		||||
		rawinfo := (*RawFileDedupeRangeInfo)(unsafe.Pointer(
 | 
			
		||||
			uintptr(unsafe.Pointer(&buf[0])) + uintptr(SizeofRawFileDedupeRange) +
 | 
			
		||||
				uintptr(i*SizeofRawFileDedupeRangeInfo)))
 | 
			
		||||
		value.Info[i].Dest_fd = rawinfo.Dest_fd
 | 
			
		||||
		value.Info[i].Dest_offset = rawinfo.Dest_offset
 | 
			
		||||
		value.Info[i].Bytes_deduped = rawinfo.Bytes_deduped
 | 
			
		||||
		value.Info[i].Status = rawinfo.Status
 | 
			
		||||
		value.Info[i].Reserved = rawinfo.Reserved
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlHIDGetDesc(fd int, value *HIDRawReportDescriptor) error {
 | 
			
		||||
	err := ioctl(fd, HIDIOCGRDESC, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlHIDGetRawInfo(fd int) (*HIDRawDevInfo, error) {
 | 
			
		||||
	var value HIDRawDevInfo
 | 
			
		||||
	err := ioctl(fd, HIDIOCGRAWINFO, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlHIDGetRawName(fd int) (string, error) {
 | 
			
		||||
	var value [_HIDIOCGRAWNAME_LEN]byte
 | 
			
		||||
	err := ioctl(fd, _HIDIOCGRAWNAME, uintptr(unsafe.Pointer(&value[0])))
 | 
			
		||||
	return ByteSliceToString(value[:]), err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlHIDGetRawPhys(fd int) (string, error) {
 | 
			
		||||
	var value [_HIDIOCGRAWPHYS_LEN]byte
 | 
			
		||||
	err := ioctl(fd, _HIDIOCGRAWPHYS, uintptr(unsafe.Pointer(&value[0])))
 | 
			
		||||
	return ByteSliceToString(value[:]), err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlHIDGetRawUniq(fd int) (string, error) {
 | 
			
		||||
	var value [_HIDIOCGRAWUNIQ_LEN]byte
 | 
			
		||||
	err := ioctl(fd, _HIDIOCGRAWUNIQ, uintptr(unsafe.Pointer(&value[0])))
 | 
			
		||||
	return ByteSliceToString(value[:]), err
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										74
									
								
								vendor/golang.org/x/sys/unix/ioctl_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										74
									
								
								vendor/golang.org/x/sys/unix/ioctl_zos.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,74 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build zos && s390x
 | 
			
		||||
// +build zos,s390x
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// ioctl itself should not be exposed directly, but additional get/set
 | 
			
		||||
// functions for specific types are permissible.
 | 
			
		||||
 | 
			
		||||
// IoctlSetInt performs an ioctl operation which sets an integer value
 | 
			
		||||
// on fd, using the specified request number.
 | 
			
		||||
func IoctlSetInt(fd int, req uint, value int) error {
 | 
			
		||||
	return ioctl(fd, req, uintptr(value))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
 | 
			
		||||
//
 | 
			
		||||
// To change fd's window size, the req argument should be TIOCSWINSZ.
 | 
			
		||||
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
 | 
			
		||||
	// TODO: if we get the chance, remove the req parameter and
 | 
			
		||||
	// hardcode TIOCSWINSZ.
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetTermios performs an ioctl on fd with a *Termios.
 | 
			
		||||
//
 | 
			
		||||
// The req value is expected to be TCSETS, TCSETSW, or TCSETSF
 | 
			
		||||
func IoctlSetTermios(fd int, req uint, value *Termios) error {
 | 
			
		||||
	if (req != TCSETS) && (req != TCSETSW) && (req != TCSETSF) {
 | 
			
		||||
		return ENOSYS
 | 
			
		||||
	}
 | 
			
		||||
	err := Tcsetattr(fd, int(req), value)
 | 
			
		||||
	runtime.KeepAlive(value)
 | 
			
		||||
	return err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetInt performs an ioctl operation which gets an integer value
 | 
			
		||||
// from fd, using the specified request number.
 | 
			
		||||
//
 | 
			
		||||
// A few ioctl requests use the return value as an output parameter;
 | 
			
		||||
// for those, IoctlRetInt should be used instead of this function.
 | 
			
		||||
func IoctlGetInt(fd int, req uint) (int, error) {
 | 
			
		||||
	var value int
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
 | 
			
		||||
	var value Winsize
 | 
			
		||||
	err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetTermios performs an ioctl on fd with a *Termios.
 | 
			
		||||
//
 | 
			
		||||
// The req value is expected to be TCGETS
 | 
			
		||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
 | 
			
		||||
	var value Termios
 | 
			
		||||
	if req != TCGETS {
 | 
			
		||||
		return &value, ENOSYS
 | 
			
		||||
	}
 | 
			
		||||
	err := Tcgetattr(fd, &value)
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										231
									
								
								vendor/golang.org/x/sys/unix/mkall.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										231
									
								
								vendor/golang.org/x/sys/unix/mkall.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,231 +0,0 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
# Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
# Use of this source code is governed by a BSD-style
 | 
			
		||||
# license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
# This script runs or (given -n) prints suggested commands to generate files for
 | 
			
		||||
# the Architecture/OS specified by the GOARCH and GOOS environment variables.
 | 
			
		||||
# See README.md for more information about how the build system works.
 | 
			
		||||
 | 
			
		||||
GOOSARCH="${GOOS}_${GOARCH}"
 | 
			
		||||
 | 
			
		||||
# defaults
 | 
			
		||||
mksyscall="go run mksyscall.go"
 | 
			
		||||
mkerrors="./mkerrors.sh"
 | 
			
		||||
zerrors="zerrors_$GOOSARCH.go"
 | 
			
		||||
mksysctl=""
 | 
			
		||||
zsysctl="zsysctl_$GOOSARCH.go"
 | 
			
		||||
mksysnum=
 | 
			
		||||
mktypes=
 | 
			
		||||
mkasm=
 | 
			
		||||
run="sh"
 | 
			
		||||
cmd=""
 | 
			
		||||
 | 
			
		||||
case "$1" in
 | 
			
		||||
-syscalls)
 | 
			
		||||
	for i in zsyscall*go
 | 
			
		||||
	do
 | 
			
		||||
		# Run the command line that appears in the first line
 | 
			
		||||
		# of the generated file to regenerate it.
 | 
			
		||||
		sed 1q $i | sed 's;^// ;;' | sh > _$i && gofmt < _$i > $i
 | 
			
		||||
		rm _$i
 | 
			
		||||
	done
 | 
			
		||||
	exit 0
 | 
			
		||||
	;;
 | 
			
		||||
-n)
 | 
			
		||||
	run="cat"
 | 
			
		||||
	cmd="echo"
 | 
			
		||||
	shift
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
case "$#" in
 | 
			
		||||
0)
 | 
			
		||||
	;;
 | 
			
		||||
*)
 | 
			
		||||
	echo 'usage: mkall.sh [-n]' 1>&2
 | 
			
		||||
	exit 2
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
if [[ "$GOOS" = "linux" ]]; then
 | 
			
		||||
	# Use the Docker-based build system
 | 
			
		||||
	# Files generated through docker (use $cmd so you can Ctl-C the build or run)
 | 
			
		||||
	$cmd docker build --tag generate:$GOOS $GOOS
 | 
			
		||||
	$cmd docker run --interactive --tty --volume $(cd -- "$(dirname -- "$0")" && /bin/pwd):/build generate:$GOOS
 | 
			
		||||
	exit
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
GOOSARCH_in=syscall_$GOOSARCH.go
 | 
			
		||||
case "$GOOSARCH" in
 | 
			
		||||
_* | *_ | _)
 | 
			
		||||
	echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2
 | 
			
		||||
	exit 1
 | 
			
		||||
	;;
 | 
			
		||||
aix_ppc)
 | 
			
		||||
	mkerrors="$mkerrors -maix32"
 | 
			
		||||
	mksyscall="go run mksyscall_aix_ppc.go -aix"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
aix_ppc64)
 | 
			
		||||
	mkerrors="$mkerrors -maix64"
 | 
			
		||||
	mksyscall="go run mksyscall_aix_ppc64.go -aix"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
darwin_amd64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	mkasm="go run mkasm_darwin.go"
 | 
			
		||||
	;;
 | 
			
		||||
darwin_arm64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	mkasm="go run mkasm_darwin.go"
 | 
			
		||||
	;;
 | 
			
		||||
dragonfly_amd64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -dragonfly"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
freebsd_386)
 | 
			
		||||
	mkerrors="$mkerrors -m32"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
freebsd_amd64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
freebsd_arm)
 | 
			
		||||
	mkerrors="$mkerrors"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32 -arm"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'"
 | 
			
		||||
	# Let the type of C char be signed for making the bare syscall
 | 
			
		||||
	# API consistent across platforms.
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
freebsd_arm64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
netbsd_386)
 | 
			
		||||
	mkerrors="$mkerrors -m32"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32 -netbsd"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
netbsd_amd64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -netbsd"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
netbsd_arm)
 | 
			
		||||
	mkerrors="$mkerrors"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32 -netbsd -arm"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	# Let the type of C char be signed for making the bare syscall
 | 
			
		||||
	# API consistent across platforms.
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
netbsd_arm64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -netbsd"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
openbsd_386)
 | 
			
		||||
	mkerrors="$mkerrors -m32"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32 -openbsd"
 | 
			
		||||
	mksysctl="go run mksysctl_openbsd.go"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
openbsd_amd64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -openbsd"
 | 
			
		||||
	mksysctl="go run mksysctl_openbsd.go"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
openbsd_arm)
 | 
			
		||||
	mkerrors="$mkerrors"
 | 
			
		||||
	mksyscall="go run mksyscall.go -l32 -openbsd -arm"
 | 
			
		||||
	mksysctl="go run mksysctl_openbsd.go"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	# Let the type of C char be signed for making the bare syscall
 | 
			
		||||
	# API consistent across platforms.
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
openbsd_arm64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -openbsd"
 | 
			
		||||
	mksysctl="go run mksysctl_openbsd.go"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	# Let the type of C char be signed for making the bare syscall
 | 
			
		||||
	# API consistent across platforms.
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
openbsd_mips64)
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksyscall="go run mksyscall.go -openbsd"
 | 
			
		||||
	mksysctl="go run mksysctl_openbsd.go"
 | 
			
		||||
	mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'"
 | 
			
		||||
	# Let the type of C char be signed for making the bare syscall
 | 
			
		||||
	# API consistent across platforms.
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
 | 
			
		||||
	;;
 | 
			
		||||
solaris_amd64)
 | 
			
		||||
	mksyscall="go run mksyscall_solaris.go"
 | 
			
		||||
	mkerrors="$mkerrors -m64"
 | 
			
		||||
	mksysnum=
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
illumos_amd64)
 | 
			
		||||
        mksyscall="go run mksyscall_solaris.go"
 | 
			
		||||
	mkerrors=
 | 
			
		||||
	mksysnum=
 | 
			
		||||
	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
 | 
			
		||||
	;;
 | 
			
		||||
*)
 | 
			
		||||
	echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
 | 
			
		||||
	exit 1
 | 
			
		||||
	;;
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
(
 | 
			
		||||
	if [ -n "$mkerrors" ]; then echo "$mkerrors |gofmt >$zerrors"; fi
 | 
			
		||||
	case "$GOOS" in
 | 
			
		||||
	*)
 | 
			
		||||
		syscall_goos="syscall_$GOOS.go"
 | 
			
		||||
		case "$GOOS" in
 | 
			
		||||
		darwin | dragonfly | freebsd | netbsd | openbsd)
 | 
			
		||||
			syscall_goos="syscall_bsd.go $syscall_goos"
 | 
			
		||||
			;;
 | 
			
		||||
		esac
 | 
			
		||||
		if [ -n "$mksyscall" ]; then
 | 
			
		||||
			if [ "$GOOSARCH" == "aix_ppc64" ]; then
 | 
			
		||||
				# aix/ppc64 script generates files instead of writing to stdin.
 | 
			
		||||
				echo "$mksyscall -tags $GOOS,$GOARCH $syscall_goos $GOOSARCH_in && gofmt -w zsyscall_$GOOSARCH.go && gofmt -w zsyscall_"$GOOSARCH"_gccgo.go && gofmt -w zsyscall_"$GOOSARCH"_gc.go " ;
 | 
			
		||||
			elif [ "$GOOS" == "darwin" ]; then
 | 
			
		||||
			        # 1.12 and later, syscalls via libSystem
 | 
			
		||||
				echo "$mksyscall -tags $GOOS,$GOARCH,go1.12 $syscall_goos $GOOSARCH_in |gofmt >zsyscall_$GOOSARCH.go";
 | 
			
		||||
				# 1.13 and later, syscalls via libSystem (including syscallPtr)
 | 
			
		||||
				echo "$mksyscall -tags $GOOS,$GOARCH,go1.13 syscall_darwin.1_13.go |gofmt >zsyscall_$GOOSARCH.1_13.go";
 | 
			
		||||
			elif [ "$GOOS" == "illumos" ]; then
 | 
			
		||||
			        # illumos code generation requires a --illumos switch
 | 
			
		||||
			        echo "$mksyscall -illumos -tags illumos,$GOARCH syscall_illumos.go |gofmt > zsyscall_illumos_$GOARCH.go";
 | 
			
		||||
			        # illumos implies solaris, so solaris code generation is also required
 | 
			
		||||
				echo "$mksyscall -tags solaris,$GOARCH syscall_solaris.go syscall_solaris_$GOARCH.go |gofmt >zsyscall_solaris_$GOARCH.go";
 | 
			
		||||
			else
 | 
			
		||||
				echo "$mksyscall -tags $GOOS,$GOARCH $syscall_goos $GOOSARCH_in |gofmt >zsyscall_$GOOSARCH.go";
 | 
			
		||||
			fi
 | 
			
		||||
		fi
 | 
			
		||||
	esac
 | 
			
		||||
	if [ -n "$mksysctl" ]; then echo "$mksysctl |gofmt >$zsysctl"; fi
 | 
			
		||||
	if [ -n "$mksysnum" ]; then echo "$mksysnum |gofmt >zsysnum_$GOOSARCH.go"; fi
 | 
			
		||||
	if [ -n "$mktypes" ]; then echo "$mktypes types_$GOOS.go | go run mkpost.go > ztypes_$GOOSARCH.go"; fi
 | 
			
		||||
	if [ -n "$mkasm" ]; then echo "$mkasm $GOARCH"; fi
 | 
			
		||||
) | $run
 | 
			
		||||
							
								
								
									
										750
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										750
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,750 +0,0 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
# Copyright 2009 The Go Authors. All rights reserved.
 | 
			
		||||
# Use of this source code is governed by a BSD-style
 | 
			
		||||
# license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
# Generate Go code listing errors and other #defined constant
 | 
			
		||||
# values (ENAMETOOLONG etc.), by asking the preprocessor
 | 
			
		||||
# about the definitions.
 | 
			
		||||
 | 
			
		||||
unset LANG
 | 
			
		||||
export LC_ALL=C
 | 
			
		||||
export LC_CTYPE=C
 | 
			
		||||
 | 
			
		||||
if test -z "$GOARCH" -o -z "$GOOS"; then
 | 
			
		||||
	echo 1>&2 "GOARCH or GOOS not defined in environment"
 | 
			
		||||
	exit 1
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Check that we are using the new build system if we should
 | 
			
		||||
if [[ "$GOOS" = "linux" ]] && [[ "$GOLANG_SYS_BUILD" != "docker" ]]; then
 | 
			
		||||
	echo 1>&2 "In the Docker based build system, mkerrors should not be called directly."
 | 
			
		||||
	echo 1>&2 "See README.md"
 | 
			
		||||
	exit 1
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [[ "$GOOS" = "aix" ]]; then
 | 
			
		||||
	CC=${CC:-gcc}
 | 
			
		||||
else
 | 
			
		||||
	CC=${CC:-cc}
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [[ "$GOOS" = "solaris" ]]; then
 | 
			
		||||
	# Assumes GNU versions of utilities in PATH.
 | 
			
		||||
	export PATH=/usr/gnu/bin:$PATH
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
uname=$(uname)
 | 
			
		||||
 | 
			
		||||
includes_AIX='
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/netopt.h>
 | 
			
		||||
#include <netinet/ip_mroute.h>
 | 
			
		||||
#include <sys/protosw.h>
 | 
			
		||||
#include <sys/stropts.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/poll.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/termio.h>
 | 
			
		||||
#include <termios.h>
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
 | 
			
		||||
#define AF_LOCAL AF_UNIX
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_Darwin='
 | 
			
		||||
#define _DARWIN_C_SOURCE
 | 
			
		||||
#define KERNEL
 | 
			
		||||
#define _DARWIN_USE_64_BIT_INODE
 | 
			
		||||
#define __APPLE_USE_RFC_3542
 | 
			
		||||
#include <stdint.h>
 | 
			
		||||
#include <sys/attr.h>
 | 
			
		||||
#include <sys/clonefile.h>
 | 
			
		||||
#include <sys/kern_control.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/event.h>
 | 
			
		||||
#include <sys/ptrace.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/un.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/sys_domain.h>
 | 
			
		||||
#include <sys/sysctl.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/utsname.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <sys/xattr.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <termios.h>
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_DragonFly='
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/event.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/sysctl.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <sys/ioctl.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_clone.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <termios.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <net/ip_mroute/ip_mroute.h>
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_FreeBSD='
 | 
			
		||||
#include <sys/capsicum.h>
 | 
			
		||||
#include <sys/param.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/disk.h>
 | 
			
		||||
#include <sys/event.h>
 | 
			
		||||
#include <sys/sched.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/un.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/sysctl.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <sys/ioctl.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <termios.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/ip_mroute.h>
 | 
			
		||||
#include <sys/extattr.h>
 | 
			
		||||
 | 
			
		||||
#if __FreeBSD__ >= 10
 | 
			
		||||
#define IFT_CARP	0xf8	// IFT_CARP is deprecated in FreeBSD 10
 | 
			
		||||
#undef SIOCAIFADDR
 | 
			
		||||
#define SIOCAIFADDR	_IOW(105, 26, struct oifaliasreq)	// ifaliasreq contains if_data
 | 
			
		||||
#undef SIOCSIFPHYADDR
 | 
			
		||||
#define SIOCSIFPHYADDR	_IOW(105, 70, struct oifaliasreq)	// ifaliasreq contains if_data
 | 
			
		||||
#endif
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_Linux='
 | 
			
		||||
#define _LARGEFILE_SOURCE
 | 
			
		||||
#define _LARGEFILE64_SOURCE
 | 
			
		||||
#ifndef __LP64__
 | 
			
		||||
#define _FILE_OFFSET_BITS 64
 | 
			
		||||
#endif
 | 
			
		||||
#define _GNU_SOURCE
 | 
			
		||||
 | 
			
		||||
// <sys/ioctl.h> is broken on powerpc64, as it fails to include definitions of
 | 
			
		||||
// these structures. We just include them copied from <bits/termios.h>.
 | 
			
		||||
#if defined(__powerpc__)
 | 
			
		||||
struct sgttyb {
 | 
			
		||||
        char    sg_ispeed;
 | 
			
		||||
        char    sg_ospeed;
 | 
			
		||||
        char    sg_erase;
 | 
			
		||||
        char    sg_kill;
 | 
			
		||||
        short   sg_flags;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct tchars {
 | 
			
		||||
        char    t_intrc;
 | 
			
		||||
        char    t_quitc;
 | 
			
		||||
        char    t_startc;
 | 
			
		||||
        char    t_stopc;
 | 
			
		||||
        char    t_eofc;
 | 
			
		||||
        char    t_brkc;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct ltchars {
 | 
			
		||||
        char    t_suspc;
 | 
			
		||||
        char    t_dsuspc;
 | 
			
		||||
        char    t_rprntc;
 | 
			
		||||
        char    t_flushc;
 | 
			
		||||
        char    t_werasc;
 | 
			
		||||
        char    t_lnextc;
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include <bits/sockaddr.h>
 | 
			
		||||
#include <sys/epoll.h>
 | 
			
		||||
#include <sys/eventfd.h>
 | 
			
		||||
#include <sys/inotify.h>
 | 
			
		||||
#include <sys/ioctl.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/prctl.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/time.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/signalfd.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/timerfd.h>
 | 
			
		||||
#include <sys/uio.h>
 | 
			
		||||
#include <sys/xattr.h>
 | 
			
		||||
#include <linux/bpf.h>
 | 
			
		||||
#include <linux/can.h>
 | 
			
		||||
#include <linux/can/error.h>
 | 
			
		||||
#include <linux/can/raw.h>
 | 
			
		||||
#include <linux/capability.h>
 | 
			
		||||
#include <linux/cryptouser.h>
 | 
			
		||||
#include <linux/devlink.h>
 | 
			
		||||
#include <linux/dm-ioctl.h>
 | 
			
		||||
#include <linux/errqueue.h>
 | 
			
		||||
#include <linux/ethtool_netlink.h>
 | 
			
		||||
#include <linux/falloc.h>
 | 
			
		||||
#include <linux/fanotify.h>
 | 
			
		||||
#include <linux/filter.h>
 | 
			
		||||
#include <linux/fs.h>
 | 
			
		||||
#include <linux/fscrypt.h>
 | 
			
		||||
#include <linux/fsverity.h>
 | 
			
		||||
#include <linux/genetlink.h>
 | 
			
		||||
#include <linux/hdreg.h>
 | 
			
		||||
#include <linux/hidraw.h>
 | 
			
		||||
#include <linux/icmp.h>
 | 
			
		||||
#include <linux/icmpv6.h>
 | 
			
		||||
#include <linux/if.h>
 | 
			
		||||
#include <linux/if_addr.h>
 | 
			
		||||
#include <linux/if_alg.h>
 | 
			
		||||
#include <linux/if_arp.h>
 | 
			
		||||
#include <linux/if_ether.h>
 | 
			
		||||
#include <linux/if_ppp.h>
 | 
			
		||||
#include <linux/if_tun.h>
 | 
			
		||||
#include <linux/if_packet.h>
 | 
			
		||||
#include <linux/if_xdp.h>
 | 
			
		||||
#include <linux/input.h>
 | 
			
		||||
#include <linux/kexec.h>
 | 
			
		||||
#include <linux/keyctl.h>
 | 
			
		||||
#include <linux/loop.h>
 | 
			
		||||
#include <linux/lwtunnel.h>
 | 
			
		||||
#include <linux/magic.h>
 | 
			
		||||
#include <linux/memfd.h>
 | 
			
		||||
#include <linux/module.h>
 | 
			
		||||
#include <linux/netfilter/nfnetlink.h>
 | 
			
		||||
#include <linux/netlink.h>
 | 
			
		||||
#include <linux/net_namespace.h>
 | 
			
		||||
#include <linux/nsfs.h>
 | 
			
		||||
#include <linux/perf_event.h>
 | 
			
		||||
#include <linux/pps.h>
 | 
			
		||||
#include <linux/ptrace.h>
 | 
			
		||||
#include <linux/random.h>
 | 
			
		||||
#include <linux/reboot.h>
 | 
			
		||||
#include <linux/rtc.h>
 | 
			
		||||
#include <linux/rtnetlink.h>
 | 
			
		||||
#include <linux/sched.h>
 | 
			
		||||
#include <linux/seccomp.h>
 | 
			
		||||
#include <linux/serial.h>
 | 
			
		||||
#include <linux/sockios.h>
 | 
			
		||||
#include <linux/taskstats.h>
 | 
			
		||||
#include <linux/tipc.h>
 | 
			
		||||
#include <linux/vm_sockets.h>
 | 
			
		||||
#include <linux/wait.h>
 | 
			
		||||
#include <linux/watchdog.h>
 | 
			
		||||
 | 
			
		||||
#include <mtd/ubi-user.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
 | 
			
		||||
#if defined(__sparc__)
 | 
			
		||||
// On sparc{,64}, the kernel defines struct termios2 itself which clashes with the
 | 
			
		||||
// definition in glibc. As only the error constants are needed here, include the
 | 
			
		||||
// generic termibits.h (which is included by termbits.h on sparc).
 | 
			
		||||
#include <asm-generic/termbits.h>
 | 
			
		||||
#else
 | 
			
		||||
#include <asm/termbits.h>
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef MSG_FASTOPEN
 | 
			
		||||
#define MSG_FASTOPEN    0x20000000
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef PTRACE_GETREGS
 | 
			
		||||
#define PTRACE_GETREGS	0xc
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef PTRACE_SETREGS
 | 
			
		||||
#define PTRACE_SETREGS	0xd
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef SOL_NETLINK
 | 
			
		||||
#define SOL_NETLINK	270
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef SOL_BLUETOOTH
 | 
			
		||||
// SPARC includes this in /usr/include/sparc64-linux-gnu/bits/socket.h
 | 
			
		||||
// but it is already in bluetooth_linux.go
 | 
			
		||||
#undef SOL_BLUETOOTH
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Certain constants are missing from the fs/crypto UAPI
 | 
			
		||||
#define FS_KEY_DESC_PREFIX              "fscrypt:"
 | 
			
		||||
#define FS_KEY_DESC_PREFIX_SIZE         8
 | 
			
		||||
#define FS_MAX_KEY_SIZE                 64
 | 
			
		||||
 | 
			
		||||
// The code generator produces -0x1 for (~0), but an unsigned value is necessary
 | 
			
		||||
// for the tipc_subscr timeout __u32 field.
 | 
			
		||||
#undef TIPC_WAIT_FOREVER
 | 
			
		||||
#define TIPC_WAIT_FOREVER 0xffffffff
 | 
			
		||||
 | 
			
		||||
// Copied from linux/l2tp.h
 | 
			
		||||
// Including linux/l2tp.h here causes conflicts between linux/in.h
 | 
			
		||||
// and netinet/in.h included via net/route.h above.
 | 
			
		||||
#define IPPROTO_L2TP		115
 | 
			
		||||
 | 
			
		||||
// Copied from linux/hid.h.
 | 
			
		||||
// Keep in sync with the size of the referenced fields.
 | 
			
		||||
#define _HIDIOCGRAWNAME_LEN	128 // sizeof_field(struct hid_device, name)
 | 
			
		||||
#define _HIDIOCGRAWPHYS_LEN	64  // sizeof_field(struct hid_device, phys)
 | 
			
		||||
#define _HIDIOCGRAWUNIQ_LEN	64  // sizeof_field(struct hid_device, uniq)
 | 
			
		||||
 | 
			
		||||
#define _HIDIOCGRAWNAME		HIDIOCGRAWNAME(_HIDIOCGRAWNAME_LEN)
 | 
			
		||||
#define _HIDIOCGRAWPHYS		HIDIOCGRAWPHYS(_HIDIOCGRAWPHYS_LEN)
 | 
			
		||||
#define _HIDIOCGRAWUNIQ		HIDIOCGRAWUNIQ(_HIDIOCGRAWUNIQ_LEN)
 | 
			
		||||
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_NetBSD='
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/param.h>
 | 
			
		||||
#include <sys/event.h>
 | 
			
		||||
#include <sys/extattr.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/sched.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/sysctl.h>
 | 
			
		||||
#include <sys/termios.h>
 | 
			
		||||
#include <sys/ttycom.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <netinet/in_systm.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/ip_mroute.h>
 | 
			
		||||
#include <netinet/if_ether.h>
 | 
			
		||||
 | 
			
		||||
// Needed since <sys/param.h> refers to it...
 | 
			
		||||
#define schedppq 1
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_OpenBSD='
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/param.h>
 | 
			
		||||
#include <sys/event.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/mount.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/sched.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/sysctl.h>
 | 
			
		||||
#include <sys/termios.h>
 | 
			
		||||
#include <sys/ttycom.h>
 | 
			
		||||
#include <sys/unistd.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/if_var.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <netinet/in_systm.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/ip_mroute.h>
 | 
			
		||||
#include <netinet/if_ether.h>
 | 
			
		||||
#include <net/if_bridge.h>
 | 
			
		||||
 | 
			
		||||
// We keep some constants not supported in OpenBSD 5.5 and beyond for
 | 
			
		||||
// the promise of compatibility.
 | 
			
		||||
#define EMUL_ENABLED		0x1
 | 
			
		||||
#define EMUL_NATIVE		0x2
 | 
			
		||||
#define IPV6_FAITH		0x1d
 | 
			
		||||
#define IPV6_OPTIONS		0x1
 | 
			
		||||
#define IPV6_RTHDR_STRICT	0x1
 | 
			
		||||
#define IPV6_SOCKOPT_RESERVED1	0x3
 | 
			
		||||
#define SIOCGIFGENERIC		0xc020693a
 | 
			
		||||
#define SIOCSIFGENERIC		0x80206939
 | 
			
		||||
#define WALTSIG			0x4
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
includes_SunOS='
 | 
			
		||||
#include <limits.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/select.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <sys/sockio.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/stream.h>
 | 
			
		||||
#include <sys/mman.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <sys/ioctl.h>
 | 
			
		||||
#include <sys/mkdev.h>
 | 
			
		||||
#include <net/bpf.h>
 | 
			
		||||
#include <net/if.h>
 | 
			
		||||
#include <net/if_arp.h>
 | 
			
		||||
#include <net/if_types.h>
 | 
			
		||||
#include <net/route.h>
 | 
			
		||||
#include <netinet/icmp6.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/ip_mroute.h>
 | 
			
		||||
#include <termios.h>
 | 
			
		||||
'
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
includes='
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include <sys/file.h>
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
#include <dirent.h>
 | 
			
		||||
#include <sys/socket.h>
 | 
			
		||||
#include <netinet/in.h>
 | 
			
		||||
#include <netinet/ip.h>
 | 
			
		||||
#include <netinet/ip6.h>
 | 
			
		||||
#include <netinet/tcp.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <sys/signal.h>
 | 
			
		||||
#include <signal.h>
 | 
			
		||||
#include <sys/resource.h>
 | 
			
		||||
#include <time.h>
 | 
			
		||||
'
 | 
			
		||||
ccflags="$@"
 | 
			
		||||
 | 
			
		||||
# Write go tool cgo -godefs input.
 | 
			
		||||
(
 | 
			
		||||
	echo package unix
 | 
			
		||||
	echo
 | 
			
		||||
	echo '/*'
 | 
			
		||||
	indirect="includes_$(uname)"
 | 
			
		||||
	echo "${!indirect} $includes"
 | 
			
		||||
	echo '*/'
 | 
			
		||||
	echo 'import "C"'
 | 
			
		||||
	echo 'import "syscall"'
 | 
			
		||||
	echo
 | 
			
		||||
	echo 'const ('
 | 
			
		||||
 | 
			
		||||
	# The gcc command line prints all the #defines
 | 
			
		||||
	# it encounters while processing the input
 | 
			
		||||
	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '
 | 
			
		||||
		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
 | 
			
		||||
 | 
			
		||||
		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
 | 
			
		||||
		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
 | 
			
		||||
		$2 ~ /^(SCM_SRCRT)$/ {next}
 | 
			
		||||
		$2 ~ /^(MAP_FAILED)$/ {next}
 | 
			
		||||
		$2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.
 | 
			
		||||
 | 
			
		||||
		$2 ~ /^EXTATTR_NAMESPACE_NAMES/ ||
 | 
			
		||||
		$2 ~ /^EXTATTR_NAMESPACE_[A-Z]+_STRING/ {next}
 | 
			
		||||
 | 
			
		||||
		$2 !~ /^ECCAPBITS/ &&
 | 
			
		||||
		$2 !~ /^ETH_/ &&
 | 
			
		||||
		$2 !~ /^EPROC_/ &&
 | 
			
		||||
		$2 !~ /^EQUIV_/ &&
 | 
			
		||||
		$2 !~ /^EXPR_/ &&
 | 
			
		||||
		$2 !~ /^EVIOC/ &&
 | 
			
		||||
		$2 !~ /^EV_/ &&
 | 
			
		||||
		$2 ~ /^E[A-Z0-9_]+$/ ||
 | 
			
		||||
		$2 ~ /^B[0-9_]+$/ ||
 | 
			
		||||
		$2 ~ /^(OLD|NEW)DEV$/ ||
 | 
			
		||||
		$2 == "BOTHER" ||
 | 
			
		||||
		$2 ~ /^CI?BAUD(EX)?$/ ||
 | 
			
		||||
		$2 == "IBSHIFT" ||
 | 
			
		||||
		$2 ~ /^V[A-Z0-9]+$/ ||
 | 
			
		||||
		$2 ~ /^CS[A-Z0-9]/ ||
 | 
			
		||||
		$2 ~ /^I(SIG|CANON|CRNL|UCLC|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
 | 
			
		||||
		$2 ~ /^IGN/ ||
 | 
			
		||||
		$2 ~ /^IX(ON|ANY|OFF)$/ ||
 | 
			
		||||
		$2 ~ /^IN(LCR|PCK)$/ ||
 | 
			
		||||
		$2 !~ "X86_CR3_PCID_NOFLUSH" &&
 | 
			
		||||
		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
 | 
			
		||||
		$2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||
 | 
			
		||||
		$2 == "BRKINT" ||
 | 
			
		||||
		$2 == "HUPCL" ||
 | 
			
		||||
		$2 == "PENDIN" ||
 | 
			
		||||
		$2 == "TOSTOP" ||
 | 
			
		||||
		$2 == "XCASE" ||
 | 
			
		||||
		$2 == "ALTWERASE" ||
 | 
			
		||||
		$2 == "NOKERNINFO" ||
 | 
			
		||||
		$2 == "NFDBITS" ||
 | 
			
		||||
		$2 ~ /^PAR/ ||
 | 
			
		||||
		$2 ~ /^SIG[^_]/ ||
 | 
			
		||||
		$2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||
 | 
			
		||||
		$2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||
 | 
			
		||||
		$2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||
 | 
			
		||||
		$2 ~ /^O?XTABS$/ ||
 | 
			
		||||
		$2 ~ /^TC[IO](ON|OFF)$/ ||
 | 
			
		||||
		$2 ~ /^IN_/ ||
 | 
			
		||||
		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
 | 
			
		||||
		$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
 | 
			
		||||
		$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
 | 
			
		||||
		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL)_/ ||
 | 
			
		||||
		$2 ~ /^TP_STATUS_/ ||
 | 
			
		||||
		$2 ~ /^FALLOC_/ ||
 | 
			
		||||
		$2 ~ /^ICMPV?6?_(FILTER|SEC)/ ||
 | 
			
		||||
		$2 == "SOMAXCONN" ||
 | 
			
		||||
		$2 == "NAME_MAX" ||
 | 
			
		||||
		$2 == "IFNAMSIZ" ||
 | 
			
		||||
		$2 ~ /^CTL_(HW|KERN|MAXNAME|NET|QUERY)$/ ||
 | 
			
		||||
		$2 ~ /^KERN_(HOSTNAME|OS(RELEASE|TYPE)|VERSION)$/ ||
 | 
			
		||||
		$2 ~ /^HW_MACHINE$/ ||
 | 
			
		||||
		$2 ~ /^SYSCTL_VERS/ ||
 | 
			
		||||
		$2 !~ "MNT_BITS" &&
 | 
			
		||||
		$2 ~ /^(MS|MNT|UMOUNT)_/ ||
 | 
			
		||||
		$2 ~ /^NS_GET_/ ||
 | 
			
		||||
		$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
 | 
			
		||||
		$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT|TFD)_/ ||
 | 
			
		||||
		$2 ~ /^KEXEC_/ ||
 | 
			
		||||
		$2 ~ /^LINUX_REBOOT_CMD_/ ||
 | 
			
		||||
		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
 | 
			
		||||
		$2 ~ /^MODULE_INIT_/ ||
 | 
			
		||||
		$2 !~ "NLA_TYPE_MASK" &&
 | 
			
		||||
		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
 | 
			
		||||
		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
 | 
			
		||||
		$2 ~ /^FIORDCHK$/ ||
 | 
			
		||||
		$2 ~ /^SIOC/ ||
 | 
			
		||||
		$2 ~ /^TIOC/ ||
 | 
			
		||||
		$2 ~ /^TCGET/ ||
 | 
			
		||||
		$2 ~ /^TCSET/ ||
 | 
			
		||||
		$2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||
 | 
			
		||||
		$2 !~ "RTF_BITS" &&
 | 
			
		||||
		$2 ~ /^(IFF|IFT|NET_RT|RTM(GRP)?|RTF|RTV|RTA|RTAX)_/ ||
 | 
			
		||||
		$2 ~ /^BIOC/ ||
 | 
			
		||||
		$2 ~ /^DIOC/ ||
 | 
			
		||||
		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
 | 
			
		||||
		$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||
 | 
			
		||||
		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
 | 
			
		||||
		$2 ~ /^CLONE_[A-Z_]+/ ||
 | 
			
		||||
		$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+)$/ &&
 | 
			
		||||
		$2 ~ /^(BPF|DLT)_/ ||
 | 
			
		||||
		$2 ~ /^(CLOCK|TIMER)_/ ||
 | 
			
		||||
		$2 ~ /^CAN_/ ||
 | 
			
		||||
		$2 ~ /^CAP_/ ||
 | 
			
		||||
		$2 ~ /^CP_/ ||
 | 
			
		||||
		$2 ~ /^CPUSTATES$/ ||
 | 
			
		||||
		$2 ~ /^CTLIOCGINFO$/ ||
 | 
			
		||||
		$2 ~ /^ALG_/ ||
 | 
			
		||||
		$2 ~ /^FI(CLONE|DEDUPERANGE)/ ||
 | 
			
		||||
		$2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE)/ ||
 | 
			
		||||
		$2 ~ /^FS_IOC_.*(ENCRYPTION|VERITY|[GS]ETFLAGS)/ ||
 | 
			
		||||
		$2 ~ /^FS_VERITY_/ ||
 | 
			
		||||
		$2 ~ /^FSCRYPT_/ ||
 | 
			
		||||
		$2 ~ /^DM_/ ||
 | 
			
		||||
		$2 ~ /^GRND_/ ||
 | 
			
		||||
		$2 ~ /^RND/ ||
 | 
			
		||||
		$2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||
 | 
			
		||||
		$2 ~ /^KEYCTL_/ ||
 | 
			
		||||
		$2 ~ /^PERF_/ ||
 | 
			
		||||
		$2 ~ /^SECCOMP_MODE_/ ||
 | 
			
		||||
		$2 ~ /^SPLICE_/ ||
 | 
			
		||||
		$2 ~ /^SYNC_FILE_RANGE_/ ||
 | 
			
		||||
		$2 !~ /^AUDIT_RECORD_MAGIC/ &&
 | 
			
		||||
		$2 !~ /IOC_MAGIC/ &&
 | 
			
		||||
		$2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||
 | 
			
		||||
		$2 ~ /^(VM|VMADDR)_/ ||
 | 
			
		||||
		$2 ~ /^IOCTL_VM_SOCKETS_/ ||
 | 
			
		||||
		$2 ~ /^(TASKSTATS|TS)_/ ||
 | 
			
		||||
		$2 ~ /^CGROUPSTATS_/ ||
 | 
			
		||||
		$2 ~ /^GENL_/ ||
 | 
			
		||||
		$2 ~ /^STATX_/ ||
 | 
			
		||||
		$2 ~ /^RENAME/ ||
 | 
			
		||||
		$2 ~ /^UBI_IOC[A-Z]/ ||
 | 
			
		||||
		$2 ~ /^UTIME_/ ||
 | 
			
		||||
		$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
 | 
			
		||||
		$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
 | 
			
		||||
		$2 ~ /^FSOPT_/ ||
 | 
			
		||||
		$2 ~ /^WDIO[CFS]_/ ||
 | 
			
		||||
		$2 ~ /^NFN/ ||
 | 
			
		||||
		$2 ~ /^XDP_/ ||
 | 
			
		||||
		$2 ~ /^RWF_/ ||
 | 
			
		||||
		$2 ~ /^(HDIO|WIN|SMART)_/ ||
 | 
			
		||||
		$2 ~ /^CRYPTO_/ ||
 | 
			
		||||
		$2 ~ /^TIPC_/ ||
 | 
			
		||||
		$2 !~  "DEVLINK_RELOAD_LIMITS_VALID_MASK" &&
 | 
			
		||||
		$2 ~ /^DEVLINK_/ ||
 | 
			
		||||
		$2 ~ /^ETHTOOL_/ ||
 | 
			
		||||
		$2 ~ /^LWTUNNEL_IP/ ||
 | 
			
		||||
		$2 !~ "WMESGLEN" &&
 | 
			
		||||
		$2 ~ /^W[A-Z0-9]+$/ ||
 | 
			
		||||
		$2 ~/^PPPIOC/ ||
 | 
			
		||||
		$2 ~ /^FAN_|FANOTIFY_/ ||
 | 
			
		||||
		$2 == "HID_MAX_DESCRIPTOR_SIZE" ||
 | 
			
		||||
		$2 ~ /^_?HIDIOC/ ||
 | 
			
		||||
		$2 ~ /^BUS_(USB|HIL|BLUETOOTH|VIRTUAL)$/ ||
 | 
			
		||||
		$2 ~ /^BLK[A-Z]*(GET$|SET$|BUF$|PART$|SIZE)/ {printf("\t%s = C.%s\n", $2, $2)}
 | 
			
		||||
		$2 ~ /^__WCOREFLAG$/ {next}
 | 
			
		||||
		$2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
 | 
			
		||||
 | 
			
		||||
		{next}
 | 
			
		||||
	' | sort
 | 
			
		||||
 | 
			
		||||
	echo ')'
 | 
			
		||||
) >_const.go
 | 
			
		||||
 | 
			
		||||
# Pull out the error names for later.
 | 
			
		||||
errors=$(
 | 
			
		||||
	echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |
 | 
			
		||||
	sort
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
# Pull out the signal names for later.
 | 
			
		||||
signals=$(
 | 
			
		||||
	echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
 | 
			
		||||
	egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
 | 
			
		||||
	sort
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
# Again, writing regexps to a file.
 | 
			
		||||
echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print "^\t" $2 "[ \t]*=" }' |
 | 
			
		||||
	sort >_error.grep
 | 
			
		||||
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
 | 
			
		||||
	egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
 | 
			
		||||
	sort >_signal.grep
 | 
			
		||||
 | 
			
		||||
echo '// mkerrors.sh' "$@"
 | 
			
		||||
echo '// Code generated by the command above; see README.md. DO NOT EDIT.'
 | 
			
		||||
echo
 | 
			
		||||
echo "//go:build ${GOARCH} && ${GOOS}"
 | 
			
		||||
echo "// +build ${GOARCH},${GOOS}"
 | 
			
		||||
echo
 | 
			
		||||
go tool cgo -godefs -- "$@" _const.go >_error.out
 | 
			
		||||
cat _error.out | grep -vf _error.grep | grep -vf _signal.grep
 | 
			
		||||
echo
 | 
			
		||||
echo '// Errors'
 | 
			
		||||
echo 'const ('
 | 
			
		||||
cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= syscall.Errno(\1)/'
 | 
			
		||||
echo ')'
 | 
			
		||||
 | 
			
		||||
echo
 | 
			
		||||
echo '// Signals'
 | 
			
		||||
echo 'const ('
 | 
			
		||||
cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= syscall.Signal(\1)/'
 | 
			
		||||
echo ')'
 | 
			
		||||
 | 
			
		||||
# Run C program to print error and syscall strings.
 | 
			
		||||
(
 | 
			
		||||
	echo -E "
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <ctype.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <signal.h>
 | 
			
		||||
 | 
			
		||||
#define nelem(x) (sizeof(x)/sizeof((x)[0]))
 | 
			
		||||
 | 
			
		||||
enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
 | 
			
		||||
 | 
			
		||||
struct tuple {
 | 
			
		||||
	int num;
 | 
			
		||||
	const char *name;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct tuple errors[] = {
 | 
			
		||||
"
 | 
			
		||||
	for i in $errors
 | 
			
		||||
	do
 | 
			
		||||
		echo -E '	{'$i', "'$i'" },'
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	echo -E "
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct tuple signals[] = {
 | 
			
		||||
"
 | 
			
		||||
	for i in $signals
 | 
			
		||||
	do
 | 
			
		||||
		echo -E '	{'$i', "'$i'" },'
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	# Use -E because on some systems bash builtin interprets \n itself.
 | 
			
		||||
	echo -E '
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static int
 | 
			
		||||
tuplecmp(const void *a, const void *b)
 | 
			
		||||
{
 | 
			
		||||
	return ((struct tuple *)a)->num - ((struct tuple *)b)->num;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
main(void)
 | 
			
		||||
{
 | 
			
		||||
	int i, e;
 | 
			
		||||
	char buf[1024], *p;
 | 
			
		||||
 | 
			
		||||
	printf("\n\n// Error table\n");
 | 
			
		||||
	printf("var errorList = [...]struct {\n");
 | 
			
		||||
	printf("\tnum  syscall.Errno\n");
 | 
			
		||||
	printf("\tname string\n");
 | 
			
		||||
	printf("\tdesc string\n");
 | 
			
		||||
	printf("} {\n");
 | 
			
		||||
	qsort(errors, nelem(errors), sizeof errors[0], tuplecmp);
 | 
			
		||||
	for(i=0; i<nelem(errors); i++) {
 | 
			
		||||
		e = errors[i].num;
 | 
			
		||||
		if(i > 0 && errors[i-1].num == e)
 | 
			
		||||
			continue;
 | 
			
		||||
		strcpy(buf, strerror(e));
 | 
			
		||||
		// lowercase first letter: Bad -> bad, but STREAM -> STREAM.
 | 
			
		||||
		if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
 | 
			
		||||
			buf[0] += a - A;
 | 
			
		||||
		printf("\t{ %d, \"%s\", \"%s\" },\n", e, errors[i].name, buf);
 | 
			
		||||
	}
 | 
			
		||||
	printf("}\n\n");
 | 
			
		||||
 | 
			
		||||
	printf("\n\n// Signal table\n");
 | 
			
		||||
	printf("var signalList = [...]struct {\n");
 | 
			
		||||
	printf("\tnum  syscall.Signal\n");
 | 
			
		||||
	printf("\tname string\n");
 | 
			
		||||
	printf("\tdesc string\n");
 | 
			
		||||
	printf("} {\n");
 | 
			
		||||
	qsort(signals, nelem(signals), sizeof signals[0], tuplecmp);
 | 
			
		||||
	for(i=0; i<nelem(signals); i++) {
 | 
			
		||||
		e = signals[i].num;
 | 
			
		||||
		if(i > 0 && signals[i-1].num == e)
 | 
			
		||||
			continue;
 | 
			
		||||
		strcpy(buf, strsignal(e));
 | 
			
		||||
		// lowercase first letter: Bad -> bad, but STREAM -> STREAM.
 | 
			
		||||
		if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
 | 
			
		||||
			buf[0] += a - A;
 | 
			
		||||
		// cut trailing : number.
 | 
			
		||||
		p = strrchr(buf, ":"[0]);
 | 
			
		||||
		if(p)
 | 
			
		||||
			*p = '\0';
 | 
			
		||||
		printf("\t{ %d, \"%s\", \"%s\" },\n", e, signals[i].name, buf);
 | 
			
		||||
	}
 | 
			
		||||
	printf("}\n\n");
 | 
			
		||||
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
'
 | 
			
		||||
) >_errors.c
 | 
			
		||||
 | 
			
		||||
$CC $ccflags -o _errors _errors.c && $GORUN ./_errors && rm -f _errors.c _errors _const.go _error.grep _signal.grep _error.out
 | 
			
		||||
							
								
								
									
										16
									
								
								vendor/golang.org/x/sys/unix/pagesize_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								vendor/golang.org/x/sys/unix/pagesize_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,16 +0,0 @@
 | 
			
		||||
// Copyright 2017 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
 | 
			
		||||
 | 
			
		||||
// For Unix, get the pagesize from the runtime.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "syscall"
 | 
			
		||||
 | 
			
		||||
func Getpagesize() int {
 | 
			
		||||
	return syscall.Getpagesize()
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										163
									
								
								vendor/golang.org/x/sys/unix/pledge_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										163
									
								
								vendor/golang.org/x/sys/unix/pledge_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,163 +0,0 @@
 | 
			
		||||
// Copyright 2016 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"strconv"
 | 
			
		||||
	"syscall"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Pledge implements the pledge syscall.
 | 
			
		||||
//
 | 
			
		||||
// The pledge syscall does not accept execpromises on OpenBSD releases
 | 
			
		||||
// before 6.3.
 | 
			
		||||
//
 | 
			
		||||
// execpromises must be empty when Pledge is called on OpenBSD
 | 
			
		||||
// releases predating 6.3, otherwise an error will be returned.
 | 
			
		||||
//
 | 
			
		||||
// For more information see pledge(2).
 | 
			
		||||
func Pledge(promises, execpromises string) error {
 | 
			
		||||
	maj, min, err := majmin()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err = pledgeAvailable(maj, min, execpromises)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	pptr, err := syscall.BytePtrFromString(promises)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// This variable will hold either a nil unsafe.Pointer or
 | 
			
		||||
	// an unsafe.Pointer to a string (execpromises).
 | 
			
		||||
	var expr unsafe.Pointer
 | 
			
		||||
 | 
			
		||||
	// If we're running on OpenBSD > 6.2, pass execpromises to the syscall.
 | 
			
		||||
	if maj > 6 || (maj == 6 && min > 2) {
 | 
			
		||||
		exptr, err := syscall.BytePtrFromString(execpromises)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return err
 | 
			
		||||
		}
 | 
			
		||||
		expr = unsafe.Pointer(exptr)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(unsafe.Pointer(pptr)), uintptr(expr), 0)
 | 
			
		||||
	if e != 0 {
 | 
			
		||||
		return e
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// PledgePromises implements the pledge syscall.
 | 
			
		||||
//
 | 
			
		||||
// This changes the promises and leaves the execpromises untouched.
 | 
			
		||||
//
 | 
			
		||||
// For more information see pledge(2).
 | 
			
		||||
func PledgePromises(promises string) error {
 | 
			
		||||
	maj, min, err := majmin()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err = pledgeAvailable(maj, min, "")
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// This variable holds the execpromises and is always nil.
 | 
			
		||||
	var expr unsafe.Pointer
 | 
			
		||||
 | 
			
		||||
	pptr, err := syscall.BytePtrFromString(promises)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(unsafe.Pointer(pptr)), uintptr(expr), 0)
 | 
			
		||||
	if e != 0 {
 | 
			
		||||
		return e
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// PledgeExecpromises implements the pledge syscall.
 | 
			
		||||
//
 | 
			
		||||
// This changes the execpromises and leaves the promises untouched.
 | 
			
		||||
//
 | 
			
		||||
// For more information see pledge(2).
 | 
			
		||||
func PledgeExecpromises(execpromises string) error {
 | 
			
		||||
	maj, min, err := majmin()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err = pledgeAvailable(maj, min, execpromises)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// This variable holds the promises and is always nil.
 | 
			
		||||
	var pptr unsafe.Pointer
 | 
			
		||||
 | 
			
		||||
	exptr, err := syscall.BytePtrFromString(execpromises)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(pptr), uintptr(unsafe.Pointer(exptr)), 0)
 | 
			
		||||
	if e != 0 {
 | 
			
		||||
		return e
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// majmin returns major and minor version number for an OpenBSD system.
 | 
			
		||||
func majmin() (major int, minor int, err error) {
 | 
			
		||||
	var v Utsname
 | 
			
		||||
	err = Uname(&v)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	major, err = strconv.Atoi(string(v.Release[0]))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		err = errors.New("cannot parse major version number returned by uname")
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	minor, err = strconv.Atoi(string(v.Release[2]))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		err = errors.New("cannot parse minor version number returned by uname")
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// pledgeAvailable checks for availability of the pledge(2) syscall
 | 
			
		||||
// based on the running OpenBSD version.
 | 
			
		||||
func pledgeAvailable(maj, min int, execpromises string) error {
 | 
			
		||||
	// If OpenBSD <= 5.9, pledge is not available.
 | 
			
		||||
	if (maj == 5 && min != 9) || maj < 5 {
 | 
			
		||||
		return fmt.Errorf("pledge syscall is not available on OpenBSD %d.%d", maj, min)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// If OpenBSD <= 6.2 and execpromises is not empty,
 | 
			
		||||
	// return an error - execpromises is not available before 6.3
 | 
			
		||||
	if (maj < 6 || (maj == 6 && min <= 2)) && execpromises != "" {
 | 
			
		||||
		return fmt.Errorf("cannot use execpromises on OpenBSD %d.%d", maj, min)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12
									
								
								vendor/golang.org/x/sys/unix/ptrace_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								vendor/golang.org/x/sys/unix/ptrace_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,12 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build darwin && !ios
 | 
			
		||||
// +build darwin,!ios
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
 | 
			
		||||
	return ptrace1(request, pid, addr, data)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12
									
								
								vendor/golang.org/x/sys/unix/ptrace_ios.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								vendor/golang.org/x/sys/unix/ptrace_ios.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,12 +0,0 @@
 | 
			
		||||
// Copyright 2020 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build ios
 | 
			
		||||
// +build ios
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
 | 
			
		||||
	return ENOTSUP
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										31
									
								
								vendor/golang.org/x/sys/unix/race.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										31
									
								
								vendor/golang.org/x/sys/unix/race.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,31 +0,0 @@
 | 
			
		||||
// Copyright 2012 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (darwin && race) || (linux && race) || (freebsd && race)
 | 
			
		||||
// +build darwin,race linux,race freebsd,race
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const raceenabled = true
 | 
			
		||||
 | 
			
		||||
func raceAcquire(addr unsafe.Pointer) {
 | 
			
		||||
	runtime.RaceAcquire(addr)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceReleaseMerge(addr unsafe.Pointer) {
 | 
			
		||||
	runtime.RaceReleaseMerge(addr)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceReadRange(addr unsafe.Pointer, len int) {
 | 
			
		||||
	runtime.RaceReadRange(addr, len)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceWriteRange(addr unsafe.Pointer, len int) {
 | 
			
		||||
	runtime.RaceWriteRange(addr, len)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										26
									
								
								vendor/golang.org/x/sys/unix/race0.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								vendor/golang.org/x/sys/unix/race0.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,26 +0,0 @@
 | 
			
		||||
// Copyright 2012 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || (darwin && !race) || (linux && !race) || (freebsd && !race) || netbsd || openbsd || solaris || dragonfly || zos
 | 
			
		||||
// +build aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly zos
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const raceenabled = false
 | 
			
		||||
 | 
			
		||||
func raceAcquire(addr unsafe.Pointer) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceReleaseMerge(addr unsafe.Pointer) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceReadRange(addr unsafe.Pointer, len int) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func raceWriteRange(addr unsafe.Pointer, len int) {
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										13
									
								
								vendor/golang.org/x/sys/unix/readdirent_getdents.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								vendor/golang.org/x/sys/unix/readdirent_getdents.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,13 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || dragonfly || freebsd || linux || netbsd || openbsd
 | 
			
		||||
// +build aix dragonfly freebsd linux netbsd openbsd
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// ReadDirent reads directory entries from fd and writes them into buf.
 | 
			
		||||
func ReadDirent(fd int, buf []byte) (n int, err error) {
 | 
			
		||||
	return Getdents(fd, buf)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										20
									
								
								vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,20 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build darwin
 | 
			
		||||
// +build darwin
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
// ReadDirent reads directory entries from fd and writes them into buf.
 | 
			
		||||
func ReadDirent(fd int, buf []byte) (n int, err error) {
 | 
			
		||||
	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
 | 
			
		||||
	// 64 bits should be enough. (32 bits isn't even on 386). Since the
 | 
			
		||||
	// actual system call is getdirentries64, 64 is a good guess.
 | 
			
		||||
	// TODO(rsc): Can we use a single global basep for all calls?
 | 
			
		||||
	var base = (*uintptr)(unsafe.Pointer(new(uint64)))
 | 
			
		||||
	return Getdirentries(fd, buf, base)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										16
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,16 +0,0 @@
 | 
			
		||||
// Copyright 2019 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
// Round the length of a raw sockaddr up to align it properly.
 | 
			
		||||
func cmsgAlignOf(salen int) int {
 | 
			
		||||
	salign := SizeofPtr
 | 
			
		||||
	if SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
 | 
			
		||||
		// 64-bit Dragonfly before the September 2019 ABI changes still requires
 | 
			
		||||
		// 32-bit aligned access to network subsystem.
 | 
			
		||||
		salign = 4
 | 
			
		||||
	}
 | 
			
		||||
	return (salen + salign - 1) & ^(salign - 1)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										36
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,36 +0,0 @@
 | 
			
		||||
// Copyright 2011 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Socket control messages
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
// UnixCredentials encodes credentials into a socket control message
 | 
			
		||||
// for sending to another process. This can be used for
 | 
			
		||||
// authentication.
 | 
			
		||||
func UnixCredentials(ucred *Ucred) []byte {
 | 
			
		||||
	b := make([]byte, CmsgSpace(SizeofUcred))
 | 
			
		||||
	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
 | 
			
		||||
	h.Level = SOL_SOCKET
 | 
			
		||||
	h.Type = SCM_CREDENTIALS
 | 
			
		||||
	h.SetLen(CmsgLen(SizeofUcred))
 | 
			
		||||
	*(*Ucred)(h.data(0)) = *ucred
 | 
			
		||||
	return b
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ParseUnixCredentials decodes a socket control message that contains
 | 
			
		||||
// credentials in a Ucred structure. To receive such a message, the
 | 
			
		||||
// SO_PASSCRED option must be enabled on the socket.
 | 
			
		||||
func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) {
 | 
			
		||||
	if m.Header.Level != SOL_SOCKET {
 | 
			
		||||
		return nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	if m.Header.Type != SCM_CREDENTIALS {
 | 
			
		||||
		return nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	ucred := *(*Ucred)(unsafe.Pointer(&m.Data[0]))
 | 
			
		||||
	return &ucred, nil
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										93
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										93
									
								
								vendor/golang.org/x/sys/unix/sockcmsg_unix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,93 +0,0 @@
 | 
			
		||||
// Copyright 2011 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
 | 
			
		||||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos
 | 
			
		||||
 | 
			
		||||
// Socket control messages
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// CmsgLen returns the value to store in the Len field of the Cmsghdr
 | 
			
		||||
// structure, taking into account any necessary alignment.
 | 
			
		||||
func CmsgLen(datalen int) int {
 | 
			
		||||
	return cmsgAlignOf(SizeofCmsghdr) + datalen
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CmsgSpace returns the number of bytes an ancillary element with
 | 
			
		||||
// payload of the passed data length occupies.
 | 
			
		||||
func CmsgSpace(datalen int) int {
 | 
			
		||||
	return cmsgAlignOf(SizeofCmsghdr) + cmsgAlignOf(datalen)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {
 | 
			
		||||
	return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)) + offset)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocketControlMessage represents a socket control message.
 | 
			
		||||
type SocketControlMessage struct {
 | 
			
		||||
	Header Cmsghdr
 | 
			
		||||
	Data   []byte
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ParseSocketControlMessage parses b as an array of socket control
 | 
			
		||||
// messages.
 | 
			
		||||
func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) {
 | 
			
		||||
	var msgs []SocketControlMessage
 | 
			
		||||
	i := 0
 | 
			
		||||
	for i+CmsgLen(0) <= len(b) {
 | 
			
		||||
		h, dbuf, err := socketControlMessageHeaderAndData(b[i:])
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return nil, err
 | 
			
		||||
		}
 | 
			
		||||
		m := SocketControlMessage{Header: *h, Data: dbuf}
 | 
			
		||||
		msgs = append(msgs, m)
 | 
			
		||||
		i += cmsgAlignOf(int(h.Len))
 | 
			
		||||
	}
 | 
			
		||||
	return msgs, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, error) {
 | 
			
		||||
	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
 | 
			
		||||
	if h.Len < SizeofCmsghdr || uint64(h.Len) > uint64(len(b)) {
 | 
			
		||||
		return nil, nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	return h, b[cmsgAlignOf(SizeofCmsghdr):h.Len], nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// UnixRights encodes a set of open file descriptors into a socket
 | 
			
		||||
// control message for sending to another process.
 | 
			
		||||
func UnixRights(fds ...int) []byte {
 | 
			
		||||
	datalen := len(fds) * 4
 | 
			
		||||
	b := make([]byte, CmsgSpace(datalen))
 | 
			
		||||
	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
 | 
			
		||||
	h.Level = SOL_SOCKET
 | 
			
		||||
	h.Type = SCM_RIGHTS
 | 
			
		||||
	h.SetLen(CmsgLen(datalen))
 | 
			
		||||
	for i, fd := range fds {
 | 
			
		||||
		*(*int32)(h.data(4 * uintptr(i))) = int32(fd)
 | 
			
		||||
	}
 | 
			
		||||
	return b
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ParseUnixRights decodes a socket control message that contains an
 | 
			
		||||
// integer array of open file descriptors from another process.
 | 
			
		||||
func ParseUnixRights(m *SocketControlMessage) ([]int, error) {
 | 
			
		||||
	if m.Header.Level != SOL_SOCKET {
 | 
			
		||||
		return nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	if m.Header.Type != SCM_RIGHTS {
 | 
			
		||||
		return nil, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	fds := make([]int, len(m.Data)>>2)
 | 
			
		||||
	for i, j := 0, 0; i < len(m.Data); i += 4 {
 | 
			
		||||
		fds[j] = int(*(*int32)(unsafe.Pointer(&m.Data[i])))
 | 
			
		||||
		j++
 | 
			
		||||
	}
 | 
			
		||||
	return fds, nil
 | 
			
		||||
}
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user