Import BSDDB 4.7.25 (as of svn r89086)

This commit is contained in:
Zachary Ware
2017-09-04 13:40:25 -05:00
parent 4b29e0458f
commit 8f590873d0
4781 changed files with 2241032 additions and 6 deletions

738
xa/xa.c Normal file
View File

@@ -0,0 +1,738 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1998,2008 Oracle. All rights reserved.
*
* $Id: xa.c 63573 2008-05-23 21:43:21Z trent.nelson $
*/
#include "db_config.h"
#include "db_int.h"
#include "dbinc/txn.h"
static int __db_xa_close __P((char *, int, long));
static int __db_xa_commit __P((XID *, int, long));
static int __db_xa_complete __P((int *, int *, int, long));
static int __db_xa_end __P((XID *, int, long));
static int __db_xa_forget __P((XID *, int, long));
static int __db_xa_open __P((char *, int, long));
static int __db_xa_prepare __P((XID *, int, long));
static int __db_xa_recover __P((XID *, long, int, long));
static int __db_xa_rollback __P((XID *, int, long));
static int __db_xa_start __P((XID *, int, long));
static int __xa_txn_continue __P((ENV *, DB_TXN *, TXN_DETAIL *));
static int __xa_put_txn __P((ENV *, DB_TXN *));
static int __xa_txn_get_prepared
__P((ENV *, XID *, DB_PREPLIST *, long, long *, u_int32_t));
/*
* Possible flag values:
* Dynamic registration 0 => no dynamic registration
* TMREGISTER => dynamic registration
* Asynchronous operation 0 => no support for asynchrony
* TMUSEASYNC => async support
* Migration support 0 => migration of transactions across
* threads is possible
* TMNOMIGRATE => no migration across threads
*/
const struct xa_switch_t db_xa_switch = {
"Berkeley DB", /* name[RMNAMESZ] */
TMNOMIGRATE, /* flags */
0, /* version */
__db_xa_open, /* xa_open_entry */
__db_xa_close, /* xa_close_entry */
__db_xa_start, /* xa_start_entry */
__db_xa_end, /* xa_end_entry */
__db_xa_rollback, /* xa_rollback_entry */
__db_xa_prepare, /* xa_prepare_entry */
__db_xa_commit, /* xa_commit_entry */
__db_xa_recover, /* xa_recover_entry */
__db_xa_forget, /* xa_forget_entry */
__db_xa_complete /* xa_complete_entry */
};
/*
* If you want your XA server to be multi-threaded, then you must (at least)
* edit this file and change:
* #undef XA_MULTI_THREAD
* to:
* #define XA_MULTI_THREAD 1
*/
#undef XA_MULTI_THREAD
/*
* __xa_get_txn --
* Return a pointer to the current transaction structure for the
* designated environment. If do_init is non-zero and we don't find a
* structure for the current thread, then create a new structure for it.
*
* PUBLIC: int __xa_get_txn __P((ENV *, DB_TXN **, int));
*/
int
__xa_get_txn(env, txnp, do_init)
ENV *env;
DB_TXN **txnp;
int do_init;
{
#ifdef XA_MULTI_THREAD
DB_TXN *t;
DB_TXNMGR *mgr;
TXN_DETAIL *td;
db_threadid_t tid;
pid_t pid;
#endif
int ret;
ret = 0;
#ifdef XA_MULTI_THREAD
env->thread_id(env, &pid, &tid);
*txnp = NULL;
DB_ASSERT(env, env->tx_handle != NULL);
mgr = env->tx_handle;
/*
* We need to protect the xa_txn linked list, but the environment does
* not have a mutex. Since we are in an XA transaction environment,
* we know there is a transaction structure, we can use its mutex.
*/
MUTEX_LOCK(env, mgr->mutex);
TAILQ_FOREACH(t, &env->xa_txn, xalinks) {
td = t->td;
if (td->pid != pid)
continue;
#ifdef HAVE_SIMPLE_THREAD_TYPE
if (t->tid == tid) {
*txnp = t;
break;
}
#else
if (memcmp(&t->tid, &tid, sizeof(tid)) == 0) {
*txnp = t;
break;
}
#endif
}
MUTEX_UNLOCK(env, mgr->mutex);
if (*txnp == NULL) {
if (!do_init)
ret = EINVAL;
else if ((ret =
__os_malloc(env, sizeof(DB_TXN), txnp)) == 0) {
(*txnp)->tid = tid;
MUTEX_LOCK(env, mgr->mutex);
TAILQ_INSERT_HEAD(&env->xa_txn, *txnp, xalinks);
MUTEX_UNLOCK(env, mgr->mutex);
}
}
#else
COMPQUIET(do_init, 0);
*txnp = TAILQ_FIRST(&env->xa_txn);
if (*txnp == NULL &&
(ret = __os_calloc(env, 1, sizeof(DB_TXN), txnp)) == 0) {
(*txnp)->txnid = TXN_INVALID;
TAILQ_INSERT_HEAD(&env->xa_txn, *txnp, xalinks);
}
#endif
return (ret);
}
static int
__xa_put_txn(env, txnp)
ENV *env;
DB_TXN *txnp;
{
#ifdef XA_MULTI_THREAD
DB_TXNMGR *mgr;
mgr = env->tx_handle;
MUTEX_LOCK(env, mgr->mutex);
TAILQ_REMOVE(&env->xa_txn, txnp, xalinks);
MUTEX_UNLOCK(env, mgr->mutex);
__os_free(env, txnp);
#else
COMPQUIET(env, NULL);
txnp->txnid = TXN_INVALID;
#endif
return (0);
}
/*
* __xa_txn_continue --
* This call wraps the __txn_continue function with the environment
* wrapper, so we can properly failchk environments running XA.
*/
static int
__xa_txn_continue(env, txn, td)
ENV *env;
DB_TXN *txn;
TXN_DETAIL *td;
{
DB_THREAD_INFO *ip;
int ret;
ENV_ENTER(env, ip);
ret = __txn_continue(env, txn, td);
ENV_LEAVE(env, ip);
return (ret);
}
/*
* __xa_txn_get_prepared --
* Wrap the internal call to __txn_get_prepared so that we can call
* it from XA. XA routines are not considered to be running "inside" the
* library, so when they make calls into the library, we need to use interface
* routines that support replication and failchk. Since __txn_get_prepared
* is internal, there is no user API to call, so we use this wrapper routine
* instead.
*/
static int
__xa_txn_get_prepared(env, xids, txns, count, retp, flags)
ENV *env;
XID *xids;
DB_PREPLIST *txns;
long count; /* This is long for XA compatibility. */
long *retp;
u_int32_t flags;
{
DB_THREAD_INFO *ip;
int ret;
ENV_ENTER(env, ip);
REPLICATION_WRAP(env,
(__txn_get_prepared(env, xids, txns, count, retp, flags)), 0, ret);
ENV_LEAVE(env, ip);
return (ret);
}
#ifdef XA_MULTI_THREAD
#define XA_FLAGS \
(DB_CREATE | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | \
DB_INIT_TXN | DB_THREAD)
#else
#define XA_FLAGS \
(DB_CREATE | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | \
DB_INIT_TXN)
#endif
/*
* __db_xa_open --
* The open call in the XA protocol. The rmid field is an id number
* that the TM assigned us and will pass us on every xa call. We need to
* map that rmid number into a env structure that we create during
* initialization. Since this id number is thread specific, we do not
* need to store it in shared memory. The file xa_map.c implements all
* such xa->db mappings.
* The xa_info field is instance specific information. We require
* that the value of DB_HOME be passed in xa_info. Since xa_info is the
* only thing that we get to pass to db_env_create, any config information
* will have to be done via a config file instead of via the db_env_create
* call.
*/
static int
__db_xa_open(xa_info, rmid, arg_flags)
char *xa_info;
int rmid;
long arg_flags;
{
DB_ENV *dbenv;
ENV *env;
u_long flags;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (flags != TMNOFLAGS)
return (XAER_INVAL);
/* Verify if we already have this environment open. */
if (__db_rmid_to_env(rmid, &env) == 0)
return (XA_OK);
/* Open a new environment. */
if (db_env_create(&dbenv, 0) != 0)
return (XAER_RMERR);
env = dbenv->env;
if (dbenv->open(dbenv, xa_info, XA_FLAGS, 0) != 0)
goto err;
/* Create the mapping. */
if (__db_map_rmid(rmid, env) != 0)
goto err;
/* Allocate space for the current transaction. */
TAILQ_INIT(&env->xa_txn);
return (XA_OK);
err: (void)dbenv->close(dbenv, 0);
return (XAER_RMERR);
}
/*
* __db_xa_close --
* The close call of the XA protocol. The only trickiness here
* is that if there are any active transactions, we must fail. It is
* *not* an error to call close on an environment that has already been
* closed (I am interpreting that to mean it's OK to call close on an
* environment that has never been opened).
*/
static int
__db_xa_close(xa_info, rmid, arg_flags)
char *xa_info;
int rmid;
long arg_flags;
{
DB_TXN *t;
ENV *env;
int ret, t_ret;
u_long flags;
COMPQUIET(xa_info, NULL);
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (flags != TMNOFLAGS)
return (XAER_INVAL);
/* If the environment is closed, then we're done. */
if (__db_rmid_to_env(rmid, &env) != 0)
return (XA_OK);
/* Check if there are any pending transactions. */
if ((t = TAILQ_FIRST(&env->xa_txn)) != NULL &&
t->txnid != TXN_INVALID)
return (XAER_PROTO);
/* Destroy the mapping. */
ret = __db_unmap_rmid(rmid);
/* Discard space held for the current transaction. */
while ((t = TAILQ_FIRST(&env->xa_txn)) != NULL) {
TAILQ_REMOVE(&env->xa_txn, t, xalinks);
__os_free(env, t);
}
/* Close the environment. */
if ((t_ret = env->dbenv->close(env->dbenv, 0)) != 0 && ret == 0)
ret = t_ret;
return (ret == 0 ? XA_OK : XAER_RMERR);
}
/*
* __db_xa_start --
* Begin a transaction for the current resource manager.
*/
static int
__db_xa_start(xid, rmid, arg_flags)
XID *xid;
int rmid;
long arg_flags;
{
DB_TXN *txnp;
ENV *env;
TXN_DETAIL *td;
roff_t off;
u_long flags;
int is_known;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
#define OK_FLAGS (TMJOIN | TMRESUME | TMNOWAIT | TMASYNC | TMNOFLAGS)
if (LF_ISSET(~OK_FLAGS))
return (XAER_INVAL);
if (LF_ISSET(TMJOIN) && LF_ISSET(TMRESUME))
return (XAER_INVAL);
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
is_known = __db_xid_to_txn(env, xid, &off) == 0;
if (is_known && !LF_ISSET(TMRESUME) && !LF_ISSET(TMJOIN))
return (XAER_DUPID);
if (!is_known && LF_ISSET(TMRESUME | TMJOIN))
return (XAER_NOTA);
/*
* This can't block, so we can ignore TMNOWAIT.
*
* Other error conditions: RMERR, RMFAIL, OUTSIDE, PROTO, RB*
*/
if (is_known) {
td = R_ADDR(&env->tx_handle->reginfo, off);
if (td->xa_status == TXN_XA_SUSPENDED &&
!LF_ISSET(TMRESUME | TMJOIN))
return (XAER_PROTO);
if (td->xa_status == TXN_XA_DEADLOCKED)
return (XA_RBDEADLOCK);
if (td->xa_status == TXN_XA_ABORTED)
return (XA_RBOTHER);
/* Now, fill in the global transaction structure. */
if (__xa_get_txn(env, &txnp, 1) != 0)
return (XAER_RMERR);
if (__xa_txn_continue(env, txnp, td) != 0)
return (XAER_RMERR);
td->xa_status = TXN_XA_STARTED;
} else {
if (__xa_get_txn(env, &txnp, 1) != 0)
return (XAER_RMERR);
if (__txn_xa_begin(env, txnp))
return (XAER_RMERR);
(void)__db_map_xid(env, xid, txnp->td);
td = txnp->td;
td->xa_status = TXN_XA_STARTED;
}
return (XA_OK);
}
/*
* __db_xa_end --
* Disassociate the current transaction from the current process.
*/
static int
__db_xa_end(xid, rmid, flags)
XID *xid;
int rmid;
long flags;
{
DB_TXN *txn;
ENV *env;
TXN_DETAIL *td;
roff_t off;
if (flags != TMNOFLAGS && !LF_ISSET(TMSUSPEND | TMSUCCESS | TMFAIL))
return (XAER_INVAL);
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
if (__db_xid_to_txn(env, xid, &off) != 0)
return (XAER_NOTA);
if (__xa_get_txn(env, &txn, 0) != 0)
return (XAER_RMERR);
td = R_ADDR(&env->tx_handle->reginfo, off);
if (td != txn->td)
return (XAER_PROTO);
if (td->xa_status == TXN_XA_DEADLOCKED)
return (XA_RBDEADLOCK);
if (td->status == TXN_ABORTED)
return (XA_RBOTHER);
if (td->xa_status != TXN_XA_STARTED)
return (XAER_PROTO);
/*
* If we ever support XA migration, we cannot keep SUSPEND/END
* status in the shared region; it would have to be process local.
*/
if (LF_ISSET(TMSUSPEND))
td->xa_status = TXN_XA_SUSPENDED;
else
td->xa_status = TXN_XA_ENDED;
/*
* XXX
* This can fail in XA_MULTI_THREAD mode.
*/
(void)__xa_put_txn(env, txn);
return (XA_OK);
}
/*
* __db_xa_prepare --
* Sync the log to disk so we can guarantee recoverability.
*/
static int
__db_xa_prepare(xid, rmid, arg_flags)
XID *xid;
int rmid;
long arg_flags;
{
DB_TXN *txnp;
ENV *env;
TXN_DETAIL *td;
roff_t off;
u_long flags;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (flags != TMNOFLAGS)
return (XAER_INVAL);
/*
* We need to know if we've ever called prepare on this.
* As part of the prepare, we set the xa_status field to
* reflect that fact that prepare has been called, and if
* it's ever called again, it's an error.
*/
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
if (__db_xid_to_txn(env, xid, &off) != 0)
return (XAER_NOTA);
td = R_ADDR(&env->tx_handle->reginfo, off);
if (td->xa_status == TXN_XA_DEADLOCKED)
return (XA_RBDEADLOCK);
if (td->xa_status != TXN_XA_ENDED && td->xa_status != TXN_XA_SUSPENDED)
return (XAER_PROTO);
/* Now, fill in the global transaction structure. */
if (__xa_get_txn(env, &txnp, 0) != 0)
return (XAER_PROTO);
if (__xa_txn_continue(env, txnp, td) != 0)
return (XAER_RMERR);
if (txnp->prepare(txnp, (u_int8_t *)xid->data) != 0)
return (XAER_RMERR);
td->xa_status = TXN_XA_PREPARED;
/*
* XXX
* This can fail in XA_MULTI_THREAD mode.
*/
(void)__xa_put_txn(env, txnp);
return (XA_OK);
}
/*
* __db_xa_commit --
* Commit the transaction
*/
static int
__db_xa_commit(xid, rmid, arg_flags)
XID *xid;
int rmid;
long arg_flags;
{
DB_TXN *txnp;
ENV *env;
TXN_DETAIL *td;
roff_t off;
u_long flags;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
#undef OK_FLAGS
#define OK_FLAGS (TMNOFLAGS | TMNOWAIT | TMONEPHASE)
if (LF_ISSET(~OK_FLAGS))
return (XAER_INVAL);
/*
* We need to know if we've ever called prepare on this.
* We can verify this by examining the xa_status field.
*/
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
if (__db_xid_to_txn(env, xid, &off) != 0)
return (XAER_NOTA);
td = R_ADDR(&env->tx_handle->reginfo, off);
if (td->xa_status == TXN_XA_DEADLOCKED)
return (XA_RBDEADLOCK);
if (td->xa_status == TXN_XA_ABORTED)
return (XA_RBOTHER);
if (LF_ISSET(TMONEPHASE) &&
td->xa_status != TXN_XA_ENDED && td->xa_status != TXN_XA_SUSPENDED)
return (XAER_PROTO);
if (!LF_ISSET(TMONEPHASE) && td->xa_status != TXN_XA_PREPARED)
return (XAER_PROTO);
/* Now, fill in the global transaction structure. */
if (__xa_get_txn(env, &txnp, 0) != 0)
return (XAER_RMERR);
if (__xa_txn_continue(env, txnp, td) != 0)
return (XAER_RMERR);
if (txnp->commit(txnp, 0) != 0)
return (XAER_RMERR);
/*
* XXX
* This can fail in XA_MULTI_THREAD mode.
*/
(void)__xa_put_txn(env, txnp);
return (XA_OK);
}
/*
* __db_xa_recover --
* Returns a list of prepared and heuristically completed transactions.
*
* The return value is the number of xids placed into the xid array (less
* than or equal to the count parameter). The flags are going to indicate
* whether we are starting a scan or continuing one.
*/
static int
__db_xa_recover(xids, count, rmid, flags)
XID *xids;
long count, flags;
int rmid;
{
ENV *env;
u_int32_t newflags;
long rval;
/* If the environment is closed, then we're done. */
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
if (LF_ISSET(TMSTARTRSCAN))
newflags = DB_FIRST;
else if (LF_ISSET(TMENDRSCAN))
newflags = DB_LAST;
else
newflags = DB_NEXT;
rval = 0;
if (__xa_txn_get_prepared(env,
xids, NULL, count, &rval, newflags) != 0)
return (XAER_RMERR);
else
return (rval);
}
/*
* __db_xa_rollback
* Abort an XA transaction.
*/
static int
__db_xa_rollback(xid, rmid, arg_flags)
XID *xid;
int rmid;
long arg_flags;
{
DB_TXN *txnp;
ENV *env;
TXN_DETAIL *td;
roff_t off;
u_long flags;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (flags != TMNOFLAGS)
return (XAER_INVAL);
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
if (__db_xid_to_txn(env, xid, &off) != 0)
return (XAER_NOTA);
td = R_ADDR(&env->tx_handle->reginfo, off);
if (td->xa_status == TXN_XA_DEADLOCKED)
return (XA_RBDEADLOCK);
if (td->xa_status == TXN_XA_ABORTED)
return (XA_RBOTHER);
if (td->xa_status != TXN_XA_ENDED &&
td->xa_status != TXN_XA_SUSPENDED &&
td->xa_status != TXN_XA_PREPARED)
return (XAER_PROTO);
/* Now, fill in the global transaction structure. */
if (__xa_get_txn(env, &txnp, 0) != 0)
return (XAER_RMERR);
if (__xa_txn_continue(env, txnp, td) != 0)
return (XAER_RMERR);
if (txnp->abort(txnp) != 0)
return (XAER_RMERR);
/*
* XXX
* This can fail in XA_MULTI_THREAD mode.
*/
(void)__xa_put_txn(env, txnp);
return (XA_OK);
}
/*
* __db_xa_forget --
* Forget about an XID for a transaction that was heuristically
* completed. Since we do not heuristically complete anything, I
* don't think we have to do anything here, but we should make sure
* that we reclaim the slots in the txnid table.
*/
static int
__db_xa_forget(xid, rmid, arg_flags)
XID *xid;
int rmid;
long arg_flags;
{
ENV *env;
roff_t off;
u_long flags;
flags = (u_long)arg_flags; /* Conversion for bit operations. */
if (LF_ISSET(TMASYNC))
return (XAER_ASYNC);
if (flags != TMNOFLAGS)
return (XAER_INVAL);
if (__db_rmid_to_env(rmid, &env) != 0)
return (XAER_PROTO);
/*
* If mapping is gone, then we're done.
*/
if (__db_xid_to_txn(env, xid, &off) != 0)
return (XA_OK);
__db_unmap_xid(env, xid, off);
/* No fatal value that would require an XAER_RMFAIL. */
return (XA_OK);
}
/*
* __db_xa_complete --
* Used to wait for asynchronous operations to complete. Since we're
* not doing asynch, this is an invalid operation.
*/
static int
__db_xa_complete(handle, retval, rmid, flags)
int *handle, *retval, rmid;
long flags;
{
COMPQUIET(handle, NULL);
COMPQUIET(retval, NULL);
COMPQUIET(rmid, 0);
COMPQUIET(flags, 0);
return (XAER_INVAL);
}

