File: file.c

package info (click to toggle)
mc 1%3A4.6.0-4.6.1-pre3-3sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 15,224 kB
  • ctags: 11,992
  • sloc: ansic: 93,654; sh: 5,102; perl: 1,961; makefile: 1,107; yacc: 316; cs: 43; sed: 16
file content (2228 lines) | stat: -rw-r--r-- 56,866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
/* File management.
   Copyright (C) 1994, 1995, 1996 The Free Software Foundation
   
   Written by: 1994, 1995       Janne Kukonlehto
               1994, 1995       Fred Leeflang
               1994, 1995, 1996 Miguel de Icaza
               1995, 1996       Jakub Jelinek
	       1997             Norbert Warmuth
	       1998		Pavel Machek

   The copy code was based in GNU's cp, and was written by:
   Torbjorn Granlund, David MacKenzie, and Jim Meyering.

   The move code was based in GNU's mv, and was written by:
   Mike Parker and David MacKenzie.

   Janne Kukonlehto added much error recovery to them for being used
   in an interactive program.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

/*
 * Please note that all dialogs used here must be safe for background
 * operations.
 */

/* {{{ Include files */

#include <config.h>
/* Hack: the vfs code should not rely on this */
#define WITH_FULL_PATHS 1

#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#   include <unistd.h>
#endif				/* HAVE_UNISTD_H */
#include <sys/stat.h>

#include "global.h"
#include "tty.h"
#include "eregex.h"
#include "setup.h"
#include "color.h"
#include "win.h"
#include "dialog.h"
#include "widget.h"
#define WANT_WIDGETS
#include "main.h"		/* WANT_WIDGETS-> we get the the_hint def */
#include "layout.h"
#include "widget.h"
#include "wtools.h"
#include "background.h"		/* we_are_background */

/* Needed for current_panel, other_panel and WTree */
#include "dir.h"
#include "panel.h"
#include "file.h"
#include "filegui.h"
#include "tree.h"
#include "key.h"
#include "../vfs/vfs-impl.h"

/* }}} */

int verbose = 1;

/*
 * Whether the Midnight Commander tries to provide more
 * information about copy/move sizes and bytes transfered
 * at the expense of some speed
 */
int file_op_compute_totals = 1;

/* If on, default for "No" in delete operations */
int safe_delete = 0;

/* This is a hard link cache */
struct link {
    struct link *next;
    struct vfs_class *vfs;
    dev_t dev;
    ino_t ino;
    short linkcount;
    umode_t st_mode;
    char name[1];
};

/* the hard link cache */
static struct link *linklist = NULL;

/* the files-to-be-erased list */
static struct link *erase_list;

/*
 * In copy_dir_dir we use two additional single linked lists: The first - 
 * variable name `parent_dirs' - holds information about already copied 
 * directories and is used to detect cyclic symbolic links. 
 * The second (`dest_dirs' below) holds information about just created 
 * target directories and is used to detect when an directory is copied 
 * into itself (we don't want to copy infinitly). 
 * Both lists don't use the linkcount and name structure members of struct
 * link.
 */
static struct link *dest_dirs = 0;

const char *op_names[3] = {
    N_(" Copy "),
    N_(" Move "),
    N_(" Delete ")
};

/* }}} */

static int query_replace (FileOpContext * ctx, const char *destname,
			  struct stat *_s_stat, struct stat *_d_stat);
static int query_recursive (FileOpContext * ctx, const char *s);
static int do_file_error (const char *str);
static int erase_dir_iff_empty (FileOpContext *ctx, const char *s);
static int erase_file (FileOpContext *ctx, const char *s,
		       off_t *progress_count, double *progress_bytes,
		       int is_toplevel_file);
static int files_error (const char *format, const char *file1,
			const char *file2);


enum CaseConvs { NO_CONV = 0, UP_CHAR = 1, LOW_CHAR = 2, UP_SECT =
	4, LOW_SECT = 8 };

static int
convert_case (int c, enum CaseConvs *conversion)
{
    if (*conversion & UP_CHAR) {
	*conversion &= ~UP_CHAR;
	return toupper (c);
    } else if (*conversion & LOW_CHAR) {
	*conversion &= ~LOW_CHAR;
	return tolower (c);
    } else if (*conversion & UP_SECT) {
	return toupper (c);
    } else if (*conversion & LOW_SECT) {
	return tolower (c);
    } else
	return c;
}

static int transform_error = 0;

static const unsigned char *
do_transform_source (FileOpContext *ctx, const unsigned char *source)
{
    size_t j, k, l, len;
    unsigned const char *fnsource = x_basename (source);
    int next_reg;
    enum CaseConvs case_conv = NO_CONV;
    static unsigned char fntarget[MC_MAXPATHLEN];

    len = strlen (fnsource);
    j = re_match (&ctx->rx, fnsource, len, 0, &ctx->regs);
    if (j != len) {
	transform_error = FILE_SKIP;
	return NULL;
    }
    for (next_reg = 1, j = 0, k = 0; j < strlen (ctx->dest_mask); j++) {
	switch (ctx->dest_mask[j]) {
	case '\\':
	    j++;
	    if (!isdigit ((unsigned char) ctx->dest_mask[j])) {
		/* Backslash followed by non-digit */
		switch (ctx->dest_mask[j]) {
		case 'U':
		    case_conv |= UP_SECT;
		    case_conv &= ~LOW_SECT;
		    break;
		case 'u':
		    case_conv |= UP_CHAR;
		    break;
		case 'L':
		    case_conv |= LOW_SECT;
		    case_conv &= ~UP_SECT;
		    break;
		case 'l':
		    case_conv |= LOW_CHAR;
		    break;
		case 'E':
		    case_conv = NO_CONV;
		    break;
		default:
		    /* Backslash as quote mark */
		    fntarget[k++] =
			convert_case (ctx->dest_mask[j], &case_conv);
		}
		break;
	    } else {
		/* Backslash followed by digit */
		next_reg = ctx->dest_mask[j] - '0';
		/* Fall through */
	    }

	case '*':
	    if (next_reg < 0 || next_reg >= RE_NREGS
		|| ctx->regs.start[next_reg] < 0) {
		message (1, MSG_ERROR, _(" Invalid target mask "));
		transform_error = FILE_ABORT;
		return NULL;
	    }
	    for (l = (size_t) ctx->regs.start[next_reg];
		 l < (size_t) ctx->regs.end[next_reg]; l++)
		fntarget[k++] = convert_case (fnsource[l], &case_conv);
	    next_reg++;
	    break;

	default:
	    fntarget[k++] = convert_case (ctx->dest_mask[j], &case_conv);
	    break;
	}
    }
    fntarget[k] = 0;
    return fntarget;
}

static const unsigned char *
transform_source (FileOpContext *ctx, const unsigned char *source)
{
    unsigned char *s = g_strdup (source);
    unsigned char *q;
    const unsigned char *p;

    /* We remove \n from the filename since regex routines would use \n as an anchor */
    /* this is just to be allowed to maniupulate file names with \n on it */
    for (q = s; *q; q++) {
	if (*q == '\n')
	    *q = ' ';
    }
    p = do_transform_source (ctx, s);
    g_free (s);
    return p;
}

static void
free_linklist (struct link **linklist)
{
    struct link *lp, *lp2;

    for (lp = *linklist; lp != NULL; lp = lp2) {
	lp2 = lp->next;
	g_free (lp);
    }
    *linklist = NULL;
}

static int
is_in_linklist (struct link *lp, const char *path, struct stat *sb)
{
    ino_t ino = sb->st_ino;
    dev_t dev = sb->st_dev;
#ifdef USE_VFS
    struct vfs_class *vfs = vfs_get_class (path);
#endif				/* USE_VFS */

    while (lp) {
#ifdef USE_VFS
	if (lp->vfs == vfs)
#endif				/* USE_VFS */
	    if (lp->ino == ino && lp->dev == dev)
		return 1;
	lp = lp->next;
    }
    return 0;
}

/*
 * Returns 0 if the inode wasn't found in the cache and 1 if it was found
 * and a hardlink was succesfully made
 */
