11c76825cce1cad2cc3d8b90bc8ac5278e098f87
[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 static const char *skipName;
44 static int dirFlag = FALSE;
45
46
47 static int fileAction(const char *fileName, struct stat* statbuf)
48 {
49     char newdestName[NAME_MAX];
50     strcpy(newdestName, destName);
51     if (dirFlag==TRUE) {
52         strcat(newdestName, "/");
53         if ( skipName != NULL)
54             strcat(newdestName, strstr(fileName, skipName));
55     }
56     return (copyFile(fileName, newdestName, preserveFlag, followLinks));
57 }
58
59 extern int cp_main(int argc, char **argv)
60 {
61
62     if (argc < 3) {
63         usage (cp_usage);
64     }
65     argc--;
66     argv++;
67
68     /* Parse any options */
69     while (**argv == '-') {
70         while (*++(*argv))
71             switch (**argv) {
72             case 'a':
73                 followLinks = TRUE;
74                 preserveFlag = TRUE;
75                 recursiveFlag = TRUE;
76                 break;
77             case 'd':
78                 followLinks = TRUE;
79                 break;
80             case 'p':
81                 preserveFlag = TRUE;
82                 break;
83             case 'R':
84                 recursiveFlag = TRUE;
85                 break;
86             default:
87                 usage (cp_usage);
88             }
89         argc--;
90         argv++;
91     }
92
93
94     destName = argv[argc - 1];
95     dirFlag = isDirectory(destName);
96
97     if ((argc > 3) && dirFlag==FALSE) {
98         fprintf(stderr, "%s: not a directory\n", destName);
99         exit (FALSE);
100     }
101
102     while (argc-- > 1) {
103         srcName = *(argv++);
104         skipName = strrchr(srcName, '/');
105         if (skipName) 
106             skipName++;
107         if (recursiveAction(srcName, recursiveFlag, followLinks, FALSE,
108                                fileAction, fileAction) == FALSE) {
109             exit( FALSE);
110         }
111     }
112     exit( TRUE);
113 }