X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=servers%2Fslurpd%2Freject.c;h=b147cc2b220636f10b434e0799ec9fd30dd73973;hb=3eb53370201fd41923f82b18226d504aec376362;hp=0d0e606a42ed0671c7147d3a0ac4c15a97f957ce;hpb=72ba4cfb715001d30a6e48a2d7012f060f29d684;p=openldap diff --git a/servers/slurpd/reject.c b/servers/slurpd/reject.c index 0d0e606a42..b147cc2b22 100644 --- a/servers/slurpd/reject.c +++ b/servers/slurpd/reject.c @@ -1,5 +1,18 @@ -/* - * Copyright (c) 1996 Regents of the University of Michigan. +/* $OpenLDAP$ */ +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2003 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* Portions Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. * * Redistribution and use in source and binary forms are permitted @@ -9,6 +22,10 @@ * software without specific prior written permission. This software * is provided ``as is'' without express or implied warranty. */ +/* ACKNOWLEDGEMENTS: + * This work was originally developed by the University of Michigan + * (as part of U-MICH LDAP). + */ /* @@ -21,16 +38,22 @@ #include +#include #include #include -#include #include #include #include "slurp.h" #include "globals.h" +#ifdef _WIN32 +#define PORTSEP "," +#else +#define PORTSEP ":" +#endif + /* * Write a replication record to a reject file. The reject file has the * same name as the replica's private copy of the file but with ".rej" @@ -52,17 +75,23 @@ write_reject( int rc; ldap_pvt_thread_mutex_lock( &sglob->rej_mutex ); - sprintf( rejfile, "%s/%s:%d.rej", sglob->slurpd_rdir, - ri->ri_hostname, ri->ri_port ); + 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 ); +#endif ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex ); return; } else { @@ -70,8 +99,13 @@ write_reject( } } 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 ) { @@ -80,14 +114,25 @@ 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 } ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex ); return;