From 8d218a37bd2b60abc5c1267bee0adc008f8004d9 Mon Sep 17 00:00:00 2001 From: pst Date: Wed, 2 Aug 1995 23:08:18 +0000 Subject: Make the DB/DBM routines generic (ifdef FreeBSD considered evil), and also fix a string allocation bug. Submitted by: Havard Eidnes --- eBones/kdb/krb_dbm.c | 32 +++++++++++++++++-------------- eBones/kdb_destroy/kdb_destroy.c | 26 ++++++++++++++----------- eBones/kdb_util/kdb_util.c | 6 +++--- eBones/lib/libkdb/krb_dbm.c | 32 +++++++++++++++++-------------- eBones/usr.sbin/kdb_destroy/kdb_destroy.c | 26 ++++++++++++++----------- eBones/usr.sbin/kdb_util/kdb_util.c | 6 +++--- 6 files changed, 72 insertions(+), 56 deletions(-) (limited to 'eBones') diff --git a/eBones/kdb/krb_dbm.c b/eBones/kdb/krb_dbm.c index 8bc283b..c42df20 100644 --- a/eBones/kdb/krb_dbm.c +++ b/eBones/kdb/krb_dbm.c @@ -4,15 +4,15 @@ * . * * from: krb_dbm.c,v 4.9 89/04/18 16:15:13 wesommer Exp $ - * $Id: krb_dbm.c,v 1.2 1995/01/25 19:45:25 ache Exp $ + * $Id: krb_dbm.c,v 1.3 1995/05/30 06:40:38 rgrimes Exp $ */ #ifndef lint static char rcsid[] = -"$Id: krb_dbm.c,v 1.2 1995/01/25 19:45:25 ache Exp $"; +"$Id: krb_dbm.c,v 1.3 1995/05/30 06:40:38 rgrimes Exp $"; #endif lint -#if defined(__FreeBSD__) +#if defined(__FreeBSD__) || defined(__NetBSD__) #define NDBM #endif @@ -36,6 +36,10 @@ static char rcsid[] = #include #include +#ifdef dbm_pagfno +#define DB +#endif + #define KERB_DB_MAX_RETRY 5 #ifdef DEBUG @@ -343,38 +347,38 @@ kerb_db_rename(from, to) char *from; char *to; { -#ifndef __FreeBSD__ +#ifdef DB + char *fromdb = gen_dbsuffix (from, ".db"); + char *todb = gen_dbsuffix (to, ".db"); +#else char *fromdir = gen_dbsuffix (from, ".dir"); char *todir = gen_dbsuffix (to, ".dir"); char *frompag = gen_dbsuffix (from , ".pag"); char *topag = gen_dbsuffix (to, ".pag"); -#else - char *fromdb = gen_dbsuffix (from, ".db"); - char *todb = gen_dbsuffix (to, ".db"); #endif char *fromok = gen_dbsuffix(from, ".ok"); long trans = kerb_start_update(to); int ok; -#ifndef __FreeBSD__ +#ifdef DB + if (rename (fromdb, todb) == 0) { +#else if ((rename (fromdir, todir) == 0) && (rename (frompag, topag) == 0)) { -#else - if (rename (fromdb, todb) == 0) { #endif (void) unlink (fromok); ok = 1; } free (fromok); -#ifndef __FreeBSD__ +#ifdef DB + free (fromdb); + free (todb); +#else free (fromdir); free (todir); free (frompag); free (topag); -#else - free(fromdb); - free(todb); #endif if (ok) return kerb_end_update(to, trans); diff --git a/eBones/kdb_destroy/kdb_destroy.c b/eBones/kdb_destroy/kdb_destroy.c index 29c68a8..95206fe 100644 --- a/eBones/kdb_destroy/kdb_destroy.c +++ b/eBones/kdb_destroy/kdb_destroy.c @@ -4,12 +4,12 @@ * . * * from: kdb_destroy.c,v 4.0 89/01/24 21:49:02 jtkohl Exp $ - * $Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $ + * $Id: kdb_destroy.c,v 1.2 1995/01/25 19:57:27 ache Exp $ */ #ifndef lint static char rcsid[] = -"$Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $"; +"$Id: kdb_destroy.c,v 1.2 1995/01/25 19:57:27 ache Exp $"; #endif lint #include @@ -17,24 +17,28 @@ static char rcsid[] = #include "krb.h" #include "krb_db.h" +#ifdef dbm_pagfno +#define DB +#endif + main() { char answer[10]; /* user input */ char dbm[256]; /* database path and name */ char dbm1[256]; /* database path and name */ -#ifndef __FreeBSD__ - char *file1, *file2; /* database file names */ -#else +#ifdef DB char *file; /* database file names */ +#else + char *file1, *file2; /* database file names */ #endif strcpy(dbm, DBM_FILE); -#ifndef __FreeBSD__ +#ifdef __FreeBSD__ + file = strcat(dbm, ".db"); +#else strcpy(dbm1, DBM_FILE); file1 = strcat(dbm, ".dir"); file2 = strcat(dbm1, ".pag"); -#else - file = strcat(dbm, ".db"); #endif printf("You are about to destroy the Kerberos database "); @@ -43,10 +47,10 @@ main() fgets(answer, sizeof(answer), stdin); if (answer[0] == 'y' || answer[0] == 'Y') { -#ifndef __FreeBSD__ - if (unlink(file1) == 0 && unlink(file2) == 0) -#else +#ifdef DB if (unlink(file) == 0) +#else + if (unlink(file1) == 0 && unlink(file2) == 0) #endif fprintf(stderr, "Database deleted at %s\n", DBM_FILE); else diff --git a/eBones/kdb_util/kdb_util.c b/eBones/kdb_util/kdb_util.c index 7bc8559..97f7a65e 100644 --- a/eBones/kdb_util/kdb_util.c +++ b/eBones/kdb_util/kdb_util.c @@ -12,12 +12,12 @@ * Written July 9, 1987 by Jeffrey I. Schiller * * from: kdb_util.c,v 4.4 90/01/09 15:57:20 raeburn Exp $ - * $Id: kdb_util.c,v 1.1.1.1 1994/09/30 14:49:57 csgr Exp $ + * $Id: kdb_util.c,v 1.2 1995/05/30 06:40:44 rgrimes Exp $ */ #ifndef lint static char rcsid[] = -"$Id: kdb_util.c,v 1.1.1.1 1994/09/30 14:49:57 csgr Exp $"; +"$Id: kdb_util.c,v 1.2 1995/05/30 06:40:44 rgrimes Exp $"; #endif lint #include @@ -220,7 +220,7 @@ load_db (db_file, input_file) long time_explode(); int code; char *temp_db_file; - temp1 = strlen(db_file+2); + temp1 = strlen(db_file)+2; temp_db_file = malloc (temp1); strcpy(temp_db_file, db_file); strcat(temp_db_file, "~"); diff --git a/eBones/lib/libkdb/krb_dbm.c b/eBones/lib/libkdb/krb_dbm.c index 8bc283b..c42df20 100644 --- a/eBones/lib/libkdb/krb_dbm.c +++ b/eBones/lib/libkdb/krb_dbm.c @@ -4,15 +4,15 @@ * . * * from: krb_dbm.c,v 4.9 89/04/18 16:15:13 wesommer Exp $ - * $Id: krb_dbm.c,v 1.2 1995/01/25 19:45:25 ache Exp $ + * $Id: krb_dbm.c,v 1.3 1995/05/30 06:40:38 rgrimes Exp $ */ #ifndef lint static char rcsid[] = -"$Id: krb_dbm.c,v 1.2 1995/01/25 19:45:25 ache Exp $"; +"$Id: krb_dbm.c,v 1.3 1995/05/30 06:40:38 rgrimes Exp $"; #endif lint -#if defined(__FreeBSD__) +#if defined(__FreeBSD__) || defined(__NetBSD__) #define NDBM #endif @@ -36,6 +36,10 @@ static char rcsid[] = #include #include +#ifdef dbm_pagfno +#define DB +#endif + #define KERB_DB_MAX_RETRY 5 #ifdef DEBUG @@ -343,38 +347,38 @@ kerb_db_rename(from, to) char *from; char *to; { -#ifndef __FreeBSD__ +#ifdef DB + char *fromdb = gen_dbsuffix (from, ".db"); + char *todb = gen_dbsuffix (to, ".db"); +#else char *fromdir = gen_dbsuffix (from, ".dir"); char *todir = gen_dbsuffix (to, ".dir"); char *frompag = gen_dbsuffix (from , ".pag"); char *topag = gen_dbsuffix (to, ".pag"); -#else - char *fromdb = gen_dbsuffix (from, ".db"); - char *todb = gen_dbsuffix (to, ".db"); #endif char *fromok = gen_dbsuffix(from, ".ok"); long trans = kerb_start_update(to); int ok; -#ifndef __FreeBSD__ +#ifdef DB + if (rename (fromdb, todb) == 0) { +#else if ((rename (fromdir, todir) == 0) && (rename (frompag, topag) == 0)) { -#else - if (rename (fromdb, todb) == 0) { #endif (void) unlink (fromok); ok = 1; } free (fromok); -#ifndef __FreeBSD__ +#ifdef DB + free (fromdb); + free (todb); +#else free (fromdir); free (todir); free (frompag); free (topag); -#else - free(fromdb); - free(todb); #endif if (ok) return kerb_end_update(to, trans); diff --git a/eBones/usr.sbin/kdb_destroy/kdb_destroy.c b/eBones/usr.sbin/kdb_destroy/kdb_destroy.c index 29c68a8..95206fe 100644 --- a/eBones/usr.sbin/kdb_destroy/kdb_destroy.c +++ b/eBones/usr.sbin/kdb_destroy/kdb_destroy.c @@ -4,12 +4,12 @@ * . * * from: kdb_destroy.c,v 4.0 89/01/24 21:49:02 jtkohl Exp $ - * $Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $ + * $Id: kdb_destroy.c,v 1.2 1995/01/25 19:57:27 ache Exp $ */ #ifndef lint static char rcsid[] = -"$Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $"; +"$Id: kdb_destroy.c,v 1.2 1995/01/25 19:57:27 ache Exp $"; #endif lint #include @@ -17,24 +17,28 @@ static char rcsid[] = #include "krb.h" #include "krb_db.h" +#ifdef dbm_pagfno +#define DB +#endif + main() { char answer[10]; /* user input */ char dbm[256]; /* database path and name */ char dbm1[256]; /* database path and name */ -#ifndef __FreeBSD__ - char *file1, *file2; /* database file names */ -#else +#ifdef DB char *file; /* database file names */ +#else + char *file1, *file2; /* database file names */ #endif strcpy(dbm, DBM_FILE); -#ifndef __FreeBSD__ +#ifdef __FreeBSD__ + file = strcat(dbm, ".db"); +#else strcpy(dbm1, DBM_FILE); file1 = strcat(dbm, ".dir"); file2 = strcat(dbm1, ".pag"); -#else - file = strcat(dbm, ".db"); #endif printf("You are about to destroy the Kerberos database "); @@ -43,10 +47,10 @@ main() fgets(answer, sizeof(answer), stdin); if (answer[0] == 'y' || answer[0] == 'Y') { -#ifndef __FreeBSD__ - if (unlink(file1) == 0 && unlink(file2) == 0) -#else +#ifdef DB if (unlink(file) == 0) +#else + if (unlink(file1) == 0 && unlink(file2) == 0) #endif fprintf(stderr, "Database deleted at %s\n", DBM_FILE); else diff --git a/eBones/usr.sbin/kdb_util/kdb_util.c b/eBones/usr.sbin/kdb_util/kdb_util.c index 7bc8559..97f7a65e 100644 --- a/eBones/usr.sbin/kdb_util/kdb_util.c +++ b/eBones/usr.sbin/kdb_util/kdb_util.c @@ -12,12 +12,12 @@ * Written July 9, 1987 by Jeffrey I. Schiller * * from: kdb_util.c,v 4.4 90/01/09 15:57:20 raeburn Exp $ - * $Id: kdb_util.c,v 1.1.1.1 1994/09/30 14:49:57 csgr Exp $ + * $Id: kdb_util.c,v 1.2 1995/05/30 06:40:44 rgrimes Exp $ */ #ifndef lint static char rcsid[] = -"$Id: kdb_util.c,v 1.1.1.1 1994/09/30 14:49:57 csgr Exp $"; +"$Id: kdb_util.c,v 1.2 1995/05/30 06:40:44 rgrimes Exp $"; #endif lint #include @@ -220,7 +220,7 @@ load_db (db_file, input_file) long time_explode(); int code; char *temp_db_file; - temp1 = strlen(db_file+2); + temp1 = strlen(db_file)+2; temp_db_file = malloc (temp1); strcpy(temp_db_file, db_file); strcat(temp_db_file, "~"); -- cgit v1.1