static int
check_hardlinks (const char *src_name, const char *dst_name, struct stat *pstat)
{
    struct link *lp;
    struct vfs_class *my_vfs = vfs_get_class (src_name);
    ino_t ino = pstat->st_ino;
    dev_t dev = pstat->st_dev;
    struct stat link_stat;
    const char *p;

    if (vfs_file_class_flags (src_name) & VFSF_NOLINKS)
	return 0;

    for (lp = linklist; lp != NULL; lp = lp->next)
	if (lp->vfs == my_vfs && lp->ino == ino && lp->dev == dev) {
	    if (!mc_stat (lp->name, &link_stat) && link_stat.st_ino == ino
		&& link_stat.st_dev == dev
		&& vfs_get_class (lp->name) == my_vfs) {
		p = strchr (lp->name, 0) + 1;	/* i.e. where the `name' file
						   was copied to */
		if (vfs_get_class (dst_name) == vfs_get_class (p)) {
		    if (!mc_stat (p, &link_stat)) {
			if (!mc_link (p, dst_name))
			    return 1;
		    }
		}
	    }
	    message (1, MSG_ERROR, _(" Cannot make the hardlink "));
	    return 0;
	}
    lp = (struct link *) g_malloc (sizeof (struct link) + strlen (src_name)
				   + strlen (dst_name) + 1);
    if (lp) {
    	char *lpdstname;
	lp->vfs = my_vfs;
	lp->ino = ino;
	lp->dev = dev;
	strcpy (lp->name, src_name);
	lpdstname = lp->name + strlen(lp->name) + 1;
	strcpy (lpdstname, dst_name);
	lp->next = linklist;
	linklist = lp;
    }
    return 0;
}

/*
 * Duplicate the contents of the symbolic link src_path in dst_path.
 * Try to make a stable symlink if the option "stable symlink" was
 * set in the file mask dialog.
 * If dst_path is an existing symlink it will be deleted silently
 * (upper levels take already care of existing files at dst_path).
 */
static int
make_symlink (FileOpContext *ctx, const char *src_path, const char *dst_path)
{
    char link_target[MC_MAXPATHLEN];
    int len;
    int return_status;
    struct stat sb;
    int dst_is_symlink;

    if (mc_lstat (dst_path, &sb) == 0 && S_ISLNK (sb.st_mode))
	dst_is_symlink = 1;
    else
	dst_is_symlink = 0;

  retry_src_readlink:
    len = mc_readlink (src_path, link_target, MC_MAXPATHLEN - 1);
    if (len < 0) {
	return_status =
	    file_error (_(" Cannot read source link \"%s\" \n %s "),
			src_path);
	if (return_status == FILE_RETRY)
	    goto retry_src_readlink;
	return return_status;
    }
    link_target[len] = 0;

    if (ctx->stable_symlinks)
	if (!vfs_file_is_local (src_path) || !vfs_file_is_local (dst_path)) {
	    message (1, MSG_ERROR,
			_(" Cannot make stable symlinks across "
			  "non-local filesystems: \n\n"
			  " Option Stable Symlinks will be disabled "));
	    ctx->stable_symlinks = 0;
	}

    if (ctx->stable_symlinks && *link_target != PATH_SEP) {
	char *p, *q, *s;

	const char *r = strrchr (src_path, PATH_SEP);

	if (r) {
	    p = g_strndup (src_path, r - src_path);
	    if (*dst_path == PATH_SEP)
		q = g_strdup (dst_path);
	    else
		q = g_strconcat (p, dst_path, (char *) NULL);
	    s = strrchr (q, PATH_SEP);
	    if (s) {
		s[1] = 0;
		s = g_strconcat (p, link_target, (char *) NULL);
		g_free (p);
		g_strlcpy (link_target, s, sizeof (link_target));
		g_free (s);
		s = diff_two_paths (q, link_target);
		if (s) {
		    g_strlcpy (link_target, s, sizeof (link_target));
		    g_free (s);
		}
	    } else
		g_free (p);
	    g_free (q);
	}
    }
  retry_dst_symlink:
    if (mc_symlink (link_target, dst_path) == 0)
	/* Success */
	return FILE_CONT;
    /*
     * if dst_exists, it is obvious that this had failed.
     * We can delete the old symlink and try again...
     */
    if (dst_is_symlink) {
	if (!mc_unlink (dst_path))
	    if (mc_symlink (link_target, dst_path) == 0)
		/* Success */
		return FILE_CONT;
    }
    return_status =
	file_error (_(" Cannot create target symlink \"%s\" \n %s "),
		    dst_path);
    if (return_status == FILE_RETRY)
	goto retry_dst_symlink;
    return return_status;
}

static int
progress_update_one (FileOpContext *ctx,
		     off_t *progress_count,
		     double *progress_bytes, off_t add, int is_toplevel_file)
{
    int ret;

    if (is_toplevel_file || ctx->progress_totals_computed) {
	(*progress_count)++;
	(*progress_bytes) += add;
    }

    /* Apply some heuristic here to not call the update stuff very often */
    ret =
	file_progress_show_count (ctx, *progress_count,
				  ctx->progress_count);
    if (ret != FILE_CONT)
	return ret;
    ret =
	file_progress_show_bytes (ctx, *progress_bytes,
				  ctx->progress_bytes);

    return ret;
}

/* Status of the destination file */
enum {
    DEST_NONE,			/* Not created */
    DEST_SHORT,			/* Created, not fully copied */
    DEST_FULL			/* Created, fully copied */
};

int
copy_file_file (FileOpContext *ctx, const char *src_path, const char *dst_path,
		int ask_overwrite, off_t *progress_count,
		double *progress_bytes, int is_toplevel_file)
{
    uid_t src_uid = (uid_t) - 1;
    gid_t src_gid = (gid_t) - 1;

    char *buf = NULL;
    int buf_size = BUF_8K;
    int src_desc, dest_desc = -1;
    int n_read, n_written;
    mode_t src_mode = 0;		/* The mode of the source file */
    struct stat sb, sb2;
    struct utimbuf utb;
    int dst_exists = 0, appending = 0;
    off_t n_read_total = 0, file_size = -1;
    int return_status, temp_status;
    struct timeval tv_transfer_start;
    int dst_status = DEST_NONE;	/* 1 if the file is not fully copied */

    /* FIXME: We should not be using global variables! */
    ctx->do_reget = 0;
    return_status = FILE_RETRY;

    if (file_progress_show_source (ctx, src_path) == FILE_ABORT ||
	file_progress_show_target (ctx, dst_path) == FILE_ABORT)
	return FILE_ABORT;

    mc_refresh ();

    while (mc_stat (dst_path, &sb2) == 0) {
	if (S_ISDIR (sb2.st_mode)) {
	    return_status =
		file_error (_(" Cannot overwrite directory \"%s\" \n %s "),
			    dst_path);
	    if (return_status == FILE_RETRY)
		continue;
	    return return_status;
	}
	dst_exists = 1;
	break;
    }

    while ((*ctx->stat_func) (src_path, &sb)) {
	return_status =
	    file_error (_(" Cannot stat source file \"%s\" \n %s "),
			src_path);
	if (return_status != FILE_RETRY)
	    return return_status;
    }

    if (dst_exists) {
	/* Destination already exists */
	if (sb.st_dev == sb2.st_dev && sb.st_ino == sb2.st_ino) {
	    message (1, MSG_ERROR,
		    _(" `%s' and `%s' are the same file "), src_path, dst_path);
	    do_refresh ();
	    return FILE_SKIP;
	}

	/* Should we replace destination? */
	if (ask_overwrite) {
	    ctx->do_reget = 0;
	    return_status = query_replace (ctx, dst_path, &sb, &sb2);
	    if (return_status != FILE_CONT)
		return return_status;
	}
    }

    if (!ctx->do_append) {
	/* Check the hardlinks */
	if (!ctx->follow_links && sb.st_nlink > 1 &&
	    check_hardlinks (src_path, dst_path, &sb) == 1) {
	    /* We have made a hardlink - no more processing is necessary */
	    return return_status;
	}

	if (S_ISLNK (sb.st_mode)) {
	    int retval;

	    retval = make_symlink (ctx, src_path, dst_path);
	    return retval;
	}

	if (S_ISCHR (sb.st_mode) || S_ISBLK (sb.st_mode) || 
		S_ISFIFO (sb.st_mode) || S_ISNAM (sb.st_mode) ||
		S_ISSOCK (sb.st_mode)) {
	    while (mc_mknod (dst_path, sb.st_mode & ctx->umask_kill,
		    sb.st_rdev) < 0) {
		return_status = file_error (
		    _(" Cannot create special file \"%s\" \n %s "), dst_path);
		if (return_status == FILE_RETRY)
		    continue;
		return return_status;
	    }
	    /* Success */

	    while (ctx->preserve_uidgid
		   && mc_chown (dst_path, sb.st_uid, sb.st_gid)) {
		temp_status = file_error (
			_(" Cannot chown target file \"%s\" \n %s "), dst_path);
		if (temp_status == FILE_RETRY)
		    continue;
		return temp_status;
	    }
	    while (ctx->preserve &&
		   mc_chmod (dst_path, sb.st_mode & ctx->umask_kill)) {
		temp_status = file_error (
			_(" Cannot chmod target file \"%s\" \n %s "), dst_path);
		if (temp_status == FILE_RETRY)
		    continue;
		return temp_status;
	    }
	    return FILE_CONT;
	}
    }

    gettimeofday (&tv_transfer_start, (struct timezone *) NULL);

    while ((src_desc = mc_open (src_path, O_RDONLY | O_LINEAR)) < 0) {
	return_status = file_error (
		_(" Cannot open source file \"%s\" \n %s "), src_path);
	if (return_status == FILE_RETRY)
	    continue;
	ctx->do_append = 0;
	return return_status;
    }

    if (ctx->do_reget) {
	if (mc_lseek (src_desc, ctx->do_reget, SEEK_SET) != ctx->do_reget) {
	    message (1, _("Warning"),
			_(" Reget failed, about to overwrite file "));
	    ctx->do_reget = ctx->do_append = 0;
	}
    }

    while (mc_fstat (src_desc, &sb)) {
	return_status = file_error (
		_(" Cannot fstat source file \"%s\" \n %s "), src_path);
	if (return_status == FILE_RETRY)
	    continue;
	ctx->do_append = 0;
	goto ret;
    }
    src_mode = sb.st_mode;
    src_uid = sb.st_uid;
    src_gid = sb.st_gid;
    utb.actime = sb.st_atime;
    utb.modtime = sb.st_mtime;
    file_size = sb.st_size;

    /* Create the new regular file with small permissions initially,
       do not create a security hole.  FIXME: You have security hole
       here, btw. Imagine copying to /tmp and symlink attack :-( */

    while ((dest_desc = mc_open (dst_path, O_WRONLY | (ctx->do_append ?
    	    O_APPEND : (O_CREAT | O_TRUNC)), 0600)) < 0) {
	return_status = file_error (
		_(" Cannot create target file \"%s\" \n %s "), dst_path);
	if (return_status == FILE_RETRY)
	    continue;
	ctx->do_append = 0;
	goto ret;
    }
    dst_status = DEST_SHORT;	/* file opened, but not fully copied */

    appending = ctx->do_append;
    ctx->do_append = 0;

    /* Find out the optimal buffer size.  */
    while (mc_fstat (dest_desc, &sb)) {
	return_status = file_error (
		_(" Cannot fstat target file \"%s\" \n %s "), dst_path);
	if (return_status == FILE_RETRY)
	    continue;
	goto ret;
    }
    buf = g_malloc (buf_size);

    ctx->eta_secs = 0.0;
    ctx->bps = 0;

    return_status = file_progress_show (ctx, 0, file_size);

    mc_refresh ();

    if (return_status != FILE_CONT)
	goto ret;

    {
	struct timeval tv_current, tv_last_update, tv_last_input;
	int secs, update_secs;
	long dt;
	const char *stalled_msg;

	tv_last_update = tv_transfer_start;

	for (;;) {
	    /* src_read */
	    if (mc_ctl (src_desc, VFS_CTL_IS_NOTREADY, 0))
		n_read = -1;
	    else
		while ((n_read = mc_read (src_desc, buf, buf_size)) < 0) {
		    return_status = file_error (
			_(" Cannot read source file \"%s\" \n %s "), src_path);
		    if (return_status == FILE_RETRY)
			continue;
		    goto ret;
		}
	    if (n_read == 0)
		break;

	    gettimeofday (&tv_current, NULL);

	    if (n_read > 0) {
		char *t = buf;
		n_read_total += n_read;

		/* Windows NT ftp servers report that files have no
		 * permissions: -------, so if we happen to have actually
		 * read something, we should fix the permissions.
		 */
		if (!(src_mode & (S_IRWXU | S_IRWXG | S_IRWXO)))
		    src_mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
		gettimeofday (&tv_last_input, NULL);

		/* dst_write */
		while ((n_written =
			mc_write (dest_desc, t, n_read)) < n_read) {
		    if (n_written > 0) {
			n_read -= n_written;
			t += n_written;
			continue;
		    }
		    return_status =
			file_error (_(" Cannot write target file \"%s\" \n %s "),
				dst_path);
		    if (return_status != FILE_RETRY)
			goto ret;
		}
	    }

	    /* 1. Update rotating dash after some time (hardcoded to 2 seconds) */
	    secs = (tv_current.tv_sec - tv_last_update.tv_sec);
	    if (secs > 2) {
		rotate_dash ();
		tv_last_update = tv_current;
	    }

	    /* 2. Check for a stalled condition */
	    update_secs = (tv_current.tv_sec - tv_last_input.tv_sec);
	    stalled_msg = "";
	    if (update_secs > 4) {
		stalled_msg = _("(stalled)");
	    }

	    /* 3. Compute ETA */
	    if (secs > 2) {
		dt = (tv_current.tv_sec - tv_transfer_start.tv_sec);

		if (n_read_total) {
		    ctx->eta_secs =
			((dt / (double) n_read_total) * file_size) - dt;
		    ctx->bps = n_read_total / ((dt < 1) ? 1 : dt);
		} else
		    ctx->eta_secs = 0.0;
	    }

	    /* 4. Compute BPS rate */
	    if (secs > 2) {
		ctx->bps_time =
		    (tv_current.tv_sec - tv_transfer_start.tv_sec);
		if (ctx->bps_time < 1)
		    ctx->bps_time = 1;
		ctx->bps = n_read_total / ctx->bps_time;
	    }

	    file_progress_set_stalled_label (ctx, stalled_msg);
	    return_status = file_progress_show_bytes (ctx, *progress_bytes +
		    n_read_total, ctx->progress_bytes);
	    if (return_status == FILE_CONT) {
		return_status =
		    file_progress_show (ctx, n_read_total, file_size);
	    }
	    mc_refresh ();
	    if (return_status != FILE_CONT)
		goto ret;
	}
    }

    dst_status = DEST_FULL;	/* copy successful, don't remove target file */

  ret:
    g_free (buf);

    while (src_desc != -1 && mc_close (src_desc) < 0) {
	temp_status = file_error (
		_(" Cannot close source file \"%s\" \n %s "), src_path);
	if (temp_status == FILE_RETRY)
	    continue;
	if (temp_status == FILE_ABORT)
	    return_status = temp_status;
	break;
    }

    while (dest_desc != -1 && mc_close (dest_desc) < 0) {
	temp_status = file_error (
		_(" Cannot close target file \"%s\" \n %s "), dst_path);
	if (temp_status == FILE_RETRY)
	    continue;
	return_status = temp_status;
	break;
    }

    if (dst_status == DEST_SHORT) {
	/* Remove short file */
	int result;
	result = query_dialog (_("Copy"),
		_("Incomplete file was retrieved. Keep it?"),
		D_ERROR, 2, _("&Delete"), _("&Keep"));
	if (!result)
	    mc_unlink (dst_path);
    } else if (dst_status == DEST_FULL) {
	/* Copy has succeeded */
	if (!appending && ctx->preserve_uidgid) {
	    while (mc_chown (dst_path, src_uid, src_gid)) {
		temp_status = file_error (
			_(" Cannot chown target file \"%s\" \n %s "), dst_path);
		if (temp_status == FILE_RETRY)
		    continue;
		return_status = temp_status;
		break;
	    }
	}

	if (!appending && ctx->preserve) {
	    while (mc_chmod (dst_path, (src_mode & ctx->umask_kill))) {
		temp_status = file_error (
			_(" Cannot chmod target file \"%s\" \n %s "), dst_path);
		if (temp_status != FILE_RETRY) {
		    return_status = temp_status;
		    break;
		}
	    }
	    mc_utime (dst_path, &utb);
	}
    }

    if (return_status == FILE_CONT)
	return_status =
	    progress_update_one (ctx, progress_count, progress_bytes,
				 file_size, is_toplevel_file);

    return return_status;
}

