fswalker

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 31, 2019 License: Apache-2.0 Imports: 4 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Fingerprint_Method_name = map[int32]string{
	0: "UNKNOWN",
	1: "SHA256",
}
View Source
var Fingerprint_Method_value = map[string]int32{
	"UNKNOWN": 0,
	"SHA256":  1,
}
View Source
var Notification_Severity_name = map[int32]string{
	0: "UNKNOWN",
	1: "INFO",
	2: "WARNING",
	3: "ERROR",
}
View Source
var Notification_Severity_value = map[string]int32{
	"UNKNOWN": 0,
	"INFO":    1,
	"WARNING": 2,
	"ERROR":   3,
}

Functions

This section is empty.

Types

type File

type File struct {
	// version is the version of the proto structure.
	Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// path is the full file path including the file name.
	Path string    `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Info *FileInfo `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
	Stat *FileStat `protobuf:"bytes,4,opt,name=stat,proto3" json:"stat,omitempty"`
	// fingerprint is optionally set when requested for the specific file.
	Fingerprint          []*Fingerprint `protobuf:"bytes,5,rep,name=fingerprint,proto3" json:"fingerprint,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*File) Descriptor

func (*File) Descriptor() ([]byte, []int)

func (*File) GetFingerprint

func (m *File) GetFingerprint() []*Fingerprint

func (*File) GetInfo

func (m *File) GetInfo() *FileInfo

func (*File) GetPath

func (m *File) GetPath() string

func (*File) GetStat

func (m *File) GetStat() *FileStat

func (*File) GetVersion

func (m *File) GetVersion() uint32

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) Reset

func (m *File) Reset()

func (*File) String

func (m *File) String() string

func (*File) XXX_DiscardUnknown

func (m *File) XXX_DiscardUnknown()

func (*File) XXX_Marshal

func (m *File) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*File) XXX_Merge

func (m *File) XXX_Merge(src proto.Message)

func (*File) XXX_Size

func (m *File) XXX_Size() int

func (*File) XXX_Unmarshal

func (m *File) XXX_Unmarshal(b []byte) error

type FileInfo

type FileInfo struct {
	// base name of the file
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// length in bytes for regular files; system-dependent for others
	Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	// file mode bits
	Mode uint32 `protobuf:"varint,3,opt,name=mode,proto3" json:"mode,omitempty"`
	// modification time
	Modified *timestamp.Timestamp `protobuf:"bytes,4,opt,name=modified,proto3" json:"modified,omitempty"`
	// abbreviation for Mode().IsDir()
	IsDir                bool     `protobuf:"varint,5,opt,name=is_dir,json=isDir,proto3" json:"is_dir,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FileInfo) Descriptor

func (*FileInfo) Descriptor() ([]byte, []int)

func (*FileInfo) GetIsDir

func (m *FileInfo) GetIsDir() bool

func (*FileInfo) GetMode

func (m *FileInfo) GetMode() uint32

func (*FileInfo) GetModified

func (m *FileInfo) GetModified() *timestamp.Timestamp

func (*FileInfo) GetName

func (m *FileInfo) GetName() string

func (*FileInfo) GetSize

func (m *FileInfo) GetSize() int64

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) Reset

func (m *FileInfo) Reset()

func (*FileInfo) String

func (m *FileInfo) String() string

func (*FileInfo) XXX_DiscardUnknown

func (m *FileInfo) XXX_DiscardUnknown()

func (*FileInfo) XXX_Marshal

func (m *FileInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileInfo) XXX_Merge

func (m *FileInfo) XXX_Merge(src proto.Message)

func (*FileInfo) XXX_Size

func (m *FileInfo) XXX_Size() int

func (*FileInfo) XXX_Unmarshal

func (m *FileInfo) XXX_Unmarshal(b []byte) error

type FileStat

