1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-25 19:33:18 +03:00
Files
samba-mirror/source/ntvfs/ntvfs.h
Andrew Tridgell c315d6ac1c r2660: - converted the libcli/raw/ library to use talloc_increase_ref_count()
rather than manual reference counts

- properly support SMBexit in the cifs and posix backends

- added a logoff method to all backends

With these changes the RAW-CONTEXT test now passes against the posix backend
2007-10-10 12:59:18 -05:00

95 lines
4.0 KiB
C

/*
Unix SMB/CIFS implementation.
NTVFS structures and defines
Copyright (C) Andrew Tridgell 2003
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* modules can use the following to determine if the interface has changed */
#define NTVFS_INTERFACE_VERSION 1
/* the ntvfs operations structure - contains function pointers to
the backend implementations of each operation */
struct ntvfs_ops {
const char *name;
enum ntvfs_type type;
/* initial setup */
NTSTATUS (*connect)(struct smbsrv_request *req, const char *sharename, int depth);
NTSTATUS (*disconnect)(struct smbsrv_tcon *tcon, int depth);
/* path operations */
NTSTATUS (*unlink)(struct smbsrv_request *req, struct smb_unlink *unl);
NTSTATUS (*chkpath)(struct smbsrv_request *req, struct smb_chkpath *cp);
NTSTATUS (*qpathinfo)(struct smbsrv_request *req, union smb_fileinfo *st);
NTSTATUS (*setpathinfo)(struct smbsrv_request *req, union smb_setfileinfo *st);
NTSTATUS (*open)(struct smbsrv_request *req, union smb_open *oi);
NTSTATUS (*mkdir)(struct smbsrv_request *req, union smb_mkdir *md);
NTSTATUS (*rmdir)(struct smbsrv_request *req, struct smb_rmdir *rd);
NTSTATUS (*rename)(struct smbsrv_request *req, union smb_rename *ren);
NTSTATUS (*copy)(struct smbsrv_request *req, struct smb_copy *cp);
/* directory search */
NTSTATUS (*search_first)(struct smbsrv_request *req, union smb_search_first *io, void *private,
BOOL (*callback)(void *private, union smb_search_data *file));
NTSTATUS (*search_next)(struct smbsrv_request *req, union smb_search_next *io, void *private,
BOOL (*callback)(void *private, union smb_search_data *file));
NTSTATUS (*search_close)(struct smbsrv_request *req, union smb_search_close *io);
/* operations on open files */
NTSTATUS (*ioctl)(struct smbsrv_request *req, union smb_ioctl *io);
NTSTATUS (*read)(struct smbsrv_request *req, union smb_read *io);
NTSTATUS (*write)(struct smbsrv_request *req, union smb_write *io);
NTSTATUS (*seek)(struct smbsrv_request *req, struct smb_seek *io);
NTSTATUS (*flush)(struct smbsrv_request *req, struct smb_flush *flush);
NTSTATUS (*close)(struct smbsrv_request *req, union smb_close *io);
NTSTATUS (*exit)(struct smbsrv_request *req);
NTSTATUS (*lock)(struct smbsrv_request *req, union smb_lock *lck);
NTSTATUS (*setfileinfo)(struct smbsrv_request *req, union smb_setfileinfo *info);
NTSTATUS (*qfileinfo)(struct smbsrv_request *req, union smb_fileinfo *info);
/* filesystem operations */
NTSTATUS (*fsinfo)(struct smbsrv_request *req, union smb_fsinfo *fs);
/* printing specific operations */
NTSTATUS (*lpq)(struct smbsrv_request *req, union smb_lpq *lpq);
/* trans2 interface - only used by CIFS backend to prover complete passthru for testing */
NTSTATUS (*trans2)(struct smbsrv_request *req, struct smb_trans2 *trans2);
/* trans interface - used by IPC backend for pipes and RAP calls */
NTSTATUS (*trans)(struct smbsrv_request *req, struct smb_trans2 *trans);
/* logoff - called when a vuid is closed */
NTSTATUS (*logoff)(struct smbsrv_request *req);
};
/* this structure is used by backends to determine the size of some critical types */
struct ntvfs_critical_sizes {
int interface_version;
int sizeof_ntvfs_ops;
int sizeof_SMB_OFF_T;
int sizeof_smbsrv_tcon;
int sizeof_smbsrv_request;
};
/* useful macro for backends */
#define NTVFS_GET_PRIVATE(struct_name, name, req) \
struct struct_name *name = req->tcon->ntvfs_private_list[req->ntvfs_depth]