1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
|
/*
* Copyright (c) 2000, Boris Popov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Boris Popov.
* 4. Neither the name of the author nor the names of any co-contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: file.c,v 1.4 2004/12/13 00:25:21 lindak Exp $
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/mount.h>
#include <fcntl.h>
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <pwd.h>
#include <grp.h>
#include <unistd.h>
#include <libintl.h>
#include <sys/types.h>
#include <sys/file.h>
#include <netsmb/smb.h>
#include <netsmb/smb_lib.h>
#include "private.h"
int
smb_fh_close(struct smb_ctx *ctx, int fh)
{
struct smb_rq *rqp;
struct mbdata *mbp;
int error;
error = smb_rq_init(ctx, SMB_COM_CLOSE, &rqp);
if (error != 0)
return (error);
mbp = smb_rq_getrequest(rqp);
smb_rq_wstart(rqp);
mb_put_uint16le(mbp, (uint16_t)fh);
mb_put_uint32le(mbp, 0); /* time stamp */
smb_rq_wend(rqp);
mb_put_uint16le(mbp, 0); /* byte count */
error = smb_rq_simple(rqp);
smb_rq_done(rqp);
return (error);
}
int
smb_fh_ntcreate(
struct smb_ctx *ctx, char *path,
int flags, int req_acc, int efattr,
int share_acc, int open_disp,
int create_opts, int impersonation,
int *fhp, uint32_t *action_taken)
{
struct smb_rq *rqp;
struct mbdata *mbp;
char *pathsizep;
int pathstart, pathsize;
int error, flags2, uc;
uint16_t fh;
uint8_t wc;
flags2 = smb_ctx_flags2(ctx);
if (flags2 == -1)
return (EIO);
uc = flags2 & SMB_FLAGS2_UNICODE;
error = smb_rq_init(ctx, SMB_COM_NT_CREATE_ANDX, &rqp);
if (error != 0)
return (error);
mbp = smb_rq_getrequest(rqp);
smb_rq_wstart(rqp);
mb_put_uint16le(mbp, 0xff); /* secondary command */
mb_put_uint16le(mbp, 0); /* offset to next command (none) */
mb_put_uint8(mbp, 0); /* MBZ (pad?) */
mb_fit(mbp, 2, &pathsizep); /* path size - fill in below */
mb_put_uint32le(mbp, flags); /* create flags (oplock) */
mb_put_uint32le(mbp, 0); /* FID - basis for path if not root */
mb_put_uint32le(mbp, req_acc);
mb_put_uint64le(mbp, 0); /* initial alloc. size */
mb_put_uint32le(mbp, efattr); /* ext. file attributes */
mb_put_uint32le(mbp, share_acc); /* share access mode */
mb_put_uint32le(mbp, open_disp); /* open disposition */
mb_put_uint32le(mbp, create_opts); /* create_options */
mb_put_uint32le(mbp, impersonation);
mb_put_uint8(mbp, 0); /* security flags (?) */
smb_rq_wend(rqp);
smb_rq_bstart(rqp);
if (uc) {
/*
* We're about to put a unicode string. We know
* we're misaligned at this point, and need to
* save the mb_count at the start of the string,
* not at the alignment padding placed before it.
* So add the algnment padding by hand here.
*/
mb_put_uint8(mbp, 0);
}
pathstart = mbp->mb_count;
mb_put_dstring(mbp, path, uc);
smb_rq_bend(rqp);
/* Now go back and fill in pathsizep */
pathsize = mbp->mb_count - pathstart;
pathsizep[0] = pathsize & 0xFF;
pathsizep[1] = (pathsize >> 8);
error = smb_rq_simple(rqp);
if (error)
goto out;
mbp = smb_rq_getreply(rqp);
/*
* spec says 26 for word count, but 34 words are defined
* and observed from win2000
*/
error = mb_get_uint8(mbp, &wc);
if (error || wc < 26) {
smb_error(dgettext(TEXT_DOMAIN,
"%s: open failed, bad word count"), 0, path);
error = EBADRPC;
goto out;
}
mb_get_uint8(mbp, NULL); /* secondary cmd */
mb_get_uint8(mbp, NULL); /* mbz */
mb_get_uint16le(mbp, NULL); /* andxoffset */
mb_get_uint8(mbp, NULL); /* oplock lvl granted */
mb_get_uint16le(mbp, &fh); /* FID */
mb_get_uint32le(mbp, action_taken);
#if 0 /* skip decoding the rest */
mb_get_uint64le(mbp, NULL); /* creation time */
mb_get_uint64le(mbp, NULL); /* access time */
mb_get_uint64le(mbp, NULL); /* write time */
mb_get_uint64le(mbp, NULL); /* change time */
mb_get_uint32le(mbp, NULL); /* attributes */
mb_get_uint64le(mbp, NULL); /* allocation size */
mb_get_uint64le(mbp, NULL); /* EOF */
mb_get_uint16le(mbp, NULL); /* file type */
mb_get_uint16le(mbp, NULL); /* device state */
mb_get_uint8(mbp, NULL); /* directory (boolean) */
#endif
/* success! */
*fhp = fh;
error = 0;
out:
smb_rq_done(rqp);
return (error);
}
/*
* Conveinence wrapper for smb_fh_ntcreate
* Converts Unix-style open call to NTCreate.
*/
int
smb_fh_open(struct smb_ctx *ctx, const char *path, int oflag, int *fhp)
{
int error, mode, open_disp, req_acc, share_acc;
char *p, *ntpath = NULL;
/*
* Map O_RDONLY, O_WRONLY, O_RDWR
* to FREAD, FWRITE
*/
mode = (oflag & 3) + 1;
/*
* Compute requested access, share access.
*/
req_acc = (
STD_RIGHT_READ_CONTROL_ACCESS |
STD_RIGHT_SYNCHRONIZE_ACCESS);
share_acc = NTCREATEX_SHARE_ACCESS_NONE;
if (mode & FREAD) {
req_acc |= (
SA_RIGHT_FILE_READ_DATA |
SA_RIGHT_FILE_READ_EA |
SA_RIGHT_FILE_READ_ATTRIBUTES);
share_acc |= NTCREATEX_SHARE_ACCESS_READ;
}
if (mode & FWRITE) {
req_acc |= (
SA_RIGHT_FILE_WRITE_DATA |
SA_RIGHT_FILE_APPEND_DATA |
SA_RIGHT_FILE_WRITE_EA |
SA_RIGHT_FILE_WRITE_ATTRIBUTES);
share_acc |= NTCREATEX_SHARE_ACCESS_WRITE;
}
/*
* Compute open disposition
*/
if (oflag & FCREAT) {
/* Creat if necessary. */
if (oflag & FEXCL) {
/* exclusive */
open_disp = NTCREATEX_DISP_CREATE;
} else if (oflag & FTRUNC)
open_disp = NTCREATEX_DISP_OVERWRITE_IF;
else
open_disp = NTCREATEX_DISP_OPEN_IF;
} else {
/* Not creating. */
if (oflag & FTRUNC)
open_disp = NTCREATEX_DISP_OVERWRITE;
else
open_disp = NTCREATEX_DISP_OPEN;
}
/*
* Convert Unix path to NT (backslashes)
*/
ntpath = strdup(path);
if (ntpath == NULL)
return (ENOMEM);
for (p = ntpath; *p; p++)
if (*p == '/')
*p = '\\';
error = smb_fh_ntcreate(ctx, ntpath, 0, /* flags */
req_acc, SMB_EFA_NORMAL, share_acc, open_disp,
NTCREATEX_OPTIONS_NON_DIRECTORY_FILE,
NTCREATEX_IMPERSONATION_IMPERSONATION,
fhp, NULL);
free(ntpath);
return (error);
}
int
smb_fh_read(struct smb_ctx *ctx, int fh, off_t offset, size_t count,
char *dst)
{
struct smbioc_rw rwrq;
bzero(&rwrq, sizeof (rwrq));
rwrq.ioc_fh = fh;
rwrq.ioc_base = dst;
rwrq.ioc_cnt = count;
rwrq.ioc_offset = offset;
if (ioctl(ctx->ct_dev_fd, SMBIOC_READ, &rwrq) == -1) {
return (-1);
}
return (rwrq.ioc_cnt);
}
int
smb_fh_write(struct smb_ctx *ctx, int fh, off_t offset, size_t count,
const char *src)
{
struct smbioc_rw rwrq;
bzero(&rwrq, sizeof (rwrq));
rwrq.ioc_fh = fh;
rwrq.ioc_base = (char *)src;
rwrq.ioc_cnt = count;
rwrq.ioc_offset = offset;
if (ioctl(ctx->ct_dev_fd, SMBIOC_WRITE, &rwrq) == -1) {
return (-1);
}
return (rwrq.ioc_cnt);
}
/*
* Do a TRANSACT_NAMED_PIPE, which is basically just a
* pipe write and pipe read, all in one round trip.
*
* tdlen, tdata describe the data to send.
* rdlen, rdata on input describe the receive buffer,
* and on output *rdlen is the received length.
*/
int
smb_fh_xactnp(struct smb_ctx *ctx, int fh,
int tdlen, const char *tdata, /* transmit */
int *rdlen, char *rdata, /* receive */
int *more)
{
int err, rparamcnt;
uint16_t setup[2];
setup[0] = TRANS_TRANSACT_NAMED_PIPE;
setup[1] = fh;
rparamcnt = 0;
err = smb_t2_request(ctx, 2, setup, "\\PIPE\\",
0, NULL, /* TX paramcnt, params */
tdlen, (void *)tdata,
&rparamcnt, NULL, /* no RX params */
rdlen, rdata, more);
if (err)
*rdlen = 0;
return (err);
}
|