Merge branch 'master' of ssh://git.samba.org/data/git/samba into arc4
[tprouty/samba.git] / source4 / client / cifsddio.c
1 /*
2    CIFSDD - dd for SMB.
3    IO routines, generic and specific.
4
5    Copyright (C) James Peach 2005-2006
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "system/filesys.h"
23 #include "libcli/raw/libcliraw.h"
24 #include "libcli/libcli.h"
25 #include "lib/cmdline/popt_common.h"
26
27 #include "cifsdd.h"
28
29 /* ------------------------------------------------------------------------- */
30 /* UNIX file descriptor IO.                                                  */
31 /* ------------------------------------------------------------------------- */
32
33 struct fd_handle
34 {
35         struct dd_iohandle      h;
36         int                     fd;
37 };
38
39 #define IO_HANDLE_TO_FD(h) (((struct fd_handle *)(h))->fd)
40
41 static bool fd_seek_func(void * handle, uint64_t offset)
42 {
43         ssize_t ret;
44
45         ret = lseek(IO_HANDLE_TO_FD(handle), offset, SEEK_SET);
46         if (ret < 0) {
47                 fprintf(stderr, "%s: seek failed: %s\n",
48                                 PROGNAME, strerror(errno));
49                 return(false);
50         }
51
52         return(true);
53 }
54
55 static bool fd_read_func(void * handle,
56                         uint8_t * buf,
57                         uint64_t wanted,
58                         uint64_t * actual)
59 {
60         ssize_t ret;
61
62         ret = read(IO_HANDLE_TO_FD(handle), buf, wanted);
63         if (ret < 0) {
64                 fprintf(stderr, "%s: %llu byte read failed: %s\n",
65                                 PROGNAME, (unsigned long long)wanted,
66                                 strerror(errno));
67                 return(false);
68         }
69
70         *actual = (uint64_t)ret;
71         return(true);
72 }
73
74 static bool fd_write_func(void * handle,
75                         uint8_t * buf,
76                         uint64_t wanted,
77                         uint64_t * actual)
78 {
79         ssize_t ret;
80
81         ret = write(IO_HANDLE_TO_FD(handle), buf, wanted);
82         if (ret < 0) {
83                 fprintf(stderr, "%s: %llu byte write failed: %s\n",
84                                 PROGNAME, (unsigned long long)wanted,
85                                 strerror(errno));
86                 return(false);
87         }
88
89         *actual = (uint64_t)ret;
90         return(true);
91 }
92
93 static struct dd_iohandle * open_fd_handle(const char * path,
94                                         uint64_t io_size,
95                                         int options)
96 {
97         struct fd_handle * fdh;
98         int oflags = 0;
99
100         DEBUG(4, ("opening fd stream for %s\n", path));
101         if ((fdh = talloc_zero(NULL, struct fd_handle)) == NULL) {
102                 return(NULL);
103         }
104
105         fdh->h.io_read = fd_read_func;
106         fdh->h.io_write = fd_write_func;
107         fdh->h.io_seek = fd_seek_func;
108
109         if (options & DD_DIRECT_IO) {
110 #ifdef HAVE_OPEN_O_DIRECT
111                 oflags |= O_DIRECT;
112 #else
113                 DEBUG(1, ("no support for direct IO on this platform\n"));
114 #endif
115         }
116
117         if (options & DD_SYNC_IO)
118                 oflags |= O_SYNC;
119
120         oflags |= (options & DD_WRITE) ?  (O_WRONLY | O_CREAT) : (O_RDONLY);
121
122         fdh->fd = open(path, oflags, 0644);
123         if (fdh->fd < 0) {
124                 fprintf(stderr, "%s: %s: %s\n",
125                         PROGNAME, path, strerror(errno));
126                 talloc_free(fdh);
127                 return(NULL);
128         }
129
130         if (options & DD_OPLOCK) {
131                 DEBUG(2, ("FIXME: take local oplock on %s\n", path));
132         }
133
134         SMB_ASSERT((void *)fdh == (void *)&fdh->h);
135         return(&fdh->h);
136 }
137
138 /* ------------------------------------------------------------------------- */
139 /* CIFS client IO.                                                           */
140 /* ------------------------------------------------------------------------- */
141
142 struct cifs_handle
143 {
144         struct dd_iohandle      h;
145         struct smbcli_state *   cli;
146         int                     fnum;
147         uint64_t                offset;
148 };
149
150 #define IO_HANDLE_TO_SMB(h) ((struct cifs_handle *)(h))
151
152 static bool smb_seek_func(void * handle, uint64_t offset)
153 {
154         IO_HANDLE_TO_SMB(handle)->offset = offset;
155         return(true);
156 }
157
158 static bool smb_read_func(void * handle, uint8_t * buf, uint64_t wanted,
159                           uint64_t * actual)
160 {
161         NTSTATUS                ret;
162         union smb_read          r;
163         struct cifs_handle *    smbh;
164
165         ZERO_STRUCT(r);
166         smbh = IO_HANDLE_TO_SMB(handle);
167
168         r.generic.level         = RAW_READ_READX;
169         r.readx.in.file.fnum    = smbh->fnum;
170         r.readx.in.offset       = smbh->offset;
171         r.readx.in.mincnt       = wanted;
172         r.readx.in.maxcnt       = wanted;
173         r.readx.out.data        = buf;
174
175         /* FIXME: Should I really set readx.in.remaining? That just seems
176          * redundant.
177          */
178         ret = smb_raw_read(smbh->cli->tree, &r);
179         if (!NT_STATUS_IS_OK(ret)) {
180                 fprintf(stderr, "%s: %llu byte read failed: %s\n",
181                                 PROGNAME, (unsigned long long)wanted,
182                                 nt_errstr(ret));
183                 return(false);
184         }
185
186         /* Trap integer wrap. */
187         SMB_ASSERT((smbh->offset + r.readx.out.nread) >= smbh->offset);
188
189         *actual = r.readx.out.nread;
190         smbh->offset += r.readx.out.nread;
191         return(true);
192 }
193
194 static bool smb_write_func(void * handle, uint8_t * buf, uint64_t wanted,
195                            uint64_t * actual)
196 {
197         NTSTATUS                ret;
198         union smb_write         w;
199         struct cifs_handle *    smbh;
200
201         ZERO_STRUCT(w);
202         smbh = IO_HANDLE_TO_SMB(handle);
203
204         w.generic.level         = RAW_WRITE_WRITEX;
205         w.writex.in.file.fnum   = smbh->fnum;
206         w.writex.in.offset      = smbh->offset;
207         w.writex.in.count       = wanted;
208         w.writex.in.data        = buf;
209
210         ret = smb_raw_write(smbh->cli->tree, &w);
211         if (!NT_STATUS_IS_OK(ret)) {
212                 fprintf(stderr, "%s: %llu byte write failed: %s\n",
213                                 PROGNAME, (unsigned long long)wanted,
214                                 nt_errstr(ret));
215                 return(false);
216         }
217
218         *actual = w.writex.out.nwritten;
219         smbh->offset += w.writex.out.nwritten;
220         return(true);
221 }
222
223 static struct smbcli_state * init_smb_session(struct resolve_context *resolve_ctx,
224                                               struct event_context *ev,
225                                               const char * host,
226                                               const char **ports,
227                                               const char * share,
228                                               struct smbcli_options *options,
229                                               struct smbcli_session_options *session_options)
230 {
231         NTSTATUS                ret;
232         struct smbcli_state *   cli = NULL;
233
234         /* When we support SMB URLs, we can get different user credentials for
235          * each connection, but for now, we just use the same one for both.
236          */
237         ret = smbcli_full_connection(NULL, &cli, host, ports, share,
238                                      NULL /* devtype */,
239                                      cmdline_credentials, resolve_ctx,
240                                      ev, options,
241                                      session_options);
242
243         if (!NT_STATUS_IS_OK(ret)) {
244                 fprintf(stderr, "%s: connecting to //%s/%s: %s\n",
245                         PROGNAME, host, share, nt_errstr(ret));
246                 return(NULL);
247         }
248
249         return(cli);
250 }
251
252 static int open_smb_file(struct smbcli_state * cli,
253                         const char * path,
254                         int options)
255 {
256         NTSTATUS        ret;
257         union smb_open  o;
258
259         ZERO_STRUCT(o);
260
261         o.ntcreatex.level = RAW_OPEN_NTCREATEX;
262         o.ntcreatex.in.fname = path;
263
264         /* TODO: It's not clear whether to use these flags or to use the
265          * similarly named NTCREATEX flags in the create_options field.
266          */
267         if (options & DD_DIRECT_IO)
268                 o.ntcreatex.in.flags |= FILE_FLAG_NO_BUFFERING;
269
270         if (options & DD_SYNC_IO)
271                 o.ntcreatex.in.flags |= FILE_FLAG_WRITE_THROUGH;
272
273         o.ntcreatex.in.access_mask |=
274                 (options & DD_WRITE) ? SEC_FILE_WRITE_DATA
275                                         : SEC_FILE_READ_DATA;
276
277         /* Try to create the file only if we will be writing to it. */
278         o.ntcreatex.in.open_disposition =
279                 (options & DD_WRITE) ? NTCREATEX_DISP_OPEN_IF
280                                         : NTCREATEX_DISP_OPEN;
281
282         o.ntcreatex.in.share_access =
283                 NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
284
285         if (options & DD_OPLOCK) {
286                 o.ntcreatex.in.flags |= NTCREATEX_FLAGS_REQUEST_OPLOCK;
287         }
288
289         ret = smb_raw_open(cli->tree, NULL, &o);
290         if (!NT_STATUS_IS_OK(ret)) {
291                 fprintf(stderr, "%s: opening %s: %s\n",
292                         PROGNAME, path, nt_errstr(ret));
293                 return(-1);
294         }
295
296         return(o.ntcreatex.out.file.fnum);
297 }
298
299 static struct dd_iohandle * open_cifs_handle(struct resolve_context *resolve_ctx,
300                                              struct event_context *ev,
301                                              const char * host,
302                                         const char **ports,
303                                         const char * share,
304                                         const char * path,
305                                         uint64_t io_size,
306                                         int options,
307                                         struct smbcli_options *smb_options,
308                                         struct smbcli_session_options *smb_session_options)
309 {
310         struct cifs_handle * smbh;
311
312         if (path == NULL  || *path == '\0') {
313                 fprintf(stderr, "%s: missing path name within share //%s/%s\n",
314                         PROGNAME, host, share);
315         }
316
317         DEBUG(4, ("opening SMB stream to //%s/%s for %s\n",
318                 host, share, path));
319
320         if ((smbh = talloc_zero(NULL, struct cifs_handle)) == NULL) {
321                 return(NULL);
322         }
323
324         smbh->h.io_read = smb_read_func;
325         smbh->h.io_write = smb_write_func;
326         smbh->h.io_seek = smb_seek_func;
327
328         if ((smbh->cli = init_smb_session(resolve_ctx, ev, host, ports, share,
329                                           smb_options, smb_session_options)) == NULL) {
330                 return(NULL);
331         }
332
333         DEBUG(4, ("connected to //%s/%s with xmit size of %u bytes\n",
334                 host, share, smbh->cli->transport->negotiate.max_xmit));
335
336         smbh->fnum = open_smb_file(smbh->cli, path, options);
337         return(&smbh->h);
338 }
339
340 /* ------------------------------------------------------------------------- */
341 /* Abstract IO interface.                                                    */
342 /* ------------------------------------------------------------------------- */
343
344 struct dd_iohandle * dd_open_path(struct resolve_context *resolve_ctx, 
345                                   struct event_context *ev,
346                                   const char * path,
347                                   const char **ports,
348                                 uint64_t io_size,
349                                 int options,
350                                 struct smbcli_options *smb_options,
351                                 struct smbcli_session_options *smb_session_options)
352 {
353         if (file_exist(path)) {
354                 return(open_fd_handle(path, io_size, options));
355         } else {
356                 char * host;
357                 char * share;
358
359                 if (smbcli_parse_unc(path, NULL, &host, &share)) {
360                         const char * remain;
361                         remain = strstr(path, share) + strlen(share);
362
363                         /* Skip over leading directory separators. */
364                         while (*remain == '/' || *remain == '\\') { remain++; }
365
366                         return(open_cifs_handle(resolve_ctx, ev, host, ports,
367                                                 share, remain,
368                                                 io_size, options, smb_options,
369                                                 smb_session_options));
370                 }
371
372                 return(open_fd_handle(path, io_size, options));
373         }
374 }
375
376 /* Fill the buffer till it has at least need_size bytes. Use read operations of
377  * block_size bytes. Return the number of bytes read and fill buf_size with
378  * the new buffer size.
379  *
380  * NOTE: The IO buffer is guaranteed to be big enough to fit
381  * need_size + block_size bytes into it.
382  */
383 bool dd_fill_block(struct dd_iohandle * h,
384                 uint8_t * buf,
385                 uint64_t * buf_size,
386                 uint64_t need_size,
387                 uint64_t block_size)
388 {
389         uint64_t read_size;
390
391         SMB_ASSERT(block_size > 0);
392         SMB_ASSERT(need_size > 0);
393
394         while (*buf_size < need_size) {
395
396                 if (!h->io_read(h, buf + (*buf_size), block_size, &read_size)) {
397                         return(false);
398                 }
399
400                 if (read_size == 0) {
401                         h->io_flags |= DD_END_OF_FILE;
402                         break;
403                 }
404
405                 DEBUG(6, ("added %llu bytes to IO buffer (need %llu bytes)\n",
406                         (unsigned long long)read_size,
407                         (unsigned long long)need_size));
408
409                 *buf_size += read_size;
410                 dd_stats.in.bytes += read_size;
411
412                 if (read_size == block_size) {
413                         dd_stats.in.fblocks++;
414                 } else {
415                         DEBUG(3, ("partial read of %llu bytes (expected %llu)\n",
416                                 (unsigned long long)read_size,
417                                 (unsigned long long)block_size));
418                         dd_stats.in.pblocks++;
419                 }
420         }
421
422         return(true);
423 }
424
425 /* Flush a buffer that contains buf_size bytes. Use writes of block_size to do it,
426  * and shift any remaining bytes back to the head of the buffer when there are
427  * no more block_size sized IOs left.
428  */
429 bool dd_flush_block(struct dd_iohandle * h,
430                 uint8_t * buf,
431                 uint64_t * buf_size,
432                 uint64_t block_size)
433 {
434         uint64_t write_size;
435         uint64_t total_size = 0;
436
437         SMB_ASSERT(block_size > 0);
438
439         /* We have explicitly been asked to write a partial block. */
440         if ((*buf_size) < block_size) {
441
442                 if (!h->io_write(h, buf, *buf_size, &write_size)) {
443                         return(false);
444                 }
445
446                 if (write_size == 0) {
447                         fprintf(stderr, "%s: unexpectedly wrote 0 bytes\n",
448                                         PROGNAME);
449                         return(false);
450                 }
451
452                 total_size += write_size;
453                 dd_stats.out.bytes += write_size;
454                 dd_stats.out.pblocks++;
455         }
456
457         /* Write as many full blocks as there are in the buffer. */
458         while (((*buf_size) - total_size) >= block_size) {
459
460                 if (!h->io_write(h, buf + total_size, block_size, &write_size)) {
461                         return(false);
462                 }
463
464                 if (write_size == 0) {
465                         fprintf(stderr, "%s: unexpectedly wrote 0 bytes\n",
466                                         PROGNAME);
467                         return(false);
468                 }
469
470                 if (write_size == block_size) {
471                         dd_stats.out.fblocks++;
472                 } else {
473                         dd_stats.out.pblocks++;
474                 }
475
476                 total_size += write_size;
477                 dd_stats.out.bytes += write_size;
478
479                 DEBUG(6, ("flushed %llu bytes from IO buffer of %llu bytes (%llu remain)\n",
480                         (unsigned long long)block_size,
481                         (unsigned long long)block_size,
482                         (unsigned long long)(block_size - total_size)));
483         }
484
485         SMB_ASSERT(total_size > 0);
486
487         /* We have flushed as much of the IO buffer as we can while
488          * still doing block_size'd operations. Shift any remaining data
489          * to the front of the IO buffer.
490          */
491         if ((*buf_size) > total_size) {
492                 uint64_t remain = (*buf_size) - total_size;
493
494                 DEBUG(3, ("shifting %llu remainder bytes to IO buffer head\n",
495                         (unsigned long long)remain));
496
497                 memmove(buf, buf + total_size, remain);
498                 (*buf_size) = remain;
499         } else if ((*buf_size) == total_size) {
500                 (*buf_size) = 0;
501         } else {
502                 /* Else buffer contains buf_size bytes that we will append
503                  * to next time round.
504                  */
505                 DEBUG(3, ("%llu unflushed bytes left in IO buffer\n",
506                         (unsigned long long)(*buf_size)));
507         }
508
509         return(true);
510 }
511
512 /* vim: set sw=8 sts=8 ts=8 tw=79 : */