diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-04 14:31:39 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-04 14:31:39 +0000 |
commit | c836cf2880280b04b378af3efc2042176f0c74f8 (patch) | |
tree | 9c2eb775225ebccb622a98d86911a0ec3fcd3605 /net-analyzer/ntop | |
parent | New Version (diff) | |
download | historical-c836cf2880280b04b378af3efc2042176f0c74f8.tar.gz historical-c836cf2880280b04b378af3efc2042176f0c74f8.tar.bz2 historical-c836cf2880280b04b378af3efc2042176f0c74f8.zip |
Version bump, closes #19354
Diffstat (limited to 'net-analyzer/ntop')
-rw-r--r-- | net-analyzer/ntop/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/ntop/files/digest-ntop-2.2 | 1 | ||||
-rw-r--r-- | net-analyzer/ntop/files/main.c | 332 | ||||
-rw-r--r-- | net-analyzer/ntop/files/ntop-2.0_syslog_format.patch | 29 | ||||
-rw-r--r-- | net-analyzer/ntop/files/ntop-confd | 4 | ||||
-rw-r--r-- | net-analyzer/ntop/files/ntop-init | 17 | ||||
-rw-r--r-- | net-analyzer/ntop/ntop-2.2.ebuild | 77 |
7 files changed, 106 insertions, 362 deletions
diff --git a/net-analyzer/ntop/ChangeLog b/net-analyzer/ntop/ChangeLog index 11cbd174f3c7..ebe7ebba9e52 100644 --- a/net-analyzer/ntop/ChangeLog +++ b/net-analyzer/ntop/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/ntop # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.8 2003/02/12 07:49:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.9 2003/05/04 14:31:39 aliz Exp $ + +*ntop-2.2 (04 May 2003) + + 04 May 2003; Daniel Ahlberg <aliz@gentoo.org> ntop-2.2.ebuild : + Version bump. Contributions by Rigo Ketelings <rigo@home.nl> and + Ross Dougherty <theklone@optusnet.com.au> in #19354. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-analyzer/ntop/files/digest-ntop-2.2 b/net-analyzer/ntop/files/digest-ntop-2.2 new file mode 100644 index 000000000000..6297ccf7e42b --- /dev/null +++ b/net-analyzer/ntop/files/digest-ntop-2.2 @@ -0,0 +1 @@ +MD5 4586e4173fcab64d2394502603fc73aa ntop-2.2.tgz 2551153 diff --git a/net-analyzer/ntop/files/main.c b/net-analyzer/ntop/files/main.c deleted file mode 100644 index e4c79373e37d..000000000000 --- a/net-analyzer/ntop/files/main.c +++ /dev/null @@ -1,332 +0,0 @@ - -/* - * Copyright (C) 1998-2000 Luca Deri <deri@ntop.org> - * Portions by Stefano Suin <stefano@ntop.org> - * - * Centro SERRA, University of Pisa - * http://www.ntop.org/ - * - * 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. - */ - -/* - * Copyright (c) 1994, 1996 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that: (1) source code distributions - * retain the above copyright notice and this paragraph in its entirety, (2) - * distributions including binary code include the above copyright notice and - * this paragraph in its entirety in the documentation or other materials - * provided with the distribution, and (3) all advertising materials mentioning - * features or use of this software display the following acknowledgement: - * ``This product includes software developed by the University of California, - * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of - * the University nor the names of its contributors may be used to endorse - * or promote products derived from this software without specific prior - * written permission. - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ - -#include "ntop.h" -#include "globals-report.h" - - -#if defined(NEED_INET_ATON) -/* - * Minimal implementation of inet_aton. - * Cannot distinguish between failure and a local broadcast address. - */ - -#ifndef INADDR_NONE -#define INADDR_NONE 0xffffffff -#endif - - -static int inet_aton(const char *cp, struct in_addr *addr) -{ - addr->s_addr = inet_addr(cp); - return (addr->s_addr == INADDR_NONE) ? 0 : 1; -} -#else -in_addr_t inet_aton(const char *cp, struct in_addr *addr); -#endif - -/* That's the meat */ -int main(int argc, char *argv[]) { - int pflag, i; -#ifdef WIN32 - int optind=0; -#endif - int op, enableDBsupport=0, mergeInterfaces=1; - char *cp, *localAddresses=NULL, *webAddr=NULL, *devices; - char flowSpecs[2048], rulesFile[128]; - time_t lastTime; - -#ifndef WIN32 - if (freopen("/dev/null", "w", stderr) == NULL) { - printf("ntop: unable to replace stderr with /dev/null: %s\n", - strerror(errno)); - } -#endif - - webPort = NTOP_DEFAULT_WEB_PORT; - - /* Initialization of local variables */ - isLsofPresent = checkCommand("lsof"); - /* LUCA LUCA */ isLsofPresent = 0; - isNepedPresent = checkCommand("neped"); - isNmapPresent = checkCommand("nmap"); - - rulesFile[0] = '\0'; - flowSpecs[0] = '\0'; - flowsList = NULL; - localAddrFlag = 1; - logTimeout = 0; - tcpChain = NULL, udpChain = NULL, icmpChain = NULL; - devices = NULL; - - daemonMode = 0, pflag = 0, numericFlag=0, percentMode = 0; - refreshRate = 0, idleFlag = 1, logd = NULL; - rFileName=NULL; - - domainName[0] = '\0'; - - actTime = time(NULL); - strcpy(dbPath, "."); - - if ((cp = strrchr(argv[0], '/')) != NULL) - program_name = cp + 1; - else - program_name = argv[0]; - - if(strcmp(program_name, "ntopd") == 0) { - daemonMode++; - } - - initIPServices(); - -#ifdef WIN32 - while ((op = getopt(argc, argv, "e:F:hr:p:l:nw:m:b:B:D:s:P:R:")) != EOF) -#else - while ((op = getopt(argc, argv, "Ide:f:F:hr:i:p:l:nNw:m:b:D:s:P:R:M")) != EOF) -#endif - switch (op) { - /* Courtesy of Ralf Amandi <Ralf.Amandi@accordata.net> */ - case 'P': /* DB-Path */ - strcpy(dbPath, optarg); - break; - -#ifndef WIN32 - case 'd': - daemonMode=1; - break; - - case 'I': /* Interactive mode */ - printf("intop provides you curses support. ntop -I is no longer used.\n"); - return(-1); -#endif - -#ifdef WIN32 - case 'B': - SIZE_BUF=atoi(optarg)*1024; - break; -#endif - - case 'b': /* host:port */ - handleDbSupport(optarg, &enableDBsupport); - break; - - case 'D': /* domain */ - strcpy(domainName, optarg); - break; - - case 'f': - isLsofPresent = 0; /* Don't make debugging too complex */ - rFileName = optarg; - break; - - case 'r': - if(!isdigit(optarg[0])) { - printf("FATAL ERROR: flag -r expects a numeric argument.\n"); - exit(-1); - } - refreshRate = atoi(optarg); - break; - - case 'e': - maxNumLines = atoi(optarg); - break; - - case 's': - actualHashSize = atoi(optarg); - if((actualHashSize > HASHNAMESIZE) - || (actualHashSize < 1024)) { - printf("Acceptable values for the 's' flag are\n" - "between 1024 and %d\n", HASHNAMESIZE); - exit(-1); - } - break; - -#ifndef WIN32 - case 'i': - devices = optarg; - break; -#endif - - case 'p': - handleProtocols(optarg); - break; - - case 'F': - strcpy(flowSpecs, optarg); - break; - - case 'm': - localAddresses = strdup(optarg); - break; - - case 'l': - if(!isdigit(optarg[0])) { - printf("FATAL ERROR: flag -l expects a numeric argument.\n"); - exit(-1); - } - - logTimeout = atoi(optarg); - - if(logTimeout < 0) { - printf("Log period out of range: set to default (30 mins)\n"); - logTimeout = 1800; /* seconds */ - } - - logd = fopen("ntop.log", "w+"); - if(logd == NULL) { - printf("Logging disabled: unable to log onto file ntop.log.\n"); - logTimeout = 0; - } else - printLogHeader(); - break; - - case 'n': - numericFlag++; - break; - - case 'N': - isNmapPresent = 0; - break; - - case 'w': - if(!isdigit(optarg[0])) { - printf("FATAL ERROR: flag -w expects a numeric argument.\n"); - exit(-1); - } - - /* Courtesy of Daniel Savard <daniel.savard@gespro.com> */ - if ((webAddr = strchr(optarg,':'))) { - /* DS: Search for : to find xxx.xxx.xxx.xxx:port */ - *webAddr = '\0'; /* This code is to be able to bind to a particular interface */ - webPort = atoi(webAddr+1); - webAddr = optarg; - } else - webPort = atoi(optarg); - break; - - case 'R': - strcpy(rulesFile, optarg); - break; - - case 'M': - mergeInterfaces = 0; - break; - - default: - usage(); - exit(-1); - /* NOTREACHED */ - } - - - /* ***************************** */ - - initGlobalValues(); - reportValues(&lastTime); - postCommandLineArgumentsInitialization(&lastTime); - initGdbm(); - initializeWeb(); - initApps(); - initReports(); - initDevices(devices); - - printf("ntop v.%s %s [%s] listening on [", - version, THREAD_MODE, osName); - - if(rFileName != NULL) - printf("%s", PCAP_NW_INTERFACE); - else - for(i=0; i<numDevices; i++) { - if(i>0) printf(","); - printf("%s", device[i].name); - } - - printf("].\nCopyright 1998-2000 by %s\n", author); - printf("Get the freshest ntop from http://www.ntop.org/\n\n"); - printf("Initialising...\n"); - - initLibpcap(rulesFile, numDevices); - - if(localAddresses != NULL) { - handleLocalAddresses(localAddresses); - free(localAddresses); - localAddresses = NULL; - } - - initDeviceDatalink(); - parseTrafficFilter(argv, optind); - - /* Handle flows (if any) */ - if(flowSpecs[0] != '\0') - handleFlowsSpecs(flowSpecs); - - loadPlugins(); - - initCounters(mergeInterfaces); - initLogger(); - initSignals(); - - initThreads(enableDBsupport); - - initWeb(webPort, webAddr); - - printf("Sniffying...\n"); - - - /* - In multithread mode, a separate thread handles - packet sniffing - */ -#ifndef MULTITHREADED - packetCaptureLoop(&lastTime, refreshRate); -#else - startSniffer(); - sleep(-1); -#endif - - pause (); - - return(0); -} - diff --git a/net-analyzer/ntop/files/ntop-2.0_syslog_format.patch b/net-analyzer/ntop/files/ntop-2.0_syslog_format.patch deleted file mode 100644 index 5fab91a38a47..000000000000 --- a/net-analyzer/ntop/files/ntop-2.0_syslog_format.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -u ntop_original/util.c ntop/util.c ---- ntop_original/util.c Thu Dec 27 02:54:29 2001 -+++ ntop/util.c Thu Apr 25 17:34:55 2002 -@@ -2179,20 +2179,20 @@ - #if 0 - switch(traceLevel) { - case 0: -- syslog(LOG_ERR, buf); -+ syslog(LOG_ERR, "%s", buf); - break; - case 1: -- syslog(LOG_WARNING, buf); -+ syslog(LOG_WARNING, "%s", buf); - break; - case 2: -- syslog(LOG_NOTICE, buf); -+ syslog(LOG_NOTICE, "%s", buf); - break; - default: -- syslog(LOG_INFO, buf); -+ syslog(LOG_INFO, "%s", buf); - break; - } - #else -- syslog(LOG_ERR, buf); -+ syslog(LOG_ERR, "%s", buf); - #endif - } - #endif diff --git a/net-analyzer/ntop/files/ntop-confd b/net-analyzer/ntop/files/ntop-confd new file mode 100644 index 000000000000..56197eccad6e --- /dev/null +++ b/net-analyzer/ntop/files/ntop-confd @@ -0,0 +1,4 @@ +# Config file for /etc/init.d/ntop + +# Set preferred options here +#NTOP_OPTS="--http-server 3000 --https-server 0 --interface eth0" diff --git a/net-analyzer/ntop/files/ntop-init b/net-analyzer/ntop/files/ntop-init new file mode 100644 index 000000000000..28de6bf1cf24 --- /dev/null +++ b/net-analyzer/ntop/files/ntop-init @@ -0,0 +1,17 @@ +#!/sbin/runscript + +depend() { + need net +} + +start() { + ebegin "Starting ntop" + start-stop-daemon --start --quiet --exec /usr/bin/ntop -- -d -L ${NTOP_OPTS} >/dev/null + eend $? +} + +stop() { + ebegin "Stopping ntop" + start-stop-daemon --stop --quiet --retry 5 --exec /usr/bin/ntop + eend $? +} diff --git a/net-analyzer/ntop/ntop-2.2.ebuild b/net-analyzer/ntop/ntop-2.2.ebuild new file mode 100644 index 000000000000..3de03bd70058 --- /dev/null +++ b/net-analyzer/ntop/ntop-2.2.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-2.2.ebuild,v 1.1 2003/05/04 14:31:39 aliz Exp $ + +IUSE="ssl readline tcpd ncurses" + +S=${WORKDIR}/${P}/${PN} +DESCRIPTION="ntop is a unix tool that shows network usage like top" +SRC_URI="mirror://sourceforge/ntop/${P}.tgz" +HOMEPAGE="http://www.ntop.org/ntop.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc" + +DEPEND=">=sys-libs/gdbm-1.8.0 + >=net-libs/libpcap-0.5.2 + tcpd? ( >=sys-apps/tcp-wrappers-7.6-r4 ) + ssl? ( >=dev-libs/openssl-0.9.6 ) + readline? ( >=sys-libs/readline-4.1 ) + ncurses? ( sys-libs/ncurses )" + +src_compile() { + cd ${S} + local myconf + + use readline || myconf="${myconf} --without-readline" + use tcpd || myconf="${myconf} --with-tcpwrap" + use ssl || myconf="${myconf} --without-ssl" + use ncurses || myconf="${myconf} --without-curses" + + # ntop 2.0 ships with its own version of gdchart... gdchart should + # get its own package but ntop should be built with the version it + # shipped with just in case future versions are incompatible -- blocke + + # compile gdchart + cd ../gdchart0.94c + ./configure || die "gdchart configure problem" + + # subtree #1 + cd gd-1.8.3/libpng-1.2.4 + make -f scripts/makefile.linux || die "libpng compile problem" + + # subtree #2 + cd ../../zlib-1.1.4/ + ./configure || die "zlib configure problem" + make || die "zlib compile problem" + + # gdchart make + cd ../ + make || die "gdchart compile problem" + + # now ntop itself... + cd ../ntop + econf ${myconf} || die "configure problem" + make || die "compile problem" +} + +src_install () { + make DESTDIR=${D} install || die "install problem" + + # fixme: bad handling of plugins (in /usr/lib with unsuggestive names) + # (don't know if there is a clean way to handle it) + + doman ntop.8 + + dodoc AUTHORS CONTENTS COPYING ChangeLog MANIFESTO NEWS + dodoc PORTING README SUPPORT_NTOP.txt THANKS + + dohtml ntop.html + + dodir /var/lib/ntop + + exeinto /etc/init.d ; newexe ${FILESDIR}/ntop-init ntop + insinto /etc/conf.d ; newins ${FILESDIR}/ntop-confd ntop +} + |