1998-03-28 02:44:41 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
1999-04-21 21:40:44 +00:00
|
|
|
* Version 1.1 (the "NPL"); you may not use this file except in
|
1998-03-28 02:44:41 +00:00
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
1999-01-28 00:19:40 +00:00
|
|
|
#ifdef XP_BEOS
|
|
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
printf( "BeOS does not support IPv6\n" );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "prio.h"
|
1998-09-25 20:34:39 +00:00
|
|
|
#include "prenv.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "prmem.h"
|
1998-09-25 20:34:39 +00:00
|
|
|
#include "prlink.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
#include "prsystem.h"
|
|
|
|
#include "prnetdb.h"
|
|
|
|
#include "prprf.h"
|
1998-09-25 20:34:39 +00:00
|
|
|
#include "prvrsion.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
#include "plerror.h"
|
|
|
|
#include "plgetopt.h"
|
|
|
|
#include "obsolete/probslet.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define DNS_BUFFER 100
|
|
|
|
#define ADDR_BUFFER 100
|
|
|
|
#define HOST_BUFFER 1024
|
|
|
|
#define PROTO_BUFFER 1500
|
|
|
|
|
|
|
|
static PRFileDesc *err = NULL;
|
|
|
|
|
|
|
|
static void Help(void)
|
|
|
|
{
|
1998-09-25 20:34:39 +00:00
|
|
|
PR_fprintf(err, "Usage: [-V] [-6] [-h]\n");
|
1998-03-28 02:44:41 +00:00
|
|
|
PR_fprintf(err, "\t<nul> Name of host to lookup (default: self)\n");
|
1998-09-25 20:34:39 +00:00
|
|
|
PR_fprintf(err, "\t-V Display runtime version info (default: FALSE)\n");
|
1998-03-28 02:44:41 +00:00
|
|
|
PR_fprintf(err, "\t-6 First turn on IPv6 capability (default: FALSE)\n");
|
|
|
|
PR_fprintf(err, "\t-h This message and nothing else\n");
|
|
|
|
} /* Help */
|
|
|
|
|
|
|
|
static void DumpAddr(const PRNetAddr* address, const char *msg)
|
|
|
|
{
|
|
|
|
PRUint32 *word = (PRUint32*)address;
|
|
|
|
PRUint32 addr_len = sizeof(PRNetAddr);
|
|
|
|
PR_fprintf(err, "%s[%d]\t", msg, PR_NETADDR_SIZE(address));
|
|
|
|
while (addr_len > 0)
|
|
|
|
{
|
|
|
|
PR_fprintf(err, " %08x", *word++);
|
|
|
|
addr_len -= sizeof(PRUint32);
|
|
|
|
}
|
|
|
|
PR_fprintf(err, "\n");
|
|
|
|
} /* DumpAddr */
|
|
|
|
|
|
|
|
static PRStatus PrintAddress(const PRNetAddr* address)
|
|
|
|
{
|
|
|
|
PRNetAddr translation;
|
|
|
|
char buffer[ADDR_BUFFER];
|
|
|
|
PRStatus rv = PR_NetAddrToString(address, buffer, sizeof(buffer));
|
|
|
|
if (PR_FAILURE == rv) PL_FPrintError(err, "PR_NetAddrToString");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PR_fprintf(err, "\t%s\n", buffer);
|
1998-04-28 22:43:48 +00:00
|
|
|
memset(&translation, 0, sizeof(translation));
|
1998-03-28 02:44:41 +00:00
|
|
|
rv = PR_StringToNetAddr(buffer, &translation);
|
|
|
|
if (PR_FAILURE == rv) PL_FPrintError(err, "PR_StringToNetAddr");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PRSize addr_len = PR_NETADDR_SIZE(address);
|
|
|
|
if (0 != memcmp(address, &translation, addr_len))
|
|
|
|
{
|
|
|
|
PR_fprintf(err, "Address translations do not match\n");
|
|
|
|
DumpAddr(address, "original");
|
|
|
|
DumpAddr(&translation, "translate");
|
|
|
|
rv = PR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
} /* PrintAddress */
|
|
|
|
|
|
|
|
PRIntn main(PRIntn argc, char **argv)
|
|
|
|
{
|
|
|
|
PRStatus rv;
|
|
|
|
PLOptStatus os;
|
|
|
|
PRHostEnt host;
|
|
|
|
PRProtoEnt proto;
|
|
|
|
PRBool ipv6 = PR_FALSE;
|
|
|
|
const char *name = NULL;
|
1998-09-25 20:34:39 +00:00
|
|
|
PRBool failed = PR_FALSE, version = PR_FALSE;
|
|
|
|
PLOptState *opt = PL_CreateOptState(argc, argv, "Vh6");
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
err = PR_GetSpecialFD(PR_StandardError);
|
|
|
|
|
|
|
|
while (PL_OPT_EOL != (os = PL_GetNextOpt(opt)))
|
|
|
|
{
|
|
|
|
if (PL_OPT_BAD == os) continue;
|
|
|
|
switch (opt->option)
|
|
|
|
{
|
|
|
|
case 0: /* Name of host to lookup */
|
|
|
|
name = opt->value;
|
|
|
|
break;
|
|
|
|
case '6': /* Turn on IPv6 mode */
|
|
|
|
ipv6 = PR_TRUE;
|
|
|
|
break;
|
1998-09-25 20:34:39 +00:00
|
|
|
case 'V': /* Do version discovery */
|
|
|
|
version = PR_TRUE;
|
|
|
|
break;
|
1998-03-28 02:44:41 +00:00
|
|
|
case 'h': /* user wants some guidance */
|
|
|
|
default:
|
|
|
|
Help(); /* so give him an earful */
|
|
|
|
return 2; /* but not a lot else */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PL_DestroyOptState(opt);
|
|
|
|
|
1998-09-25 20:34:39 +00:00
|
|
|
if (version)
|
|
|
|
{
|
1998-11-19 22:20:31 +00:00
|
|
|
#if defined(XP_UNIX) || defined(XP_OS2)
|
1998-09-25 20:34:39 +00:00
|
|
|
#define NSPR_LIB "nspr21"
|
|
|
|
#elif defined(WIN32)
|
|
|
|
#define NSPR_LIB "libnspr21"
|
|
|
|
#else
|
|
|
|
#error "Architecture not supported"
|
|
|
|
#endif
|
|
|
|
const PRVersionDescription *version_info;
|
|
|
|
char *nspr_path = PR_GetEnv("LD_LIBRARY_PATH");
|
|
|
|
char *nspr_name = PR_GetLibraryName(nspr_path, NSPR_LIB);
|
|
|
|
PRLibrary *runtime = PR_LoadLibrary(nspr_name);
|
|
|
|
if (NULL == runtime)
|
|
|
|
PL_FPrintError(err, "PR_LoadLibrary");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
versionEntryPointType versionPoint = (versionEntryPointType)
|
|
|
|
PR_FindSymbol(runtime, "libVersionPoint");
|
|
|
|
if (NULL == versionPoint)
|
|
|
|
PL_FPrintError(err, "PR_FindSymbol");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char buffer[100];
|
|
|
|
PRExplodedTime exploded;
|
|
|
|
version_info = versionPoint();
|
|
|
|
(void)PR_fprintf(err, "Runtime library version information\n");
|
|
|
|
PR_ExplodeTime(
|
|
|
|
version_info->buildTime, PR_GMTParameters, &exploded);
|
|
|
|
(void)PR_FormatTime(
|
|
|
|
buffer, sizeof(buffer), "%d %b %Y %H:%M:%S", &exploded);
|
|
|
|
(void)PR_fprintf(err, " Build time: %s GMT\n", buffer);
|
|
|
|
(void)PR_fprintf(
|
|
|
|
err, " Build time: %s\n", version_info->buildTimeString);
|
|
|
|
(void)PR_fprintf(
|
|
|
|
err, " %s V%u.%u.%u (%s%s%s)\n",
|
|
|
|
version_info->description,
|
|
|
|
version_info->vMajor,
|
|
|
|
version_info->vMinor,
|
|
|
|
version_info->vPatch,
|
|
|
|
(version_info->beta ? " beta " : ""),
|
|
|
|
(version_info->debug ? " debug " : ""),
|
|
|
|
(version_info->special ? " special" : ""));
|
|
|
|
(void)PR_fprintf(err, " filename: %s\n", version_info->filename);
|
|
|
|
(void)PR_fprintf(err, " security: %s\n", version_info->security);
|
|
|
|
(void)PR_fprintf(err, " copyright: %s\n", version_info->copyright);
|
|
|
|
(void)PR_fprintf(err, " comment: %s\n", version_info->comment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NULL != nspr_name) PR_FreeLibraryName(nspr_name);
|
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
if (ipv6)
|
|
|
|
{
|
|
|
|
rv = PR_SetIPv6Enable(ipv6);
|
|
|
|
if (PR_FAILURE == rv)
|
|
|
|
{
|
|
|
|
failed = PR_TRUE;
|
|
|
|
PL_FPrintError(err, "PR_SetIPv6Enable");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
if (NULL == name)
|
|
|
|
{
|
|
|
|
char *me = (char*)PR_MALLOC(DNS_BUFFER);
|
|
|
|
rv = PR_GetSystemInfo(PR_SI_HOSTNAME, me, DNS_BUFFER);
|
|
|
|
if (PR_FAILURE == rv)
|
|
|
|
{
|
|
|
|
failed = PR_TRUE;
|
|
|
|
PL_FPrintError(err, "PR_GetHostName");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
name = me; /* just leak the storage */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char buffer[HOST_BUFFER];
|
|
|
|
PR_fprintf(err, "Translating the name %s ...", name);
|
|
|
|
|
|
|
|
rv = PR_GetHostByName(name, buffer, sizeof(buffer), &host);
|
|
|
|
if (PR_FAILURE == rv)
|
|
|
|
{
|
|
|
|
failed = PR_TRUE;
|
|
|
|
PL_FPrintError(err, "PR_GetHostByName");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PRIntn index = 0;
|
|
|
|
PRNetAddr address;
|
1998-11-19 22:20:31 +00:00
|
|
|
memset(&address, 0, sizeof(PRNetAddr));
|
1998-03-28 02:44:41 +00:00
|
|
|
PR_fprintf(err, "success .. enumerating results\n");
|
|
|
|
do
|
|
|
|
{
|
|
|
|
index = PR_EnumerateHostEnt(index, &host, 0, &address);
|
|
|
|
if (index > 0) PrintAddress(&address);
|
|
|
|
else if (-1 == index)
|
|
|
|
{
|
|
|
|
failed = PR_TRUE;
|
|
|
|
PL_FPrintError(err, "PR_EnumerateHostEnt");
|
|
|
|
}
|
|
|
|
} while (index > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
char buffer[PROTO_BUFFER];
|
|
|
|
/*
|
|
|
|
** Get Proto by name/number
|
|
|
|
*/
|
|
|
|
rv = PR_GetProtoByName("tcp", &buffer[1], sizeof(buffer) - 1, &proto);
|
|
|
|
rv = PR_GetProtoByNumber(6, &buffer[3], sizeof(buffer) - 3, &proto);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (failed) ? 1 : 0;
|
|
|
|
}
|
1999-01-28 00:19:40 +00:00
|
|
|
|
|
|
|
#endif /* XP_BEOS */
|