preparing for release of 1.7.2
[rsync/rsync.git] / flist.c
... / ...
CommitLineData
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/* generate and receive file lists */
21
22#include "rsync.h"
23
24extern int csum_length;
25
26extern int verbose;
27extern int am_server;
28extern int always_checksum;
29extern int64 total_size;
30
31extern int cvs_exclude;
32
33extern int recurse;
34
35extern int one_file_system;
36extern int make_backups;
37extern int preserve_links;
38extern int preserve_hard_links;
39extern int preserve_perms;
40extern int preserve_devices;
41extern int preserve_uid;
42extern int preserve_gid;
43extern int preserve_times;
44extern int relative_paths;
45extern int copy_links;
46extern int remote_version;
47extern int io_error;
48
49static char **local_exclude_list;
50
51int link_stat(const char *Path, struct stat *Buffer)
52{
53#if SUPPORT_LINKS
54 if (copy_links) {
55 return stat(Path, Buffer);
56 } else {
57 return lstat(Path, Buffer);
58 }
59#else
60 return stat(Path, Buffer);
61#endif
62}
63
64/*
65 This function is used to check if a file should be included/excluded
66 from the list of files based on its name and type etc
67 */
68static int match_file_name(char *fname,struct stat *st)
69{
70 if (check_exclude(fname,local_exclude_list)) {
71 if (verbose > 2)
72 fprintf(FINFO,"excluding file %s\n",fname);
73 return 0;
74 }
75 return 1;
76}
77
78/* used by the one_file_system code */
79static dev_t filesystem_dev;
80
81static void set_filesystem(char *fname)
82{
83 struct stat st;
84 if (link_stat(fname,&st) != 0) return;
85 filesystem_dev = st.st_dev;
86}
87
88
89static void send_directory(int f,struct file_list *flist,char *dir);
90
91static char *flist_dir;
92
93static void clean_fname(char *name)
94{
95 char *p;
96 int l;
97 int modified = 1;
98
99 if (!name) return;
100
101 while (modified) {
102 modified = 0;
103
104 if ((p=strstr(name,"/./"))) {
105 modified = 1;
106 while (*p) {
107 p[0] = p[2];
108 p++;
109 }
110 }
111
112 if ((p=strstr(name,"//"))) {
113 modified = 1;
114 while (*p) {
115 p[0] = p[1];
116 p++;
117 }
118 }
119
120 if (strncmp(p=name,"./",2) == 0) {
121 modified = 1;
122 do {
123 p[0] = p[2];
124 } while (*p++);
125 }
126
127 l = strlen(p=name);
128 if (l > 1 && p[l-1] == '/') {
129 modified = 1;
130 p[l-1] = 0;
131 }
132 }
133}
134
135
136
137void send_file_entry(struct file_struct *file,int f)
138{
139 unsigned char flags;
140 static time_t last_time;
141 static mode_t last_mode;
142 static dev_t last_rdev;
143 static uid_t last_uid;
144 static gid_t last_gid;
145 static char lastname[MAXPATHLEN];
146 char *fname;
147 int l1,l2;
148
149 if (f == -1) return;
150
151 if (!file) {
152 write_byte(f,0);
153 return;
154 }
155
156 fname = f_name(file);
157
158 flags = FILE_VALID;
159
160 if (file->mode == last_mode) flags |= SAME_MODE;
161 if (file->rdev == last_rdev) flags |= SAME_RDEV;
162 if (file->uid == last_uid) flags |= SAME_UID;
163 if (file->gid == last_gid) flags |= SAME_GID;
164 if (file->modtime == last_time) flags |= SAME_TIME;
165
166 for (l1=0;lastname[l1] && fname[l1] == lastname[l1];l1++) ;
167 l2 = strlen(fname) - l1;
168
169 if (l1 > 0) flags |= SAME_NAME;
170 if (l2 > 255) flags |= LONG_NAME;
171
172 write_byte(f,flags);
173 if (flags & SAME_NAME)
174 write_byte(f,l1);
175 if (flags & LONG_NAME)
176 write_int(f,l2);
177 else
178 write_byte(f,l2);
179 write_buf(f,fname+l1,l2);
180
181 write_longint(f,file->length);
182 if (!(flags & SAME_TIME))
183 write_int(f,(int)file->modtime);
184 if (!(flags & SAME_MODE))
185 write_int(f,(int)file->mode);
186 if (preserve_uid && !(flags & SAME_UID)) {
187 add_uid(file->uid);
188 write_int(f,(int)file->uid);
189 }
190 if (preserve_gid && !(flags & SAME_GID)) {
191 add_gid(file->gid);
192 write_int(f,(int)file->gid);
193 }
194 if (preserve_devices && IS_DEVICE(file->mode) && !(flags & SAME_RDEV))
195 write_int(f,(int)file->rdev);
196
197#if SUPPORT_LINKS
198 if (preserve_links && S_ISLNK(file->mode)) {
199 write_int(f,strlen(file->link));
200 write_buf(f,file->link,strlen(file->link));
201 }
202#endif
203
204#if SUPPORT_HARD_LINKS
205 if (preserve_hard_links && S_ISREG(file->mode)) {
206 write_int(f,(int)file->dev);
207 write_int(f,(int)file->inode);
208 }
209#endif
210
211 if (always_checksum) {
212 write_buf(f,file->sum,csum_length);
213 }
214
215 last_mode = file->mode;
216 last_rdev = file->rdev;
217 last_uid = file->uid;
218 last_gid = file->gid;
219 last_time = file->modtime;
220
221 strncpy(lastname,fname,MAXPATHLEN-1);
222 lastname[MAXPATHLEN-1] = 0;
223}
224
225
226
227void receive_file_entry(struct file_struct **fptr,
228 unsigned char flags,int f)
229{
230 static time_t last_time;
231 static mode_t last_mode;
232 static dev_t last_rdev;
233 static uid_t last_uid;
234 static gid_t last_gid;
235 static char lastname[MAXPATHLEN];
236 char thisname[MAXPATHLEN];
237 int l1=0,l2=0;
238 char *p;
239 struct file_struct *file;
240
241 if (flags & SAME_NAME)
242 l1 = read_byte(f);
243
244 if (flags & LONG_NAME)
245 l2 = read_int(f);
246 else
247 l2 = read_byte(f);
248
249 file = (struct file_struct *)malloc(sizeof(*file));
250 if (!file) out_of_memory("receive_file_entry");
251 bzero((char *)file,sizeof(*file));
252 (*fptr) = file;
253
254 if (l2 >= MAXPATHLEN-l1) overflow("receive_file_entry");
255
256 strncpy(thisname,lastname,l1);
257 read_sbuf(f,&thisname[l1],l2);
258 thisname[l1+l2] = 0;
259
260 strncpy(lastname,thisname,MAXPATHLEN-1);
261 lastname[MAXPATHLEN-1] = 0;
262
263 clean_fname(thisname);
264
265 if ((p = strrchr(thisname,'/'))) {
266 static char *lastdir;
267 *p = 0;
268 if (lastdir && strcmp(thisname, lastdir)==0) {
269 file->dirname = lastdir;
270 } else {
271 file->dirname = strdup(thisname);
272 lastdir = file->dirname;
273 }
274 file->basename = strdup(p+1);
275 } else {
276 file->dirname = NULL;
277 file->basename = strdup(thisname);
278 }
279
280 if (!file->basename) out_of_memory("receive_file_entry 1");
281
282
283 file->length = read_longint(f);
284 file->modtime = (flags & SAME_TIME) ? last_time : (time_t)read_int(f);
285 file->mode = (flags & SAME_MODE) ? last_mode : (mode_t)read_int(f);
286 if (preserve_uid)
287 file->uid = (flags & SAME_UID) ? last_uid : (uid_t)read_int(f);
288 if (preserve_gid)
289 file->gid = (flags & SAME_GID) ? last_gid : (gid_t)read_int(f);
290 if (preserve_devices && IS_DEVICE(file->mode))
291 file->rdev = (flags & SAME_RDEV) ? last_rdev : (dev_t)read_int(f);
292
293 if (preserve_links && S_ISLNK(file->mode)) {
294 int l = read_int(f);
295 file->link = (char *)malloc(l+1);
296 if (!file->link) out_of_memory("receive_file_entry 2");
297 read_sbuf(f,file->link,l);
298 }
299
300#if SUPPORT_HARD_LINKS
301 if (preserve_hard_links && S_ISREG(file->mode)) {
302 file->dev = read_int(f);
303 file->inode = read_int(f);
304 }
305#endif
306
307 if (always_checksum) {
308 file->sum = (char *)malloc(MD4_SUM_LENGTH);
309 if (!file->sum) out_of_memory("md4 sum");
310 read_buf(f,file->sum,csum_length);
311 }
312
313 last_mode = file->mode;
314 last_rdev = file->rdev;
315 last_uid = file->uid;
316 last_gid = file->gid;
317 last_time = file->modtime;
318}
319
320
321/* determine if a file in a different filesstem should be skipped
322 when one_file_system is set. We bascally only want to include
323 the mount points - but they can be hard to find! */
324static int skip_filesystem(char *fname, struct stat *st)
325{
326 struct stat st2;
327 char *p = strrchr(fname, '/');
328
329 /* skip all but directories */
330 if (!S_ISDIR(st->st_mode)) return 1;
331
332 /* if its not a subdirectory then allow */
333 if (!p) return 0;
334
335 *p = 0;
336 if (link_stat(fname, &st2)) {
337 *p = '/';
338 return 0;
339 }
340 *p = '/';
341
342 return (st2.st_dev != filesystem_dev);
343}
344
345static struct file_struct *make_file(char *fname)
346{
347 struct file_struct *file;
348 struct stat st;
349 char sum[SUM_LENGTH];
350 char *p;
351 char cleaned_name[MAXPATHLEN];
352
353 strncpy(cleaned_name, fname, MAXPATHLEN-1);
354 cleaned_name[MAXPATHLEN-1] = 0;
355 clean_fname(cleaned_name);
356 fname = cleaned_name;
357
358 bzero(sum,SUM_LENGTH);
359
360 if (link_stat(fname,&st) != 0) {
361 io_error = 1;
362 fprintf(FERROR,"%s: %s\n",
363 fname,strerror(errno));
364 return NULL;
365 }
366
367 if (S_ISDIR(st.st_mode) && !recurse) {
368 fprintf(FINFO,"skipping directory %s\n",fname);
369 return NULL;
370 }
371
372 if (one_file_system && st.st_dev != filesystem_dev) {
373 if (skip_filesystem(fname, &st))
374 return NULL;
375 }
376
377 if (!match_file_name(fname,&st))
378 return NULL;
379
380 if (verbose > 2)
381 fprintf(FINFO,"make_file(%s)\n",fname);
382
383 file = (struct file_struct *)malloc(sizeof(*file));
384 if (!file) out_of_memory("make_file");
385 bzero((char *)file,sizeof(*file));
386
387 if ((p = strrchr(fname,'/'))) {
388 static char *lastdir;
389 *p = 0;
390 if (lastdir && strcmp(fname, lastdir)==0) {
391 file->dirname = lastdir;
392 } else {
393 file->dirname = strdup(fname);
394 lastdir = file->dirname;
395 }
396 file->basename = strdup(p+1);
397 *p = '/';
398 } else {
399 file->dirname = NULL;
400 file->basename = strdup(fname);
401 }
402
403 file->modtime = st.st_mtime;
404 file->length = st.st_size;
405 file->mode = st.st_mode;
406 file->uid = st.st_uid;
407 file->gid = st.st_gid;
408 file->dev = st.st_dev;
409 file->inode = st.st_ino;
410#ifdef HAVE_ST_RDEV
411 file->rdev = st.st_rdev;
412#endif
413
414#if SUPPORT_LINKS
415 if (S_ISLNK(st.st_mode)) {
416 int l;
417 char lnk[MAXPATHLEN];
418 if ((l=readlink(fname,lnk,MAXPATHLEN-1)) == -1) {
419 io_error=1;
420 fprintf(FERROR,"readlink %s : %s\n",
421 fname,strerror(errno));
422 return NULL;
423 }
424 lnk[l] = 0;
425 file->link = strdup(lnk);
426 }
427#endif
428
429 if (always_checksum && S_ISREG(st.st_mode)) {
430 file->sum = (char *)malloc(MD4_SUM_LENGTH);
431 if (!file->sum) out_of_memory("md4 sum");
432 file_checksum(fname,file->sum,st.st_size);
433 }
434
435 if (flist_dir) {
436 static char *lastdir;
437 if (lastdir && strcmp(lastdir, flist_dir)==0) {
438 file->basedir = lastdir;
439 } else {
440 file->basedir = strdup(flist_dir);
441 lastdir = file->basedir;
442 }
443 } else {
444 file->basedir = NULL;
445 }
446
447 if (!S_ISDIR(st.st_mode))
448 total_size += st.st_size;
449
450 return file;
451}
452
453
454
455static void send_file_name(int f,struct file_list *flist,char *fname,
456 int recursive)
457{
458 struct file_struct *file;
459
460 file = make_file(fname);
461
462 if (!file) return;
463
464 if (flist->count >= flist->malloced) {
465 if (flist->malloced < 1000)
466 flist->malloced += 1000;
467 else
468 flist->malloced *= 2;
469 flist->files = (struct file_struct **)realloc(flist->files,
470 sizeof(flist->files[0])*
471 flist->malloced);
472 if (!flist->files)
473 out_of_memory("send_file_name");
474 }
475
476 if (strcmp(file->basename,"")) {
477 flist->files[flist->count++] = file;
478 send_file_entry(file,f);
479 }
480
481 if (S_ISDIR(file->mode) && recursive) {
482 char **last_exclude_list = local_exclude_list;
483 send_directory(f,flist,f_name(file));
484 local_exclude_list = last_exclude_list;
485 return;
486 }
487}
488
489
490
491static void send_directory(int f,struct file_list *flist,char *dir)
492{
493 DIR *d;
494 struct dirent *di;
495 char fname[MAXPATHLEN];
496 int l;
497 char *p;
498
499 d = opendir(dir);
500 if (!d) {
501 io_error = 1;
502 fprintf(FERROR,"%s: %s\n",
503 dir,strerror(errno));
504 return;
505 }
506
507 strncpy(fname,dir,MAXPATHLEN-1);
508 fname[MAXPATHLEN-1]=0;
509 l = strlen(fname);
510 if (fname[l-1] != '/') {
511 if (l == MAXPATHLEN-1) {
512 io_error = 1;
513 fprintf(FERROR,"skipping long-named directory %s\n",fname);
514 closedir(d);
515 return;
516 }
517 strcat(fname,"/");
518 l++;
519 }
520 p = fname + strlen(fname);
521
522 if (cvs_exclude) {
523 if (strlen(fname) + strlen(".cvsignore") <= MAXPATHLEN-1) {
524 strcpy(p,".cvsignore");
525 local_exclude_list = make_exclude_list(fname,NULL,0);
526 } else {
527 io_error = 1;
528 fprintf(FINFO,"cannot cvs-exclude in long-named directory %s\n",fname);
529 }
530 }
531
532 for (di=readdir(d); di; di=readdir(d)) {
533 if (strcmp(di->d_name,".")==0 ||
534 strcmp(di->d_name,"..")==0)
535 continue;
536 strncpy(p,di->d_name,MAXPATHLEN-(l+1));
537 send_file_name(f,flist,fname,recurse);
538 }
539
540 closedir(d);
541}
542
543
544
545struct file_list *send_file_list(int f,int argc,char *argv[])
546{
547 int i,l;
548 struct stat st;
549 char *p,*dir;
550 char dbuf[MAXPATHLEN];
551 char lastpath[MAXPATHLEN]="";
552 struct file_list *flist;
553
554 if (verbose && recurse && !am_server && f != -1) {
555 fprintf(FINFO,"building file list ... ");
556 fflush(FINFO);
557 }
558
559 flist = (struct file_list *)malloc(sizeof(flist[0]));
560 if (!flist) out_of_memory("send_file_list");
561
562 flist->count=0;
563 flist->malloced = 1000;
564 flist->files = (struct file_struct **)malloc(sizeof(flist->files[0])*
565 flist->malloced);
566 if (!flist->files) out_of_memory("send_file_list");
567
568 for (i=0;i<argc;i++) {
569 char fname2[MAXPATHLEN];
570 char *fname = fname2;
571
572 strncpy(fname,argv[i],MAXPATHLEN-1);
573 fname[MAXPATHLEN-1] = 0;
574
575 l = strlen(fname);
576 if (l != 1 && fname[l-1] == '/') {
577 strcat(fname,".");
578 }
579
580 if (link_stat(fname,&st) != 0) {
581 io_error=1;
582 fprintf(FERROR,"%s : %s\n",fname,strerror(errno));
583 continue;
584 }
585
586 if (S_ISDIR(st.st_mode) && !recurse) {
587 fprintf(FINFO,"skipping directory %s\n",fname);
588 continue;
589 }
590
591 dir = NULL;
592
593 if (!relative_paths) {
594 p = strrchr(fname,'/');
595 if (p) {
596 *p = 0;
597 if (p == fname)
598 dir = "/";
599 else
600 dir = fname;
601 fname = p+1;
602 }
603 } else if (f != -1 && (p=strrchr(fname,'/'))) {
604 /* this ensures we send the intermediate directories,
605 thus getting their permissions right */
606 *p = 0;
607 if (strcmp(lastpath,fname)) {
608 strcpy(lastpath, fname);
609 *p = '/';
610 for (p=fname+1; (p=strchr(p,'/')); p++) {
611 *p = 0;
612 send_file_name(f, flist, fname, 0);
613 *p = '/';
614 }
615 } else {
616 *p = '/';
617 }
618 }
619
620 if (!*fname)
621 fname = ".";
622
623 if (dir && *dir) {
624 if (getcwd(dbuf,MAXPATHLEN-1) == NULL) {
625 fprintf(FERROR,"getwd : %s\n",strerror(errno));
626 exit_cleanup(1);
627 }
628 if (chdir(dir) != 0) {
629 io_error=1;
630 fprintf(FERROR,"chdir %s : %s\n",
631 dir,strerror(errno));
632 continue;
633 }
634 flist_dir = dir;
635 if (one_file_system)
636 set_filesystem(fname);
637 send_file_name(f,flist,fname,recurse);
638 flist_dir = NULL;
639 if (chdir(dbuf) != 0) {
640 fprintf(FERROR,"chdir %s : %s\n",
641 dbuf,strerror(errno));
642 exit_cleanup(1);
643 }
644 continue;
645 }
646
647 if (one_file_system)
648 set_filesystem(fname);
649 send_file_name(f,flist,fname,recurse);
650 }
651
652 if (f != -1) {
653 send_file_entry(NULL,f);
654 write_flush(f);
655 }
656
657 if (verbose && recurse && !am_server && f != -1)
658 fprintf(FINFO,"done\n");
659
660 clean_flist(flist);
661
662 /* now send the uid/gid list. This was introduced in protocol
663 version 15 */
664 if (f != -1 && remote_version >= 15) {
665 send_uid_list(f);
666 }
667
668 /* if protocol version is >= 17 then send the io_error flag */
669 if (f != -1 && remote_version >= 17) {
670 write_int(f, io_error);
671 }
672
673 if (verbose > 2)
674 fprintf(FINFO,"send_file_list done\n");
675
676 return flist;
677}
678
679
680struct file_list *recv_file_list(int f)
681{
682 struct file_list *flist;
683 unsigned char flags;
684
685 if (verbose && recurse && !am_server) {
686 fprintf(FINFO,"receiving file list ... ");
687 fflush(FINFO);
688 }
689
690 flist = (struct file_list *)malloc(sizeof(flist[0]));
691 if (!flist)
692 goto oom;
693
694 flist->count=0;
695 flist->malloced=1000;
696 flist->files = (struct file_struct **)malloc(sizeof(flist->files[0])*
697 flist->malloced);
698 if (!flist->files)
699 goto oom;
700
701
702 for (flags=read_byte(f); flags; flags=read_byte(f)) {
703 int i = flist->count;
704
705 if (i >= flist->malloced) {
706 if (flist->malloced < 1000)
707 flist->malloced += 1000;
708 else
709 flist->malloced *= 2;
710 flist->files =(struct file_struct **)realloc(flist->files,
711 sizeof(flist->files[0])*
712 flist->malloced);
713 if (!flist->files)
714 goto oom;
715 }
716
717 receive_file_entry(&flist->files[i],flags,f);
718
719 if (S_ISREG(flist->files[i]->mode))
720 total_size += flist->files[i]->length;
721
722 flist->count++;
723
724 if (verbose > 2)
725 fprintf(FINFO,"recv_file_name(%s)\n",f_name(flist->files[i]));
726 }
727
728
729 if (verbose > 2)
730 fprintf(FINFO,"received %d names\n",flist->count);
731
732 clean_flist(flist);
733
734 if (verbose && recurse && !am_server) {
735 fprintf(FINFO,"done\n");
736 }
737
738 /* now recv the uid/gid list. This was introduced in protocol version 15 */
739 if (f != -1 && remote_version >= 15) {
740 recv_uid_list(f, flist);
741 }
742
743 /* if protocol version is >= 17 then recv the io_error flag */
744 if (f != -1 && remote_version >= 17) {
745 io_error |= read_int(f);
746 }
747
748 if (verbose > 2)
749 fprintf(FINFO,"recv_file_list done\n");
750
751 return flist;
752
753oom:
754 out_of_memory("recv_file_list");
755 return NULL; /* not reached */
756}
757
758
759int file_compare(struct file_struct **f1,struct file_struct **f2)
760{
761 if (!(*f1)->basename && !(*f2)->basename) return 0;
762 if (!(*f1)->basename) return -1;
763 if (!(*f2)->basename) return 1;
764 if ((*f1)->dirname == (*f2)->dirname)
765 return strcmp((*f1)->basename, (*f2)->basename);
766 return strcmp(f_name(*f1),f_name(*f2));
767}
768
769
770int flist_find(struct file_list *flist,struct file_struct *f)
771{
772 int low=0,high=flist->count-1;
773
774 if (flist->count <= 0) return -1;
775
776 while (low != high) {
777 int mid = (low+high)/2;
778 int ret = file_compare(&flist->files[flist_up(flist, mid)],&f);
779 if (ret == 0) return flist_up(flist, mid);
780 if (ret > 0) {
781 high=mid;
782 } else {
783 low=mid+1;
784 }
785 }
786
787 if (file_compare(&flist->files[flist_up(flist,low)],&f) == 0)
788 return flist_up(flist,low);
789 return -1;
790}
791
792
793/*
794 * free up one file
795 */
796static void free_file(struct file_struct *file)
797{
798 if (!file) return;
799 if (file->basename) free(file->basename);
800 if (file->link) free(file->link);
801 if (file->sum) free(file->sum);
802 bzero((char *)file, sizeof(*file));
803}
804
805
806/*
807 * free up all elements in a flist
808 */
809void flist_free(struct file_list *flist)
810{
811 int i;
812 for (i=1;i<flist->count;i++) {
813 free_file(flist->files[i]);
814 free(flist->files[i]);
815 }
816 bzero((char *)flist->files, sizeof(flist->files[0])*flist->count);
817 free(flist->files);
818 bzero((char *)flist, sizeof(*flist));
819 free(flist);
820}
821
822
823/*
824 * This routine ensures we don't have any duplicate names in our file list.
825 * duplicate names can cause corruption because of the pipelining
826 */
827void clean_flist(struct file_list *flist)
828{
829 int i;
830
831 if (!flist || flist->count == 0)
832 return;
833
834 qsort(flist->files,flist->count,
835 sizeof(flist->files[0]),
836 (int (*)())file_compare);
837
838 for (i=1;i<flist->count;i++) {
839 if (flist->files[i]->basename &&
840 flist->files[i-1]->basename &&
841 strcmp(f_name(flist->files[i]),
842 f_name(flist->files[i-1])) == 0) {
843 if (verbose > 1 && !am_server)
844 fprintf(FINFO,"removing duplicate name %s from file list %d\n",
845 f_name(flist->files[i-1]),i-1);
846 free_file(flist->files[i]);
847 }
848 }
849}
850
851
852/*
853 * return the full filename of a flist entry
854 */
855char *f_name(struct file_struct *f)
856{
857 static char names[10][MAXPATHLEN];
858 static int n;
859 char *p = names[n];
860
861 if (!f || !f->basename) return NULL;
862
863 n = (n+1)%10;
864
865 if (f->dirname) {
866 sprintf(p, "%s/%s", f->dirname, f->basename);
867 } else {
868 strcpy(p, f->basename);
869 }
870
871 return p;
872}
873