Add --update option to smbget.
[samba.git] / source3 / utils / smbget.c
1 /*
2    smbget: a wget-like utility with support for recursive downloading and 
3         smb:// urls
4    Copyright (C) 2003-2004 Jelmer Vernooij <jelmer@samba.org>
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #include "includes.h"
20 #include "libsmbclient.h"
21
22 #if _FILE_OFFSET_BITS==64
23 #define OFF_T_FORMAT "%lld"
24 #define OFF_T_FORMAT_CAST long long
25 #else
26 #define OFF_T_FORMAT "%ld"
27 #define OFF_T_FORMAT_CAST long
28 #endif
29
30 int columns = 0;
31
32 static int _resume, _recursive, debuglevel, update;
33 static char *outputfile;
34
35
36 time_t total_start_time = 0;
37 off_t total_bytes = 0;
38
39 #define SMB_MAXPATHLEN MAXPATHLEN
40
41 /* Number of bytes to read when checking whether local and remote file are really the same file */
42 #define RESUME_CHECK_SIZE                               512
43 #define RESUME_DOWNLOAD_OFFSET                  1024
44 #define RESUME_CHECK_OFFSET                             RESUME_DOWNLOAD_OFFSET+RESUME_CHECK_SIZE
45 /* Number of bytes to read at once */
46 #define SMB_DEFAULT_BLOCKSIZE                                   64000
47
48 const char *username = NULL, *password = NULL, *workgroup = NULL;
49 int nonprompt = 0, quiet = 0, dots = 0, keep_permissions = 0, verbose = 0, send_stdout = 0;
50 int blocksize = SMB_DEFAULT_BLOCKSIZE;
51
52 static int smb_download_file(const char *base, const char *name, int recursive, int resume, char *outfile);
53
54 static int get_num_cols(void)
55 {
56 #ifdef TIOCGWINSZ
57         struct winsize ws;
58         if(ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) < 0) {
59                 return 0;
60         }
61         return ws.ws_col;
62 #else
63 #warning No support for TIOCGWINSZ
64         char *cols = getenv("COLUMNS");
65         if(!cols) return 0;
66         return atoi(cols);
67 #endif
68 }
69
70 static void change_columns(int sig)
71 {
72         columns = get_num_cols();
73 }
74
75 static void human_readable(off_t s, char *buffer, int l)
76 {
77         if(s > 1024 * 1024 * 1024) snprintf(buffer, l, "%.2fGb", 1.0 * s / (1024 * 1024 * 1024));
78         else if(s > 1024 * 1024) snprintf(buffer, l, "%.2fMb", 1.0 * s / (1024 * 1024));
79         else if(s > 1024) snprintf(buffer, l, "%.2fkb", 1.0 * s / 1024);
80         else snprintf(buffer, l, OFF_T_FORMAT"b", (OFF_T_FORMAT_CAST)s);
81 }
82
83 static void get_auth_data(const char *srv, const char *shr, char *wg, int wglen, char *un, int unlen, char *pw, int pwlen)
84 {
85         static char hasasked = 0;
86         char *wgtmp, *usertmp;
87         char tmp[128];
88
89         if(hasasked) return;
90         hasasked = 1;
91
92         if(!nonprompt && !username) {
93                 printf("Username for %s at %s [guest] ", shr, srv);
94                 fgets(tmp, sizeof(tmp), stdin);
95                 if(tmp[strlen(tmp)-1] == '\n')tmp[strlen(tmp)-1] = '\0';
96                 strncpy(un, tmp, unlen-1);
97         } else if(username) strncpy(un, username, unlen-1);
98
99         if(!nonprompt && !password) {
100                 char *prompt, *pass;
101                 asprintf(&prompt, "Password for %s at %s: ", shr, srv);
102                 pass = getpass(prompt);
103                 free(prompt);
104                 strncpy(pw, pass, pwlen-1);
105         } else if(password) strncpy(pw, password, pwlen-1);
106
107         if(workgroup)strncpy(wg, workgroup, wglen-1);
108
109         wgtmp = SMB_STRNDUP(wg, wglen); 
110         usertmp = SMB_STRNDUP(un, unlen);
111         if(!quiet)printf("Using workgroup %s, %s%s\n", wgtmp, *usertmp?"user ":"guest user", usertmp);
112         free(wgtmp); free(usertmp);
113 }
114
115 static int smb_download_dir(const char *base, const char *name, int resume)
116 {
117         char path[SMB_MAXPATHLEN];
118         int dirhandle;
119         struct smbc_dirent *dirent;
120         const char *relname = name;
121         char *tmpname;
122         struct stat remotestat;
123         snprintf(path, SMB_MAXPATHLEN-1, "%s%s%s", base, (base[0] && name[0] && name[0] != '/' && base[strlen(base)-1] != '/')?"/":"", name);
124
125         /* List files in directory and call smb_download_file on them */
126         dirhandle = smbc_opendir(path);
127         if(dirhandle < 1) {
128                 if(errno == ENOTDIR) return smb_download_file(base, name, 1, resume, NULL);
129                 fprintf(stderr, "Can't open directory %s: %s\n", path, strerror(errno));
130                 return 0;
131         }
132
133         while(*relname == '/')relname++;
134         mkdir(relname, 0755);
135         
136         tmpname = SMB_STRDUP(name);
137
138         while((dirent = smbc_readdir(dirhandle))) {
139                 char *newname;
140                 if(!strcmp(dirent->name, ".") || !strcmp(dirent->name, ".."))continue;
141                 asprintf(&newname, "%s/%s", tmpname, dirent->name);
142                 switch(dirent->smbc_type) {
143                 case SMBC_DIR:
144                         smb_download_dir(base, newname, resume);
145                         break;
146
147                 case SMBC_WORKGROUP:
148                         smb_download_dir("smb://", dirent->name, resume);
149                         break;
150
151                 case SMBC_SERVER:
152                         smb_download_dir("smb://", dirent->name, resume);
153                         break;
154
155                 case SMBC_FILE:
156                         smb_download_file(base, newname, 1, resume, NULL);
157                         break;
158
159                 case SMBC_FILE_SHARE:
160                         smb_download_dir(base, newname, resume);
161                         break;
162
163                 case SMBC_PRINTER_SHARE:
164                         if(!quiet)printf("Ignoring printer share %s\n", dirent->name);
165                         break;
166
167                 case SMBC_COMMS_SHARE:
168                         if(!quiet)printf("Ignoring comms share %s\n", dirent->name);
169                         break;
170                         
171                 case SMBC_IPC_SHARE:
172                         if(!quiet)printf("Ignoring ipc$ share %s\n", dirent->name);
173                         break;
174
175                 default:
176                         fprintf(stderr, "Ignoring file '%s' of type '%d'\n", newname, dirent->smbc_type);
177                         break;
178                 }
179                 free(newname);
180         }
181         free(tmpname);
182
183         if(keep_permissions) {
184                 if(smbc_fstat(dirhandle, &remotestat) < 0) {
185                         fprintf(stderr, "Unable to get stats on %s on remote server\n", path);
186                         smbc_closedir(dirhandle);
187                         return 0;
188                 }
189                 
190                 if(chmod(relname, remotestat.st_mode) < 0) {
191                         fprintf(stderr, "Unable to change mode of local dir %s to %o\n", relname, remotestat.st_mode);
192                         smbc_closedir(dirhandle);
193                         return 0;
194                 }
195         }
196
197         smbc_closedir(dirhandle);
198         return 1;
199 }
200
201 static char *print_time(long t)
202 {
203         static char buffer[100];
204         int secs, mins, hours;
205         if(t < -1) {
206                 strncpy(buffer, "Unknown", sizeof(buffer));
207                 return buffer;
208         }
209
210         secs = (int)t % 60;
211         mins = (int)t / 60 % 60;
212         hours = (int)t / (60 * 60);
213         snprintf(buffer, sizeof(buffer)-1, "%02d:%02d:%02d", hours, mins, secs);
214         return buffer;
215 }
216
217 static void print_progress(const char *name, time_t start, time_t now, off_t start_pos, off_t pos, off_t total)
218 {
219         double avg = 0.0;
220         long  eta = -1; 
221         double prcnt = 0.0;
222         char hpos[20], htotal[20], havg[20];
223         char *status, *filename;
224         int len;
225         if(now - start)avg = 1.0 * (pos - start_pos) / (now - start);
226         eta = (total - pos) / avg;
227         if(total)prcnt = 100.0 * pos / total;
228
229         human_readable(pos, hpos, sizeof(hpos));
230         human_readable(total, htotal, sizeof(htotal));
231         human_readable(avg, havg, sizeof(havg));
232
233         len = asprintf(&status, "%s of %s (%.2f%%) at %s/s ETA: %s", hpos, htotal, prcnt, havg, print_time(eta));
234         
235         if(columns) {
236                 int required = strlen(name), available = columns - len - strlen("[] ");
237                 if(required > available) asprintf(&filename, "...%s", name + required - available + 3);
238                 else filename = SMB_STRNDUP(name, available);
239         } else filename = SMB_STRDUP(name);
240
241         fprintf(stderr, "\r[%s] %s", filename, status);
242
243         free(filename); free(status);
244 }
245
246 static int smb_download_file(const char *base, const char *name, int recursive, int resume, char *outfile) {
247         int remotehandle, localhandle;
248         time_t start_time = time(NULL);
249         const char *newpath;
250         char path[SMB_MAXPATHLEN];
251         char checkbuf[2][RESUME_CHECK_SIZE];
252         char *readbuf = NULL;
253         off_t offset_download = 0, offset_check = 0, curpos = 0, start_offset = 0;
254         struct stat localstat, remotestat;
255
256         snprintf(path, SMB_MAXPATHLEN-1, "%s%s%s", base, (*base && *name && name[0] != '/' && base[strlen(base)-1] != '/')?"/":"", name);
257         
258         remotehandle = smbc_open(path, O_RDONLY, 0755);
259
260         if(remotehandle < 0) {
261                 switch(errno) {
262                 case EISDIR: 
263                         if(!recursive) {
264                                 fprintf(stderr, "%s is a directory. Specify -R to download recursively\n", path);
265                                 return 0;
266                         }
267                         smb_download_dir(base, name, resume);
268                         return 0;
269
270                 case ENOENT:
271                         fprintf(stderr, "%s can't be found on the remote server\n", path);
272                         return 0;
273
274                 case ENOMEM:
275                         fprintf(stderr, "Not enough memory\n");
276                         exit(1);
277                         return 0;
278
279                 case ENODEV:
280                         fprintf(stderr, "The share name used in %s does not exist\n", path);
281                         return 0;
282
283                 case EACCES:
284                         fprintf(stderr, "You don't have enough permissions to access %s\n", path);
285                         return 0;
286
287                 default:
288                         perror("smbc_open");
289                         return 0;
290                 }
291         } 
292
293         if(smbc_fstat(remotehandle, &remotestat) < 0) {
294                 fprintf(stderr, "Can't stat %s: %s\n", path, strerror(errno));
295                 return 0;
296         }
297
298         if(outfile) newpath = outfile;
299         else if(!name[0]) {
300                 newpath = strrchr(base, '/');
301                 if(newpath)newpath++; else newpath = base;
302         } else newpath = name;
303
304         if(newpath[0] == '/')newpath++;
305         
306         /* Open local file according to the mode */
307         if(update) {
308                 /* if it is up-to-date, skip */
309                 if(stat(newpath, &localstat) == 0 &&
310                                 localstat.st_mtime >= remotestat.st_mtime) {
311                         if(verbose)
312                                 printf("%s is up-to-date, skipping\n", newpath);
313                         smbc_close(remotehandle);
314                         return 0;
315                 }
316                 /* else open it for writting and truncate if it exists */
317                 localhandle = open(newpath, O_CREAT | O_NONBLOCK | O_RDWR |
318                                 O_TRUNC, 0775);
319                 if(localhandle < 0) {
320                         fprintf(stderr, "Can't open %s : %s\n", newpath,
321                                         strerror(errno));
322                         smbc_close(remotehandle);
323                         return 1;
324                 }
325                 /* no offset */
326         } else if(!send_stdout) {
327                 localhandle = open(newpath, O_CREAT | O_NONBLOCK | O_RDWR | (!resume?O_EXCL:0), 0755);
328                 if(localhandle < 0) {
329                         fprintf(stderr, "Can't open %s: %s\n", newpath, strerror(errno));
330                         smbc_close(remotehandle);
331                         return 0;
332                 }
333         
334                 fstat(localhandle, &localstat);
335
336                 start_offset = localstat.st_size;
337
338                 if(localstat.st_size && localstat.st_size == remotestat.st_size) {
339                         if(verbose)fprintf(stderr, "%s is already downloaded completely.\n", path);
340                         else if(!quiet)fprintf(stderr, "%s\n", path);
341                         smbc_close(remotehandle);
342                         close(localhandle);
343                         return 1;
344                 }
345
346                 if(localstat.st_size > RESUME_CHECK_OFFSET && remotestat.st_size > RESUME_CHECK_OFFSET) {
347                         offset_download = localstat.st_size - RESUME_DOWNLOAD_OFFSET;
348                         offset_check = localstat.st_size - RESUME_CHECK_OFFSET;
349                         if(verbose)printf("Trying to start resume of %s at "OFF_T_FORMAT"\n"
350                                    "At the moment "OFF_T_FORMAT" of "OFF_T_FORMAT" bytes have been retrieved\n",
351                                 newpath, (OFF_T_FORMAT_CAST)offset_check, 
352                                 (OFF_T_FORMAT_CAST)localstat.st_size,
353                                 (OFF_T_FORMAT_CAST)remotestat.st_size);
354                 }
355
356                 if(offset_check) { 
357                         off_t off1, off2;
358                         /* First, check all bytes from offset_check to offset_download */
359                         off1 = lseek(localhandle, offset_check, SEEK_SET);
360                         if(off1 < 0) {
361                                 fprintf(stderr, "Can't seek to "OFF_T_FORMAT" in local file %s\n",
362                                         (OFF_T_FORMAT_CAST)offset_check, newpath);
363                                 smbc_close(remotehandle); close(localhandle);
364                                 return 0;
365                         }
366
367                         off2 = smbc_lseek(remotehandle, offset_check, SEEK_SET); 
368                         if(off2 < 0) {
369                                 fprintf(stderr, "Can't seek to "OFF_T_FORMAT" in remote file %s\n",
370                                         (OFF_T_FORMAT_CAST)offset_check, newpath);
371                                 smbc_close(remotehandle); close(localhandle);
372                                 return 0;
373                         }
374
375                         if(off1 != off2) {
376                                 fprintf(stderr, "Offset in local and remote files is different (local: "OFF_T_FORMAT", remote: "OFF_T_FORMAT")\n",
377                                         (OFF_T_FORMAT_CAST)off1,
378                                         (OFF_T_FORMAT_CAST)off2);
379                                 return 0;
380                         }
381
382                         if(smbc_read(remotehandle, checkbuf[0], RESUME_CHECK_SIZE) != RESUME_CHECK_SIZE) {
383                                 fprintf(stderr, "Can't read %d bytes from remote file %s\n", RESUME_CHECK_SIZE, path);
384                                 smbc_close(remotehandle); close(localhandle);
385                                 return 0;
386                         }
387
388                         if(read(localhandle, checkbuf[1], RESUME_CHECK_SIZE) != RESUME_CHECK_SIZE) {
389                                 fprintf(stderr, "Can't read %d bytes from local file %s\n", RESUME_CHECK_SIZE, name);
390                                 smbc_close(remotehandle); close(localhandle);
391                                 return 0;
392                         }
393
394                         if(memcmp(checkbuf[0], checkbuf[1], RESUME_CHECK_SIZE) == 0) {
395                                 if(verbose)printf("Current local and remote file appear to be the same. Starting download from offset "OFF_T_FORMAT"\n", (OFF_T_FORMAT_CAST)offset_download);
396                         } else {
397                                 fprintf(stderr, "Local and remote file appear to be different, not doing resume for %s\n", path);
398                                 smbc_close(remotehandle); close(localhandle);
399                                 return 0;
400                         }
401                 }
402         } else {
403                 localhandle = STDOUT_FILENO;
404                 start_offset = 0;
405                 offset_download = 0;
406                 offset_check = 0;
407         }
408
409         readbuf = (char *)SMB_MALLOC(blocksize);
410
411         /* Now, download all bytes from offset_download to the end */
412         for(curpos = offset_download; curpos < remotestat.st_size; curpos+=blocksize) {
413                 ssize_t bytesread = smbc_read(remotehandle, readbuf, blocksize);
414                 if(bytesread < 0) {
415                         fprintf(stderr, "Can't read %u bytes at offset "OFF_T_FORMAT", file %s\n", (unsigned int)blocksize, (OFF_T_FORMAT_CAST)curpos, path);
416                         smbc_close(remotehandle);
417                         if (localhandle != STDOUT_FILENO) close(localhandle);
418                         free(readbuf);
419                         return 0;
420                 }
421
422                 total_bytes += bytesread;
423
424                 if(write(localhandle, readbuf, bytesread) < 0) {
425                         fprintf(stderr, "Can't write %u bytes to local file %s at offset "OFF_T_FORMAT"\n", (unsigned int)bytesread, path, (OFF_T_FORMAT_CAST)curpos);
426                         free(readbuf);
427                         smbc_close(remotehandle);
428                         if (localhandle != STDOUT_FILENO) close(localhandle);
429                         return 0;
430                 }
431
432                 if(dots)fputc('.', stderr);
433                 else if(!quiet) {
434                         print_progress(newpath, start_time, time(NULL), start_offset, curpos, remotestat.st_size);
435                 }
436         }
437
438         free(readbuf);
439
440         if(dots){
441                 fputc('\n', stderr);
442                 printf("%s downloaded\n", path);
443         } else if(!quiet) {
444                 int i;
445                 fprintf(stderr, "\r%s", path);
446                 if(columns) {
447                         for(i = strlen(path); i < columns; i++) {
448                                 fputc(' ', stderr);
449                         }
450                 }
451                 fputc('\n', stderr);
452         }
453
454         if(keep_permissions && !send_stdout) {
455                 if(fchmod(localhandle, remotestat.st_mode) < 0) {
456                         fprintf(stderr, "Unable to change mode of local file %s to %o\n", path, remotestat.st_mode);
457                         smbc_close(remotehandle);
458                         close(localhandle);
459                         return 0;
460                 }
461         }
462
463         smbc_close(remotehandle);
464         if (localhandle != STDOUT_FILENO) close(localhandle);
465         return 1;
466 }
467
468 static void clean_exit(void)
469 {
470         char bs[100];
471         human_readable(total_bytes, bs, sizeof(bs));
472         if(!quiet)fprintf(stderr, "Downloaded %s in %lu seconds\n", bs, time(NULL) - total_start_time);
473         exit(0);
474 }
475
476 static void signal_quit(int v)
477 {
478         clean_exit();
479 }
480
481 static int readrcfile(const char *name, const struct poptOption long_options[])
482 {
483         FILE *fd = fopen(name, "r");
484         int lineno = 0, i;
485         char var[101], val[101];
486         char found;
487         int *intdata; char **stringdata;
488         if(!fd) {
489                 fprintf(stderr, "Can't open RC file %s\n", name);
490                 return 1;
491         }
492
493         while(!feof(fd)) {
494                 lineno++;
495                 if(fscanf(fd, "%100s %100s\n", var, val) < 2) {
496                         fprintf(stderr, "Can't parse line %d of %s, ignoring.\n", lineno, name);
497                         continue;
498                 }
499
500                 found = 0;
501
502                 for(i = 0; long_options[i].shortName; i++) {
503                         if(!long_options[i].longName)continue;
504                         if(strcmp(long_options[i].longName, var)) continue;
505                         if(!long_options[i].arg)continue;
506
507                         switch(long_options[i].argInfo) {
508                         case POPT_ARG_NONE:
509                                 intdata = (int *)long_options[i].arg;
510                                 if(!strcmp(val, "on")) *intdata = 1;
511                                 else if(!strcmp(val, "off")) *intdata = 0;
512                                 else fprintf(stderr, "Illegal value %s for %s at line %d in %s\n", val, var, lineno, name);
513                                 break;
514                         case POPT_ARG_INT:
515                                 intdata = (int *)long_options[i].arg;
516                                 *intdata = atoi(val);
517                                 break;
518                         case POPT_ARG_STRING:
519                                 stringdata = (char **)long_options[i].arg;
520                                 *stringdata = SMB_STRDUP(val);
521                                 break;
522                         default:
523                                 fprintf(stderr, "Invalid variable %s at line %d in %s\n", var, lineno, name);
524                                 break;
525                         }
526
527                         found = 1;
528                 }
529                 if(!found) {
530                         fprintf(stderr, "Invalid variable %s at line %d in %s\n", var, lineno, name);
531                 }
532         }
533
534         fclose(fd);
535         return 0;
536 }
537
538 int main(int argc, const char **argv)
539 {
540         int c = 0;
541         const char *file = NULL;
542         char *rcfile = NULL;
543         bool smb_encrypt = false;
544         TALLOC_CTX *frame = talloc_stackframe();
545         struct poptOption long_options[] = {
546                 {"guest", 'a', POPT_ARG_NONE, NULL, 'a', "Work as user guest" },        
547                 {"encrypt", 'e', POPT_ARG_NONE, NULL, 'e', "Encrypt SMB transport (UNIX extended servers only)" },      
548                 {"resume", 'r', POPT_ARG_NONE, &_resume, 0, "Automatically resume aborted files" },
549                 {"update", 'U',  POPT_ARG_NONE, &update, 0, "Download only when remote file is newer than local file or local file is missing"},
550                 {"recursive", 'R',  POPT_ARG_NONE, &_recursive, 0, "Recursively download files" },
551                 {"username", 'u', POPT_ARG_STRING, &username, 'u', "Username to use" },
552                 {"password", 'p', POPT_ARG_STRING, &password, 'p', "Password to use" },
553                 {"workgroup", 'w', POPT_ARG_STRING, &workgroup, 'w', "Workgroup to use (optional)" },
554                 {"nonprompt", 'n', POPT_ARG_NONE, &nonprompt, 'n', "Don't ask anything (non-interactive)" },
555                 {"debuglevel", 'd', POPT_ARG_INT, &debuglevel, 'd', "Debuglevel to use" },
556                 {"outputfile", 'o', POPT_ARG_STRING, &outputfile, 'o', "Write downloaded data to specified file" },
557                 {"stdout", 'O', POPT_ARG_NONE, &send_stdout, 'O', "Write data to stdout" },
558                 {"dots", 'D', POPT_ARG_NONE, &dots, 'D', "Show dots as progress indication" },
559                 {"quiet", 'q', POPT_ARG_NONE, &quiet, 'q', "Be quiet" },
560                 {"verbose", 'v', POPT_ARG_NONE, &verbose, 'v', "Be verbose" },
561                 {"keep-permissions", 'P', POPT_ARG_NONE, &keep_permissions, 'P', "Keep permissions" },
562                 {"blocksize", 'b', POPT_ARG_INT, &blocksize, 'b', "Change number of bytes in a block"},
563                 {"rcfile", 'f', POPT_ARG_STRING, NULL, 0, "Use specified rc file"},
564                 POPT_AUTOHELP
565                 POPT_TABLEEND
566         };
567         poptContext pc;
568
569         load_case_tables();
570
571         /* only read rcfile if it exists */
572         asprintf(&rcfile, "%s/.smbgetrc", getenv("HOME"));
573         if(access(rcfile, F_OK) == 0) 
574                 readrcfile(rcfile, long_options);
575         free(rcfile);
576
577 #ifdef SIGWINCH
578         signal(SIGWINCH, change_columns);
579 #endif
580         signal(SIGINT, signal_quit);
581         signal(SIGTERM, signal_quit);
582
583         pc = poptGetContext(argv[0], argc, argv, long_options, 0);
584
585         while((c = poptGetNextOpt(pc)) >= 0) {
586                 switch(c) {
587                 case 'f':
588                         readrcfile(poptGetOptArg(pc), long_options);
589                         break;
590                 case 'a':
591                         username = ""; password = "";
592                         break;
593                 case 'e':
594                         smb_encrypt = true;
595                         break;
596                 }
597         }
598
599         if((send_stdout || _resume || outputfile) && update) {
600                 fprintf(stderr, "The -o, -R or -O and -U options can not be used together.\n");
601                 return 1;
602         }
603         if((send_stdout || outputfile) && _recursive) {
604                 fprintf(stderr, "The -o or -O and -R options can not be used together.\n");
605                 return 1;
606         }
607
608         if(outputfile && send_stdout) {
609                 fprintf(stderr, "The -o and -O options cannot be used together.\n");
610                 return 1;
611         }
612
613         if(smbc_init(get_auth_data, debuglevel) < 0) {
614                 fprintf(stderr, "Unable to initialize libsmbclient\n");
615                 return 1;
616         }
617
618         if (smb_encrypt) {
619                 SMBCCTX *smb_ctx = smbc_set_context(NULL);
620                 smbc_option_set(smb_ctx,
621                         CONST_DISCARD(char *, "smb_encrypt_level"),
622                         "require");
623         }
624         
625         columns = get_num_cols();
626
627         total_start_time = time(NULL);
628
629         while ( (file = poptGetArg(pc)) ) {
630                 if (!_recursive) 
631                         return smb_download_file(file, "", _recursive, _resume, outputfile);
632                 else 
633                         return smb_download_dir(file, "", _resume);
634         }
635
636         clean_exit();
637         TALLOC_FREE(frame);
638         return 0;
639 }