Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
85ab8621
Commit
85ab8621
authored
Jun 07, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder/vmware: Randomize HTTP port to avoid collisions
parent
56108f2b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
17 deletions
+66
-17
builder/vmware/builder.go
builder/vmware/builder.go
+14
-0
builder/vmware/builder_test.go
builder/vmware/builder_test.go
+28
-0
builder/vmware/step_http_server.go
builder/vmware/step_http_server.go
+22
-15
builder/vmware/step_type_boot_command.go
builder/vmware/step_type_boot_command.go
+2
-2
No files found.
builder/vmware/builder.go
View file @
85ab8621
...
...
@@ -26,6 +26,8 @@ type config struct {
VMName
string
`mapstructure:"vm_name"`
OutputDir
string
`mapstructure:"output_directory"`
HTTPDir
string
`mapstructure:"http_directory"`
HTTPPortMin
uint
`mapstructure:"http_port_min"`
HTTPPortMax
uint
`mapstructure:"http_port_max"`
BootCommand
[]
string
`mapstructure:"boot_command"`
BootWait
time
.
Duration
ShutdownCommand
string
`mapstructure:"shutdown_command"`
...
...
@@ -55,6 +57,14 @@ func (b *Builder) Prepare(raw interface{}) (err error) {
b
.
config
.
VMName
=
"packer"
}
if
b
.
config
.
HTTPPortMin
==
0
{
b
.
config
.
HTTPPortMin
=
8000
}
if
b
.
config
.
HTTPPortMax
==
0
{
b
.
config
.
HTTPPortMax
=
9000
}
if
b
.
config
.
VNCPortMin
==
0
{
b
.
config
.
VNCPortMin
=
5900
}
...
...
@@ -70,6 +80,10 @@ func (b *Builder) Prepare(raw interface{}) (err error) {
// Accumulate any errors
errs
:=
make
([]
error
,
0
)
if
b
.
config
.
HTTPPortMin
>
b
.
config
.
HTTPPortMax
{
errs
=
append
(
errs
,
errors
.
New
(
"http_port_min must be less than http_port_max"
))
}
if
b
.
config
.
ISOUrl
==
""
{
errs
=
append
(
errs
,
errors
.
New
(
"An iso_url must be specified."
))
}
...
...
builder/vmware/builder_test.go
View file @
85ab8621
...
...
@@ -65,6 +65,34 @@ func TestBuilderPrepare_Defaults(t *testing.T) {
}
}
func
TestBuilderPrepare_HTTPPort
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Bad
config
[
"http_port_min"
]
=
1000
config
[
"http_port_max"
]
=
500
err
:=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Bad
config
[
"http_port_min"
]
=
-
500
err
=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Good
config
[
"http_port_min"
]
=
500
config
[
"http_port_max"
]
=
1000
err
=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
}
func
TestBuilderPrepare_ISOUrl
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
...
...
builder/vmware/step_http_server.go
View file @
85ab8621
...
...
@@ -4,6 +4,8 @@ import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"log"
"math/rand"
"net"
"net/http"
)
...
...
@@ -25,26 +27,31 @@ func (s *stepHTTPServer) Run(state map[string]interface{}) multistep.StepAction
config
:=
state
[
"config"
]
.
(
*
config
)
ui
:=
state
[
"ui"
]
.
(
packer
.
Ui
)
httpPort
:=
0
if
config
.
HTTPDir
!=
""
{
httpPort
=
8080
httpAddr
:=
fmt
.
Sprintf
(
":%d"
,
httpPort
)
ui
.
Say
(
fmt
.
Sprintf
(
"Starting HTTP server on port %d"
,
httpPort
))
var
httpPort
uint
=
0
if
config
.
HTTPDir
==
""
{
state
[
"http_port"
]
=
httpPort
}
// Start the TCP listener
// Find an available TCP port for our HTTP server
var
httpAddr
string
portRange
:=
int
(
config
.
HTTPPortMax
-
config
.
HTTPPortMin
)
for
{
var
err
error
httpPort
=
uint
(
rand
.
Intn
(
portRange
))
+
config
.
HTTPPortMin
httpAddr
=
fmt
.
Sprintf
(
":%d"
,
httpPort
)
log
.
Printf
(
"Trying port: %d"
,
httpPort
)
s
.
l
,
err
=
net
.
Listen
(
"tcp"
,
httpAddr
)
if
err
!=
nil
{
ui
.
Error
(
fmt
.
Sprintf
(
"Error starting HTTP server: %s"
,
err
))
return
multistep
.
ActionHalt
if
err
==
nil
{
break
}
}
ui
.
Say
(
fmt
.
Sprintf
(
"Starting HTTP server on port %d"
,
httpPort
))
// Start the HTTP server and run it in the background
fileServer
:=
http
.
FileServer
(
http
.
Dir
(
config
.
HTTPDir
))
server
:=
&
http
.
Server
{
Addr
:
httpAddr
,
Handler
:
fileServer
}
go
server
.
Serve
(
s
.
l
)
}
// Save the address into the state so it can be accessed in the future
state
[
"http_port"
]
=
httpPort
...
...
builder/vmware/step_type_boot_command.go
View file @
85ab8621
...
...
@@ -19,7 +19,7 @@ const KeyLeftShift uint32 = 0xFFE1
type
bootCommandTemplateData
struct
{
HTTPIP
string
HTTPPort
int
HTTPPort
u
int
Name
string
}
...
...
@@ -37,7 +37,7 @@ type stepTypeBootCommand struct{}
func
(
s
*
stepTypeBootCommand
)
Run
(
state
map
[
string
]
interface
{})
multistep
.
StepAction
{
config
:=
state
[
"config"
]
.
(
*
config
)
httpPort
:=
state
[
"http_port"
]
.
(
int
)
httpPort
:=
state
[
"http_port"
]
.
(
u
int
)
ui
:=
state
[
"ui"
]
.
(
packer
.
Ui
)
vncPort
:=
state
[
"vnc_port"
]
.
(
uint
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment