b69e47
From be621fcd9f2215bba4c9190fd63815dc395814d8 Mon Sep 17 00:00:00 2001
b69e47
From: Mark Reynolds <mreynolds@redhat.com>
b69e47
Date: Tue, 28 Mar 2017 11:39:16 -0400
b69e47
Subject: [PATCH] Issue 48989 - Integer overflow
b69e47
b69e47
Redo slapi_counters and monitors
b69e47
---
b69e47
 Makefile.am                                        |   4 +-
b69e47
 configure.ac                                       |  74 +++--
b69e47
 ldap/servers/plugins/dna/dna.c                     |  20 +-
b69e47
 ldap/servers/plugins/posix-winsync/posix-winsync.c |  12 +-
b69e47
 ldap/servers/plugins/replication/repl5_init.c      |   2 +-
b69e47
 ldap/servers/plugins/replication/repl_extop.c      |   2 +-
b69e47
 ldap/servers/plugins/usn/usn.c                     |  16 +-
b69e47
 ldap/servers/slapd/back-ldbm/monitor.c             |   4 +-
b69e47
 ldap/servers/slapd/back-ldbm/perfctrs.c            |  12 +-
b69e47
 ldap/servers/slapd/back-ldbm/perfctrs.h            |  74 ++---
b69e47
 ldap/servers/slapd/back-ldbm/vlv_srch.h            |   2 +-
b69e47
 ldap/servers/slapd/conntable.c                     |  14 +-
b69e47
 ldap/servers/slapd/entry.c                         |   4 +-
b69e47
 ldap/servers/slapd/log.c                           |  13 +-
b69e47
 ldap/servers/slapd/monitor.c                       |  14 +-
b69e47
 ldap/servers/slapd/slapi-plugin.h                  |  14 +-
b69e47
 ldap/servers/slapd/slapi_counter.c                 | 333 ++++-----------------
b69e47
 ldap/servers/slapd/slapi_counter_sunos_sparcv9.S   | 105 -------
b69e47
 ldap/servers/slapd/snmp_collator.c                 |   2 +-
b69e47
 test/libslapd/test.c                               |   2 +
b69e47
 test/test_slapd.h                                  |   4 +
b69e47
 21 files changed, 205 insertions(+), 522 deletions(-)
b69e47
 delete mode 100644 ldap/servers/slapd/slapi_counter_sunos_sparcv9.S
b69e47
b69e47
diff --git a/Makefile.am b/Makefile.am
b69e47
index df4a037..982dd28 100644
b69e47
--- a/Makefile.am
b69e47
+++ b/Makefile.am
b69e47
@@ -1222,9 +1222,6 @@ libslapd_la_SOURCES = ldap/servers/slapd/add.c \
b69e47
 	$(libavl_a_SOURCES)
b69e47
 
b69e47
 libslapd_la_CPPFLAGS = $(AM_CPPFLAGS) $(DSPLUGIN_CPPFLAGS) $(SASL_INCLUDES) @db_inc@ $(SVRCORE_INCLUDES) @kerberos_inc@ @pcre_inc@
b69e47
-if SPARC
b69e47
-libslapd_la_SOURCES += ldap/servers/slapd/slapi_counter_sunos_sparcv9.S
b69e47
-endif
b69e47
 libslapd_la_LIBADD = $(LDAPSDK_LINK) $(SASL_LINK) $(SVRCORE_LINK) $(NSS_LINK) $(NSPR_LINK) $(KERBEROS_LINK) $(PCRE_LINK) $(THREADLIB) $(SYSTEMD_LINK)
b69e47
 libslapd_la_LDFLAGS = $(AM_LDFLAGS) $(SLAPD_LDFLAGS)
b69e47
 
b69e47
@@ -2004,6 +2001,7 @@ TESTS = test_slapd \
b69e47
 
b69e47
 test_slapd_SOURCES = test/main.c \
b69e47
 	test/libslapd/test.c \
b69e47
+	test/libslapd/counters/atomic.c \
b69e47
 	test/libslapd/pblock/analytics.c \
b69e47
 	test/libslapd/pblock/v3_compat.c \
b69e47
 	test/libslapd/operation/v3_compat.c
b69e47
diff --git a/configure.ac b/configure.ac
b69e47
index 3f2aa75..8172bab 100644
b69e47
--- a/configure.ac
b69e47
+++ b/configure.ac
b69e47
@@ -555,7 +555,6 @@ case $host in
b69e47
     case $host in
b69e47
       i*86-*-linux*)
b69e47
         AC_DEFINE([CPU_x86], [], [cpu type x86])
b69e47
-        AC_DEFINE([ATOMIC_64BIT_OPERATIONS], [1], [enabling atomic counter])
b69e47
         ;;
b69e47
       x86_64-*-linux*)
b69e47
         with_xsixfour="yes"
b69e47
@@ -565,23 +564,6 @@ case $host in
b69e47
         # wibrown -- 2017-02-21 disabled temporarily
b69e47
         # with_atomic_queue="yes"
b69e47
         # AC_DEFINE([ATOMIC_QUEUE_OPERATIONS], [1], [enabling atomic queue operations])
b69e47
-        AC_DEFINE([ATOMIC_64BIT_OPERATIONS], [1], [enabling atomic counter])
b69e47
-
b69e47
-        AC_MSG_CHECKING([for SSE4.2 features ...])
b69e47
-        save_CFLAGS="$CFLAGS"
b69e47
-        CFLAGS="$CFLAGS -msse4.2"
b69e47
-        AC_TRY_COMPILE(
b69e47
-            [],
b69e47
-            [return 0;],
b69e47
-            [
b69e47
-                AC_DEFINE([HAVE_SSE4_2], [1], [Have sss4.2 on this platform arch])
b69e47
-                AC_MSG_RESULT([SSE4.2 avaliable on this platform])
b69e47
-            ],
b69e47
-            [
b69e47
-                AC_MSG_RESULT([SSE4.2 not avaliable on this platform])
b69e47
-            ]
b69e47
-        )
b69e47
-        CFLAGS="$save_CFLAGS"
b69e47
         ;;
b69e47
       aarch64-*-linux*)
b69e47
         AC_DEFINE([CPU_arm], [], [cpu type arm])
b69e47
@@ -600,17 +582,6 @@ case $host in
b69e47
       s390x-*-linux*)
b69e47
         ;;
b69e47
     esac
b69e47
-    AC_MSG_CHECKING([for GCC provided 64-bit atomic bool cas function ...])
b69e47
-    AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
b69e47
-                                    [[long long ptrval = 0, val = 0, newval = 1; (void)__sync_bool_compare_and_swap_8(&ptrval, val, newval);]])],
b69e47
-                   [AC_DEFINE([HAVE_64BIT_ATOMIC_CAS_FUNC], [1], [have 64-bit atomic bool compare and swap function provided by gcc])AC_MSG_RESULT([yes])],
b69e47
-                   [AC_MSG_RESULT([no])])
b69e47
-    AC_MSG_CHECKING([for GCC provided 64-bit atomic ops functions ...])
b69e47
-    AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
b69e47
-                                    [[long long ptrval = 0, val = 0; (void)__sync_add_and_fetch_8(&ptrval, val);]])],
b69e47
-                   [AC_DEFINE([HAVE_64BIT_ATOMIC_OP_FUNCS], [1], [have 64-bit atomic operation functions provided by gcc])AC_MSG_RESULT([yes])],
b69e47
-                   [AC_MSG_RESULT([no])])
b69e47
-
b69e47
     # some programs use the native thread library directly
b69e47
     THREADLIB=-lpthread
b69e47
     AC_SUBST([THREADLIB], [$THREADLIB])
b69e47
@@ -654,7 +625,6 @@ case $host in
b69e47
     AC_DEFINE([_POSIX_C_SOURCE], [199506L], [POSIX revision])
b69e47
     AC_DEFINE([_HPUX_SOURCE], [1], [Source namespace])
b69e47
     AC_DEFINE([_INCLUDE_STDC__SOURCE_199901], [1], [to pick up all of the printf format macros in inttypes.h])
b69e47
-    AC_DEFINE([ATOMIC_64BIT_OPERATIONS], [1], [enabling atomic counter])
b69e47
     # assume 64 bit
b69e47
     initconfigdir="/$PACKAGE_NAME/config"
b69e47
     perlexec='/opt/perl_64/bin/perl'
b69e47
@@ -689,12 +659,11 @@ dnl Cstd and Crun are required to link any C++ related code
b69e47
     initdir='$(sysconfdir)/init.d'
b69e47
     case $host in
b69e47
       i?86-*-solaris2.1[[0-9]]*)
b69e47
-dnl I dont know why i386 need this explicit
b69e47
+        dnl I dont know why i386 need this explicit
b69e47
         AC_DEFINE([HAVE_GETPEERUCRED], [1], [have getpeerucred])
b69e47
         ;;
b69e47
       sparc-*-solaris*)
b69e47
-dnl includes some assembler stuff in counter.o
b69e47
-        AC_DEFINE([ATOMIC_64BIT_OPERATIONS], [1], [enabling atomic counter])
b69e47
+        dnl includes some assembler stuff in counter.o
b69e47
         AC_DEFINE([CPU_sparc], [], [cpu type sparc])
b69e47
         TARGET='SPARC'
b69e47
         ;;
b69e47
@@ -705,6 +674,45 @@ dnl includes some assembler stuff in counter.o
b69e47
     ;;
b69e47
 esac
b69e47
 