/*
 * I think these copy_*_* functions should have a return type.
 * anyway, this function *must* have two directories as arguments.
 */
/* FIXME: This function needs to check the return values of the
   function calls */
int
copy_dir_dir (FileOpContext *ctx, const char *s, const char *d, int toplevel,
	      int move_over, int delete, struct link *parent_dirs,
	      off_t *progress_count, double *progress_bytes)
{
    struct dirent *next;
    struct stat buf, cbuf;
    DIR *reading;
    char *path, *mdpath, *dest_file, *dest_dir;
    int return_status = FILE_CONT;
    struct utimbuf utb;
    struct link *lp;

    /* First get the mode of the source dir */
  retry_src_stat:
    if ((*ctx->stat_func) (s, &cbuf)) {
	return_status =
	    file_error (_(" Cannot stat source directory \"%s\" \n %s "), s);
	if (return_status == FILE_RETRY)
	    goto retry_src_stat;
	return return_status;
    }

    if (is_in_linklist (dest_dirs, s, &cbuf)) {
	/* Don't copy a directory we created before (we don't want to copy 
	   infinitely if a directory is copied into itself) */
	/* FIXME: should there be an error message and FILE_SKIP? - Norbert */
	return FILE_CONT;
    }

/* Hmm, hardlink to directory??? - Norbert */
/* FIXME: In this step we should do something
   in case the destination already exist */
    /* Check the hardlinks */
    if (ctx->preserve && cbuf.st_nlink > 1
	&& check_hardlinks (s, d, &cbuf) == 1) {
	/* We have made a hardlink - no more processing is necessary */
	return return_status;
    }

    if (!S_ISDIR (cbuf.st_mode)) {
	return_status =
	    file_error (_(" Source \"%s\" is not a directory \n %s "), s);
	if (return_status == FILE_RETRY)
	    goto retry_src_stat;
	return return_status;
    }

    if (is_in_linklist (parent_dirs, s, &cbuf)) {
	/* we found a cyclic symbolic link */
	message (1, MSG_ERROR,
		    _(" Cannot copy cyclic symbolic link \n `%s' "), s);
	return FILE_SKIP;
    }

    lp = g_new (struct link, 1);
    lp->vfs = vfs_get_class (s);
    lp->ino = cbuf.st_ino;
    lp->dev = cbuf.st_dev;
    lp->next = parent_dirs;
    parent_dirs = lp;

  retry_dst_stat:
    /* Now, check if the dest dir exists, if not, create it. */
    if (mc_stat (d, &buf)) {
	/* Here the dir doesn't exist : make it ! */

	if (move_over) {
	    if (mc_rename (s, d) == 0) {
		g_free (parent_dirs);
		return FILE_CONT;
	    }
	}
	dest_dir = g_strdup (d);
    } else {
	/*
	 * If the destination directory exists, we want to copy the whole
	 * directory, but we only want this to happen once.
	 *
	 * Escape sequences added to the * to compiler warnings.
	 * so, say /bla exists, if we copy /tmp/\* to /bla, we get /bla/tmp/\*
	 * or ( /bla doesn't exist )       /tmp/\* to /bla     ->  /bla/\*
	 */
	if (!S_ISDIR (buf.st_mode)) {
	    return_status = file_error(
		_(" Destination \"%s\" must be a directory \n %s "), d);
	    if (return_status == FILE_RETRY)
		goto retry_dst_stat;
	    g_free (parent_dirs);
	    return return_status;
	}
	/* Dive into subdir if exists */
	if (toplevel && ctx->dive_into_subdirs) {
	    dest_dir = concat_dir_and_file (d, x_basename (s));
	} else {
	    dest_dir = g_strdup (d);
	    goto dont_mkdir;
	}
    }
    while (my_mkdir (dest_dir, (cbuf.st_mode & ctx->umask_kill) | S_IRWXU)) {
	return_status = file_error (
	    _(" Cannot create target directory \"%s\" \n %s "), dest_dir);
	if (return_status != FILE_RETRY)
	    goto ret;
    }

    lp = g_new (struct link, 1);
    mc_stat (dest_dir, &buf);
    lp->vfs = vfs_get_class (dest_dir);
    lp->ino = buf.st_ino;
    lp->dev = buf.st_dev;
    lp->next = dest_dirs;
    dest_dirs = lp;

    if (ctx->preserve_uidgid) {
	while (mc_chown (dest_dir, cbuf.st_uid, cbuf.st_gid)) {
	    return_status = file_error (
		_(" Cannot chown target directory \"%s\" \n %s "), dest_dir);
	    if (return_status != FILE_RETRY)
		goto ret;
	}
    }

  dont_mkdir:
    /* open the source dir for reading */
    if ((reading = mc_opendir (s)) == 0) {
	goto ret;
    }

    while ((next = mc_readdir (reading)) && return_status != FILE_ABORT) {
	/*
	 * Now, we don't want '.' and '..' to be created / copied at any time 
	 */
	if (!strcmp (next->d_name, "."))
	    continue;
	if (!strcmp (next->d_name, ".."))
	    continue;

	/* get the filename and add it to the src directory */
	path = concat_dir_and_file (s, next->d_name);

	(*ctx->stat_func) (path, &buf);
	if (S_ISDIR (buf.st_mode)) {
	    mdpath = concat_dir_and_file (dest_dir, next->d_name);
	    /*
	     * From here, we just intend to recursively copy subdirs, not
	     * the double functionality of copying different when the target
	     * dir already exists. So, we give the recursive call the flag 0
	     * meaning no toplevel.
	     */
	    return_status = copy_dir_dir (ctx, path, mdpath, 0, 0, delete,
				parent_dirs, progress_count, progress_bytes);
	    g_free (mdpath);
	} else {
	    dest_file = concat_dir_and_file (dest_dir, x_basename (path));
	    return_status = copy_file_file (ctx, path, dest_file, 1,
					    progress_count, progress_bytes, 0);
	    g_free (dest_file);
	}
	if (delete && return_status == FILE_CONT) {
	    if (ctx->erase_at_end) {
		static struct link *tail;
		lp = g_malloc (sizeof (struct link) + strlen (path));
		strcpy (lp->name, path);
		lp->st_mode = buf.st_mode;
		lp->next = 0;
		if (erase_list) {
		    tail->next = lp;
		    tail = lp;
		} else
		    erase_list = tail = lp;
	    } else {
		if (S_ISDIR (buf.st_mode)) {
		    return_status = erase_dir_iff_empty (ctx, path);
		} else
		    return_status = erase_file (ctx, path, 0, 0, 0);
	    }
	}
	g_free (path);
    }
    mc_closedir (reading);

    if (ctx->preserve) {
	mc_chmod (dest_dir, cbuf.st_mode & ctx->umask_kill);
	utb.actime = cbuf.st_atime;
	utb.modtime = cbuf.st_mtime;
	mc_utime (dest_dir, &utb);
    }

  ret:
    g_free (dest_dir);
    g_free (parent_dirs);
    return return_status;
}

/* }}} */

/* {{{ Move routines */

