binutils-gdb/binutils/bucomm.h

88 lines
2.5 KiB
C
Raw Permalink Normal View History

1999-05-03 15:29:11 +08:00
/* bucomm.h -- binutils common include file.
Copyright (C) 1991-2024 Free Software Foundation, Inc.
1999-05-03 15:29:11 +08:00
This file is part of GNU Binutils.
1999-05-03 15:29:11 +08: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
2007-07-06 00:54:46 +08:00
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
1999-05-03 15:29:11 +08:00
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.
1999-05-03 15:29:11 +08:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
2007-07-06 00:54:46 +08:00
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
1999-05-03 15:29:11 +08:00
#ifndef _BUCOMM_H
#define _BUCOMM_H
/* In bucomm.c. */
/* Return the filename in a static buffer. */
const char *bfd_get_archive_filename (const bfd *);
void bfd_nonfatal (const char *);
void bfd_nonfatal_message (const char *, const bfd *, const asection *,
const char *, ...);
void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
1999-05-03 15:29:11 +08:00
void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
1999-05-03 15:29:11 +08:00
void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
1999-05-03 15:29:11 +08:00
void *bfd_xalloc (bfd *, size_t);
void set_default_bfd_target (void);
1999-05-03 15:29:11 +08:00
void list_matching_formats (char **);
1999-05-03 15:29:11 +08:00
void list_supported_targets (const char *, FILE *);
1999-05-03 15:29:11 +08:00
void list_supported_architectures (const char *, FILE *);
int display_info (void);
1999-05-03 15:29:11 +08:00
void print_arelt_descr (FILE *, bfd *, bool, bool);
1999-05-03 15:29:11 +08:00
char *make_tempname (const char *, int *);
char *make_tempdir (const char *);
bfd_vma parse_vma (const char *, const char *);
1999-05-03 15:29:11 +08:00
off_t get_file_size (const char *);
bool is_valid_archive_path (char const *);
1999-05-03 15:29:11 +08:00
extern char *program_name;
/* In filemode.c. */
void mode_string (unsigned long, char *);
1999-05-03 15:29:11 +08:00
/* In version.c. */
extern void print_version (const char *);
1999-05-03 15:29:11 +08:00
/* In rename.c. */
extern void set_times (const char *, const struct stat *);
1999-05-03 15:29:11 +08:00
extern int smart_rename (const char *, const char *, int,
struct stat *, bool);
binutils: Make smart_rename safe too smart_rename is capable of handling symlinks by copying and it also tries to preserve ownership and permissions of files when they're overwritten during the rename. This is useful in objcopy where the file properties need to be preserved. However because smart_rename does this using file names, it leaves a race window between renames and permission fixes. This change removes this race window by using file descriptors from the original BFDs that were used to manipulate these files wherever possible. The file that is to be renamed is also passed as a file descriptor so that we use fchown/fchmod on the file descriptor, thus making sure that we only modify the file we have opened to write. Further, in case the file is to be overwritten (as is the case in ar or objcopy), the permissions that need to be restored are taken from the file descriptor that was opened for input so that integrity of the file status is maintained all the way through to the rename. binutils/ * rename.c * ar.c (write_archive) [!defined (_WIN32) || defined (__CYGWIN32__)]: Initialize TARGET_STAT and OFD to pass to SMART_RENAME. * arsup.c (ar_save) [defined (_WIN32) || defined (__CYGWIN32__)]: Likewise. * bucomm.h (smart_rename): Add new arguments to declaration. * objcopy.c (strip_main)[defined (_WIN32) || defined (__CYGWIN32__)]: Initialize COPYFD and pass to SMART_RENAME. (copy_main) [defined (_WIN32) || defined (__CYGWIN32__)]: Likewise. * rename.c (try_preserve_permissions): New function. (smart_rename): Use it and add new arguments.
2020-12-07 23:18:33 +08:00
#if __GNUC__ >= 7
#define _mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res)
#else
/* Assumes unsigned values. Careful! Args evaluated multiple times. */
#define _mul_overflow(a, b, res) \
((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a))
#endif
1999-05-03 15:29:11 +08:00
#endif /* _BUCOMM_H */