b69e47
+AC_MSG_CHECKING([for SSE4.2 features ...])
b69e47
+save_CFLAGS="$CFLAGS"
b69e47
+CFLAGS="$CFLAGS -msse4.2"
b69e47
+AC_TRY_COMPILE(
b69e47
+    [],
b69e47
+    [return 0;],
b69e47
+    [
b69e47
+        AC_DEFINE([HAVE_SSE4_2], [1], [Have sss4.2 on this platform arch])
b69e47
+        AC_MSG_RESULT([SSE4.2 avaliable on this platform])
b69e47
+    ],
b69e47
+    [
b69e47
+        AC_MSG_RESULT([SSE4.2 not avaliable on this platform])
b69e47
+    ]
b69e47
+)
b69e47
+CFLAGS="$save_CFLAGS"
b69e47
+
b69e47
+AC_MSG_CHECKING([for GCC provided 64-bit atomic operations])
b69e47
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
b69e47
+    #include <inttypes.h>
b69e47
+    ]],
b69e47
+    [[
b69e47
+    uint64_t t_counter = 0;
b69e47
+    uint64_t t_oldval = 0;
b69e47
+    uint64_t t_newval = 1;
b69e47
+
b69e47
+    __atomic_compare_exchange_8(&t_counter, &t_oldval, t_newval, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
b69e47
+    __atomic_add_fetch_8(&t_counter, t_newval, __ATOMIC_SEQ_CST);
b69e47
+    __atomic_sub_fetch_8(&t_counter, t_newval, __ATOMIC_SEQ_CST);
b69e47
+    __atomic_load(&t_counter, &t_oldval, __ATOMIC_SEQ_CST);
b69e47
+    return 0;
b69e47
+    ]])],
b69e47
+    [
b69e47
+        AC_DEFINE([ATOMIC_64BIT_OPERATIONS], [1], [have 64-bit atomic operation functions provided by gcc])
b69e47
+        AC_MSG_RESULT([yes])
b69e47
+    ],
b69e47
+    [
b69e47
+        AC_MSG_RESULT([no])
b69e47
+    ]
b69e47
+)
b69e47
 
b69e47
 # cmd line overrides default setting above
b69e47
 if test -n "$with_initddir" ; then