static int
move_file_file (FileOpContext *ctx, const char *s, const char *d,
		off_t *progress_count, double *progress_bytes)
{
    struct stat src_stats, dst_stats;
    int return_status = FILE_CONT;

    if (file_progress_show_source (ctx, s) == FILE_ABORT
	|| file_progress_show_target (ctx, d) == FILE_ABORT)
	return FILE_ABORT;

    mc_refresh ();

    while (mc_lstat (s, &src_stats) != 0) {
	/* Source doesn't exist */
	return_status =
	    file_error (_(" Cannot stat file \"%s\" \n %s "), s);
	if (return_status != FILE_RETRY)
	    return return_status;
    }

    if (mc_lstat (d, &dst_stats) == 0) {
	if (src_stats.st_dev == dst_stats.st_dev
	    && src_stats.st_ino == dst_stats.st_ino) {
	    int msize = COLS - 36;
	    char st[MC_MAXPATHLEN];
	    char dt[MC_MAXPATHLEN];

	    if (msize < 0)
		msize = 40;
	    msize /= 2;

	    strcpy (st, path_trunc (s, msize));
	    strcpy (dt, path_trunc (d, msize));
	    message (1, MSG_ERROR,
			_(" `%s' and `%s' are the same file "), st, dt);
	    do_refresh ();
	    return FILE_SKIP;
	}

	if (S_ISDIR (dst_stats.st_mode)) {
	    message (1, MSG_ERROR,
			_(" Cannot overwrite directory `%s' "), d);
	    do_refresh ();
	    return FILE_SKIP;
	}

	if (confirm_overwrite) {
	    return_status = query_replace (ctx, d, &src_stats, &dst_stats);
	    if (return_status != FILE_CONT)
		return return_status;
	}
	/* Ok to overwrite */
    }

    if (!ctx->do_append) {
	if (S_ISLNK (src_stats.st_mode) && ctx->stable_symlinks) {
	    if ((return_status = make_symlink (ctx, s, d)) == FILE_CONT) {
		goto retry_src_remove;
	    } else
		return return_status;
	}

	if (mc_rename (s, d) == 0) {
	    return FILE_CONT;
	}
    }
#if 0
/* Comparison to EXDEV seems not to work in nfs if you're moving from
   one nfs to the same, but on the server it is on two different
   filesystems. Then nfs returns EIO instead of EXDEV.
   Hope it will not hurt if we always in case of error try to copy/delete. */
    else
	errno = EXDEV;		/* Hack to copy (append) the file and then delete it */

    if (errno != EXDEV) {
	return_status =
	    files_error (_(" Cannot move file \"%s\" to \"%s\" \n %s "), s,
			 d);
	if (return_status == FILE_RETRY)
	    goto retry_rename;
	return return_status;
    }
#endif

    /* Failed because filesystem boundary -> copy the file instead */
    return_status =
	copy_file_file (ctx, s, d, 0, progress_count, progress_bytes, 1);
    if (return_status != FILE_CONT)
	return return_status;

    if ((return_status =
	 file_progress_show_source (ctx, NULL)) != FILE_CONT
	|| (return_status = file_progress_show (ctx, 0, 0)) != FILE_CONT)
	return return_status;

    mc_refresh ();

  retry_src_remove:
    if (mc_unlink (s)) {
	return_status =
	    file_error (_(" Cannot remove file \"%s\" \n %s "), s);
	if (return_status == FILE_RETRY)
	    goto retry_src_remove;
	return return_status;
    }

    if (return_status == FILE_CONT)
	return_status = progress_update_one (ctx,
					     progress_count,
					     progress_bytes,
					     src_stats.st_size, 1);

    return return_status;
}

int
move_dir_dir (FileOpContext *ctx, const char *s, const char *d,
	      off_t *progress_count, double *progress_bytes)
{
    struct stat sbuf, dbuf, destbuf;
    struct link *lp;
    char *destdir;
    int return_status;
    int move_over = 0;

    if (file_progress_show_source (ctx, s) == FILE_ABORT ||
	file_progress_show_target (ctx, d) == FILE_ABORT)
	return FILE_ABORT;

    mc_refresh ();

    mc_stat (s, &sbuf);
    if (mc_stat (d, &dbuf))
	destdir = g_strdup (d);	/* destination doesn't exist */
    else if (!ctx->dive_into_subdirs) {
	destdir = g_strdup (d);
	move_over = 1;
    } else
	destdir = concat_dir_and_file (d, x_basename (s));

    if (sbuf.st_dev == dbuf.st_dev && sbuf.st_ino == dbuf.st_ino) {
	int msize = COLS - 36;
	char st[MC_MAXPATHLEN];
	char dt[MC_MAXPATHLEN];

	if (msize < 0)
	    msize = 40;
	msize /= 2;

	strcpy (st, path_trunc (s, msize));
	strcpy (dt, path_trunc (d, msize));
	message (1, MSG_ERROR,
		    _(" `%s' and `%s' are the same directory "), st, dt);
	do_refresh ();
	return FILE_SKIP;
    }

    /* Check if the user inputted an existing dir */
  retry_dst_stat:
    if (!mc_stat (destdir, &destbuf)) {
	if (move_over) {
	    return_status = copy_dir_dir (ctx, s, destdir, 0, 1, 1, 0,
					  progress_count, progress_bytes);

	    if (return_status != FILE_CONT)
		goto ret;
	    goto oktoret;
	} else {
	    if (S_ISDIR (destbuf.st_mode))
		return_status =
		    file_error (_
				(" Cannot overwrite directory \"%s\" %s "),
				destdir);
	    else
		return_status =
		    file_error (_(" Cannot overwrite file \"%s\" %s "),
				destdir);
	    if (return_status == FILE_RETRY)
		goto retry_dst_stat;
	}
	g_free (destdir);
	return return_status;
    }

  retry_rename:
    if (mc_rename (s, destdir) == 0) {
	return_status = FILE_CONT;
	goto ret;
    }
/* .ado: Drive, Do we need this anymore? */
#ifdef WIN32
    else {
	/* EXDEV: cross device; does not work everywhere */
	if (toupper (s[0]) != toupper (destdir[0]))
	    goto w32try;
    }
#endif				/* WIN32 */

    if (errno != EXDEV) {
	return_status =
	    files_error (_
			 (" Cannot move directory \"%s\" to \"%s\" \n %s "),
			 s, d);
	if (return_status == FILE_RETRY)
	    goto retry_rename;
	goto ret;
    }
#ifdef WIN32
  w32try:
#endif				/* WIN32 */
    /* Failed because of filesystem boundary -> copy dir instead */
    return_status =
	copy_dir_dir (ctx, s, destdir, 0, 0, 1, 0, progress_count,
		      progress_bytes);

    if (return_status != FILE_CONT)
	goto ret;
  oktoret:
    if ((return_status =
	 file_progress_show_source (ctx, NULL)) != FILE_CONT
	|| (return_status = file_progress_show (ctx, 0, 0)) != FILE_CONT)
	goto ret;

    mc_refresh ();
    if (ctx->erase_at_end) {
	for (; erase_list && return_status != FILE_ABORT;) {
	    if (S_ISDIR (erase_list->st_mode)) {
		return_status =
		    erase_dir_iff_empty (ctx, erase_list->name);
	    } else
		return_status =
		    erase_file (ctx, erase_list->name, 0, 0, 0);
	    lp = erase_list;
	    erase_list = erase_list->next;
	    g_free (lp);
	}
    }
    erase_dir_iff_empty (ctx, s);

  ret:
    g_free (destdir);
    while (erase_list) {
	lp = erase_list;
	erase_list = erase_list->next;
	g_free (lp);
    }
    return return_status;
}

/* }}} */

/* {{{ Erase routines */
/* Don't update progress status if progress_count==NULL */
static int
erase_file (FileOpContext *ctx, const char *s, off_t *progress_count,
	    double *progress_bytes, int is_toplevel_file)
{
    int return_status;
    struct stat buf;

    if (file_progress_show_deleting (ctx, s) == FILE_ABORT)
	return FILE_ABORT;
    mc_refresh ();

    if (progress_count && mc_lstat (s, &buf)) {
	/* ignore, most likely the mc_unlink fails, too */
	buf.st_size = 0;
    }

    while (mc_unlink (s)) {
	return_status =
	    file_error (_(" Cannot delete file \"%s\" \n %s "), s);
	if (return_status != FILE_RETRY)
	    return return_status;
    }

    if (progress_count)
	return progress_update_one (ctx, progress_count, progress_bytes,
				    buf.st_size, is_toplevel_file);
    else
	return FILE_CONT;
}

static int
recursive_erase (FileOpContext *ctx, const char *s, off_t *progress_count,
		 double *progress_bytes)
{
    struct dirent *next;
    struct stat buf;
    DIR *reading;
    char *path;
    int return_status = FILE_CONT;

    if (!strcmp (s, ".."))
	return 1;

    reading = mc_opendir (s);

    if (!reading)
	return 1;

    while ((next = mc_readdir (reading)) && return_status == FILE_CONT) {
	if (!strcmp (next->d_name, "."))
	    continue;
	if (!strcmp (next->d_name, ".."))
	    continue;
	path = concat_dir_and_file (s, next->d_name);
	if (mc_lstat (path, &buf)) {
	    g_free (path);
	    mc_closedir (reading);
	    return 1;
	}
	if (S_ISDIR (buf.st_mode))
	    return_status =
		(recursive_erase
		 (ctx, path, progress_count, progress_bytes)
		 != FILE_CONT);
	else
	    return_status =
		erase_file (ctx, path, progress_count, progress_bytes, 0);
	g_free (path);
    }
    mc_closedir (reading);
    if (return_status != FILE_CONT)
	return return_status;
    if (file_progress_show_deleting (ctx, s) == FILE_ABORT)
	return FILE_ABORT;
    mc_refresh ();

    while (my_rmdir (s)) {
	return_status =
	    file_error (_(" Cannot remove directory \"%s\" \n %s "), s);
	if (return_status != FILE_RETRY)
	    return return_status;
    }

    return FILE_CONT;
}

