Branch
Hash :
2b2bcdbc
Author :
Date :
2025-09-09T09:44:55
gettext-h: support overriding "gnulib" This is for GNU Diffutils, which is still using the old way of also translating Gnulib’s msgids. * lib/gettext.h (GNULIB_TEXT_DOMAIN): New macro. * lib/argmatch.c, lib/bitset/stats.c, lib/c-stack.c: * lib/clean-temp-simple.c, lib/clean-temp-simple.c, lib/clean-temp.c: * lib/closein.c, lib/closeout.c, lib/copy-acl.c, lib/copy-file.c: * lib/csharpcomp.c, lib/csharpexec.c, lib/cygpath.c, lib/dfa.c: * lib/error.c, lib/execute.c, lib/gai_strerror.c, lib/getaddrinfo.c: * lib/getopt.c, lib/javacomp.c, lib/javaexec.c, lib/javaversion.c: * lib/mkdir-p.c, lib/obstack.c, lib/openat-die.c, lib/os2-spawn.c: * lib/pagealign_alloc.c, lib/parse-datetime.y, lib/pipe-filter-gi.c: * lib/pipe-filter-ii.c, lib/quotearg.c, lib/rpmatch.c, lib/set-acl.c: * lib/sigpipe-die.c, lib/spawn-pipe.c, lib/strsignal.c, lib/timevar.c: * lib/unicodeio.c, lib/userspec.c, lib/vc-mtime.c, lib/version-etc.c: * lib/wait-process.c, lib/windows-cygpath.c, lib/xalloc-die.c: * lib/xbinary-io.c, lib/xfreopen.c, lib/xmemcoll.c, lib/xprintf.c: * lib/xsetenv.c, lib/xstdopen.c, lib/xstrerror.c, lib/xstrtol-error.c: (_): Use GNULIB_TEXT_DOMAIN instead of "gnulib" when calling dgettext. * lib/argmatch.h (ARGMATCH_DEFINE_GROUP): * lib/file-type.c (file_type): * lib/regex_internal.h (gettext) [HAVE_LIBINTL_H & ENABLE_NLS & !_LIBC]: * lib/xstrtol-error.c (xstrtol_error): Likewise.
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
/* Copying of files.
Copyright (C) 2001-2003, 2006-2007, 2009-2025 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
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 3 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, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Specification. */
#include "copy-file.h"
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
#include <error.h>
#include "ignore-value.h"
#include "safe-read.h"
#include "full-write.h"
#include "stat-time.h"
#include "utimens.h"
#include "acl.h"
#include "binary-io.h"
#include "quote.h"
#include "gettext.h"
#define _(msgid) dgettext (GNULIB_TEXT_DOMAIN, msgid)
enum { IO_SIZE = 32 * 1024 };
static int
copy_file_internal (const char *src_filename, const char *dest_filename,
bool preserve)
{
int err = 0;
int src_fd;
struct stat statbuf;
int mode;
int dest_fd;
src_fd = open (src_filename, O_RDONLY | O_BINARY | O_CLOEXEC);
if (src_fd < 0)
return GL_COPY_ERR_OPEN_READ;
if (fstat (src_fd, &statbuf) < 0)
{
err = GL_COPY_ERR_OPEN_READ;
goto error_src;
}
mode = statbuf.st_mode & 07777;
off_t inbytes = S_ISREG (statbuf.st_mode) ? statbuf.st_size : -1;
bool empty_regular_file = inbytes == 0;
dest_fd = open (dest_filename,
O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_CLOEXEC,
/* If preserve is true, we must assume that the file may
have confidential contents. Therefore open it with mode
0600 and assign the permissions at the end.
If preserve is false, open it with mode 0666 & ~umask. */
preserve ? 0600 : 0666);
if (dest_fd < 0)
{
err = GL_COPY_ERR_OPEN_BACKUP_WRITE;
goto error_src;
}
/* Copy the file contents. FIXME: Do not copy holes. */
while (0 < inbytes)
{
size_t copy_max = -1;
copy_max -= copy_max % IO_SIZE;
size_t len = inbytes < copy_max ? inbytes : copy_max;
ssize_t copied = copy_file_range (src_fd, NULL, dest_fd, NULL, len, 0);
if (copied <= 0)
break;
inbytes -= copied;
}
/* Finish up with read/write, in case the file was not a regular
file, or the file shrank or had I/O errors (in which case find
whether it was a read or write error). Read empty regular files
since they might be in /proc with their true sizes unknown until
they are read. */
if (inbytes != 0 || empty_regular_file)
{
char smallbuf[1024];
int bufsize = IO_SIZE;
char *buf = malloc (bufsize);
if (!buf)
buf = smallbuf, bufsize = sizeof smallbuf;
while (true)
{
size_t n_read = safe_read (src_fd, buf, bufsize);
if (n_read == 0)
break;
if (n_read == SAFE_READ_ERROR)
{
err = GL_COPY_ERR_READ;
break;
}
if (full_write (dest_fd, buf, n_read) < n_read)
{
err = GL_COPY_ERR_WRITE;
break;
}
}
if (buf != smallbuf)
free (buf);
if (err)
goto error_src_dest;
}
#if !USE_ACL
if (close (dest_fd) < 0)
{
err = GL_COPY_ERR_WRITE;
goto error_src;
}
if (close (src_fd) < 0)
return GL_COPY_ERR_AFTER_READ;
#endif
if (preserve)
{
/* Preserve the access and modification times. */
{
struct timespec ts[2];
ts[0] = get_stat_atime (&statbuf);
ts[1] = get_stat_mtime (&statbuf);
utimens (dest_filename, ts);
}
#if HAVE_CHOWN
/* Preserve the owner and group. */
ignore_value (chown (dest_filename, statbuf.st_uid, statbuf.st_gid));
#endif
/* Preserve the access permissions. */
#if USE_ACL
switch (qcopy_acl (src_filename, src_fd, dest_filename, dest_fd, mode))
{
case -2:
err = GL_COPY_ERR_GET_ACL;
goto error_src_dest;
case -1:
err = GL_COPY_ERR_SET_ACL;
goto error_src_dest;
}
#else
chmod (dest_filename, mode);
#endif
}
#if USE_ACL
if (close (dest_fd) < 0)
{
err = GL_COPY_ERR_WRITE;
goto error_src;
}
if (close (src_fd) < 0)
return GL_COPY_ERR_AFTER_READ;
#endif
return 0;
error_src_dest:
close (dest_fd);
error_src:
close (src_fd);
return err;
}
int
qcopy_file_preserving (const char *src_filename, const char *dest_filename)
{
return copy_file_internal (src_filename, dest_filename, true);
}
int
copy_file_to (const char *src_filename, const char *dest_filename)
{
return copy_file_internal (src_filename, dest_filename, false);
}
static void
handle_error_code (int err, const char *src_filename, const char *dest_filename)
{
switch (err)
{
case 0:
return;
case GL_COPY_ERR_OPEN_READ:
error (EXIT_FAILURE, errno, _("error while opening %s for reading"),
quote (src_filename));
case GL_COPY_ERR_OPEN_BACKUP_WRITE:
error (EXIT_FAILURE, errno, _("cannot open backup file %s for writing"),
quote (dest_filename));
case GL_COPY_ERR_READ:
error (EXIT_FAILURE, errno, _("error reading %s"),
quote (src_filename));
case GL_COPY_ERR_WRITE:
error (EXIT_FAILURE, errno, _("error writing %s"),
quote (dest_filename));
case GL_COPY_ERR_AFTER_READ:
error (EXIT_FAILURE, errno, _("error after reading %s"),
quote (src_filename));
case GL_COPY_ERR_GET_ACL:
error (EXIT_FAILURE, errno, "%s", quote (src_filename));
case GL_COPY_ERR_SET_ACL:
error (EXIT_FAILURE, errno, _("preserving permissions for %s"),
quote (dest_filename));
default:
abort ();
}
}
void
xcopy_file_preserving (const char *src_filename, const char *dest_filename)
{
int err = qcopy_file_preserving (src_filename, dest_filename);
handle_error_code (err, src_filename, dest_filename);
}
void
copy_file_preserving (const char *src_filename, const char *dest_filename)
{
xcopy_file_preserving (src_filename, dest_filename);
}
void
xcopy_file_to (const char *src_filename, const char *dest_filename)
{
int err = copy_file_to (src_filename, dest_filename);
handle_error_code (err, src_filename, dest_filename);
}