b69e47
diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c
b69e47
index 54bbe86..34011b9 100644
b69e47
--- a/ldap/servers/plugins/dna/dna.c
b69e47
+++ b/ldap/servers/plugins/dna/dna.c
b69e47
@@ -2497,7 +2497,7 @@ static int dna_get_next_value(struct configEntry *config_entry,
b69e47
     if ((config_entry->maxval == -1) ||
b69e47
         (nextval <= (config_entry->maxval + config_entry->interval))) {
b69e47
         /* try to set the new next value in the config entry */
b69e47
-        PR_snprintf(next_value, sizeof(next_value),"%" NSPRIu64, nextval);
b69e47
+        snprintf(next_value, sizeof(next_value),"%" NSPRIu64, nextval);
b69e47
 
b69e47
         /* set up our replace modify operation */
b69e47
         replace_val[0] = next_value;
b69e47
@@ -2565,13 +2565,13 @@ dna_get_shared_config_attr_val(struct configEntry *config_entry, char *attr, cha
b69e47
             if(slapi_sdn_compare(server->sdn, server_sdn) == 0){
b69e47
                 if(strcmp(attr, DNA_REMOTE_BIND_METHOD) == 0){
b69e47
                     if (server->remote_bind_method) {
b69e47
-                        PR_snprintf(value, DNA_REMOTE_BUFSIZ, "%s", server->remote_bind_method);
b69e47
+                        snprintf(value, DNA_REMOTE_BUFSIZ, "%s", server->remote_bind_method);
b69e47
                         found = 1;
b69e47
                     }
b69e47
                     break;
b69e47
                 } else if(strcmp(attr, DNA_REMOTE_CONN_PROT) == 0){
b69e47
                     if (server->remote_conn_prot) {
b69e47
-                        PR_snprintf(value, DNA_REMOTE_BUFSIZ, "%s", server->remote_conn_prot);
b69e47
+                        snprintf(value, DNA_REMOTE_BUFSIZ, "%s", server->remote_conn_prot);
b69e47
                         found = 1;
b69e47
                     }
b69e47
                     break;
b69e47
@@ -2609,7 +2609,7 @@ dna_update_shared_config(struct configEntry *config_entry)
b69e47
 
b69e47
         /* We store the number of remaining assigned values
b69e47
          * in the shared config entry. */
b69e47
-        PR_snprintf(remaining_vals, sizeof(remaining_vals),"%" NSPRIu64,
b69e47
+        snprintf(remaining_vals, sizeof(remaining_vals),"%" NSPRIu64,
b69e47
                 config_entry->remaining);
b69e47
 
b69e47
         /* set up our replace modify operation */
b69e47
@@ -2709,7 +2709,7 @@ dna_update_next_range(struct configEntry *config_entry,
b69e47
     int ret = 0;
b69e47
 
b69e47
     /* Try to set the new next range in the config entry. */
b69e47
-    PR_snprintf(nextrange_value, sizeof(nextrange_value), "%" NSPRIu64 "-%" NSPRIu64,
b69e47
+    snprintf(nextrange_value, sizeof(nextrange_value), "%" NSPRIu64 "-%" NSPRIu64,
b69e47
     		lower, upper);
b69e47
 
b69e47
     /* set up our replace modify operation */
b69e47
@@ -2778,8 +2778,8 @@ dna_activate_next_range(struct configEntry *config_entry)
b69e47
     int ret = 0;
b69e47
 
b69e47
     /* Setup the modify operation for the config entry */
b69e47
-    PR_snprintf(maxval_val, sizeof(maxval_val),"%" NSPRIu64, config_entry->next_range_upper);
b69e47
-    PR_snprintf(nextval_val, sizeof(nextval_val),"%" NSPRIu64, config_entry->next_range_lower);
b69e47
+    snprintf(maxval_val, sizeof(maxval_val),"%" NSPRIu64, config_entry->next_range_upper);
b69e47
+    snprintf(nextval_val, sizeof(nextval_val),"%" NSPRIu64, config_entry->next_range_lower);
b69e47
 
b69e47
     maxval_vals[0] = maxval_val;
b69e47
     maxval_vals[1] = 0;
b69e47
@@ -4411,8 +4411,8 @@ static int dna_extend_exop(Slapi_PBlock *pb)
b69e47
         char highstr[16];
b69e47
 
b69e47
         /* Create the exop response */
b69e47
-        PR_snprintf(lowstr, sizeof(lowstr), "%" NSPRIu64, lower);
b69e47
-        PR_snprintf(highstr, sizeof(highstr), "%" NSPRIu64, upper);
b69e47
+        snprintf(lowstr, sizeof(lowstr), "%" NSPRIu64, lower);
b69e47
+        snprintf(highstr, sizeof(highstr), "%" NSPRIu64, upper);
b69e47
         range_low.bv_val = lowstr;
b69e47
         range_low.bv_len = strlen(range_low.bv_val);
b69e47
         range_high.bv_val = highstr;
b69e47
@@ -4588,7 +4588,7 @@ dna_release_range(char *range_dn, PRUint64 *lower, PRUint64 *upper)
b69e47
                 *lower = *upper - release + 1;
b69e47
 
b69e47
                 /* try to set the new maxval in the config entry */
b69e47
-                PR_snprintf(max_value, sizeof(max_value),"%" NSPRIu64, (*lower - 1));
b69e47
+                snprintf(max_value, sizeof(max_value),"%" NSPRIu64, (*lower - 1));
b69e47
 
b69e47
                 /* set up our replace modify operation */
b69e47
                 replace_val[0] = max_value;
b69e47
diff --git a/ldap/servers/plugins/posix-winsync/posix-winsync.c b/ldap/servers/plugins/posix-winsync/posix-winsync.c
b69e47
index a7e024d..63444e5 100644
b69e47
--- a/ldap/servers/plugins/posix-winsync/posix-winsync.c
b69e47
+++ b/ldap/servers/plugins/posix-winsync/posix-winsync.c
b69e47
@@ -234,7 +234,7 @@ sync_acct_disable(void *cbdata, /* the usual domain config data */
b69e47
 {
b69e47
     int ds_is_enabled = 1; /* default to true */
b69e47
     int ad_is_enabled = 1; /* default to true */
b69e47
-    unsigned long adval = 0; /* raw account val from ad entry */
b69e47
+    uint64_t adval = 0; /* raw account val from ad entry */
b69e47
     int isvirt = 0;
b69e47
 
b69e47
     /* get the account lock state of the ds entry */
b69e47
@@ -270,9 +270,8 @@ sync_acct_disable(void *cbdata, /* the usual domain config data */
b69e47
         if (update_entry) {
b69e47
             slapi_entry_attr_set_ulong(update_entry, "userAccountControl", adval);
b69e47
             slapi_log_err(SLAPI_LOG_PLUGIN, posix_winsync_plugin_name,
b69e47
-                            "<-- sync_acct_disable - %s AD account [%s] - "
b69e47
-                                "new value is [%ld]\n", (ds_is_enabled) ? "enabled" : "disabled",
b69e47
-                            slapi_entry_get_dn_const(update_entry), adval);
b69e47
+                "<-- sync_acct_disable - %s AD account [%s] - new value is [%" NSPRIu64 "]\n",
b69e47
+				(ds_is_enabled) ? "enabled" : "disabled", slapi_entry_get_dn_const(update_entry), adval);
b69e47
         } else {
b69e47
             /* iterate through the mods - if there is already a mod
b69e47
              for userAccountControl, change it - otherwise, add it */
b69e47
@@ -327,9 +326,8 @@ sync_acct_disable(void *cbdata, /* the usual domain config data */
b69e47
                 mod_bval->bv_len = strlen(acctvalstr);
b69e47
             }
b69e47
             slapi_log_err(SLAPI_LOG_PLUGIN, posix_winsync_plugin_name,
b69e47
-                            "<-- sync_acct_disable - %s AD account [%s] - "
b69e47
-                                "new value is [%ld]\n", (ds_is_enabled) ? "enabled" : "disabled",
b69e47
-                            slapi_entry_get_dn_const(ad_entry), adval);
b69e47
+                "<-- sync_acct_disable - %s AD account [%s] - new value is [%" NSPRIu64 "]\n",
b69e47
+				(ds_is_enabled) ? "enabled" : "disabled", slapi_entry_get_dn_const(ad_entry), adval);
b69e47
         }
b69e47
     }
b69e47
 
b69e47
diff --git a/ldap/servers/plugins/replication/repl5_init.c b/ldap/servers/plugins/replication/repl5_init.c
b69e47
index 0945f7b..9549dcf 100644
b69e47
--- a/ldap/servers/plugins/replication/repl5_init.c
b69e47
+++ b/ldap/servers/plugins/replication/repl5_init.c
b69e47
@@ -208,7 +208,7 @@ get_repl_session_id (Slapi_PBlock *pb, char *idstr, CSN **csn)
b69e47
 		/* Avoid "Connection is NULL and hence cannot access SLAPI_CONN_ID" */
b69e47
 		if (opid) {
b69e47
 			slapi_pblock_get (pb, SLAPI_CONN_ID, &connid);
b69e47
-			PR_snprintf (idstr, REPL_SESSION_ID_SIZE, "conn=%" NSPRIu64 " op=%d",
b69e47
+			snprintf (idstr, REPL_SESSION_ID_SIZE, "conn=%" NSPRIu64 " op=%d",
b69e47
 					connid, opid);
b69e47
 		}
b69e47
 
b69e47
diff --git a/ldap/servers/plugins/replication/repl_extop.c b/ldap/servers/plugins/replication/repl_extop.c
b69e47
index 948f38d..80580f9 100644
b69e47
--- a/ldap/servers/plugins/replication/repl_extop.c
b69e47
+++ b/ldap/servers/plugins/replication/repl_extop.c
b69e47
@@ -865,7 +865,7 @@ multimaster_extop_StartNSDS50ReplicationRequest(Slapi_PBlock *pb)
b69e47
 	 * the session's conn id and op id to identify the the supplier.
b69e47
 	 */
b69e47
 	/* junkrc = ruv_get_first_id_and_purl(supplier_ruv, &junkrid, &locking_purl); */
b69e47
-	PR_snprintf(locking_session, sizeof(locking_session), "conn=%" NSPRIu64 " id=%d",
b69e47
+	snprintf(locking_session, sizeof(locking_session), "conn=%" NSPRIu64 " id=%d",
b69e47
 			connid, opid);
b69e47
 	locking_purl = &locking_session[0];
b69e47
 	if (replica_get_exclusive_access(replica, &isInc, connid, opid,
b69e47
diff --git a/ldap/servers/plugins/usn/usn.c b/ldap/servers/plugins/usn/usn.c
b69e47
index 6fe8d2e..5e67e0a 100644
b69e47
--- a/ldap/servers/plugins/usn/usn.c
b69e47
+++ b/ldap/servers/plugins/usn/usn.c
b69e47
@@ -360,7 +360,7 @@ _usn_mod_next_usn(LDAPMod ***mods, Slapi_Backend *be)
b69e47
 
b69e47
     /* add next USN to the mods; "be" contains the usn counter */
b69e47
     usn_berval.bv_val = counter_buf;
b69e47
-    PR_snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64, 
b69e47
+    snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64,
b69e47
                 slapi_counter_get_value(be->be_usn_counter));
b69e47
     usn_berval.bv_len = strlen(usn_berval.bv_val);
b69e47
     bvals[0] = &usn_berval;
b69e47
@@ -670,7 +670,7 @@ usn_rootdse_search(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter,
b69e47
         /* nsslapd-entryusn-global: on*/
b69e47
         /* root dse shows ...
b69e47
          * lastusn: <num> */
b69e47
-        PR_snprintf(attr, USN_LAST_USN_ATTR_CORE_LEN + 1, "%s", USN_LAST_USN);
b69e47
+        snprintf(attr, USN_LAST_USN_ATTR_CORE_LEN + 1, "%s", USN_LAST_USN);
b69e47
         for (be = slapi_get_first_backend(&cookie); be;
b69e47
              be = slapi_get_next_backend(cookie)) {
b69e47
             if (be->be_usn_counter) {
b69e47
@@ -681,10 +681,10 @@ usn_rootdse_search(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter,
b69e47
             /* get a next USN counter from be_usn_counter; 
b69e47
              * then minus 1 from it (except if be_usn_counter has value 0) */
b69e47
             if (slapi_counter_get_value(be->be_usn_counter)) {
b69e47
-                PR_snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64,
b69e47
+                snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64,
b69e47
                             slapi_counter_get_value(be->be_usn_counter)-1);
b69e47
             } else {
b69e47
-                PR_snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "-1");
b69e47
+                snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "-1");
b69e47
             }
b69e47
             usn_berval.bv_len = strlen(usn_berval.bv_val);
b69e47
             slapi_entry_attr_replace(e, attr, vals);
b69e47
@@ -693,7 +693,7 @@ usn_rootdse_search(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter,
b69e47
         /* nsslapd-entryusn-global: off (default) */
b69e47
         /* root dse shows ...
b69e47
          * lastusn;<backend>: <num> */
b69e47
-        PR_snprintf(attr, USN_LAST_USN_ATTR_CORE_LEN + 2, "%s;", USN_LAST_USN);
b69e47
+        snprintf(attr, USN_LAST_USN_ATTR_CORE_LEN + 2, "%s;", USN_LAST_USN);
b69e47
         attr_subp = attr + USN_LAST_USN_ATTR_CORE_LEN + 1;
b69e47
         for (be = slapi_get_first_backend(&cookie); be;
b69e47
              be = slapi_get_next_backend(cookie)) {
b69e47
@@ -704,10 +704,10 @@ usn_rootdse_search(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter,
b69e47
             /* get a next USN counter from be_usn_counter; 
b69e47
              * then minus 1 from it (except if be_usn_counter has value 0) */
b69e47
             if (slapi_counter_get_value(be->be_usn_counter)) {
b69e47
-                PR_snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64,
b69e47
+                snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "%" NSPRIu64,
b69e47
                             slapi_counter_get_value(be->be_usn_counter)-1);
b69e47
             } else {
b69e47
-                PR_snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "-1");
b69e47
+                snprintf(usn_berval.bv_val, USN_COUNTER_BUF_LEN, "-1");
b69e47
             }
b69e47
             usn_berval.bv_len = strlen(usn_berval.bv_val);
b69e47
     
b69e47
@@ -716,7 +716,7 @@ usn_rootdse_search(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter,
b69e47
                 attr = (char *)slapi_ch_realloc(attr, attr_len);
b69e47
                 attr_subp = attr + USN_LAST_USN_ATTR_CORE_LEN;
b69e47
             }
b69e47
-            PR_snprintf(attr_subp, attr_len - USN_LAST_USN_ATTR_CORE_LEN,
b69e47
+            snprintf(attr_subp, attr_len - USN_LAST_USN_ATTR_CORE_LEN,
b69e47
                                     "%s", be->be_name);
b69e47
             slapi_entry_attr_replace(e, attr, vals);
b69e47
         }
b69e47
diff --git a/ldap/servers/slapd/back-ldbm/monitor.c b/ldap/servers/slapd/back-ldbm/monitor.c
b69e47
index dfcc735..757792b 100644
b69e47
--- a/ldap/servers/slapd/back-ldbm/monitor.c
b69e47
+++ b/ldap/servers/slapd/back-ldbm/monitor.c
b69e47
@@ -26,7 +26,7 @@
b69e47
 
b69e47
 #define MSETF(_attr, _x) do { \
b69e47
     char tmp_atype[37]; \
b69e47
-    PR_snprintf(tmp_atype, sizeof(tmp_atype), _attr, _x); \
b69e47
+    snprintf(tmp_atype, sizeof(tmp_atype), _attr, _x); \
b69e47
     MSET(tmp_atype); \
b69e47
 } while (0)
b69e47
 
b69e47
@@ -86,7 +86,7 @@ int ldbm_back_monitor_instance_search(Slapi_PBlock *pb, Slapi_Entry *e,
b69e47
     MSET("entryCacheHits");
b69e47
     sprintf(buf, "%lu", (long unsigned int)tries);
b69e47
     MSET("entryCacheTries");
b69e47
-    sprintf(buf, "%lu", (unsigned long)(100.0*(double)hits / (double)(tries > 0 ? tries : 1)));
b69e47
+    sprintf(buf, "%lu", (long unsigned int)(100.0*(double)hits / (double)(tries > 0 ? tries : 1)));
b69e47
     MSET("entryCacheHitRatio");
b69e47
     sprintf(buf, "%lu", (long unsigned int)size);
b69e47
     MSET("currentEntryCacheSize");
b69e47
diff --git a/ldap/servers/slapd/back-ldbm/perfctrs.c b/ldap/servers/slapd/back-ldbm/perfctrs.c
b69e47
index 2bd18bd..5929dea 100644
b69e47
--- a/ldap/servers/slapd/back-ldbm/perfctrs.c
b69e47
+++ b/ldap/servers/slapd/back-ldbm/perfctrs.c
b69e47
@@ -49,7 +49,7 @@
b69e47
 
b69e47
 static void perfctrs_update(perfctrs_private *priv, DB_ENV *db_env);
b69e47
 static void perfctr_add_to_entry( Slapi_Entry *e, char *type,
b69e47
-	PRUint32 countervalue );
b69e47
+	uint64_t countervalue );
b69e47
 
b69e47
 /* Init perf ctrs */
b69e47
 void perfctrs_init(struct ldbminfo *li, perfctrs_private **ret_priv)
b69e47
@@ -304,17 +304,13 @@ perfctrs_as_entry( Slapi_Entry *e, perfctrs_private *priv, DB_ENV *db_env )
b69e47
      */
b69e47
     for ( i = 0; i < SLAPI_LDBM_PERFCTR_AT_MAP_COUNT; ++i ) {
b69e47
         perfctr_add_to_entry( e, perfctr_at_map[i].pam_type,
b69e47
-            *((PRUint32 *)((char *)perf + perfctr_at_map[i].pam_offset)));
b69e47
+            *((uint64_t *)((char *)perf + perfctr_at_map[i].pam_offset)));
b69e47
     }
b69e47
 }
b69e47
 
b69e47
 
b69e47
 static void
b69e47
-perfctr_add_to_entry( Slapi_Entry *e, char *type, PRUint32 countervalue )
b69e47
+perfctr_add_to_entry( Slapi_Entry *e, char *type, uint64_t countervalue )
b69e47
 {
b69e47
-	/*
b69e47
-	 * XXXmcs: the following line assumes that long's are 32 bits or larger,
b69e47
-	 * which we assume in other places too I am sure.
b69e47
-	 */
b69e47
-	slapi_entry_attr_set_ulong( e, type, (unsigned long)countervalue );
b69e47
+	slapi_entry_attr_set_ulong( e, type, countervalue );
b69e47
 }
b69e47
diff --git a/ldap/servers/slapd/back-ldbm/perfctrs.h b/ldap/servers/slapd/back-ldbm/perfctrs.h
b69e47
index 65a7850..57be1d1 100644
b69e47
--- a/ldap/servers/slapd/back-ldbm/perfctrs.h
b69e47
+++ b/ldap/servers/slapd/back-ldbm/perfctrs.h
b69e47
@@ -11,46 +11,48 @@
b69e47
 #  include <config.h>
b69e47
 #endif
b69e47
 
b69e47
+#include <inttypes.h>
b69e47
+
b69e47
 /* Structure definition for performance data */
b69e47
 /* This stuff goes in shared memory, so make sure the packing is consistent */
b69e47
 
b69e47
 struct _performance_counters {
b69e47
-	PRUint32	sequence_number;
b69e47
-	PRUint32    lock_region_wait_rate;
b69e47
-	PRUint32    deadlock_rate;
b69e47
-	PRUint32    configured_locks;
b69e47
-	PRUint32    current_locks;
b69e47
-	PRUint32    max_locks;
b69e47
-	PRUint32    lockers;
b69e47
-	PRUint32    current_lock_objects;
b69e47
-	PRUint32    max_lock_objects;
b69e47
-	PRUint32    lock_conflicts;
b69e47
-	PRUint32    lock_request_rate;
b69e47
-	PRUint32    log_region_wait_rate;
b69e47
-	PRUint32    log_write_rate;
b69e47
-	PRUint32    log_bytes_since_checkpoint;
b69e47
-	PRUint32    cache_size_bytes;
b69e47
-	PRUint32    page_access_rate;
b69e47
-	PRUint32    cache_hit;
b69e47
-	PRUint32    cache_try;
b69e47
-	PRUint32    page_create_rate;
b69e47
-	PRUint32    page_read_rate;
b69e47
-	PRUint32    page_write_rate;
b69e47
-	PRUint32    page_ro_evict_rate;
b69e47
-	PRUint32    page_rw_evict_rate;
b69e47
-	PRUint32    hash_buckets;
b69e47
-	PRUint32    hash_search_rate;
b69e47
-	PRUint32    longest_chain_length;
b69e47
-	PRUint32    hash_elements_examine_rate;
b69e47
-	PRUint32    pages_in_use;
b69e47
-	PRUint32    dirty_pages;
b69e47
-	PRUint32    clean_pages;
b69e47
-	PRUint32    page_trickle_rate;
b69e47
-	PRUint32    cache_region_wait_rate;
b69e47
-	PRUint32    active_txns;
b69e47
-	PRUint32    commit_rate;
b69e47
-	PRUint32    abort_rate;
b69e47
-	PRUint32    txn_region_wait_rate;
b69e47
+	uint64_t	sequence_number;
b69e47
+	uint64_t    lock_region_wait_rate;
b69e47
+	uint64_t    deadlock_rate;
b69e47
+	uint64_t    configured_locks;
b69e47
+	uint64_t    current_locks;
b69e47
+	uint64_t    max_locks;
b69e47
+	uint64_t    lockers;
b69e47
+	uint64_t    current_lock_objects;
b69e47
+	uint64_t    max_lock_objects;
b69e47
+	uint64_t    lock_conflicts;
b69e47
+	uint64_t    lock_request_rate;
b69e47
+	uint64_t    log_region_wait_rate;
b69e47
+	uint64_t    log_write_rate;
b69e47
+	uint64_t    log_bytes_since_checkpoint;
b69e47
+	uint64_t    cache_size_bytes;
b69e47
+	uint64_t    page_access_rate;
b69e47
+	uint64_t    cache_hit;
b69e47
+	uint64_t    cache_try;
b69e47
+	uint64_t    page_create_rate;
b69e47
+	uint64_t    page_read_rate;
b69e47
+	uint64_t    page_write_rate;
b69e47
+	uint64_t    page_ro_evict_rate;
b69e47
+	uint64_t    page_rw_evict_rate;
b69e47
+	uint64_t    hash_buckets;
b69e47
+	uint64_t    hash_search_rate;
b69e47
+	uint64_t    longest_chain_length;
b69e47
+	uint64_t    hash_elements_examine_rate;
b69e47
+	uint64_t    pages_in_use;
b69e47
+	uint64_t    dirty_pages;
b69e47
+	uint64_t    clean_pages;
b69e47
+	uint64_t    page_trickle_rate;
b69e47
+	uint64_t    cache_region_wait_rate;
b69e47
+	uint64_t    active_txns;
b69e47
+	uint64_t    commit_rate;
b69e47
+	uint64_t    abort_rate;
b69e47
+	uint64_t    txn_region_wait_rate;
b69e47
 };
b69e47
 typedef struct _performance_counters performance_counters;
b69e47
 
b69e47
diff --git a/ldap/servers/slapd/back-ldbm/vlv_srch.h b/ldap/servers/slapd/back-ldbm/vlv_srch.h
b69e47
index d1eba08..6322f80 100644
b69e47
--- a/ldap/servers/slapd/back-ldbm/vlv_srch.h
b69e47
+++ b/ldap/servers/slapd/back-ldbm/vlv_srch.h
b69e47
@@ -92,7 +92,7 @@ struct vlvIndex
b69e47
     time_t vlv_lastchecked;
b69e47
 
b69e47
     /* The number of uses this search has received since start up */
b69e47
-    PRUint32 vlv_uses;
b69e47
+    uint64_t vlv_uses;
b69e47
 
b69e47
 	struct backend* vlv_be; /* need backend to remove the index when done */
b69e47
 
b69e47
diff --git a/ldap/servers/slapd/conntable.c b/ldap/servers/slapd/conntable.c
b69e47
index 004aeae..bcafa4e 100644
b69e47
--- a/ldap/servers/slapd/conntable.c
b69e47
+++ b/ldap/servers/slapd/conntable.c
b69e47
@@ -395,7 +395,7 @@ connection_table_as_entry(Connection_Table *ct, Slapi_Entry *e)
b69e47
 			 * 3 = The number of operations attempted that were blocked
b69e47
 			 *     by max threads.
b69e47
 			 */
b69e47
-			PR_snprintf(maxthreadbuf, sizeof(maxthreadbuf), "%d:%"NSPRIu64":%"NSPRIu64"",
b69e47
+			snprintf(maxthreadbuf, sizeof(maxthreadbuf), "%d:%"NSPRIu64":%"NSPRIu64"",
b69e47
 				maxthreadstate, ct->c[i].c_maxthreadscount,
b69e47
 				ct->c[i].c_maxthreadsblocked);
b69e47
 
b69e47
@@ -426,32 +426,32 @@ connection_table_as_entry(Connection_Table *ct, Slapi_Entry *e)
b69e47
 		PR_ExitMonitor(ct->c[i].c_mutex);
b69e47
 	}
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%d", nconns );
b69e47
+	snprintf( buf, sizeof(buf), "%d", nconns );
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "currentconnections", vals );
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(num_conns));
b69e47
+	snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(num_conns));
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "totalconnections", vals );
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(conns_in_maxthreads));
b69e47
+	snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(conns_in_maxthreads));
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "currentconnectionsatmaxthreads", vals );
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(max_threads_count));
b69e47
+	snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(max_threads_count));
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "maxthreadsperconnhits", vals );
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%d", (ct!=NULL?ct->size:0) );
b69e47
+	snprintf( buf, sizeof(buf), "%d", (ct!=NULL?ct->size:0) );
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "dtablesize", vals );
b69e47
 