/* Return -1 on error, 1 if there are no entries besides "." and ".." 
   in the directory path points to, 0 else. */
static int
check_dir_is_empty (const char *path)
{
    DIR *dir;
    struct dirent *d;
    int i;

    dir = mc_opendir (path);
    if (!dir)
	return -1;

    for (i = 1, d = mc_readdir (dir); d; d = mc_readdir (dir)) {
	if (d->d_name[0] == '.' && (d->d_name[1] == '\0' ||
				    (d->d_name[1] == '.'
				     && d->d_name[2] == '\0')))
	    continue;		/* "." or ".." */
	i = 0;
	break;
    }

    mc_closedir (dir);
    return i;
}

int
erase_dir (FileOpContext *ctx, const char *s, off_t *progress_count,
	   double *progress_bytes)
{
    int error;

    if (strcmp (s, "..") == 0)
	return FILE_SKIP;

    if (strcmp (s, ".") == 0)
	return FILE_SKIP;

    if (file_progress_show_deleting (ctx, s) == FILE_ABORT)
	return FILE_ABORT;
    mc_refresh ();

    /* The old way to detect a non empty directory was:
       error = my_rmdir (s);
       if (error && (errno == ENOTEMPTY || errno == EEXIST))){
       For the linux user space nfs server (nfs-server-2.2beta29-2)
       we would have to check also for EIO. I hope the new way is
       fool proof. (Norbert)
     */
    error = check_dir_is_empty (s);
    if (error == 0) {		/* not empty */
	error = query_recursive (ctx, s);
	if (error == FILE_CONT)
	    return recursive_erase (ctx, s, progress_count,
				    progress_bytes);
	else
	    return error;
    }

    while (my_rmdir (s) == -1) {
	error =
	    file_error (_(" Cannot remove directory \"%s\" \n %s "), s);
	if (error != FILE_RETRY)
	    return error;
    }

    return FILE_CONT;
}

static int
erase_dir_iff_empty (FileOpContext *ctx, const char *s)
{
    int error;

    if (strcmp (s, "..") == 0)
	return FILE_SKIP;

    if (strcmp (s, ".") == 0)
	return FILE_SKIP;

    if (file_progress_show_deleting (ctx, s) == FILE_ABORT)
	return FILE_ABORT;
    mc_refresh ();

    if (1 != check_dir_is_empty (s))	/* not empty or error */
	return FILE_CONT;

    while (my_rmdir (s)) {
	error =
	    file_error (_(" Cannot remove directory \"%s\" \n %s "), s);
	if (error != FILE_RETRY)
	    return error;
    }

    return FILE_CONT;
}

/* }}} */

/* {{{ Panel operate routines */

/*
 * Return currently selected entry name or the name of the first marked
 * entry if there is one.
 */
static char *
panel_get_file (WPanel *panel, struct stat *stat_buf)
{
    int i;

    if (get_current_type () == view_tree) {
	WTree *tree = (WTree *) get_panel_widget (get_current_index ());
	char *tree_name = tree_selected_name (tree);

	mc_stat (tree_name, stat_buf);
	return tree_name;
    }

    if (panel->marked) {
	for (i = 0; i < panel->count; i++)
	    if (panel->dir.list[i].f.marked) {
		*stat_buf = panel->dir.list[i].st;
		return panel->dir.list[i].fname;
	    }
    } else {
	*stat_buf = panel->dir.list[panel->selected].st;
	return panel->dir.list[panel->selected].fname;
    }
    g_assert_not_reached ();
    return NULL;
}

/**
 * compute_dir_size:
 *
 * Computes the number of bytes used by the files in a directory
 */
void
compute_dir_size (const char *dirname, off_t *ret_marked, double *ret_total)
{
    DIR *dir;
    struct dirent *dirent;

    dir = mc_opendir (dirname);

    if (!dir)
	return;

    while ((dirent = mc_readdir (dir)) != NULL) {
	struct stat s;
	char *fullname;
	int res;

	if (strcmp (dirent->d_name, ".") == 0)
	    continue;
	if (strcmp (dirent->d_name, "..") == 0)
	    continue;

	fullname = concat_dir_and_file (dirname, dirent->d_name);

	res = mc_lstat (fullname, &s);

	if (res != 0) {
	    g_free (fullname);
	    continue;
	}

	if (S_ISDIR (s.st_mode)) {
	    off_t subdir_count = 0;
	    double subdir_bytes = 0;

	    compute_dir_size (fullname, &subdir_count, &subdir_bytes);

	    *ret_marked += subdir_count;
	    *ret_total += subdir_bytes;
	} else {
	    (*ret_marked)++;
	    *ret_total += s.st_size;
	}
	g_free (fullname);
    }

    mc_closedir (dir);
}

/**
 * panel_compute_totals:
 *
 * compute the number of files and the number of bytes
 * used up by the whole selection, recursing directories
 * as required.  In addition, it checks to see if it will
 * overwrite any files by doing the copy.
 */
static void
panel_compute_totals (WPanel *panel, off_t *ret_marked, double *ret_total)
{
    int i;

    *ret_marked = 0;
    *ret_total = 0.0;

    for (i = 0; i < panel->count; i++) {
	struct stat *s;

	if (!panel->dir.list[i].f.marked)
	    continue;

	s = &panel->dir.list[i].st;

	if (S_ISDIR (s->st_mode)) {
	    char *dir_name;
	    off_t subdir_count = 0;
	    double subdir_bytes = 0;

	    dir_name =
		concat_dir_and_file (panel->cwd, panel->dir.list[i].fname);
	    compute_dir_size (dir_name, &subdir_count, &subdir_bytes);

	    *ret_marked += subdir_count;
	    *ret_total += subdir_bytes;
	    g_free (dir_name);
	} else {
	    (*ret_marked)++;
	    *ret_total += s->st_size;
	}
    }
}

/*
 * This array introduced to avoid translation problems. The former (op_names)
 * is assumed to be nouns, suitable in dialog box titles; this one should
 * contain whatever is used in prompt itself (i.e. in russian, it's verb).
 * Notice first symbol - it is to fool gettext and force these strings to
 * be different for it. First symbol is skipped while building a prompt.
 * (I don't use spaces around the words, because someday they could be
 * dropped, when widgets get smarter)
 */
static const char *op_names1[] = { N_("1Copy"), N_("1Move"), N_("1Delete") };
#define	FMD_XLEN 64

int fmd_xlen = FMD_XLEN;

/*
 * These are formats for building a prompt. Parts encoded as follows:
 * %o - operation from op_names1
 * %f - file/files or files/directories, as appropriate
 * %m - "with source mask" or question mark for delete
 * %s - source name (truncated)
 * %d - number of marked files
 * %e - "to:" or question mark for delete
 * 
 * xgettext:no-c-format */
static const char *one_format = N_("%o %f \"%s\"%m");
/* xgettext:no-c-format */
static const char *many_format = N_("%o %d %f%m");
static const char *prompt_parts[] = {
    N_("file"), N_("files"), N_("directory"), N_("directories"),
    N_("files/directories"), N_(" with source mask:"), N_(" to:")
};

/*
 * Generate user prompt for panel operation.
 * single_source is the name if the source entry or NULL for multiple
 * entries.
 * src_stat is only used when single_source is not NULL.
 */
static void
panel_operate_generate_prompt (const WPanel *panel, const int operation,
			       const char *single_source,
			       const struct stat *src_stat)
{
    register const char *sp, *cp;
    register int i;
    char format_string[BUF_MEDIUM];
    char *dp = format_string;

#ifdef ENABLE_NLS
    static int i18n_flag = 0;
    if (!i18n_flag) {
	fmd_init_i18n (FALSE);	/* to get proper fmd_xlen */

	for (i = sizeof (op_names1) / sizeof (op_names1[0]); i--;)
	    op_names1[i] = _(op_names1[i]);

	for (i = sizeof (prompt_parts) / sizeof (prompt_parts[0]); i--;)
	    prompt_parts[i] = _(prompt_parts[i]);

	one_format = _(one_format);
	many_format = _(many_format);
	i18n_flag = 1;
    }
#endif				/* ENABLE_NLS */

    sp = single_source ? one_format : many_format;

    while (*sp) {
	switch (*sp) {
	case '%':
	    cp = NULL;
	    switch (sp[1]) {
	    case 'o':
		cp = op_names1[operation] + 1;
		break;
	    case 'm':
		cp = operation == OP_DELETE ? "?" : prompt_parts[5];
		break;
	    case 'e':
		cp = operation == OP_DELETE ? "?" : prompt_parts[6];
		break;
	    case 'f':
		if (single_source) {
		    cp = S_ISDIR (src_stat->
				  st_mode) ? prompt_parts[2] :
			prompt_parts[0];
		} else {
		    cp = (panel->marked == panel->dirs_marked)
			? prompt_parts[3]
			: (panel->dirs_marked ? prompt_parts[4]
			   : prompt_parts[1]);
		}
		break;
	    default:
		*dp++ = *sp++;
	    }
	    if (cp) {
		sp += 2;
		while (*cp)
		    *dp++ = *cp++;
	    }
	    break;
	default:
	    *dp++ = *sp++;
	}
    }
    *dp = '\0';

    if (single_source) {
	i = fmd_xlen - strlen (format_string) - 4;
	g_snprintf (cmd_buf, sizeof (cmd_buf), format_string,
		    name_trunc (single_source, i));
    } else {
	g_snprintf (cmd_buf, sizeof (cmd_buf), format_string,
		    panel->marked);
	i = strlen (cmd_buf) + 6 - fmd_xlen;
	if (i > 0) {
	    fmd_xlen += i;
	    fmd_init_i18n (TRUE);	/* to recalculate positions of child widgets */
	}
    }
}

/**
 * panel_operate:
 *
 * Performs one of the operations on the selection on the source_panel
 * (copy, delete, move).  
 *
 * Returns 1 if did change the directory
 * structure, Returns 0 if user aborted
 *
 * force_single forces operation on the current entry and affects
 * default destination.  Current filename is used as default.
 */
int
panel_operate (void *source_panel, FileOperation operation,
	       int force_single)
{
    WPanel *panel = source_panel;
#ifdef WITH_FULL_PATHS
    char *source_with_path = NULL;
#else
#   define source_with_path source
#endif				/* !WITH_FULL_PATHS */
    char *source = NULL;
    char *dest = NULL;
    const char *temp = NULL;
    char *save_cwd = NULL, *save_dest = NULL;
    int single_entry = (get_current_type () == view_tree)
	|| (panel->marked <= 1) || force_single;
    struct stat src_stat, dst_stat;
    int i, value;
    FileOpContext *ctx;

    off_t count = 0;
    double bytes = 0;

    int dst_result;
    int do_bg = 0;		/* do background operation? */

    free_linklist (&linklist);
    free_linklist (&dest_dirs);

    if (single_entry) {
	if (force_single) {
	    source = selection (panel)->fname;
	    src_stat = selection (panel)->st;
	} else {
	    source = panel_get_file (panel, &src_stat);
	}

	if (!strcmp (source, "..")) {
	    message (1, MSG_ERROR, _(" Cannot operate on \"..\"! "));
	    return 0;
	}
    }

    /* Generate confirmation prompt */
    panel_operate_generate_prompt (panel, operation, source, &src_stat);

    ctx = file_op_context_new (operation);

    /* Show confirmation dialog */
    if (operation == OP_DELETE && confirm_delete) {
	if (safe_delete)
	    query_set_sel (1);

	i = query_dialog (_(op_names[operation]), cmd_buf, D_ERROR, 2,
			  _("&Yes"), _("&No"));

	if (i != 0) {
	    file_op_context_destroy (ctx);
	    return 0;
	}
    } else if (operation != OP_DELETE) {
	char *dest_dir;

	/* Forced single operations default to the original name */
	if (force_single)
	    dest_dir = source;
	else if (get_other_type () == view_listing)
	    dest_dir = other_panel->cwd;
	else
	    dest_dir = panel->cwd;

	dest =
	    file_mask_dialog (ctx, operation, cmd_buf, dest_dir,
			      single_entry, &do_bg);
	if (!dest) {
	    file_op_context_destroy (ctx);
	    return 0;
	}
	if (!*dest) {
	    file_op_context_destroy (ctx);
	    g_free (dest);
	    return 0;
	}
    }
#ifdef WITH_BACKGROUND
    /* Did the user select to do a background operation? */
    if (do_bg) {
	int v;

	v = do_background (ctx,
			   g_strconcat (op_names[operation], ": ",
					panel->cwd, NULL));
	if (v == -1) {
	    message (1, MSG_ERROR,
		     _(" Sorry, I could not put the job in background "));
	}

	/* If we are the parent */
	if (v == 1) {
	    mc_setctl (panel->cwd, VFS_SETCTL_FORGET, NULL);
	    mc_setctl (dest, VFS_SETCTL_FORGET, NULL);
/*  	    file_op_context_destroy (ctx); */
	    return 0;
	}
    }
#endif				/* WITH_BACKGROUND */

    /* Initialize things */
    /* We do not want to trash cache every time file is
       created/touched. However, this will make our cache contain
       invalid data. */
    if (dest) {
	if (mc_setctl (dest, VFS_SETCTL_STALE_DATA, (void *) 1))
	    save_dest = g_strdup (dest);
    }
    if (panel->cwd) {
	if (mc_setctl (panel->cwd, VFS_SETCTL_STALE_DATA, (void *) 1))
	    save_cwd = g_strdup (panel->cwd);
    }

    /* Now, let's do the job */

    if (do_bg)
	ctx->ui = NULL;
    else
	file_op_context_create_ui (ctx, 1);

    /* This code is only called by the tree and panel code */
    if (single_entry) {
	/* We now have ETA in all cases */

	/* One file: FIXME mc_chdir will take user out of any vfs */
	if (operation != OP_COPY && get_current_type () == view_tree)
	    mc_chdir (PATH_SEP_STR);

	/* The source and src_stat variables have been initialized before */
#ifdef WITH_FULL_PATHS
	source_with_path = concat_dir_and_file (panel->cwd, source);
#endif				/* WITH_FULL_PATHS */

	if (operation == OP_DELETE) {
	    if (S_ISDIR (src_stat.st_mode))
		value = erase_dir (ctx, source_with_path, &count, &bytes);
	    else
		value =
		    erase_file (ctx, source_with_path, &count, &bytes, 1);
	} else {
	    temp = transform_source (ctx, source_with_path);

	    if (temp == NULL) {
		value = transform_error;
	    } else {
		char *temp2 = concat_dir_and_file (dest, temp);
		g_free (dest);
		dest = temp2;
		temp = NULL;

		switch (operation) {
		case OP_COPY:
		    /*
		     * we use file_mask_op_follow_links only with OP_COPY,
		     */
		    (*ctx->stat_func) (source_with_path, &src_stat);

		    if (S_ISDIR (src_stat.st_mode))
			value =
			    copy_dir_dir (ctx, source_with_path, dest, 1,
					  0, 0, 0, &count, &bytes);
		    else
			value =
			    copy_file_file (ctx, source_with_path, dest, 1,
					    &count, &bytes, 1);
		    break;

		case OP_MOVE:
		    if (S_ISDIR (src_stat.st_mode))
			value =
			    move_dir_dir (ctx, source_with_path, dest,
					  &count, &bytes);
		    else
			value =
			    move_file_file (ctx, source_with_path, dest,
					    &count, &bytes);
		    break;

		default:
		    /* Unknown file operation */
		    abort ();
		}
	    }
	}			/* Copy or move operation */

	if ((value == FILE_CONT) && !force_single)
	    unmark_files (panel);
    } else {
	/* Many files */
	/* Check destination for copy or move operation */
	if (operation != OP_DELETE) {
	  retry_many_dst_stat:
	    dst_result = mc_stat (dest, &dst_stat);
	    if (dst_result == 0 && !S_ISDIR (dst_stat.st_mode)) {
		if (file_error
		    (_(" Destination \"%s\" must be a directory \n %s "),
		     dest) == FILE_RETRY)
		    goto retry_many_dst_stat;
		goto clean_up;
	    }
	}

	/* Initialize variables for progress bars */
	if (operation != OP_MOVE && verbose && file_op_compute_totals) {
	    panel_compute_totals (panel, &ctx->progress_count,
				  &ctx->progress_bytes);
	    ctx->progress_totals_computed = 1;
	} else {
	    ctx->progress_totals_computed = 0;
	    ctx->progress_count = panel->marked;
	    ctx->progress_bytes = panel->total;
	}

	/* Loop for every file, perform the actual copy operation */
	for (i = 0; i < panel->count; i++) {
	    if (!panel->dir.list[i].f.marked)
		continue;	/* Skip the unmarked ones */

	    source = panel->dir.list[i].fname;
	    src_stat = panel->dir.list[i].st;

#ifdef WITH_FULL_PATHS
	    g_free (source_with_path);
	    source_with_path = concat_dir_and_file (panel->cwd, source);
#endif				/* WITH_FULL_PATHS */

	    if (operation == OP_DELETE) {
		if (S_ISDIR (src_stat.st_mode))
		    value =
			erase_dir (ctx, source_with_path, &count, &bytes);
		else
		    value =
			erase_file (ctx, source_with_path, &count, &bytes,
				    1);
	    } else {
		temp = transform_source (ctx, source_with_path);
		if (temp == NULL)
		    value = transform_error;
		else {
		    char *temp2 = concat_dir_and_file (dest, temp);

		    switch (operation) {
		    case OP_COPY:
			/*
			 * we use file_mask_op_follow_links only with OP_COPY
			 */
			(*ctx->stat_func) (source_with_path, &src_stat);
			if (S_ISDIR (src_stat.st_mode))
			    value =
				copy_dir_dir (ctx, source_with_path, temp2,
					      1, 0, 0, 0, &count, &bytes);
			else
			    value =
				copy_file_file (ctx, source_with_path,
						temp2, 1, &count, &bytes,
						1);
			free_linklist (&dest_dirs);
			break;

		    case OP_MOVE:
			if (S_ISDIR (src_stat.st_mode))
			    value =
				move_dir_dir (ctx, source_with_path, temp2,
					      &count, &bytes);
			else
			    value =
				move_file_file (ctx, source_with_path,
						temp2, &count, &bytes);
			break;

		    default:
			/* Unknown file operation */
			abort ();
		    }
		    g_free (temp2);
		}
	    }			/* Copy or move operation */

	    if (value == FILE_ABORT)
		goto clean_up;

	    if (value == FILE_CONT)
		do_file_mark (panel, i, 0);

	    if (file_progress_show_count (ctx, count, ctx->progress_count)
		== FILE_ABORT)
		goto clean_up;

	    if (verbose
		&& file_progress_show_bytes (ctx, bytes,
					     ctx->progress_bytes) ==
		FILE_ABORT)
		goto clean_up;

	    if (operation != OP_DELETE && verbose
		&& file_progress_show (ctx, 0, 0) == FILE_ABORT)
		goto clean_up;

	    mc_refresh ();
	}			/* Loop for every file */
    }				/* Many entries */
  clean_up:
    /* Clean up */

    if (save_cwd) {
	mc_setctl (save_cwd, VFS_SETCTL_STALE_DATA, NULL);
	g_free (save_cwd);
    }
    if (save_dest) {
	mc_setctl (save_dest, VFS_SETCTL_STALE_DATA, NULL);
	g_free (save_dest);
    }

    free_linklist (&linklist);
    free_linklist (&dest_dirs);
#ifdef WITH_FULL_PATHS
    g_free (source_with_path);
#endif				/* WITH_FULL_PATHS */
    g_free (dest);
    g_free (ctx->dest_mask);
    ctx->dest_mask = NULL;
#ifdef WITH_BACKGROUND
    /* Let our parent know we are saying bye bye */
    if (we_are_background) {
	vfs_shut ();
	_exit (0);
    }
#endif				/* WITH_BACKGROUND */

    file_op_context_destroy (ctx);
    return 1;
}

