Print this page
NEX-14666 Need to provide SMB 2.1 Client
NEX-17187 panic in smbfs_acl_store
NEX-17231 smbfs create xattr files finds wrong file
NEX-17224 smbfs lookup EINVAL should be ENOENT
NEX-17260 SMB1 client fails to list directory after NEX-14666
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Saso Kiselkov <saso.kiselkov@nexenta.com>
Reviewed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
and: (cleanup)
1575 untangle libmlrpc from SMB server
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
re #12739 rb4173 AD join with lmauth_level=2 fails
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/lib/libsmbfs/netsmb/smbfs_api.h
+++ new/usr/src/lib/libsmbfs/netsmb/smbfs_api.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
↓ open down ↓ |
14 lines elided |
↑ open up ↑ |
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21
22 22 /*
23 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 24 * Use is subject to license terms.
25 - * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
25 + *
26 + * Copyright 2018 Nexenta Systems, Inc. All rights reserved.
26 27 */
27 28
28 29 #ifndef _NETSMB_SMBFS_API_H
29 30 #define _NETSMB_SMBFS_API_H
30 31
31 32 /*
32 33 * Define the API exported to our commands and to
33 34 * libraries doing DCE-RPC over SMB named pipes.
34 35 */
35 36
36 37 #include <sys/types.h>
37 38
38 39 #ifdef __cplusplus
39 40 extern "C" {
40 41 #endif
41 42
42 43 /*
43 44 * Some errno values we need to expose in this API.
44 45 * NB: These two defines are duplicated from the
45 46 * driver smb_dev.h to avoid exposing that here.
46 47 *
47 48 * EBADRPC is used for message decoding errors.
48 49 * EAUTH is used for CIFS authentication errors.
49 50 */
50 51 #ifndef EBADRPC
51 52 #define EBADRPC 113
52 53 #endif
53 54 #ifndef EAUTH
54 55 #define EAUTH 114
55 56 #endif
56 57
57 58
58 59 /*
59 60 * Share type values for smb_ctx_new, _init
60 61 * Based on NetUseAdd() USE_INFO_[12] _asg_type values
61 62 * They also happen to match: STYPE_DISKTREE, etc.
62 63 * Note: these values appear on the wire.
63 64 */
64 65 typedef enum {
65 66 USE_DISKDEV = 0, /* also STYPE_DISKTREE */
66 67 USE_SPOOLDEV, /* also STYPE_PRINTQ */
67 68 USE_CHARDEV, /* also STYPE_DEVICE */
68 69 USE_IPC, /* also STYPE_IPC */
69 70 USE_WILDCARD /* also STYPE_UNKNOWN */
70 71 } smb_use_shtype_t;
71 72
72 73 /*
73 74 * Parse "level" spec. for smb_ctx_parseunc()
74 75 * i.e. whether we require a share name, etc.
75 76 */
76 77 typedef enum {
77 78 SMBL_NONE = 0, /* have nothing */
78 79 SMBL_SERVER, /* have server */
79 80 SMBL_VC = 1, /* alias for _SERVER */
80 81 SMBL_SHARE, /* have server share */
81 82 SMBL_PATH /* have server share path */
82 83 } smb_parse_level_t;
83 84
84 85 /*
85 86 * Authentication type flags
86 87 * See: smb_ctx_setauthflags()
87 88 */
88 89 #define SMB_AT_ANON 1 /* anonymous (NULL session) */
89 90 #define SMB_AT_LM1 2 /* LM1 (with NTLM) */
90 91 #define SMB_AT_NTLM1 4 /* NTLM (v1) */
91 92 #define SMB_AT_NTLM2 8 /* NTLMv2 */
92 93 #define SMB_AT_KRB5 0x10 /* Kerberos5 (AD) */
93 94
94 95 struct smb_ctx; /* anonymous here; real one in smb_lib.h */
95 96 typedef struct smb_ctx smb_ctx_t;
96 97
97 98 extern int smb_debug, smb_verbose;
98 99
99 100 int smb_lib_init(void);
100 101 void smb_error(const char *, int, ...);
101 102
102 103 /*
103 104 * Context management
104 105 */
105 106 int smb_ctx_alloc(struct smb_ctx **);
106 107 void smb_ctx_free(struct smb_ctx *);
107 108 int smb_ctx_kill(struct smb_ctx *);
108 109
109 110 int smb_ctx_scan_argv(struct smb_ctx *, int, char **, int, int, int);
110 111 int smb_ctx_parseunc(struct smb_ctx *, const char *, int, int, int,
111 112 const char **);
112 113 int smb_ctx_readrc(struct smb_ctx *);
113 114 int smb_ctx_opt(struct smb_ctx *, int, const char *);
114 115 int smb_get_authentication(struct smb_ctx *);
|
↓ open down ↓ |
79 lines elided |
↑ open up ↑ |
115 116
116 117 int smb_ctx_flags2(struct smb_ctx *);
117 118 int smb_ctx_resolve(struct smb_ctx *);
118 119 int smb_ctx_get_ssn(struct smb_ctx *);
119 120 int smb_ctx_get_tree(struct smb_ctx *);
120 121
121 122 int smb_ctx_setauthflags(struct smb_ctx *, int);
122 123 int smb_ctx_setcharset(struct smb_ctx *, const char *);
123 124 int smb_ctx_setfullserver(struct smb_ctx *, const char *);
124 125 int smb_ctx_setsigning(struct smb_ctx *, int ena, int req);
126 +int smb_ctx_setminver(struct smb_ctx *, int ver);
127 +int smb_ctx_setmaxver(struct smb_ctx *, int ver);
125 128
126 129 int smb_ctx_setnbflags(struct smb_ctx *, int ena, int bcast);
127 130 int smb_ctx_setscope(struct smb_ctx *, const char *);
128 131 int smb_ctx_setwins(struct smb_ctx *, const char *, const char *);
129 132
130 133 int smb_ctx_setsrvaddr(struct smb_ctx *, const char *);
131 134 int smb_ctx_setserver(struct smb_ctx *, const char *);
132 135 int smb_ctx_setshare(struct smb_ctx *, const char *, int);
133 136
134 137 int smb_ctx_setdomain(struct smb_ctx *, const char *, int);
135 138 int smb_ctx_setuser(struct smb_ctx *, const char *, int);
136 139 int smb_ctx_setpassword(struct smb_ctx *, const char *, int);
137 140 int smb_ctx_setpwhash(struct smb_ctx *, const uchar_t *, const uchar_t *);
138 141
139 142 typedef void (*smb_ctx_close_hook_t)(struct smb_ctx *);
140 143 void smb_ctx_set_close_hook(smb_ctx_close_hook_t);
141 144 int smb_fh_close(int);
142 145 int smb_fh_open(struct smb_ctx *ctx, const char *, int);
143 -int smb_fh_read(int, off_t, size_t, char *);
144 -int smb_fh_write(int, off_t, size_t, const char *);
146 +int smb_fh_read(int, off64_t, size_t, char *);
147 +int smb_fh_write(int, off64_t, size_t, const char *);
145 148 int smb_fh_xactnp(int, int, const char *,
146 149 int *, char *, int *);
147 150 int smb_fh_getssnkey(int, uchar_t *, size_t);
148 151
149 152 int smb_open_printer(struct smb_ctx *, const char *, int, int);
150 153
151 154 void smbfs_set_default_domain(const char *);
152 155 void smbfs_set_default_user(const char *);
153 156
154 157 char *smb_strerror(int);
155 158
156 159 #ifdef __cplusplus
157 160 }
158 161 #endif
159 162
160 163 #endif /* _NETSMB_SMBFS_API_H */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX