VirtualBox

source: vbox/trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_prov.h@ 76537

Last change on this file since 76537 was 76537, checked in by vboxsync, 6 years ago

Additions/solaris: scm --fix-header-guards. bugref:9344

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 5.8 KB
Line 
1/* $Id: vboxfs_prov.h 76537 2018-12-30 06:17:53Z vboxsync $ */
2/** @file
3 * VirtualBox File System for Solaris Guests, provider header.
4 * Portions contributed by: Ronald.
5 */
6
7/*
8 * Copyright (C) 2009-2017 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * The contents of this file may alternatively be used under the terms
19 * of the Common Development and Distribution License Version 1.0
20 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21 * VirtualBox OSE distribution, in which case the provisions of the
22 * CDDL are applicable instead of those of the GPL.
23 *
24 * You may elect to license modified versions of this file under the
25 * terms and conditions of either the GPL or the CDDL or both.
26 */
27
28#ifndef ___VBoxFS_prov_Solaris_h
29#define ___VBoxFS_prov_Solaris_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include <VBox/VBoxGuestLibSharedFolders.h>
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40
41/*
42 * These are the provider interfaces used by sffs to access the underlying
43 * shared file system.
44 */
45#define SFPROV_VERSION 1
46
47/*
48 * Initialization and termination.
49 * sfprov_connect() is called once before any other interfaces and returns
50 * a handle used in further calls. The argument should be SFPROV_VERSION
51 * from above. On failure it returns a NULL pointer.
52 *
53 * sfprov_disconnect() must only be called after all sf file systems have been
54 * unmounted.
55 */
56typedef struct sfp_connection sfp_connection_t;
57
58extern sfp_connection_t *sfprov_connect(int);
59extern void sfprov_disconnect(sfp_connection_t *);
60
61
62/*
63 * Mount / Unmount a shared folder.
64 *
65 * sfprov_mount() takes as input the connection pointer and the name of
66 * the shared folder. On success, it returns zero and supplies an
67 * sfp_mount_t handle. On failure it returns any relevant errno value.
68 *
69 * sfprov_unmount() unmounts the mounted file system. It returns 0 on
70 * success and any relevant errno on failure.
71 *
72 * spf_mount_t is the representation of an active mount point.
73 */
74typedef struct spf_mount_t {
75 VBGLSFMAP map; /**< guest<->host mapping */
76 uid_t sf_uid; /**< owner of the mount point */
77 gid_t sf_gid; /**< group of the mount point */
78 mode_t sf_dmode; /**< mode of all directories if != ~0U */
79 mode_t sf_fmode; /**< mode of all files if != ~0U */
80 mode_t sf_dmask; /**< mask of all directories */
81 mode_t sf_fmask; /**< mask of all files */
82} sfp_mount_t;
83
84extern int sfprov_mount(sfp_connection_t *, char *, sfp_mount_t **);
85extern int sfprov_unmount(sfp_mount_t *);
86
87/*
88 * query information about a mounted file system
89 */
90typedef struct sffs_fsinfo {
91 uint64_t blksize;
92 uint64_t blksused;
93 uint64_t blksavail;
94 uint32_t maxnamesize;
95 uint32_t readonly;
96} sffs_fsinfo_t;
97
98extern int sfprov_get_fsinfo(sfp_mount_t *, sffs_fsinfo_t *);
99
100/*
101 * File operations: open/close/read/write/etc.
102 *
103 * open/create can return any relevant errno, however ENOENT
104 * generally means that the host file didn't exist.
105 */
106typedef struct sffs_stat {
107 mode_t sf_mode;
108 off_t sf_size;
109 off_t sf_alloc;
110 timestruc_t sf_atime;
111 timestruc_t sf_mtime;
112 timestruc_t sf_ctime;
113} sffs_stat_t;
114
115typedef struct sfp_file sfp_file_t;
116
117extern int sfprov_create(sfp_mount_t *, char *path, mode_t mode,
118 sfp_file_t **fp, sffs_stat_t *stat);
119extern int sfprov_diropen(sfp_mount_t *mnt, char *path, sfp_file_t **fp);
120extern int sfprov_open(sfp_mount_t *, char *path, sfp_file_t **fp, int flag);
121extern int sfprov_close(sfp_file_t *fp);
122extern int sfprov_read(sfp_file_t *, char * buffer, uint64_t offset,
123 uint32_t *numbytes);
124extern int sfprov_write(sfp_file_t *, char * buffer, uint64_t offset,
125 uint32_t *numbytes);
126extern int sfprov_fsync(sfp_file_t *fp);
127
128
129/*
130 * get/set information about a file (or directory) using pathname
131 */
132extern int sfprov_get_mode(sfp_mount_t *, char *, mode_t *);
133extern int sfprov_get_size(sfp_mount_t *, char *, uint64_t *);
134extern int sfprov_get_atime(sfp_mount_t *, char *, timestruc_t *);
135extern int sfprov_get_mtime(sfp_mount_t *, char *, timestruc_t *);
136extern int sfprov_get_ctime(sfp_mount_t *, char *, timestruc_t *);
137extern int sfprov_get_attr(sfp_mount_t *, char *, sffs_stat_t *);
138extern int sfprov_set_attr(sfp_mount_t *, char *, uint_t, mode_t,
139 timestruc_t, timestruc_t, timestruc_t);
140extern int sfprov_set_size(sfp_mount_t *, char *, uint64_t);
141
142
143/*
144 * File/Directory operations
145 */
146extern int sfprov_remove(sfp_mount_t *, char *path, uint_t is_link);
147extern int sfprov_mkdir(sfp_mount_t *, char *path, mode_t mode,
148 sfp_file_t **fp, sffs_stat_t *stat);
149extern int sfprov_rmdir(sfp_mount_t *, char *path);
150extern int sfprov_rename(sfp_mount_t *, char *from, char *to, uint_t is_dir);
151
152
153/*
154 * Symbolic link operations
155 */
156extern int sfprov_set_show_symlinks(void);
157extern int sfprov_readlink(sfp_mount_t *, char *path, char *target,
158 size_t tgt_size);
159extern int sfprov_symlink(sfp_mount_t *, char *linkname, char *target,
160 sffs_stat_t *stat);
161
162
163/*
164 * Read directory entries.
165 */
166/*
167 * a singly linked list of buffers, each containing an array of stat's+dirent's.
168 * sf_len is length of the sf_entries array, in bytes.
169 */
170typedef struct sffs_dirents {
171 struct sffs_dirents *sf_next;
172 len_t sf_len;
173 struct sffs_dirent {
174 sffs_stat_t sf_stat;
175 dirent64_t sf_entry; /* this is variable length */
176 } sf_entries[1];
177} sffs_dirents_t;
178
179#define SFFS_DIRENTS_SIZE 8192
180#define SFFS_DIRENTS_OFF (offsetof(sffs_dirents_t, sf_entries[0]))
181
182extern int sfprov_readdir(sfp_mount_t *mnt, char *path,
183 sffs_dirents_t **dirents, int flag);
184
185#ifdef __cplusplus
186}
187#endif
188
189#endif /* !___VBoxFS_prov_Solaris_h */
190
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette