Documentation ¶
Index ¶
- Constants
- Variables
- func CoTaskMemFree(pv uintptr)
- func ConvertWindowsString(winput []uint8) string
- func ConvertWindowsStringList(winput []uint16) []string
- func GetAce(acl *Acl, index uint32, ace **AccessAllowedAce) error
- func GetAclInformation(acl *Acl, info *AclSizeInformation, class uint32) error
- func GetNamedSecurityInfo(objectName string, objectType int32, secInfo uint32, ...) error
- func GetProgramDataDir() (path string, err error)
- func GetWindowsBuildString() (verstring string, err error)
- func IsProcessElevated() (bool, error)
- func LogEventViewer(servicename string, msgnum uint32, arg string)
- func SHGetKnownFolderPath(rfid *GUID, dwFlags uint32, hToken windows.Handle, pszPath *uintptr) (retval error)
- type AccessAllowedAce
- type Acl
- type AclSizeInformation
- type GUID
- type SwapMemoryStat
- type VirtualMemoryStat
Constants ¶
const ( AclRevisionInformationEnum = 1 AclSizeInformationEnum = 2 )
const ( ACCESS_ALLOWED_ACE_TYPE = 0 ACCESS_DENIED_ACE_TYPE = 1 )
const ( SE_UNKNOWN_OBJECT_TYPE = iota SE_FILE_OBJECT SE_SERVICE SE_PRINTER SE_REGISTRY_KEY SE_LMSHARE SE_KERNEL_OBJECT SE_WINDOW_OBJECT SE_DS_OBJECT SE_DS_OBJECT_ALL SE_PROVIDER_DEFINED_OBJECT SE_WMIGUID_OBJECT SE_REGISTRY_WOW64_32KEY )
https://msdn.microsoft.com/en-us/library/windows/desktop/aa379593.aspx
const ( OWNER_SECURITY_INFORMATION = 0x00001 GROUP_SECURITY_INFORMATION = 0x00002 DACL_SECURITY_INFORMATION = 0x00004 SACL_SECURITY_INFORMATION = 0x00008 LABEL_SECURITY_INFORMATION = 0x00010 ATTRIBUTE_SECURITY_INFORMATION = 0x00020 SCOPE_SECURITY_INFORMATION = 0x00040 PROCESS_TRUST_LABEL_SECURITY_INFORMATION = 0x00080 BACKUP_SECURITY_INFORMATION = 0x10000 PROTECTED_DACL_SECURITY_INFORMATION = 0x80000000 PROTECTED_SACL_SECURITY_INFORMATION = 0x40000000 UNPROTECTED_DACL_SECURITY_INFORMATION = 0x20000000 UNPROTECTED_SACL_SECURITY_INFORMATION = 0x10000000 )
https://msdn.microsoft.com/en-us/library/windows/desktop/aa379573.aspx
Variables ¶
var ( // this is the GUID definition from shlobj.h //DEFINE_KNOWN_FOLDER(FOLDERID_ProgramData, 0x62AB5D82, 0xFDC1, 0x4DC3, 0xA9, 0xDD, 0x07, 0x0D, 0x1D, 0x49, 0x5D, 0x97); FOLDERIDProgramData = GUID{0x62AB5D82, 0xFDC1, 0x4DC3, [8]byte{0xA9, 0xDD, 0x07, 0x0D, 0x1D, 0x49, 0x5D, 0x97}} )
https://docs.microsoft.com/en-us/windows/desktop/shell/knownfolderid
FOLDERID_ProgramData GUID {62AB5D82-FDC1-4DC3-A9DD-070D1D495D97} Display Name ProgramData Folder Type FIXED Default Path %ALLUSERSPROFILE% (%ProgramData%, %SystemDrive%\ProgramData) CSIDL Equivalent CSIDL_COMMON_APPDATA Legacy Display Name Application Data Legacy Default Path %ALLUSERSPROFILE%\Application Data
Functions ¶
func CoTaskMemFree ¶
func CoTaskMemFree(pv uintptr)
CoTaskMemFree free memory returned from SHGetKnownFolderPath
func ConvertWindowsString ¶
ConvertWindowsString converts a windows c-string into a go string. Even though the input is array of uint8, the underlying data is expected to be uint16 (unicode)
func ConvertWindowsStringList ¶
ConvertWindowsStringList Converts a windows-style C list of strings (single null terminated elements double-null indicates the end of the list) to an array of Go strings
func GetAce ¶
func GetAce(acl *Acl, index uint32, ace **AccessAllowedAce) error
GetAce calls Windows 'GetAce' function to obtain a pointer to an access control entry (ACE) in an access control list (ACL).
func GetAclInformation ¶
func GetAclInformation(acl *Acl, info *AclSizeInformation, class uint32) error
GetAclInformation calls windows 'GetAclInformation' function to retrieve information about an access control list (ACL).
func GetNamedSecurityInfo ¶
func GetNamedSecurityInfo(objectName string, objectType int32, secInfo uint32, owner, group **windows.SID, dacl, sacl **Acl, secDesc *windows.Handle) error
GetNamedSecurityInfo calls Windows 'GetNamedSecurityInfo' function to retrieve a copy of the security descriptor for an object specified by name.
func GetProgramDataDir ¶
GetProgramDataDir returns the current programdatadir, usually c:\programdata\Datadog
func GetWindowsBuildString ¶
GetWindowsBuildString retrieves the windows build version by querying the resource string as directed here https://msdn.microsoft.com/en-us/library/windows/desktop/ms724429(v=vs.85).aspx as of Windows 8.1, the core GetVersion() APIs have been changed to return the version of Windows manifested with the application, not the application version
func IsProcessElevated ¶
IsProcessElevated opens the process token and checks elevation status, returning true if the process is elevated and false if not elevated.
func LogEventViewer ¶
LogEventViewer will open the event viewer API and log a single message to the event viewer. The string identified in the msgnum parameter must exist in the application's message catalog go log api only provides for a single argument to be passed, so can only include one positional argument
Types ¶
type AccessAllowedAce ¶
type AclSizeInformation ¶
type SwapMemoryStat ¶
SwapMemoryStat contains swap statistics
type VirtualMemoryStat ¶
type VirtualMemoryStat struct { // Total amount of RAM on this system Total uint64 // RAM available for programs to allocate // // This value is computed from the kernel specific values. Available uint64 // RAM used by programs // // This value is computed from the kernel specific values. Used uint64 // Percentage of RAM used by programs // // This value is computed from the kernel specific values. UsedPercent float64 }
VirtualMemoryStat contains basic metrics for virtual memory
func VirtualMemory ¶
func VirtualMemory() (*VirtualMemoryStat, error)
VirtualMemory returns virtual memory metrics for the machine