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
|
/*
* monitor.cc: the DMUCS monitoring program -- to see how busy the server
* is, which hosts are allocated, etc.
*
* Copyright (C) 2005, 2006 Victor T. Norman
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "dmucs.h"
#include "dmucs_host.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <fstream>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <string>
#include <sstream>
#include <iostream>
#include "COSMIC/HDR/sockets.h"
#include <time.h>
#include <sys/time.h>
#include <errno.h>
extern char **environ;
void usage(const char *prog);
void sleep();
void parseResults(const char *resultStr);
#define RESULT_MAX_SIZE 8196
char resultStr[RESULT_MAX_SIZE];
bool debugMode = false;
int
main(int argc, char *argv[])
{
/*
* o Open a client socket to the server ip/port.
* o Send a monitor request.
* o Read a string in the response.
* o Parse the string and print out the information in a clean way.
*/
/*
* Process command-line arguments.
*
* -s <server>, --server <server>: the name of the server machine.
* -p <port>, --port <port>: the port number to listen on (default: 6714).
* -D, --debug: debug mode (default: off)
*/
std::ostringstream serverName;
serverName << "@" << SERVER_MACH_NAME;
int serverPortNum = SERVER_PORT_NUM;
for (int i = 1; i < argc; i++) {
if (strequ("-s", argv[i]) || strequ("--server", argv[i])) {
if (++i >= argc) {
usage(argv[0]);
return -1;
}
serverName.seekp(1); // remove everything after the first "@".
serverName << argv[i] << '\0';
} else if (strequ("-p", argv[i]) || strequ("--port", argv[i])) {
if (++i >= argc) {
usage(argv[0]);
return -1;
}
serverPortNum = atoi(argv[i]);
} else if (strequ("-D", argv[i]) || strequ("--debug", argv[i])) {
debugMode = true;
} else {
usage(argv[0]);
return -1;
}
}
std::ostringstream clientPortStr;
clientPortStr << "c" << serverPortNum;
char hostname[256];
if (gethostname(hostname, 256) < 0) {
fprintf(stderr, "Could not get my hostname\n");
return -1;
}
struct hostent *he = gethostbyname(hostname);
if (he == NULL) {
fprintf(stderr, "Could not get my hostname\n");
return -1;
}
struct in_addr in;
memcpy(&in.s_addr, he->h_addr_list[0], sizeof(in.s_addr));
while (1) {
DMUCS_DEBUG((stderr, "doing Sopen with %s, %s\n",
serverName.str().c_str(), clientPortStr.str().c_str()));
Socket *client_sock = Sopen((char *) serverName.str().c_str(),
(char *) clientPortStr.str().c_str());
if (!client_sock) {
fprintf(stderr, "Could not open client: %s\n", strerror(errno));
Sclose(client_sock);
sleep();
continue;
}
Sputs("monitor", client_sock);
resultStr[0] = '\0';
if (Sgets(resultStr, RESULT_MAX_SIZE, client_sock) == NULL) {
fprintf(stderr, "Got error from reading socket.\n");
Sclose(client_sock);
return -1;
}
DMUCS_DEBUG((stderr, "monitor: got -->%s<--\n", resultStr));
parseResults(resultStr);
Sclose(client_sock);
sleep();
}
}
static void
dumpSummaryInfo(std::ostringstream &availHosts, std::ostringstream &overHosts,
std::ostringstream &unavailHosts,
std::ostringstream &silentHosts, std::ostringstream &unkHosts)
{
if (! availHosts.str().empty())
std::cout << "Avail: " << availHosts.str() << '\n';
if (! overHosts.str().empty())
std::cout << "Overloaded: " << overHosts.str() << '\n';
if (! unavailHosts.str().empty())
std::cout << "Unavail: " << unavailHosts.str() << '\n';
if (! silentHosts.str().empty())
std::cout << "Silent: " << silentHosts.str() << '\n';
if (! unkHosts.str().empty())
std::cout << "Unknown state: " << unkHosts.str() << '\n';
availHosts.str("");
overHosts.str("");
unavailHosts.str("");
silentHosts.str("");
unkHosts.str("");
}
void
parseResults(const char *resultStr)
{
/*
* The string will look like this:
* D: <distinguishingProp> // a string that distinguishes these hosts.
* H: <ip-addr> <int> // a host, its ip address, and its state.
* C <tier>: <ipaddr>/<#cpus>
*
* o The state is represented by an integer representing the
* host_status_t enum value.
* o The entire string will end with a \0 (end-of-string) character.
*
* We want to parse this information, and print out :
* <distinguishingProp> hosts:
* Tier <tier-num>: host/#cpus host/#cpus ...
* Tier <tier-num>: ...
* Available Hosts: <host list>.
* Silent Hosts: host/#cpus ...
* Unavailable Hosts: host/#cpus ...
*
* <repeat above for each distinguishing prop>
*/
std::istringstream instr(resultStr);
std::ostringstream unkHosts, availHosts, unavailHosts, overHosts,
silentHosts;
while (1) {
char firstChar;
instr >> firstChar;
if (instr.eof()) {
dumpSummaryInfo(availHosts, overHosts, unavailHosts, silentHosts,
unkHosts);
break;
}
switch (firstChar) {
case 'D': {
/* We see a "D" which means we are going to start getting
information for a new set of hosts. So, if we have summary
information on the previous set, print it out now, and
clear it. */
dumpSummaryInfo(availHosts, overHosts, unavailHosts, silentHosts,
unkHosts);
std::string distProp;
instr.ignore(); // eat ':'
instr >> distProp;
if (distProp == "''") continue; // empty distinguishing str
std::cout << "*** " << distProp << " hosts:" << '\n';
break;
}
case 'H': {
std::string ipstr;
int state;
/* Read in ': <ip-address> <state>' */
instr.ignore(); // eat ':'
instr >> ipstr >> state;
unsigned int addr = inet_addr(ipstr.c_str());
struct hostent *he = gethostbyaddr((char *)&addr, sizeof(addr),
AF_INET);
std::string hostname = (he != NULL) ? he->h_name : ipstr;
/* Remove everything from the first . onward -- so we don't see
the long domain name in the output. */
if (hostname.find_first_of('.') != std::string::npos)
hostname.erase(hostname.find_first_of('.'));
/*
* We collect each hostname based on its state, and add it
* to an output string.
*/
std::ostringstream *ostr;
switch (state) {
case STATUS_AVAILABLE: ostr = &availHosts; break;
case STATUS_UNAVAILABLE: ostr = &unavailHosts; break;
case STATUS_OVERLOADED: ostr = &overHosts; break;
case STATUS_SILENT: ostr = &silentHosts; break;
case STATUS_UNKNOWN:
default: ostr = &unkHosts;
}
*ostr << hostname << ' ';
break;
}
case 'C': {
std::string line;
std::getline(instr, line);
std::istringstream linestr(line);
int tierNum;
linestr >> tierNum;
linestr.ignore(2); // eat the ': '
std::string ipAddrAndNCpus;
std::cout << "Tier " << tierNum << ": ";
// parse one or more "ipaddr/numcpus" fields.
while (1) {
char ipName[32];
// Read ip address, ending in '/'
linestr.get(ipName, 32, '/');
if (! linestr.good()) {
break;
}
linestr.ignore(); // skip the '/'
int numCpus;
linestr >> numCpus;
linestr.ignore(); // eat ' '
unsigned int addr = inet_addr(ipName);
struct hostent *he = gethostbyaddr((char *)&addr,
sizeof(addr), AF_INET);
std::string hname;
if (he == NULL) {
hname = ipName;
} else {
hname = he->h_name;
/* Remove domain name from end of hostname. */
if (hname.find_first_of('.') != std::string::npos)
hname.erase(hname.find_first_of('.'));
}
std::ostringstream hostname;
hostname << hname;
hostname << '/' << numCpus << ' ';
std::cout << hostname.str();
}
std::cout << '\n';
break;
}
default:
std::string line;
std::getline(instr, line);
std::cout << line << '\n';
}
}
std::cout << '\n' << std::flush;
}
void sleep()
{
struct timeval t = { 10L, 0L }; // 10 seconds.
select(0, NULL, NULL, NULL, &t);
}
void
usage(const char *prog)
{
fprintf(stderr, "Usage: %s [-s|--server <server>] [-p|--port <port>] "
"[-D|--debug]\n\n", prog);
}
|