238
xa/xa_db.c Normal file
View File

@@ -0,0 +1,238 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1998,2008 Oracle. All rights reserved.
*
* $Id: xa_db.c 63573 2008-05-23 21:43:21Z trent.nelson $
*/
#include "db_config.h"
#include "db_int.h"
#include "dbinc/txn.h"
static int __xa_close __P((DB *, u_int32_t));
static int __xa_cursor __P((DB *, DB_TXN *, DBC **, u_int32_t));
static int __xa_del __P((DB *, DB_TXN *, DBT *, u_int32_t));
static int __xa_get __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
static int __xa_open __P((DB *, DB_TXN *,
const char *, const char *, DBTYPE, u_int32_t, int));
static int __xa_put __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
static int __xa_set_txn __P((DB *, DB_TXN **, int));
static int __xa_truncate __P((DB *, DB_TXN *, u_int32_t *, u_int32_t));
typedef struct __xa_methods {
int (*close) __P((DB *, u_int32_t));
int (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
int (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
int (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
int (*open) __P((DB *, DB_TXN *,
const char *, const char *, DBTYPE, u_int32_t, int));
int (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
int (*truncate) __P((DB *, DB_TXN *, u_int32_t *, u_int32_t));
} XA_METHODS;
/*
* __xa_set_txn --
* Find a transaction handle.
*/
static int
__xa_set_txn(dbp, txnpp, no_xa_txn)
DB *dbp;
DB_TXN **txnpp;
int no_xa_txn;
{
ENV *env;
int ret;
env = dbp->env;
/*
* It doesn't make sense for a server to specify a DB_TXN handle.
* As the server can't know if other operations it has done have
* committed/aborted, it can self-deadlock. If the server wants
* other transactions, it can open other DB handles and use them.
* Disallow specified DB_TXN handles.
*/
if (*txnpp != NULL) {
__db_errx(env,
"transaction handles should not be directly specified to XA interfaces");
return (EINVAL);
}
/* See if the TM has declared a transaction. */
if ((ret = __xa_get_txn(env, txnpp, 0)) != 0)
return (ret);
if ((*txnpp)->txnid != TXN_INVALID)
return (0);
/*
* We may be opening databases in the server initialization routine.
* In that case, it's reasonable not to have an XA transaction. It's
* also reasonable to open a database as part of an XA transaction,
* allow both.
*/
if (no_xa_txn) {
*txnpp = NULL;
return (0);
}
__db_errx(env, "no XA transaction declared");
return (EINVAL);
}
/*
* __db_xa_create --
* DB XA constructor.
*
* PUBLIC: int __db_xa_create __P((DB *));
*/
int
__db_xa_create(dbp)
DB *dbp;
{
XA_METHODS *xam;
int ret;
/*
* Allocate the XA internal structure, and wrap the open and close
* calls.
*/
if ((ret = __os_calloc(dbp->env, 1, sizeof(XA_METHODS), &xam)) != 0)
return (ret);
dbp->xa_internal = xam;
xam->open = dbp->open;
dbp->open = __xa_open;
xam->close = dbp->close;
dbp->close = __xa_close;
return (0);
}
/*
* __xa_open --
* XA open wrapper.
*/
static int
__xa_open(dbp, txn, name, subdb, type, flags, mode)
DB *dbp;
DB_TXN *txn;
const char *name, *subdb;
DBTYPE type;
u_int32_t flags;
int mode;
{
XA_METHODS *xam;
int ret;
xam = (XA_METHODS *)dbp->xa_internal;
if ((ret =
__xa_set_txn(dbp, &txn, LF_ISSET(DB_AUTO_COMMIT) ? 1 : 0)) != 0)
return (ret);
if ((ret = xam->open(dbp, txn, name, subdb, type, flags, mode)) != 0)
return (ret);
/* Wrap any DB handle method that takes a TXN ID as an argument. */
xam->cursor = dbp->cursor;
xam->del = dbp->del;
xam->get = dbp->get;
xam->put = dbp->put;
xam->truncate = dbp->truncate;
dbp->cursor = __xa_cursor;
dbp->del = __xa_del;
dbp->get = __xa_get;
dbp->put = __xa_put;
dbp->truncate = __xa_truncate;
return (0);
}
static int
__xa_cursor(dbp, txn, dbcp, flags)
DB *dbp;
DB_TXN *txn;
DBC **dbcp;
u_int32_t flags;
{
int ret;
if ((ret = __xa_set_txn(dbp, &txn, 0)) != 0)
return (ret);
return (((XA_METHODS *)
dbp->xa_internal)->cursor(dbp, txn, dbcp, flags));
}
static int
__xa_del(dbp, txn, key, flags)
DB *dbp;
DB_TXN *txn;
DBT *key;
u_int32_t flags;
{
int ret;
if ((ret = __xa_set_txn(dbp, &txn, 0)) != 0)
return (ret);
return (((XA_METHODS *)dbp->xa_internal)->del(dbp, txn, key, flags));
}
static int
__xa_close(dbp, flags)
DB *dbp;
u_int32_t flags;
{
int (*real_close) __P((DB *, u_int32_t));
real_close = ((XA_METHODS *)dbp->xa_internal)->close;
__os_free(dbp->env, dbp->xa_internal);
dbp->xa_internal = NULL;
return (real_close(dbp, flags));
}
static int
__xa_get(dbp, txn, key, data, flags)
DB *dbp;
DB_TXN *txn;
DBT *key, *data;
u_int32_t flags;
{
int ret;
if ((ret = __xa_set_txn(dbp, &txn, 0)) != 0)
return (ret);
return (((XA_METHODS *)
dbp->xa_internal)->get(dbp, txn, key, data, flags));
}
static int
__xa_put(dbp, txn, key, data, flags)
DB *dbp;
DB_TXN *txn;
DBT *key, *data;
u_int32_t flags;
{
int ret;
if ((ret = __xa_set_txn(dbp, &txn, 0)) != 0)
return (ret);
return (((XA_METHODS *)
dbp->xa_internal)->put(dbp, txn, key, data, flags));
}
static int
__xa_truncate(dbp, txn, countp, flags)
DB *dbp;
DB_TXN *txn;
u_int32_t *countp, flags;
{
int ret;
if ((ret = __xa_set_txn(dbp, &txn, 0)) != 0)
return (ret);
return (((XA_METHODS *)
dbp->xa_internal)->truncate(dbp, txn, countp, flags));
}

153
xa/xa_map.c Normal file
View File

@@ -0,0 +1,153 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996,2008 Oracle. All rights reserved.
*
* $Id: xa_map.c 63573 2008-05-23 21:43:21Z trent.nelson $
*/
#include "db_config.h"
#include "db_int.h"
#include "dbinc/txn.h"
/*
* This file contains all the mapping information that we need to support
* the DB/XA interface.
*/
/*
* __db_rmid_to_env
* Return the environment associated with a given XA rmid.
*
* PUBLIC: int __db_rmid_to_env __P((int, ENV **));
*/
int
__db_rmid_to_env(rmid, envp)
int rmid;
ENV **envp;
{
ENV *env;
env = TAILQ_FIRST(&DB_GLOBAL(envq));
if (env != NULL && env->xa_rmid == rmid) {
*envp = env;
return (0);
}
/*
* When we map an rmid, move that environment to be the first one in
* the list of environments, so we acquire the correct environment
* in DB->open.
*/
for (; env != NULL; env = TAILQ_NEXT(env, links))
if (env->xa_rmid == rmid) {
TAILQ_REMOVE(&DB_GLOBAL(envq), env, links);
TAILQ_INSERT_HEAD(&DB_GLOBAL(envq), env, links);
*envp = env;
return (0);
}
return (1);
}
/*
* __db_xid_to_txn
* Return the txn that corresponds to this XID.
*
* PUBLIC: int __db_xid_to_txn __P((ENV *, XID *, roff_t *));
*/
int
__db_xid_to_txn(env, xid, offp)
ENV *env;
XID *xid;
roff_t *offp;
{
struct __txn_detail *td;
return (__txn_map_gid(env, (u_int8_t *)xid->data, &td, offp));
}
/*
* __db_map_rmid
* Create a mapping between the specified rmid and environment.
*
* PUBLIC: int __db_map_rmid __P((int, ENV *));
*/
int
__db_map_rmid(rmid, env)
int rmid;
ENV *env;
{
env->xa_rmid = rmid;
TAILQ_INSERT_TAIL(&DB_GLOBAL(envq), env, links);
return (0);
}
/*
* __db_unmap_rmid
* Destroy the mapping for the given rmid.
*
* PUBLIC: int __db_unmap_rmid __P((int));
*/
int
__db_unmap_rmid(rmid)
int rmid;
{
ENV *e;
for (e = TAILQ_FIRST(&DB_GLOBAL(envq));
e->xa_rmid != rmid;
e = TAILQ_NEXT(e, links))
;
if (e == NULL)
return (EINVAL);
TAILQ_REMOVE(&DB_GLOBAL(envq), e, links);
return (0);
}
/*
* __db_map_xid
* Create a mapping between this XID and the transaction
* "td" in the shared region.
*
* PUBLIC: int __db_map_xid __P((ENV *, XID *, TXN_DETAIL *));
*/
int
__db_map_xid(env, xid, td)
ENV *env;
XID *xid;
TXN_DETAIL *td;
{
TXN_SYSTEM_LOCK(env);
memcpy(td->xid, xid->data, XIDDATASIZE);
td->bqual = (u_int32_t)xid->bqual_length;
td->gtrid = (u_int32_t)xid->gtrid_length;
td->format = (int32_t)xid->formatID;
TXN_SYSTEM_UNLOCK(env);
return (0);
}
/*
* __db_unmap_xid
* Destroy the mapping for the specified XID.
*
* PUBLIC: void __db_unmap_xid __P((ENV *, XID *, size_t));
*/
void
__db_unmap_xid(env, xid, off)
ENV *env;
XID *xid;
size_t off;
{
TXN_DETAIL *td;
COMPQUIET(xid, NULL);
td = R_ADDR(&env->tx_handle->reginfo, off);
memset(td->xid, 0, sizeof(td->xid));
}

38
xa/xa_stub.c Normal file
View File

@@ -0,0 +1,38 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996,2008 Oracle. All rights reserved.
*
* $Id: xa_stub.c 63573 2008-05-23 21:43:21Z trent.nelson $
*/
#include "db_config.h"
#include "db_int.h"
#include "dbinc/txn.h"
/*
* If the library wasn't compiled with XA support, various routines
* aren't available. Stub them here, returning an appropriate error.
*/
static int __db_noxa __P((DB_ENV *));
/*
* __db_noxa --
* Error when a Berkeley DB build doesn't include XA support.
*/
static int
__db_noxa(dbenv)
DB_ENV *dbenv;
{
__db_errx(dbenv->env,
"library build did not include support for XA");
return (DB_OPNOTSUP);
}
int
__db_xa_create(dbp)
DB *dbp;
{
return (__db_noxa(dbp->dbenv));
}