b69e47
-	PR_snprintf( buf, sizeof(buf), "%d", nreadwaiters );
b69e47
+	snprintf( buf, sizeof(buf), "%d", nreadwaiters );
b69e47
 	val.bv_val = buf;
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "readwaiters", vals );
b69e47
diff --git a/ldap/servers/slapd/entry.c b/ldap/servers/slapd/entry.c
b69e47
index 7bbd2f4..abacc57 100644
b69e47
--- a/ldap/servers/slapd/entry.c
b69e47
+++ b/ldap/servers/slapd/entry.c
b69e47
@@ -3088,14 +3088,14 @@ slapi_entry_attr_set_longlong( Slapi_Entry* e, const char *type, long long l)
b69e47
 }
b69e47
 
b69e47
 void
b69e47
-slapi_entry_attr_set_ulong( Slapi_Entry* e, const char *type, unsigned long l)
b69e47
+slapi_entry_attr_set_ulong( Slapi_Entry* e, const char *type, uint64_t l)
b69e47
 {
b69e47
     char value[16];
b69e47
 	struct berval bv;
b69e47
 	struct berval *bvals[2];
b69e47
 	bvals[0] = &bv;
b69e47
 	bvals[1] = NULL;
b69e47
-    sprintf(value,"%lu",l);
b69e47
+    sprintf(value,"%" NSPRIu64, l);
b69e47
 	bv.bv_val = value;
b69e47
 	bv.bv_len = strlen( value );
b69e47
     slapi_entry_attr_replace( e, type, bvals );
b69e47
diff --git a/ldap/servers/slapd/log.c b/ldap/servers/slapd/log.c
b69e47
index 2f43a98..afedd5b 100644
b69e47
--- a/ldap/servers/slapd/log.c
b69e47
+++ b/ldap/servers/slapd/log.c
b69e47
@@ -2327,11 +2327,11 @@ vslapd_log_error(
b69e47
     char      buffer[SLAPI_LOG_BUFSIZ];
b69e47
     char      sev_name[10];
b69e47
     int       blen = TBUFSIZE;
b69e47
-    char      *vbuf;
b69e47
+    char      *vbuf = NULL;
b69e47
     int       header_len = 0;
b69e47
     int       err = 0;
b69e47
 
b69e47
-    if ((vbuf = PR_vsmprintf(fmt, ap)) == NULL) {
b69e47
+    if (vasprintf(&vbuf, fmt, ap) == -1) {
b69e47
         log__error_emergency("CRITICAL: vslapd_log_error, Unable to format message", 1 , locked);
b69e47
         return -1;
b69e47
     }
b69e47
@@ -2381,10 +2381,10 @@ vslapd_log_error(
b69e47
     /* blen = strlen(buffer); */
b69e47
     /* This truncates again .... But we have the nice smprintf above! */
b69e47
     if (subsystem == NULL) {
b69e47
-        PR_snprintf (buffer+blen, sizeof(buffer)-blen, "- %s - %s",
b69e47
+        snprintf (buffer+blen, sizeof(buffer)-blen, "- %s - %s",
b69e47
                      get_log_sev_name(sev_level, sev_name), vbuf);
b69e47
     } else {
b69e47
-        PR_snprintf (buffer+blen, sizeof(buffer)-blen, "- %s - %s - %s",
b69e47
+        snprintf (buffer+blen, sizeof(buffer)-blen, "- %s - %s - %s",
b69e47
                      get_log_sev_name(sev_level, sev_name), subsystem, vbuf);
b69e47
     }
b69e47
 
b69e47
@@ -2418,7 +2418,7 @@ vslapd_log_error(
b69e47
         g_set_shutdown( SLAPI_SHUTDOWN_EXIT );
b69e47
     }
b69e47
 
b69e47
-    PR_smprintf_free (vbuf);
b69e47
+    slapi_ch_free_string(&vbuf);
b69e47
     return( 0 );
b69e47
 }
b69e47
 
b69e47
@@ -2520,8 +2520,7 @@ static int vslapd_log_access(char *fmt, va_list ap)
b69e47
     time_t tnl;
b69e47
 
b69e47
     /* We do this sooner, because that we we can use the message in other calls */
b69e47
-    vlen = PR_vsnprintf(vbuf, SLAPI_LOG_BUFSIZ, fmt, ap);
b69e47
-    if (! vlen) {
b69e47
+    if ((vlen = vsnprintf(vbuf, SLAPI_LOG_BUFSIZ, fmt, ap)) == -1){
b69e47
         log__error_emergency("CRITICAL: vslapd_log_access, Unable to format message", 1 ,0);
b69e47
         return -1;
b69e47
     }
b69e47
diff --git a/ldap/servers/slapd/monitor.c b/ldap/servers/slapd/monitor.c
b69e47
index 0917bc8..f1fb38f 100644
b69e47
--- a/ldap/servers/slapd/monitor.c
b69e47
+++ b/ldap/servers/slapd/monitor.c
b69e47
@@ -54,25 +54,25 @@ monitor_info(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter, int *ret
b69e47
 	attrlist_replace( &e->e_attrs, "version", vals );
b69e47
 	slapi_ch_free( (void **) &val.bv_val );
b69e47
 
b69e47
-	val.bv_len = PR_snprintf( buf, sizeof(buf), "%d", g_get_active_threadcnt() );
b69e47
+	val.bv_len = snprintf( buf, sizeof(buf), "%d", g_get_active_threadcnt() );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "threads", vals );
b69e47
 
b69e47
 	connection_table_as_entry(the_connection_table, e);
b69e47
 
b69e47
-	val.bv_len = PR_snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(ops_initiated) );
b69e47
+	val.bv_len = snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(ops_initiated) );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "opsinitiated", vals );
b69e47
 
b69e47
-	val.bv_len = PR_snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(ops_completed) );
b69e47
+	val.bv_len = snprintf( buf, sizeof(buf), "%" NSPRIu64, slapi_counter_get_value(ops_completed) );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "opscompleted", vals );
b69e47
 
b69e47
-	val.bv_len = PR_snprintf ( buf, sizeof(buf), "%" NSPRIu64, g_get_num_entries_sent() );
b69e47
+	val.bv_len = snprintf ( buf, sizeof(buf), "%" NSPRIu64, g_get_num_entries_sent() );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "entriessent", vals );
b69e47
 
