amiga-ntimed/main_amiga_poll.c

214 lines
5.4 KiB
C
Raw Normal View History

2015-03-12 21:48:56 +00:00
/*
* Copyright (c) 2015 Carsten Larsen
2015-03-18 15:21:16 +00:00
* Copyright (c) 2014 Poul-Henning Kamp
2015-03-12 21:48:56 +00:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
2015-03-17 15:52:05 +00:00
#include "ntimed_platform.h"
2015-03-19 13:41:38 +00:00
#include "ntimed.h"
2015-03-12 21:48:56 +00:00
#include "ntp.h"
#include "udp.h"
2015-04-18 20:08:39 +00:00
#define ARGSFORMAT "D=DURATION/N,M=MONITOR/K,T=TRACEFILE/K,SERVERS/M/A,SHOW/S,QUIET/S"
2015-07-10 21:00:05 +00:00
const char *vers = "\0$VER: ntimed-poll" AMIGA_VERSION;
2015-03-12 21:48:56 +00:00
2015-07-10 21:00:05 +00:00
struct RDArgs *rdargs = NULL;
struct udp_socket *usc = NULL;
struct ntp_peerset *npl = NULL;
struct todolist *tdl = NULL;
2015-03-17 23:37:25 +00:00
struct ntimedargs {
2015-03-18 15:21:16 +00:00
long *duration;
char *monitor;
char *tracefile;
char **servers;
2015-04-15 21:52:40 +00:00
long show;
long quiet;
};
2015-03-12 21:48:56 +00:00
static void init_logic(struct ntimedargs *args);
2015-03-12 21:48:56 +00:00
static void clean_exit();
int main(int argc, char **argv)
{
2015-07-10 21:00:05 +00:00
int result = 0;
2015-04-18 20:08:39 +00:00
struct ntimedargs args = { NULL, NULL, NULL, NULL, FALSE, FALSE };
2015-03-12 21:48:56 +00:00
atexit(clean_exit);
2015-07-10 21:00:05 +00:00
if((result = amiga_open_libs()) != 0) {
exit(result);
}
2015-03-12 21:48:56 +00:00
2015-07-10 21:00:05 +00:00
rdargs = ReadArgs((STRPTR)ARGSFORMAT, (APTR)&args, NULL);
if (!rdargs)
2015-03-12 21:48:56 +00:00
{
2015-07-10 21:00:05 +00:00
PrintFault(IoErr(), (STRPTR)argv[0]);
2015-04-18 20:08:39 +00:00
exit(5);
2015-03-12 21:48:56 +00:00
}
if (!args.quiet) {
EnableDebug();
2015-04-15 21:52:40 +00:00
if (args.show) {
EnableTraceDebug();
}
2015-03-12 21:48:56 +00:00
}
2015-04-18 20:08:39 +00:00
if (args.tracefile) {
ArgTracefile(args.tracefile);
2015-03-12 21:48:56 +00:00
}
init_logic(&args);
2015-03-18 15:21:16 +00:00
NTP_PeerSet_Poll(NULL, npl, usc, tdl);
(void)TODO_Run(NULL, tdl);
2015-07-10 21:00:05 +00:00
return result;
}
2015-03-18 15:21:16 +00:00
static void
mps_filter(struct ocx *ocx, const struct ntp_peer *np)
{
2015-03-18 15:21:16 +00:00
char buf[256];
2015-03-18 15:21:16 +00:00
NTP_Tool_Format(buf, sizeof buf, np->rx_pkt);
Put(ocx, OCX_TRACE, "Poll %s %s %s\n", np->hostname, np->ip, buf);
}
2015-03-18 15:21:16 +00:00
static enum todo_e __match_proto__(todo_f)
mps_mon(struct ocx *ocx, struct todolist *tdl, void *priv)
{
char buf[256];
struct ntp_peer *np;
int i;
2015-03-18 15:21:16 +00:00
(void)ocx;
(void)tdl;
CAST_OBJ_NOTNULL(np, priv, NTP_PEER_MAGIC);
i = NTP_Peer_Poll(ocx, usc, np, 0.2);
if (i == 1) {
NTP_Tool_Format(buf, sizeof buf, np->rx_pkt);
Put(ocx, OCX_TRACE, "Monitor %s %s %s\n", np->hostname, np->ip, buf);
} else {
Put(ocx, OCX_TRACE, "Monitor_err %s %s %d\n", np->hostname, np->ip, i);
}
2015-03-18 15:21:16 +00:00
return(TODO_OK);
}
static enum todo_e __match_proto__(todo_f)
mps_end(struct ocx *ocx, struct todolist *tdl, void *priv)
{
(void)tdl;
(void)priv;
Put(ocx, OCX_TRACE, "# Run completed\n");
return(TODO_FAIL);
}
static void init_logic(struct ntimedargs *args)
{
2015-03-18 15:21:16 +00:00
struct ntp_peer *mon;
struct ntp_peer *np;
2015-03-18 15:21:16 +00:00
int npeer;
int i;
2015-03-18 15:21:16 +00:00
long duration;
mon = NULL;
npeer = 0;
duration = 1800;
if (args->duration) {
duration = *(args->duration);
if(duration < 1) {
Put(NULL, OCX_DEBUG, "Invalid DURATION value.\n");
exit(1);
}
}
2015-03-18 15:21:16 +00:00
if(args->monitor) {
mon = NTP_Peer_NewLookup(NULL, args->monitor);
if (mon == NULL) {
Put(NULL, OCX_DEBUG, "MONITOR did not resolve.\n");
exit(1);
}
}
2015-03-12 21:48:56 +00:00
tdl = TODO_NewList();
2015-03-18 15:21:16 +00:00
Time_Amiga_Passive();
2015-03-12 21:48:56 +00:00
2015-03-18 15:21:16 +00:00
npl = NTP_PeerSet_New(NULL);
AN(npl);
2015-03-12 21:48:56 +00:00
2015-03-18 15:21:16 +00:00
for (i = 0; args->servers[i]; i++)
npeer += NTP_PeerSet_Add(NULL, npl, args->servers[i]);
2015-03-12 21:48:56 +00:00
2015-03-18 15:21:16 +00:00
Put(NULL, OCX_TRACE, "# NTIMED Format poll-server 1.0\n");
Put(NULL, OCX_TRACE, "# Found %d peers\n", npeer);
2015-03-12 21:48:56 +00:00
if (npeer == 0) {
Put(NULL, OCX_DEBUG, "No NTP peers found\n");
exit(1);
2015-03-12 21:48:56 +00:00
}
2015-03-18 15:21:16 +00:00
NTP_PeerSet_Foreach(np, npl) {
Put(NULL, OCX_TRACE, "# Peer %s %s\n", np->hostname, np->ip);
np->filter_func = mps_filter;
}
if (mon != NULL)
Put(NULL, OCX_TRACE, "# Monitor %s %s\n", mon->hostname, mon->ip);
2015-03-12 21:48:56 +00:00
usc = UdpTimedSocket(NULL);
if (usc == NULL) {
Put(NULL, OCX_DEBUG, "Could not open UDP socket\n");
exit(1);
2015-03-12 21:48:56 +00:00
}
2015-03-18 15:21:16 +00:00
Put(NULL, OCX_TRACE, "# Duration of run set to %d seconds\n", duration);
2015-03-12 21:48:56 +00:00
2015-03-18 15:21:16 +00:00
TODO_ScheduleRel(tdl, mps_end, NULL, duration, 0, "End task");
2015-03-13 14:39:03 +00:00
2015-03-18 15:21:16 +00:00
if (mon != NULL)
TODO_ScheduleRel(tdl, mps_mon, mon, 0, 32, "Monitor");
2015-07-10 21:00:05 +00:00
amiga_init_offset();
2015-03-12 21:48:56 +00:00
}
static void clean_exit()
{
ArgTracefile(NULL);
2015-03-12 21:48:56 +00:00
if(usc) {
UDP_Socket_Destroy(usc);
usc = NULL;
}
if (rdargs) {
FreeArgs(rdargs);
rdargs = NULL;
2015-03-12 21:48:56 +00:00
}
2015-03-17 23:37:25 +00:00
2015-04-18 20:08:39 +00:00
amiga_close_libs();
2015-03-17 15:52:05 +00:00
freeall();
2015-03-12 21:48:56 +00:00
}