type FileStat struct {
	Dev                  uint64               `protobuf:"varint,1,opt,name=dev,proto3" json:"dev,omitempty"`
	Inode                uint64               `protobuf:"varint,2,opt,name=inode,proto3" json:"inode,omitempty"`
	Nlink                uint64               `protobuf:"varint,3,opt,name=nlink,proto3" json:"nlink,omitempty"`
	Mode                 uint32               `protobuf:"varint,4,opt,name=mode,proto3" json:"mode,omitempty"`
	Uid                  uint32               `protobuf:"varint,5,opt,name=uid,proto3" json:"uid,omitempty"`
	Gid                  uint32               `protobuf:"varint,6,opt,name=gid,proto3" json:"gid,omitempty"`
	Rdev                 uint64               `protobuf:"varint,7,opt,name=rdev,proto3" json:"rdev,omitempty"`
	Size                 int64                `protobuf:"varint,8,opt,name=size,proto3" json:"size,omitempty"`
	Blksize              int64                `protobuf:"varint,9,opt,name=blksize,proto3" json:"blksize,omitempty"`
	Blocks               int64                `protobuf:"varint,10,opt,name=blocks,proto3" json:"blocks,omitempty"`
	Atime                *timestamp.Timestamp `protobuf:"bytes,11,opt,name=atime,proto3" json:"atime,omitempty"`
	Mtime                *timestamp.Timestamp `protobuf:"bytes,12,opt,name=mtime,proto3" json:"mtime,omitempty"`
	Ctime                *timestamp.Timestamp `protobuf:"bytes,13,opt,name=ctime,proto3" json:"ctime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*FileStat) Descriptor

func (*FileStat) Descriptor() ([]byte, []int)

func (*FileStat) GetAtime

func (m *FileStat) GetAtime() *timestamp.Timestamp

func (*FileStat) GetBlksize

func (m *FileStat) GetBlksize() int64

func (*FileStat) GetBlocks

func (m *FileStat) GetBlocks() int64

func (*FileStat) GetCtime

func (m *FileStat) GetCtime() *timestamp.Timestamp

func (*FileStat) GetDev

func (m *FileStat) GetDev() uint64

func (*FileStat) GetGid

func (m *FileStat) GetGid() uint32

func (*FileStat) GetInode

func (m *FileStat) GetInode() uint64

func (*FileStat) GetMode

func (m *FileStat) GetMode() uint32

func (*FileStat) GetMtime

func (m *FileStat) GetMtime() *timestamp.Timestamp
func (m *FileStat) GetNlink() uint64

func (*FileStat) GetRdev

func (m *FileStat) GetRdev() uint64

func (*FileStat) GetSize

func (m *FileStat) GetSize() int64

func (*FileStat) GetUid

func (m *FileStat) GetUid() uint32

func (*FileStat) ProtoMessage

func (*FileStat) ProtoMessage()

func (*FileStat) Reset

func (m *FileStat) Reset()

func (*FileStat) String

func (m *FileStat) String() string

func (*FileStat) XXX_DiscardUnknown

func (m *FileStat) XXX_DiscardUnknown()

func (*FileStat) XXX_Marshal

func (m *FileStat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileStat) XXX_Merge

func (m *FileStat) XXX_Merge(src proto.Message)

func (*FileStat) XXX_Size

func (m *FileStat) XXX_Size() int

func (*FileStat) XXX_Unmarshal

func (m *FileStat) XXX_Unmarshal(b []byte) error

type Fingerprint

type Fingerprint struct {
	Method               Fingerprint_Method `protobuf:"varint,1,opt,name=method,proto3,enum=fswalker.Fingerprint_Method" json:"method,omitempty"`
	Value                string             `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

Fingerprint is a unique identifier for a given File. It consists of a Method (e.g. SHA256) and a value.

func (*Fingerprint) Descriptor

func (*Fingerprint) Descriptor() ([]byte, []int)

func (*Fingerprint) GetMethod

func (m *Fingerprint) GetMethod() Fingerprint_Method

func (*Fingerprint) GetValue

func (m *Fingerprint) GetValue() string

func (*Fingerprint) ProtoMessage

func (*Fingerprint) ProtoMessage()

func (*Fingerprint) Reset

func (m *Fingerprint) Reset()

func (*Fingerprint) String

func (m *Fingerprint) String() string

func (*Fingerprint) XXX_DiscardUnknown

func (m *Fingerprint) XXX_DiscardUnknown()

func (*Fingerprint) XXX_Marshal

func (m *Fingerprint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Fingerprint) XXX_Merge

func (m *Fingerprint) XXX_Merge(src proto.Message)

func (*Fingerprint) XXX_Size

func (m *Fingerprint) XXX_Size() int

func (*Fingerprint) XXX_Unmarshal

func (m *Fingerprint) XXX_Unmarshal(b []byte) error

type Fingerprint_Method

type Fingerprint_Method int32
const (
	Fingerprint_UNKNOWN Fingerprint_Method = 0
	Fingerprint_SHA256  Fingerprint_Method = 1
)

func (Fingerprint_Method) EnumDescriptor

func (Fingerprint_Method) EnumDescriptor() ([]byte, []int)

func (Fingerprint_Method) String

func (x Fingerprint_Method) String() string

type Notification

type Notification struct {
	Severity Notification_Severity `protobuf:"varint,1,opt,name=severity,proto3,enum=fswalker.Notification_Severity" json:"severity,omitempty"`
	// path where the notification occurred.
	Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	// human readable message.
	Message              string   `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Notification) Descriptor

func (*Notification) Descriptor() ([]byte, []int)

func (*Notification) GetMessage

func (m *Notification) GetMessage() string

func (*Notification) GetPath

func (m *Notification) GetPath() string

func (*Notification) GetSeverity

func (m *Notification) GetSeverity() Notification_Severity

func (*Notification) ProtoMessage

func (*Notification) ProtoMessage()

func (*Notification) Reset

func (m *Notification) Reset()

func (*Notification) String

func (m *Notification) String() string

func (*Notification) XXX_DiscardUnknown

func (m *Notification) XXX_DiscardUnknown()

func (*Notification) XXX_Marshal

func (m *Notification) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Notification) XXX_Merge

func (m *Notification) XXX_Merge(src proto.Message)

func (*Notification) XXX_Size

func (m *Notification) XXX_Size() int

func (*Notification) XXX_Unmarshal

func (m *Notification) XXX_Unmarshal(b []byte) error

type Notification_Severity

type Notification_Severity int32

Indicator for the severity of the notification.

const (
	Notification_UNKNOWN Notification_Severity = 0
	Notification_INFO    Notification_Severity = 1
	Notification_WARNING Notification_Severity = 2
	Notification_ERROR   Notification_Severity = 3
)

func (Notification_Severity) EnumDescriptor

func (Notification_Severity) EnumDescriptor() ([]byte, []int)

func (Notification_Severity) String

func (x Notification_Severity) String() string

type Policy

type Policy struct {
	// version is the version of the proto structure.
	Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// include is a list of paths to use as roots for file walks.
	// Each walk can be done by a separate Go routine (if an idle one is
	// available). Important to note that the include paths SHOULD NOT contain
	// each other because that will lead to paths being visited more than once.
	Include []string `protobuf:"bytes,2,rep,name=include,proto3" json:"include,omitempty"`
	// exclude_pfx is a list of path prefixes which will be excluded from being
	// walked. Note that these are prefixes. Any path matching one of these
	// prefixes will be ignored.
	ExcludePfx []string `protobuf:"bytes,3,rep,name=exclude_pfx,json=excludePfx,proto3" json:"exclude_pfx,omitempty"`
	// hash_pfx is a list of path prefixes. If the discovered File path is not a
	// directory, matches one of the prefixes and is not larger than
	// max_hash_file_size, the file will be opened and a file hash built over its
	// content.
	HashPfx         []string `protobuf:"bytes,4,rep,name=hash_pfx,json=hashPfx,proto3" json:"hash_pfx,omitempty"`
	MaxHashFileSize int64    `protobuf:"varint,5,opt,name=max_hash_file_size,json=maxHashFileSize,proto3" json:"max_hash_file_size,omitempty"`
	// walk_cross_device controls whether files on different devices from the
	// include directories should be walked. I.e. if "/" is included, "/tmp" will
	// only be walked if it is not a separate mount point.
	WalkCrossDevice bool `protobuf:"varint,30,opt,name=walk_cross_device,json=walkCrossDevice,proto3" json:"walk_cross_device,omitempty"`
	// ignore_irregular_files controls whether irregular files (i.e. symlinks,
	// sockets, devices, etc) should be ignored.
	// Note that symlinks are NOT followed either way.
	IgnoreIrregularFiles bool `protobuf:"varint,31,opt,name=ignore_irregular_files,json=ignoreIrregularFiles,proto3" json:"ignore_irregular_files,omitempty"`
	// max_directory_depth controls how many levels of directories Walker should
	// walk into an included directory.
	// Defaults to no restriction on depth (i.e. go all the way).
	MaxDirectoryDepth    uint32   `protobuf:"varint,32,opt,name=max_directory_depth,json=maxDirectoryDepth,proto3" json:"max_directory_depth,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Policy) Descriptor

func (*Policy) Descriptor() ([]byte, []int)

func (*Policy) GetExcludePfx

func (m *Policy) GetExcludePfx() []string

func (*Policy) GetHashPfx

func (m *Policy) GetHashPfx() []string

func (*Policy) GetIgnoreIrregularFiles

func (m *Policy) GetIgnoreIrregularFiles() bool

func (*Policy) GetInclude

func (m *Policy) GetInclude() []string

func (*Policy) GetMaxDirectoryDepth

func (m *Policy) GetMaxDirectoryDepth() uint32

func (*Policy) GetMaxHashFileSize

func (m *Policy) GetMaxHashFileSize() int64

func (*Policy) GetVersion

func (m *Policy) GetVersion() uint32

func (*Policy) GetWalkCrossDevice

func (m *Policy) GetWalkCrossDevice() bool

func (*Policy) ProtoMessage

func (*Policy) ProtoMessage()

func (*Policy) Reset

func (m *Policy) Reset()

func (*Policy) String

func (m *Policy) String() string

func (*Policy) XXX_DiscardUnknown

func (m *Policy) XXX_DiscardUnknown()

func (*Policy) XXX_Marshal

func (m *Policy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Policy) XXX_Merge

func (m *Policy) XXX_Merge(src proto.Message)

func (*Policy) XXX_Size

func (m *Policy) XXX_Size() int

func (*Policy) XXX_Unmarshal

func (m *Policy) XXX_Unmarshal(b []byte) error

type ReportConfig

type ReportConfig struct {
	// version is the version of the proto structure.
	Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// exclude_pfx is a list of path prefixes which will be excluded from being
	// reported. Note that these are prefixes. Any path matching one of these
	// prefixes will be ignored. These are in addition to the exclusions in the
	// client policy so more things can be recorded (but ignored in the default
	// report).
	ExcludePfx           []string `protobuf:"bytes,2,rep,name=exclude_pfx,json=excludePfx,proto3" json:"exclude_pfx,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReportConfig) Descriptor

func (*ReportConfig) Descriptor() ([]byte, []int)

func (*ReportConfig) GetExcludePfx

func (m *ReportConfig) GetExcludePfx() []string

func (*ReportConfig) GetVersion

func (m *ReportConfig) GetVersion() uint32

func (*ReportConfig) ProtoMessage

func (*ReportConfig) ProtoMessage()

func (*ReportConfig) Reset

func (m *ReportConfig) Reset()

func (*ReportConfig) String

func (m *ReportConfig) String() string

func (*ReportConfig) XXX_DiscardUnknown

func (m *ReportConfig) XXX_DiscardUnknown()

func (*ReportConfig) XXX_Marshal

func (m *ReportConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportConfig) XXX_Merge

func (m *ReportConfig) XXX_Merge(src proto.Message)

func (*ReportConfig) XXX_Size

func (m *ReportConfig) XXX_Size() int

func (*ReportConfig) XXX_Unmarshal

func (m *ReportConfig) XXX_Unmarshal(b []byte) error

type Review

type Review struct {
	// The ID of the Walk that was reviewed and considered ok.
	// This will become the last known good.
	WalkId string `protobuf:"bytes,1,opt,name=walk_id,json=walkId,proto3" json:"walk_id,omitempty"`
	// Reference to the Walk source (e.g. absolute path).
	WalkReference string `protobuf:"bytes,2,opt,name=walk_reference,json=walkReference,proto3" json:"walk_reference,omitempty"`
	// Mandatory fingerprint of the walk file (to ensure integrity).
	Fingerprint          *Fingerprint `protobuf:"bytes,3,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*Review) Descriptor

func (*Review) Descriptor() ([]byte, []int)

func (*Review) GetFingerprint

func (m *Review) GetFingerprint() *Fingerprint

func (*Review) GetWalkId

func (m *Review) GetWalkId() string

func (*Review) GetWalkReference

func (m *Review) GetWalkReference() string

func (*Review) ProtoMessage

func (*Review) ProtoMessage()

func (*Review) Reset

func (m *Review) Reset()

func (*Review) String

func (m *Review) String() string

func (*Review) XXX_DiscardUnknown

func (m *Review) XXX_DiscardUnknown()

func (*Review) XXX_Marshal

func (m *Review) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Review) XXX_Merge

func (m *Review) XXX_Merge(src proto.Message)

func (*Review) XXX_Size

func (m *Review) XXX_Size() int

func (*Review) XXX_Unmarshal

func (m *Review) XXX_Unmarshal(b []byte) error

type Reviews

type Reviews struct {
	Review               map[string]*Review `` /* 153-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

Reviews is a collection of "known good" states, one per host. It is used to keep the default to compare newer reports against.

func (*Reviews) Descriptor

func (*Reviews) Descriptor() ([]byte, []int)

func (*Reviews) GetReview

func (m *Reviews) GetReview() map[string]*Review

func (*Reviews) ProtoMessage

func (*Reviews) ProtoMessage()

func (*Reviews) Reset

func (m *Reviews) Reset()

func (*Reviews) String

func (m *Reviews) String() string

func (*Reviews) XXX_DiscardUnknown

func (m *Reviews) XXX_DiscardUnknown()

func (*Reviews) XXX_Marshal

func (m *Reviews) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Reviews) XXX_Merge

func (m *Reviews) XXX_Merge(src proto.Message)

func (*Reviews) XXX_Size

func (m *Reviews) XXX_Size() int

func (*Reviews) XXX_Unmarshal

func (m *Reviews) XXX_Unmarshal(b []byte) error

type Walk

type Walk struct {
	// A unique string identifying this specific Walk.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// version is the version of the proto structure.
	Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	// policy is the Policy that was used for the file walk.
	Policy *Policy `protobuf:"bytes,3,opt,name=policy,proto3" json:"policy,omitempty"`
	// file is a list of all files including metadata that were discovered.
	File []*File `protobuf:"bytes,4,rep,name=file,proto3" json:"file,omitempty"`
	// notification is a list of notifications that occurred during a walk.
	Notification []*Notification `protobuf:"bytes,5,rep,name=notification,proto3" json:"notification,omitempty"`
	// hostname of the machine the walk originates from.
	Hostname string `protobuf:"bytes,10,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// start and stop time of the walk.
	StartWalk            *timestamp.Timestamp `protobuf:"bytes,11,opt,name=start_walk,json=startWalk,proto3" json:"start_walk,omitempty"`
	StopWalk             *timestamp.Timestamp `protobuf:"bytes,12,opt,name=stop_walk,json=stopWalk,proto3" json:"stop_walk,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Walk) Descriptor

func (*Walk) Descriptor() ([]byte, []int)

func (*Walk) GetFile

func (m *Walk) GetFile() []*File

func (*Walk) GetHostname

func (m *Walk) GetHostname() string

func (*Walk) GetId

func (m *Walk) GetId() string

func (*Walk) GetNotification

func (m *Walk) GetNotification() []*Notification

func (*Walk) GetPolicy

func (m *Walk) GetPolicy() *Policy

func (*Walk) GetStartWalk

func (m *Walk) GetStartWalk() *timestamp.Timestamp

func (*Walk) GetStopWalk

func (m *Walk) GetStopWalk() *timestamp.Timestamp

func (*Walk) GetVersion

func (m *Walk) GetVersion() uint32

func (*Walk) ProtoMessage

func (*Walk) ProtoMessage()

func (*Walk) Reset

func (m *Walk) Reset()

func (*Walk) String

func (m *Walk) String() string

func (*Walk) XXX_DiscardUnknown

func (m *Walk) XXX_DiscardUnknown()

func (*Walk) XXX_Marshal

func (m *Walk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Walk) XXX_Merge

func (m *Walk) XXX_Merge(src proto.Message)

func (*Walk) XXX_Size

func (m *Walk) XXX_Size() int

func (*Walk) XXX_Unmarshal

func (m *Walk) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL