]> granicus.if.org Git - shadow/blob - libmisc/copydir.c
* libmisc/getlong.c: Reset errno before calling strtol().
[shadow] / libmisc / copydir.c
1 /*
2  * Copyright (c) 1991 - 1994, Julianne Frances Haugh
3  * Copyright (c) 1996 - 2001, Marek Michałkiewicz
4  * Copyright (c) 2003 - 2006, Tomasz Kłoczko
5  * Copyright (c) 2007 - 2008, Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <config.h>
34
35 #ident "$Id$"
36
37 #include <sys/stat.h>
38 #include <sys/types.h>
39 #include <sys/time.h>
40 #include <fcntl.h>
41 #include <stdio.h>
42 #include "prototypes.h"
43 #include "defines.h"
44 #ifdef WITH_SELINUX
45 #include <selinux/selinux.h>
46 #endif
47 static const char *src_orig;
48 static const char *dst_orig;
49
50 struct link_name {
51         dev_t ln_dev;
52         ino_t ln_ino;
53         int ln_count;
54         char *ln_name;
55         struct link_name *ln_next;
56 };
57 static struct link_name *links;
58
59 static int copy_entry (const char *src, const char *dst,
60                        long int uid, long int gid);
61 static int copy_dir (const char *src, const char *dst,
62                      const struct stat *statp, const struct timeval mt[],
63                      long int uid, long int gid);
64 #ifdef  S_IFLNK
65 static int copy_symlink (const char *src, const char *dst,
66                          const struct stat *statp, const struct timeval mt[],
67                          long int uid, long int gid);
68 #endif
69 static int copy_hardlink (const char *src, const char *dst,
70                           struct link_name *lp);
71 static int copy_special (const char *dst,
72                          const struct stat *statp, const struct timeval mt[],
73                          long int uid, long int gid);
74 static int copy_file (const char *src, const char *dst,
75                       const struct stat *statp, const struct timeval mt[],
76                       long int uid, long int gid);
77
78 #ifdef WITH_SELINUX
79 /*
80  * selinux_file_context - Set the security context before any file or
81  *                        directory creation.
82  *
83  *      selinux_file_context () should be called before any creation of file,
84  *      symlink, directory, ...
85  *
86  */
87 static int selinux_file_context (const char *dst_name)
88 {
89         static bool selinux_checked = false;
90         static bool selinux_enabled;
91         security_context_t scontext = NULL;
92
93         if (!selinux_checked) {
94                 selinux_enabled = is_selinux_enabled () > 0;
95                 selinux_checked = true;
96         }
97
98         if (selinux_enabled) {
99                 /* Get the default security context for this file */
100                 if (matchpathcon (dst_name, 0, &scontext) < 0) {
101                         if (security_getenforce () != 0) {
102                                 return 1;
103                         }
104                 }
105                 /* Set the security context for the next created file */
106                 if (setfscreatecon (scontext) < 0) {
107                         if (security_getenforce () != 0) {
108                                 return 1;
109                         }
110                 }
111                 freecon (scontext);
112         }
113         return 0;
114 }
115 #endif
116
117 /*
118  * remove_link - delete a link from the linked list
119  */
120 static void remove_link (struct link_name *ln)
121 {
122         struct link_name *lp;
123
124         if (links == ln) {
125                 links = ln->ln_next;
126                 free (ln->ln_name);
127                 free (ln);
128                 return;
129         }
130         for (lp = links; NULL !=lp; lp = lp->ln_next) {
131                 if (lp->ln_next == ln) {
132                         break;
133                 }
134         }
135
136         if (NULL == lp) {
137                 return;
138         }
139
140         lp->ln_next = lp->ln_next->ln_next;
141         free (ln->ln_name);
142         free (ln);
143 }
144
145 /*
146  * check_link - see if a file is really a link
147  */
148
149 static struct link_name *check_link (const char *name, const struct stat *sb)
150 {
151         struct link_name *lp;
152         size_t src_len;
153         size_t dst_len;
154         size_t name_len;
155         size_t len;
156
157         for (lp = links; lp; lp = lp->ln_next) {
158                 if ((lp->ln_dev == sb->st_dev) && (lp->ln_ino == sb->st_ino)) {
159                         return lp;
160                 }
161         }
162
163         if (sb->st_nlink == 1) {
164                 return NULL;
165         }
166
167         lp = (struct link_name *) xmalloc (sizeof *lp);
168         src_len = strlen (src_orig);
169         dst_len = strlen (dst_orig);
170         name_len = strlen (name);
171         lp->ln_dev = sb->st_dev;
172         lp->ln_ino = sb->st_ino;
173         lp->ln_count = sb->st_nlink;
174         len = name_len - src_len + dst_len + 1;
175         lp->ln_name = (char *) xmalloc (len);
176         snprintf (lp->ln_name, len, "%s%s", dst_orig, name + src_len);
177         lp->ln_next = links;
178         links = lp;
179
180         return NULL;
181 }
182
183 /*
184  * copy_tree - copy files in a directory tree
185  *
186  *      copy_tree() walks a directory tree and copies ordinary files
187  *      as it goes.
188  */
189 int copy_tree (const char *src_root, const char *dst_root,
190                long int uid, long int gid)
191 {
192         char src_name[1024];
193         char dst_name[1024];
194         int err = 0;
195         bool set_orig = false;
196         struct DIRECT *ent;
197         DIR *dir;
198
199         /*
200          * Make certain both directories exist.  This routine is called
201          * after the home directory is created, or recursively after the
202          * target is created.  It assumes the target directory exists.
203          */
204
205         if (   (access (src_root, F_OK) != 0)
206             || (access (dst_root, F_OK) != 0)) {
207                 return -1;
208         }
209
210         /*
211          * Open the source directory and read each entry.  Every file
212          * entry in the directory is copied with the UID and GID set
213          * to the provided values.  As an added security feature only
214          * regular files (and directories ...) are copied, and no file
215          * is made set-ID.
216          */
217         dir = opendir (src_root);
218         if (NULL == dir) {
219                 return -1;
220         }
221
222         if (src_orig == NULL) {
223                 src_orig = src_root;
224                 dst_orig = dst_root;
225                 set_orig = true;
226         }
227         while ((0 == err) && (ent = readdir (dir)) != NULL) {
228                 /*
229                  * Skip the "." and ".." entries
230                  */
231                 if ((strcmp (ent->d_name, ".") != 0) &&
232                     (strcmp (ent->d_name, "..") != 0)) {
233                         /*
234                          * Make sure the resulting source and destination
235                          * filenames will fit in their buffers.
236                          */
237                         if (   (strlen (src_root) + strlen (ent->d_name) + 2 >
238                                 sizeof src_name)
239                             || (strlen (dst_root) + strlen (ent->d_name) + 2 >
240                                 sizeof dst_name)) {
241                                 err = -1;
242                         } else {
243                                 /*
244                                  * Build the filename for both the source and
245                                  * the destination files.
246                                  */
247                                 snprintf (src_name, sizeof src_name, "%s/%s",
248                                           src_root, ent->d_name);
249                                 snprintf (dst_name, sizeof dst_name, "%s/%s",
250                                           dst_root, ent->d_name);
251
252                                 err = copy_entry (src_name, dst_name, uid, gid);
253                         }
254                 }
255         }
256         (void) closedir (dir);
257
258         if (set_orig) {
259                 src_orig = NULL;
260                 dst_orig = NULL;
261         }
262         return err;
263 }
264
265 /*
266  * copy_entry - copy the entry of a directory
267  *
268  *      Copy the entry src to dst.
269  *      Depending on the type of entry, this function will forward the
270  *      request to copy_dir(), copy_symlink(), copy_hardlink(),
271  *      copy_special(), or copy_file().
272  *
273  *      The access and modification time will not be modified.
274  *
275  *      The permissions will be set to uid/gid.
276  *
277  *      If uid (resp. gid) is equal to -1, the user (resp. group) will
278  *      not be modified.
279  */
280 static int copy_entry (const char *src, const char *dst,
281                        long int uid, long int gid)
282 {
283         int err = 0;
284         struct stat sb;
285         struct link_name *lp;
286         struct timeval mt[2];
287
288         if (LSTAT (src, &sb) == -1) {
289                 /* If we cannot stat the file, do not care. */
290         } else {
291 #if  defined(_BSD_SOURCE) || defined(_SVID_SOURCE)
292                 mt[0].tv_sec  = sb.st_atim.tv_sec;
293                 mt[0].tv_usec = sb.st_atim.tv_nsec / 1000;
294                 mt[1].tv_sec  = sb.st_mtim.tv_sec;
295                 mt[1].tv_usec = sb.st_mtim.tv_nsec / 1000;
296 #else
297                 mt[0].tv_sec  = sb.st_atime;
298                 mt[0].tv_usec = sb.st_atimensec / 1000;
299                 mt[1].tv_sec  = sb.st_mtime;
300                 mt[1].tv_usec = sb.st_mtimensec / 1000;
301 #endif
302
303                 if (S_ISDIR (sb.st_mode)) {
304                         err = copy_dir (src, dst, &sb, mt, uid, gid);
305                 }
306
307 #ifdef  S_IFLNK
308                 /*
309                  * Copy any symbolic links
310                  */
311
312                 else if (S_ISLNK (sb.st_mode)) {
313                         err = copy_symlink (src, dst, &sb, mt, uid, gid);
314                 }
315 #endif
316
317                 /*
318                  * See if this is a previously copied link
319                  */
320
321                 else if ((lp = check_link (src, &sb)) != NULL) {
322                         err = copy_hardlink (src, dst, lp);
323                 }
324
325                 /*
326                  * Deal with FIFOs and special files.  The user really
327                  * shouldn't have any of these, but it seems like it
328                  * would be nice to copy everything ...
329                  */
330
331                 else if (!S_ISREG (sb.st_mode)) {
332                         err = copy_special (dst, &sb, mt, uid, gid);
333                 }
334
335                 /*
336                  * Create the new file and copy the contents.  The new
337                  * file will be owned by the provided UID and GID values.
338                  */
339
340                 else {
341                         err = copy_file (src, dst, &sb, mt, uid, gid);
342                 }
343         }
344
345         return err;
346 }
347
348 /*
349  * copy_dir - copy a directory
350  *
351  *      Copy a directory (recursively) from src to dst.
352  *
353  *      statp, mt, uid, gid are used to set the access and modification and the
354  *      access rights.
355  *
356  *      Return 0 on success, -1 on error.
357  */
358 static int copy_dir (const char *src, const char *dst,
359                      const struct stat *statp, const struct timeval mt[],
360                      long int uid, long int gid)
361 {
362         int err = 0;
363
364         /*
365          * Create a new target directory, make it owned by
366          * the user and then recursively copy that directory.
367          */
368
369 #ifdef WITH_SELINUX
370         selinux_file_context (dst);
371 #endif
372         if (   (mkdir (dst, statp->st_mode) != 0)
373             || (chown (dst,
374                        (uid == - 1) ? statp->st_uid : (uid_t) uid,
375                        (gid == - 1) ? statp->st_gid : (gid_t) gid) != 0)
376             || (chmod (dst, statp->st_mode) != 0)
377             || (copy_tree (src, dst, uid, gid) != 0)
378             || (utimes (dst, mt) != 0)) {
379                 err = -1;
380         }
381
382         return err;
383 }
384
385 #ifdef  S_IFLNK
386 /*
387  * copy_symlink - copy a symlink
388  *
389  *      Copy a symlink from src to dst.
390  *
391  *      statp, mt, uid, gid are used to set the access and modification and the
392  *      access rights.
393  *
394  *      Return 0 on success, -1 on error.
395  */
396 static int copy_symlink (const char *src, const char *dst,
397                          const struct stat *statp, const struct timeval mt[],
398                          long int uid, long int gid)
399 {
400         char oldlink[1024];
401         char dummy[1024];
402         int len;
403         int err = 0;
404
405         /*
406          * Get the name of the file which the link points
407          * to.  If that name begins with the original
408          * source directory name, that part of the link
409          * name will be replaced with the original
410          * destination directory name.
411          */
412
413         len = readlink (src, oldlink, sizeof (oldlink) - 1);
414         if (len < 0) {
415                 return -1;
416         }
417         oldlink[len] = '\0';    /* readlink() does not NUL-terminate */
418         if (strncmp (oldlink, src_orig, strlen (src_orig)) == 0) {
419                 snprintf (dummy, sizeof dummy, "%s%s",
420                           dst_orig,
421                           oldlink + strlen (src_orig));
422                 strcpy (oldlink, dummy);
423         }
424 #ifdef WITH_SELINUX
425         selinux_file_context (dst);
426 #endif
427         if (   (symlink (oldlink, dst) != 0)
428             || (lchown (dst,
429                         (uid == -1) ? statp->st_uid : (uid_t) uid,
430                         (gid == -1) ? statp->st_gid : (gid_t) gid) != 0)) {
431                 return -1;
432         }
433
434         /* 2007-10-18: We don't care about
435          *  exit status of lutimes because
436          *  it returns ENOSYS on many system
437          *  - not implemented
438          */
439         lutimes (dst, mt);
440
441         return err;
442 }
443 #endif
444
445 /*
446  * copy_hardlink - copy a hardlink
447  *
448  *      Copy a hardlink from src to dst.
449  *
450  *      Return 0 on success, -1 on error.
451  */
452 static int copy_hardlink (const char *src, const char *dst,
453                           struct link_name *lp)
454 {
455         /* TODO: selinux needed? */
456
457         if (link (lp->ln_name, dst) != 0) {
458                 return -1;
459         }
460         if (unlink (src) != 0) {
461                 return -1;
462         }
463
464         /* If the file could be unlinked, decrement the links counter,
465          * and delete the file if it was the last reference */
466         lp->ln_count--;
467         if (lp->ln_count <= 0) {
468                 remove_link (lp);
469         }
470
471         return 0;
472 }
473
474 /*
475  * copy_special - copy a special file
476  *
477  *      Copy a special file from src to dst.
478  *
479  *      statp, mt, uid, gid are used to set the access and modification and the
480  *      access rights.
481  *
482  *      Return 0 on success, -1 on error.
483  */
484 static int copy_special (const char *dst,
485                          const struct stat *statp, const struct timeval mt[],
486                          long int uid, long int gid)
487 {
488         int err = 0;
489
490 #ifdef WITH_SELINUX
491         selinux_file_context (dst);
492 #endif
493
494         if (   (mknod (dst, statp->st_mode & ~07777, statp->st_rdev) != 0)
495             || (chown (dst,
496                        (uid == -1) ? statp->st_uid : (uid_t) uid,
497                        (gid == -1) ? statp->st_gid : (gid_t) gid) != 0)
498             || (chmod (dst, statp->st_mode & 07777) != 0)
499             || (utimes (dst, mt) != 0)) {
500                 err = -1;
501         }
502
503         return err;
504 }
505
506 /*
507  * copy_file - copy a file
508  *
509  *      Copy a file from src to dst.
510  *
511  *      statp, mt, uid, gid are used to set the access and modification and the
512  *      access rights.
513  *
514  *      Return 0 on success, -1 on error.
515  */
516 static int copy_file (const char *src, const char *dst,
517                       const struct stat *statp, const struct timeval mt[],
518                       long int uid, long int gid)
519 {
520         int err = 0;
521         int ifd;
522         int ofd;
523         char buf[1024];
524         ssize_t cnt;
525
526         ifd = open (src, O_RDONLY);
527         if (ifd < 0) {
528                 return -1;
529         }
530 #ifdef WITH_SELINUX
531         selinux_file_context (dst);
532 #endif
533         ofd = open (dst, O_WRONLY | O_CREAT | O_TRUNC, 0);
534         if (   (ofd < 0)
535             || (chown (dst,
536                        (uid == -1) ? statp->st_uid : (uid_t) uid,
537                        (gid == -1) ? statp->st_gid : (gid_t) gid) != 0)
538             || (chmod (dst, statp->st_mode & 07777) != 0)) {
539                 (void) close (ifd);
540                 return -1;
541         }
542
543         while ((cnt = read (ifd, buf, sizeof buf)) > 0) {
544                 if (write (ofd, buf, (size_t)cnt) != cnt) {
545                         return -1;
546                 }
547         }
548
549         (void) close (ifd);
550
551         if (futimes (ofd, mt) != 0) {
552                 return -1;
553         }
554
555         if (close (ofd) != 0) {
556                 return -1;
557         }
558
559         return err;
560 }
561
562 /*
563  * remove_tree - delete a directory tree
564  *
565  *      remove_tree() walks a directory tree and deletes all the files
566  *      and directories.
567  *      At the end, it deletes the root directory itself.
568  */
569
570 int remove_tree (const char *root)
571 {
572         char new_name[1024];
573         int err = 0;
574         struct DIRECT *ent;
575         struct stat sb;
576         DIR *dir;
577
578         /*
579          * Make certain the directory exists.
580          */
581
582         if (access (root, F_OK) != 0) {
583                 return -1;
584         }
585
586         /*
587          * Open the source directory and read each entry.  Every file
588          * entry in the directory is copied with the UID and GID set
589          * to the provided values.  As an added security feature only
590          * regular files (and directories ...) are copied, and no file
591          * is made set-ID.
592          */
593         dir = opendir (root);
594         if (NULL == dir) {
595                 return -1;
596         }
597
598         while ((ent = readdir (dir))) {
599
600                 /*
601                  * Skip the "." and ".." entries
602                  */
603
604                 if (strcmp (ent->d_name, ".") == 0 ||
605                     strcmp (ent->d_name, "..") == 0) {
606                         continue;
607                 }
608
609                 /*
610                  * Make the filename for the current entry.
611                  */
612
613                 if (strlen (root) + strlen (ent->d_name) + 2 > sizeof new_name) {
614                         err = -1;
615                         break;
616                 }
617                 snprintf (new_name, sizeof new_name, "%s/%s", root,
618                           ent->d_name);
619                 if (LSTAT (new_name, &sb) == -1) {
620                         continue;
621                 }
622
623                 if (S_ISDIR (sb.st_mode)) {
624                         /*
625                          * Recursively delete this directory.
626                          */
627                         if (remove_tree (new_name) != 0) {
628                                 err = -1;
629                                 break;
630                         }
631                 } else {
632                         /*
633                          * Delete the file.
634                          */
635                         if (unlink (new_name) != 0) {
636                                 err = -1;
637                                 break;
638                         }
639                 }
640         }
641         (void) closedir (dir);
642
643         if (0 == err) {
644                 if (rmdir (root) != 0) {
645                         err = -1;
646                 }
647         }
648
649         return err;
650 }
651