1 /* 2 * Copyright (c) 2021-2021 Huawei Device Co., Ltd. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without modification, 5 * are permitted provided that the following conditions are met: 6 * 7 * 1. Redistributions of source code must retain the above copyright notice, this list of 8 * conditions and the following disclaimer. 9 * 10 * 2. Redistributions in binary form must reproduce the above copyright notice, this list 11 * of conditions and the following disclaimer in the documentation and/or other materials 12 * provided with the distribution. 13 * 14 * 3. Neither the name of the copyright holder nor the names of its contributors may be used 15 * to endorse or promote products derived from this software without specific prior written 16 * permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 20 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 25 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 26 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 27 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 28 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #ifndef _MOUNT_H_ 32 #define _MOUNT_H_ 33 34 #include <sys/stat.h> 35 #include <sys/statfs.h> 36 #include "vnode.h" 37 38 #define MS_RDONLY 1 39 #define MS_NOSYNC 2 40 41 struct MountOps; 42 struct fsmap_t; 43 44 struct Mount { 45 LIST_ENTRY mountList; /* mount list */ 46 const struct MountOps *ops; /* operations of mount */ 47 struct Vnode *vnodeBeCovered; /* vnode we mounted on */ 48 struct Vnode *vnodeCovered; /* syncer vnode */ 49 struct Vnode *vnodeDev; /* dev vnode */ 50 LIST_HEAD vnodeList; /* list of vnodes */ 51 int vnodeSize; /* size of vnode list */ 52 LIST_HEAD activeVnodeList; /* list of active vnodes */ 53 int activeVnodeSize; /* size of active vnodes list */ 54 void *data; /* private data */ 55 uint32_t hashseed; /* Random seed for vfshash */ 56 unsigned long mountFlags; /* Flags for mount */ 57 char pathName[PATH_MAX]; /* path name of mount point */ 58 char devName[PATH_MAX]; /* path name of dev point */ 59 }; 60 61 struct MountOps { 62 int (*Mount)(struct Mount *mount, struct Vnode *vnode, const void *data); 63 int (*Unmount)(struct Mount *mount, struct Vnode **blkdriver); 64 int (*Statfs)(struct Mount *mount, struct statfs *sbp); 65 int (*Sync)(struct Mount *mount); 66 }; 67 68 typedef int (*foreach_mountpoint_t)(const char *devpoint, 69 const char *mountpoint, 70 struct statfs *statbuf, 71 void *arg); 72 73 struct Mount *MountAlloc(struct Vnode *vnode, struct MountOps *mop); 74 LIST_HEAD *GetMountList(void); 75 #ifdef LOSCFG_MNT_CONTAINER 76 LIST_HEAD *GetMountCache(void); 77 #endif 78 int foreach_mountpoint(foreach_mountpoint_t handler, void *arg); 79 int ForceUmountDev(struct Vnode *dev); 80 #endif 81