2 Copyright (C) 2001-2003 Free Software Foundation, Inc.
3 Written by Bruno Haible <haible@clisp.cons.org>, 2001.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 #include "copy-file.h"
36 #if HAVE_UTIME || HAVE_UTIMES
40 # include <sys/utime.h>
45 #include "safe-read.h"
46 #include "full-write.h"
47 #include "binary-io.h"
51 #define _(str) gettext (str)
54 copy_file_preserving (const char *src_filename
, const char *dest_filename
)
61 const size_t buf_size
= sizeof (buf
);
63 src_fd
= open (src_filename
, O_RDONLY
| O_BINARY
);
64 if (src_fd
< 0 || fstat (src_fd
, &statbuf
) < 0)
65 error (EXIT_FAILURE
, errno
, _("error while opening \"%s\" for reading"),
68 mode
= statbuf
.st_mode
& 07777;
70 dest_fd
= open (dest_filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, 0600);
72 error (EXIT_FAILURE
, errno
, _("cannot open backup file \"%s\" for writing"),
75 /* Copy the file contents. */
78 size_t n_read
= safe_read (src_fd
, buf
, buf_size
);
79 if (n_read
== SAFE_READ_ERROR
)
80 error (EXIT_FAILURE
, errno
, _("error reading \"%s\""), src_filename
);
84 if (full_write (dest_fd
, buf
, n_read
) < n_read
)
85 error (EXIT_FAILURE
, errno
, _("error writing \"%s\""), dest_filename
);
88 if (close (dest_fd
) < 0)
89 error (EXIT_FAILURE
, errno
, _("error writing \"%s\""), dest_filename
);
90 if (close (src_fd
) < 0)
91 error (EXIT_FAILURE
, errno
, _("error after reading \"%s\""), src_filename
);
93 /* Preserve the access and modification times. */
98 ut
.actime
= statbuf
.st_atime
;
99 ut
.modtime
= statbuf
.st_mtime
;
100 utime (dest_filename
, &ut
);
104 struct timeval ut
[2];
106 ut
[0].tv_sec
= statbuf
.st_atime
; ut
[0].tv_usec
= 0;
107 ut
[1].tv_sec
= statbuf
.st_mtime
; ut
[1].tv_usec
= 0;
108 utimes (dest_filename
, &ut
);
113 /* Preserve the owner and group. */
114 chown (dest_filename
, statbuf
.st_uid
, statbuf
.st_gid
);
117 /* Preserve the access permissions. */
118 chmod (dest_filename
, mode
);