⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ntvfs_interface.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
/*    Unix SMB/CIFS implementation.   NTVFS interface functions   Copyright (C) Stefan (metze) Metzmacher 2004   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 "ntvfs/ntvfs.h"/* connect/disconnect */NTSTATUS ntvfs_connect(struct ntvfs_request *req, const char *sharename){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->connect) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->connect(ntvfs, req, sharename);}NTSTATUS ntvfs_disconnect(struct ntvfs_context *ntvfs_ctx){	struct ntvfs_module_context *ntvfs;	if (ntvfs_ctx == NULL) {		return NT_STATUS_INVALID_CONNECTION;	}	ntvfs = ntvfs_ctx->modules;	if (!ntvfs->ops->disconnect) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->disconnect(ntvfs);}/* async setup - called by a backend that wants to setup any state for   a async request */NTSTATUS ntvfs_async_setup(struct ntvfs_request *req, void *private){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->async_setup) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->async_setup(ntvfs, req, private);}/* filesystem operations */NTSTATUS ntvfs_fsinfo(struct ntvfs_request *req, union smb_fsinfo *fs){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->fsinfo) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->fsinfo(ntvfs, req, fs);}/* path operations */NTSTATUS ntvfs_unlink(struct ntvfs_request *req, union smb_unlink *unl){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->unlink) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->unlink(ntvfs, req, unl);}NTSTATUS ntvfs_chkpath(struct ntvfs_request *req, union smb_chkpath *cp){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->chkpath) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->chkpath(ntvfs, req, cp);}NTSTATUS ntvfs_qpathinfo(struct ntvfs_request *req, union smb_fileinfo *st){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->qpathinfo) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->qpathinfo(ntvfs, req, st);}NTSTATUS ntvfs_setpathinfo(struct ntvfs_request *req, union smb_setfileinfo *st){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->setpathinfo) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->setpathinfo(ntvfs, req, st);}NTSTATUS ntvfs_open(struct ntvfs_request *req, union smb_open *oi){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->open) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->open(ntvfs, req, oi);}NTSTATUS ntvfs_mkdir(struct ntvfs_request *req, union smb_mkdir *md){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->mkdir) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->mkdir(ntvfs, req, md);}NTSTATUS ntvfs_rmdir(struct ntvfs_request *req, struct smb_rmdir *rd){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->rmdir) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->rmdir(ntvfs, req, rd);}NTSTATUS ntvfs_rename(struct ntvfs_request *req, union smb_rename *ren){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->rename) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->rename(ntvfs, req, ren);}NTSTATUS ntvfs_copy(struct ntvfs_request *req, struct smb_copy *cp){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->copy) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->copy(ntvfs, req, cp);}/* directory search */NTSTATUS ntvfs_search_first(struct ntvfs_request *req, union smb_search_first *io, void *private,				     bool ntvfs_callback(void *private, const union smb_search_data *file)){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->search_first) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->search_first(ntvfs, req, io, private, ntvfs_callback);}NTSTATUS ntvfs_search_next(struct ntvfs_request *req, union smb_search_next *io, void *private,				    bool ntvfs_callback(void *private, const union smb_search_data *file)){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->search_next) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->search_next(ntvfs, req, io, private, ntvfs_callback);}NTSTATUS ntvfs_search_close(struct ntvfs_request *req, union smb_search_close *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->search_close) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->search_close(ntvfs, req, io);}/* operations on open files */NTSTATUS ntvfs_ioctl(struct ntvfs_request *req, union smb_ioctl *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->ioctl) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->ioctl(ntvfs, req, io);}NTSTATUS ntvfs_read(struct ntvfs_request *req, union smb_read *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->read) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->read(ntvfs, req, io);}NTSTATUS ntvfs_write(struct ntvfs_request *req, union smb_write *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->write) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->write(ntvfs, req, io);}NTSTATUS ntvfs_seek(struct ntvfs_request *req, union smb_seek *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->seek) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->seek(ntvfs, req, io);}NTSTATUS ntvfs_flush(struct ntvfs_request *req,			      union smb_flush *flush){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->flush) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->flush(ntvfs, req, flush);}NTSTATUS ntvfs_lock(struct ntvfs_request *req, union smb_lock *lck){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->lock) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->lock(ntvfs, req, lck);}NTSTATUS ntvfs_qfileinfo(struct ntvfs_request *req, union smb_fileinfo *info){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->qfileinfo) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->qfileinfo(ntvfs, req, info);}NTSTATUS ntvfs_setfileinfo(struct ntvfs_request *req, union smb_setfileinfo *info){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->setfileinfo) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->setfileinfo(ntvfs, req, info);}NTSTATUS ntvfs_close(struct ntvfs_request *req, union smb_close *io){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->close) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->close(ntvfs, req, io);}/* trans interface - used by IPC backend for pipes and RAP calls */NTSTATUS ntvfs_trans(struct ntvfs_request *req, struct smb_trans2 *trans){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->trans) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->trans(ntvfs, req, trans);}/* trans2 interface - only used by CIFS backend to prover complete passthru for testing */NTSTATUS ntvfs_trans2(struct ntvfs_request *req, struct smb_trans2 *trans2){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->trans2) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->trans2(ntvfs, req, trans2);}/* printing specific operations */NTSTATUS ntvfs_lpq(struct ntvfs_request *req, union smb_lpq *lpq){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->lpq) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->lpq(ntvfs, req, lpq);}/* logoff - called when a vuid is closed */NTSTATUS ntvfs_logoff(struct ntvfs_request *req){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->logoff) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->logoff(ntvfs, req);}NTSTATUS ntvfs_exit(struct ntvfs_request *req){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->exit) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->exit(ntvfs, req);}/*  change notify request*/NTSTATUS ntvfs_notify(struct ntvfs_request *req, union smb_notify *info){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->notify) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->notify(ntvfs, req, info);}/*  cancel an outstanding async request*/NTSTATUS ntvfs_cancel(struct ntvfs_request *req){	struct ntvfs_module_context *ntvfs = req->ctx->modules;	if (!ntvfs->ops->cancel) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->ops->cancel(ntvfs, req);}/* initial setup */NTSTATUS ntvfs_next_connect(struct ntvfs_module_context *ntvfs, 				     struct ntvfs_request *req, const char *sharename){	if (!ntvfs->next || !ntvfs->next->ops->connect) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->next->ops->connect(ntvfs->next, req, sharename);}NTSTATUS ntvfs_next_disconnect(struct ntvfs_module_context *ntvfs){	if (!ntvfs->next || !ntvfs->next->ops->disconnect) {		return NT_STATUS_NOT_IMPLEMENTED;	}	return ntvfs->next->ops->disconnect(ntvfs->next);}/* async_setup - called when setting up for a async request */NTSTATUS ntvfs_next_async_setup(struct ntvfs_module_context *ntvfs, 					 struct ntvfs_request *req, 					 void *private){	if (!ntvfs->next || !ntvfs->next->ops->async_setup) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -