1992-10-31 20:42:48 +00:00
|
|
|
/* backupfile.c -- make Emacs style backup file names
|
2003-06-06 19:33:44 +00:00
|
|
|
|
|
|
|
|
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
2005-06-23 13:26:15 +00:00
|
|
|
1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
1992-10-31 20:42:48 +00:00
|
|
|
|
|
|
|
|
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 2, 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
|
1997-05-27 09:41:25 +00:00
|
|
|
along with this program; see the file COPYING.
|
|
|
|
|
If not, write to the Free Software Foundation,
|
2005-05-14 07:58:06 +00:00
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Written by Paul Eggert and David MacKenzie.
|
|
|
|
|
Some algorithms adapted from GNU Emacs. */
|
1992-10-31 20:42:48 +00:00
|
|
|
|
2005-09-22 06:05:39 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
1995-08-09 05:14:06 +00:00
|
|
|
# include <config.h>
|
1993-10-06 16:44:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#include "backupfile.h"
|
|
|
|
|
|
|
|
|
|
#include "argmatch.h"
|
|
|
|
|
#include "dirname.h"
|
|
|
|
|
#include "xalloc.h"
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdlib.h>
|
2003-09-10 08:26:42 +00:00
|
|
|
#include <string.h>
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
|
2005-07-02 08:41:46 +00:00
|
|
|
#include <unistd.h>
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
|
1997-02-04 03:27:13 +00:00
|
|
|
#if HAVE_DIRENT_H
|
1995-08-09 05:14:06 +00:00
|
|
|
# include <dirent.h>
|
1997-05-27 09:41:25 +00:00
|
|
|
# define NLENGTH(direct) strlen ((direct)->d_name)
|
1997-02-04 03:27:13 +00:00
|
|
|
#else
|
1995-08-09 05:14:06 +00:00
|
|
|
# define dirent direct
|
1997-05-27 09:41:25 +00:00
|
|
|
# define NLENGTH(direct) ((size_t) (direct)->d_namlen)
|
1997-02-04 03:27:13 +00:00
|
|
|
# if HAVE_SYS_NDIR_H
|
1995-08-09 05:14:06 +00:00
|
|
|
# include <sys/ndir.h>
|
1997-02-04 03:27:13 +00:00
|
|
|
# endif
|
|
|
|
|
# if HAVE_SYS_DIR_H
|
1995-08-09 05:14:06 +00:00
|
|
|
# include <sys/dir.h>
|
1997-02-04 03:27:13 +00:00
|
|
|
# endif
|
|
|
|
|
# if HAVE_NDIR_H
|
1995-08-09 05:14:06 +00:00
|
|
|
# include <ndir.h>
|
1997-02-04 03:27:13 +00:00
|
|
|
# endif
|
|
|
|
|
#endif
|
1992-10-31 20:42:48 +00:00
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
#if HAVE_DIRENT_H || HAVE_NDIR_H || HAVE_SYS_DIR_H || HAVE_SYS_NDIR_H
|
|
|
|
|
# define HAVE_DIR 1
|
1995-05-13 13:02:08 +00:00
|
|
|
#else
|
1997-05-27 09:41:25 +00:00
|
|
|
# define HAVE_DIR 0
|
1992-10-31 20:42:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#if D_INO_IN_DIRENT
|
|
|
|
|
# define REAL_DIR_ENTRY(dp) ((dp)->d_ino != 0)
|
|
|
|
|
#else
|
|
|
|
|
# define REAL_DIR_ENTRY(dp) 1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if ! (HAVE_PATHCONF && defined _PC_NAME_MAX)
|
|
|
|
|
# define pathconf(file, option) (errno = -1)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef _POSIX_NAME_MAX
|
|
|
|
|
# define _POSIX_NAME_MAX 14
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef SIZE_MAX
|
|
|
|
|
# define SIZE_MAX ((size_t) -1)
|
|
|
|
|
#endif
|
2003-06-06 19:33:44 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#if defined _XOPEN_NAME_MAX
|
|
|
|
|
# define NAME_MAX_MINIMUM _XOPEN_NAME_MAX
|
|
|
|
|
#else
|
|
|
|
|
# define NAME_MAX_MINIMUM _POSIX_NAME_MAX
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_DOS_FILE_NAMES
|
|
|
|
|
# define HAVE_DOS_FILE_NAMES 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef HAVE_LONG_FILE_NAMES
|
|
|
|
|
# define HAVE_LONG_FILE_NAMES 0
|
|
|
|
|
#endif
|
1997-05-27 09:41:25 +00:00
|
|
|
|
|
|
|
|
/* ISDIGIT differs from isdigit, as follows:
|
|
|
|
|
- Its arg may be any int or unsigned int; it need not be an unsigned char.
|
|
|
|
|
- It's guaranteed to evaluate its argument exactly once.
|
|
|
|
|
- It's typically faster.
|
2002-01-16 22:44:43 +00:00
|
|
|
POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
|
|
|
|
|
ISDIGIT_LOCALE unless it's important to use the locale's definition
|
|
|
|
|
of `digit' even when the host does not conform to POSIX. */
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
|
2001-05-12 14:20:43 +00:00
|
|
|
|
1992-10-31 20:42:48 +00:00
|
|
|
/* The extension added to file names to produce a simple (as opposed
|
1997-05-27 09:41:25 +00:00
|
|
|
to numbered) backup file name. */
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
char const *simple_backup_suffix = "~";
|
1992-10-31 20:42:48 +00:00
|
|
|
|
|
|
|
|
|
2004-09-13 12:10:57 +00:00
|
|
|
/* If FILE (which was of length FILELEN before an extension was
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
appended to it) is too long, replace the extension with the single
|
|
|
|
|
char E. If the result is still too long, remove the char just
|
|
|
|
|
before E. */
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
static void
|
2004-09-13 12:10:57 +00:00
|
|
|
check_extension (char *file, size_t filelen, char e)
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
2004-09-13 12:10:57 +00:00
|
|
|
char *base = base_name (file);
|
|
|
|
|
size_t baselen = base_len (base);
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
size_t baselen_max = HAVE_LONG_FILE_NAMES ? 255 : NAME_MAX_MINIMUM;
|
1997-05-27 09:41:25 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (HAVE_DOS_FILE_NAMES || NAME_MAX_MINIMUM < baselen)
|
|
|
|
|
{
|
|
|
|
|
/* The new base name is long enough to require a pathconf check. */
|
|
|
|
|
long name_max;
|
|
|
|
|
|
|
|
|
|
/* Temporarily modify the buffer into its parent directory name,
|
|
|
|
|
invoke pathconf on the directory, and then restore the buffer. */
|
|
|
|
|
char tmp[sizeof "."];
|
2004-09-13 12:10:57 +00:00
|
|
|
memcpy (tmp, base, sizeof ".");
|
|
|
|
|
strcpy (base, ".");
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
errno = 0;
|
2004-09-13 12:10:57 +00:00
|
|
|
name_max = pathconf (file, _PC_NAME_MAX);
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (0 <= name_max || errno == 0)
|
|
|
|
|
{
|
|
|
|
|
long size = baselen_max = name_max;
|
|
|
|
|
if (name_max != size)
|
|
|
|
|
baselen_max = SIZE_MAX;
|
|
|
|
|
}
|
2004-09-13 12:10:57 +00:00
|
|
|
memcpy (base, tmp, sizeof ".");
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
}
|
1997-05-27 09:41:25 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (HAVE_DOS_FILE_NAMES && baselen_max <= 12)
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Live within DOS's 8.3 limit. */
|
2004-09-13 12:10:57 +00:00
|
|
|
char *dot = strchr (base, '.');
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (!dot)
|
|
|
|
|
baselen_max = 8;
|
|
|
|
|
else
|
1997-05-27 09:41:25 +00:00
|
|
|
{
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
char const *second_dot = strchr (dot + 1, '.');
|
|
|
|
|
baselen_max = (second_dot
|
2004-09-13 12:10:57 +00:00
|
|
|
? second_dot - base
|
|
|
|
|
: dot + 1 - base + 3);
|
1997-05-27 09:41:25 +00:00
|
|
|
}
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
}
|
1997-05-27 09:41:25 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (baselen_max < baselen)
|
|
|
|
|
{
|
2004-09-13 12:10:57 +00:00
|
|
|
baselen = file + filelen - base;
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
if (baselen_max <= baselen)
|
|
|
|
|
baselen = baselen_max - 1;
|
2004-09-13 12:10:57 +00:00
|
|
|
base[baselen] = e;
|
|
|
|
|
base[baselen + 1] = '\0';
|
1992-10-31 20:42:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
#if HAVE_DIR
|
|
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Returned values for NUMBERED_BACKUP. */
|
|
|
|
|
|
|
|
|
|
enum numbered_backup_result
|
|
|
|
|
{
|
|
|
|
|
/* The new backup name is the same length as an existing backup
|
|
|
|
|
name, so it's valid for that directory. */
|
|
|
|
|
BACKUP_IS_SAME_LENGTH,
|
|
|
|
|
|
|
|
|
|
/* Some backup names already exist, but the returned name is longer
|
|
|
|
|
than any of them, and its length should be checked. */
|
|
|
|
|
BACKUP_IS_LONGER,
|
|
|
|
|
|
|
|
|
|
/* There are no existing backup names. The new name's length
|
|
|
|
|
should be checked. */
|
|
|
|
|
BACKUP_IS_NEW
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* *BUFFER contains a file name. Store into *BUFFER the next backup
|
|
|
|
|
name for the named file, with a version number greater than all the
|
|
|
|
|
existing numbered backups. Reallocate *BUFFER as necessary; its
|
|
|
|
|
initial allocated size is BUFFER_SIZE, which must be at least 4
|
|
|
|
|
bytes longer than the file name to make room for the initially
|
|
|
|
|
appended ".~1". FILELEN is the length of the original file name.
|
|
|
|
|
The returned value indicates what kind of backup was found. If an
|
|
|
|
|
I/O or other read error occurs, use the highest backup number that
|
|
|
|
|
was found. */
|
|
|
|
|
|
|
|
|
|
static enum numbered_backup_result
|
|
|
|
|
numbered_backup (char **buffer, size_t buffer_size, size_t filelen)
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
enum numbered_backup_result result = BACKUP_IS_NEW;
|
1992-10-31 20:42:48 +00:00
|
|
|
DIR *dirp;
|
1993-04-01 04:12:31 +00:00
|
|
|
struct dirent *dp;
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
char *buf = *buffer;
|
|
|
|
|
size_t versionlenmax = 1;
|
2004-09-13 12:10:57 +00:00
|
|
|
char *base = base_name (buf);
|
|
|
|
|
size_t base_offset = base - buf;
|
|
|
|
|
size_t baselen = base_len (base);
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
|
|
|
|
|
/* Temporarily modify the buffer into its parent directory name,
|
|
|
|
|
open the directory, and then restore the buffer. */
|
|
|
|
|
char tmp[sizeof "."];
|
2004-09-13 12:10:57 +00:00
|
|
|
memcpy (tmp, base, sizeof ".");
|
|
|
|
|
strcpy (base, ".");
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
dirp = opendir (buf);
|
2004-09-13 12:10:57 +00:00
|
|
|
memcpy (base, tmp, sizeof ".");
|
|
|
|
|
strcpy (base + baselen, ".~1~");
|
1993-10-09 20:43:31 +00:00
|
|
|
|
1992-10-31 20:42:48 +00:00
|
|
|
if (!dirp)
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
return result;
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
while ((dp = readdir (dirp)) != NULL)
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
char const *p;
|
|
|
|
|
char *q;
|
|
|
|
|
bool all_9s;
|
|
|
|
|
size_t versionlen;
|
|
|
|
|
size_t new_buflen;
|
|
|
|
|
|
|
|
|
|
if (! REAL_DIR_ENTRY (dp) || NLENGTH (dp) < baselen + 4)
|
|
|
|
|
continue;
|
|
|
|
|
|
2004-09-13 12:10:57 +00:00
|
|
|
if (memcmp (buf + base_offset, dp->d_name, baselen + 2) != 0)
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
p = dp->d_name + baselen + 2;
|
|
|
|
|
|
|
|
|
|
/* Check whether this file has a version number and if so,
|
|
|
|
|
whether it is larger. Use string operations rather than
|
|
|
|
|
integer arithmetic, to avoid problems with integer overflow. */
|
|
|
|
|
|
|
|
|
|
if (! ('1' <= *p && *p <= '9'))
|
|
|
|
|
continue;
|
|
|
|
|
all_9s = (*p == '9');
|
|
|
|
|
for (versionlen = 1; ISDIGIT (p[versionlen]); versionlen++)
|
|
|
|
|
all_9s &= (p[versionlen] == '9');
|
|
|
|
|
|
|
|
|
|
if (! (p[versionlen] == '~' && !p[versionlen + 1]
|
|
|
|
|
&& (versionlenmax < versionlen
|
|
|
|
|
|| (versionlenmax == versionlen
|
|
|
|
|
&& memcmp (buf + filelen + 2, p, versionlen) <= 0))))
|
1992-10-31 20:42:48 +00:00
|
|
|
continue;
|
1993-10-09 20:43:31 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* This directory has the largest version number seen so far.
|
|
|
|
|
Append this highest numbered extension to the file name,
|
|
|
|
|
prepending '0' to the number if it is all 9s. */
|
|
|
|
|
|
|
|
|
|
versionlenmax = all_9s + versionlen;
|
|
|
|
|
result = (all_9s ? BACKUP_IS_LONGER : BACKUP_IS_SAME_LENGTH);
|
|
|
|
|
new_buflen = filelen + 2 + versionlenmax + 1;
|
|
|
|
|
if (buffer_size <= new_buflen)
|
|
|
|
|
{
|
|
|
|
|
buf = xnrealloc (buf, 2, new_buflen);
|
|
|
|
|
buffer_size = new_buflen * 2;
|
|
|
|
|
}
|
|
|
|
|
q = buf + filelen;
|
|
|
|
|
*q++ = '.';
|
|
|
|
|
*q++ = '~';
|
|
|
|
|
*q = '0';
|
|
|
|
|
q += all_9s;
|
|
|
|
|
memcpy (q, p, versionlen + 2);
|
2004-09-22 20:14:25 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Add 1 to the version number. */
|
|
|
|
|
|
|
|
|
|
q += versionlen;
|
|
|
|
|
while (*--q == '9')
|
|
|
|
|
*q = '0';
|
|
|
|
|
++*q;
|
1992-10-31 20:42:48 +00:00
|
|
|
}
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
|
|
|
|
|
closedir (dirp);
|
|
|
|
|
*buffer = buf;
|
|
|
|
|
return result;
|
1992-10-31 20:42:48 +00:00
|
|
|
}
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
#endif /* HAVE_DIR */
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Return the name of the new backup file for the existing file FILE,
|
|
|
|
|
allocated with malloc. Report an error and fail if out of memory.
|
2004-09-13 12:10:57 +00:00
|
|
|
Do not call this function if backup_type == no_backups. */
|
1992-10-31 20:42:48 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
char *
|
|
|
|
|
find_backup_file_name (char const *file, enum backup_type backup_type)
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
size_t filelen = strlen (file);
|
|
|
|
|
char *s;
|
|
|
|
|
size_t ssize;
|
|
|
|
|
bool simple = true;
|
1993-10-09 20:43:31 +00:00
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
/* Allow room for simple or ".~N~" backups. The guess must be at
|
|
|
|
|
least sizeof ".~1~", but otherwise will be adjusted as needed. */
|
|
|
|
|
size_t simple_backup_suffix_size = strlen (simple_backup_suffix) + 1;
|
|
|
|
|
size_t backup_suffix_size_guess = simple_backup_suffix_size;
|
|
|
|
|
enum { GUESS = sizeof ".~12345~" };
|
|
|
|
|
if (HAVE_DIR && backup_suffix_size_guess < GUESS)
|
|
|
|
|
backup_suffix_size_guess = GUESS;
|
|
|
|
|
|
|
|
|
|
ssize = filelen + backup_suffix_size_guess + 1;
|
|
|
|
|
s = xmalloc (ssize);
|
|
|
|
|
memcpy (s, file, filelen + 1);
|
|
|
|
|
|
|
|
|
|
#if HAVE_DIR
|
2004-09-13 12:10:57 +00:00
|
|
|
if (backup_type != simple_backups)
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
switch (numbered_backup (&s, ssize, filelen))
|
|
|
|
|
{
|
|
|
|
|
case BACKUP_IS_SAME_LENGTH:
|
|
|
|
|
return s;
|
|
|
|
|
|
|
|
|
|
case BACKUP_IS_LONGER:
|
|
|
|
|
simple = false;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BACKUP_IS_NEW:
|
2004-09-13 12:10:57 +00:00
|
|
|
simple = (backup_type == numbered_existing_backups);
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (simple)
|
|
|
|
|
memcpy (s + filelen, simple_backup_suffix, simple_backup_suffix_size);
|
|
|
|
|
check_extension (s, filelen, '~');
|
|
|
|
|
return s;
|
1992-10-31 20:42:48 +00:00
|
|
|
}
|
|
|
|
|
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
static char const * const backup_args[] =
|
1997-05-27 09:41:25 +00:00
|
|
|
{
|
2005-09-13 12:12:36 +00:00
|
|
|
/* In a series of synonyms, present the most meaningful first, so
|
1999-01-16 15:51:21 +00:00
|
|
|
that argmatch_valid be more readable. */
|
|
|
|
|
"none", "off",
|
|
|
|
|
"simple", "never",
|
|
|
|
|
"existing", "nil",
|
|
|
|
|
"numbered", "t",
|
2005-06-23 13:26:15 +00:00
|
|
|
NULL
|
1997-05-27 09:41:25 +00:00
|
|
|
};
|
1992-10-31 20:42:48 +00:00
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
static const enum backup_type backup_types[] =
|
1992-10-31 20:42:48 +00:00
|
|
|
{
|
2004-09-13 12:10:57 +00:00
|
|
|
no_backups, no_backups,
|
|
|
|
|
simple_backups, simple_backups,
|
|
|
|
|
numbered_existing_backups, numbered_existing_backups,
|
|
|
|
|
numbered_backups, numbered_backups
|
1997-05-27 09:41:25 +00:00
|
|
|
};
|
1992-10-31 20:42:48 +00:00
|
|
|
|
2005-09-13 12:12:36 +00:00
|
|
|
/* Ensure that these two vectors have the same number of elements,
|
|
|
|
|
not counting the final NULL in the first one. */
|
|
|
|
|
ARGMATCH_VERIFY (backup_args, backup_types);
|
|
|
|
|
|
1999-01-16 15:51:21 +00:00
|
|
|
/* Return the type of backup specified by VERSION.
|
2004-09-13 12:10:57 +00:00
|
|
|
If VERSION is NULL or the empty string, return numbered_existing_backups.
|
1999-01-16 15:51:21 +00:00
|
|
|
If VERSION is invalid or ambiguous, fail with a diagnostic appropriate
|
|
|
|
|
for the specified CONTEXT. Unambiguous abbreviations are accepted. */
|
1997-05-27 09:41:25 +00:00
|
|
|
|
|
|
|
|
enum backup_type
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
get_version (char const *context, char const *version)
|
1997-05-27 09:41:25 +00:00
|
|
|
{
|
|
|
|
|
if (version == 0 || *version == 0)
|
2004-09-13 12:10:57 +00:00
|
|
|
return numbered_existing_backups;
|
1999-01-16 15:51:21 +00:00
|
|
|
else
|
|
|
|
|
return XARGMATCH (context, version, backup_args, backup_types);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the type of backup specified by VERSION.
|
|
|
|
|
If VERSION is NULL, use the value of the envvar VERSION_CONTROL.
|
|
|
|
|
If the specified string is invalid or ambiguous, fail with a diagnostic
|
|
|
|
|
appropriate for the specified CONTEXT.
|
|
|
|
|
Unambiguous abbreviations are accepted. */
|
|
|
|
|
|
|
|
|
|
enum backup_type
|
backupfile.c rewrite to avoid arbitrary limits on lengths of
numeric backup extensions.
Include "backupfile.h" first.
Include errno.h, stdbool.h, limits.h, unistd.h, xalloc.h.
(CLOSEDIR, INT_STRLEN_BOUND): Remove.
(pathconf) [! (HAVE_PATHCONF && defined _PC_NAME_MAX)]: New macro.
(_POSIX_NAME_MAX) [!defined _POSIX_NAME_MAX]: New macro.
(NAME_MAX_MAXIMUM): New macro. Unlike the old addext.c, we
also look at _XOPEN_NAME_MAX, for better performance on modern
hosts that support only file names of length 255 or more.
(ISDIGIT): unsigned -> unsigned int
(max_backup_version, version_number): Remove.
(check_extension): New function. Similar to the old addext, but
static, assumes that the extension has already been added,
and a bit more careful on DOS hosts.
(numbered_backup): New function. It does what max_backup_version
and version_number used to do, but it doesn't use integer arithmetic
to calculate extensions so it doesn't overflow.
(find_backup_file_name): Rewrite to use these new functions.
This has a new optimization: we needn't call pathconf if the
new numbered backup name has the same length as the old.
Also, use xmalloc rather than malloc, so that the caller
needn't worry about memory exhaustion.
2004-07-27 23:12:56 +00:00
|
|
|
xget_version (char const *context, char const *version)
|
1999-01-16 15:51:21 +00:00
|
|
|
{
|
|
|
|
|
if (version && *version)
|
|
|
|
|
return get_version (context, version);
|
1999-01-02 19:28:31 +00:00
|
|
|
else
|
1999-01-16 15:51:21 +00:00
|
|
|
return get_version ("$VERSION_CONTROL", getenv ("VERSION_CONTROL"));
|
1992-10-31 20:42:48 +00:00
|
|
|
}
|