os_map.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_map.c,v 11.22 2000/10/26 14:18:08 bostic Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. #include "os_jump.h"
  13. static int __os_map
  14.   __P((DB_ENV *, char *, REGINFO *, DB_FH *, size_t, int, int, int, void **));
  15. static int __os_unique_name __P((char *, int, char *));
  16. /*
  17.  * __os_r_sysattach --
  18.  * Create/join a shared memory region.
  19.  */
  20. int
  21. __os_r_sysattach(dbenv, infop, rp)
  22. DB_ENV *dbenv;
  23. REGINFO *infop;
  24. REGION *rp;
  25. {
  26. DB_FH fh;
  27. int is_system, ret;
  28. /*
  29.  * Try to open/create the file.  We DO NOT need to ensure that multiple
  30.  * threads/processes attempting to simultaneously create the region are
  31.  * properly ordered, our caller has already taken care of that.
  32.  */
  33. if ((ret = __os_open(dbenv, infop->name,
  34.     F_ISSET(infop, REGION_CREATE_OK) ? DB_OSO_CREATE: 0,
  35.     infop->mode, &fh)) != 0) {
  36. __db_err(dbenv, "%s: %s", infop->name, db_strerror(ret));
  37. return (ret);
  38. }
  39. /*
  40.  * On Windows/9X, files that are opened by multiple processes do not
  41.  * share data correctly.  For this reason, the DB_SYSTEM_MEM flag is
  42.  * implied for any application that does not specify the DB_PRIVATE
  43.  * flag.
  44.  */
  45. is_system = F_ISSET(dbenv, DB_ENV_SYSTEM_MEM) ||
  46.     (!F_ISSET(dbenv, DB_ENV_PRIVATE) && __os_is_winnt() == 0);
  47. /*
  48.  * Map the file in.  If we're creating an in-system-memory region,
  49.  * specify a segment ID (which is never used again) so that the
  50.  * calling code writes out the REGENV_REF structure to the primary
  51.  * environment file.
  52.  */
  53. ret = __os_map(dbenv, infop->name, infop, &fh, rp->size,
  54.    1, is_system, 0, &infop->addr);
  55. if (ret == 0 && is_system == 1)
  56. rp->segid = 1;
  57. (void)__os_closehandle(&fh);
  58. return (ret);
  59. }
  60. /*
  61.  * __os_r_sysdetach --
  62.  * Detach from a shared memory region.
  63.  */
  64. int
  65. __os_r_sysdetach(dbenv, infop, destroy)
  66. DB_ENV *dbenv;
  67. REGINFO *infop;
  68. int destroy;
  69. {
  70. int ret, t_ret;
  71. if (infop->wnt_handle != NULL) {
  72. (void)CloseHandle(*((HANDLE*)(infop->wnt_handle)));
  73. __os_free(infop->wnt_handle, sizeof(HANDLE));
  74. }
  75. __os_set_errno(0);
  76. ret = !UnmapViewOfFile(infop->addr) ? __os_win32_errno() : 0;
  77. if (ret != 0)
  78. __db_err(dbenv, "UnmapViewOfFile: %s", strerror(ret));
  79. if (F_ISSET(dbenv, DB_ENV_SYSTEM_MEM) && destroy &&
  80.     (t_ret = __os_unlink(dbenv, infop->name)) != 0 && ret == 0)
  81. ret = t_ret;
  82. return (ret);
  83. }
  84. /*
  85.  * __os_mapfile --
  86.  * Map in a shared memory file.
  87.  */
  88. int
  89. __os_mapfile(dbenv, path, fhp, len, is_rdonly, addr)
  90. DB_ENV *dbenv;
  91. char *path;
  92. DB_FH *fhp;
  93. int is_rdonly;
  94. size_t len;
  95. void **addr;
  96. {
  97. /* If the user replaced the map call, call through their interface. */
  98. if (__db_jump.j_map != NULL)
  99. return (__db_jump.j_map(path, len, 0, is_rdonly, addr));
  100. return (__os_map(dbenv, path, NULL, fhp, len, 0, 0, is_rdonly, addr));
  101. }
  102. /*
  103.  * __os_unmapfile --
  104.  * Unmap the shared memory file.
  105.  */
  106. int
  107. __os_unmapfile(dbenv, addr, len)
  108. DB_ENV *dbenv;
  109. void *addr;
  110. size_t len;
  111. {
  112. /* If the user replaced the map call, call through their interface. */
  113. if (__db_jump.j_unmap != NULL)
  114. return (__db_jump.j_unmap(addr, len));
  115. __os_set_errno(0);
  116. return (!UnmapViewOfFile(addr) ? __os_win32_errno() : 0);
  117. }
  118. /*
  119.  * __os_unique_name --
  120.  * Create a unique identifying name from a pathname (may be absolute or
  121.  * relative) and/or a file descriptor.
  122.  *
  123.  * The name returned must be unique (different files map to different
  124.  * names), and repeatable (same files, map to same names).  It's not
  125.  * so easy to do by name.  Should handle not only:
  126.  *
  127.  * foo.bar  ==  ./foo.bar  ==  c:/whatever_path/foo.bar
  128.  *
  129.  * but also understand that:
  130.  *
  131.  * foo.bar  ==  Foo.Bar (FAT file system)
  132.  * foo.bar  !=  Foo.Bar (NTFS)
  133.  *
  134.  * The best solution is to use the identifying number in the file
  135.  * information structure (similar to UNIX inode #).
  136.  */
  137. static int
  138. __os_unique_name(orig_path, fd, result_path)
  139. char *orig_path, *result_path;
  140. int fd;
  141. {
  142. BY_HANDLE_FILE_INFORMATION fileinfo;
  143. __os_set_errno(0);
  144. if (!GetFileInformationByHandle(
  145.     (HANDLE)_get_osfhandle(fd), &fileinfo))
  146. return (__os_win32_errno());
  147. (void)sprintf(result_path, "%ld.%ld.%ld",
  148.     fileinfo.dwVolumeSerialNumber,
  149.     fileinfo.nFileIndexHigh, fileinfo.nFileIndexLow);
  150. return (0);
  151. }
  152. /*
  153.  * __os_map --
  154.  * The mmap(2) function for Windows.
  155.  */
  156. static int
  157. __os_map(dbenv, path, infop, fhp, len, is_region, is_system, is_rdonly, addr)
  158. DB_ENV *dbenv;
  159. REGINFO *infop;
  160. char *path;
  161. DB_FH *fhp;
  162. int is_region, is_system, is_rdonly;
  163. size_t len;
  164. void **addr;
  165. {
  166. HANDLE hMemory;
  167. REGENV *renv;
  168. int ret;
  169. void *pMemory;
  170. char shmem_name[MAXPATHLEN];
  171. int use_pagefile;
  172. ret = 0;
  173. if (infop != NULL)
  174. infop->wnt_handle = NULL;
  175. use_pagefile = is_region && is_system;
  176. /*
  177.  * If creating a region in system space, get a matching name in the
  178.  * paging file namespace.
  179.  */
  180. if (use_pagefile) {
  181. (void)strcpy(shmem_name, "__db_shmem.");
  182. if ((ret = __os_unique_name(path, fhp->fd,
  183.     &shmem_name[strlen(shmem_name)])) != 0)
  184. return (ret);
  185. }
  186. /*
  187.  * XXX
  188.  * DB: We have not implemented copy-on-write here.
  189.  *
  190.  * XXX
  191.  * DB: This code will fail if the library is ever compiled on a 64-bit
  192.  * machine.
  193.  *
  194.  * XXX
  195.  * If this is an region in system memory, let's try opening using the
  196.  * OpenFileMapping() first.  Why, oh why are we doing this?
  197.  *
  198.  * Well, we might be asking the OS for a handle to a pre-existing
  199.  * memory section, or we might be the first to get here and want the
  200.  * section created. CreateFileMapping() sounds like it will do both
  201.  * jobs. But, not so. It seems to mess up making the commit charge to
  202.  * the process. It thinks, incorrectly, that when we want to join a
  203.  * previously existing section, that it should make a commit charge
  204.  * for the whole section.  In fact, there is no new committed memory
  205.  * whatever.  The call can fail if there is insufficient memory free
  206.  * to handle the erroneous commit charge.  So, we find that the bogus
  207.  * commit is not made if we call OpenFileMapping().  So we do that
  208.  * first, and only call CreateFileMapping() if we're really creating
  209.  * the section.
  210.  */
  211. hMemory = NULL;
  212. __os_set_errno(0);
  213. if (use_pagefile)
  214. hMemory = OpenFileMapping(
  215.     is_rdonly ? FILE_MAP_READ : FILE_MAP_ALL_ACCESS,
  216.     0,
  217.     shmem_name);
  218. if (hMemory == NULL)
  219. hMemory = CreateFileMapping(
  220.     use_pagefile ?
  221.     (HANDLE)0xFFFFFFFF : (HANDLE)_get_osfhandle(fhp->fd),
  222.     0,
  223.     is_rdonly ? PAGE_READONLY : PAGE_READWRITE,
  224.     0, len,
  225.     use_pagefile ? shmem_name : NULL);
  226. if (hMemory == NULL) {
  227. __db_err(dbenv,
  228.     "OpenFileMapping: %s", strerror(__os_win32_errno()));
  229. return (__os_win32_errno());
  230. }
  231. pMemory = MapViewOfFile(hMemory,
  232.     (is_rdonly ? FILE_MAP_READ : FILE_MAP_ALL_ACCESS), 0, 0, len);
  233. if (pMemory == NULL) {
  234. __db_err(dbenv,
  235.     "MapViewOfFile: %s", strerror(__os_win32_errno()));
  236. return (__os_win32_errno());
  237. }
  238. /*
  239.  * XXX
  240.  * It turns out that the kernel object underlying the named section
  241.  * is reference counted, but that the call to MapViewOfFile() above
  242.  * does NOT increment the reference count! So, if we close the handle
  243.  * here, the kernel deletes the object from the kernel namespace.
  244.  * When a second process comes along to join the region, the kernel
  245.  * happily creates a new object with the same name, but completely
  246.  * different identity. The two processes then have distinct isolated
  247.  * mapped sections, not at all what was wanted. Not closing the handle
  248.  * here fixes this problem.  We carry the handle around in the region
  249.  * structure so we can close it when unmap is called.  Ignore malloc
  250.  * errors, it just means we leak the memory.
  251.  */
  252. if (use_pagefile && infop != NULL) {
  253. if (__os_malloc(NULL,
  254.     sizeof(HANDLE), NULL, &infop->wnt_handle) == 0)
  255. memcpy(infop->wnt_handle, &hMemory, sizeof(HANDLE));
  256. } else
  257. CloseHandle(hMemory);
  258. if (is_region) {
  259. /*
  260.  * XXX
  261.  * Windows/95 zeroes anonymous memory regions at last close.
  262.  * This means that the backing file can exist and reference
  263.  * the region, but the region itself is no longer initialized.
  264.  * If the caller is capable of creating the region, update
  265.  * the REGINFO structure so that they do so.
  266.  */
  267. renv = (REGENV *)pMemory;
  268. if (renv->magic == 0)
  269. if (F_ISSET(infop, REGION_CREATE_OK))
  270. F_SET(infop, REGION_CREATE);
  271. else {
  272. (void)UnmapViewOfFile(pMemory);
  273. pMemory = NULL;
  274. ret = EAGAIN;
  275. }
  276. }
  277. *addr = pMemory;
  278. return (ret);
  279. }