b69e47
-	val.bv_len = PR_snprintf ( buf, sizeof(buf), "%" NSPRIu64, g_get_num_bytes_sent() );
b69e47
+	val.bv_len = snprintf ( buf, sizeof(buf), "%" NSPRIu64, g_get_num_bytes_sent() );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "bytessent", vals );
b69e47
 
b69e47
@@ -88,12 +88,12 @@ monitor_info(Slapi_PBlock *pb, Slapi_Entry* e, Slapi_Entry* entryAfter, int *ret
b69e47
 	val.bv_len = strlen( buf );
b69e47
 	attrlist_replace( &e->e_attrs, "starttime", vals );
b69e47
 
b69e47
-	val.bv_len = PR_snprintf( buf, sizeof(buf), "%d", be_nbackends_public() );
b69e47
+	val.bv_len = snprintf( buf, sizeof(buf), "%d", be_nbackends_public() );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "nbackends", vals );
b69e47
 
b69e47
 #ifdef THREAD_SUNOS5_LWP
b69e47
-	val.bv_len = PR_snprintf( buf, sizeof(buf), "%d", thr_getconcurrency() );
b69e47
+	val.bv_len = snprintf( buf, sizeof(buf), "%d", thr_getconcurrency() );
b69e47
 	val.bv_val = buf;
b69e47
 	attrlist_replace( &e->e_attrs, "concurrency", vals );
b69e47
 #endif
b69e47
diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h
b69e47
index 1bd8fc8..725fa1c 100644
b69e47
--- a/ldap/servers/slapd/slapi-plugin.h
b69e47
+++ b/ldap/servers/slapd/slapi-plugin.h
b69e47
@@ -1954,7 +1954,7 @@ void slapi_entry_attr_set_longlong( Slapi_Entry* e, const char *type, long long
b69e47
  * \param type Attribute type in which you want to set the value.
b69e47
  * \param l Unsigned long value that you want to assign to the attribute.
b69e47
  */
b69e47
-void slapi_entry_attr_set_ulong(Slapi_Entry* e, const char *type, unsigned long l);
b69e47
+void slapi_entry_attr_set_ulong(Slapi_Entry* e, const char *type, uint64_t l);
b69e47
 
b69e47
 /**
b69e47
  * Check if an attribute is set in the entry
b69e47
@@ -6746,12 +6746,12 @@ void slapi_destroy_task(void *arg);
b69e47
 Slapi_Counter *slapi_counter_new(void);
b69e47
 void slapi_counter_init(Slapi_Counter *counter);
b69e47
 void slapi_counter_destroy(Slapi_Counter **counter);
b69e47
-PRUint64 slapi_counter_increment(Slapi_Counter *counter);
b69e47
-PRUint64 slapi_counter_decrement(Slapi_Counter *counter);
b69e47
-PRUint64 slapi_counter_add(Slapi_Counter *counter, PRUint64 addvalue);
b69e47
-PRUint64 slapi_counter_subtract(Slapi_Counter *counter, PRUint64 subvalue);
b69e47
-PRUint64 slapi_counter_set_value(Slapi_Counter *counter, PRUint64 newvalue);
b69e47
-PRUint64 slapi_counter_get_value(Slapi_Counter *counter);
b69e47
+uint64_t slapi_counter_increment(Slapi_Counter *counter);
b69e47
+uint64_t slapi_counter_decrement(Slapi_Counter *counter);
b69e47
+uint64_t slapi_counter_add(Slapi_Counter *counter, uint64_t addvalue);
b69e47
+uint64_t slapi_counter_subtract(Slapi_Counter *counter, uint64_t subvalue);
b69e47
+uint64_t slapi_counter_set_value(Slapi_Counter *counter, uint64_t newvalue);
b69e47
+uint64_t slapi_counter_get_value(Slapi_Counter *counter);
b69e47
 
b69e47
 /* Binder-based (connection centric) resource limits */
b69e47
 /*
b69e47
diff --git a/ldap/servers/slapd/slapi_counter.c b/ldap/servers/slapd/slapi_counter.c
b69e47
index c3ac846..9904fe9 100644
b69e47
--- a/ldap/servers/slapd/slapi_counter.c
b69e47
+++ b/ldap/servers/slapd/slapi_counter.c
b69e47
@@ -12,37 +12,21 @@
b69e47
 
b69e47
 #include "slap.h"
b69e47
 
b69e47
-#ifdef SOLARIS
b69e47
-PRUint64 _sparcv9_AtomicSet(PRUint64 *address, PRUint64 newval);
b69e47
-PRUint64 _sparcv9_AtomicAdd(PRUint64 *address, PRUint64 val);
b69e47
-PRUint64 _sparcv9_AtomicSub(PRUint64 *address, PRUint64 val);
b69e47
+#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
+#include <pthread.h>
b69e47
 #endif
b69e47
 
b69e47
 #ifdef HPUX
b69e47
-#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
 #include <machine/sys/inline.h>
b69e47
 #endif
b69e47
-#endif
b69e47
-
b69e47
-#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
-#if defined(LINUX) && !HAVE_64BIT_ATOMIC_OP_FUNCS
b69e47
-/* On systems that don't have the 64-bit GCC atomic builtins, we need to
b69e47
- * implement our own atomic functions using inline assembly code. */
b69e47
-PRUint64 __sync_add_and_fetch_8(PRUint64 *ptr, PRUint64 addval);
b69e47
-PRUint64 __sync_sub_and_fetch_8(PRUint64 *ptr, PRUint64 subval);
b69e47
-#define __sync_add_and_fetch __sync_add_and_fetch_8
b69e47
-#define __sync_sub_and_fetch __sync_sub_and_fetch_8
b69e47
-#endif
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
-
b69e47
 
b69e47
 /*
b69e47
  * Counter Structure
b69e47
  */
b69e47
 typedef struct slapi_counter {
b69e47
-    PRUint64 value;
b69e47
+    uint64_t value;
b69e47
 #ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-    Slapi_Mutex *lock;
b69e47
+    pthread_mutex_t _lock;
b69e47
 #endif
b69e47
 } slapi_counter;
b69e47
 
b69e47
@@ -72,15 +56,11 @@ Slapi_Counter *slapi_counter_new()
b69e47
 void slapi_counter_init(Slapi_Counter *counter)
b69e47
 {
b69e47
     if (counter != NULL) {
b69e47
-#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-        /* Create the lock if necessary. */
b69e47
-        if (counter->lock == NULL) {
b69e47
-            counter->lock = slapi_new_mutex();
b69e47
-        }
b69e47
-#endif
b69e47
-        
b69e47
         /* Set the value to 0. */
b69e47
         slapi_counter_set_value(counter, 0);
b69e47
+#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
+        pthread_mutex_init(&(counter->_lock), NULL);
b69e47
+#endif
b69e47
     }
b69e47
 }
b69e47
 
b69e47
@@ -94,7 +74,7 @@ void slapi_counter_destroy(Slapi_Counter **counter)
b69e47
 {
b69e47
     if ((counter != NULL) && (*counter != NULL)) {
b69e47
 #ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-        slapi_destroy_mutex((*counter)->lock);
b69e47
+        pthread_mutex_destroy(&((*counter)->_lock));
b69e47
 #endif
b69e47
         slapi_ch_free((void **)counter);
b69e47
     }
b69e47
@@ -105,7 +85,7 @@ void slapi_counter_destroy(Slapi_Counter **counter)
b69e47
  *
b69e47
  * Atomically increments a Slapi_Counter.
b69e47
  */
b69e47
-PRUint64 slapi_counter_increment(Slapi_Counter *counter)
b69e47
+uint64_t slapi_counter_increment(Slapi_Counter *counter)
b69e47
 {
b69e47
     return slapi_counter_add(counter, 1);
b69e47
 }
b69e47
@@ -117,7 +97,7 @@ PRUint64 slapi_counter_increment(Slapi_Counter *counter)
b69e47
  * that this will not prevent you from wrapping
b69e47
  * around 0.
b69e47
  */
b69e47
-PRUint64 slapi_counter_decrement(Slapi_Counter *counter)
b69e47
+uint64_t slapi_counter_decrement(Slapi_Counter *counter)
b69e47
 {
b69e47
     return slapi_counter_subtract(counter, 1);
b69e47
 }
b69e47
@@ -127,28 +107,18 @@ PRUint64 slapi_counter_decrement(Slapi_Counter *counter)
b69e47
  *
b69e47
  * Atomically add a value to a Slapi_Counter.
b69e47
  */
b69e47
-PRUint64 slapi_counter_add(Slapi_Counter *counter, PRUint64 addvalue)
b69e47
+uint64_t slapi_counter_add(Slapi_Counter *counter, uint64_t addvalue)
b69e47
 {
b69e47
-    PRUint64 newvalue = 0;
b69e47
-#ifdef HPUX
b69e47
-    PRUint64 prev = 0;
b69e47
-#endif
b69e47
+    uint64_t newvalue = 0;
b69e47
 
b69e47
     if (counter == NULL) {
b69e47
         return newvalue;
b69e47
     }
b69e47
-
b69e47
-#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-    slapi_lock_mutex(counter->lock);
b69e47
-    counter->value += addvalue;
b69e47
-    newvalue = counter->value;
b69e47
-    slapi_unlock_mutex(counter->lock);
b69e47
+#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
+    newvalue = __atomic_add_fetch_8(&(counter->value), addvalue, __ATOMIC_SEQ_CST);
b69e47
 #else
b69e47
-#ifdef LINUX
b69e47
-    newvalue = __sync_add_and_fetch(&(counter->value), addvalue);
b69e47
-#elif defined(SOLARIS)
b69e47
-    newvalue = _sparcv9_AtomicAdd(&(counter->value), addvalue);
b69e47
-#elif defined(HPUX)
b69e47
+#ifdef HPUX
b69e47
+    uint64_t prev = 0;
b69e47
     /* fetchadd only works with values of 1, 4, 8, and 16.  In addition, it requires
b69e47
      * it's argument to be an integer constant. */
b69e47
     if (addvalue == 1) {
b69e47
@@ -172,8 +142,13 @@ PRUint64 slapi_counter_add(Slapi_Counter *counter, PRUint64 addvalue)
b69e47
            _Asm_mov_to_ar(_AREG_CCV, prev);
b69e47
         } while (prev != _Asm_cmpxchg(_FASZ_D, _SEM_ACQ, &(counter->value), newvalue, _LDHINT_NONE));
b69e47
     }
b69e47
+#else
b69e47
+    pthread_mutex_lock(&(counter->_lock));
b69e47
+    counter->value += addvalue;
b69e47
+    newvalue = counter->value;
b69e47
+    pthread_mutex_unlock(&(counter->_lock));
b69e47
+#endif
b69e47
 #endif
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
 
b69e47
     return newvalue;
b69e47
 }
b69e47
@@ -184,28 +159,19 @@ PRUint64 slapi_counter_add(Slapi_Counter *counter, PRUint64 addvalue)
b69e47
  * Atomically subtract a value from a Slapi_Counter.  Note
b69e47
  * that this will not prevent you from wrapping around 0.
b69e47
  */
b69e47
-PRUint64 slapi_counter_subtract(Slapi_Counter *counter, PRUint64 subvalue)
b69e47
+uint64_t slapi_counter_subtract(Slapi_Counter *counter, uint64_t subvalue)
b69e47
 {
b69e47
-    PRUint64 newvalue = 0;
b69e47
-#ifdef HPUX
b69e47
-    PRUint64 prev = 0;
b69e47
-#endif
b69e47
+    uint64_t newvalue = 0;
b69e47
 
b69e47
     if (counter == NULL) {
b69e47
         return newvalue;
b69e47
     }
b69e47
 
b69e47
-#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-    slapi_lock_mutex(counter->lock);
b69e47
-    counter->value -= subvalue;
b69e47
-    newvalue = counter->value;
b69e47
-    slapi_unlock_mutex(counter->lock);
b69e47
+#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
+    newvalue = __atomic_sub_fetch_8(&(counter->value), subvalue, __ATOMIC_SEQ_CST);
b69e47
 #else
b69e47
-#ifdef LINUX
b69e47
-    newvalue = __sync_sub_and_fetch(&(counter->value), subvalue);
b69e47
-#elif defined(SOLARIS)
b69e47
-    newvalue = _sparcv9_AtomicSub(&(counter->value), subvalue);
b69e47
-#elif defined(HPUX)
b69e47
+#ifdef HPUX
b69e47
+    uint64_t prev = 0;
b69e47
     /* fetchadd only works with values of -1, -4, -8, and -16.  In addition, it requires
b69e47
      * it's argument to be an integer constant. */
b69e47
     if (subvalue == 1) {
b69e47
@@ -229,8 +195,13 @@ PRUint64 slapi_counter_subtract(Slapi_Counter *counter, PRUint64 subvalue)
b69e47
            _Asm_mov_to_ar(_AREG_CCV, prev);
b69e47
         } while (prev != _Asm_cmpxchg(_FASZ_D, _SEM_ACQ, &(counter->value), newvalue, _LDHINT_NONE));
b69e47
     }
b69e47
+#else
b69e47
+    pthread_mutex_lock(&(counter->_lock));
b69e47
+    counter->value -= subvalue;
b69e47
+    newvalue = counter->value;
b69e47
+    pthread_mutex_unlock(&(counter->_lock));
b69e47
+#endif
b69e47
 #endif
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
 
b69e47
     return newvalue;
b69e47
 }
b69e47
@@ -240,76 +211,30 @@ PRUint64 slapi_counter_subtract(Slapi_Counter *counter, PRUint64 subvalue)
b69e47
  *
b69e47
  * Atomically sets the value of a Slapi_Counter.
b69e47
  */
