94b4ab024010ff324e6fa7a8ec6f94cfaa586f89
[oweals/busybox.git] / cp.c
1 /*
2  * Mini cp implementation for busybox
3  *
4  * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21
22 #include "internal.h"
23 #include <stdio.h>
24 #include <time.h>
25 #include <utime.h>
26 #include <dirent.h>
27
28 const char cp_usage[] = "cp [OPTION]... SOURCE DEST\n"
29     "   or: cp [OPTION]... SOURCE... DIRECTORY\n"
30     "Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n"
31     "\n"
32     "\t-a\tsame as -dpR\n"
33     "\t-d\tpreserve links\n"
34     "\t-p\tpreserve file attributes if possable\n"
35     "\t-R\tcopy directories recursively\n";
36
37
38 static int recursiveFlag = FALSE;
39 static int followLinks = FALSE;
40 static int preserveFlag = FALSE;
41 static const char *srcName;
42 static const char *destName;
43
44
45 static int fileAction(const char *fileName)
46 {
47     char newdestName[NAME_MAX];
48     strcpy(newdestName, destName);
49     strcat(newdestName, fileName+(strlen(srcName)));
50     return (copyFile(fileName, newdestName, preserveFlag, followLinks));
51 }
52
53 extern int cp_main(int argc, char **argv)
54 {
55
56     int dirFlag;
57
58     if (argc < 3) {
59         fprintf(stderr, "Usage: %s", cp_usage);
60         exit (FALSE);
61     }
62     argc--;
63     argv++;
64
65     /* Parse any options */
66     while (**argv == '-') {
67         while (*++(*argv))
68             switch (**argv) {
69             case 'a':
70                 followLinks = TRUE;
71                 preserveFlag = TRUE;
72                 recursiveFlag = TRUE;
73                 break;
74             case 'd':
75                 followLinks = TRUE;
76                 break;
77             case 'p':
78                 preserveFlag = TRUE;
79                 break;
80             case 'R':
81                 recursiveFlag = TRUE;
82                 break;
83             default:
84                 fprintf(stderr, "Usage: %s\n", cp_usage);
85                 exit(FALSE);
86             }
87         argc--;
88         argv++;
89     }
90
91
92     destName = argv[argc - 1];
93
94     dirFlag = isDirectory(destName);
95
96     if ((argc > 3) && !dirFlag) {
97         fprintf(stderr, "%s: not a directory\n", destName);
98         exit (FALSE);
99     }
100
101     while (argc-- >= 2) {
102         srcName = *(argv++);
103         exit( recursiveAction(srcName, recursiveFlag, followLinks,
104                                fileAction, fileAction));
105     }
106     exit( TRUE);
107 }