/* }}} */

/* {{{ Query/status report routines */

static int
real_do_file_error (enum OperationMode mode, const char *error)
{
    int result;
    const char *msg;

    msg = mode == Foreground ? MSG_ERROR : _(" Background process error ");
    result =
	query_dialog (msg, error, D_ERROR, 3, _("&Skip"), _("&Retry"),
		      _("&Abort"));

    switch (result) {
    case 0:
	do_refresh ();
	return FILE_SKIP;

    case 1:
	do_refresh ();
	return FILE_RETRY;

    case 2:
    default:
	return FILE_ABORT;
    }
}

/* Report error with one file */
int
file_error (const char *format, const char *file)
{
    g_snprintf (cmd_buf, sizeof (cmd_buf), format,
		path_trunc (file, 30), unix_error_string (errno));

    return do_file_error (cmd_buf);
}

/* Report error with two files */
static int
files_error (const char *format, const char *file1, const char *file2)
{
    char nfile1[16];
    char nfile2[16];

    strcpy (nfile1, path_trunc (file1, 15));
    strcpy (nfile2, path_trunc (file2, 15));

    g_snprintf (cmd_buf, sizeof (cmd_buf), format, nfile1, nfile2,
		unix_error_string (errno));

    return do_file_error (cmd_buf);
}

static int
real_query_recursive (FileOpContext *ctx, enum OperationMode mode, const char *s)
{
    gchar *text;

    if (ctx->recursive_result < RECURSIVE_ALWAYS) {
	const char *msg =
	    mode ==
	    Foreground ?
	    _("\n   Directory not empty.   \n"
	      "   Delete it recursively? ")
	    : _("\n   Background process: Directory not empty \n"
		"   Delete it recursively? ");
	text = g_strconcat (_(" Delete: "), path_trunc (s, 30), " ", (char *) NULL);

	if (safe_delete)
	    query_set_sel (1);
	ctx->recursive_result = query_dialog (text, msg, D_ERROR, 5,
					      _("&Yes"), _("&No"),
					      _("A&ll"), _("Non&e"),
					      _("&Abort"));

	if (ctx->recursive_result != RECURSIVE_ABORT)
	    do_refresh ();
	g_free (text);
    }

    switch (ctx->recursive_result) {
    case RECURSIVE_YES:
    case RECURSIVE_ALWAYS:
	return FILE_CONT;

    case RECURSIVE_NO:
    case RECURSIVE_NEVER:
	return FILE_SKIP;

    case RECURSIVE_ABORT:

    default:
	return FILE_ABORT;
    }
}

#ifdef WITH_BACKGROUND
static int
do_file_error (const char *str)
{
    if (we_are_background)
	return parent_call (real_do_file_error, NULL, 1, strlen (str),
			    str);
    else
	return real_do_file_error (Foreground, str);
}

static int
query_recursive (FileOpContext *ctx, const char *s)
{
    if (we_are_background)
	return parent_call (real_query_recursive, ctx, 1, strlen (s), s);
    else
	return real_query_recursive (ctx, Foreground, s);
}

static int
query_replace (FileOpContext *ctx, const char *destname, struct stat *_s_stat,
	       struct stat *_d_stat)
{
    if (we_are_background)
	return parent_call ((void *) file_progress_real_query_replace,
			    ctx,
			    3,
			    strlen (destname), destname,
			    sizeof (struct stat), _s_stat,
			    sizeof (struct stat), _d_stat);
    else
	return file_progress_real_query_replace (ctx, Foreground, destname,
						 _s_stat, _d_stat);
}

#else
static int
do_file_error (const char *str)
{
    return real_do_file_error (Foreground, str);
}

static int
query_recursive (FileOpContext *ctx, const char *s)
{
    return real_query_recursive (ctx, Foreground, s);
}

static int
query_replace (FileOpContext *ctx, const char *destname, struct stat *_s_stat,
	       struct stat *_d_stat)
{
    return file_progress_real_query_replace (ctx, Foreground, destname,
					     _s_stat, _d_stat);
}

#endif				/* !WITH_BACKGROUND */

/*
  Cause emacs to enter folding mode for this file:
  Local variables:
  end:
*/