b69e47
-PRUint64 slapi_counter_set_value(Slapi_Counter *counter, PRUint64 newvalue)
b69e47
+uint64_t slapi_counter_set_value(Slapi_Counter *counter, uint64_t newvalue)
b69e47
 {
b69e47
-    PRUint64 value = 0;
b69e47
+    uint64_t value = 0;
b69e47
 
b69e47
     if (counter == NULL) {
b69e47
         return value;
b69e47
     }
b69e47
 
b69e47
-#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-    slapi_lock_mutex(counter->lock);
b69e47
-    counter->value = newvalue;
b69e47
-    slapi_unlock_mutex(counter->lock);
b69e47
-    return newvalue;
b69e47
-#else
b69e47
-#ifdef LINUX
b69e47
-/* Use our own inline assembly for an atomic set if
b69e47
- * the builtins aren't available. */
b69e47
-#if !HAVE_64BIT_ATOMIC_CAS_FUNC
b69e47
-    /*
b69e47
-     * %0 = counter->value
b69e47
-     * %1 = newvalue
b69e47
-     */
b69e47
-    __asm__ __volatile__(
b69e47
-#ifdef CPU_x86
b69e47
-        /* Save the PIC register */
b69e47
-        " pushl %%ebx;"
b69e47
-#endif /* CPU_x86 */
b69e47
-        /* Put value of counter->value in EDX:EAX */
b69e47
-        "retryset: movl %0, %%eax;"
b69e47
-        " movl 4%0, %%edx;"
b69e47
-        /* Put newval in ECX:EBX */
b69e47
-        " movl %1, %%ebx;"
b69e47
-        " movl 4+%1, %%ecx;"
b69e47
-        /* If EDX:EAX and counter-> are the same,
b69e47
-         * replace *ptr with ECX:EBX */
b69e47
-        " lock; cmpxchg8b %0;"
b69e47
-        " jnz retryset;"
b69e47
-#ifdef CPU_x86
b69e47
-        /* Restore the PIC register */
b69e47
-        " popl %%ebx"
b69e47
-#endif /* CPU_x86 */
b69e47
-        : "+o" (counter->value)
b69e47
-        : "m" (newvalue)
b69e47
-#ifdef CPU_x86
b69e47
-        : "memory", "eax", "ecx", "edx", "cc");
b69e47
-#else
b69e47
-        : "memory", "eax", "ebx", "ecx", "edx", "cc");
b69e47
-#endif
b69e47
-
b69e47
-    return newvalue;
b69e47
-#else
b69e47
-    while (1) {
b69e47
-        value = counter->value;
b69e47
-        if (__sync_bool_compare_and_swap(&(counter->value), value, newvalue)) {
b69e47
-            return newvalue;
b69e47
-        }
b69e47
-    }
b69e47
-#endif /* CPU_x86 || !HAVE_DECL___SYNC_ADD_AND_FETCH */
b69e47
-#elif defined(SOLARIS)
b69e47
-    _sparcv9_AtomicSet(&(counter->value), newvalue);
b69e47
-    return newvalue;
b69e47
-#elif defined(HPUX)
b69e47
+#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
+    __atomic_store_8(&(counter->value), newvalue, __ATOMIC_SEQ_CST);
b69e47
+#else /* HPUX */
b69e47
+#ifdef HPUX
b69e47
     do {
b69e47
         value = counter->value;
b69e47
         /* Put value in a register for cmpxchg to compare against */
b69e47
         _Asm_mov_to_ar(_AREG_CCV, value);
b69e47
     } while (value != _Asm_cmpxchg(_FASZ_D, _SEM_ACQ, &(counter->value), newvalue, _LDHINT_NONE));
b69e47
-    return newvalue;
b69e47
+#else
b69e47
+    pthread_mutex_lock(&(counter->_lock));
b69e47
+    counter->value = newvalue;
b69e47
+    pthread_mutex_unlock(&(counter->_lock));
b69e47
+#endif
b69e47
 #endif
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
+    return newvalue;
b69e47
 }
b69e47
 
b69e47
 /*
b69e47
@@ -317,174 +242,30 @@ PRUint64 slapi_counter_set_value(Slapi_Counter *counter, PRUint64 newvalue)
b69e47
  *
b69e47
  * Returns the value of a Slapi_Counter.
b69e47
  */
b69e47
-PRUint64 slapi_counter_get_value(Slapi_Counter *counter)
b69e47
+uint64_t slapi_counter_get_value(Slapi_Counter *counter)
b69e47
 {
b69e47
-    PRUint64 value = 0;
b69e47
+    uint64_t value = 0;
b69e47
 
b69e47
     if (counter == NULL) {
b69e47
         return value;
b69e47
     }
b69e47
 
b69e47
-#ifndef ATOMIC_64BIT_OPERATIONS
b69e47
-    slapi_lock_mutex(counter->lock);
b69e47
-    value = counter->value;
b69e47
-    slapi_unlock_mutex(counter->lock);
b69e47
-#else
b69e47
-#ifdef LINUX
b69e47
-/* Use our own inline assembly for an atomic get if
b69e47
- * the builtins aren't available. */
b69e47
-#if !HAVE_64BIT_ATOMIC_CAS_FUNC
b69e47
-    /*
b69e47
-     * %0 = counter->value
b69e47
-     * %1 = value
b69e47
-     */
b69e47
-    __asm__ __volatile__(
b69e47
-#ifdef CPU_x86
b69e47
-        /* Save the PIC register */
b69e47
-        " pushl %%ebx;"
b69e47
-#endif /* CPU_x86 */
b69e47
-        /* Put value of counter->value in EDX:EAX */
b69e47
-        "retryget: movl %0, %%eax;"
b69e47
-        " movl 4%0, %%edx;"
b69e47
-        /* Copy EDX:EAX to ECX:EBX */
b69e47
-        " movl %%eax, %%ebx;"
b69e47
-        " movl %%edx, %%ecx;"
b69e47
-        /* If EDX:EAX and counter->value are the same,
b69e47
-         * replace *ptr with ECX:EBX */
b69e47
-        " lock; cmpxchg8b %0;"
b69e47
-        " jnz retryget;"
b69e47
-        /* Put retrieved value into value */
b69e47
-        " movl %%ebx, %1;"
b69e47
-        " movl %%ecx, 4%1;"
b69e47
-#ifdef CPU_x86
b69e47
-        /* Restore the PIC register */
b69e47
-        " popl %%ebx"
b69e47
-#endif /* CPU_x86 */
b69e47
-        : "+o" (counter->value), "=m" (value)
b69e47
-        : 
b69e47
-#ifdef CPU_x86
b69e47
-        : "memory", "eax", "ecx", "edx", "cc");
b69e47
-#else
b69e47
-        : "memory", "eax", "ebx", "ecx", "edx", "cc");
b69e47
-#endif
b69e47
-#else
b69e47
-    while (1) {
b69e47
-        value = counter->value;
b69e47
-        if (__sync_bool_compare_and_swap(&(counter->value), value, value)) {
b69e47
-            break;
b69e47
-        }
b69e47
-    }
b69e47
-#endif /* CPU_x86 || !HAVE_DECL___SYNC_ADD_AND_FETCH */
b69e47
-#elif defined(SOLARIS)
b69e47
-    while (1) {
b69e47
-        value = counter->value;
b69e47
-        if (value == _sparcv9_AtomicSet(&(counter->value), value)) {
b69e47
-            break;
b69e47
-        }
b69e47
-    }
b69e47
-#elif defined(HPUX)
b69e47
+#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
+    value = __atomic_load_8(&(counter->value), __ATOMIC_SEQ_CST);
b69e47
+#else  /* HPUX */
b69e47
+#ifdef HPUX
b69e47
     do {
b69e47
         value = counter->value;
b69e47
         /* Put value in a register for cmpxchg to compare against */
b69e47
         _Asm_mov_to_ar(_AREG_CCV, value);
b69e47
     } while (value != _Asm_cmpxchg(_FASZ_D, _SEM_ACQ, &(counter->value), value, _LDHINT_NONE));
b69e47
-#endif
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
-
b69e47
-    return value;
b69e47
-}
b69e47
-
b69e47
-#ifdef ATOMIC_64BIT_OPERATIONS
b69e47
-#if defined(LINUX) && !HAVE_64BIT_ATOMIC_OP_FUNCS
b69e47
-/* On systems that don't have the 64-bit GCC atomic builtins, we need to
b69e47
- * implement our own atomic add and subtract functions using inline
b69e47
- * assembly code. */
b69e47
-PRUint64 __sync_add_and_fetch_8(PRUint64 *ptr, PRUint64 addval)
b69e47
-{
b69e47
-    PRUint64 retval = 0;
b69e47
-
b69e47
-    /*
b69e47
-     * %0 = *ptr
b69e47
-     * %1 = retval
b69e47
-     * %2 = addval
b69e47
-     */
b69e47
-    __asm__ __volatile__(
b69e47
-#ifdef CPU_x86
b69e47
-        /* Save the PIC register */
b69e47
-        " pushl %%ebx;"
b69e47
-#endif /* CPU_x86 */
b69e47
-        /* Put value of *ptr in EDX:EAX */
b69e47
-        "retryadd: movl %0, %%eax;"
b69e47
-        " movl 4%0, %%edx;"
b69e47
-        /* Put addval in ECX:EBX */
b69e47
-        " movl %2, %%ebx;"
b69e47
-        " movl 4+%2, %%ecx;"
b69e47
-        /* Add value from EDX:EAX to value in ECX:EBX */
b69e47
-        " addl %%eax, %%ebx;"
b69e47
-        " adcl %%edx, %%ecx;"
b69e47
-        /* If EDX:EAX and *ptr are the same, replace ptr with ECX:EBX */
b69e47
-        " lock; cmpxchg8b %0;"
b69e47
-        " jnz retryadd;"
b69e47
-        /* Put new value into retval */
b69e47
-        " movl %%ebx, %1;"
b69e47
-        " movl %%ecx, 4%1;"
b69e47
-#ifdef CPU_x86
b69e47
-        /* Restore the PIC register */
b69e47
-        " popl %%ebx"
b69e47
-#endif /* CPU_x86 */
b69e47
-        : "+o" (*ptr), "=m" (retval)
b69e47
-        : "m" (addval)
b69e47
-#ifdef CPU_x86
b69e47
-        : "memory", "eax", "ecx", "edx", "cc");
b69e47
 #else
b69e47
-        : "memory", "eax", "ebx", "ecx", "edx", "cc");
b69e47
+    pthread_mutex_lock(&(counter->_lock));
b69e47
+    value = counter->value;
b69e47
+    pthread_mutex_unlock(&(counter->_lock));
b69e47
 #endif
