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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*
* Copyright (C) 2000-2006 SWsoft. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _FS_H_
#define _FS_H_
#include "types.h"
#include "quota.h"
#define MNT_DETACH 0x00000002
/** Action script prefixes.
*/
#define MOUNT_PREFIX "mount"
#define UMOUNT_PREFIX "umount"
#define START_PREFIX "start"
#define STOP_PREFIX "stop"
#define DESTR_PREFIX "destroyed"
/** Data structure for file system parameter.
*/
typedef struct {
char *private; /**< VPS private path. */
char *private_orig; /**< original not expanded private path. */
char *root; /**< VPS root path. */
char *root_orig; /**< original not expanded root path. */
char *tmpl; /**< TEMPLATE path. */
int noatime;
} fs_param;
/** Get VPS mount status.
*
* @param root VPS root.
* @return 1 - VPS mounted
* 0 - VPS unmounted.
* -1- error
*/
int vps_is_mounted(char *root);
/** Mount VPS.
*
* @param veid VPS id.
* @param fs file system parameters.
* @param dq disk quota parameters.
* @return 0 on success.
*/
int fsmount(envid_t veid, fs_param *fs, dq_param *dq);
/** Mount VPS and run mount action script if exists.
*
* @param h VPS handler.
* @param veid VPS id.
* @param fs file system parameters.
* @param dq disk quota parameters.
* @param skip skip mount action scrips
* @return 0 on success.
*/
int vps_mount(vps_handler *h, envid_t veid, fs_param *fs, dq_param *dq,
skipFlags skip);
/** Unmount VPS.
*
* @param veid VPS id.
* @param root VPS root.
* @return 0 on success.
*/
int fsumount(envid_t veid, char *root);
/** Unmount VPS and run unmount action script if exists.
*
* @param h VPS handler.
* @param veid VPS id.
* @param root VPS root.
* @param skip skip unmount action scrips
* @return 0 on success.
*/
int vps_umount(vps_handler *h, envid_t veid, char *root, skipFlags skip);
int vps_set_fs(fs_param *g_fs, fs_param *fs);
extern const char *vz_fs_get_name();
extern int vz_fs_is_mounted(char *root);
extern int vz_mount(fs_param *fs, int remount);
#endif
|