summaryrefslogtreecommitdiffstats
path: root/ldap/libraries
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2007-04-27 21:45:14 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2007-04-27 21:45:14 +0000
commitcdaf25f0089623a6bf277db47ca35011cf8c6a77 (patch)
treed920e26d1f41100f6b6fd4f8b93349d92e62ea2e /ldap/libraries
parent1d881ef7b19acd6c4f3f5916f5c8b59c842e4c20 (diff)
downloadds-cdaf25f0089623a6bf277db47ca35011cf8c6a77.tar.gz
ds-cdaf25f0089623a6bf277db47ca35011cf8c6a77.tar.xz
ds-cdaf25f0089623a6bf277db47ca35011cf8c6a77.zip
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #2) Description: Cleaning up unused code
Diffstat (limited to 'ldap/libraries')
-rw-r--r--ldap/libraries/libldif/Makefile80
-rw-r--r--ldap/libraries/libldif/fileurl.c326
-rw-r--r--ldap/libraries/libldif/fileurl.h77
-rw-r--r--ldap/libraries/libldif/line64.c783
-rw-r--r--ldap/libraries/liblitekey/Makefile78
-rw-r--r--ldap/libraries/liblitekey/keycheck.c108
6 files changed, 0 insertions, 1452 deletions
diff --git a/ldap/libraries/libldif/Makefile b/ldap/libraries/libldif/Makefile
deleted file mode 100644
index c48da914..00000000
--- a/ldap/libraries/libldif/Makefile
+++ /dev/null
@@ -1,80 +0,0 @@
-#
-# BEGIN COPYRIGHT BLOCK
-# 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; version 2 of the License.
-#
-# 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.
-#
-# In addition, as a special exception, Red Hat, Inc. gives You the additional
-# right to link the code of this Program with code not covered under the GNU
-# General Public License ("Non-GPL Code") and to distribute linked combinations
-# including the two, subject to the limitations in this paragraph. Non-GPL Code
-# permitted under this exception must only link to the code of this Program
-# through those well defined interfaces identified in the file named EXCEPTION
-# found in the source code files (the "Approved Interfaces"). The files of
-# Non-GPL Code may instantiate templates or use macros or inline functions from
-# the Approved Interfaces without causing the resulting work to be covered by
-# the GNU General Public License. Only Red Hat, Inc. may make changes or
-# additions to the list of Approved Interfaces. You must obey the GNU General
-# Public License in all respects for all of the Program code and other code used
-# in conjunction with the Program except the Non-GPL Code covered by this
-# exception. If you modify this file, you may extend this exception to your
-# version of the file, but you are not obligated to do so. If you do not wish to
-# provide this exception without modification, you must delete this exception
-# statement from your version and license this file solely under the GPL without
-# exception.
-#
-#
-# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
-# Copyright (C) 2005 Red Hat, Inc.
-# All rights reserved.
-# END COPYRIGHT BLOCK
-#
-#
-# GNU Makefile for libldif
-#
-
-LDAP_SRC = ../..
-BUILD_ROOT = ../../..
-
-NOSTDCLEAN=true # don't let nsconfig.mk define target clean
-NOSTDSTRIP=true # don't let nsconfig.mk define target strip
-
-OBJDEST = $(OBJDIR)/lib/libldif
-LIBDIR = $(LDAP_LIBDIR)
-
-include $(BUILD_ROOT)/nsdefs.mk
-include $(BUILD_ROOT)/nsconfig.mk
-include $(LDAP_SRC)/nsldap.mk
-
-CFLAGS += $(SLCFLAGS)
-
-LIBLDIF_OBJS= line64.o fileurl.o
-
-OBJS = $(addprefix $(OBJDEST)/, $(LIBLDIF_OBJS))
-
-LIBLDIF= $(addprefix $(LIBDIR)/, libldif.$(LIB_SUFFIX))
-
-clientSDK: all
-
-all: $(OBJDEST) $(LIBDIR) $(OBJS) $(LIBLDIF)
-
-$(LIBLDIF): $(OBJS)
- $(LINK_LIB)
-
-veryclean: clean
-
-clean:
- $(RM) $(OBJS)
- $(RM) $(LIBLDIF)
-
-$(OBJDEST):
- $(MKDIR) $(OBJDEST)
-
diff --git a/ldap/libraries/libldif/fileurl.c b/ldap/libraries/libldif/fileurl.c
deleted file mode 100644
index 751c0bf3..00000000
--- a/ldap/libraries/libldif/fileurl.c
+++ /dev/null
@@ -1,326 +0,0 @@
-/** BEGIN COPYRIGHT BLOCK
- * 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; version 2 of the License.
- *
- * 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.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-/*
- * LDIF tools fileurl.c -- functions for handling file URLs.
- * Used by ldif_parse_line.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-#include "fileurl.h"
-#include <ctype.h> /* for isalpha() */
-
-static int str_starts_with( char *s, char *prefix );
-static void hex_unescape( char *s );
-static int unhex( char c );
-static void strcpy_escaped_and_convert( char *s1, char *s2 );
-
-/*
- * Convert a file URL to a local path.
- *
- * If successful, LDIF_FILEURL_SUCCESS is returned and *localpathp is
- * set point to an allocated string. If not, an different LDIF_FILEURL_
- * error code is returned.
- *
- * See RFCs 1738 and 2396 for a specification for file URLs... but
- * Netscape Navigator seems to be a bit more lenient in what it will
- * accept, especially on Windows).
- *
- * This function parses file URLs of these three forms:
- *
- * file:///path
- * file:/path
- * file://localhost/path
- * file://host/path (rejected with a ...NONLOCAL error)
- *
- * On Windows, we convert leading drive letters of the form C| to C:
- * and if a drive letter is present we strip off the slash that precedes
- * path. Otherwise, the leading slash is returned.
- *
- */
-int
-ldif_fileurl2path( char *fileurl, char **localpathp )
-{
- char *path;
-
- /*
- * Make sure this is a file name or URL we can handle.
- */
- if ( *fileurl == '/' ||
- ( isalpha( fileurl[0] ) && ( fileurl[1] == '|' || fileurl[1] == ':' ) ) ) {
- path = fileurl;
- goto path_ready;
- } else if ( !str_starts_with( fileurl, "file:" )) {
- return( LDIF_FILEURL_NOTAFILEURL );
- }
-
- path = fileurl + 5; /* skip past "file:" scheme prefix */
-
- if ( *path != '/' ) {
- return( LDIF_FILEURL_MISSINGPATH );
- }
-
- ++path; /* skip past '/' at end of "file:/" */
-
- if ( *path == '/' ) {
- ++path; /* remainder is now host/path or /path */
- if ( *path != '/' ) {
- /*
- * Make sure it is for the local host.
- */
- if ( str_starts_with( path, "localhost/" )) {
- path += 9;
- } else {
- return( LDIF_FILEURL_NONLOCAL );
- }
- }
- } else { /* URL is of the form file:/path */
- --path;
- }
-
- /*
- * The remainder is now of the form /path. On Windows, skip past the
- * leading slash if a drive letter is present.
- */
-#ifdef _WIN32
- if ( isalpha( path[1] ) && ( path[2] == '|' || path[2] == ':' )) {
- ++path;
- }
-#endif /* _WIN32 */
-
-
- path_ready:
- /*
- * Duplicate the path so we can safely alter it.
- * Unescape any %HH sequences.
- */
- if (( path = strdup( path )) == NULL ) {
- return( LDIF_FILEURL_NOMEMORY );
- }
- hex_unescape( path );
-
-#ifdef _WIN32
- /*
- * Convert forward slashes to backslashes for Windows. Also,
- * if we see a drive letter / vertical bar combination (e.g., c|)
- * at the beginning of the path, replace the '|' with a ':'.
- */
- {
- char *p;
-
- for ( p = path; *p != '\0'; ++p ) {
- if ( *p == '/' ) {
- *p = '\\';
- }
- }
- }
-
- if ( isalpha( path[0] ) && path[1] == '|' ) {
- path[1] = ':';
- }
-#endif /* _WIN32 */
-
- *localpathp = path;
- return( LDIF_FILEURL_SUCCESS );
-}
-
-
-/*
- * Convert a local path to a file URL.
- *
- * If successful, LDIF_FILEURL_SUCCESS is returned and *urlp is
- * set point to an allocated string. If not, an different LDIF_FILEURL_
- * error code is returned. At present, the only possible error is
- * LDIF_FILEURL_NOMEMORY.
- *
- * This function produces file URLs of the form file:path.
- *
- * On Windows, we convert leading drive letters to C|.
- *
- */
-int
-ldif_path2fileurl( char *path, char **urlp )
-{
- char *p, *url, *prefix ="file:";
-
- if ( NULL == path ) {
- path = "/";
- }
-
- /*
- * Allocate space for the URL, taking into account that path may
- * expand during the hex escaping process.
- */
- if (( url = malloc( strlen( prefix ) + 3 * strlen( path ) + 1 )) == NULL ) {
- return( LDIF_FILEURL_NOMEMORY );
- }
-
- strcpy( url, prefix );
- p = url + strlen( prefix );
-
-#ifdef _WIN32
- /*
- * On Windows, convert leading drive letters (e.g., C:) to the correct URL
- * syntax (e.g., C|).
- */
- if ( isalpha( path[0] ) && path[1] == ':' ) {
- *p++ = path[0];
- *p++ = '|';
- path += 2;
- *p = '\0';
- }
-#endif /* _WIN32 */
-
- /*
- * Append the path, encoding any URL-special characters using the %HH
- * convention.
- * On Windows, convert backwards slashes in the path to forward ones.
- */
- strcpy_escaped_and_convert( p, path );
-
- *urlp = url;
- return( LDIF_FILEURL_SUCCESS );
-}
-
-
-/*
- * Return a non-zero value if the string s begins with prefix and zero if not.
- */
-static int
-str_starts_with( char *s, char *prefix )
-{
- size_t prefix_len;
-
- if ( s == NULL || prefix == NULL ) {
- return( 0 );
- }
-
- prefix_len = strlen( prefix );
- if ( strlen( s ) < prefix_len ) {
- return( 0 );
- }
-
- return( strncmp( s, prefix, prefix_len ) == 0 );
-}
-
-
-/*
- * Remove URL hex escapes from s... done in place. The basic concept for
- * this routine is borrowed from the WWW library HTUnEscape() routine.
- *
- */
-static void
-hex_unescape( char *s )
-{
- char *p;
-
- for ( p = s; *s != '\0'; ++s ) {
- if ( *s == '%' ) {
- if ( *++s != '\0' ) {
- *p = unhex( *s ) << 4;
- }
- if ( *++s != '\0' ) {
- *p++ += unhex( *s );
- }
- } else {
- *p++ = *s;
- }
- }
-
- *p = '\0';
-}
-
-
-/*
- * Return the integer equivalent of one hex digit (in c).
- *
- */
-static int
-unhex( char c )
-{
- return( c >= '0' && c <= '9' ? c - '0'
- : c >= 'A' && c <= 'F' ? c - 'A' + 10
- : c - 'a' + 10 );
-}
-
-
-#define HREF_CHAR_ACCEPTABLE( c ) (( c >= '-' && c <= '9' ) || \
- ( c >= '@' && c <= 'Z' ) || \
- ( c == '_' ) || \
- ( c >= 'a' && c <= 'z' ))
-
-/*
- * Like strcat(), except if any URL-special characters are found in s2
- * they are escaped using the %HH convention and backslash characters are
- * converted to forward slashes on Windows.
- *
- * Maximum space needed in s1 is 3 * strlen( s2 ) + 1.
- *
- */
-static void
-strcpy_escaped_and_convert( char *s1, char *s2 )
-{
- char *p, *q;
- char *hexdig = "0123456789ABCDEF";
-
- p = s1 + strlen( s1 );
- for ( q = s2; *q != '\0'; ++q ) {
-#ifdef _WIN32
- if ( *q == '\\' ) {
- *p++ = '/';
- } else
-#endif /* _WIN32 */
-
- if ( HREF_CHAR_ACCEPTABLE( *q )) {
- *p++ = *q;
- } else {
- *p++ = '%';
- *p++ = hexdig[ 0x0F & ((*(unsigned char*)q) >> 4) ];
- *p++ = hexdig[ 0x0F & *q ];
- }
- }
-
- *p = '\0';
-}
diff --git a/ldap/libraries/libldif/fileurl.h b/ldap/libraries/libldif/fileurl.h
deleted file mode 100644
index 79ce02ed..00000000
--- a/ldap/libraries/libldif/fileurl.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/** BEGIN COPYRIGHT BLOCK
- * 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; version 2 of the License.
- *
- * 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.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-/*
- * LDIF tools fileurl.h -- defines for file URL functions.
- * Used by ldif_parse_line.
- */
-
-/*
- * ldif_fileurl2path() convert a file URL to a local path.
- *
- * If successful, LDIF_FILEURL_SUCCESS is returned and *localpathp is
- * set point to an allocated string. If not, an differnet LDIF_FILEURL_
- * error code is returned.
- */
-int ldif_fileurl2path( char *fileurl, char **localpathp );
-
-
-/*
- * Convert a local path to a file URL.
- *
- * If successful, LDIF_FILEURL_SUCCESS is returned and *urlp is
- * set point to an allocated string. If not, an different LDIF_FILEURL_
- * error code is returned. At present, the only possible error is
- * LDIF_FILEURL_NOMEMORY.
- *
- */
-int ldif_path2fileurl( char *path, char **urlp );
-
-
-/*
- * Possible return codes for ldif_fileurl2path and ldif_path2fileurl.
- */
-#define LDIF_FILEURL_SUCCESS 0
-#define LDIF_FILEURL_NOTAFILEURL 1
-#define LDIF_FILEURL_MISSINGPATH 2
-#define LDIF_FILEURL_NONLOCAL 3
-#define LDIF_FILEURL_NOMEMORY 4
diff --git a/ldap/libraries/libldif/line64.c b/ldap/libraries/libldif/line64.c
deleted file mode 100644
index 9cdc4941..00000000
--- a/ldap/libraries/libldif/line64.c
+++ /dev/null
@@ -1,783 +0,0 @@
-/* --- BEGIN COPYRIGHT BLOCK ---
- * 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; version 2 of the License.
- *
- * 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.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * --- END COPYRIGHT BLOCK --- */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
- *
- * The contents of this file are subject to the Netscape Public License
- * Version 1.0 (the "NPL"); you may not use this file except in
- * 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.
- */
-/* line64.c - routines for dealing with the slapd line format */
-
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <ctype.h>
-#ifndef macintosh
-#include <sys/types.h>
-#endif
-#ifdef _WIN32
-#include <windows.h>
-#elif !defined( macintosh )
-#include <sys/socket.h>
-#endif
-#include "ldaplog.h"
-#include "ldif.h"
-#include <errno.h>
-#include "lber.h"
-#include <sys/stat.h>
-#include "fileurl.h"
-
-#include "nspr.h"
-
-#ifndef isascii
-#define isascii( c ) (!((c) & ~0177))
-#endif
-
-#define RIGHT2 0x03
-#define RIGHT4 0x0f
-#define CONTINUED_LINE_MARKER '\001'
-
-#define ISBLANK(c) (c == ' ' || c == '\t' || c == '\n') /* not "\r\v\f" */
-
-#define LDIF_OPT_ISSET( value, opt ) (((value) & (opt)) != 0 )
-
-static char nib2b64[0x40] =
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
-
-static unsigned char b642nib[0x80] = {
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
- 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
- 0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
- 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
- 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
- 0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
- 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
- 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
- 0x31, 0x32, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff
-};
-
-static int ldif_base64_encode_internal( unsigned char *src, char *dst, int srclen,
- int lenused, int wraplen );
-
-static int ldif_fromfile( char *path, struct berval *bv );
-
-extern int errno;
-/*
- * ldif_parse_line - takes a line of the form "type:[:] value" and splits it
- * into components "type" and "value". if a double colon separates type from
- * value, then value is encoded in base 64, and parse_line un-decodes it
- * (in place) before returning.
- * Success return might be 0 (value is returned in place) or 1 (value has
- * been malloc'ed)
- */
-
-int
-ldif_parse_line(
- char *line,
- char **type,
- char **value,
- int *vlen,
- char **errmsg
-)
-{
- char *p, *s, *d;
- int b64;
- int url = 0;
- int rc = 0;
-
- *errmsg = NULL;
-
- /* skip any leading space */
- while ( ISBLANK( *line ) ) {
- line++;
- }
- *type = line;
-
- for ( s = line; *s && *s != ':'; s++ )
- ; /* NULL */
- if ( *s == '\0' ) {
-
- /* Comment-out while we address calling libldif from ns-back-ldbm
- on NT. 1 of 3 */
-#if defined( _WIN32 )
- /*
-#endif
- LDAPDebug( LDAP_DEBUG_PARSE, "ldif_parse_line: missing ':' "
- "on line \"%s\"\n", line, 0, 0 );
-#if defined( _WIN32 )
- */
-#endif
- return( -1 );
- }
-
- /* trim any space between type and : */
- for ( p = s - 1; p > line && ISBLANK( *p ); p-- ) {
- *p = '\0';
- }
- *s++ = '\0';
-
- /* check for double : - indicates base 64 encoded value */
- if ( *s == ':' ) {
- s++;
- b64 = 1;
-
- /* single : - normally encoded value */
- } else {
- /* check for ":<" - indicates value is actually an url */
- if (*s == '<') {
- s++;
- url = 1;
- }
- b64 = 0;
- }
-
- /* skip space between : and value */
- while ( ISBLANK( *s ) ) {
- s++;
- }
-
- /*
- * If no value is present, return a zero-length string for
- * *value, with *vlen set to zero.
- */
- if ( *s == '\0' ) {
- *value = s;
- *vlen = 0;
- return( 0 );
- }
-
- /* check for continued line markers that should be deleted */
- for ( p = s, d = s; *p; p++ ) {
- if ( *p != CONTINUED_LINE_MARKER )
- *d++ = *p;
- }
- *d = '\0';
-
- *value = s;
- if ( b64 ) {
- if (( *vlen = ldif_base64_decode( s, (unsigned char *)s ))
- < 0 ) {
- /* Comment-out while we address calling libldif from ns-back-ldbm
- on NT. 3 of 3 */
-#if defined( _WIN32 )
- /*
-#endif
- LDAPDebug( LDAP_DEBUG_ANY,
- "ldif_parse_line: invalid base 64 char on line \"%s\"\n",
- line, 0, 0 );
-#if defined( _WIN32 )
- */
-#endif
- return( -1 );
- }
- s[ *vlen ] = '\0';
-
- } else if (url) {
-
- char *path;
- struct stat fstats;
- struct berval bv;
-
- bv.bv_val = NULL;
-
- /*
- * We only support file:// URLs for now.
- */
-
- switch( ldif_fileurl2path( s, &path )) {
- case LDIF_FILEURL_NOTAFILEURL:
- *errmsg = PR_smprintf(
- "ldif_parse_line: unsupported URL \"%s\";"
- " use a file:// URL instead.\n", s);
- rc = -1;
- break;
-
- case LDIF_FILEURL_MISSINGPATH:
- *errmsg = PR_smprintf(
- "ldif_parse_line: unable to process URL \"%s\" --"
- " missing path..\n", s);
- rc = -1;
- break;
-
- case LDIF_FILEURL_NONLOCAL:
- *errmsg = PR_smprintf(
- "ldif_parse_line: unable to process URL \"%s\" --"
- " only local file:// URLs are supported.\n", s);
- rc = -1;
- break;
-
- case LDIF_FILEURL_NOMEMORY:
- perror( "ldif_fileurl2path" );
- rc = -1;
- break;
-
- case LDIF_FILEURL_SUCCESS:
- if ( stat( path, &fstats ) != 0 ) {
- perror( path );
- rc = -1;
- } else if ( fstats.st_mode & S_IFDIR ) {
- *errmsg = PR_smprintf(
- "ldif_parse_line: %s is a directory, not a file.\n", path);
- rc = -1;
- } else if ( ldif_fromfile( path, &bv ) < 0 ) {
- *errmsg = PR_smprintf(
- "ldif_parse_line: unable to retrieve information"
- " from file %s.\n", path);
- rc = -1;
- }
- free( path );
- break;
-
- default:
- *errmsg = PR_smprintf(
- "ldif_parse_line: unable to process URL \"%s\" --"
- " unknown error.\n", s);
- rc = -1;
- }
-
-
- if ( rc != 0 ) {
- if (bv.bv_val)
- free(bv.bv_val);
- } else {
- *value = bv.bv_val;
- *vlen = bv.bv_len;
- rc = 1;
- }
- } else {
- *vlen = (int) (d - s);
- }
-
- return( rc );
-}
-
-
-/*
- * ldif_base64_decode - take the BASE64-encoded characters in "src"
- * (a zero-terminated string) and decode them into the the buffer "dst".
- * "src" and "dst" can be the same if in-place decoding is desired.
- * "dst" must be large enough to hold the decoded octets. No more than
- * 3 * strlen( src ) / 4 bytes will be produced.
- * "dst" may contain zero octets anywhere within it, but it is not
- * zero-terminated by this function.
- *
- * The number of bytes copied to "dst" is returned if all goes well.
- * -1 is returned if the BASE64 encoding in "src" is invalid.
- */
-
-int
-ldif_base64_decode( char *src, unsigned char *dst )
-{
- char *p, *stop;
- unsigned char nib, *byte;
- int i, len;
-
- stop = strchr( src, '\0' );
- byte = dst;
- for ( p = src, len = 0; p < stop; p += 4, len += 3 ) {
- for ( i = 0; i < 4; i++ ) {
- if ( p[i] != '=' && (p[i] & 0x80 ||
- b642nib[ p[i] & 0x7f ] > 0x3f) ) {
- return( -1 );
- }
- }
-
- /* first digit */
- nib = b642nib[ p[0] & 0x7f ];
- byte[0] = nib << 2;
-
- /* second digit */
- nib = b642nib[ p[1] & 0x7f ];
- byte[0] |= nib >> 4;
-
- /* third digit */
- if ( p[2] == '=' ) {
- len += 1;
- break;
- }
- byte[1] = (nib & RIGHT4) << 4;
- nib = b642nib[ p[2] & 0x7f ];
- byte[1] |= nib >> 2;
-
- /* fourth digit */
- if ( p[3] == '=' ) {
- len += 2;
- break;
- }
- byte[2] = (nib & RIGHT2) << 6;
- nib = b642nib[ p[3] & 0x7f ];
- byte[2] |= nib;
-
- byte += 3;
- }
-
- return( len );
-}
-
-/*
- * ldif_getline - return the next "line" (minus newline) of input from a
- * string buffer of lines separated by newlines, terminated by \n\n
- * or \0. this routine handles continued lines, bundling them into
- * a single big line before returning. if a line begins with a white
- * space character, it is a continuation of the previous line. the white
- * space character (nb: only one char), and preceeding newline are changed
- * into CONTINUED_LINE_MARKER chars, to be deleted later by the
- * ldif_parse_line() routine above.
- *
- * it takes a pointer to a pointer to the buffer on the first call,
- * which it updates and must be supplied on subsequent calls.
- *
- * XXX need to update this function to also support <CR><LF> as EOL.
- * XXX supports <CR><LF> as of 07/29/1998 (richm)
- */
-
-char *
-ldif_getline( char **next )
-{
- char *l;
- char c;
- char *p;
-
- if ( *next == NULL || **next == '\n' || **next == '\0' ) {
- return( NULL );
- }
-
- while ( **next == '#' ) { /* skip comment lines */
- if (( *next = strchr( *next, '\n' )) == NULL ) {
- return( NULL );
- }
- (*next)++;
- }
-
- l = *next;
- while ( (*next = strchr( *next, '\n' )) != NULL ) {
- p = *next - 1; /* pointer to character previous to the newline */
- c = *(*next + 1); /* character after the newline */
- if ( ISBLANK( c ) && c != '\n' ) {
- /* DOS EOL is \r\n, so if the character before */
- /* the \n is \r, continue it too */
- if (*p == '\r')
- *p = CONTINUED_LINE_MARKER;
- **next = CONTINUED_LINE_MARKER;
- *(*next+1) = CONTINUED_LINE_MARKER;
- } else {
- /* DOS EOL is \r\n, so if the character before */
- /* the \n is \r, null it too */
- if (*p == '\r')
- *p = '\0';
- *(*next)++ = '\0';
- break;
- }
- (*next)++;
- }
-
- return( l );
-}
-
-
-#define LDIF_SAFE_CHAR( c ) ( (c) != '\r' && (c) != '\n' )
-#define LDIF_CONSERVATIVE_CHAR( c ) ( LDIF_SAFE_CHAR(c) && isascii((c)) \
- && ( isprint((c)) || (c) == '\t' ))
-#define LDIF_SAFE_INITCHAR( c ) ( LDIF_SAFE_CHAR(c) && (c) != ':' \
- && (c) != ' ' && (c) != '<' )
-#define LDIF_CONSERVATIVE_INITCHAR( c ) ( LDIF_SAFE_INITCHAR( c ) && \
- ! ( isascii((c)) && isspace((c))))
-#define LDIF_CONSERVATIVE_FINALCHAR( c ) ( (c) != ' ' )
-
-
-void
-ldif_put_type_and_value_with_options( char **out, char *t, char *val,
- int vlen, unsigned long options )
-{
- unsigned char *p, *byte, *stop;
- char *save;
- int b64, len, savelen, wraplen;
- len = 0;
-
- if ( LDIF_OPT_ISSET( options, LDIF_OPT_NOWRAP )) {
- wraplen = -1;
- } else {
- wraplen = LDIF_MAX_LINE_WIDTH;
- }
-
- /* put the type + ": " */
- for ( p = (unsigned char *) t; *p; p++, len++ ) {
- *(*out)++ = *p;
- }
- *(*out)++ = ':';
- len++;
- if ( LDIF_OPT_ISSET( options, LDIF_OPT_VALUE_IS_URL )) {
- *(*out)++ = '<'; /* add '<' for URLs */
- len++;
- }
- save = *out;
- savelen = len;
- b64 = 0;
-
- stop = (unsigned char *)val;
- if ( val && vlen > 0 ) {
- *(*out)++ = ' ';
- stop = (unsigned char *) (val + vlen);
- if ( LDIF_OPT_ISSET( options, LDIF_OPT_MINIMAL_ENCODING )) {
- if ( !LDIF_SAFE_INITCHAR( val[0] )) {
- b64 = 1;
- }
- } else {
- if ( !LDIF_CONSERVATIVE_INITCHAR( val[0] ) ||
- !LDIF_CONSERVATIVE_FINALCHAR( val[vlen-1] )) {
- b64 = 1;
- }
- }
- }
-
- if ( !b64 ) {
- for ( byte = (unsigned char *) val; byte < stop;
- byte++, len++ ) {
- if ( LDIF_OPT_ISSET( options,
- LDIF_OPT_MINIMAL_ENCODING )) {
- if ( !LDIF_SAFE_CHAR( *byte )) {
- b64 = 1;
- break;
- }
- } else if ( !LDIF_CONSERVATIVE_CHAR( *byte )) {
- b64 = 1;
- break;
- }
-
- if ( wraplen != -1 && len > wraplen ) {
- *(*out)++ = '\n';
- *(*out)++ = ' ';
- len = 1;
- }
- *(*out)++ = *byte;
- }
- }
-
- if ( b64 ) {
- *out = save;
- *(*out)++ = ':';
- *(*out)++ = ' ';
- len = ldif_base64_encode_internal( (unsigned char *)val, *out, vlen,
- savelen + 2, wraplen );
- *out += len;
- }
-
- *(*out)++ = '\n';
-}
-
-void
-ldif_put_type_and_value( char **out, char *t, char *val, int vlen )
-{
- ldif_put_type_and_value_with_options( out, t, val, vlen, 0 );
-}
-
-void
-ldif_put_type_and_value_nowrap( char **out, char *t, char *val, int vlen )
-{
- ldif_put_type_and_value_with_options( out, t, val, vlen, LDIF_OPT_NOWRAP );
-}
-
-/*
- * ldif_base64_encode_internal - encode "srclen" bytes in "src", place BASE64
- * encoded bytes in "dst" and return the length of the BASE64
- * encoded string. "dst" is also zero-terminated by this function.
- *
- * If "lenused" >= 0, newlines will be included in "dst" and "lenused" if
- * appropriate. "lenused" should be a count of characters already used
- * on the current line. The LDIF lines we create will contain at most
- * "wraplen" characters on each line, unless "wraplen" is -1, in which
- * case output line length is unlimited.
- *
- * If "lenused" < 0, no newlines will be included, and the LDIF_BASE64_LEN()
- * macro can be used to determine how many bytes will be placed in "dst."
- */
-
-static int
-ldif_base64_encode_internal( unsigned char *src, char *dst, int srclen, int lenused, int wraplen )
-{
- unsigned char *byte, *stop;
- unsigned char buf[3];
- char *out;
- unsigned long bits;
- int i, pad, len;
-
- len = 0;
- out = dst;
- stop = src + srclen;
-
- /* convert to base 64 (3 bytes => 4 base 64 digits) */
- for ( byte = src; byte < stop - 2; byte += 3 ) {
- bits = (byte[0] & 0xff) << 16;
- bits |= (byte[1] & 0xff) << 8;
- bits |= (byte[2] & 0xff);
-
- for ( i = 0; i < 4; i++, bits <<= 6 ) {
- if ( wraplen != -1 && lenused >= 0 && lenused++ > wraplen ) {
- *out++ = '\n';
- *out++ = ' ';
- lenused = 2;
- }
-
- /* get b64 digit from high order 6 bits */
- *out++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
- }
- }
-
- /* add padding if necessary */
- if ( byte < stop ) {
- for ( i = 0; byte + i < stop; i++ ) {
- buf[i] = byte[i];
- }
- for ( pad = 0; i < 3; i++, pad++ ) {
- buf[i] = '\0';
- }
- byte = buf;
- bits = (byte[0] & 0xff) << 16;
- bits |= (byte[1] & 0xff) << 8;
- bits |= (byte[2] & 0xff);
-
- for ( i = 0; i < 4; i++, bits <<= 6 ) {
- if ( wraplen != -1 && lenused >= 0 && lenused++ > wraplen ) {
- *out++ = '\n';
- *out++ = ' ';
- lenused = 2;
- }
-
- if (( i == 3 && pad > 0 ) || ( i == 2 && pad == 2 )) {
- /* Pad as appropriate */
- *out++ = '=';
- } else {
- /* get b64 digit from low order 6 bits */
- *out++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
- }
- }
- }
-
- *out = '\0';
-
- return( out - dst );
-}
-
-int
-ldif_base64_encode( unsigned char *src, char *dst, int srclen, int lenused )
-{
- return ldif_base64_encode_internal( src, dst, srclen, lenused, LDIF_MAX_LINE_WIDTH );
-}
-
-int
-ldif_base64_encode_nowrap( unsigned char *src, char *dst, int srclen, int lenused )
-{
- return ldif_base64_encode_internal( src, dst, srclen, lenused, -1 );
-}
-
-
-/*
- * return malloc'd, zero-terminated LDIF line
- */
-char *
-ldif_type_and_value_with_options( char *type, char *val, int vlen,
- unsigned long options )
-{
- char *buf, *p;
- int tlen;
-
- tlen = strlen( type );
- if (( buf = (char *)malloc( LDIF_SIZE_NEEDED( tlen, vlen ) + 1 )) !=
- NULL ) {
- p = buf;
- ldif_put_type_and_value_with_options( &p, type, val, vlen, options );
- *p = '\0';
- }
-
- return( buf );
-}
-
-char *
-ldif_type_and_value( char *type, char *val, int vlen )
-{
- return ldif_type_and_value_with_options( type, val, vlen, 0 );
-}
-
-char *
-ldif_type_and_value_nowrap( char *type, char *val, int vlen )
-{
- return ldif_type_and_value_with_options( type, val, vlen, LDIF_OPT_NOWRAP );
-}
-
-/*
- * ldif_get_entry - read the next ldif entry from the FILE referenced
- * by fp. return a pointer to a malloc'd, null-terminated buffer. also
- * returned is the last line number read, in *lineno.
- */
-char *
-ldif_get_entry( FILE *fp, int *lineno )
-{
- char line[BUFSIZ];
- char *buf;
- int max, cur, len, gotsome;
-
- buf = NULL;
- max = cur = gotsome = 0;
- while ( fgets( line, sizeof(line), fp ) != NULL ) {
- if ( lineno != NULL ) {
- (*lineno)++;
- }
- /* ldif entries are terminated by a \n on a line by itself */
- if ( line[0] == '\0' || line[0] == '\n'
-#if !defined( XP_WIN32 )
- || ( line[0] == '\r' && line[1] == '\n' ) /* DOS format */
-#endif
- ) {
- if ( gotsome ) {
- break;
- } else {
- continue;
- }
- } else if ( line[0] == '#' ) {
- continue;
- }
- gotsome = 1;
- len = strlen( line );
-#if !defined( XP_WIN32 )
- /* DOS format */
- if ( len > 0 && line[len-1] == '\r' ) {
- --len;
- line[len] = '\0';
- } else if ( len > 1 && line[len-2] == '\r' && line[len-1] == '\n' ) {
- --len;
- line[len-1] = line[len];
- line[len] = '\0';
- }
-#endif
- while ( cur + (len + 1) > max ) {
- if ( buf == NULL ) {
- max += BUFSIZ;
- buf = (char *) malloc( max );
- } else {
- max *= 2;
- buf = (char *) realloc( buf, max );
- }
- if ( buf == NULL ) {
- return( NULL );
- }
- }
-
- memcpy( buf + cur, line, len + 1 );
- cur += len;
- }
-
- return( buf );
-}
-
-
-
-static int
-ldif_fromfile( char *path, struct berval *bv )
-{
- FILE *fp;
- long rlen;
- int eof;
-#if defined( XP_WIN32 )
- char mode[20] = "r+b";
-#else
- char mode[20] = "r";
-#endif
-
- if (( fp = fopen( path, mode )) == NULL ) {
- perror( path );
- return( -1 );
- }
-
- if ( fseek( fp, 0L, SEEK_END ) != 0 ) {
- perror( path );
- fclose( fp );
- return( -1 );
- }
-
- bv->bv_len = ftell( fp );
-
- if (( bv->bv_val = (char *)malloc( bv->bv_len + 1 )) == NULL ) {
- perror( "malloc" );
- fclose( fp );
- return( -1 );
- }
-
- if ( fseek( fp, 0L, SEEK_SET ) != 0 ) {
- perror( path );
- fclose( fp );
- return( -1 );
- }
-
- rlen = fread( bv->bv_val, 1, bv->bv_len, fp );
- eof = feof( fp );
- fclose( fp );
-
- if ( rlen != (long)bv->bv_len ) {
- perror( path );
- free( bv->bv_val );
- return( -1 );
- }
-
- bv->bv_val[ bv->bv_len ] = '\0';
- return( bv->bv_len );
-}
-
-
diff --git a/ldap/libraries/liblitekey/Makefile b/ldap/libraries/liblitekey/Makefile
deleted file mode 100644
index cf5d2996..00000000
--- a/ldap/libraries/liblitekey/Makefile
+++ /dev/null
@@ -1,78 +0,0 @@
-#
-# BEGIN COPYRIGHT BLOCK
-# 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; version 2 of the License.
-#
-# 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.
-#
-# In addition, as a special exception, Red Hat, Inc. gives You the additional
-# right to link the code of this Program with code not covered under the GNU
-# General Public License ("Non-GPL Code") and to distribute linked combinations
-# including the two, subject to the limitations in this paragraph. Non-GPL Code
-# permitted under this exception must only link to the code of this Program
-# through those well defined interfaces identified in the file named EXCEPTION
-# found in the source code files (the "Approved Interfaces"). The files of
-# Non-GPL Code may instantiate templates or use macros or inline functions from
-# the Approved Interfaces without causing the resulting work to be covered by
-# the GNU General Public License. Only Red Hat, Inc. may make changes or
-# additions to the list of Approved Interfaces. You must obey the GNU General
-# Public License in all respects for all of the Program code and other code used
-# in conjunction with the Program except the Non-GPL Code covered by this
-# exception. If you modify this file, you may extend this exception to your
-# version of the file, but you are not obligated to do so. If you do not wish to
-# provide this exception without modification, you must delete this exception
-# statement from your version and license this file solely under the GPL without
-# exception.
-#
-#
-# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
-# Copyright (C) 2005 Red Hat, Inc.
-# All rights reserved.
-# END COPYRIGHT BLOCK
-#
-#
-# GNU Makefile for liblitekey
-#
-
-LDAP_SRC = ../..
-BUILD_ROOT = ../../..
-
-NOSTDCLEAN=true # don't let nsconfig.mk define target clean
-NOSTDSTRIP=true # don't let nsconfig.mk define target strip
-
-OBJDEST = $(OBJDIR)/lib/liblitekey
-LIBDIR = $(LDAP_LIBDIR)
-
-include $(BUILD_ROOT)/nsdefs.mk
-include $(BUILD_ROOT)/nsconfig.mk
-include $(LDAP_SRC)/nsldap.mk
-
-CFLAGS += $(SLCFLAGS)
-
-LIBLITEKEY_OBJS= keycheck.o
-
-OBJS = $(addprefix $(OBJDEST)/, $(LIBLITEKEY_OBJS))
-
-LIBLITEKEY = $(addprefix $(LIBDIR)/, liblitekey.$(LIB_SUFFIX))
-
-all: $(OBJDEST) $(LIBDIR) $(OBJS) $(LIBLITEKEY)
-
-$(LIBLITEKEY): $(OBJS)
- $(LINK_LIB)
-
-veryclean: clean
-
-clean:
- $(RM) $(OBJS)
- $(RM) $(LIBLITEKEY)
-
-$(OBJDEST):
- $(MKDIR) $(OBJDEST)
-
diff --git a/ldap/libraries/liblitekey/keycheck.c b/ldap/libraries/liblitekey/keycheck.c
deleted file mode 100644
index 6d9d41b8..00000000
--- a/ldap/libraries/liblitekey/keycheck.c
+++ /dev/null
@@ -1,108 +0,0 @@
-/** BEGIN COPYRIGHT BLOCK
- * 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; version 2 of the License.
- *
- * 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.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-/*
- * keycheck.c
- */
-
-
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <litekey.h>
-
-#define DS_NORMAL_MAGIC_KEY 119
-#define FILE_PATHSEP '/'
-#define BUFSIZE 800
-
-/*
- * is_directory_lite
- *
- * Checks if the directory server installation is a normal or a
- * lite. The decision is made based on the key in the key file.
- *
- * Input:
- * char *root; Pathname to install root
- * Returns:
- * 1 - yes, it's LITE server
- * 0 - No; it's fully paid (normal) server.
- *
- */
-int is_directory_lite( char *root)
-{
- return DS_NORMAL_TYPE; /* richm: no more lite mode in DS 5.0 */
-}
-
-/*
- * generate_lite_key
- * Generate a key for the product that is being used.
- *
- * Input:
- * type DS_NORMAL_TYPE - Normal
- * DS_LITE_TYPE - Lite
- * Returns:
- * a int key.
- *
- */
-int generate_directory_key( int type)
-{
-
- int key = 0;
- int val;
-
- val = rand();
-
- key = val * DS_NORMAL_MAGIC_KEY;
-
- return key;
-}
-
-/*
- * is_key_validNormalKey
- *
- * Check if the key ia a valid normal key or not.
- */
-int
-is_key_validNormalKey ( int key )
-{
- return 1;
-}