You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

199 line
6.0 KiB

  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build windows
  5. // Package registry provides access to the Windows registry.
  6. //
  7. // Here is a simple example, opening a registry key and reading a string value from it.
  8. //
  9. // k, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion`, registry.QUERY_VALUE)
  10. // if err != nil {
  11. // log.Fatal(err)
  12. // }
  13. // defer k.Close()
  14. //
  15. // s, _, err := k.GetStringValue("SystemRoot")
  16. // if err != nil {
  17. // log.Fatal(err)
  18. // }
  19. // fmt.Printf("Windows system root is %q\n", s)
  20. //
  21. package registry
  22. import (
  23. "io"
  24. "syscall"
  25. "time"
  26. )
  27. const (
  28. // Registry key security and access rights.
  29. // See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724878.aspx
  30. // for details.
  31. ALL_ACCESS = 0xf003f
  32. CREATE_LINK = 0x00020
  33. CREATE_SUB_KEY = 0x00004
  34. ENUMERATE_SUB_KEYS = 0x00008
  35. EXECUTE = 0x20019
  36. NOTIFY = 0x00010
  37. QUERY_VALUE = 0x00001
  38. READ = 0x20019
  39. SET_VALUE = 0x00002
  40. WOW64_32KEY = 0x00200
  41. WOW64_64KEY = 0x00100
  42. WRITE = 0x20006
  43. )
  44. // Key is a handle to an open Windows registry key.
  45. // Keys can be obtained by calling OpenKey; there are
  46. // also some predefined root keys such as CURRENT_USER.
  47. // Keys can be used directly in the Windows API.
  48. type Key syscall.Handle
  49. const (
  50. // Windows defines some predefined root keys that are always open.
  51. // An application can use these keys as entry points to the registry.
  52. // Normally these keys are used in OpenKey to open new keys,
  53. // but they can also be used anywhere a Key is required.
  54. CLASSES_ROOT = Key(syscall.HKEY_CLASSES_ROOT)
  55. CURRENT_USER = Key(syscall.HKEY_CURRENT_USER)
  56. LOCAL_MACHINE = Key(syscall.HKEY_LOCAL_MACHINE)
  57. USERS = Key(syscall.HKEY_USERS)
  58. CURRENT_CONFIG = Key(syscall.HKEY_CURRENT_CONFIG)
  59. PERFORMANCE_DATA = Key(syscall.HKEY_PERFORMANCE_DATA)
  60. )
  61. // Close closes open key k.
  62. func (k Key) Close() error {
  63. return syscall.RegCloseKey(syscall.Handle(k))
  64. }
  65. // OpenKey opens a new key with path name relative to key k.
  66. // It accepts any open key, including CURRENT_USER and others,
  67. // and returns the new key and an error.
  68. // The access parameter specifies desired access rights to the
  69. // key to be opened.
  70. func OpenKey(k Key, path string, access uint32) (Key, error) {
  71. p, err := syscall.UTF16PtrFromString(path)
  72. if err != nil {
  73. return 0, err
  74. }
  75. var subkey syscall.Handle
  76. err = syscall.RegOpenKeyEx(syscall.Handle(k), p, 0, access, &subkey)
  77. if err != nil {
  78. return 0, err
  79. }
  80. return Key(subkey), nil
  81. }
  82. // OpenRemoteKey opens a predefined registry key on another
  83. // computer pcname. The key to be opened is specified by k, but
  84. // can only be one of LOCAL_MACHINE, PERFORMANCE_DATA or USERS.
  85. // If pcname is "", OpenRemoteKey returns local computer key.
  86. func OpenRemoteKey(pcname string, k Key) (Key, error) {
  87. var err error
  88. var p *uint16
  89. if pcname != "" {
  90. p, err = syscall.UTF16PtrFromString(`\\` + pcname)
  91. if err != nil {
  92. return 0, err
  93. }
  94. }
  95. var remoteKey syscall.Handle
  96. err = regConnectRegistry(p, syscall.Handle(k), &remoteKey)
  97. if err != nil {
  98. return 0, err
  99. }
  100. return Key(remoteKey), nil
  101. }
  102. // ReadSubKeyNames returns the names of subkeys of key k.
  103. // The parameter n controls the number of returned names,
  104. // analogous to the way os.File.Readdirnames works.
  105. func (k Key) ReadSubKeyNames(n int) ([]string, error) {
  106. names := make([]string, 0)
  107. // Registry key size limit is 255 bytes and described there:
  108. // https://msdn.microsoft.com/library/windows/desktop/ms724872.aspx
  109. buf := make([]uint16, 256) //plus extra room for terminating zero byte
  110. loopItems:
  111. for i := uint32(0); ; i++ {
  112. if n > 0 {
  113. if len(names) == n {
  114. return names, nil
  115. }
  116. }
  117. l := uint32(len(buf))
  118. for {
  119. err := syscall.RegEnumKeyEx(syscall.Handle(k), i, &buf[0], &l, nil, nil, nil, nil)
  120. if err == nil {
  121. break
  122. }
  123. if err == syscall.ERROR_MORE_DATA {
  124. // Double buffer size and try again.
  125. l = uint32(2 * len(buf))
  126. buf = make([]uint16, l)
  127. continue
  128. }
  129. if err == _ERROR_NO_MORE_ITEMS {
  130. break loopItems
  131. }
  132. return names, err
  133. }
  134. names = append(names, syscall.UTF16ToString(buf[:l]))
  135. }
  136. if n > len(names) {
  137. return names, io.EOF
  138. }
  139. return names, nil
  140. }
  141. // CreateKey creates a key named path under open key k.
  142. // CreateKey returns the new key and a boolean flag that reports
  143. // whether the key already existed.
  144. // The access parameter specifies the access rights for the key
  145. // to be created.
  146. func CreateKey(k Key, path string, access uint32) (newk Key, openedExisting bool, err error) {
  147. var h syscall.Handle
  148. var d uint32
  149. err = regCreateKeyEx(syscall.Handle(k), syscall.StringToUTF16Ptr(path),
  150. 0, nil, _REG_OPTION_NON_VOLATILE, access, nil, &h, &d)
  151. if err != nil {
  152. return 0, false, err
  153. }
  154. return Key(h), d == _REG_OPENED_EXISTING_KEY, nil
  155. }
  156. // DeleteKey deletes the subkey path of key k and its values.
  157. func DeleteKey(k Key, path string) error {
  158. return regDeleteKey(syscall.Handle(k), syscall.StringToUTF16Ptr(path))
  159. }
  160. // A KeyInfo describes the statistics of a key. It is returned by Stat.
  161. type KeyInfo struct {
  162. SubKeyCount uint32
  163. MaxSubKeyLen uint32 // size of the key's subkey with the longest name, in Unicode characters, not including the terminating zero byte
  164. ValueCount uint32
  165. MaxValueNameLen uint32 // size of the key's longest value name, in Unicode characters, not including the terminating zero byte
  166. MaxValueLen uint32 // longest data component among the key's values, in bytes
  167. lastWriteTime syscall.Filetime
  168. }
  169. // ModTime returns the key's last write time.
  170. func (ki *KeyInfo) ModTime() time.Time {
  171. return time.Unix(0, ki.lastWriteTime.Nanoseconds())
  172. }
  173. // Stat retrieves information about the open key k.
  174. func (k Key) Stat() (*KeyInfo, error) {
  175. var ki KeyInfo
  176. err := syscall.RegQueryInfoKey(syscall.Handle(k), nil, nil, nil,
  177. &ki.SubKeyCount, &ki.MaxSubKeyLen, nil, &ki.ValueCount,
  178. &ki.MaxValueNameLen, &ki.MaxValueLen, nil, &ki.lastWriteTime)
  179. if err != nil {
  180. return nil, err
  181. }
  182. return &ki, nil
  183. }