Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
emulab-devel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emulab
emulab-devel
Commits
bb227c05
Commit
bb227c05
authored
22 years ago
by
Leigh B. Stoller
Browse files
Options
Downloads
Patches
Plain Diff
More sillyness.
parent
24a19699
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
db/newwanode.in
+78
-17
78 additions, 17 deletions
db/newwanode.in
with
78 additions
and
17 deletions
db/newwanode.in
+
78
−
17
View file @
bb227c05
...
@@ -12,10 +12,11 @@ use Getopt::Std;
...
@@ -12,10 +12,11 @@ use Getopt::Std;
#
#
sub
usage
()
sub
usage
()
{
{
print
"
Usage: newwanode [-w] -t <nodetype> -i <ip address>
\n
";
print
"
Usage:
"
.
"
newwanode [-w] [-n nickname] -t <nodetype> -i <ip address>
\n
";
exit
(
1
);
exit
(
1
);
}
}
my
$optlist
=
"
wt:i:
";
my
$optlist
=
"
wt:i:
v:n:
";
#
#
# Configure variables
# Configure variables
...
@@ -51,6 +52,7 @@ if ($UID != getpwnam("nobody") && !TBAdmin($UID)) {
...
@@ -51,6 +52,7 @@ if ($UID != getpwnam("nobody") && !TBAdmin($UID)) {
my
$nodetype
;
my
$nodetype
;
my
$nodeip
;
my
$nodeip
;
my
$fromweb
=
0
;
my
$fromweb
=
0
;
my
$nickname
;
my
$nodename
;
my
$nodename
;
my
$nodevtype
;
my
$nodevtype
;
my
$nodevname
;
my
$nodevname
;
...
@@ -72,6 +74,12 @@ if (defined($options{"i"})) {
...
@@ -72,6 +74,12 @@ if (defined($options{"i"})) {
if
(
defined
(
$options
{"
t
"}))
{
if
(
defined
(
$options
{"
t
"}))
{
$nodetype
=
$options
{"
t
"};
$nodetype
=
$options
{"
t
"};
}
}
if
(
defined
(
$options
{"
v
"}))
{
$nodevtype
=
$options
{"
v
"};
}
if
(
defined
(
$options
{"
n
"}))
{
$nickname
=
$options
{"
n
"};
}
if
(
!
defined
(
$nodeip
)
||
!
defined
(
$nodetype
))
{
if
(
!
defined
(
$nodeip
)
||
!
defined
(
$nodetype
))
{
usage
();
usage
();
}
}
...
@@ -91,6 +99,22 @@ if ($nodeip =~ /^([\d\.]+)$/) {
...
@@ -91,6 +99,22 @@ if ($nodeip =~ /^([\d\.]+)$/) {
else
{
else
{
die
("
*** Bad data in
$nodeip
\n
");
die
("
*** Bad data in
$nodeip
\n
");
}
}
if
(
defined
(
$nodevtype
))
{
if
(
$nodevtype
=~
/^([\w]+)$/
)
{
$nodevtype
=
$
1
;
}
else
{
die
("
*** Bad data in
$nodevtype
\n
");
}
}
if
(
defined
(
$nickname
))
{
if
(
$nickname
=~
/^([-\w]+)$/
)
{
$nickname
=
$
1
;
}
else
{
die
("
*** Bad data in
$nickname
\n
");
}
}
#
#
# Must be a valid type.
# Must be a valid type.
...
@@ -112,6 +136,19 @@ if ($nodetype ne "pcwa" && $nodetype ne "pcron") {
...
@@ -112,6 +136,19 @@ if ($nodetype ne "pcwa" && $nodetype ne "pcron") {
fatal
("
Can only handle pcwa/pcron nodetype right now!
");
fatal
("
Can only handle pcwa/pcron nodetype right now!
");
}
}
#
# Make sure its a valid vtype too!
#
if
(
defined
(
$nodevtype
))
{
$query_result
=
DBQueryFatal
("
select * from node_types where type='
$nodevtype
'
");
if
(
!
$query_result
->
numrows
)
{
fatal
("
*** $0:
\n
"
.
"
No such nodevtype
$nodevtype
is defined in the DB!
\n
");
}
}
#
#
# We need the next id and priority.
# We need the next id and priority.
#
#
...
@@ -143,6 +180,21 @@ if ($nodetype =~ /^pc(\w+)$/) {
...
@@ -143,6 +180,21 @@ if ($nodetype =~ /^pc(\w+)$/) {
else
{
else
{
fatal
("
Could not determine a name from type for
$nodetype
!
");
fatal
("
Could not determine a name from type for
$nodetype
!
");
}
}
if
(
!
defined
(
$nickname
))
{
$nickname
=
$nodename
;
}
#
# Create the virtual type name. Again, this is bogus.
#
if
(
!
defined
(
$nodevtype
))
{
if
(
$nodetype
eq
"
pcwa
")
{
$nodevtype
=
"
pcvwainet
";
}
else
{
$nodevtype
=
"
pcvroninet
";
}
}
#
#
# Enter the records
# Enter the records
...
@@ -153,19 +205,9 @@ DBQueryFatal("insert into nodes ".
...
@@ -153,19 +205,9 @@ DBQueryFatal("insert into nodes ".
"
values ('
$nodename
', '
$nodetype
', '
$nodename
',
"
.
"
values ('
$nodename
', '
$nodetype
', '
$nodename
',
"
.
"
'testnode',
$nextpri
, 'down', 'NORMAL', '
$defosid
')
");
"
'testnode',
$nextpri
, 'down', 'NORMAL', '
$defosid
')
");
#
for
(
$i
=
1
;
$i
<
9
;
$i
++
)
{
# Create the virtual nodes. Again, this is bogus.
#
if
(
$nodetype
eq
"
pcwa
")
{
$nodevtype
=
"
pcvwainet
";
}
else
{
$nodevtype
=
"
pcvroninet
";
}
for
(
$i
=
0
;
$i
<
5
;
$i
++
)
{
my
$priority
=
(
$nextpri
*
100
)
+
$i
;
my
$priority
=
(
$nextpri
*
100
)
+
$i
;
$nodevname
=
"
v
${nodename}${i}
";
$nodevname
=
"
v
${nodename}
-
${i}
";
DBQueryFatal
("
insert into nodes
"
.
DBQueryFatal
("
insert into nodes
"
.
"
(node_id, type, phys_nodeid, role, priority,
"
.
"
(node_id, type, phys_nodeid, role, priority,
"
.
...
@@ -176,8 +218,26 @@ for ($i = 0; $i < 5; $i++) {
...
@@ -176,8 +218,26 @@ for ($i = 0; $i < 5; $i++) {
}
}
DBQueryFatal
("
insert into interfaces
"
.
DBQueryFatal
("
insert into interfaces
"
.
"
(node_id, card, port, IP, iface)
"
.
"
(node_id, card, port, IP, interface_type, iface)
"
.
"
values ('
$nodename
',
$control_net
, 1, '
$nodeip
', 'eth0')
");
"
values ('
$nodename
',
$control_net
, 1, '
$nodeip
',
"
.
"
'fxp0', 'eth0')
");
#
# Again, this is bogus.
#
my
$pid
;
my
$eid
;
if
(
$nodetype
eq
"
pcwa
")
{
$pid
=
"
emulab-ops
";
$eid
=
"
widearea-nodes
";
}
else
{
$pid
=
"
ron
";
$eid
=
"
all
";
}
DBQueryFatal
("
insert into reserved
"
.
"
(node_id, pid, eid, rsrv_time, vname)
"
.
"
values ('
$nodename
', '
$pid
', '
$eid
', now(), '
$nickname
')
");
#
#
# Lets log it.
# Lets log it.
...
@@ -190,7 +250,8 @@ if ($fromweb) {
...
@@ -190,7 +250,8 @@ if ($fromweb) {
"
Name:
$nodename
\n
"
.
"
Name:
$nodename
\n
"
.
"
IP:
$nodeip
\n
"
.
"
IP:
$nodeip
\n
"
.
"
Vtype:
$nodevtype
\n
"
.
"
Vtype:
$nodevtype
\n
"
.
"
Vname:
$nodevname
(actually the last vnode)
\n
",
"
Vname:
$nodevname
(actually the last vnode)
\n
"
.
"
Nickname:
$nickname
\n
",
$TBOPS
);
$TBOPS
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment