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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/*
* Module for snapshot management using shell callouts
*
* Copyright (C) David Disseldorp 2013-2015
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "include/ntioctl.h"
#include "system/filesys.h"
#include "smbd/smbd.h"
/*
* Check whether a path can be shadow copied. Return the base volume, allowing
* the caller to determine if multiple paths lie on the same base volume.
*/
static NTSTATUS shell_snap_check_path(struct vfs_handle_struct *handle,
TALLOC_CTX *mem_ctx,
const char *service_path,
char **base_volume)
{
NTSTATUS status;
const char *cmd;
char *cmd_run;
int ret;
TALLOC_CTX *tmp_ctx;
cmd = lp_parm_const_string(handle->conn->params->service,
"shell_snap", "check path command", "");
if ((cmd == NULL) || (strlen(cmd) == 0)) {
DEBUG(0,
("\"shell_snap:check path command\" not configured\n"));
status = NT_STATUS_NOT_SUPPORTED;
goto err_out;
}
tmp_ctx = talloc_new(mem_ctx);
if (tmp_ctx == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_out;
}
/* add service path argument */
cmd_run = talloc_asprintf(tmp_ctx, "%s %s", cmd, service_path);
if (cmd_run == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_tmp_free;
}
ret = smbrun(cmd_run, NULL);
if (ret != 0) {
DEBUG(0, ("%s failed with %d\n", cmd_run, ret));
status = NT_STATUS_NOT_SUPPORTED;
goto err_tmp_free;
}
/* assume the service path is the base volume */
*base_volume = talloc_strdup(mem_ctx, service_path);
if (*base_volume == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_tmp_free;
}
status = NT_STATUS_OK;
err_tmp_free:
talloc_free(tmp_ctx);
err_out:
return status;
}
static NTSTATUS shell_snap_create(struct vfs_handle_struct *handle,
TALLOC_CTX *mem_ctx,
const char *base_volume,
time_t *tstamp,
bool rw,
char **base_path,
char **snap_path)
{
const char *cmd;
char *cmd_run;
char **qlines;
int numlines, ret;
int fd = -1;
TALLOC_CTX *tmp_ctx;
NTSTATUS status;
cmd = lp_parm_const_string(handle->conn->params->service,
"shell_snap", "create command", "");
if ((cmd == NULL) || (strlen(cmd) == 0)) {
DEBUG(1, ("\"shell_snap:create command\" not configured\n"));
status = NT_STATUS_NOT_SUPPORTED;
goto err_out;
}
tmp_ctx = talloc_new(mem_ctx);
if (tmp_ctx == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_out;
}
/* add base vol argument */
cmd_run = talloc_asprintf(tmp_ctx, "%s %s", cmd, base_volume);
if (cmd_run == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_tmp_free;
}
ret = smbrun(cmd_run, &fd);
talloc_free(cmd_run);
if (ret != 0) {
if (fd != -1) {
close(fd);
}
status = NT_STATUS_UNSUCCESSFUL;
goto err_tmp_free;
}
numlines = 0;
qlines = fd_lines_load(fd, &numlines, PATH_MAX + 1, tmp_ctx);
close(fd);
/* script must return the snapshot path as a single line */
if ((numlines == 0) || (qlines == NULL) || (qlines[0] == NULL)) {
status = NT_STATUS_UNSUCCESSFUL;
goto err_tmp_free;
}
*base_path = talloc_strdup(mem_ctx, base_volume);
if (*base_path == NULL) {
status = NT_STATUS_NO_MEMORY;
goto err_tmp_free;
}
*snap_path = talloc_strdup(mem_ctx, qlines[0]);
if (*snap_path == NULL) {
status = NT_STATUS_NO_MEMORY;
talloc_free(*base_path);
goto err_tmp_free;
}
status = NT_STATUS_OK;
err_tmp_free:
talloc_free(tmp_ctx);
err_out:
return status;
}
static NTSTATUS shell_snap_delete(struct vfs_handle_struct *handle,
TALLOC_CTX *mem_ctx,
char *base_path,
char *snap_path)
{
const char *cmd;
char *cmd_run;
int ret;
cmd = lp_parm_const_string(handle->conn->params->service,
"shell_snap", "delete command", "");
if ((cmd == NULL) || (strlen(cmd) == 0)) {
DEBUG(1, ("\"shell_snap:delete command\" not configured\n"));
return NT_STATUS_NOT_SUPPORTED;
}
/* add base path and snap path arguments */
cmd_run = talloc_asprintf(mem_ctx, "%s %s %s",
cmd, base_path, snap_path);
if (cmd_run == NULL) {
return NT_STATUS_NO_MEMORY;
}
ret = smbrun(cmd_run, NULL);
talloc_free(cmd_run);
if (ret != 0) {
return NT_STATUS_UNSUCCESSFUL;
}
return NT_STATUS_OK;
}
static struct vfs_fn_pointers shell_snap_fns = {
.snap_check_path_fn = shell_snap_check_path,
.snap_create_fn = shell_snap_create,
.snap_delete_fn = shell_snap_delete,
};
NTSTATUS vfs_shell_snap_init(void);
NTSTATUS vfs_shell_snap_init(void)
{
return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
"shell_snap", &shell_snap_fns);
}
|