/*
* Copyright (C), 2000-2007 by the monit project group.
* All Rights Reserved.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#ifdef HAVE_STDIO_H
#include <stdio.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "net.h"
#include "socket.h"
#include "monitor.h"
#include "process.h"
#include "device.h"
/**
* Obtain status from the monit daemon
*
* @author Jan-Henrik Haukeland, <hauk@tildeslash.com>
* @author Christian Hopp, <chopp@iei.tu-clausthal.de>
*
* @version \$Id: status.c,v 1.63 2007/07/25 12:54:30 hauk Exp $
*
* @file
*/
/* ------------------------------------------------------------------ Public */
/**
* Show all services in the service list.
*/
int status(char *level) {
#define LINE 1024
int status= FALSE;
Socket_T sock = NULL;
char buf[LINE];
char *auth= NULL;
if(!exist_daemon()) {
LogError("%s: no status available -- the monit daemon is not running\n",
prog);
return status;
}
if(!(sock= socket_new(Run.bind_addr?Run.bind_addr:"localhost", Run.httpdport,
SOCKET_TCP, Run.httpdssl, NET_TIMEOUT))) {
LogError("%s: error connecting to the monit daemon\n", prog);
return status;
}
auth= Util_getBasicAuthHeader();
socket_print(sock,
"GET /_status?format=text&level=%s HTTP/1.0\r\n%s\r\n",
level, auth?auth:"");
FREE(auth);
/* Read past HTTP headers and check status */
while(socket_readln(sock, buf, LINE)) {
if(IS(buf, "\n") || IS(buf, "\r\n"))
break;
if(Util_startsWith(buf, "HTTP/1.0 200"))
status= TRUE;
}
if(!status) {
LogError("%s: cannot read status from the monit daemon\n", prog);
} else {
while(socket_readln(sock, buf, LINE)) {
printf("%s", buf);
}
}
socket_free(&sock);
return status;
}
syntax highlighted by Code2HTML, v. 0.9.1