This file is indexed.

/usr/src/virtualbox-guest-4.1.42/vboxsf/vbsfmount.h is in virtualbox-guest-dkms 4.1.42-dfsg-1+deb7u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/** @file
 * vboxsf -- VirtualBox Guest Additions for Linux: mount(2) parameter structure.
 */

/*
 * Copyright (C) 2006-2010 Oracle Corporation
 *
 * This file is part of VirtualBox Open Source Edition (OSE), as
 * available from http://www.virtualbox.org. This file is free software;
 * you can redistribute it and/or modify it under the terms of the GNU
 * General Public License (GPL) as published by the Free Software
 * Foundation, in version 2 as it comes in the "COPYING" file of the
 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
 */

#ifndef VBFS_MOUNT_H
#define VBFS_MOUNT_H

#define MAX_HOST_NAME  256
#define MAX_NLS_NAME    32

/* Linux constraints the size of data mount argument to PAGE_SIZE - 1. */
struct vbsf_mount_info_old
{
    char name[MAX_HOST_NAME];
    char nls_name[MAX_NLS_NAME];
    int  uid;
    int  gid;
    int  ttl;
};

#define VBSF_MOUNT_SIGNATURE_BYTE_0 '\377'
#define VBSF_MOUNT_SIGNATURE_BYTE_1 '\376'
#define VBSF_MOUNT_SIGNATURE_BYTE_2 '\375'

struct vbsf_mount_info_new
{
    char nullchar;              /* name cannot be '\0' -- we use this field
                                   to distinguish between the old structure
                                   and the new structure */
    char signature[3];          /* signature */
    int  length;                /* length of the whole structure */
    char name[MAX_HOST_NAME];   /* share name */
    char nls_name[MAX_NLS_NAME];/* name of an I/O charset */
    int  uid;                   /* user ID for all entries, default 0=root */
    int  gid;                   /* group ID for all entries, default 0=root */
    int  ttl;                   /* time to live */
    int  dmode;                 /* mode for directories if != 0xffffffff */
    int  fmode;                 /* mode for regular files if != 0xffffffff */
    int  dmask;                 /* umask applied to directories */
    int  fmask;                 /* umask applied to regular files */
};

struct vbsf_mount_opts
{
    int  uid;
    int  gid;
    int  ttl;
    int  dmode;
    int  fmode;
    int  dmask;
    int  fmask;
    int  ronly;
    int  noexec;
    int  nodev;
    int  nosuid;
    int  remount;
    char nls_name[MAX_NLS_NAME];
    char *convertcp;
};

/** Completes the mount operation by adding the new mount point to mtab if required. */
int vbsfmount_complete(const char *host_name, const char *mount_point,
                       unsigned long flags, struct vbsf_mount_opts *opts);

#endif /* vbsfmount.h */