#include "db_config.h"
#include "db_int.h"
#include "dbinc/db_page.h"
#include "dbinc/fop.h"
#include "dbinc/btree.h"
#include "dbinc/hash.h"
#include "dbinc/lock.h"
#include "dbinc/mp.h"
#include "dbinc/txn.h"
static int __db_dbtxn_remove __P((DB *,
DB_THREAD_INFO *, DB_TXN *, const char *, const char *));
static int __db_subdb_remove __P((DB *,
DB_THREAD_INFO *, DB_TXN *, const char *, const char *, u_int32_t));
int
__env_dbremove_pp(dbenv, txn, name, subdb, flags)
DB_ENV *dbenv;
DB_TXN *txn;
const char *name, *subdb;
u_int32_t flags;
{
DB *dbp;
DB_THREAD_INFO *ip;
ENV *env;
int handle_check, ret, t_ret, txn_local;
dbp = NULL;
env = dbenv->env;
txn_local = 0;
handle_check = 0;
ENV_ILLEGAL_BEFORE_OPEN(env, "DB_ENV->dbremove");
if ((ret = __db_fchk(env, "DB->remove", flags,
DB_AUTO_COMMIT | DB_LOG_NO_DATA |
DB_NOSYNC | DB_TXN_NOT_DURABLE)) != 0)
return (ret);
ENV_ENTER(env, ip);
XA_NO_TXN(ip, ret);
if (ret != 0)
goto err;
handle_check = IS_ENV_REPLICATED(env);
if (handle_check && (ret = __env_rep_enter(env, 1)) != 0) {
handle_check = 0;
goto err;
}
if (IS_ENV_AUTO_COMMIT(env, txn, flags)) {
if ((ret = __db_txn_auto_init(env, ip, &txn)) != 0)
goto err;
txn_local = 1;
} else if (txn != NULL && !TXN_ON(env) &&
(!CDB_LOCKING(env) || !F_ISSET(txn, TXN_FAMILY))) {
ret = __db_not_txn_env(env);
goto err;
} else if (txn != NULL && LF_ISSET(DB_LOG_NO_DATA)) {
ret = EINVAL;
__db_errx(env, DB_STR("0690",
"DB_LOG_NO_DATA may not be specified within a transaction."));
goto err;
}
LF_CLR(DB_AUTO_COMMIT);
if ((ret = __db_create_internal(&dbp, env, 0)) != 0)
goto err;
if (LF_ISSET(DB_TXN_NOT_DURABLE) &&
(ret = __db_set_flags(dbp, DB_TXN_NOT_DURABLE)) != 0)
goto err;
LF_CLR(DB_TXN_NOT_DURABLE);
ret = __db_remove_int(dbp, ip, txn, name, subdb, flags);
if (txn_local) {
LOCK_INIT(dbp->handle_lock);
dbp->locker = NULL;
} else if (IS_REAL_TXN(txn)) {
dbp->locker = NULL;
}
err: if (txn_local && (t_ret =
__db_txn_auto_resolve(env, txn, 0, ret)) != 0 && ret == 0)
ret = t_ret;
if (dbp != NULL &&
(t_ret = __db_close(dbp, NULL, DB_NOSYNC)) != 0 && ret == 0)
ret = t_ret;
if (handle_check && (t_ret = __env_db_rep_exit(env)) != 0 && ret == 0)
ret = t_ret;
ENV_LEAVE(env, ip);
return (ret);
}
int
__db_remove_pp(dbp, name, subdb, flags)
DB *dbp;
const char *name, *subdb;
u_int32_t flags;
{
DB_THREAD_INFO *ip;
ENV *env;
int handle_check, ret, t_ret;
env = dbp->env;
if (F_ISSET(dbp, DB_AM_OPEN_CALLED))
return (__db_mi_open(env, "DB->remove", 1));
if ((ret = __db_fchk(env, "DB->remove", flags, DB_NOSYNC)) != 0)
return (ret);
if ((ret = __db_check_txn(dbp, NULL, DB_LOCK_INVALIDID, 0)) != 0)
return (ret);
ENV_ENTER(env, ip);
handle_check = IS_ENV_REPLICATED(env);
if (handle_check && (ret = __db_rep_enter(dbp, 1, 1, 0)) != 0) {
handle_check = 0;
goto err;
}
ret = __db_remove(dbp, ip, NULL, name, subdb, flags);
if (handle_check && (t_ret = __env_db_rep_exit(env)) != 0 && ret == 0)
ret = t_ret;
err: ENV_LEAVE(env, ip);
return (ret);
}
int
__db_remove(dbp, ip, txn, name, subdb, flags)
DB *dbp;
DB_THREAD_INFO *ip;
DB_TXN *txn;
const char *name, *subdb;
u_int32_t flags;
{
int ret, t_ret;
ret = __db_remove_int(dbp, ip, txn, name, subdb, flags);
if ((t_ret = __db_close(dbp, txn, DB_NOSYNC)) != 0 && ret == 0)
ret = t_ret;
return (ret);
}
int
__db_remove_int(dbp, ip, txn, name, subdb, flags)
DB *dbp;
DB_THREAD_INFO *ip;
DB_TXN *txn;
const char *name, *subdb;
u_int32_t flags;
{
ENV *env;
int ret;
char *real_name, *tmpname;
env = dbp->env;
real_name = tmpname = NULL;
if (name == NULL && subdb == NULL) {
__db_errx(env, DB_STR("0691",
"Remove on temporary files invalid"));
ret = EINVAL;
goto err;
}
if (name == NULL) {
MAKE_INMEM(dbp);
real_name = (char *)subdb;
} else if (subdb != NULL) {
ret = __db_subdb_remove(dbp, ip, txn, name, subdb, flags);
goto err;
}
if (IS_REAL_TXN(txn)) {
ret = __db_dbtxn_remove(dbp, ip, txn, name, subdb);
goto err;
}
if (!F_ISSET(dbp, DB_AM_INMEM) && (ret = __db_appname(env,
DB_APP_DATA, name, &dbp->dirname, &real_name)) != 0)
goto err;
if (!F_ISSET(dbp, DB_AM_INMEM) && LF_ISSET(DB_FORCE) &&
(ret = __db_backup_name(env, real_name, NULL, &tmpname)) == 0)
(void)__os_unlink(env, tmpname, 0);
if ((ret = __fop_remove_setup(dbp, NULL, real_name, 0)) != 0)
goto err;
if (dbp->db_am_remove != NULL &&
(ret = dbp->db_am_remove(dbp, ip, NULL, name, subdb, flags)) != 0)
goto err;
ret = F_ISSET(dbp, DB_AM_INMEM) ?
__db_inmem_remove(dbp, NULL, real_name) :
__fop_remove(env,
NULL, dbp->fileid, name, &dbp->dirname, DB_APP_DATA,
F_ISSET(dbp, DB_AM_NOT_DURABLE) ? DB_LOG_NOT_DURABLE : 0);
err: if (!F_ISSET(dbp, DB_AM_INMEM) && real_name != NULL)
__os_free(env, real_name);
if (tmpname != NULL)
__os_free(env, tmpname);
return (ret);
}
int
__db_inmem_remove(dbp, txn, name)
DB *dbp;
DB_TXN *txn;
const char *name;
{
DBT fid_dbt, name_dbt;
DB_LOCKER *locker;
DB_LSN lsn;
ENV *env;
int ret;
env = dbp->env;
locker = NULL;
DB_ASSERT(env, name != NULL);
(void)__memp_set_flags(dbp->mpf, DB_MPOOL_NOFILE, 1);
if ((ret = __memp_fopen(dbp->mpf, NULL,
name, &dbp->dirname, 0, 0, 0)) != 0)
return (ret);
if ((ret = __memp_get_fileid(dbp->mpf, dbp->fileid)) != 0)
return (ret);
dbp->preserve_fid = 1;
if (LOCKING_ON(env)) {
if (dbp->locker == NULL &&
(ret = __lock_id(env, NULL, &dbp->locker)) != 0)
return (ret);
if (!CDB_LOCKING(env) &&
txn != NULL && F_ISSET(txn, TXN_INFAMILY)) {
if ((ret = __lock_addfamilylocker(env,
txn->txnid, dbp->locker->id, 1)) != 0)
return (ret);
txn = NULL;
}
locker = txn == NULL ? dbp->locker : txn->locker;
}
if ((ret =
__fop_lock_handle(env, dbp, locker, DB_LOCK_WRITE, NULL, 0)) != 0)
return (ret);
if (!IS_REAL_TXN(txn))
ret = __memp_nameop(env, dbp->fileid, NULL, name, NULL, 1);
else if (LOGGING_ON(env)) {
if (txn != NULL && (ret =
__txn_remevent(env, txn, name, dbp->fileid, 1)) != 0)
return (ret);
DB_INIT_DBT(name_dbt, name, strlen(name) + 1);
DB_INIT_DBT(fid_dbt, dbp->fileid, DB_FILE_ID_LEN);
ret = __crdel_inmem_remove_log(
env, txn, &lsn, 0, &name_dbt, &fid_dbt);
}
return (ret);
}
static int
__db_subdb_remove(dbp, ip, txn, name, subdb, flags)
DB *dbp;
DB_THREAD_INFO *ip;
DB_TXN *txn;
const char *name, *subdb;
u_int32_t flags;
{
DB *mdbp, *sdbp;
int ret, t_ret;
mdbp = sdbp = NULL;
if ((ret = __db_create_internal(&sdbp, dbp->env, 0)) != 0)
goto err;
if (F_ISSET(dbp, DB_AM_NOT_DURABLE) &&
(ret = __db_set_flags(sdbp, DB_TXN_NOT_DURABLE)) != 0)
goto err;
if ((ret = __db_open(sdbp, ip,
txn, name, subdb, DB_UNKNOWN, DB_WRITEOPEN, 0, PGNO_BASE_MD)) != 0)
goto err;
DB_TEST_RECOVERY(sdbp, DB_TEST_PREDESTROY, ret, name);
LOCK_CHECK_OFF(ip);
switch (sdbp->type) {
case DB_BTREE:
case DB_RECNO:
if ((ret = __bam_reclaim(sdbp, ip, txn, flags)) != 0)
goto err;
break;
case DB_HASH:
if ((ret = __ham_reclaim(sdbp, ip, txn, flags)) != 0)
goto err;
break;
case DB_QUEUE:
case DB_UNKNOWN:
default:
ret = __db_unknown_type(
sdbp->env, "__db_subdb_remove", sdbp->type);
goto err;
}
if ((ret = __db_master_open(sdbp, ip, txn, name, 0, 0, &mdbp)) != 0)
goto err;
if ((ret = __db_master_update(mdbp,
sdbp, ip, txn, subdb, sdbp->type, MU_REMOVE, NULL, 0)) != 0)
goto err;
DB_TEST_RECOVERY(sdbp, DB_TEST_POSTDESTROY, ret, name);
DB_TEST_RECOVERY_LABEL
err:
if ((t_ret = __db_close(sdbp, txn, DB_NOSYNC)) != 0 && ret == 0)
ret = t_ret;
if (mdbp != NULL && (t_ret = __db_close(mdbp, txn,
(LF_ISSET(DB_NOSYNC) || txn != NULL) ? DB_NOSYNC : 0)) != 0 &&
ret == 0)
ret = t_ret;
LOCK_CHECK_ON(ip);
return (ret);
}
static int
__db_dbtxn_remove(dbp, ip, txn, name, subdb)
DB *dbp;
DB_THREAD_INFO *ip;
DB_TXN *txn;
const char *name, *subdb;
{
ENV *env;
int ret;
char *tmpname;
env = dbp->env;
tmpname = NULL;
if ((ret = __db_backup_name(env,
F_ISSET(dbp, DB_AM_INMEM) ? subdb : name, txn, &tmpname)) != 0)
return (ret);
DB_TEST_RECOVERY(dbp, DB_TEST_PREDESTROY, ret, name);
if ((ret = __db_rename_int(dbp,
txn->thread_info, txn, name, subdb, tmpname, DB_NOSYNC)) != 0)
goto err;
if (dbp->db_am_remove != NULL &&
(ret = dbp->db_am_remove(dbp, ip, txn, tmpname, NULL, 0)) != 0)
goto err;
ret = F_ISSET(dbp, DB_AM_INMEM) ?
__db_inmem_remove(dbp, txn, tmpname) :
__fop_remove(env,
txn, dbp->fileid, tmpname, &dbp->dirname, DB_APP_DATA,
F_ISSET(dbp, DB_AM_NOT_DURABLE) ? DB_LOG_NOT_DURABLE : 0);
DB_TEST_RECOVERY(dbp, DB_TEST_POSTDESTROY, ret, name);
err:
DB_TEST_RECOVERY_LABEL
if (tmpname != NULL)
__os_free(env, tmpname);
return (ret);
}