env_method.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:15k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: env_method.c,v 11.87 2002/08/29 14:22:21 margo Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #ifdef HAVE_RPC
  14. #include <rpc/rpc.h>
  15. #endif
  16. #include <string.h>
  17. #endif
  18. /*
  19.  * This is the file that initializes the global array.  Do it this way because
  20.  * people keep changing one without changing the other.  Having declaration and
  21.  * initialization in one file will hopefully fix that.
  22.  */
  23. #define DB_INITIALIZE_DB_GLOBALS 1
  24. #include "db_int.h"
  25. #include "dbinc/crypto.h"
  26. #include "dbinc/hmac.h"
  27. #include "dbinc/db_shash.h"
  28. #include "dbinc/db_page.h"
  29. #include "dbinc/db_am.h"
  30. #include "dbinc/lock.h"
  31. #include "dbinc/log.h"
  32. #include "dbinc/mp.h"
  33. #include "dbinc/rep.h"
  34. #include "dbinc/txn.h"
  35. #ifdef HAVE_RPC
  36. #include "dbinc_auto/db_server.h"
  37. #include "dbinc_auto/rpc_client_ext.h"
  38. #endif
  39. static void __dbenv_err __P((const DB_ENV *, int, const char *, ...));
  40. static void __dbenv_errx __P((const DB_ENV *, const char *, ...));
  41. static int  __dbenv_init __P((DB_ENV *));
  42. static int  __dbenv_set_alloc __P((DB_ENV *, void *(*)(size_t),
  43.     void *(*)(void *, size_t), void (*)(void *)));
  44. static int  __dbenv_set_app_dispatch __P((DB_ENV *,
  45.     int (*)(DB_ENV *, DBT *, DB_LSN *, db_recops)));
  46. static int  __dbenv_set_data_dir __P((DB_ENV *, const char *));
  47. static int  __dbenv_set_encrypt __P((DB_ENV *, const char *, u_int32_t));
  48. static void __dbenv_set_errcall __P((DB_ENV *, void (*)(const char *, char *)));
  49. static void __dbenv_set_errfile __P((DB_ENV *, FILE *));
  50. static void __dbenv_set_errpfx __P((DB_ENV *, const char *));
  51. static int  __dbenv_set_feedback __P((DB_ENV *, void (*)(DB_ENV *, int, int)));
  52. static int  __dbenv_set_flags __P((DB_ENV *, u_int32_t, int));
  53. static void __dbenv_set_noticecall __P((DB_ENV *, void (*)(DB_ENV *, db_notices)));
  54. static int  __dbenv_set_paniccall __P((DB_ENV *, void (*)(DB_ENV *, int)));
  55. static int  __dbenv_set_rpc_server_noclnt
  56.     __P((DB_ENV *, void *, const char *, long, long, u_int32_t));
  57. static int  __dbenv_set_shm_key __P((DB_ENV *, long));
  58. static int  __dbenv_set_tas_spins __P((DB_ENV *, u_int32_t));
  59. static int  __dbenv_set_tmp_dir __P((DB_ENV *, const char *));
  60. static int  __dbenv_set_verbose __P((DB_ENV *, u_int32_t, int));
  61. /*
  62.  * db_env_create --
  63.  * DB_ENV constructor.
  64.  *
  65.  * EXTERN: int db_env_create __P((DB_ENV **, u_int32_t));
  66.  */
  67. int
  68. db_env_create(dbenvpp, flags)
  69. DB_ENV **dbenvpp;
  70. u_int32_t flags;
  71. {
  72. DB_ENV *dbenv;
  73. int ret;
  74. /*
  75.  * !!!
  76.  * Our caller has not yet had the opportunity to reset the panic
  77.  * state or turn off mutex locking, and so we can neither check
  78.  * the panic state or acquire a mutex in the DB_ENV create path.
  79.  *
  80.  * !!!
  81.  * We can't call the flags-checking routines, we don't have an
  82.  * environment yet.
  83.  */
  84. if (flags != 0 && flags != DB_CLIENT)
  85. return (EINVAL);
  86. if ((ret = __os_calloc(NULL, 1, sizeof(*dbenv), &dbenv)) != 0)
  87. return (ret);
  88. #ifdef HAVE_RPC
  89. if (LF_ISSET(DB_CLIENT))
  90. F_SET(dbenv, DB_ENV_RPCCLIENT);
  91. #endif
  92. ret = __dbenv_init(dbenv);
  93. if (ret != 0) {
  94. __os_free(NULL, dbenv);
  95. return (ret);
  96. }
  97. *dbenvpp = dbenv;
  98. return (0);
  99. }
  100. /*
  101.  * __dbenv_init --
  102.  * Initialize a DB_ENV structure.
  103.  */
  104. static int
  105. __dbenv_init(dbenv)
  106. DB_ENV *dbenv;
  107. {
  108. /*
  109.  * !!!
  110.  * Our caller has not yet had the opportunity to reset the panic
  111.  * state or turn off mutex locking, and so we can neither check
  112.  * the panic state or acquire a mutex in the DB_ENV create path.
  113.  *
  114.  * Set up methods that are the same in both normal and RPC
  115.  */
  116. dbenv->err = __dbenv_err;
  117. dbenv->errx = __dbenv_errx;
  118. dbenv->set_errcall = __dbenv_set_errcall;
  119. dbenv->set_errfile = __dbenv_set_errfile;
  120. dbenv->set_errpfx = __dbenv_set_errpfx;
  121. #ifdef HAVE_RPC
  122. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT)) {
  123. dbenv->close = __dbcl_env_close;
  124. dbenv->dbremove = __dbcl_env_dbremove;
  125. dbenv->dbrename = __dbcl_env_dbrename;
  126. dbenv->open = __dbcl_env_open_wrap;
  127. dbenv->remove = __dbcl_env_remove;
  128. dbenv->set_alloc = __dbcl_env_alloc;
  129. dbenv->set_app_dispatch = __dbcl_set_app_dispatch;
  130. dbenv->set_data_dir = __dbcl_set_data_dir;
  131. dbenv->set_encrypt = __dbcl_env_encrypt;
  132. dbenv->set_feedback = __dbcl_env_set_feedback;
  133. dbenv->set_flags = __dbcl_env_flags;
  134. dbenv->set_noticecall = __dbcl_env_noticecall;
  135. dbenv->set_paniccall = __dbcl_env_paniccall;
  136. dbenv->set_rpc_server = __dbcl_envrpcserver;
  137. dbenv->set_shm_key = __dbcl_set_shm_key;
  138. dbenv->set_tas_spins = __dbcl_set_tas_spins;
  139. dbenv->set_timeout = __dbcl_set_timeout;
  140. dbenv->set_tmp_dir = __dbcl_set_tmp_dir;
  141. dbenv->set_verbose = __dbcl_set_verbose;
  142. } else {
  143. #endif
  144. dbenv->close = __dbenv_close;
  145. dbenv->dbremove = __dbenv_dbremove;
  146. dbenv->dbrename = __dbenv_dbrename;
  147. dbenv->open = __dbenv_open;
  148. dbenv->remove = __dbenv_remove;
  149. dbenv->set_alloc = __dbenv_set_alloc;
  150. dbenv->set_app_dispatch = __dbenv_set_app_dispatch;
  151. dbenv->set_data_dir = __dbenv_set_data_dir;
  152. dbenv->set_encrypt = __dbenv_set_encrypt;
  153. dbenv->set_feedback = __dbenv_set_feedback;
  154. dbenv->set_flags = __dbenv_set_flags;
  155. dbenv->set_noticecall = __dbenv_set_noticecall;
  156. dbenv->set_paniccall = __dbenv_set_paniccall;
  157. dbenv->set_rpc_server = __dbenv_set_rpc_server_noclnt;
  158. dbenv->set_shm_key = __dbenv_set_shm_key;
  159. dbenv->set_tas_spins = __dbenv_set_tas_spins;
  160. dbenv->set_tmp_dir = __dbenv_set_tmp_dir;
  161. dbenv->set_verbose = __dbenv_set_verbose;
  162. #ifdef HAVE_RPC
  163. }
  164. #endif
  165. dbenv->shm_key = INVALID_REGION_SEGID;
  166. dbenv->db_ref = 0;
  167. __log_dbenv_create(dbenv); /* Subsystem specific. */
  168. __lock_dbenv_create(dbenv);
  169. __memp_dbenv_create(dbenv);
  170. __rep_dbenv_create(dbenv);
  171. __txn_dbenv_create(dbenv);
  172. return (0);
  173. }
  174. /*
  175.  * __dbenv_err --
  176.  * Error message, including the standard error string.
  177.  */
  178. static void
  179. #ifdef __STDC__
  180. __dbenv_err(const DB_ENV *dbenv, int error, const char *fmt, ...)
  181. #else
  182. __dbenv_err(dbenv, error, fmt, va_alist)
  183. const DB_ENV *dbenv;
  184. int error;
  185. const char *fmt;
  186. va_dcl
  187. #endif
  188. {
  189. DB_REAL_ERR(dbenv, error, 1, 1, fmt);
  190. }
  191. /*
  192.  * __dbenv_errx --
  193.  * Error message.
  194.  */
  195. static void
  196. #ifdef __STDC__
  197. __dbenv_errx(const DB_ENV *dbenv, const char *fmt, ...)
  198. #else
  199. __dbenv_errx(dbenv, fmt, va_alist)
  200. const DB_ENV *dbenv;
  201. const char *fmt;
  202. va_dcl
  203. #endif
  204. {
  205. DB_REAL_ERR(dbenv, 0, 0, 1, fmt);
  206. }
  207. static int
  208. __dbenv_set_alloc(dbenv, mal_func, real_func, free_func)
  209. DB_ENV *dbenv;
  210. void *(*mal_func) __P((size_t));
  211. void *(*real_func) __P((void *, size_t));
  212. void (*free_func) __P((void *));
  213. {
  214. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_alloc");
  215. dbenv->db_malloc = mal_func;
  216. dbenv->db_realloc = real_func;
  217. dbenv->db_free = free_func;
  218. return (0);
  219. }
  220. /*
  221.  * __dbenv_set_app_dispatch --
  222.  * Set the transaction abort recover function.
  223.  */
  224. static int
  225. __dbenv_set_app_dispatch(dbenv, app_dispatch)
  226. DB_ENV *dbenv;
  227. int (*app_dispatch) __P((DB_ENV *, DBT *, DB_LSN *, db_recops));
  228. {
  229. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_app_dispatch");
  230. dbenv->app_dispatch = app_dispatch;
  231. return (0);
  232. }
  233. static int
  234. __dbenv_set_encrypt(dbenv, passwd, flags)
  235. DB_ENV *dbenv;
  236. const char *passwd;
  237. u_int32_t flags;
  238. {
  239. #ifdef HAVE_CRYPTO
  240. DB_CIPHER *db_cipher;
  241. int ret;
  242. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_encrypt");
  243. #define OK_CRYPTO_FLAGS (DB_ENCRYPT_AES)
  244. if (flags != 0 && LF_ISSET(~OK_CRYPTO_FLAGS))
  245. return (__db_ferr(dbenv, "DB_ENV->set_encrypt", 0));
  246. if (passwd == NULL || strlen(passwd) == 0) {
  247. __db_err(dbenv, "Empty password specified to set_encrypt");
  248. return (EINVAL);
  249. }
  250. if (!CRYPTO_ON(dbenv)) {
  251. if ((ret = __os_calloc(dbenv, 1, sizeof(DB_CIPHER), &db_cipher))
  252.     != 0)
  253. goto err;
  254. dbenv->crypto_handle = db_cipher;
  255. } else
  256. db_cipher = (DB_CIPHER *)dbenv->crypto_handle;
  257. if (dbenv->passwd != NULL)
  258. __os_free(dbenv, dbenv->passwd);
  259. if ((ret = __os_strdup(dbenv, passwd, &dbenv->passwd)) != 0) {
  260. __os_free(dbenv, db_cipher);
  261. goto err;
  262. }
  263. /*
  264.  * We're going to need this often enough to keep around
  265.  */
  266. dbenv->passwd_len = strlen(dbenv->passwd) + 1;
  267. /*
  268.  * The MAC key is for checksumming, and is separate from
  269.  * the algorithm.  So initialize it here, even if they
  270.  * are using CIPHER_ANY.
  271.  */
  272. __db_derive_mac((u_int8_t *)dbenv->passwd,
  273.     dbenv->passwd_len, db_cipher->mac_key);
  274. switch (flags) {
  275. case 0:
  276. F_SET(db_cipher, CIPHER_ANY);
  277. break;
  278. case DB_ENCRYPT_AES:
  279. if ((ret = __crypto_algsetup(dbenv, db_cipher, CIPHER_AES, 0))
  280.     != 0)
  281. goto err1;
  282. break;
  283. }
  284. return (0);
  285. err1:
  286. __os_free(dbenv, dbenv->passwd);
  287. __os_free(dbenv, db_cipher);
  288. dbenv->crypto_handle = NULL;
  289. err:
  290. return (ret);
  291. #else
  292. COMPQUIET(dbenv, NULL);
  293. COMPQUIET(passwd, NULL);
  294. COMPQUIET(flags, 0);
  295. return (__db_eopnotsup(dbenv));
  296. #endif
  297. }
  298. static int
  299. __dbenv_set_flags(dbenv, flags, onoff)
  300. DB_ENV *dbenv;
  301. u_int32_t flags;
  302. int onoff;
  303. {
  304. #define OK_FLAGS
  305. (DB_AUTO_COMMIT | DB_CDB_ALLDB | DB_DIRECT_DB | DB_DIRECT_LOG |
  306.     DB_NOLOCKING | DB_NOMMAP | DB_NOPANIC | DB_OVERWRITE |
  307.     DB_PANIC_ENVIRONMENT | DB_REGION_INIT | DB_TXN_NOSYNC |
  308.     DB_TXN_WRITE_NOSYNC | DB_YIELDCPU)
  309. if (LF_ISSET(~OK_FLAGS))
  310. return (__db_ferr(dbenv, "DB_ENV->set_flags", 0));
  311. if (onoff && LF_ISSET(DB_TXN_WRITE_NOSYNC) && LF_ISSET(DB_TXN_NOSYNC))
  312. return (__db_ferr(dbenv, "DB_ENV->set_flags", 1));
  313. if (LF_ISSET(DB_AUTO_COMMIT)) {
  314. if (onoff)
  315. F_SET(dbenv, DB_ENV_AUTO_COMMIT);
  316. else
  317. F_CLR(dbenv, DB_ENV_AUTO_COMMIT);
  318. }
  319. if (LF_ISSET(DB_CDB_ALLDB)) {
  320. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_flags: DB_CDB_ALLDB");
  321. if (onoff)
  322. F_SET(dbenv, DB_ENV_CDB_ALLDB);
  323. else
  324. F_CLR(dbenv, DB_ENV_CDB_ALLDB);
  325. }
  326. if (LF_ISSET(DB_DIRECT_DB)) {
  327. if (onoff)
  328. F_SET(dbenv, DB_ENV_DIRECT_DB);
  329. else
  330. F_CLR(dbenv, DB_ENV_DIRECT_DB);
  331. }
  332. if (LF_ISSET(DB_DIRECT_LOG)) {
  333. if (onoff)
  334. F_SET(dbenv, DB_ENV_DIRECT_LOG);
  335. else
  336. F_CLR(dbenv, DB_ENV_DIRECT_LOG);
  337. }
  338. if (LF_ISSET(DB_NOLOCKING)) {
  339. if (onoff)
  340. F_SET(dbenv, DB_ENV_NOLOCKING);
  341. else
  342. F_CLR(dbenv, DB_ENV_NOLOCKING);
  343. }
  344. if (LF_ISSET(DB_NOMMAP)) {
  345. if (onoff)
  346. F_SET(dbenv, DB_ENV_NOMMAP);
  347. else
  348. F_CLR(dbenv, DB_ENV_NOMMAP);
  349. }
  350. if (LF_ISSET(DB_NOPANIC)) {
  351. if (onoff)
  352. F_SET(dbenv, DB_ENV_NOPANIC);
  353. else
  354. F_CLR(dbenv, DB_ENV_NOPANIC);
  355. }
  356. if (LF_ISSET(DB_OVERWRITE)) {
  357. if (onoff)
  358. F_SET(dbenv, DB_ENV_OVERWRITE);
  359. else
  360. F_CLR(dbenv, DB_ENV_OVERWRITE);
  361. }
  362. if (LF_ISSET(DB_PANIC_ENVIRONMENT)) {
  363. ENV_ILLEGAL_BEFORE_OPEN(dbenv,
  364.     "set_flags: DB_PANIC_ENVIRONMENT");
  365. PANIC_SET(dbenv, onoff);
  366. }
  367. if (LF_ISSET(DB_REGION_INIT)) {
  368. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_flags: DB_REGION_INIT");
  369. if (onoff)
  370. F_SET(dbenv, DB_ENV_REGION_INIT);
  371. else
  372. F_CLR(dbenv, DB_ENV_REGION_INIT);
  373. }
  374. if (LF_ISSET(DB_TXN_NOSYNC)) {
  375. if (onoff)
  376. F_SET(dbenv, DB_ENV_TXN_NOSYNC);
  377. else
  378. F_CLR(dbenv, DB_ENV_TXN_NOSYNC);
  379. }
  380. if (LF_ISSET(DB_TXN_WRITE_NOSYNC)) {
  381. if (onoff)
  382. F_SET(dbenv, DB_ENV_TXN_WRITE_NOSYNC);
  383. else
  384. F_CLR(dbenv, DB_ENV_TXN_WRITE_NOSYNC);
  385. }
  386. if (LF_ISSET(DB_YIELDCPU)) {
  387. if (onoff)
  388. F_SET(dbenv, DB_ENV_YIELDCPU);
  389. else
  390. F_CLR(dbenv, DB_ENV_YIELDCPU);
  391. }
  392. return (0);
  393. }
  394. static int
  395. __dbenv_set_data_dir(dbenv, dir)
  396. DB_ENV *dbenv;
  397. const char *dir;
  398. {
  399. int ret;
  400. #define DATA_INIT_CNT 20 /* Start with 20 data slots. */
  401. if (dbenv->db_data_dir == NULL) {
  402. if ((ret = __os_calloc(dbenv, DATA_INIT_CNT,
  403.     sizeof(char **), &dbenv->db_data_dir)) != 0)
  404. return (ret);
  405. dbenv->data_cnt = DATA_INIT_CNT;
  406. } else if (dbenv->data_next == dbenv->data_cnt - 1) {
  407. dbenv->data_cnt *= 2;
  408. if ((ret = __os_realloc(dbenv,
  409.     dbenv->data_cnt * sizeof(char **),
  410.     &dbenv->db_data_dir)) != 0)
  411. return (ret);
  412. }
  413. return (__os_strdup(dbenv,
  414.     dir, &dbenv->db_data_dir[dbenv->data_next++]));
  415. }
  416. static void
  417. __dbenv_set_errcall(dbenv, errcall)
  418. DB_ENV *dbenv;
  419. void (*errcall) __P((const char *, char *));
  420. {
  421. dbenv->db_errcall = errcall;
  422. }
  423. static void
  424. __dbenv_set_errfile(dbenv, errfile)
  425. DB_ENV *dbenv;
  426. FILE *errfile;
  427. {
  428. dbenv->db_errfile = errfile;
  429. }
  430. static void
  431. __dbenv_set_errpfx(dbenv, errpfx)
  432. DB_ENV *dbenv;
  433. const char *errpfx;
  434. {
  435. dbenv->db_errpfx = errpfx;
  436. }
  437. static int
  438. __dbenv_set_feedback(dbenv, feedback)
  439. DB_ENV *dbenv;
  440. void (*feedback) __P((DB_ENV *, int, int));
  441. {
  442. dbenv->db_feedback = feedback;
  443. return (0);
  444. }
  445. static void
  446. __dbenv_set_noticecall(dbenv, noticecall)
  447. DB_ENV *dbenv;
  448. void (*noticecall) __P((DB_ENV *, db_notices));
  449. {
  450. dbenv->db_noticecall = noticecall;
  451. }
  452. static int
  453. __dbenv_set_paniccall(dbenv, paniccall)
  454. DB_ENV *dbenv;
  455. void (*paniccall) __P((DB_ENV *, int));
  456. {
  457. dbenv->db_paniccall = paniccall;
  458. return (0);
  459. }
  460. static int
  461. __dbenv_set_shm_key(dbenv, shm_key)
  462. DB_ENV *dbenv;
  463. long shm_key; /* !!!: really a key_t. */
  464. {
  465. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_shm_key");
  466. dbenv->shm_key = shm_key;
  467. return (0);
  468. }
  469. static int
  470. __dbenv_set_tas_spins(dbenv, tas_spins)
  471. DB_ENV *dbenv;
  472. u_int32_t tas_spins;
  473. {
  474. dbenv->tas_spins = tas_spins;
  475. return (0);
  476. }
  477. static int
  478. __dbenv_set_tmp_dir(dbenv, dir)
  479. DB_ENV *dbenv;
  480. const char *dir;
  481. {
  482. if (dbenv->db_tmp_dir != NULL)
  483. __os_free(dbenv, dbenv->db_tmp_dir);
  484. return (__os_strdup(dbenv, dir, &dbenv->db_tmp_dir));
  485. }
  486. static int
  487. __dbenv_set_verbose(dbenv, which, onoff)
  488. DB_ENV *dbenv;
  489. u_int32_t which;
  490. int onoff;
  491. {
  492. switch (which) {
  493. case DB_VERB_CHKPOINT:
  494. case DB_VERB_DEADLOCK:
  495. case DB_VERB_RECOVERY:
  496. case DB_VERB_REPLICATION:
  497. case DB_VERB_WAITSFOR:
  498. if (onoff)
  499. FLD_SET(dbenv->verbose, which);
  500. else
  501. FLD_CLR(dbenv->verbose, which);
  502. break;
  503. default:
  504. return (EINVAL);
  505. }
  506. return (0);
  507. }
  508. /*
  509.  * __db_mi_env --
  510.  * Method illegally called with public environment.
  511.  *
  512.  * PUBLIC: int __db_mi_env __P((DB_ENV *, const char *));
  513.  */
  514. int
  515. __db_mi_env(dbenv, name)
  516. DB_ENV *dbenv;
  517. const char *name;
  518. {
  519. __db_err(dbenv, "%s: method not permitted in shared environment", name);
  520. return (EINVAL);
  521. }
  522. /*
  523.  * __db_mi_open --
  524.  * Method illegally called after open.
  525.  *
  526.  * PUBLIC: int __db_mi_open __P((DB_ENV *, const char *, int));
  527.  */
  528. int
  529. __db_mi_open(dbenv, name, after)
  530. DB_ENV *dbenv;
  531. const char *name;
  532. int after;
  533. {
  534. __db_err(dbenv, "%s: method not permitted %s open",
  535.     name, after ? "after" : "before");
  536. return (EINVAL);
  537. }
  538. /*
  539.  * __db_env_config --
  540.  * Method or function called without required configuration.
  541.  *
  542.  * PUBLIC: int __db_env_config __P((DB_ENV *, char *, u_int32_t));
  543.  */
  544. int
  545. __db_env_config(dbenv, i, flags)
  546. DB_ENV *dbenv;
  547. char *i;
  548. u_int32_t flags;
  549. {
  550. char *sub;
  551. switch (flags) {
  552. case DB_INIT_LOCK:
  553. sub = "locking";
  554. break;
  555. case DB_INIT_LOG:
  556. sub = "logging";
  557. break;
  558. case DB_INIT_MPOOL:
  559. sub = "memory pool";
  560. break;
  561. case DB_INIT_TXN:
  562. sub = "transaction";
  563. break;
  564. default:
  565. sub = "<unspecified>";
  566. break;
  567. }
  568. __db_err(dbenv,
  569.     "%s interface requires an environment configured for the %s subsystem",
  570.     i, sub);
  571. return (EINVAL);
  572. }
  573. static int
  574. __dbenv_set_rpc_server_noclnt(dbenv, cl, host, tsec, ssec, flags)
  575. DB_ENV *dbenv;
  576. void *cl;
  577. const char *host;
  578. long tsec, ssec;
  579. u_int32_t flags;
  580. {
  581. COMPQUIET(host, NULL);
  582. COMPQUIET(cl, NULL);
  583. COMPQUIET(tsec, 0);
  584. COMPQUIET(ssec, 0);
  585. COMPQUIET(flags, 0);
  586. __db_err(dbenv,
  587.     "set_rpc_server method not permitted in non-RPC environment");
  588. return (__db_eopnotsup(dbenv));
  589. }