Removed builddbm. It hasn't been used for ages.
authoraland <aland>
Thu, 9 Jan 2003 20:35:28 +0000 (20:35 +0000)
committeraland <aland>
Thu, 9 Jan 2003 20:35:28 +0000 (20:35 +0000)
man/man8/builddbm.8 [deleted file]
src/main/Makefile.in
src/main/builddbm.c [deleted file]

diff --git a/man/man8/builddbm.8 b/man/man8/builddbm.8
deleted file mode 100644 (file)
index 154465d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-.TH BUILDDBM 8 "20 Januari 1997" "" "FreeRADIUS Radius Daemon"
-.SH NAME
-builddbm - build DBM file from RADIUS users file.
-.SH SYNOPSIS
-.B builddbm
-.SH DESCRIPTION
-This utility is used to build a DBM file (in DBM or NDBM format) from
-the radius \fIusers\fP file to save memory.
-.PP
-Usage of this utility is only encouraged if you don't use multiple
-DEFAULT entries (or only at the end of the \fIusers\fP file) and
-you have more then 500 entries in the \fIusers\fP file. Normally,
-\fBradiusd\fP reads the \fIusers\fP file into memory at startup. With
-very large files this may cost too many resources and it may then
-be wiser to use a DBM file to save memory.
-
-Be aware that with the fastusers module, one can get very good results
-with no DBM file, so use of this program may be depreciated.
-.SH SEE ALSO
-radiusd(8), users(5rad).
-.SH AUTHOR
-Miquel van Smoorenburg, miquels@cistron.nl.
index 4c8a7ea..9ee7dfd 100644 (file)
@@ -117,9 +117,6 @@ radrelay: radrelay.o mainconfig.o util.o nas.o client.o log.o conffile.o files.o
 radrelay.o: radrelay.c $(INCLUDES)
        $(CC) $(CFLAGS) -c radrelay.c
 
-builddbm: builddbm.o files_b.o log.o
-       $(CC) $(LDFLAGS) -o builddbm builddbm.o files_b.o log.o $(LDBM) $(LIBS)
-
 builddbm.o: builddbm.c
        $(CC) $(CFLAGS) -c builddbm.c
 
diff --git a/src/main/builddbm.c b/src/main/builddbm.c
deleted file mode 100644 (file)
index 60fc960..0000000
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * builddbm.c  Build a DBM file from an ASCII users file.
- *
- * Version:    $Id$
- *
- *   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 2000  The FreeRADIUS server project
- * Copyright 2000  Miquel van Smoorenburg <miquels@cistron.nl>
- */
-
-char sccsid[] =
-"@(#)builddbm.c        2.2 Copyright 2001 FreeRADIUS Project";
-
-#include "autoconf.h"
-
-#include <sys/types.h>
-#include <sys/stat.h>
-
-#include <stdio.h>
-#include <strings.h>
-#include <fcntl.h>
-#include <stdlib.h>
-#include <unistd.h>
-#ifdef WITH_DBM
-#      include <dbm.h>
-#endif
-#ifdef WITH_NDBM
-#      include <ndbm.h>
-#endif
-
-#include "radiusd.h"
-
-const char *progname;
-int debug_flag;
-char *radius_dir;
-char *radlog_dir;
-
-FILE *userfd;
-
-
-/*
- *     Print a list of VALUE_PAIRS into a string,
- *     separated by comma's and closed off with a newline.
- */
-void makelist(char *out, int outlen, VALUE_PAIR *vp)
-{
-       char *ptr;
-       int len;
-
-       ptr = out;
-       ptr[0] = 0;
-
-       while (vp && outlen > 3) {
-               vp_prints(ptr, outlen, vp);
-               strcat(ptr, ", ");
-               len = strlen(ptr);
-               outlen -= len + 2;
-               ptr += len;
-               vp = vp->next;
-       }
-       strcat(ptr, "\n");
-}
-
-
-int main(int argc, char **argv)
-{
-       PAIR_LIST *users;
-       char name[MAX_STRING_LEN];
-       char content[4096];
-       int len;
-       datum named;
-       datum contentd;
-       int defno = 0;
-#ifdef WITH_DBM
-       int fd;
-#endif
-#ifdef WITH_NDBM
-       DBM *dbm;
-#endif
-
-       progname = argv[0];
-       radius_dir = ".";
-       librad_dodns = 0;
-
-       if (dict_init(RADDBDIR, RADIUS_DICTIONARY) < 0) {
-               librad_perror("builddbm");
-               return 1;
-       }
-
-       /*
-        *      Read the "users" file.
-        */
-       if ((users = pairlist_read(RADIUS_USERS, 1)) == NULL)
-               exit(1);
-
-       /*
-        *      Initialize a new, empty database.
-        */
-       umask(077);
-#ifdef WITH_DBM
-       if ((fd = open("users.pag", O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0) {
-               fprintf(stderr, "%s: Couldn't open users.pag for writing\n",
-                               progname);
-               exit(1);
-       }
-       close(fd);
-       if ((fd = open("users.dir", O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0) {
-               fprintf(stderr, "%s: Couldn't open users.dir for writing\n",
-                               progname);
-               exit(1);
-       }
-       close(fd);
-       if (dbminit("users") != 0) {
-               fprintf(stderr, "%s: ", progname);
-               perror("dbminit(users)");
-               exit(1);
-       }
-#endif
-#ifdef WITH_NDBM
-       if ((dbm = dbm_open("users", O_RDWR|O_CREAT|O_TRUNC, 0600)) == NULL) {
-               fprintf(stderr, "%s: ", progname);
-               perror("dbm_open(users)");
-               exit(1);
-       }
-#endif
-
-       while (users) {
-
-               makelist(content, sizeof(content), users->check);
-               len = strlen(content);
-               makelist(content + len, sizeof(content) - len, users->reply);
-
-               strNcpy(name, users->name, sizeof(name));
-               if (strcmp(name, "DEFAULT") == 0) {
-                       if (defno > 0)
-                               sprintf(name, "DEFAULT%d", defno);
-                       defno++;
-               }
-               named.dptr = name;
-               named.dsize = strlen(name);
-               contentd.dptr = content;
-               contentd.dsize = strlen(content);
-#ifdef WITH_DBM
-               if (store(named, contentd) != 0)
-#endif
-#ifdef WITH_NDBM
-               if (dbm_store(dbm, named, contentd, DBM_INSERT) != 0)
-#endif
-               {
-                       fprintf(stderr, "%s: Couldn't store datum for %s\n",
-                                       progname, name);
-                       exit(1);
-               }
-               users = users->next;
-       }
-#ifdef WITH_DBM
-       dbmclose();
-#endif
-#ifdef WITH_NDBM
-       dbm_close(dbm);
-#endif
-       return 0;
-}
-