Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
ed9b3581
Commit
ed9b3581
authored
Aug 11, 2006
by
Jonathon Duerig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The framework works now. Now to make sure that the sensors are still working.
parent
2638b5bf
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
42 additions
and
37 deletions
+42
-37
pelab/magent/CircularTraffic.cc
pelab/magent/CircularTraffic.cc
+3
-6
pelab/magent/CircularTraffic.h
pelab/magent/CircularTraffic.h
+3
-2
pelab/magent/Command.cc
pelab/magent/Command.cc
+1
-1
pelab/magent/Connection.cc
pelab/magent/Connection.cc
+5
-1
pelab/magent/KernelTcp.cc
pelab/magent/KernelTcp.cc
+14
-4
pelab/magent/TrafficModel.h
pelab/magent/TrafficModel.h
+6
-6
pelab/magent/main.cc
pelab/magent/main.cc
+10
-17
No files found.
pelab/magent/CircularTraffic.cc
View file @
ed9b3581
...
@@ -54,26 +54,23 @@ Time CircularTraffic::addWrite(TrafficWriteCommand const & newWrite,
...
@@ -54,26 +54,23 @@ Time CircularTraffic::addWrite(TrafficWriteCommand const & newWrite,
}
}
}
}
WriteResult
CircularTraffic
::
writeToPeer
(
ConnectionModel
*
peer
,
void
CircularTraffic
::
writeToPeer
(
ConnectionModel
*
peer
,
Time
const
&
previousTime
)
Time
const
&
previousTime
,
WriteResult
&
result
)
{
{
if
(
usedCount
>
0
)
if
(
usedCount
>
0
)
{
{
WriteResult
result
;
current
=
(
current
+
1
)
%
usedCount
;
current
=
(
current
+
1
)
%
usedCount
;
peer
->
writeMessage
(
writes
[
current
].
size
,
result
);
peer
->
writeMessage
(
writes
[
current
].
size
,
result
);
result
.
nextWrite
=
previousTime
+
writes
[
current
].
delta
;
result
.
nextWrite
=
previousTime
+
writes
[
current
].
delta
;
return
result
;
}
}
else
else
{
{
logWrite
(
ERROR
,
"writeToPeer() called without addWrite() being "
logWrite
(
ERROR
,
"writeToPeer() called without addWrite() being "
"called first. This should be impossible."
);
"called first. This should be impossible."
);
WriteResult
result
;
result
.
isConnected
=
peer
->
isConnected
();
result
.
isConnected
=
peer
->
isConnected
();
result
.
bufferFull
=
false
;
result
.
bufferFull
=
false
;
result
.
nextWrite
=
Time
();
result
.
nextWrite
=
Time
();
return
result
;
}
}
}
}
pelab/magent/CircularTraffic.h
View file @
ed9b3581
...
@@ -15,8 +15,9 @@ public:
...
@@ -15,8 +15,9 @@ public:
virtual
std
::
auto_ptr
<
TrafficModel
>
clone
(
void
);
virtual
std
::
auto_ptr
<
TrafficModel
>
clone
(
void
);
virtual
Time
addWrite
(
TrafficWriteCommand
const
&
newWrite
,
virtual
Time
addWrite
(
TrafficWriteCommand
const
&
newWrite
,
Time
const
&
deadline
);
Time
const
&
deadline
);
virtual
WriteResult
writeToPeer
(
ConnectionModel
*
peer
,
virtual
void
writeToPeer
(
ConnectionModel
*
peer
,
Time
const
&
previousTime
);
Time
const
&
previousTime
,
WriteResult
&
result
);
private:
private:
int
begin
;
int
begin
;
int
usedCount
;
int
usedCount
;
...
...
pelab/magent/Command.cc
View file @
ed9b3581
...
@@ -69,7 +69,7 @@ void ConnectCommand::runConnect(Connection * conn,
...
@@ -69,7 +69,7 @@ void ConnectCommand::runConnect(Connection * conn,
void
TrafficWriteCommand
::
runConnect
(
Connection
*
conn
,
void
TrafficWriteCommand
::
runConnect
(
Connection
*
conn
,
std
::
multimap
<
Time
,
Connection
*>
&
schedule
)
std
::
multimap
<
Time
,
Connection
*>
&
schedule
)
{
{
logWrite
(
COMMAND_INPUT
,
"Running TRAFFIC_WRITE_COMMAND"
);
//
logWrite(COMMAND_INPUT, "Running TRAFFIC_WRITE_COMMAND");
conn
->
addTrafficWrite
(
*
this
,
schedule
);
conn
->
addTrafficWrite
(
*
this
,
schedule
);
}
}
...
...
pelab/magent/Connection.cc
View file @
ed9b3581
...
@@ -159,7 +159,11 @@ ConnectionModel const * Connection::getConnectionModel(void)
...
@@ -159,7 +159,11 @@ ConnectionModel const * Connection::getConnectionModel(void)
Time
Connection
::
writeToConnection
(
Time
const
&
previousTime
)
Time
Connection
::
writeToConnection
(
Time
const
&
previousTime
)
{
{
WriteResult
result
=
traffic
->
writeToPeer
(
peer
.
get
(),
previousTime
);
WriteResult
result
;
result
.
planet
.
transport
=
TCP_CONNECTION
;
result
.
planet
.
ip
=
elab
.
ip
;
result
.
planet
.
remotePort
=
global
::
peerServerPort
;
traffic
->
writeToPeer
(
peer
.
get
(),
previousTime
,
result
);
if
(
!
isConnected
&&
result
.
isConnected
)
if
(
!
isConnected
&&
result
.
isConnected
)
{
{
planet
=
result
.
planet
;
planet
=
result
.
planet
;
...
...
pelab/magent/KernelTcp.cc
View file @
ed9b3581
...
@@ -76,6 +76,7 @@ void KernelTcp::connect(Order & planet)
...
@@ -76,6 +76,7 @@ void KernelTcp::connect(Order & planet)
||
!
changeSocket
(
sockfd
,
IPPROTO_TCP
,
TCP_NODELAY
,
!
useNagles
,
||
!
changeSocket
(
sockfd
,
IPPROTO_TCP
,
TCP_NODELAY
,
!
useNagles
,
"TCP_NODELAY"
))
"TCP_NODELAY"
))
{
{
// Error message already printed
close
(
sockfd
);
close
(
sockfd
);
return
;
return
;
}
}
...
@@ -85,7 +86,6 @@ void KernelTcp::connect(Order & planet)
...
@@ -85,7 +86,6 @@ void KernelTcp::connect(Order & planet)
destAddress
.
sin_family
=
AF_INET
;
destAddress
.
sin_family
=
AF_INET
;
destAddress
.
sin_port
=
htons
(
global
::
peerServerPort
);
destAddress
.
sin_port
=
htons
(
global
::
peerServerPort
);
destAddress
.
sin_addr
.
s_addr
=
htonl
(
planet
.
ip
);
destAddress
.
sin_addr
.
s_addr
=
htonl
(
planet
.
ip
);
int
error
=
::
connect
(
sockfd
,
(
struct
sockaddr
*
)
&
destAddress
,
int
error
=
::
connect
(
sockfd
,
(
struct
sockaddr
*
)
&
destAddress
,
sizeof
(
destAddress
));
sizeof
(
destAddress
));
if
(
error
==
-
1
)
if
(
error
==
-
1
)
...
@@ -134,6 +134,8 @@ void KernelTcp::connect(Order & planet)
...
@@ -134,6 +134,8 @@ void KernelTcp::connect(Order & planet)
}
}
planet
.
localPort
=
ntohs
(
sourceAddress
.
sin_port
);
planet
.
localPort
=
ntohs
(
sourceAddress
.
sin_port
);
logWrite
(
CONNECTION_MODEL
,
"Connected to peer at %s:%d"
,
ipToString
(
htonl
(
planet
.
ip
)).
c_str
(),
global
::
peerServerPort
);
peersock
=
sockfd
;
peersock
=
sockfd
;
state
=
CONNECTED
;
state
=
CONNECTED
;
}
}
...
@@ -170,6 +172,8 @@ int KernelTcp::writeMessage(int size, WriteResult & result)
...
@@ -170,6 +172,8 @@ int KernelTcp::writeMessage(int size, WriteResult & result)
{
{
if
(
state
==
DISCONNECTED
)
if
(
state
==
DISCONNECTED
)
{
{
logWrite
(
CONNECTION_MODEL
,
"writeMessage() called while disconnected from peer."
);
connect
(
result
.
planet
);
connect
(
result
.
planet
);
}
}
if
(
state
==
CONNECTED
)
if
(
state
==
CONNECTED
)
...
@@ -195,7 +199,10 @@ int KernelTcp::writeMessage(int size, WriteResult & result)
...
@@ -195,7 +199,10 @@ int KernelTcp::writeMessage(int size, WriteResult & result)
}
}
else
if
(
error
==
-
1
)
else
if
(
error
==
-
1
)
{
{
logWrite
(
EXCEPTION
,
"Failed write to peer: %s"
,
strerror
(
errno
));
if
(
errno
!=
EWOULDBLOCK
)
{
logWrite
(
EXCEPTION
,
"Failed write to peer: %s"
,
strerror
(
errno
));
}
return
-
1
;
return
-
1
;
}
}
else
else
...
@@ -226,6 +233,8 @@ void KernelTcp::init(void)
...
@@ -226,6 +233,8 @@ void KernelTcp::init(void)
global
::
peerAccept
=
createServer
(
global
::
peerServerPort
,
global
::
peerAccept
=
createServer
(
global
::
peerServerPort
,
"Peer accept socket (No incoming peer "
"Peer accept socket (No incoming peer "
"connections will be accepted)"
);
"connections will be accepted)"
);
logWrite
(
PEER_CYCLE
,
"Created peer server on port %d"
,
global
::
peerServerPort
);
// Set up the connectionModelExemplar
// Set up the connectionModelExemplar
global
::
connectionModelExemplar
.
reset
(
new
KernelTcp
());
global
::
connectionModelExemplar
.
reset
(
new
KernelTcp
());
...
@@ -316,6 +325,7 @@ void KernelTcp::readFromPeers(fd_set * readable)
...
@@ -316,6 +325,7 @@ void KernelTcp::readFromPeers(fd_set * readable)
"Peer connection %d from %s is closing normally."
,
"Peer connection %d from %s is closing normally."
,
pos
->
first
,
pos
->
second
.
c_str
());
pos
->
first
,
pos
->
second
.
c_str
());
close
(
pos
->
first
);
close
(
pos
->
first
);
clearDescriptor
(
pos
->
first
);
list
<
pair
<
int
,
string
>
>::
iterator
temp
=
pos
;
list
<
pair
<
int
,
string
>
>::
iterator
temp
=
pos
;
++
pos
;
++
pos
;
global
::
peers
.
erase
(
temp
);
global
::
peers
.
erase
(
temp
);
...
@@ -348,7 +358,7 @@ void KernelTcp::packetCapture(fd_set * readable)
...
@@ -348,7 +358,7 @@ void KernelTcp::packetCapture(fd_set * readable)
unsigned
char
*
args
=
NULL
;
unsigned
char
*
args
=
NULL
;
if
(
pcapfd
!=
-
1
&&
FD_ISSET
(
pcapfd
,
readable
))
if
(
pcapfd
!=
-
1
&&
FD_ISSET
(
pcapfd
,
readable
))
{
{
pcap_dispatch
(
pcapDescriptor
,
-
1
,
kernelTcpCallback
,
args
);
pcap_dispatch
(
pcapDescriptor
,
1
,
kernelTcpCallback
,
args
);
}
}
}
}
...
@@ -370,7 +380,7 @@ namespace
...
@@ -370,7 +380,7 @@ namespace
if
(
error
==
-
1
)
if
(
error
==
-
1
)
{
{
logWrite
(
ERROR
,
"Cannot read back socket option %s"
,
optstring
.
c_str
());
logWrite
(
ERROR
,
"Cannot read back socket option %s"
,
optstring
.
c_str
());
return
false
;
return
false
;
}
}
logWrite
(
CONNECTION_MODEL
,
"Socket option %s is now %d"
,
optstring
.
c_str
(),
logWrite
(
CONNECTION_MODEL
,
"Socket option %s is now %d"
,
optstring
.
c_str
(),
newValue
);
newValue
);
...
...
pelab/magent/TrafficModel.h
View file @
ed9b3581
...
@@ -13,8 +13,9 @@ public:
...
@@ -13,8 +13,9 @@ public:
virtual
std
::
auto_ptr
<
TrafficModel
>
clone
(
void
)
=
0
;
virtual
std
::
auto_ptr
<
TrafficModel
>
clone
(
void
)
=
0
;
virtual
Time
addWrite
(
TrafficWriteCommand
const
&
newWrite
,
virtual
Time
addWrite
(
TrafficWriteCommand
const
&
newWrite
,
Time
const
&
deadline
)
=
0
;
Time
const
&
deadline
)
=
0
;
virtual
WriteResult
writeToPeer
(
ConnectionModel
*
peer
,
virtual
void
writeToPeer
(
ConnectionModel
*
peer
,
Time
const
&
previousTime
)
=
0
;
Time
const
&
previousTime
,
WriteResult
&
result
)
=
0
;
};
};
class
NullTrafficModel
:
public
TrafficModel
class
NullTrafficModel
:
public
TrafficModel
...
@@ -30,14 +31,13 @@ public:
...
@@ -30,14 +31,13 @@ public:
{
{
return
Time
();
return
Time
();
}
}
virtual
WriteResult
writeToPeer
(
ConnectionModel
*
peer
,
virtual
void
writeToPeer
(
ConnectionModel
*
peer
,
Time
const
&
previousTime
)
Time
const
&
previousTime
,
WriteResult
&
result
)
{
{
WriteResult
result
;
result
.
isConnected
=
false
;
result
.
isConnected
=
false
;
result
.
bufferFull
=
false
;
result
.
bufferFull
=
false
;
result
.
nextWrite
=
Time
();
result
.
nextWrite
=
Time
();
return
result
;
}
}
};
};
...
...
pelab/magent/main.cc
View file @
ed9b3581
...
@@ -165,6 +165,9 @@ void processArgs(int argc, char * argv[])
...
@@ -165,6 +165,9 @@ void processArgs(int argc, char * argv[])
void
init
(
void
)
void
init
(
void
)
{
{
FD_ZERO
(
&
global
::
readers
);
global
::
maxReader
=
-
1
;
logInit
(
stderr
,
LOG_EVERYTHING
,
true
);
logInit
(
stderr
,
LOG_EVERYTHING
,
true
);
srandom
(
getpid
());
srandom
(
getpid
());
switch
(
global
::
connectionModelArg
)
switch
(
global
::
connectionModelArg
)
...
@@ -180,9 +183,6 @@ void init(void)
...
@@ -180,9 +183,6 @@ void init(void)
"Terminating program."
,
global
::
connectionModelArg
);
"Terminating program."
,
global
::
connectionModelArg
);
}
}
FD_ZERO
(
&
global
::
readers
);
global
::
maxReader
=
-
1
;
global
::
input
.
reset
(
new
DirectInput
());
global
::
input
.
reset
(
new
DirectInput
());
global
::
output
.
reset
(
new
TrivialCommandOutput
());
global
::
output
.
reset
(
new
TrivialCommandOutput
());
}
}
...
@@ -190,6 +190,8 @@ void init(void)
...
@@ -190,6 +190,8 @@ void init(void)
void
mainLoop
(
void
)
void
mainLoop
(
void
)
{
{
multimap
<
Time
,
Connection
*>
schedule
;
multimap
<
Time
,
Connection
*>
schedule
;
fd_set
readable
;
FD_ZERO
(
&
readable
);
// Select on file descriptors
// Select on file descriptors
while
(
true
)
while
(
true
)
...
@@ -198,7 +200,7 @@ void mainLoop(void)
...
@@ -198,7 +200,7 @@ void mainLoop(void)
// debugTimeout.tv_sec = 0;
// debugTimeout.tv_sec = 0;
// debugTimeout.tv_usec = 100000;
// debugTimeout.tv_usec = 100000;
fd_set
readable
=
global
::
readers
;
readable
=
global
::
readers
;
Time
timeUntilWrite
;
Time
timeUntilWrite
;
struct
timeval
*
waitPeriod
;
struct
timeval
*
waitPeriod
;
Time
now
=
getCurrentTime
();
Time
now
=
getCurrentTime
();
...
@@ -214,11 +216,9 @@ void mainLoop(void)
...
@@ -214,11 +216,9 @@ void mainLoop(void)
timeUntilWrite
=
Time
();
timeUntilWrite
=
Time
();
waitPeriod
=
NULL
;
waitPeriod
=
NULL
;
}
}
logWrite
(
MAIN_LOOP
,
"Select"
);
int
error
=
select
(
global
::
maxReader
+
1
,
&
readable
,
NULL
,
NULL
,
int
error
=
select
(
global
::
maxReader
+
1
,
&
readable
,
NULL
,
NULL
,
// &debugTimeout);
// &debugTimeout);
waitPeriod
);
waitPeriod
);
logWrite
(
MAIN_LOOP
,
"After select"
);
if
(
error
==
-
1
)
if
(
error
==
-
1
)
{
{
switch
(
errno
)
switch
(
errno
)
...
@@ -239,25 +239,18 @@ void mainLoop(void)
...
@@ -239,25 +239,18 @@ void mainLoop(void)
}
}
}
}
logWrite
(
MAIN_LOOP
,
"Before command loop"
);
global
::
input
->
nextCommand
(
&
readable
);
global
::
input
->
nextCommand
(
&
readable
);
Command
*
current
=
global
::
input
->
getCommand
();
Command
*
current
=
global
::
input
->
getCommand
();
while
(
current
!=
NULL
)
if
(
current
!=
NULL
)
{
{
logWrite
(
MAIN_LOOP
,
"Command Loop"
);
current
->
run
(
schedule
);
current
->
run
(
schedule
);
global
::
input
->
nextCommand
(
&
readable
);
//
global::input->nextCommand(&readable);
current
=
global
::
input
->
getCommand
();
//
current = global::input->getCommand();
}
}
// logWrite(MAIN_LOOP, "Before writeToConnections()");
writeToConnections
(
schedule
);
writeToConnections
(
schedule
);
// logWrite(MAIN_LOOP, "Before addNewPeer()");
addNewPeer
(
&
readable
);
addNewPeer
(
&
readable
);
// logWrite(MAIN_LOOP, "Before readFromPeers()");
readFromPeers
(
&
readable
);
readFromPeers
(
&
readable
);
// logWrite(MAIN_LOOP, "Before packetCapture()");
packetCapture
(
&
readable
);
packetCapture
(
&
readable
);
// logWrite(MAIN_LOOP, "End of main loop");
}
}
}
}
...
@@ -403,7 +396,7 @@ int createServer(int port, string const & debugString)
...
@@ -403,7 +396,7 @@ int createServer(int port, string const & debugString)
}
}
struct
sockaddr_in
address
;
struct
sockaddr_in
address
;
address
.
sin_family
=
htons
(
AF_INET
)
;
address
.
sin_family
=
AF_INET
;
address
.
sin_port
=
htons
(
port
);
address
.
sin_port
=
htons
(
port
);
address
.
sin_addr
.
s_addr
=
htonl
(
INADDR_ANY
);
address
.
sin_addr
.
s_addr
=
htonl
(
INADDR_ANY
);
error
=
bind
(
fd
,
reinterpret_cast
<
struct
sockaddr
*>
(
&
address
),
error
=
bind
(
fd
,
reinterpret_cast
<
struct
sockaddr
*>
(
&
address
),
...
...
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