2 Unix SMB/Netbios implementation.
5 Copyright (C) Ricky Poulten 1995-1998
6 Copyright (C) Richard Sharpe 1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 /* The following changes developed by Richard Sharpe for Canon Information
23 Systems Research Australia (CISRA)
25 1. Restore can now restore files with long file names
26 2. Save now saves directory information so that we can restore
27 directory creation times
28 3. tar now accepts both UNIX path names and DOS path names. I prefer
29 those lovely /'s to those UGLY \'s :-)
30 4. the files to exclude can be specified as a regular expression by adding
31 an r flag to the other tar flags. Eg:
33 -TcrX file.tar "*.(obj|exe)"
35 will skip all .obj and .exe files
42 static int clipfind(char **aret
, int ret
, char *tok
);
44 typedef struct file_info_struct file_info2
;
46 struct file_info_struct
52 /* These times are normally kept in GMT */
56 char *name
; /* This is dynamically allocate */
58 file_info2
*next
, *prev
; /* Used in the stack ... */
69 stack dir_stack
= {NULL
, 0}; /* Want an empty stack */
71 #define SEPARATORS " \t\n\r"
72 extern int DEBUGLEVEL
;
73 extern struct cli_state
*cli
;
76 /* These defines are for the do_setrattr routine, to indicate
77 * setting and reseting of file attributes in the function call */
81 static uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
83 #ifndef CLIENT_TIMEOUT
84 #define CLIENT_TIMEOUT (30*1000)
87 static char *tarbuf
, *buffer_p
;
88 static int tp
, ntarf
, tbufsiz
;
90 /* Incremental mode */
92 /* Reset archive bit */
94 /* Include / exclude mode (true=include, false=exclude) */
96 /* use regular expressions for search on file names */
97 BOOL tar_re_search
=False
;
101 /* Do not dump anything, just calculate sizes */
103 /* Dump files with System attribute */
104 BOOL tar_system
=True
;
105 /* Dump files with Hidden attribute */
106 BOOL tar_hidden
=True
;
107 /* Be noisy - make a catalogue */
109 BOOL tar_real_noisy
=False
; /* Don't want to be really noisy by default */
112 static char **cliplist
=NULL
;
114 static BOOL must_free_cliplist
= False
;
116 extern file_info def_finfo
;
117 extern BOOL lowercase
;
119 extern BOOL readbraw_supported
;
121 extern pstring cur_dir
;
122 extern int get_total_time_ms
;
123 extern int get_total_size
;
129 static void writetarheader(int f
, char *aname
, int size
, time_t mtime
,
130 char *amode
, unsigned char ftype
);
131 static void do_atar(char *rname
,char *lname
,file_info
*finfo1
);
132 static void do_tar(file_info
*finfo
);
133 static void oct_it(long value
, int ndgs
, char *p
);
134 static void fixtarname(char *tptr
, char *fp
, int l
);
135 static int dotarbuf(int f
, char *b
, int n
);
136 static void dozerobuf(int f
, int n
);
137 static void dotareof(int f
);
138 static void initarbuf(void);
140 /* restore functions */
141 static long readtarheader(union hblock
*hb
, file_info2
*finfo
, char *prefix
);
142 static long unoct(char *p
, int ndgs
);
143 static void do_tarput(void);
144 static void unfixtarname(char *tptr
, char *fp
, int l
, BOOL first
);
147 * tar specific utitlities
150 /*******************************************************************
151 Create a string of size size+1 (for the null)
152 *******************************************************************/
153 static char *string_create_s(int size
)
157 tmp
= (char *)malloc(size
+1);
161 DEBUG(0, ("Out of memory in string_create_s\n"));
169 /****************************************************************************
170 Write a tar header to buffer
171 ****************************************************************************/
172 static void writetarheader(int f
, char *aname
, int size
, time_t mtime
,
173 char *amode
, unsigned char ftype
)
179 DEBUG(5, ("WriteTarHdr, Type = %c, Size= %i, Name = %s\n", ftype
, size
, aname
));
181 memset(hb
.dummy
, 0, sizeof(hb
.dummy
));
185 /* write a GNU tar style long header */
187 b
= (char *)malloc(l
+TBLOCK
+100);
189 DEBUG(0,("out of memory\n"));
192 writetarheader(f
, "/./@LongLink", l
+1, 0, " 0 \0", 'L');
193 memset(b
, 0, l
+TBLOCK
+100);
194 fixtarname(b
, aname
, l
);
196 DEBUG(5, ("File name in tar file: %s, size=%d, \n", b
, (int)strlen(b
)));
197 dotarbuf(f
, b
, TBLOCK
*(((i
-1)/TBLOCK
)+1));
201 /* use l + 1 to do the null too */
202 fixtarname(hb
.dbuf
.name
, aname
, (l
>= NAMSIZ
) ? NAMSIZ
: l
+ 1);
205 strlower(hb
.dbuf
.name
);
207 /* write out a "standard" tar format header */
209 hb
.dbuf
.name
[NAMSIZ
-1]='\0';
210 safe_strcpy(hb
.dbuf
.mode
, amode
, strlen(amode
));
211 oct_it(0L, 8, hb
.dbuf
.uid
);
212 oct_it(0L, 8, hb
.dbuf
.gid
);
213 oct_it((long) size
, 13, hb
.dbuf
.size
);
214 oct_it((long) mtime
, 13, hb
.dbuf
.mtime
);
215 memcpy(hb
.dbuf
.chksum
, " ", sizeof(hb
.dbuf
.chksum
));
216 memset(hb
.dbuf
.linkname
, 0, NAMSIZ
);
217 hb
.dbuf
.linkflag
=ftype
;
219 for (chk
=0, i
=sizeof(hb
.dummy
), jp
=hb
.dummy
; --i
>=0;) chk
+=(0xFF & *jp
++);
221 oct_it((long) chk
, 8, hb
.dbuf
.chksum
);
222 hb
.dbuf
.chksum
[6] = '\0';
224 (void) dotarbuf(f
, hb
.dummy
, sizeof(hb
.dummy
));
227 /****************************************************************************
228 Read a tar header into a hblock structure, and validate
229 ***************************************************************************/
230 static long readtarheader(union hblock
*hb
, file_info2
*finfo
, char *prefix
)
237 * read in a "standard" tar format header - we're not that interested
238 * in that many fields, though
241 /* check the checksum */
242 for (chk
=0, i
=sizeof(hb
->dummy
), jp
=hb
->dummy
; --i
>=0;) chk
+=(0xFF & *jp
++);
247 /* compensate for blanks in chksum header */
248 for (i
=sizeof(hb
->dbuf
.chksum
), jp
=hb
->dbuf
.chksum
; --i
>=0;)
251 chk
+= ' ' * sizeof(hb
->dbuf
.chksum
);
253 fchk
=unoct(hb
->dbuf
.chksum
, sizeof(hb
->dbuf
.chksum
));
255 DEBUG(5, ("checksum totals chk=%ld fchk=%ld chksum=%s\n",
256 chk
, fchk
, hb
->dbuf
.chksum
));
260 DEBUG(0, ("checksums don't match %ld %ld\n", fchk
, chk
));
261 dump_data(5, (char *)hb
- TBLOCK
, TBLOCK
*3);
265 if ((finfo
->name
= string_create_s(strlen(prefix
) + strlen(hb
-> dbuf
.name
) + 3)) == NULL
) {
267 DEBUG(0, ("Out of space creating file_info2 for %s\n", hb
-> dbuf
.name
));
272 safe_strcpy(finfo
->name
, prefix
, strlen(prefix
) + strlen(hb
-> dbuf
.name
) + 3);
274 /* use l + 1 to do the null too; do prefix - prefcnt to zap leading slash */
275 unfixtarname(finfo
->name
+ strlen(prefix
), hb
->dbuf
.name
,
276 strlen(hb
->dbuf
.name
) + 1, True
);
278 /* can't handle some links at present */
279 if ((hb
->dbuf
.linkflag
!= '0') && (hb
-> dbuf
.linkflag
!= '5')) {
280 if (hb
->dbuf
.linkflag
== 0) {
281 DEBUG(6, ("Warning: NULL link flag (gnu tar archive ?) %s\n",
284 if (hb
-> dbuf
.linkflag
== 'L') { /* We have a longlink */
285 /* Do nothing here at the moment. do_tarput will handle this
286 as long as the longlink gets back to it, as it has to advance
287 the buffer pointer, etc */
290 DEBUG(0, ("this tar file appears to contain some kind of link other than a GNUtar Longlink - ignoring\n"));
296 if ((unoct(hb
->dbuf
.mode
, sizeof(hb
->dbuf
.mode
)) & S_IFDIR
)
297 || (*(finfo
->name
+strlen(finfo
->name
)-1) == '\\'))
302 finfo
->mode
=0; /* we don't care about mode at the moment, we'll
303 * just make it a regular file */
305 * Bug fix by richard@sj.co.uk
307 * REC: restore times correctly (as does tar)
308 * We only get the modification time of the file; set the creation time
309 * from the mod. time, and the access time to current time
311 finfo
->mtime
= finfo
->ctime
= strtol(hb
->dbuf
.mtime
, NULL
, 8);
312 finfo
->atime
= time(NULL
);
313 finfo
->size
= unoct(hb
->dbuf
.size
, sizeof(hb
->dbuf
.size
));
318 /****************************************************************************
319 Write out the tar buffer to tape or wherever
320 ****************************************************************************/
321 static int dotarbuf(int f
, char *b
, int n
)
328 /* This routine and the next one should be the only ones that do write()s */
329 if (tp
+ n
>= tbufsiz
)
334 memcpy(tarbuf
+ tp
, b
, diff
);
335 fail
=fail
&& (1+write(f
, tarbuf
, tbufsiz
));
342 fail
=fail
&& (1 + write(f
, b
, tbufsiz
));
348 memcpy(tarbuf
+tp
, b
, n
);
352 return(fail
? writ
: 0);
355 /****************************************************************************
356 Write zeros to buffer / tape
357 ****************************************************************************/
358 static void dozerobuf(int f
, int n
)
360 /* short routine just to write out n zeros to buffer -
361 * used to round files to nearest block
362 * and to do tar EOFs */
369 memset(tarbuf
+tp
, 0, tbufsiz
-tp
);
371 write(f
, tarbuf
, tbufsiz
);
372 memset(tarbuf
, 0, (tp
+=n
-tbufsiz
));
376 memset(tarbuf
+tp
, 0, n
);
381 /****************************************************************************
383 ****************************************************************************/
384 static void initarbuf(void)
386 /* initialize tar buffer */
387 tbufsiz
=blocksize
*TBLOCK
;
388 tarbuf
=malloc(tbufsiz
); /* FIXME: We might not get the buffer */
390 /* reset tar buffer pointer and tar file counter and total dumped */
391 tp
=0; ntarf
=0; ttarf
=0;
394 /****************************************************************************
395 Write two zero blocks at end of file
396 ****************************************************************************/
397 static void dotareof(int f
)
399 SMB_STRUCT_STAT stbuf
;
400 /* Two zero blocks at end of file, write out full buffer */
405 (void) dozerobuf(f
, TBLOCK
);
406 (void) dozerobuf(f
, TBLOCK
);
408 if (sys_fstat(f
, &stbuf
) == -1)
410 DEBUG(0, ("Couldn't stat file handle\n"));
414 /* Could be a pipe, in which case S_ISREG should fail,
415 * and we should write out at full size */
416 if (tp
> 0) write(f
, tarbuf
, S_ISREG(stbuf
.st_mode
) ? tp
: tbufsiz
);
419 /****************************************************************************
420 (Un)mangle DOS pathname, make nonabsolute
421 ****************************************************************************/
422 static void fixtarname(char *tptr
, char *fp
, int l
)
424 /* add a '.' to start of file name, convert from ugly dos \'s in path
425 * to lovely unix /'s :-} */
430 int skip
= get_character_len(*fp
);
436 } else if (skip
== 1) {
440 } else if (*fp
== '\\') {
451 /****************************************************************************
452 Convert from decimal to octal string
453 ****************************************************************************/
454 static void oct_it (long value
, int ndgs
, char *p
)
456 /* Converts long to octal string, pads with leading zeros */
458 /* skip final null, but do final space */
462 /* Loop does at least one digit */
464 p
[--ndgs
] = '0' + (char) (value
& 7);
467 while (ndgs
> 0 && value
!= 0);
469 /* Do leading zeros */
474 /****************************************************************************
475 Convert from octal string to long
476 ***************************************************************************/
477 static long unoct(char *p
, int ndgs
)
480 /* Converts octal string to long, ignoring any non-digit */
484 if (isdigit((int)*p
))
485 value
= (value
<< 3) | (long) (*p
- '0');
493 /****************************************************************************
494 Compare two strings in a slash insensitive way, allowing s1 to match s2
495 if s1 is an "initial" string (up to directory marker). Thus, if s2 is
496 a file in any subdirectory of s1, declare a match.
497 ***************************************************************************/
498 static int strslashcmp(char *s1
, char *s2
)
504 || tolower(*s1
) == tolower(*s2
)
505 || (*s1
== '\\' && *s2
=='/')
506 || (*s1
== '/' && *s2
=='\\'))) {
510 /* if s1 has a trailing slash, it compared equal, so s1 is an "initial"
513 if (!*s1
&& s1
!= s1_0
&& (*(s1
-1) == '/' || *(s1
-1) == '\\')) return 0;
515 /* ignore trailing slash on s1 */
516 if (!*s2
&& (*s1
== '/' || *s1
== '\\') && !*(s1
+1)) return 0;
518 /* check for s1 is an "initial" string of s2 */
519 if (*s2
== '/' || *s2
== '\\') return 0;
525 /****************************************************************************
526 Ensure a remote path exists (make if necessary)
527 ***************************************************************************/
528 static BOOL
ensurepath(char *fname
)
530 /* *must* be called with buffer ready malloc'ed */
531 /* ensures path exists */
533 char *partpath
, *ffname
;
534 char *p
=fname
, *basehack
;
536 DEBUG(5, ( "Ensurepath called with: %s\n", fname
));
538 partpath
= string_create_s(strlen(fname
));
539 ffname
= string_create_s(strlen(fname
));
541 if ((partpath
== NULL
) || (ffname
== NULL
)){
543 DEBUG(0, ("Out of memory in ensurepath: %s\n", fname
));
550 /* fname copied to ffname so can strtok */
552 safe_strcpy(ffname
, fname
, strlen(fname
));
554 /* do a `basename' on ffname, so don't try and make file name directory */
555 if ((basehack
=strrchr(ffname
, '\\')) == NULL
)
560 p
=strtok(ffname
, "\\");
564 safe_strcat(partpath
, p
, strlen(fname
) + 1);
566 if (!cli_chkpath(cli
, partpath
)) {
567 if (!cli_mkdir(cli
, partpath
))
569 DEBUG(0, ("Error mkdirhiering\n"));
573 DEBUG(3, ("mkdirhiering %s\n", partpath
));
577 safe_strcat(partpath
, "\\", strlen(fname
) + 1);
578 p
= strtok(NULL
,"/\\");
584 static int padit(char *buf
, int bufsize
, int padsize
)
589 DEBUG(5, ("Padding with %d zeros\n", padsize
));
590 memset(buf
, 0, bufsize
);
591 while( !berr
&& padsize
> 0 ) {
592 bytestowrite
= MIN(bufsize
, padsize
);
593 berr
= dotarbuf(tarhandle
, buf
, bytestowrite
) != bytestowrite
;
594 padsize
-= bytestowrite
;
601 static void do_setrattr(char *name
, uint16 attr
, int set
)
605 if (!cli_getatr(cli
, name
, &oldattr
, NULL
, NULL
)) return;
607 if (set
== ATTRSET
) {
610 attr
= oldattr
& ~attr
;
613 if (!cli_setatr(cli
, name
, attr
, 0)) {
614 DEBUG(1,("setatr failed: %s\n", cli_errstr(cli
)));
619 /****************************************************************************
620 append one remote file to the tar file
621 ***************************************************************************/
622 static void do_atar(char *rname
,char *lname
,file_info
*finfo1
)
628 BOOL close_done
= False
;
629 BOOL shallitime
=True
;
631 int read_size
= 65520;
634 struct timeval tp_start
;
635 GetTimeOfDay(&tp_start
);
637 ftype
= '0'; /* An ordinary file ... */
640 finfo
.size
= finfo1
-> size
;
641 finfo
.mode
= finfo1
-> mode
;
642 finfo
.uid
= finfo1
-> uid
;
643 finfo
.gid
= finfo1
-> gid
;
644 finfo
.mtime
= finfo1
-> mtime
;
645 finfo
.atime
= finfo1
-> atime
;
646 finfo
.ctime
= finfo1
-> ctime
;
649 finfo
.size
= def_finfo
.size
;
650 finfo
.mode
= def_finfo
.mode
;
651 finfo
.uid
= def_finfo
.uid
;
652 finfo
.gid
= def_finfo
.gid
;
653 finfo
.mtime
= def_finfo
.mtime
;
654 finfo
.atime
= def_finfo
.atime
;
655 finfo
.ctime
= def_finfo
.ctime
;
660 DEBUG(3,("skipping file %s of size %d bytes\n",
664 ttarf
+=finfo
.size
+ TBLOCK
- (finfo
.size
% TBLOCK
);
669 fnum
= cli_open(cli
, rname
, O_RDONLY
, DENY_NONE
);
671 dos_clean_name(rname
);
674 DEBUG(0,("%s opening remote file %s (%s)\n",
675 cli_errstr(cli
),rname
, cur_dir
));
679 finfo
.name
= string_create_s(strlen(rname
));
680 if (finfo
.name
== NULL
) {
681 DEBUG(0, ("Unable to allocate space for finfo.name in do_atar\n"));
685 safe_strcpy(finfo
.name
,rname
, strlen(rname
));
687 if (!cli_getattrE(cli
, fnum
, &finfo
.mode
, &finfo
.size
, NULL
, &finfo
.atime
, &finfo
.mtime
)) {
688 DEBUG(0, ("getattrE: %s\n", cli_errstr(cli
)));
691 finfo
.ctime
= finfo
.mtime
;
694 DEBUG(3,("file %s attrib 0x%X\n",finfo
.name
,finfo
.mode
));
696 if (tar_inc
&& !(finfo
.mode
& aARCH
))
698 DEBUG(4, ("skipping %s - archive bit not set\n", finfo
.name
));
701 else if (!tar_system
&& (finfo
.mode
& aSYSTEM
))
703 DEBUG(4, ("skipping %s - system bit is set\n", finfo
.name
));
706 else if (!tar_hidden
&& (finfo
.mode
& aHIDDEN
))
708 DEBUG(4, ("skipping %s - hidden bit is set\n", finfo
.name
));
713 DEBUG(3,("getting file %s of size %d bytes as a tar file %s",
718 /* write a tar header, don't bother with mode - just set to 100644 */
719 writetarheader(tarhandle
, rname
, finfo
.size
, finfo
.mtime
, "100644 \0", ftype
);
721 while (nread
< finfo
.size
&& !close_done
) {
723 DEBUG(3,("nread=%d\n",nread
));
725 datalen
= cli_read(cli
, fnum
, data
, nread
, read_size
);
728 DEBUG(0,("Error reading file %s : %s\n", rname
, cli_errstr(cli
)));
732 /* add received bits of file to buffer - dotarbuf will
733 * write out in 512 byte intervals */
734 if (dotarbuf(tarhandle
,data
,datalen
) != datalen
) {
735 DEBUG(0,("Error writing to tar file - %s\n", strerror(errno
)));
741 DEBUG(0,("Error reading file %s. Got 0 bytes\n", rname
));
748 /* pad tar file with zero's if we couldn't get entire file */
749 if (nread
< finfo
.size
) {
750 DEBUG(0, ("Didn't get entire file. size=%d, nread=%d\n", (int)finfo
.size
, (int)nread
));
751 if (padit(data
, sizeof(data
), finfo
.size
- nread
))
752 DEBUG(0,("Error writing tar file - %s\n", strerror(errno
)));
755 /* round tar file to nearest block */
756 if (finfo
.size
% TBLOCK
)
757 dozerobuf(tarhandle
, TBLOCK
- (finfo
.size
% TBLOCK
));
759 ttarf
+=finfo
.size
+ TBLOCK
- (finfo
.size
% TBLOCK
);
763 cli_close(cli
, fnum
);
767 struct timeval tp_end
;
770 /* if shallitime is true then we didn't skip */
771 if (tar_reset
&& !dry_run
)
772 (void) do_setrattr(finfo
.name
, aARCH
, ATTRRESET
);
774 GetTimeOfDay(&tp_end
);
776 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
777 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
778 get_total_time_ms
+= this_time
;
779 get_total_size
+= finfo
.size
;
783 DEBUG(0, ("%10d (%7.1f kb/s) %s\n",
784 (int)finfo
.size
, finfo
.size
/ MAX(0.001, (1.024*this_time
)),
788 /* Thanks to Carel-Jan Engel (ease@mail.wirehub.nl) for this one */
789 DEBUG(3,("(%g kb/s) (average %g kb/s)\n",
790 finfo
.size
/ MAX(0.001, (1.024*this_time
)),
791 get_total_size
/ MAX(0.001, (1.024*get_total_time_ms
))));
795 /****************************************************************************
796 Append single file to tar file (or not)
797 ***************************************************************************/
798 static void do_tar(file_info
*finfo
)
802 if (strequal(finfo
->name
,"..") || strequal(finfo
->name
,"."))
805 /* Is it on the exclude list ? */
806 if (!tar_excl
&& clipn
) {
809 DEBUG(5, ("Excl: strlen(cur_dir) = %d\n", (int)strlen(cur_dir
)));
811 safe_strcpy(exclaim
, cur_dir
, sizeof(pstring
));
812 *(exclaim
+strlen(exclaim
)-1)='\0';
814 safe_strcat(exclaim
, "\\", sizeof(pstring
));
815 safe_strcat(exclaim
, finfo
->name
, sizeof(exclaim
));
817 DEBUG(5, ("...tar_re_search: %d\n", tar_re_search
));
819 if ((!tar_re_search
&& clipfind(cliplist
, clipn
, exclaim
)) ||
821 (tar_re_search
&& !regexec(preg
, exclaim
, 0, NULL
, 0))) {
823 (tar_re_search
&& mask_match(exclaim
, cliplist
[0], True
, False
))) {
825 DEBUG(3,("Skipping file %s\n", exclaim
));
830 if (finfo
->mode
& aDIR
)
832 pstring saved_curdir
;
835 safe_strcpy(saved_curdir
, cur_dir
, sizeof(saved_curdir
));
837 DEBUG(5, ("Sizeof(cur_dir)=%d, strlen(cur_dir)=%d, strlen(finfo->name)=%d\nname=%s,cur_dir=%s\n", (int)sizeof(cur_dir
), (int)strlen(cur_dir
), (int)strlen(finfo
->name
), finfo
->name
, cur_dir
));
839 safe_strcat(cur_dir
,finfo
->name
, sizeof(cur_dir
));
840 safe_strcat(cur_dir
,"\\", sizeof(cur_dir
));
842 DEBUG(5, ("Writing a dir, Name = %s\n", cur_dir
));
844 /* write a tar directory, don't bother with mode - just set it to
846 writetarheader(tarhandle
, cur_dir
, 0, finfo
->mtime
, "040755 \0", '5');
848 DEBUG(0,(" directory %s\n", cur_dir
));
850 ntarf
++; /* Make sure we have a file on there */
851 safe_strcpy(mtar_mask
,cur_dir
, sizeof(pstring
));
852 safe_strcat(mtar_mask
,"*", sizeof(pstring
));
853 DEBUG(5, ("Doing list with mtar_mask: %s\n", mtar_mask
));
854 do_list(mtar_mask
, attribute
, do_tar
, False
, True
);
855 safe_strcpy(cur_dir
,saved_curdir
, sizeof(pstring
));
859 safe_strcpy(rname
,cur_dir
, sizeof(pstring
));
860 safe_strcat(rname
,finfo
->name
, sizeof(pstring
));
861 do_atar(rname
,finfo
->name
,finfo
);
865 /****************************************************************************
866 Convert from UNIX to DOS file names
867 ***************************************************************************/
868 static void unfixtarname(char *tptr
, char *fp
, int l
, BOOL first
)
870 /* remove '.' from start of file name, convert from unix /'s to
871 * dos \'s in path. Kill any absolute path names. But only if first!
874 DEBUG(5, ("firstb=%lX, secondb=%lX, len=%i\n", (long)tptr
, (long)fp
, l
));
881 if (*fp
== '\\' || *fp
== '/') {
888 int skip
= get_character_len(*fp
);
894 } else if (skip
== 1) {
898 } else if (*fp
== '/') {
910 /****************************************************************************
911 Move to the next block in the buffer, which may mean read in another set of
912 blocks. FIXME, we should allow more than one block to be skipped.
913 ****************************************************************************/
914 static int next_block(char *ltarbuf
, char **bufferp
, int bufsiz
)
916 int bufread
, total
= 0;
918 DEBUG(5, ("Advancing to next block: %0lx\n", (unsigned long)*bufferp
));
922 if (*bufferp
>= (ltarbuf
+ bufsiz
)) {
924 DEBUG(5, ("Reading more data into ltarbuf ...\n"));
927 * Bugfix from Bob Boehmer <boehmer@worldnet.att.net>
928 * Fixes bug where read can return short if coming from
932 bufread
= read(tarhandle
, ltarbuf
, bufsiz
);
935 while (total
< bufsiz
) {
936 if (bufread
< 0) { /* An error, return false */
937 return (total
> 0 ? -2 : bufread
);
945 bufread
= read(tarhandle
, <arbuf
[total
], bufsiz
- total
);
949 DEBUG(5, ("Total bytes read ... %i\n", total
));
959 /* Skip a file, even if it includes a long file name? */
960 static int skip_file(int skipsize
)
962 int dsize
= skipsize
;
964 DEBUG(5, ("Skiping file. Size = %i\n", skipsize
));
966 /* FIXME, we should skip more than one block at a time */
970 if (next_block(tarbuf
, &buffer_p
, tbufsiz
) <= 0) {
972 DEBUG(0, ("Empty file, short tar file, or read error: %s\n", strerror(errno
)));
984 /*************************************************************
985 Get a file from the tar file and store it.
986 When this is called, tarbuf already contains the first
987 file block. This is a bit broken & needs fixing.
988 **************************************************************/
990 static int get_file(file_info2 finfo
)
992 int fnum
= -1, pos
= 0, dsize
= 0, rsize
= 0, bpos
= 0;
994 DEBUG(5, ("get_file: file: %s, size %i\n", finfo
.name
, (int)finfo
.size
));
996 if (ensurepath(finfo
.name
) &&
997 (fnum
=cli_open(cli
, finfo
.name
, O_WRONLY
|O_CREAT
|O_TRUNC
, DENY_NONE
)) == -1) {
998 DEBUG(0, ("abandoning restore\n"));
1002 /* read the blocks from the tar file and write to the remote file */
1004 rsize
= finfo
.size
; /* This is how much to write */
1008 /* We can only write up to the end of the buffer */
1010 dsize
= MIN(tbufsiz
- (buffer_p
- tarbuf
) - bpos
, 65520); /* Calculate the size to write */
1011 dsize
= MIN(dsize
, rsize
); /* Should be only what is left */
1012 DEBUG(5, ("writing %i bytes, bpos = %i ...\n", dsize
, bpos
));
1014 if (cli_write(cli
, fnum
, 0, buffer_p
+ bpos
, pos
, dsize
) != dsize
) {
1015 DEBUG(0, ("Error writing remote file\n"));
1022 /* Now figure out how much to move in the buffer */
1024 /* FIXME, we should skip more than one block at a time */
1026 /* First, skip any initial part of the part written that is left over */
1027 /* from the end of the first TBLOCK */
1029 if ((bpos
) && ((bpos
+ dsize
) >= TBLOCK
)) {
1031 dsize
-= (TBLOCK
- bpos
); /* Get rid of the end of the first block */
1034 if (next_block(tarbuf
, &buffer_p
, tbufsiz
) <=0) { /* and skip the block */
1035 DEBUG(0, ("Empty file, short tar file, or read error: %s\n", strerror(errno
)));
1043 * Bugfix from Bob Boehmer <boehmer@worldnet.att.net>.
1044 * If the file being extracted is an exact multiple of
1045 * TBLOCK bytes then we don't want to extract the next
1046 * block from the tarfile here, as it will be done in
1047 * the caller of get_file().
1050 while (((rsize
!= 0) && (dsize
>= TBLOCK
)) ||
1051 ((rsize
== 0) && (dsize
> TBLOCK
))) {
1053 if (next_block(tarbuf
, &buffer_p
, tbufsiz
) <=0) {
1054 DEBUG(0, ("Empty file, short tar file, or read error: %s\n", strerror(errno
)));
1065 /* Now close the file ... */
1067 if (!cli_close(cli
, fnum
)) {
1068 DEBUG(0, ("Error closing remote file\n"));
1072 /* Now we update the creation date ... */
1074 DEBUG(5, ("Updating creation date on %s\n", finfo
.name
));
1076 if (!cli_setatr(cli
, finfo
.name
, finfo
.mode
, finfo
.mtime
)) {
1077 if (tar_real_noisy
) {
1078 DEBUG(0, ("Could not set time on file: %s\n", finfo
.name
));
1079 /*return(False); */ /* Ignore, as Win95 does not allow changes */
1085 DEBUG(0, ("restore tar file %s of size %d bytes\n", finfo
.name
, (int)finfo
.size
));
1090 /* Create a directory. We just ensure that the path exists and return as there
1091 is no file associated with a directory
1093 static int get_dir(file_info2 finfo
)
1096 DEBUG(0, ("restore directory %s\n", finfo
.name
));
1098 if (!ensurepath(finfo
.name
)) {
1100 DEBUG(0, ("Problems creating directory\n"));
1109 /* Get a file with a long file name ... first file has file name, next file
1110 has the data. We only want the long file name, as the loop in do_tarput
1111 will deal with the rest.
1113 static char * get_longfilename(file_info2 finfo
)
1115 int namesize
= finfo
.size
+ strlen(cur_dir
) + 2;
1116 char *longname
= malloc(namesize
);
1117 int offset
= 0, left
= finfo
.size
;
1120 DEBUG(5, ("Restoring a long file name: %s\n", finfo
.name
));
1121 DEBUG(5, ("Len = %d\n", (int)finfo
.size
));
1123 if (longname
== NULL
) {
1125 DEBUG(0, ("could not allocate buffer of size %d for longname\n",
1126 (int)(finfo
.size
+ strlen(cur_dir
) + 2)));
1130 /* First, add cur_dir to the long file name */
1132 if (strlen(cur_dir
) > 0) {
1133 strncpy(longname
, cur_dir
, namesize
);
1134 offset
= strlen(cur_dir
);
1137 /* Loop through the blocks picking up the name */
1141 if (next_block(tarbuf
, &buffer_p
, tbufsiz
) <= 0) {
1143 DEBUG(0, ("Empty file, short tar file, or read error: %s\n", strerror(errno
)));
1148 unfixtarname(longname
+ offset
, buffer_p
, MIN(TBLOCK
, finfo
.size
), first
--);
1149 DEBUG(5, ("UnfixedName: %s, buffer: %s\n", longname
, buffer_p
));
1160 static void do_tarput(void)
1163 struct timeval tp_start
;
1164 char *longfilename
= NULL
, linkflag
;
1167 GetTimeOfDay(&tp_start
);
1169 DEBUG(5, ("RJS do_tarput called ...\n"));
1171 buffer_p
= tarbuf
+ tbufsiz
; /* init this to force first read */
1173 /* Now read through those files ... */
1177 /* Get us to the next block, or the first block first time around */
1179 if (next_block(tarbuf
, &buffer_p
, tbufsiz
) <= 0) {
1181 DEBUG(0, ("Empty file, short tar file, or read error: %s\n", strerror(errno
)));
1187 DEBUG(5, ("Reading the next header ...\n"));
1189 switch (readtarheader((union hblock
*) buffer_p
, &finfo
, cur_dir
)) {
1191 case -2: /* Hmm, not good, but not fatal */
1192 DEBUG(0, ("Skipping %s...\n", finfo
.name
));
1193 if ((next_block(tarbuf
, &buffer_p
, tbufsiz
) <= 0) &&
1194 !skip_file(finfo
.size
)) {
1196 DEBUG(0, ("Short file, bailing out...\n"));
1204 DEBUG(0, ("abandoning restore, -1 from read tar header\n"));
1207 case 0: /* chksum is zero - looks like an EOF */
1208 DEBUG(0, ("tar: restored %d files and directories\n", ntarf
));
1209 return; /* Hmmm, bad here ... */
1218 /* Now, do we have a long file name? */
1220 if (longfilename
!= NULL
) {
1222 free(finfo
.name
); /* Free the space already allocated */
1223 finfo
.name
= longfilename
;
1224 longfilename
= NULL
;
1228 /* Well, now we have a header, process the file ... */
1230 /* Should we skip the file? We have the long name as well here */
1233 ((!tar_re_search
&& clipfind(cliplist
, clipn
, finfo
.name
) ^ tar_excl
)
1235 || (tar_re_search
&& !regexec(preg
, finfo
.name
, 0, NULL
, 0)));
1237 || (tar_re_search
&& mask_match(finfo
.name
, cliplist
[0], True
, False
)));
1240 DEBUG(5, ("Skip = %i, cliplist=%s, file=%s\n", skip
, (cliplist
?cliplist
[0]:NULL
), finfo
.name
));
1244 skip_file(finfo
.size
);
1249 /* We only get this far if we should process the file */
1250 linkflag
= ((union hblock
*)buffer_p
) -> dbuf
.linkflag
;
1254 case '0': /* Should use symbolic names--FIXME */
1257 * Skip to the next block first, so we can get the file, FIXME, should
1258 * be in get_file ...
1259 * The 'finfo.size != 0' fix is from Bob Boehmer <boehmer@worldnet.att.net>
1260 * Fixes bug where file size in tarfile is zero.
1263 if ((finfo
.size
!= 0) && next_block(tarbuf
, &buffer_p
, tbufsiz
) <=0) {
1264 DEBUG(0, ("Short file, bailing out...\n"));
1267 if (!get_file(finfo
)) {
1268 DEBUG(0, ("Abandoning restore\n"));
1275 if (!get_dir(finfo
)) {
1276 DEBUG(0, ("Abandoning restore \n"));
1282 longfilename
= get_longfilename(finfo
);
1283 if (!longfilename
) {
1284 DEBUG(0, ("abandoning restore\n"));
1288 DEBUG(5, ("Long file name: %s\n", longfilename
));
1292 skip_file(finfo
.size
); /* Don't handle these yet */
1304 * samba interactive commands
1307 /****************************************************************************
1309 ***************************************************************************/
1310 void cmd_block(void)
1315 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)))
1317 DEBUG(0, ("blocksize <n>\n"));
1322 if (block
< 0 || block
> 65535)
1324 DEBUG(0, ("blocksize out of range"));
1329 DEBUG(2,("blocksize is now %d\n", blocksize
));
1332 /****************************************************************************
1333 command to set incremental / reset mode
1334 ***************************************************************************/
1335 void cmd_tarmode(void)
1339 while (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1340 if (strequal(buf
, "full"))
1342 else if (strequal(buf
, "inc"))
1344 else if (strequal(buf
, "reset"))
1346 else if (strequal(buf
, "noreset"))
1348 else if (strequal(buf
, "system"))
1350 else if (strequal(buf
, "nosystem"))
1352 else if (strequal(buf
, "hidden"))
1354 else if (strequal(buf
, "nohidden"))
1356 else if (strequal(buf
, "verbose") || strequal(buf
, "noquiet"))
1358 else if (strequal(buf
, "quiet") || strequal(buf
, "noverbose"))
1360 else DEBUG(0, ("tarmode: unrecognised option %s\n", buf
));
1363 DEBUG(0, ("tarmode is now %s, %s, %s, %s, %s\n",
1364 tar_inc
? "incremental" : "full",
1365 tar_system
? "system" : "nosystem",
1366 tar_hidden
? "hidden" : "nohidden",
1367 tar_reset
? "reset" : "noreset",
1368 tar_noisy
? "verbose" : "quiet"));
1372 /****************************************************************************
1373 Feeble attrib command
1374 ***************************************************************************/
1375 void cmd_setmode(void)
1383 attra
[0] = attra
[1] = 0;
1385 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)))
1387 DEBUG(0, ("setmode <filename> <[+|-]rsha>\n"));
1391 safe_strcpy(fname
, cur_dir
, sizeof(pstring
));
1392 safe_strcat(fname
, buf
, sizeof(pstring
));
1394 while (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1403 case 'r': attra
[direct
]|=aRONLY
;
1405 case 'h': attra
[direct
]|=aHIDDEN
;
1407 case 's': attra
[direct
]|=aSYSTEM
;
1409 case 'a': attra
[direct
]|=aARCH
;
1411 default: DEBUG(0, ("setmode <filename> <perm=[+|-]rsha>\n"));
1416 if (attra
[ATTRSET
]==0 && attra
[ATTRRESET
]==0)
1418 DEBUG(0, ("setmode <filename> <[+|-]rsha>\n"));
1422 DEBUG(2, ("\nperm set %d %d\n", attra
[ATTRSET
], attra
[ATTRRESET
]));
1423 do_setrattr(fname
, attra
[ATTRSET
], ATTRSET
);
1424 do_setrattr(fname
, attra
[ATTRRESET
], ATTRRESET
);
1427 /****************************************************************************
1428 Principal command for creating / extracting
1429 ***************************************************************************/
1436 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)))
1438 DEBUG(0,("tar <c|x>[IXbgan] <filename>\n"));
1442 argl
=toktocliplist(&argcl
, NULL
);
1443 if (!tar_parseargs(argcl
, argl
, buf
, 0))
1451 /****************************************************************************
1452 Command line (option) version
1453 ***************************************************************************/
1454 int process_tar(void)
1470 if (clipn
&& tar_excl
) {
1474 for (i
=0; i
<clipn
; i
++) {
1475 DEBUG(5,("arg %d = %s\n", i
, cliplist
[i
]));
1477 if (*(cliplist
[i
]+strlen(cliplist
[i
])-1)=='\\') {
1478 *(cliplist
[i
]+strlen(cliplist
[i
])-1)='\0';
1481 if (strrchr(cliplist
[i
], '\\')) {
1484 safe_strcpy(saved_dir
, cur_dir
, sizeof(pstring
));
1486 if (*cliplist
[i
]=='\\') {
1487 safe_strcpy(tarmac
, cliplist
[i
], sizeof(pstring
));
1489 safe_strcpy(tarmac
, cur_dir
, sizeof(pstring
));
1490 safe_strcat(tarmac
, cliplist
[i
], sizeof(pstring
));
1492 safe_strcpy(cur_dir
, tarmac
, sizeof(pstring
));
1493 *(strrchr(cur_dir
, '\\')+1)='\0';
1495 DEBUG(5, ("process_tar, do_list with tarmac: %s\n", tarmac
));
1496 do_list(tarmac
,attribute
,do_tar
, False
, True
);
1497 safe_strcpy(cur_dir
,saved_dir
, sizeof(pstring
));
1499 safe_strcpy(tarmac
, cur_dir
, sizeof(pstring
));
1500 safe_strcat(tarmac
, cliplist
[i
], sizeof(pstring
));
1501 DEBUG(5, ("process_tar, do_list with tarmac: %s\n", tarmac
));
1502 do_list(tarmac
,attribute
,do_tar
, False
, True
);
1507 safe_strcpy(mask
,cur_dir
, sizeof(pstring
));
1508 DEBUG(5, ("process_tar, do_list with mask: %s\n", mask
));
1509 safe_strcat(mask
,"\\*", sizeof(pstring
));
1510 do_list(mask
,attribute
,do_tar
,False
, True
);
1513 if (ntarf
) dotareof(tarhandle
);
1517 DEBUG(0, ("tar: dumped %d files and directories\n", ntarf
));
1518 DEBUG(0, ("Total bytes written: %.0f\n", (double)ttarf
));
1522 if (must_free_cliplist
) {
1524 for (i
= 0; i
< clipn
; ++i
) {
1530 must_free_cliplist
= False
;
1536 /****************************************************************************
1537 Find a token (filename) in a clip list
1538 ***************************************************************************/
1539 static int clipfind(char **aret
, int ret
, char *tok
)
1541 if (aret
==NULL
) return 0;
1543 /* ignore leading slashes or dots in token */
1544 while(strchr("/\\.", *tok
)) tok
++;
1549 /* ignore leading slashes or dots in list */
1550 while(strchr("/\\.", *pkey
)) pkey
++;
1552 if (!strslashcmp(pkey
, tok
)) return 1;
1558 /****************************************************************************
1559 Read list of files to include from the file and initialize cliplist
1561 ***************************************************************************/
1562 static int read_inclusion_file(char *filename
)
1564 FILE *inclusion
= NULL
;
1565 char buf
[MAXPATHLEN
+ 1];
1566 char *inclusion_buffer
= NULL
;
1567 int inclusion_buffer_size
= 0;
1568 int inclusion_buffer_sofar
= 0;
1575 buf
[MAXPATHLEN
] = '\0'; /* guarantee null-termination */
1576 if ((inclusion
= sys_fopen(filename
, "r")) == NULL
) {
1577 /* XXX It would be better to include a reason for failure, but without
1578 * autoconf, it's hard to use strerror, sys_errlist, etc.
1580 DEBUG(0,("Unable to open inclusion file %s\n", filename
));
1584 while ((! error
) && (fgets(buf
, sizeof(buf
)-1, inclusion
))) {
1585 if (inclusion_buffer
== NULL
) {
1586 inclusion_buffer_size
= 1024;
1587 if ((inclusion_buffer
= malloc(inclusion_buffer_size
)) == NULL
) {
1588 DEBUG(0,("failure allocating buffer to read inclusion file\n"));
1594 if (buf
[strlen(buf
)-1] == '\n') {
1595 buf
[strlen(buf
)-1] = '\0';
1598 if ((strlen(buf
) + 1 + inclusion_buffer_sofar
) >= inclusion_buffer_size
) {
1599 inclusion_buffer_size
*= 2;
1600 inclusion_buffer
= Realloc(inclusion_buffer
,inclusion_buffer_size
);
1601 if (! inclusion_buffer
) {
1602 DEBUG(0,("failure enlarging inclusion buffer to %d bytes\n",
1603 inclusion_buffer_size
));
1609 safe_strcpy(inclusion_buffer
+ inclusion_buffer_sofar
, buf
, inclusion_buffer_size
- inclusion_buffer_sofar
);
1610 inclusion_buffer_sofar
+= strlen(buf
) + 1;
1616 /* Allocate an array of clipn + 1 char*'s for cliplist */
1617 cliplist
= malloc((clipn
+ 1) * sizeof(char *));
1618 if (cliplist
== NULL
) {
1619 DEBUG(0,("failure allocating memory for cliplist\n"));
1622 cliplist
[clipn
] = NULL
;
1623 p
= inclusion_buffer
;
1624 for (i
= 0; (! error
) && (i
< clipn
); i
++) {
1625 /* set current item to NULL so array will be null-terminated even if
1626 * malloc fails below. */
1628 if ((tmpstr
= (char *)malloc(strlen(p
)+1)) == NULL
) {
1629 DEBUG(0, ("Could not allocate space for a cliplist item, # %i\n", i
));
1632 unfixtarname(tmpstr
, p
, strlen(p
) + 1, True
);
1633 cliplist
[i
] = tmpstr
;
1634 if ((p
= strchr(p
, '\000')) == NULL
) {
1635 DEBUG(0,("INTERNAL ERROR: inclusion_buffer is of unexpected contents.\n"));
1641 must_free_cliplist
= True
;
1645 if (inclusion_buffer
) {
1646 free(inclusion_buffer
);
1651 /* We know cliplist is always null-terminated */
1652 for (pp
= cliplist
; *pp
; ++pp
) {
1657 must_free_cliplist
= False
;
1662 /* cliplist and its elements are freed at the end of process_tar. */
1666 /****************************************************************************
1667 Parse tar arguments. Sets tar_type, tar_excl, etc.
1668 ***************************************************************************/
1669 int tar_parseargs(int argc
, char *argv
[], char *Optarg
, int Optind
)
1671 char tar_clipfl
='\0';
1673 /* Reset back to defaults - could be from interactive version
1674 * reset mode and archive mode left as they are though
1686 if (tar_type
=='c') {
1687 printf("Tar must be followed by only one of c or x.\n");
1693 if (Optind
>=argc
|| !(blocksize
=atoi(argv
[Optind
]))) {
1694 DEBUG(0,("Option b must be followed by valid blocksize\n"));
1705 DEBUG(0,("Option N must be followed by valid file name\n"));
1708 SMB_STRUCT_STAT stbuf
;
1709 extern time_t newer_than
;
1711 if (dos_stat(argv
[Optind
], &stbuf
) == 0) {
1712 newer_than
= stbuf
.st_mtime
;
1713 DEBUG(1,("Getting files newer than %s",
1714 asctime(LocalTime(&newer_than
))));
1717 DEBUG(0,("Error setting newer-than time\n"));
1730 DEBUG(0,("Only one of I,X,F must be specified\n"));
1737 DEBUG(0,("Only one of I,X,F must be specified\n"));
1744 DEBUG(0,("Only one of I,X,F must be specified\n"));
1750 DEBUG(0, ("tar_re_search set\n"));
1751 tar_re_search
= True
;
1754 if (tar_type
== 'c') {
1755 DEBUG(0, ("dry_run set\n"));
1758 DEBUG(0, ("n is only meaningful when creating a tar-file\n"));
1763 DEBUG(0,("Unknown tar option\n"));
1768 printf("Option T must be followed by one of c or x.\n");
1772 /* tar_excl is true if cliplist lists files to be included.
1773 * Both 'I' and 'F' mean include. */
1774 tar_excl
=tar_clipfl
!='X';
1776 if (tar_clipfl
=='F') {
1777 if (argc
-Optind
-1 != 1) {
1778 DEBUG(0,("Option F must be followed by exactly one filename.\n"));
1781 if (! read_inclusion_file(argv
[Optind
+1])) {
1784 } else if (Optind
+1<argc
&& !tar_re_search
) { /* For backwards compatibility */
1789 cliplist
=argv
+Optind
+1;
1790 clipn
=argc
-Optind
-1;
1793 if ((tmplist
=malloc(clipn
*sizeof(char *))) == NULL
) {
1794 DEBUG(0, ("Could not allocate space to process cliplist, count = %i\n",
1800 for (clipcount
= 0; clipcount
< clipn
; clipcount
++) {
1802 DEBUG(5, ("Processing an item, %s\n", cliplist
[clipcount
]));
1804 if ((tmpstr
= (char *)malloc(strlen(cliplist
[clipcount
])+1)) == NULL
) {
1805 DEBUG(0, ("Could not allocate space for a cliplist item, # %i\n",
1810 unfixtarname(tmpstr
, cliplist
[clipcount
], strlen(cliplist
[clipcount
]) + 1, True
);
1811 tmplist
[clipcount
] = tmpstr
;
1812 DEBUG(5, ("Processed an item, %s\n", tmpstr
));
1814 DEBUG(5, ("Cliplist is: %s\n", cliplist
[0]));
1817 must_free_cliplist
= True
;
1820 if (Optind
+1<argc
&& tar_re_search
) { /* Doing regular expression seaches */
1824 if ((preg
= (regex_t
*)malloc(65536)) == NULL
) {
1826 DEBUG(0, ("Could not allocate buffer for regular expression search\n"));
1831 if (errcode
= regcomp(preg
, argv
[Optind
+ 1], REG_EXTENDED
)) {
1835 errlen
= regerror(errcode
, preg
, errstr
, sizeof(errstr
) - 1);
1837 DEBUG(0, ("Could not compile pattern buffer for re search: %s\n%s\n", argv
[Optind
+ 1], errstr
));
1843 clipn
=argc
-Optind
-1;
1844 cliplist
=argv
+Optind
+1;
1848 if (Optind
>=argc
|| !strcmp(argv
[Optind
], "-")) {
1849 /* Sets tar handle to either 0 or 1, as appropriate */
1850 tarhandle
=(tar_type
=='c');
1852 * Make sure that dbf points to stderr if we are using stdout for
1858 if (tar_type
=='c' && (dry_run
|| strcmp(argv
[Optind
], "/dev/null")==0))
1861 DEBUG(0,("Output is /dev/null, assuming dry_run"));
1866 if ((tar_type
=='x' && (tarhandle
= sys_open(argv
[Optind
], O_RDONLY
, 0)) == -1)
1867 || (tar_type
=='c' && (tarhandle
=sys_creat(argv
[Optind
], 0644)) < 0))
1869 DEBUG(0,("Error opening local file %s - %s\n",
1870 argv
[Optind
], strerror(errno
)));