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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
/*===========================================================================*
* *
* smttst3.c - Test reverse-DNS agent *
* *
* Copyright (c) 1991-2010 iMatix Corporation *
* *
* ------------------ GPL Licensed Source Code ------------------ *
* iMatix makes this software available under the GNU General *
* Public License (GPL) license for open source projects. For *
* details of the GPL license please see www.gnu.org or read the *
* file license.gpl provided in this package. *
* *
* 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 in the file 'license.gpl'; if *
* not, see <http://www.gnu.org/licenses/>. *
* *
* You can also license this software under iMatix's General Terms *
* of Business (GTB) for commercial projects. If you have not *
* explicitly licensed this software under the iMatix GTB you may *
* only use it under the terms of the GNU General Public License. *
* *
* For more information, send an email to info@imatix.com. *
* -------------------------------------------------------------- *
*===========================================================================*/
#include "smtpriv.h" /* SMT definitions */
#include "smtrdnsl.h" /* RDNS library functions */
/*- Definitions -------------------------------------------------------------*/
#ifdef AGENT_NAME
#undef AGENT_NAME
#endif
#define AGENT_NAME "smttst3" /* Our public name */
#define BUFFER_SIZE 2048
typedef struct /* Thread context block: */
{
int
arg_index, /* Current argument index */
argc; /* Number of argument */
char
**argv; /* Argument list value */
} TCB;
/*- Function prototypes -----------------------------------------------------*/
/*- Global variables used in this source file only --------------------------*/
static TCB
*tcb; /* Address thread contect block */
static QID
operq, /* Operator console event queue */
rdnsq; /* Reverse DNS agent event queue */
extern SYMTAB
*config; /* Global config file */
static struct in_addr
inaddr; /* Used to format IP address */
#define MSG_MAX BUFFER_SIZE + 64
static char
buffer [BUFFER_SIZE]; /* General-use string buffer */
#include "smttst3.d" /* Include dialog data */
/******************** INITIALISE AGENT - ENTRY POINT *********************/
int smttst3_init (int argc, char *argv [])
{
AGENT *agent; /* Handle for our agent */
THREAD *thread; /* Handle to various threads */
# include "smttst3.i" /* Include dialog interpreter */
/* Shutdown event comes from Kernel */
declare_smtlib_shutdown (shutdown_event, SMT_PRIORITY_MAX);
/* Reply events from reverse DNS agent */
declare_smtrdns_host_name (host_event, 0);
declare_smtrdns_host_ip (ip_event, 0);
declare_smtrdns_host_error (error_event, 0);
declare_smtrdns_host_end (end_event, 0);
declare_smtrdns_host_timeout (timeout_event, 0);
/* Ensure that operator console is running, else start it up */
smtoper_init ();
if ((thread = thread_lookup (SMT_OPERATOR, "")) != NULL)
operq = thread-> queue-> qid;
else
return (-1);
/* Ensure that socket i/o agent is running, else start it up */
smtrdns_init ();
if ((thread = thread_lookup ("smtrdns", "main")) != NULL)
rdnsq = thread-> queue-> qid;
else
return (-1);
/* Create initial, unnamed thread */
if ((thread = thread_create (AGENT_NAME, "")) != NULL)
{
((TCB *) thread-> tcb)-> argc = argc;
((TCB *) thread-> tcb)-> argv = argv;
}
/* Signal okay to caller that we initialised okay */
return (0);
}
/************************* INITIALISE THE THREAD *************************/
MODULE initialise_the_thread (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
tcb-> arg_index = 1;
the_next_event = ok_event;
}
/************************* TERMINATE THE THREAD **************************/
MODULE terminate_the_thread (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
the_next_event = terminate_event;
smt_shutdown ();
}
/************************** DISPLAY ERROR VALUE **************************/
MODULE display_error_value (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
puts ("Error in request execution");
the_next_event = ok_event;
}
/*************************** DISPLAY HOST NAME ***************************/
MODULE display_host_name (THREAD *thread)
{
struct_smtrdns_host_name
*message;
tcb = thread-> tcb; /* Point to thread's context */
get_smtrdns_host_name (thread-> event-> body, &message);
inaddr.s_addr = message-> ip_address;
printf ("%s -> %s\n", inet_ntoa (inaddr), message-> host_name);
free_smtrdns_host_name (&message);
the_next_event = ok_event;
}
/*************************** REQUEST HOST NAME ***************************/
MODULE request_host_name (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
send_smtrdns_get_host_name (
&rdnsq, /* Send to specified queue */
(qbyte) 0,
buffer,
(qbyte) 0);
}
/************************* DISPLAY END OF SEARCH *************************/
MODULE display_end_of_search (THREAD *thread)
{
coprintf ("%s not found !!!", buffer);
the_next_event = ok_event;
}
/****************************** DISPLAY HELP *****************************/
MODULE display_help (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
printf ("Name Server Host query version 1.0\n");
printf ("NSHOST Copyright (c) 1991-2010 iMatix\n\n");
printf ("Usage: nshost [-debug] [-rec] [-server addr] [-help] [request]\n");
printf ("Where: help or ?: Display this message\n");
printf (" set debug: Set debug mode (to nshost.log)\n");
printf (" set recursive: Set recursive query ON\n");
printf (" set server %%addr%%: Set default DNS ip address\n");
printf (" exit or quit: Exit the program\n\n");
printf ("Example: nshost -debug -server 127.0.0.1 www.imatix.com\n\n");
printf ("Enter an IP address or a host name to resolv this\n\n");
the_next_event = ok_event;
}
/*************************** DISPLAY IP ADDRESS **************************/
MODULE display_ip_address (THREAD *thread)
{
struct_smtrdns_host_ip
*message;
tcb = thread-> tcb; /* Point to thread's context */
get_smtrdns_host_ip (thread-> event-> body, &message);
inaddr.s_addr = message-> ip_address;
printf ("%s -> %s\n", message-> host_name, inet_ntoa (inaddr));
free_smtrdns_host_ip (&message);
the_next_event = ok_event;
}
/**************************** DISPLAY TIME OUT ***************************/
MODULE display_time_out (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
puts ("Request timed out!!!");
the_next_event = ok_event;
}
/*************************** GET ARGUMENT TYPE ***************************/
MODULE get_argument_type (THREAD *thread)
{
int
index,
h [4],
count;
tcb = thread-> tcb; /* Point to thread's context */
count = sscanf (buffer, "%d.%d.%d.%d", &h [0], &h[1], &h [2], &h [3]);
if (count > 0)
{
the_next_event = ip_event;
for (index = 0; index < count; index++)
{
if (h [index] < 0 || h [index] > 255)
{
the_next_event = host_name_event;
break;
}
}
}
else
the_next_event = host_name_event;
}
/****************************** GET COMMAND ******************************/
MODULE get_command (THREAD *thread)
{
char
*value;
tcb = thread-> tcb; /* Point to thread's context */
strcrop (buffer);
strlwc (buffer);
value = strskp (buffer);
if (value != buffer)
strcpy (buffer, value);
if (strnull (buffer))
the_next_event = none_event;
else
if (streq (buffer, "help"))
the_next_event = help_event;
else
if (strchr (buffer, '?'))
the_next_event = help_event;
else
if (strncmp (buffer, "set server", 10) == 0)
the_next_event = server_ip_event;
else
if (streq (buffer, "set debug"))
the_next_event = debug_event;
else
if (streq (buffer, "set recursive"))
the_next_event = recursive_event;
else
if (streq (buffer, "exit"))
the_next_event = exit_event;
else
if (streq (buffer, "quit"))
the_next_event = exit_event;
else
{
if (strchr (buffer, ' ') != NULL)
the_next_event = invalid_event;
else
the_next_event = request_event;
}
}
/*************************** GET NEXT ARGUMENT ***************************/
MODULE get_next_argument (THREAD *thread)
{
char
*value;
tcb = thread-> tcb; /* Point to thread's context */
if (++tcb-> arg_index <= tcb-> argc)
{
value = tcb-> argv [tcb-> arg_index - 1];
if (*value == '-')
{
value++;
strcrop (value);
strlwc (value);
value = strskp (value);
if (streq (value, "debug"))
strcpy (buffer, "set debug");
else
if (streq (value, "rec"))
strcpy (buffer, "set recursive");
else
if (streq (value, "server"))
{
if (++tcb-> arg_index <= tcb-> argc)
xstrcpy (buffer, "set server ",
tcb-> argv [tcb-> arg_index - 1], NULL);
else
strcpy (buffer, "set server");
}
else
strcpy (buffer, value);
}
else
strcpy (buffer, value);
}
else
buffer [0] = '\0';
}
/*************************** REQUEST IP ADDRESS **************************/
MODULE request_ip_address (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
send_smtrdns_get_host_ip (
&rdnsq, /* Send to specified queue */
buffer,
(qbyte) 0);
}
/***************************** SET DEBUG MODE ****************************/
MODULE set_debug_mode (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
dns_debug_mode = TRUE;
console_set_mode (CONSOLE_TIME);
console_capture (".\\nshost.log", 'a');
coprintf ("Debug mode ON, console output logged to file 'nshost.log'");
}
/******************************* SET PROMPT ******************************/
MODULE set_prompt (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
memset (buffer, 0, BUFFER_SIZE);
printf ("Enter a request (? for help) =>");
memset (buffer, 0, BUFFER_SIZE);
ASSERT (fgets (buffer, BUFFER_SIZE, stdin));
}
/************************** SET SERVER IP VALUE **************************/
MODULE set_server_ip_value (THREAD *thread)
{
char
*ip_value;
int
index;
tcb = thread-> tcb; /* Point to thread's context */
ip_value = &buffer [10];
ip_value = strskp (ip_value);
strconvch (ip_value, '\r', '\0');
strconvch (ip_value, '\n', '\0');
strcrop (ip_value);
inaddr.s_addr = inet_addr (ip_value);
if (inaddr.s_addr != 0xFFFFFFFFUL
&& inaddr.s_addr != 0)
{
if (server_list.ns_count == MAX_NS)
server_list.ns_count--;
for (index = server_list.ns_count - 1; index >= 0; index--)
{
server_list.ns_addr [index + 1].sin_addr.s_addr =
server_list.ns_addr [index].sin_addr.s_addr;
server_list.ns_addr [index + 1].sin_port =
server_list.ns_addr [index].sin_port;
server_list.recursive_accept [index + 1] =
server_list.recursive_accept [index];
}
server_list.ns_addr [0].sin_addr.s_addr = inaddr.s_addr;
server_list.ns_addr [0].sin_port = htons (DNS_PORT);
server_list.recursive_accept [0] = dns_recursive;
server_list.ns_count++;
}
else
puts ("Invalid IP address !!!");
}
/*********************** DISPLAY DNS SERVER ADDRESS **********************/
MODULE display_dns_server_address (THREAD *thread)
{
int
index;
tcb = thread-> tcb; /* Point to thread's context */
if (server_list.ns_count > 0)
{
puts ("Current DNS configuration:");
for (index = 0; index < server_list.ns_count; index++)
{
inaddr.s_addr = server_list.ns_addr [index].sin_addr.s_addr;
printf (" %s\n", inet_ntoa (inaddr));
}
}
else
{
puts ("No default DN Server defined");
puts ("must be use 'set server' command before execution of request");
}
}
/************************* INITIALISE DNS LIBRARY ************************/
MODULE initialise_dns_library (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
rdns_init (&server_list);
}
/*************************** SET RECURSIVE MODE **************************/
MODULE set_recursive_mode (THREAD *thread)
{
int
index;
dns_recursive = TRUE;
for (index = 0; index < server_list.ns_count; index++)
server_list.recursive_accept [index] = TRUE;
}
/************************ DISPLAY INVALID ARGUMENT ***********************/
MODULE display_invalid_argument (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
coprintf ("%s: ERROR, invalid argument");
}
/************************ DISPLAY INVALID COMMAND ************************/
MODULE display_invalid_command (THREAD *thread)
{
tcb = thread-> tcb; /* Point to thread's context */
coprintf ("%s: ERROR, invalid command");
}
|