2009-07-07 08:40:31 +01:00
|
|
|
/* sharefile.c -- open files just once.
|
2025-01-04 11:43:53 +01:00
|
|
|
Copyright (C) 2008-2025 Free Software Foundation, Inc.
|
2009-07-07 08:40:31 +01: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 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
|
all: prefer https:// URLs where possible
Change from http:// to https:// URLs for the following:
www.gnu.org, gnu.org, savannah.gnu.org, git.sv.gnu.org, lists.gnu.org,
translationproject.org, cve.mitre.org, cwe.mitre.org, xkcd.com,
standards.ieee.org, and gcc.gnu.org.
* COPYING: Do the above replacement.
* ChangeLog-2013: Likewise.
* NEWS: Likewise.
* README: Likewise.
* README-hacking: Likewise.
* build-aux/Makefile.am: Likewise.
* build-aux/check-testfiles.sh: Likewise.
* build-aux/gen-changelog.sh: Likewise.
* build-aux/man-lint.sh: Likewise.
* build-aux/src-sniff.py: Likewise.
* cfg.mk: Likewise.
* configure.ac: Likewise.
* doc/Makefile.am: Likewise.
* doc/find-maint.texi: Likewise.
* doc/find.texi: Likewise.
* find/defs.h: Likewise.
* find/exec.c: Likewise.
* find/find.1: Likewise.
* find/finddata.c: Likewise.
* find/fstype.c: Likewise.
* find/ftsfind.c: Likewise.
* find/oldfind.c: Likewise.
* find/parser.c: Likewise.
* find/pred.c: Likewise.
* find/print.c: Likewise.
* find/print.h: Likewise.
* find/sharefile.c: Likewise.
* find/sharefile.h: Likewise.
* find/testsuite/Makefile.am: Likewise.
* find/testsuite/binary_locations.sh: Likewise.
* find/testsuite/checklists.py: Likewise.
* find/testsuite/config/unix.exp: Likewise.
* find/testsuite/find.gnu/name-period.exp: Likewise.
* find/testsuite/find.posix/depth1.exp: Likewise.
* find/testsuite/sv-34079.sh: Likewise.
* find/testsuite/sv-34976-execdir-fd-leak.sh: Likewise.
* find/testsuite/sv-48030-exec-plus-bug.sh: Likewise.
* find/testsuite/sv-48180-refuse-noop.sh: Likewise.
* find/testsuite/sv-52220.sh: Likewise.
* find/testsuite/sv-bug-32043.sh: Likewise.
* find/testsuite/test_escape_c.sh: Likewise.
* find/testsuite/test_escapechars.sh: Likewise.
* find/testsuite/test_inode.sh: Likewise.
* find/testsuite/test_type-list.sh: Likewise.
* find/tree.c: Likewise.
* find/util.c: Likewise.
* gnulib-local/lib/gcc-function-attributes.h: Likewise.
* lib/bugreports.c: Likewise.
* lib/bugreports.h: Likewise.
* lib/buildcmd.c: Likewise.
* lib/buildcmd.h: Likewise.
* lib/check-regexprops.sh: Likewise.
* lib/dircallback.c: Likewise.
* lib/dircallback.h: Likewise.
* lib/extendbuf.c: Likewise.
* lib/extendbuf.h: Likewise.
* lib/fdleak.c: Likewise.
* lib/fdleak.h: Likewise.
* lib/findutils-version.c: Likewise.
* lib/findutils-version.h: Likewise.
* lib/listfile.c: Likewise.
* lib/listfile.h: Likewise.
* lib/printquoted.c: Likewise.
* lib/printquoted.h: Likewise.
* lib/qmark.c: Likewise.
* lib/regexprops.c: Likewise.
* lib/regextype.c: Likewise.
* lib/regextype.h: Likewise.
* lib/safe-atoi.c: Likewise.
* lib/safe-atoi.h: Likewise.
* lib/splitstring.c: Likewise.
* lib/splitstring.h: Likewise.
* lib/test_splitstring.c: Likewise.
* lib/unused-result.h: Likewise.
* locate/frcode.c: Likewise.
* locate/locate.1: Likewise.
* locate/locate.c: Likewise.
* locate/locatedb.5: Likewise.
* locate/locatedb.h: Likewise.
* locate/testsuite/Makefile.am: Likewise.
* locate/testsuite/config/unix.exp: Likewise.
* locate/updatedb.1: Likewise.
* locate/updatedb.sh: Likewise.
* locate/word_io.c: Likewise.
* po/fetch-po-files: Likewise.
* xargs/testsuite/Makefile.am: Likewise.
* xargs/testsuite/config/unix.exp: Likewise.
* xargs/xargs.1: Likewise.
* xargs/xargs.c: Likewise.
2017-10-23 00:19:34 +02:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2009-07-07 08:40:31 +01:00
|
|
|
*/
|
|
|
|
|
2011-06-20 01:30:22 +01:00
|
|
|
/* config.h always comes first. */
|
2009-07-07 08:40:31 +01:00
|
|
|
#include <config.h>
|
|
|
|
|
2011-06-20 01:30:22 +01:00
|
|
|
/* system headers. */
|
|
|
|
#include <assert.h>
|
2009-07-07 08:40:31 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2011-06-20 01:30:22 +01:00
|
|
|
#include <string.h>
|
2009-07-07 08:40:31 +01:00
|
|
|
#include <sys/stat.h>
|
2011-06-20 01:30:22 +01:00
|
|
|
#include <sys/types.h>
|
2009-07-07 08:40:31 +01:00
|
|
|
|
2011-06-20 01:30:22 +01:00
|
|
|
/* gnulib headers. */
|
|
|
|
#include "cloexec.h"
|
2009-07-07 08:40:31 +01:00
|
|
|
#include "hash.h"
|
2020-12-02 02:00:01 +01:00
|
|
|
#include "stdio--.h"
|
2011-06-20 01:30:22 +01:00
|
|
|
|
|
|
|
/* find headers. */
|
2009-07-07 08:40:31 +01:00
|
|
|
#include "sharefile.h"
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
DefaultHashTableSize = 11
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sharefile
|
|
|
|
{
|
|
|
|
char *mode;
|
|
|
|
Hash_table *table;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We cannot use the name to determine that two strings represent the
|
|
|
|
* same file, since that test would be fooled by symbolic links.
|
|
|
|
* Instead we use the device and inode number.
|
|
|
|
*
|
|
|
|
* However, we remember the name of each file that we opened. This
|
|
|
|
* allows us to issue a fatal error message when (flushing and)
|
|
|
|
* closing a file fails.
|
|
|
|
*/
|
|
|
|
struct SharefileEntry
|
|
|
|
{
|
|
|
|
dev_t device;
|
|
|
|
ino_t inode;
|
|
|
|
char *name; /* not the only name for this file; error messages only */
|
|
|
|
FILE *fp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
entry_comparator (const void *av, const void *bv)
|
|
|
|
{
|
|
|
|
const struct SharefileEntry *a=av, *b=bv;
|
|
|
|
return (a->inode == b->inode) && (a->device == b->device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
entry_free (void *pv)
|
|
|
|
{
|
|
|
|
struct SharefileEntry *p = pv;
|
|
|
|
if (p->fp)
|
|
|
|
{
|
|
|
|
if (0 != fclose (p->fp))
|
2024-05-26 11:12:59 +01:00
|
|
|
fatal_nontarget_file_error (errno, p->name);
|
2009-07-07 08:40:31 +01:00
|
|
|
}
|
|
|
|
free (p->name);
|
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
entry_hashfunc (const void *pv, size_t buckets)
|
|
|
|
{
|
|
|
|
const struct SharefileEntry *p = pv;
|
|
|
|
return (p->device ^ p->inode) % buckets;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sharefile_handle
|
|
|
|
sharefile_init (const char *mode)
|
|
|
|
{
|
|
|
|
struct Hash_tuning;
|
|
|
|
|
2010-03-31 23:20:33 +01:00
|
|
|
struct sharefile *p = malloc (sizeof (struct sharefile));
|
2009-07-07 08:40:31 +01:00
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
p->mode = strdup (mode);
|
|
|
|
if (p->mode)
|
2024-05-26 11:12:59 +01:00
|
|
|
{
|
|
|
|
p->table = hash_initialize (DefaultHashTableSize, NULL,
|
|
|
|
entry_hashfunc,
|
|
|
|
entry_comparator,
|
|
|
|
entry_free);
|
|
|
|
if (p->table)
|
|
|
|
{
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
free (p->mode);
|
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
}
|
2009-07-07 08:40:31 +01:00
|
|
|
else
|
2024-05-26 11:12:59 +01:00
|
|
|
{
|
|
|
|
free (p);
|
|
|
|
}
|
2009-07-07 08:40:31 +01:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sharefile_destroy (sharefile_handle pv)
|
|
|
|
{
|
|
|
|
struct sharefile *p = pv;
|
|
|
|
free (p->mode);
|
|
|
|
hash_free (p->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
sharefile_fopen (sharefile_handle h, const char *filename)
|
|
|
|
{
|
|
|
|
struct sharefile *p = h;
|
|
|
|
struct SharefileEntry *new_entry;
|
|
|
|
|
|
|
|
new_entry = malloc (sizeof (struct SharefileEntry));
|
|
|
|
if (!new_entry)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
new_entry->name = strdup (filename);
|
|
|
|
if (NULL == new_entry->name)
|
|
|
|
{
|
|
|
|
free (new_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-12-02 02:00:01 +01:00
|
|
|
if (NULL == (new_entry->fp = fopen (filename, p->mode)))
|
2009-07-07 08:40:31 +01:00
|
|
|
{
|
2019-08-29 08:36:26 +02:00
|
|
|
entry_free (new_entry);
|
2009-07-07 08:40:31 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
const int fd = fileno (new_entry->fp);
|
|
|
|
assert (fd >= 0);
|
|
|
|
|
2010-02-25 10:43:11 +00:00
|
|
|
set_cloexec_flag (fd, true);
|
2009-07-07 08:40:31 +01:00
|
|
|
if (fstat (fd, &st) < 0)
|
|
|
|
{
|
2024-05-26 11:12:59 +01:00
|
|
|
entry_free (new_entry);
|
2009-07-07 08:40:31 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-05-26 11:12:59 +01:00
|
|
|
void *existing;
|
2009-07-07 08:40:31 +01:00
|
|
|
|
|
|
|
new_entry->device = st.st_dev;
|
|
|
|
new_entry->inode = st.st_ino;
|
|
|
|
|
|
|
|
existing = hash_lookup (p->table, new_entry);
|
2024-05-26 11:12:59 +01:00
|
|
|
if (existing) /* We have previously opened that file. */
|
|
|
|
{
|
|
|
|
entry_free (new_entry); /* don't need new_entry. */
|
|
|
|
return ((const struct SharefileEntry*)existing)->fp;
|
|
|
|
}
|
2009-07-07 08:40:31 +01:00
|
|
|
else /* We didn't open it already */
|
2024-05-26 11:12:59 +01:00
|
|
|
{
|
|
|
|
if (hash_insert (p->table, new_entry))
|
|
|
|
{
|
|
|
|
return new_entry->fp;
|
|
|
|
}
|
|
|
|
else /* failed to insert in hashtable. */
|
|
|
|
{
|
|
|
|
const int save_errno = errno;
|
|
|
|
entry_free (new_entry);
|
|
|
|
errno = save_errno;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2009-07-07 08:40:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|