forked from nimerix/psremote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsremote.go
339 lines (259 loc) · 7.77 KB
/
psremote.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package psremote
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"os/exec"
"strconv"
"strings"
)
const (
powerShellFalse = "False"
powerShellTrue = "True"
)
type PSRemote struct {
UserName string
Password string
ComputerName string
paramSB string
replaceParam string
UseSSL bool
Stdout io.Writer
Stderr io.Writer
}
func NewPSRemote(userName, password, computerName string, useSSL bool) (*PSRemote, error) {
psremote := new(PSRemote)
psremote.ComputerName = computerName
psremote.UserName = userName
psremote.Password = password
psremote.UseSSL = useSSL
psremote.replaceParam = "'`n',\"`n\""
psremote.paramSB = `param([string]$paramsString)
$paramsString = [Regex]::Escape($paramsString)
$params = ConvertFrom-StringData -StringData "$($paramsString -replace` + psremote.replaceParam + `)"
foreach ($param in $params.GetEnumerator()){
Set-Variable -Name $param.key -Value $param.value
}`
return psremote, nil
}
func (ps *PSRemote) Run(scriptBlock string, params map[string]string) error {
_, err := ps.Output(scriptBlock, params)
return err
}
func (ps *PSRemote) RunWinRM(scriptBlock string, params map[string]string) error {
_, err := ps.OutputWinRm(scriptBlock, params)
return err
}
// Output runs the PowerShell command and returns its standard output.
func (ps *PSRemote) Output(fileContents string, params map[string]string) (string, error) {
fileContents = ps.paramSB + fileContents
path, err := ps.getPowerShellPath()
if err != nil {
return "", err
}
filename, err := saveScript(fileContents)
if err != nil {
return "", err
}
debug := os.Getenv("PACKER_POWERSHELL_DEBUG") != ""
verbose := debug || os.Getenv("PACKER_POWERSHELL_VERBOSE") != ""
if !debug {
defer os.Remove(filename)
}
var stdout, stderr bytes.Buffer
args := createArgs(filename, params)
if verbose {
log.Printf("Run: %s %s", path, args)
}
command := exec.Command(path, args...)
command.Stdout = &stdout
command.Stderr = &stderr
err = command.Run()
if ps.Stdout != nil {
stdout.WriteTo(ps.Stdout)
}
if ps.Stderr != nil {
stderr.WriteTo(ps.Stderr)
}
stderrString := strings.TrimSpace(stderr.String())
if _, ok := err.(*exec.ExitError); ok {
err = fmt.Errorf("PowerShell error: %s", stderrString)
}
if len(stderrString) > 0 {
err = fmt.Errorf("PowerShell error: %s", stderrString)
}
stdoutString := strings.TrimSpace(stdout.String())
if verbose && stdoutString != "" {
log.Printf("stdout: %s", stdoutString)
}
// only write the stderr string if verbose because
// the error string will already be in the err return value.
if verbose && stderrString != "" {
log.Printf("stderr: %s", stderrString)
}
return stdoutString, err
}
func (ps *PSRemote) OutputWinRm(scriptBlock string, params map[string]string) (string, error) {
// Unable to escape back tick in Go
script := ""
if ps.UserName != "" && ps.Password != "" {
script += `$secpasswd = ConvertTo-SecureString "` + ps.Password + `" -AsPlainText -Force
$creds = New-Object System.Management.Automation.PSCredential ("` + ps.UserName + `", $secpasswd)
Invoke-Command -Computername "` + ps.ComputerName + `" -credential $creds -scriptblock {` + scriptBlock + `}`
} else {
script += `
Invoke-Command -Computername "` + ps.ComputerName + `" -scriptblock {` + scriptBlock + `}`
}
if ps.UseSSL {
script += ` -UseSSL`
}
stdoutString, err := ps.Output(script, params)
return stdoutString, err
}
// Serialises parameters as StringData
func createArgs(filename string, params map[string]string) []string {
args := make([]string, 6)
args[0] = "-ExecutionPolicy"
args[1] = "Bypass"
args[2] = "-NoProfile"
args[3] = "-File"
args[4] = filename
arg5 := ""
for key, value := range params {
var after = key + "=" + value + "`n"
arg5 += after
}
args[5] = arg5
return args
}
func IsPowershellAvailable() (bool, string, error) {
path, err := exec.LookPath("powershell")
if err != nil {
return false, "", err
} else {
return true, path, err
}
}
func (ps *PSRemote) getPowerShellPath() (string, error) {
powershellAvailable, path, err := IsPowershellAvailable()
if !powershellAvailable {
log.Fatal("Cannot find PowerShell in the path")
return "", err
}
return path, nil
}
func saveScript(fileContents string) (string, error) {
file, err := ioutil.TempFile(os.TempDir(), "ps")
if err != nil {
return "", err
}
_, err = file.Write([]byte(fileContents))
if err != nil {
return "", err
}
err = file.Close()
if err != nil {
return "", err
}
newFilename := file.Name() + ".ps1"
err = os.Rename(file.Name(), newFilename)
if err != nil {
return "", err
}
return newFilename, nil
}
func GetHostAvailableMemory() float64 {
var script = "(Get-WmiObject Win32_OperatingSystem).FreePhysicalMemory / 1024"
var ps PSRemote
output, _ := ps.Output(script, nil)
freeMB, _ := strconv.ParseFloat(output, 64)
return freeMB
}
func GetHostName(ip string) (string, error) {
var script = `
param([string]$ip)
try {
$HostName = [System.Net.Dns]::GetHostEntry($ip).HostName
if ($HostName -ne $null) {
$HostName = $HostName.Split('.')[0]
}
$HostName
} catch { }
`
//
var ps PSRemote
cmdOut, err := ps.Output(script, map[string]string{"ip": ip})
if err != nil {
return "", err
}
return cmdOut, nil
}
func IsCurrentUserAnAdministrator() (bool, error) {
var script = `
$identity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
$principal = new-object System.Security.Principal.WindowsPrincipal($identity)
$administratorRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator
return $principal.IsInRole($administratorRole)
`
var ps PSRemote
cmdOut, err := ps.Output(script, nil)
if err != nil {
return false, err
}
res := strings.TrimSpace(cmdOut)
return res == powerShellTrue, nil
}
func ModuleExists(moduleName string) (bool, error) {
var script = `
param([string]$moduleName)
(Get-Module -Name $moduleName) -ne $null
`
var ps PSRemote
cmdOut, err := ps.Output(script, nil)
if err != nil {
return false, err
}
res := strings.TrimSpace(cmdOut)
if res == powerShellFalse {
err := fmt.Errorf("PowerShell %s module is not loaded. Make sure %s feature is on.", moduleName, moduleName)
return false, err
}
return true, nil
}
func HasVirtualMachineVirtualizationExtensions() (bool, error) {
var script = `
(GET-Command Set-VMProcessor).parameters.keys -contains "ExposeVirtualizationExtensions"
`
var ps PSRemote
cmdOut, err := ps.Output(script, nil)
if err != nil {
return false, err
}
var hasVirtualMachineVirtualizationExtensions = strings.TrimSpace(cmdOut) == "True"
return hasVirtualMachineVirtualizationExtensions, err
}
func SetUnattendedProductKey(path string, productKey string) error {
var script = `
param([string]$path,[string]$productKey)
$unattend = [xml](Get-Content -Path $path)
$ns = @{ un = 'urn:schemas-microsoft-com:unattend' }
$setupNode = $unattend |
Select-Xml -XPath '//un:settings[@pass = "specialize"]/un:component[@name = "Microsoft-Windows-Shell-Setup"]' -Namespace $ns |
Select-Object -ExpandProperty Node
$productKeyNode = $setupNode |
Select-Xml -XPath '//un:ProductKey' -Namespace $ns |
Select-Object -ExpandProperty Node
if ($productKeyNode -eq $null) {
$productKeyNode = $unattend.CreateElement('ProductKey', $ns.un)
[Void]$setupNode.AppendChild($productKeyNode)
}
$productKeyNode.InnerText = $productKey
$unattend.Save($path)
`
var ps PSRemote
err := ps.Run(script, map[string]string{"path": path, "productKey": productKey})
return err
}