X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Freject.c;h=0b4d5ee12e04f1de9d7c49cebc909464f0cc6baf;hb=782b481a9a0415fb652590282b95bb11701a00e4;hp=6ba2c8e34cd5fde023af225632a09fff94db62b7;hpb=0c0f011dc0302348484d0278e2e8f2cbe53d1961;p=openldap diff --git a/servers/slurpd/reject.c b/servers/slurpd/reject.c index 6ba2c8e34c..0b4d5ee12e 100644 --- a/servers/slurpd/reject.c +++ b/servers/slurpd/reject.c @@ -1,3 +1,8 @@ +/* $OpenLDAP$ */ +/* + * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ /* * Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. @@ -17,22 +22,25 @@ * to a replica LDAP server. */ -#define DISABLE_BRIDGE #include "portable.h" #include -#include + +#include +#include +#include + #include #include -#include #include "slurp.h" #include "globals.h" -#ifdef DECL_SYS_ERRLIST -extern char *sys_errlist[]; -#endif /* DECL_SYS_ERRLIST */ - +#ifdef _WIN32 +#define PORTSEP "," +#else +#define PORTSEP ":" +#endif /* * Write a replication record to a reject file. The reject file has the @@ -54,27 +62,38 @@ write_reject( FILE *rfp, *lfp; int rc; - pthread_mutex_lock( &sglob->rej_mutex ); - sprintf( rejfile, "%s/%s:%d.rej", sglob->slurpd_rdir, - ri->ri_hostname, ri->ri_port ); + ldap_pvt_thread_mutex_lock( &sglob->rej_mutex ); + snprintf( rejfile, sizeof rejfile, "%s" LDAP_DIRSEP "%s" PORTSEP "%d.rej", + sglob->slurpd_rdir, ri->ri_hostname, ri->ri_port ); if ( access( rejfile, F_OK ) < 0 ) { /* Doesn't exist - try to create */ int rjfd; - if (( rjfd = open( rejfile, O_RDWR | O_APPEND | O_CREAT, + if (( rjfd = open( rejfile, O_RDWR|O_APPEND|O_CREAT|O_EXCL, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP )) < 0 ) { +#ifdef NEW_LOGGING + LDAP_LOG ( SLURPD, ERR, "write_reject: " + "Error: Cannot create \"%s\":%s\n", + rejfile, sys_errlist[ errno ], 0 ); +#else Debug( LDAP_DEBUG_ANY, "Error: write_reject: Cannot create \"%s\": %s\n", rejfile, sys_errlist[ errno ], 0 ); - pthread_mutex_unlock( &sglob->rej_mutex ); +#endif + ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex ); return; } else { close( rjfd ); } } if (( rc = acquire_lock( rejfile, &rfp, &lfp )) < 0 ) { +#ifdef NEW_LOGGING + LDAP_LOG ( SLURPD, ERR, "write_reject: " + "Error: Cannot open reject file \"%s\"\n", rejfile, 0, 0 ); +#else Debug( LDAP_DEBUG_ANY, "Error: cannot open reject file \"%s\"\n", rejfile, 0, 0 ); +#endif } else { fseek( rfp, 0, 2 ); if ( errmsg != NULL ) { @@ -83,16 +102,27 @@ write_reject( fprintf( rfp, "%s: %s\n", ERROR_STR, ldap_err2string( lderr )); } if ((rc = re->re_write( ri, re, rfp )) < 0 ) { +#ifdef NEW_LOGGING + LDAP_LOG ( SLURPD, ERR, "write_reject: " + "Error: Cannot write reject file \"%s\"\n", rejfile, 0, 0 ); +#else Debug( LDAP_DEBUG_ANY, "Error: cannot write reject file \"%s\"\n", rejfile, 0, 0 ); +#endif } (void) relinquish_lock( rejfile, rfp, lfp ); +#ifdef NEW_LOGGING + LDAP_LOG ( SLURPD, ERR, "write_reject: " + "Error: ldap operation failed, data written to \"%s\"\n", + rejfile, 0, 0 ); +#else Debug( LDAP_DEBUG_ANY, "Error: ldap operation failed, data written to \"%s\"\n", rejfile, 0, 0 ); +#endif } - pthread_mutex_unlock( &sglob->rej_mutex ); + ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex ); return; }