4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
25 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
28 #ifndef _SMBSRV_SMB_FSOPS_H
29 #define _SMBSRV_SMB_FSOPS_H
32 * This header file contains all the functions for the interface between
33 * the smb layer and the fs layer.
35 #include <smbsrv/string.h>
36 #include <smbsrv/smbinfo.h>
37 #include <smbsrv/smb_ktypes.h>
38 #include <smbsrv/smb_vops.h>
39 #include <sys/callb.h>
40 #include <sys/flock.h>
46 int smb_fsop_amask_to_omode(uint32_t);
48 int smb_fsop_open(smb_node_t
*, int, cred_t
*);
49 void smb_fsop_close(smb_node_t
*, int, cred_t
*);
51 int smb_fsop_oplock_install(smb_node_t
*, int);
52 void smb_fsop_oplock_uninstall(smb_node_t
*);
54 int smb_fsop_create(smb_request_t
*, cred_t
*, smb_node_t
*,
55 char *, smb_attr_t
*, smb_node_t
**);
57 int smb_fsop_mkdir(smb_request_t
*, cred_t
*, smb_node_t
*,
58 char *, smb_attr_t
*, smb_node_t
**);
60 int smb_fsop_remove(smb_request_t
*sr
, cred_t
*cr
, smb_node_t
*,
63 int smb_fsop_rmdir(smb_request_t
*, cred_t
*, smb_node_t
*, char *, uint32_t);
65 int smb_fsop_getattr(smb_request_t
*, cred_t
*, smb_node_t
*, smb_attr_t
*);
67 int smb_maybe_mangled_name(char *);
69 int smb_fsop_link(smb_request_t
*, cred_t
*, smb_node_t
*, smb_node_t
*,
72 int smb_fsop_rename(smb_request_t
*, cred_t
*,
73 smb_node_t
*, char *, smb_node_t
*, char *);
75 int smb_fsop_setattr(smb_request_t
*, cred_t
*, smb_node_t
*, smb_attr_t
*);
76 int smb_fsop_set_data_length(smb_request_t
*sr
, cred_t
*cr
, smb_node_t
*,
79 int smb_fsop_read(smb_request_t
*, cred_t
*, smb_node_t
*, uio_t
*);
81 int smb_fsop_write(smb_request_t
*, cred_t
*, smb_node_t
*, uio_t
*,
84 int smb_fsop_statfs(cred_t
*, smb_node_t
*, struct statvfs64
*);
86 uint32_t smb_fsop_remove_streams(smb_request_t
*, cred_t
*, smb_node_t
*);
88 int smb_fsop_access(smb_request_t
*, cred_t
*, smb_node_t
*, uint32_t);
90 void smb_fsop_eaccess(smb_request_t
*, cred_t
*, smb_node_t
*, uint32_t *);
92 int smb_fsop_lookup_name(smb_request_t
*, cred_t
*, int,
93 smb_node_t
*, smb_node_t
*, char *, smb_node_t
**);
95 int smb_fsop_lookup(smb_request_t
*, cred_t
*, int,
96 smb_node_t
*, smb_node_t
*, char *, smb_node_t
**);
98 int smb_fsop_commit(smb_request_t
*, cred_t
*, smb_node_t
*);
100 int smb_fsop_aclread(smb_request_t
*, cred_t
*, smb_node_t
*, smb_fssd_t
*);
101 int smb_fsop_aclwrite(smb_request_t
*, cred_t
*, smb_node_t
*, smb_fssd_t
*);
102 acl_type_t
smb_fsop_acltype(smb_node_t
*);
103 int smb_fsop_sdread(smb_request_t
*, cred_t
*, smb_node_t
*, smb_fssd_t
*);
104 int smb_fsop_sdwrite(smb_request_t
*, cred_t
*, smb_node_t
*, smb_fssd_t
*,
107 uint32_t smb_fsop_shrlock(cred_t
*, smb_node_t
*, uint32_t, uint32_t, uint32_t);
108 void smb_fsop_unshrlock(cred_t
*, smb_node_t
*, uint32_t);
109 int smb_fsop_frlock(smb_node_t
*, smb_lock_t
*, boolean_t
, cred_t
*);
112 * Lookup-related flags
114 * SMB_FOLLOW_LINKS Follow symbolic links.
115 * SMB_IGNORE_CASE Perform case-insensitive lookup.
116 * SMB_CATIA Perform CATIA character substitution.
117 * SMB_ABE Perform Access based enumeration/lookup.
118 * SMB_CASE_SENSITIVE Don't set SMB_IGNORE_CASE based on tree.
121 #define SMB_FOLLOW_LINKS 0x00000001
122 #define SMB_IGNORE_CASE 0x00000002
123 #define SMB_CATIA 0x00000004
124 #define SMB_ABE 0x00000008
125 #define SMB_CASE_SENSITIVE 0x00000010
128 * Increased MAXPATHLEN for SMB. Essentially, we want to allow a
129 * share path up to MAXPATHLEN plus a relative path of MAXPATHLEN.
131 #define SMB_MAXPATHLEN (2 * MAXPATHLEN)
137 #endif /* _SMBSRV_SMB_FSOPS_H */