VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/sharedfolders/utils.c@ 29655

Last change on this file since 29655 was 28998, checked in by vboxsync, 15 years ago

Linux Additions: rename the vboxvfs module to vboxsf to make it load by demand of the Linux kernel

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 25.3 KB
Line 
1/** @file
2 *
3 * vboxsf -- VirtualBox Guest Additions for Linux:
4 * Utility functions.
5 * Mainly conversion from/to VirtualBox/Linux data structures
6 */
7
8/*
9 * Copyright (C) 2006-2007 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#include "vfsmod.h"
21#include <linux/nfs_fs.h>
22#include <linux/vfs.h>
23
24/* #define USE_VMALLOC */
25
26/*
27 * sf_reg_aops and sf_backing_dev_info are just quick implementations to make
28 * sendfile work. For more information have a look at
29 *
30 * http://us1.samba.org/samba/ftp/cifs-cvs/ols2006-fs-tutorial-smf.odp
31 *
32 * and the sample implementation
33 *
34 * http://pserver.samba.org/samba/ftp/cifs-cvs/samplefs.tar.gz
35 */
36
37#if LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 0)
38static void
39sf_ftime_from_timespec (time_t *time, RTTIMESPEC *ts)
40{
41 int64_t t = RTTimeSpecGetNano (ts);
42
43 do_div (t, 1000000000);
44 *time = t;
45}
46
47static void
48sf_timespec_from_ftime (RTTIMESPEC *ts, time_t *time)
49{
50 int64_t t = 1000000000 * *time;
51 RTTimeSpecSetNano (ts, t);
52}
53#else /* >= 2.6.0 */
54static void
55sf_ftime_from_timespec (struct timespec *tv, RTTIMESPEC *ts)
56{
57 int64_t t = RTTimeSpecGetNano (ts);
58 int64_t nsec;
59
60 nsec = do_div (t, 1000000000);
61 tv->tv_sec = t;
62 tv->tv_nsec = nsec;
63}
64
65static void
66sf_timespec_from_ftime (RTTIMESPEC *ts, struct timespec *tv)
67{
68 int64_t t = (int64_t)tv->tv_nsec + (int64_t)tv->tv_sec * 1000000000;
69 RTTimeSpecSetNano (ts, t);
70}
71#endif /* >= 2.6.0 */
72
73/* set [inode] attributes based on [info], uid/gid based on [sf_g] */
74void
75sf_init_inode (struct sf_glob_info *sf_g, struct inode *inode,
76 RTFSOBJINFO *info)
77{
78 int is_dir;
79 RTFSOBJATTR *attr;
80 int mode;
81
82 TRACE ();
83
84 attr = &info->Attr;
85 is_dir = RTFS_IS_DIRECTORY (attr->fMode);
86
87#define mode_set(r) attr->fMode & (RTFS_UNIX_##r) ? (S_##r) : 0;
88 mode = mode_set (ISUID);
89 mode |= mode_set (ISGID);
90
91 mode |= mode_set (IRUSR);
92 mode |= mode_set (IWUSR);
93 mode |= mode_set (IXUSR);
94
95 mode |= mode_set (IRGRP);
96 mode |= mode_set (IWGRP);
97 mode |= mode_set (IXGRP);
98
99 mode |= mode_set (IROTH);
100 mode |= mode_set (IWOTH);
101 mode |= mode_set (IXOTH);
102#undef mode_set
103
104#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 0)
105 inode->i_mapping->a_ops = &sf_reg_aops;
106 inode->i_mapping->backing_dev_info = &sf_g->bdi;
107#endif
108
109 if (is_dir) {
110 inode->i_mode = sf_g->dmode != ~0 ? (sf_g->dmode & 0777) : mode;
111 inode->i_mode &= ~sf_g->dmask;
112 inode->i_mode |= S_IFDIR;
113 inode->i_op = &sf_dir_iops;
114 inode->i_fop = &sf_dir_fops;
115 /* XXX: this probably should be set to the number of entries
116 in the directory plus two (. ..) */
117 inode->i_nlink = 1;
118 }
119 else {
120 inode->i_mode = sf_g->fmode != ~0 ? (sf_g->fmode & 0777): mode;
121 inode->i_mode &= ~sf_g->fmask;
122 inode->i_mode |= S_IFREG;
123 inode->i_op = &sf_reg_iops;
124 inode->i_fop = &sf_reg_fops;
125 inode->i_nlink = 1;
126 }
127
128 inode->i_uid = sf_g->uid;
129 inode->i_gid = sf_g->gid;
130 inode->i_size = info->cbObject;
131#if LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 19) && !defined(KERNEL_FC6)
132 inode->i_blksize = 4096;
133#endif
134#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 4, 11)
135 inode->i_blkbits = 12;
136#endif
137 /* i_blocks always in units of 512 bytes! */
138 inode->i_blocks = (info->cbAllocated + 511) / 512;
139
140 sf_ftime_from_timespec (&inode->i_atime, &info->AccessTime);
141 sf_ftime_from_timespec (&inode->i_ctime, &info->ChangeTime);
142 sf_ftime_from_timespec (&inode->i_mtime, &info->ModificationTime);
143}
144
145int
146sf_stat (const char *caller, struct sf_glob_info *sf_g,
147 SHFLSTRING *path, RTFSOBJINFO *result, int ok_to_fail)
148{
149 int rc;
150 SHFLCREATEPARMS params;
151
152 TRACE ();
153
154 RT_ZERO(params);
155 params.CreateFlags = SHFL_CF_LOOKUP | SHFL_CF_ACT_FAIL_IF_NEW;
156 LogFunc(("sf_stat: calling vboxCallCreate, file %s, flags %#x\n",
157 path->String.utf8, params.CreateFlags));
158 rc = vboxCallCreate (&client_handle, &sf_g->map, path, &params);
159 if (RT_FAILURE (rc)) {
160 LogFunc(("vboxCallCreate(%s) failed. caller=%s, rc=%Rrc\n",
161 path->String.utf8, rc, caller));
162 return -EPROTO;
163 }
164
165 if (params.Result != SHFL_FILE_EXISTS) {
166 if (!ok_to_fail) {
167 LogFunc(("vboxCallCreate(%s) file does not exist. caller=%s, result=%d\n",
168 path->String.utf8, params.Result, caller));
169 }
170 return -ENOENT;
171 }
172
173 *result = params.Info;
174 return 0;
175}
176
177/* this is called directly as iop on 2.4, indirectly as dop
178 [sf_dentry_revalidate] on 2.4/2.6, indirectly as iop through
179 [sf_getattr] on 2.6. the job is to find out whether dentry/inode is
180 still valid. the test is failed if [dentry] does not have an inode
181 or [sf_stat] is unsuccessful, otherwise we return success and
182 update inode attributes */
183int
184sf_inode_revalidate (struct dentry *dentry)
185{
186 int err;
187 struct sf_glob_info *sf_g;
188 struct sf_inode_info *sf_i;
189 RTFSOBJINFO info;
190
191 TRACE ();
192 if (!dentry || !dentry->d_inode) {
193 LogFunc(("no dentry(%p) or inode(%p)\n", dentry, dentry->d_inode));
194 return -EINVAL;
195 }
196
197 sf_g = GET_GLOB_INFO (dentry->d_inode->i_sb);
198 sf_i = GET_INODE_INFO (dentry->d_inode);
199
200#if 0
201 printk ("%s called by %p:%p\n",
202 sf_i->path->String.utf8,
203 __builtin_return_address (0),
204 __builtin_return_address (1));
205#endif
206
207 BUG_ON (!sf_g);
208 BUG_ON (!sf_i);
209
210 if (!sf_i->force_restat) {
211 if (jiffies - dentry->d_time < sf_g->ttl) {
212 return 0;
213 }
214 }
215
216 err = sf_stat (__func__, sf_g, sf_i->path, &info, 1);
217 if (err) {
218 return err;
219 }
220
221 dentry->d_time = jiffies;
222 sf_init_inode (sf_g, dentry->d_inode, &info);
223 return 0;
224}
225
226/* this is called during name resolution/lookup to check if the
227 [dentry] in the cache is still valid. the job is handled by
228 [sf_inode_revalidate] */
229static int
230#if LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 0)
231sf_dentry_revalidate (struct dentry *dentry, int flags)
232#else
233sf_dentry_revalidate (struct dentry *dentry, struct nameidata *nd)
234#endif
235{
236 TRACE ();
237 if (sf_inode_revalidate (dentry)) {
238 return 0;
239 }
240 return 1;
241}
242
243/* on 2.6 this is a proxy for [sf_inode_revalidate] which (as a side
244 effect) updates inode attributes for [dentry] (given that [dentry]
245 has inode at all) from these new attributes we derive [kstat] via
246 [generic_fillattr] */
247#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 0)
248int
249sf_getattr (struct vfsmount *mnt, struct dentry *dentry, struct kstat *kstat)
250{
251 int err;
252
253 TRACE ();
254 err = sf_inode_revalidate (dentry);
255 if (err) {
256 return err;
257 }
258
259 generic_fillattr (dentry->d_inode, kstat);
260 return 0;
261}
262
263int
264sf_setattr (struct dentry *dentry, struct iattr *iattr)
265{
266 struct sf_glob_info *sf_g;
267 struct sf_inode_info *sf_i;
268 SHFLCREATEPARMS params;
269 RTFSOBJINFO info;
270 uint32_t cbBuffer;
271 int rc, err;
272
273 TRACE ();
274
275 sf_g = GET_GLOB_INFO (dentry->d_inode->i_sb);
276 sf_i = GET_INODE_INFO (dentry->d_inode);
277 err = 0;
278
279 RT_ZERO(params);
280
281 params.CreateFlags = SHFL_CF_ACT_OPEN_IF_EXISTS
282 | SHFL_CF_ACT_FAIL_IF_NEW
283 | SHFL_CF_ACCESS_ATTR_WRITE;
284
285 /* this is at least required for Posix hosts */
286 if (iattr->ia_valid & ATTR_SIZE)
287 params.CreateFlags |= SHFL_CF_ACCESS_WRITE;
288
289 rc = vboxCallCreate (&client_handle, &sf_g->map, sf_i->path, &params);
290 if (RT_FAILURE (rc)) {
291 LogFunc(("vboxCallCreate(%s) failed rc=%Rrc\n",
292 sf_i->path->String.utf8, rc));
293 err = -RTErrConvertToErrno(rc);
294 goto fail2;
295 }
296 if (params.Result != SHFL_FILE_EXISTS) {
297 LogFunc(("file %s does not exist\n", sf_i->path->String.utf8));
298 err = -ENOENT;
299 goto fail1;
300 }
301
302 /* Setting the file size and setting the other attributes has to be
303 * handled separately, see implementation of vbsfSetFSInfo() in
304 * vbsf.cpp */
305 if (iattr->ia_valid & (ATTR_MODE | ATTR_ATIME | ATTR_MTIME))
306 {
307#define mode_set(r) ((iattr->ia_mode & (S_##r)) ? RTFS_UNIX_##r : 0)
308
309 RT_ZERO(info);
310 if (iattr->ia_valid & ATTR_MODE)
311 {
312 info.Attr.fMode = mode_set (ISUID);
313 info.Attr.fMode |= mode_set (ISGID);
314 info.Attr.fMode |= mode_set (IRUSR);
315 info.Attr.fMode |= mode_set (IWUSR);
316 info.Attr.fMode |= mode_set (IXUSR);
317 info.Attr.fMode |= mode_set (IRGRP);
318 info.Attr.fMode |= mode_set (IWGRP);
319 info.Attr.fMode |= mode_set (IXGRP);
320 info.Attr.fMode |= mode_set (IROTH);
321 info.Attr.fMode |= mode_set (IWOTH);
322 info.Attr.fMode |= mode_set (IXOTH);
323
324 if (iattr->ia_mode & S_IFDIR)
325 info.Attr.fMode |= RTFS_TYPE_DIRECTORY;
326 else
327 info.Attr.fMode |= RTFS_TYPE_FILE;
328 }
329
330 if (iattr->ia_valid & ATTR_ATIME)
331 sf_timespec_from_ftime (&info.AccessTime, &iattr->ia_atime);
332 if (iattr->ia_valid & ATTR_MTIME)
333 sf_timespec_from_ftime (&info.ModificationTime, &iattr->ia_mtime);
334 /* ignore ctime (inode change time) as it can't be set from userland anyway */
335
336 cbBuffer = sizeof(info);
337 rc = vboxCallFSInfo(&client_handle, &sf_g->map, params.Handle,
338 SHFL_INFO_SET | SHFL_INFO_FILE, &cbBuffer,
339 (PSHFLDIRINFO)&info);
340 if (RT_FAILURE (rc)) {
341 LogFunc(("vboxCallFSInfo(%s, FILE) failed rc=%Rrc\n",
342 sf_i->path->String.utf8, rc));
343 err = -RTErrConvertToErrno(rc);
344 goto fail1;
345 }
346 }
347
348 if (iattr->ia_valid & ATTR_SIZE)
349 {
350 RT_ZERO(info);
351 info.cbObject = iattr->ia_size;
352 cbBuffer = sizeof(info);
353 rc = vboxCallFSInfo(&client_handle, &sf_g->map, params.Handle,
354 SHFL_INFO_SET | SHFL_INFO_SIZE, &cbBuffer,
355 (PSHFLDIRINFO)&info);
356 if (RT_FAILURE (rc)) {
357 LogFunc(("vboxCallFSInfo(%s, SIZE) failed rc=%Rrc\n",
358 sf_i->path->String.utf8, rc));
359 err = -RTErrConvertToErrno(rc);
360 goto fail1;
361 }
362 }
363
364 rc = vboxCallClose (&client_handle, &sf_g->map, params.Handle);
365 if (RT_FAILURE (rc))
366 {
367 LogFunc(("vboxCallClose(%s) failed rc=%Rrc\n",
368 sf_i->path->String.utf8, rc));
369 }
370
371 return sf_inode_revalidate (dentry);
372
373fail1:
374 rc = vboxCallClose (&client_handle, &sf_g->map, params.Handle);
375 if (RT_FAILURE (rc))
376 {
377 LogFunc(("vboxCallClose(%s) failed rc=%Rrc\n",
378 sf_i->path->String.utf8, rc));
379 }
380fail2:
381 return err;
382}
383#endif /* >= 2.6.0 */
384
385static int
386sf_make_path (const char *caller, struct sf_inode_info *sf_i,
387 const char *d_name, size_t d_len, SHFLSTRING **result)
388{
389 size_t path_len, shflstring_len;
390 SHFLSTRING *tmp;
391 uint16_t p_len;
392 uint8_t *p_name;
393 uint8_t *dst;
394 int is_root = 0;
395
396 TRACE ();
397 p_len = sf_i->path->u16Length;
398 p_name = sf_i->path->String.utf8;
399
400 if (p_len == 1 && *p_name == '/') {
401 path_len = d_len + 1;
402 is_root = 1;
403 }
404 else {
405 /* lengths of constituents plus terminating zero plus slash */
406 path_len = p_len + d_len + 2;
407 if (path_len > 0xffff) {
408 LogFunc(("path too long. caller=%s, path_len=%zu\n", caller, path_len));
409 return -ENAMETOOLONG;
410 }
411 }
412
413 shflstring_len = offsetof (SHFLSTRING, String.utf8) + path_len;
414 tmp = kmalloc (shflstring_len, GFP_KERNEL);
415 if (!tmp) {
416 LogRelFunc(("kmalloc failed, caller=%s\n", caller));
417 return -ENOMEM;
418 }
419 tmp->u16Length = path_len - 1;
420 tmp->u16Size = path_len;
421
422 if (is_root) {
423 memcpy (tmp->String.utf8, d_name, d_len + 1);
424 }
425 else {
426 dst = tmp->String.utf8;
427 memcpy (dst, p_name, p_len);
428 dst += p_len; *dst++ = '/';
429 memcpy (dst, d_name, d_len);
430 dst[d_len] = 0;
431 }
432
433 *result = tmp;
434 return 0;
435}
436
437/* [dentry] contains string encoded in coding system that corresponds
438 to [sf_g]->nls, we must convert it to UTF8 here and pass down to
439 [sf_make_path] which will allocate SHFLSTRING and fill it in */
440int
441sf_path_from_dentry (const char *caller, struct sf_glob_info *sf_g,
442 struct sf_inode_info *sf_i, struct dentry *dentry,
443 SHFLSTRING **result)
444{
445 int err;
446 const char *d_name;
447 size_t d_len;
448 const char *name;
449 size_t len = 0;
450
451 TRACE ();
452 d_name = dentry->d_name.name;
453 d_len = dentry->d_name.len;
454
455 if (sf_g->nls) {
456 size_t in_len, i, out_bound_len;
457 const char *in;
458 char *out;
459
460 in = d_name;
461 in_len = d_len;
462
463 out_bound_len = PATH_MAX;
464 out = kmalloc (out_bound_len, GFP_KERNEL);
465 name = out;
466
467 for (i = 0; i < d_len; ++i) {
468 /* We renamed the linux kernel wchar_t type to linux_wchar_t in
469 the-linux-kernel.h, as it conflicts with the C++ type of that name. */
470 linux_wchar_t uni;
471 int nb;
472
473 nb = sf_g->nls->char2uni (in, in_len, &uni);
474 if (nb < 0) {
475 LogFunc(("nls->char2uni failed %x %d\n",
476 *in, in_len));
477 err = -EINVAL;
478 goto fail1;
479 }
480 in_len -= nb;
481 in += nb;
482
483#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 31)
484 nb = utf32_to_utf8 (uni, out, out_bound_len);
485#else
486 nb = utf8_wctomb (out, uni, out_bound_len);
487#endif
488 if (nb < 0) {
489 LogFunc(("nls->uni2char failed %x %d\n",
490 uni, out_bound_len));
491 err = -EINVAL;
492 goto fail1;
493 }
494 out_bound_len -= nb;
495 out += nb;
496 len += nb;
497 }
498 if (len >= PATH_MAX - 1) {
499 err = -ENAMETOOLONG;
500 goto fail1;
501 }
502
503 LogFunc(("result(%d) = %.*s\n", len, len, name));
504 *out = 0;
505 }
506 else {
507 name = d_name;
508 len = d_len;
509 }
510
511 err = sf_make_path (caller, sf_i, name, len, result);
512 if (name != d_name) {
513 kfree (name);
514 }
515 return err;
516
517 fail1:
518 kfree (name);
519 return err;
520}
521
522int
523sf_nlscpy (struct sf_glob_info *sf_g,
524 char *name, size_t name_bound_len,
525 const unsigned char *utf8_name, size_t utf8_len)
526{
527 if (sf_g->nls) {
528 const char *in;
529 char *out;
530 size_t out_len;
531 size_t out_bound_len;
532 size_t in_bound_len;
533
534 in = utf8_name;
535 in_bound_len = utf8_len;
536
537 out = name;
538 out_len = 0;
539 out_bound_len = name_bound_len;
540
541 while (in_bound_len) {
542 int nb;
543 wchar_t uni;
544
545#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 31)
546 nb = utf8_to_utf32 (in, in_bound_len, &uni);
547#else
548 nb = utf8_mbtowc (&uni, in, in_bound_len);
549#endif
550 if (nb < 0) {
551 LogFunc(("utf8_mbtowc failed(%s) %x:%d\n",
552 (const char *) utf8_name, *in, in_bound_len));
553 return -EINVAL;
554 }
555 in += nb;
556 in_bound_len -= nb;
557
558 nb = sf_g->nls->uni2char (uni, out, out_bound_len);
559 if (nb < 0) {
560 LogFunc(("nls->uni2char failed(%s) %x:%d\n",
561 utf8_name, uni, out_bound_len));
562 return nb;
563 }
564 out += nb;
565 out_bound_len -= nb;
566 out_len += nb;
567 }
568
569 *out = 0;
570 return 0;
571 }
572 else {
573 if (utf8_len + 1 > name_bound_len) {
574 return -ENAMETOOLONG;
575 }
576 else {
577 memcpy (name, utf8_name, utf8_len + 1);
578 }
579 return 0;
580 }
581}
582
583static struct sf_dir_buf *
584sf_dir_buf_alloc (void)
585{
586 struct sf_dir_buf *b;
587
588 TRACE ();
589 b = kmalloc (sizeof (*b), GFP_KERNEL);
590 if (!b) {
591 LogRelFunc(("could not alloc directory buffer\n"));
592 return NULL;
593 }
594
595#ifdef USE_VMALLOC
596 b->buf = vmalloc (16384);
597#else
598 b->buf = kmalloc (16384, GFP_KERNEL);
599#endif
600 if (!b->buf) {
601 kfree (b);
602 LogRelFunc(("could not alloc directory buffer storage\n"));
603 return NULL;
604 }
605
606 INIT_LIST_HEAD (&b->head);
607 b->nb_entries = 0;
608 b->used_bytes = 0;
609 b->free_bytes = 16384;
610 return b;
611}
612
613static void
614sf_dir_buf_free (struct sf_dir_buf *b)
615{
616 BUG_ON (!b || !b->buf);
617
618 TRACE ();
619 list_del (&b->head);
620#ifdef USE_VMALLOC
621 vfree (b->buf);
622#else
623 kfree (b->buf);
624#endif
625 kfree (b);
626}
627
628void
629sf_dir_info_free (struct sf_dir_info *p)
630{
631 struct list_head *list, *pos, *tmp;
632
633 TRACE ();
634 list = &p->info_list;
635 list_for_each_safe (pos, tmp, list) {
636 struct sf_dir_buf *b;
637
638 b = list_entry (pos, struct sf_dir_buf, head);
639 sf_dir_buf_free (b);
640 }
641 kfree (p);
642}
643
644struct sf_dir_info *
645sf_dir_info_alloc (void)
646{
647 struct sf_dir_info *p;
648
649 TRACE ();
650 p = kmalloc (sizeof (*p), GFP_KERNEL);
651 if (!p) {
652 LogRelFunc(("could not alloc directory info\n"));
653 return NULL;
654 }
655
656 INIT_LIST_HEAD (&p->info_list);
657 return p;
658}
659
660static struct sf_dir_buf *
661sf_get_non_empty_dir_buf (struct sf_dir_info *sf_d)
662{
663 struct list_head *list, *pos;
664
665 list = &sf_d->info_list;
666 list_for_each (pos, list) {
667 struct sf_dir_buf *b;
668
669 b = list_entry (pos, struct sf_dir_buf, head);
670 if (!b) {
671 return NULL;
672 }
673 else {
674 if (b->free_bytes > 0) {
675 return b;
676 }
677 }
678 }
679
680 return NULL;
681}
682
683int
684sf_dir_read_all (struct sf_glob_info *sf_g, struct sf_inode_info *sf_i,
685 struct sf_dir_info *sf_d, SHFLHANDLE handle)
686{
687 int err;
688 SHFLSTRING *mask;
689 struct sf_dir_buf *b;
690
691 TRACE ();
692 err = sf_make_path (__func__, sf_i, "*", 1, &mask);
693 if (err) {
694 goto fail0;
695 }
696
697 b = sf_get_non_empty_dir_buf (sf_d);
698 for (;;) {
699 int rc;
700 void *buf;
701 uint32_t buf_size;
702 uint32_t nb_ents;
703
704 if (!b) {
705 b = sf_dir_buf_alloc ();
706 if (!b) {
707 err = -ENOMEM;
708 LogRelFunc(("could not alloc directory buffer\n"));
709 goto fail1;
710 }
711 }
712
713 list_add (&b->head, &sf_d->info_list);
714
715 buf = b->buf;
716 buf_size = b->free_bytes;
717
718 rc = vboxCallDirInfo (
719 &client_handle,
720 &sf_g->map,
721 handle,
722 mask,
723 0,
724 0,
725 &buf_size,
726 buf,
727 &nb_ents
728 );
729 switch (rc) {
730 case VINF_SUCCESS:
731 /* fallthrough */
732 case VERR_NO_MORE_FILES:
733 break;
734
735 case VERR_NO_TRANSLATION:
736 LogFunc(("host could not translate entry\n"));
737 /* XXX */
738 break;
739
740 default:
741 err = -RTErrConvertToErrno (rc);
742 LogFunc(("vboxCallDirInfo failed rc=%Rrc\n", rc));
743 goto fail1;
744 }
745
746 b->nb_entries += nb_ents;
747 b->free_bytes -= buf_size;
748 b->used_bytes += buf_size;
749 b = NULL;
750
751 if (RT_FAILURE (rc)) {
752 break;
753 }
754 }
755 return 0;
756
757 fail1:
758 kfree (mask);
759 fail0:
760 return err;
761}
762
763int sf_get_volume_info(struct super_block *sb, STRUCT_STATFS *stat)
764{
765 struct sf_glob_info *sf_g;
766 SHFLVOLINFO SHFLVolumeInfo;
767 uint32_t cbBuffer;
768 int rc;
769
770 sf_g = GET_GLOB_INFO (sb);
771 cbBuffer = sizeof(SHFLVolumeInfo);
772 rc = vboxCallFSInfo(&client_handle, &sf_g->map, 0, SHFL_INFO_GET | SHFL_INFO_VOLUME,
773 &cbBuffer, (PSHFLDIRINFO)&SHFLVolumeInfo);
774 if (RT_FAILURE(rc))
775 return -RTErrConvertToErrno(rc);
776
777 stat->f_type = NFS_SUPER_MAGIC; /* XXX vboxsf type? */
778 stat->f_bsize = SHFLVolumeInfo.ulBytesPerAllocationUnit;
779 stat->f_blocks = SHFLVolumeInfo.ullTotalAllocationBytes
780 / SHFLVolumeInfo.ulBytesPerAllocationUnit;
781 stat->f_bfree = SHFLVolumeInfo.ullAvailableAllocationBytes
782 / SHFLVolumeInfo.ulBytesPerAllocationUnit;
783 stat->f_bavail = SHFLVolumeInfo.ullAvailableAllocationBytes
784 / SHFLVolumeInfo.ulBytesPerAllocationUnit;
785 stat->f_files = 1000;
786 stat->f_ffree = 1000; /* don't return 0 here since the guest may think
787 * that it is not possible to create any more files */
788 stat->f_fsid.val[0] = 0;
789 stat->f_fsid.val[1] = 0;
790 stat->f_namelen = 255;
791 return 0;
792}
793
794struct dentry_operations sf_dentry_ops = {
795 .d_revalidate = sf_dentry_revalidate
796};
797
798int sf_init_backing_dev(struct sf_glob_info *sf_g, const char *name)
799{
800 int rc = 0;
801
802#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 0)
803 sf_g->bdi.ra_pages = 0; /* No readahead */
804# if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 12)
805 sf_g->bdi.capabilities = BDI_CAP_MAP_DIRECT /* MAP_SHARED */
806 | BDI_CAP_MAP_COPY /* MAP_PRIVATE */
807 | BDI_CAP_READ_MAP /* can be mapped for reading */
808 | BDI_CAP_WRITE_MAP /* can be mapped for writing */
809 | BDI_CAP_EXEC_MAP; /* can be mapped for execution */
810# endif /* >= 2.6.12 */
811# if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 24)
812 rc = bdi_init(&sf_g->bdi);
813# if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 26)
814 if (!rc)
815 rc = bdi_register(&sf_g->bdi, NULL, "vboxsf-%s", name);
816# endif /* >= 2.6.26 */
817# endif /* >= 2.6.24 */
818#endif /* >= 2.6.0 */
819 return rc;
820}
821
822void sf_done_backing_dev(struct sf_glob_info *sf_g)
823{
824#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 24)
825 bdi_destroy(&sf_g->bdi); /* includes bdi_unregister() */
826#endif
827}
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