1 /* 2 * CDDL HEADER START 3 * 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. 7 * 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. 12 * 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] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _SMBSRV_SMB_FSOPS_H 27 #define _SMBSRV_SMB_FSOPS_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 /* 32 * This header file contains all the functions for the interface between 33 * the smb layer and the fs layer. 34 */ 35 #include <smbsrv/smb_i18n.h> 36 #include <smbsrv/smbinfo.h> 37 #include <smbsrv/smb_vops.h> 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 43 int smb_fsop_open(smb_ofile_t *of); 44 45 int smb_fsop_close(smb_ofile_t *of); 46 47 int smb_fsop_create(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 48 char *name, smb_attr_t *attr, smb_node_t **ret_snode, smb_attr_t *ret_attr); 49 50 int smb_fsop_mkdir(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 51 char *name, smb_attr_t *attr, smb_node_t **ret_snode, smb_attr_t *ret_attr); 52 53 int smb_fsop_remove(struct smb_request *sr, cred_t *cr, smb_node_t *dir_snode, 54 char *name, int od); 55 56 int smb_fsop_rmdir(struct smb_request *sr, cred_t *cr, smb_node_t *dir_snode, 57 char *name, int od); 58 59 int smb_fsop_getattr(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 60 smb_attr_t *attr); 61 62 int smb_fsop_readdir(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 63 uint32_t *cookie, char *name, int *namelen, ino64_t *fileid, 64 struct fs_stream_info *stream_info, smb_node_t **ret_snode, 65 smb_attr_t *ret_attr); 66 67 int smb_fsop_getdents(struct smb_request *sr, cred_t *cr, 68 struct smb_node *dir_snode, uint32_t *cookie, uint64_t *verifierp, 69 int32_t *maxcnt, char *args, char *pattern); 70 71 int smb_maybe_mangled_name(char *name); 72 73 int smb_fsop_rename(struct smb_request *sr, cred_t *cr, 74 smb_node_t *from_snode, char *from_name, smb_node_t *to_snode, 75 char *to_name); 76 77 int smb_fsop_setattr(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 78 smb_attr_t *set_attr, smb_attr_t *ret_attr); 79 80 int smb_fsop_read(struct smb_request *sr, cred_t *cr, 81 smb_node_t *snode, uio_t *uio, smb_attr_t *ret_attr); 82 83 int smb_fsop_write(struct smb_request *sr, cred_t *cr, smb_node_t *snode, 84 uio_t *uio, uint32_t *lcount, smb_attr_t *ret_attr, 85 uint32_t *stability); 86 87 int smb_fsop_statfs(cred_t *cr, struct smb_node *snode, 88 struct statvfs64 *statp); 89 90 int smb_fsop_remove_streams(struct smb_request *sr, cred_t *cr, 91 smb_node_t *fnode); 92 93 int smb_fsop_access(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 94 uint32_t faccess); 95 96 void smb_fsop_eaccess(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 97 uint32_t *faccess); 98 99 int smb_fsop_lookup_name(struct smb_request *sr, cred_t *cr, int flags, 100 smb_node_t *root_node, smb_node_t *dir_snode, char *name, 101 smb_node_t **ret_snode, smb_attr_t *ret_attr); 102 103 int smb_fsop_lookup(struct smb_request *sr, cred_t *cr, int flags, 104 smb_node_t *root_node, smb_node_t *dir_snode, char *name, 105 smb_node_t **ret_snode, smb_attr_t *ret_attr, char *ret_shortname, 106 char *ret_name83); 107 108 int smb_fsop_commit(smb_request_t *sr, cred_t *cr, struct smb_node *snode); 109 110 int smb_fsop_stream_readdir(struct smb_request *sr, cred_t *cr, 111 smb_node_t *fnode, uint32_t *cookiep, struct fs_stream_info *stream_info, 112 smb_node_t **ret_snode, smb_attr_t *ret_attr); 113 114 void smb_fsop_aclfree(acl_t *acl); 115 acl_t *smb_fsop_aclalloc(int acenum, int flags); 116 int smb_fsop_aclread(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 117 smb_fssd_t *fssd); 118 int smb_fsop_aclwrite(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 119 smb_fssd_t *fs_sd); 120 acl_type_t smb_fsop_acltype(smb_node_t *snode); 121 122 void smb_fsop_sdinit(smb_fssd_t *fs_sd, uint32_t secinfo, uint32_t sd_flags); 123 void smb_fsop_sdterm(smb_fssd_t *fssd); 124 int smb_fsop_sdread(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 125 smb_fssd_t *fssd); 126 int smb_fsop_sdwrite(smb_request_t *sr, cred_t *cr, smb_node_t *snode, 127 smb_fssd_t *fs_sd, int overwrite); 128 129 130 void smb_get_caller_context(smb_request_t *sr, caller_context_t *ct); 131 132 /* 133 * Lookup-related flags 134 * 135 * SMB_FOLLOW_LINKS Follow symbolic links. 136 * SMB_IGNORE_CASE Perform case-insensitive lookup. 137 * 138 * Misc flags 139 * 140 * SMB_STREAM_RDDIR use eflags=0 for streams readdirs this 141 * is currently a workaround because the 142 * vfs isn't filling in this flag 143 */ 144 145 #define SMB_FOLLOW_LINKS 0x00000001 146 #define SMB_IGNORE_CASE 0x00000002 147 #define SMB_STREAM_RDDIR 0x00000004 148 149 #ifdef __cplusplus 150 } 151 #endif 152 153 #endif /* _SMBSRV_SMB_FSOPS_H */ 154