2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2010, Peter Dinda <pdinda@northwestern.edu>
11 * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Peter Dinda <pdinda@northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
21 #include <palacios/vmm_file.h>
22 #include <palacios/vmm.h>
23 #include <palacios/vmm_debug.h>
24 #include <palacios/vmm_types.h>
25 #include <palacios/vm_guest.h>
27 static struct v3_file_hooks * file_hooks = NULL;
29 void V3_Init_File(struct v3_file_hooks * hooks) {
31 PrintDebug("V3 file access inited\n");
37 v3_file_t v3_file_open(struct v3_vm_info * vm, char * path, uint8_t mode) {
38 void * priv_data = NULL;
39 V3_ASSERT(file_hooks);
40 V3_ASSERT(file_hooks->open);
43 priv_data = vm->host_priv_data;
46 return file_hooks->open(path, mode, priv_data);
49 int v3_file_close(v3_file_t file) {
50 V3_ASSERT(file_hooks);
51 V3_ASSERT(file_hooks->open);
53 return file_hooks->close(file);
56 uint64_t v3_file_size(v3_file_t file) {
57 V3_ASSERT(file_hooks);
58 V3_ASSERT(file_hooks->size);
60 return file_hooks->size(file);
63 uint64_t v3_file_read(v3_file_t file, uint8_t * buf, uint64_t len, uint64_t off) {
64 V3_ASSERT(file_hooks);
65 V3_ASSERT(file_hooks->read);
67 return file_hooks->read(file, buf, len, off);
71 uint64_t v3_file_write(v3_file_t file, uint8_t * buf, uint64_t len, uint64_t off) {
72 V3_ASSERT(file_hooks);
73 V3_ASSERT(file_hooks->write);
75 return file_hooks->write(file, buf, len, off);