aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-08-04 18:32:43 +0000
committerNick Mathewson <nickm@torproject.org>2006-08-04 18:32:43 +0000
commitbf72878cada8e60d9ceaffa6a9e7bcaf08ffe33c (patch)
tree6ecdad86da80473e4ae119bacde3f9feda40e014 /src/common
parentabe27b807eb14960ffb0c8e7b6dd5b1b7603efd2 (diff)
downloadtor-bf72878cada8e60d9ceaffa6a9e7bcaf08ffe33c.tar
tor-bf72878cada8e60d9ceaffa6a9e7bcaf08ffe33c.tar.gz
r7012@Kushana: nickm | 2006-08-03 19:21:25 -0700
Add an "mmap handle" type to encapsulate bookkeeping elements of mmap issues; add prelim win32 impl svn:r6980
Diffstat (limited to 'src/common')
-rw-r--r--src/common/compat.c101
-rw-r--r--src/common/compat.h8
2 files changed, 89 insertions, 20 deletions
diff --git a/src/common/compat.c b/src/common/compat.c
index 9ab5d8fb4..944640e2a 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -24,8 +24,9 @@ const char compat_c_id[] =
#ifdef MS_WINDOWS
#include <process.h>
-
+#include <windows.h>
#endif
+
#ifdef HAVE_UNAME
#include <sys/utsname.h>
#endif
@@ -107,16 +108,22 @@ const char compat_c_id[] =
#define INADDR_NONE ((unsigned long) -1)
#endif
-#ifdef HAVE_SYS_MMAN
-const char *
-tor_mmap_file(const char *filename, size_t *size)
+#ifdef HAVE_SYS_MMAN_H
+struct tor_mmap_t {
+ char *data;
+ size_t size;
+};
+tor_mmap_t *
+tor_mmap_file(const char *filename, const char **data, size_t *size_out)
{
int fd; /* router file */
char *string;
int page_size;
+ tor_mmap_t *res;
+ size_t size;
tor_assert(filename);
- tor_assert(size);
+ tor_assert(size_out);
fd = open(filename, O_RDONLY, 0);
if (fd<0) {
@@ -124,13 +131,13 @@ tor_mmap_file(const char *filename, size_t *size)
return NULL;
}
- *size = lseek(fd, 0, SEEK_END);
+ size = lseek(fd, 0, SEEK_END);
lseek(fd, 0, SEEK_SET);
/* ensure page alignment */
page_size = getpagesize();
- *size += (page_size + (page_size-(*size%page_size)));
+ size += (page_size + (page_size-(size%page_size)));
- string = mmap(0, *size, PROT_READ, MAP_PRIVATE, fd, 0);
+ string = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0);
if (string == MAP_FAILED) {
log_warn(LD_FS,"Could not mmap file \"%s\": %s", filename,
strerror(errno));
@@ -139,30 +146,88 @@ tor_mmap_file(const char *filename, size_t *size)
close(fd);
- return string;
+ res = tor_malloc_zero(sizeof(tor_mmap_t));
+ *data = res->data = string;
+ *size_out = res->size = size;
+
+ return res;
}
+void
+tor_munmap_file(tor_mmap_t *handle)
+{
+ munmap(handle->data, handle->size);
+}
+#elif defined(MS_WINDOWS)
+typdef struct tor_mmap_t {
+ char *data;
+ HANDLE file_handle;
+ HANDLE mmap_handle;
+ size_t size;
+} tor_mmap_t;
+tor_mmap_t *
+tor_mmap_file(const char *filename, const char **data, size_t *size)
+{
+ win_mmap_t *res = tor_malloc_zero(res);
+ res->mmap_handle = res->file_handle = INVALID_HANDLE_VALUE;
+ /* What's this about tags? */
+
+ /* Open the file. */
+ res->file_handle = XXXXX;
+ res->size = GetFileSize(res->file_handle, NULL);
+
+ res->mmap_handle = CreateFileMapping(res->file_handle,
+ NULL,
+ PAGE_READONLY,
+ 0,
+ size,
+ tagname);
+ if (res->mmap_handle != INVALID_HANDLE_VALUE)
+ goto err;
+ res->data = (char*) MapViewOfFile(res->mmap_handle,
+ access,
+ 0, 0, 0);
+ if (!res->data)
+ goto err;
+
+ *size = res->size;
+ *data = res->data;
+ return res;
+ err:
+ tor_munmap_file(res);
+ return NULL;
+}
void
-tor_munmap_file(const char *memory, size_t size)
+tor_munmap_file(tor_mmap_t *handle)
{
- munmap((char*)memory, size);
+ if (handle->data)
+ UnmapViewOfFile(handle->data);
+ if (res->mmap_handle != INVALID_HANDLE_VALUE)
+ CloseHandle(res->mmap_handle);
+ if (res->file_handle != INVALID_HANDLE_VALUE)
+ CloseHandle(self->file_handle);
+ tor_free(res);
}
#else
-const char *
-tor_mmap_file(const char *filename, size_t *size)
+struct tor_mmap_t {
+ char *data;
+};
+tor_mmap_t *
+tor_mmap_file(const char *filename, const char **data, size_t *size)
{
char *res = read_file_to_str(filename, 1);
+ tor_mmap_t *handle;
if (res)
*size = strlen(res) + 1;
- return res;
+ handle = tor_malloc_zero(sizeof(tor_mmap_t));
+ *data = handle->data = res;
+ return handle;
}
void
-tor_munmap_file(const char *memory, size_t size)
+tor_munmap_file(tor_mmap_t *handle)
{
- char *mem = (char*) memory;
- (void)size;
- tor_free(mem);
+ tor_free(handle->data);
}
#endif
diff --git a/src/common/compat.h b/src/common/compat.h
index 5b76cfe02..eb72e2e66 100644
--- a/src/common/compat.h
+++ b/src/common/compat.h
@@ -114,8 +114,12 @@ size_t strlcpy(char *dst, const char *src, size_t siz);
#define U64_LITERAL(n) (n ## llu)
#endif
-const char *tor_mmap_file(const char *filename, size_t *size);
-void tor_munmap_file(const char *memory, size_t size);
+/** Opaque bookkeeping type used for mmap accounting. */
+typedef struct tor_mmap_t tor_mmap_t;
+
+tor_mmap_t *tor_mmap_file(const char *filename,
+ const char **data, size_t *size);
+void tor_munmap_file(tor_mmap_t *handle);
int tor_snprintf(char *str, size_t size, const char *format, ...)
CHECK_PRINTF(3,4);