b69e47
-
b69e47
-    return retval;
b69e47
-}
b69e47
-
b69e47
-PRUint64 __sync_sub_and_fetch_8(PRUint64 *ptr, PRUint64 subval)
b69e47
-{
b69e47
-    PRUint64 retval = 0;
b69e47
-
b69e47
-    /*
b69e47
-     * %0 = *ptr
b69e47
-     * %1 = retval
b69e47
-     * %2 = subval
b69e47
-     */
b69e47
-    __asm__ __volatile__(
b69e47
-#ifdef CPU_x86
b69e47
-        /* Save the PIC register */
b69e47
-        " pushl %%ebx;"
b69e47
-#endif /* CPU_x86 */
b69e47
-        /* Put value of *ptr in EDX:EAX */
b69e47
-        "retrysub: movl %0, %%eax;"
b69e47
-        " movl 4%0, %%edx;"
b69e47
-        /* Copy EDX:EAX to ECX:EBX */
b69e47
-        " movl %%eax, %%ebx;"
b69e47
-        " movl %%edx, %%ecx;"
b69e47
-        /* Subtract subval from value in ECX:EBX */
b69e47
-        " subl %2, %%ebx;"
b69e47
-        " sbbl 4+%2, %%ecx;"
b69e47
-        /* If EDX:EAX and ptr are the same, replace *ptr with ECX:EBX */
b69e47
-        " lock; cmpxchg8b %0;"
b69e47
-        " jnz retrysub;"
b69e47
-        /* Put new value into retval */
b69e47
-        " movl %%ebx, %1;"
b69e47
-        " movl %%ecx, 4%1;"
b69e47
-#ifdef CPU_x86
b69e47
-        /* Restore the PIC register */
b69e47
-        " popl %%ebx"
b69e47
-#endif /* CPU_x86 */
b69e47
-        : "+o" (*ptr), "=m" (retval)
b69e47
-        : "m" (subval)
b69e47
-#ifdef CPU_x86 
b69e47
-        : "memory", "eax", "ecx", "edx", "cc");
b69e47
-#else
b69e47
-        : "memory", "eax", "ebx", "ecx", "edx", "cc");
b69e47
 #endif
b69e47
 
b69e47
-    return retval;
b69e47
+    return value;
b69e47
 }
b69e47
-#endif /* LINUX && !HAVE_64BIT_ATOMIC_OP_FUNCS */
b69e47
-#endif /* ATOMIC_64BIT_OPERATIONS */
b69e47
+
b69e47
diff --git a/ldap/servers/slapd/slapi_counter_sunos_sparcv9.S b/ldap/servers/slapd/slapi_counter_sunos_sparcv9.S
b69e47
deleted file mode 100644
b69e47
index e582c2a..0000000
b69e47
--- a/ldap/servers/slapd/slapi_counter_sunos_sparcv9.S
b69e47
+++ /dev/null
b69e47
@@ -1,105 +0,0 @@
b69e47
-! BEGIN COPYRIGHT BLOCK
b69e47
-! The Original Code is the Netscape Portable Runtime (NSPR).
b69e47
-!
b69e47
-! The Initial Developer of the Original Code is
b69e47
-! Netscape Communications Corporation.
b69e47
-! Portions created by the Initial Developer are Copyright (C) 1998-2000
b69e47
-! the Initial Developer. All Rights Reserved.
b69e47
-!
b69e47
-! The original code has been modified to support 64-bit atomic increments by
b69e47
-! Red Hat, Inc.  These portions are Copyright (C) 2008 Red Hat, Inc. All Rights
b69e47
-! reserved.
b69e47
-!
b69e47
-! License: GPL (version 3 or any later version).
b69e47
-! See LICENSE for details. 
b69e47
-! END COPYRIGHT BLOCK
b69e47
-!
b69e47
-
b69e47
-#define _ASM 1 /* force to set an assembler code macro _ASM */
b69e47
-#include <sys/asm_linkage.h>
b69e47
-
b69e47
-!  ======================================================================
b69e47
-!
b69e47
-!  Perform the sequence a = b atomically with respect to other
b69e47
-!  fetch-and-stores to location a in a wait-free fashion.
b69e47
-!
b69e47
-!  usage : old_val = PR_AtomicSet(address, newval)
b69e47
-!
b69e47
-!  -----------------------
b69e47
-!  Note on REGISTER USAGE:
b69e47
-!  as this is a LEAF procedure, a new stack frame is not created;
b69e47
-!  we use the caller's stack frame so what would normally be %i (input)
b69e47
-!  registers are actually %o (output registers).  Also, we must not
b69e47
-!  overwrite the contents of %l (local) registers as they are not
b69e47
-!  assumed to be volatile during calls.
b69e47
-!  -----------------------
b69e47
-
b69e47
-        ENTRY(_sparcv9_AtomicSet)            ! standard assembler/ELF prologue
b69e47
-
b69e47
-retryAS:
b69e47
-        ldx     [%o0], %o2              ! set o2 to the current value
b69e47
-        mov     %o1, %o3                ! set up the new value
b69e47
-        casx    [%o0], %o2, %o3         ! atomically set if o0 hasn't changed
b69e47
-        cmp     %o2, %o3                ! see if we set the value
b69e47
-        bne     retryAS                 ! if not, try again
b69e47
-        nop                             ! empty out the branch pipeline
b69e47
-        retl                            ! return back to the caller
b69e47
-        mov     %o3, %o0                ! set the return code to the prev value
b69e47
-
b69e47
-        SET_SIZE(_sparcv9_AtomicSet)    ! standard assembler/ELF epilogue
b69e47
-
b69e47
-!
b69e47
-!  end
b69e47
-!
b69e47
-!  ======================================================================
b69e47
-!
b69e47
-!  Perform the sequence a = a + b atomically with respect to other
b69e47
-!  fetch-and-adds to location a in a wait-free fashion.
b69e47
-!
b69e47
-!  usage : newval = PR_AtomicAdd(address, val)
b69e47
-!  return: the value after addition
b69e47
-!
b69e47
-        ENTRY(_sparcv9_AtomicAdd)      ! standard assembler/ELF prologue
b69e47
-
b69e47
-retryAA:
b69e47
-        ldx     [%o0], %o2              ! set o2 to the current value
b69e47
-        addx    %o2, %o1, %o3           ! calc the new value
b69e47
-        mov     %o3, %o4                ! save the return value
b69e47
-        casx    [%o0], %o2, %o3         ! atomically set if o0 hasn't changed
b69e47
-        cmp     %o2, %o3                ! see if we set the value
b69e47
-        bne     retryAA                 ! if not, try again
b69e47
-        nop                             ! empty out the branch pipeline
b69e47
-        retl                            ! return back to the caller
b69e47
-        mov     %o4, %o0                ! set the return code to the new value
b69e47
-
b69e47
-        SET_SIZE(_sparcv9_AtomicAdd)    ! standard assembler/ELF epilogue
b69e47
-
b69e47
-!
b69e47
-!  end
b69e47
-!
b69e47
-!  ======================================================================
b69e47
-!
b69e47
-!  Perform the sequence a = a - b atomically with respect to other
b69e47
-!  fetch-and-subs to location a in a wait-free fashion.
b69e47
-!
b69e47
-!  usage : newval = PR_AtomicSub(address, val)
b69e47
-!  return: the value after addition
b69e47
-!
b69e47
-        ENTRY(_sparcv9_AtomicSub)      ! standard assembler/ELF prologue
b69e47
-
b69e47
-retryAU:
b69e47
-        ldx     [%o0], %o2              ! set o2 to the current value
b69e47
-        subx    %o2, %o1, %o3           ! calc the new value
b69e47
-        mov     %o3, %o4                ! save the return value
b69e47
-        casx    [%o0], %o2, %o3         ! atomically set if o0 hasn't changed
b69e47
-        cmp     %o2, %o3                ! see if we set the value
b69e47
-        bne     retryAU                 ! if not, try again
b69e47
-        nop                             ! empty out the branch pipeline
b69e47
-        retl                            ! return back to the caller
b69e47
-        mov     %o4, %o0                ! set the return code to the new value
b69e47
-
b69e47
-        SET_SIZE(_sparcv9_AtomicSub)    ! standard assembler/ELF epilogue
b69e47
-
b69e47
-!
b69e47
-!  end
b69e47
-!
b69e47
diff --git a/ldap/servers/slapd/snmp_collator.c b/ldap/servers/slapd/snmp_collator.c
b69e47
index 841922f..b0c873d 100644
b69e47
--- a/ldap/servers/slapd/snmp_collator.c
b69e47
+++ b/ldap/servers/slapd/snmp_collator.c
b69e47
@@ -711,7 +711,7 @@ static void
b69e47
 add_counter_to_value(Slapi_Entry *e, const char *type, PRUint64 countervalue)
b69e47
 {
b69e47
 	char value[40];
b69e47
-	PR_snprintf(value,sizeof(value),"%" NSPRIu64, countervalue);
b69e47
+	snprintf(value,sizeof(value),"%" NSPRIu64, countervalue);
b69e47
 	slapi_entry_attr_set_charptr( e, type, value);
b69e47
 }
b69e47
 
b69e47
diff --git a/test/libslapd/test.c b/test/libslapd/test.c
b69e47
index 37d5543..6e1171a 100644
b69e47
--- a/test/libslapd/test.c
b69e47
+++ b/test/libslapd/test.c
b69e47
@@ -24,6 +24,8 @@ run_libslapd_tests (void) {
b69e47
         cmocka_unit_test(test_libslapd_pblock_v3c_original_target_dn),
b69e47
         cmocka_unit_test(test_libslapd_pblock_v3c_target_uniqueid),
b69e47
         cmocka_unit_test(test_libslapd_operation_v3c_target_spec),
b69e47
+        cmocka_unit_test(test_libslapd_counters_atomic_usage),
b69e47
+        cmocka_unit_test(test_libslapd_counters_atomic_overflow),
b69e47
     };
b69e47
     return cmocka_run_group_tests(tests, NULL, NULL);
b69e47
 }
b69e47
diff --git a/test/test_slapd.h b/test/test_slapd.h
b69e47
index 02eefdd..b8f1aba 100644
b69e47
--- a/test/test_slapd.h
b69e47
+++ b/test/test_slapd.h
b69e47
@@ -37,4 +37,8 @@ void test_libslapd_pblock_v3c_target_uniqueid(void **state);
b69e47
 /* libslapd-operation-v3_compat */
b69e47
 void test_libslapd_operation_v3c_target_spec(void **state);
b69e47
 
b69e47
+/* libslapd-counters-atomic */
b69e47
+
b69e47
+void test_libslapd_counters_atomic_usage(void **state);
b69e47
+void test_libslapd_counters_atomic_overflow(void **state);
b69e47
 
b69e47
-- 
b69e47
2.9.3
b69e47