1 /* Miscellaneous functions, not really specific to GNU tar.
3 Copyright 1988, 1992, 1994-1997, 1999-2001, 2003-2007, 2009-2010,
4 2012-2013 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any later
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #define COMMON_INLINE _GL_EXTERN_INLINE
25 #include <unlinkdir.h>
28 #ifndef DOUBLE_SLASH_IS_DISTINCT_ROOT
29 # define DOUBLE_SLASH_IS_DISTINCT_ROOT 0
33 /* Handling strings. */
35 /* Assign STRING to a copy of VALUE if not zero, or to zero. If
36 STRING was nonzero, it is freed first. */
38 assign_string (char **string
, const char *value
)
41 *string
= value
? xstrdup (value
) : 0;
45 /* This function is currently unused; perhaps it should be removed? */
47 /* Allocate a copy of the string quoted as in C, and returns that. If
48 the string does not have to be quoted, it returns a null pointer.
49 The allocated copy should normally be freed with free() after the
50 caller is done with it.
52 This is used in one context only: generating the directory file in
53 incremental dumps. The quoted string is not intended for human
54 consumption; it is intended only for unquote_string. The quoting
55 is locale-independent, so that users needn't worry about locale
56 when reading directory files. This means that we can't use
57 quotearg, as quotearg is locale-dependent and is meant for human
60 quote_copy_string (const char *string
)
62 const char *source
= string
;
63 char *destination
= 0;
69 int character
= *source
++;
76 size_t length
= (source
- string
) - 1;
79 buffer
= xmalloc (length
+ 2 + 2 * strlen (source
) + 1);
80 memcpy (buffer
, string
, length
);
81 destination
= buffer
+ length
;
83 *destination
++ = '\\';
84 *destination
++ = character
== '\\' ? '\\' : 'n';
89 *destination
++ = character
;
102 /* Takes a quoted C string (like those produced by quote_copy_string)
103 and turns it back into the un-quoted original. This is done in
104 place. Returns 0 only if the string was not properly quoted, but
105 completes the unquoting anyway.
107 This is used for reading the saved directory file in incremental
108 dumps. It is used for decoding old 'N' records (demangling names).
109 But also, it is used for decoding file arguments, would they come
110 from the shell or a -T file, and for decoding the --exclude
113 unquote_string (char *string
)
116 char *source
= string
;
117 char *destination
= string
;
119 /* Escape sequences other than \\ and \n are no longer generated by
120 quote_copy_string, but accept them for backwards compatibility,
121 and also because unquote_string is used for purposes other than
122 parsing the output of quote_copy_string. */
129 *destination
++ = '\\';
134 *destination
++ = '\a';
139 *destination
++ = '\b';
144 *destination
++ = '\f';
149 *destination
++ = '\n';
154 *destination
++ = '\r';
159 *destination
++ = '\t';
164 *destination
++ = '\v';
169 *destination
++ = 0177;
182 int value
= *source
++ - '0';
184 if (*source
< '0' || *source
> '7')
186 *destination
++ = value
;
189 value
= value
* 8 + *source
++ - '0';
190 if (*source
< '0' || *source
> '7')
192 *destination
++ = value
;
195 value
= value
* 8 + *source
++ - '0';
196 *destination
++ = value
;
202 *destination
++ = '\\';
204 *destination
++ = *source
++;
207 else if (source
!= destination
)
208 *destination
++ = *source
++;
210 source
++, destination
++;
212 if (source
!= destination
)
217 /* Zap trailing slashes. */
219 zap_slashes (char *name
)
223 if (!name
|| *name
== 0)
225 q
= name
+ strlen (name
) - 1;
226 while (q
> name
&& ISSLASH (*q
))
231 /* Normalize FILE_NAME by removing redundant slashes and "."
232 components, including redundant trailing slashes. Leave ".."
233 alone, as it may be significant in the presence of symlinks and on
234 platforms where "/.." != "/". Destructive version: modifies its
237 normalize_filename_x (char *file_name
)
239 char *name
= file_name
+ FILE_SYSTEM_PREFIX_LEN (file_name
);
244 /* Don't squeeze leading "//" to "/", on hosts where they're distinct. */
245 name
+= (DOUBLE_SLASH_IS_DISTINCT_ROOT
246 && ISSLASH (*name
) && ISSLASH (name
[1]) && ! ISSLASH (name
[2]));
248 /* Omit redundant leading "." components. */
249 for (q
= p
= name
; (*p
= *q
) == '.' && ISSLASH (q
[1]); p
+= !*q
)
250 for (q
+= 2; ISSLASH (*q
); q
++)
253 /* Copy components from Q to P, omitting redundant slashes and
254 internal "." components. */
255 while ((*p
++ = c
= *q
++) != '\0')
257 while (ISSLASH (q
[*q
== '.']))
258 q
+= (*q
== '.') + 1;
260 /* Omit redundant trailing "." component and slash. */
263 p
-= p
[-2] == '.' && ISSLASH (p
[-3]);
264 p
-= 2 < p
- name
&& ISSLASH (p
[-2]);
269 /* Normalize NAME by removing redundant slashes and "." components,
270 including redundant trailing slashes. Return a normalized
271 newly-allocated copy. */
274 normalize_filename (const char *name
)
278 if (IS_RELATIVE_FILE_NAME (name
))
280 /* Set COPY to the absolute file name if possible.
282 FIXME: There should be no need to get the absolute file name.
283 getcwd is slow, it might fail, and it does not necessarily
284 return a canonical name even when it succeeds. Perhaps we
285 can use dev+ino pairs instead of names? */
289 size_t copylen
= strlen (copy
);
290 bool need_separator
= ! (DOUBLE_SLASH_IS_DISTINCT_ROOT
291 && copylen
== 2 && ISSLASH (copy
[1]));
292 copy
= xrealloc (copy
, copylen
+ need_separator
+ strlen (name
) + 1);
293 copy
[copylen
] = DIRECTORY_SEPARATOR
;
294 strcpy (copy
+ copylen
+ need_separator
, name
);
297 WARN ((0, errno
, _("Cannot get working directory")));
301 copy
= xstrdup (name
);
302 normalize_filename_x (copy
);
308 replace_prefix (char **pname
, const char *samp
, size_t slen
,
309 const char *repl
, size_t rlen
)
312 size_t nlen
= strlen (name
);
313 if (nlen
> slen
&& memcmp (name
, samp
, slen
) == 0 && ISSLASH (name
[slen
]))
317 name
= xrealloc (name
, nlen
- slen
+ rlen
+ 1);
320 memmove (name
+ rlen
, name
+ slen
, nlen
- slen
+ 1);
321 memcpy (name
, repl
, rlen
);
326 /* Handling numbers. */
328 /* Convert VALUE, which is converted from a system integer type whose
329 minimum value is MINVAL and maximum MINVAL, to an decimal
330 integer string. Use the storage in BUF and return a pointer to the
331 converted string. If VALUE is converted from a negative integer in
332 the range MINVAL .. -1, represent it with a string representation
333 of the negative integer, using leading '-'. */
334 #if ! (INTMAX_MAX <= UINTMAX_MAX / 2)
335 # error "sysinttostr: uintmax_t cannot represent all intmax_t values"
338 sysinttostr (uintmax_t value
, intmax_t minval
, uintmax_t maxval
,
339 char buf
[SYSINT_BUFSIZE
])
342 return umaxtostr (value
, buf
);
345 intmax_t i
= value
- minval
;
346 return imaxtostr (i
+ minval
, buf
);
350 /* Convert a prefix of the string ARG to a system integer type whose
351 minimum value is MINVAL and maximum MAXVAL. If MINVAL is negative,
352 negative integers MINVAL .. -1 are assumed to be represented using
353 leading '-' in the usual way. If the represented value exceeds
354 INTMAX_MAX, return a negative integer V such that (uintmax_t) V
355 yields the represented value. If ARGLIM is nonnull, store into
356 *ARGLIM a pointer to the first character after the prefix.
358 This is the inverse of sysinttostr.
360 On a normal return, set errno = 0.
361 On conversion error, return 0 and set errno = EINVAL.
362 On overflow, return an extreme value and set errno = ERANGE. */
363 #if ! (INTMAX_MAX <= UINTMAX_MAX)
364 # error "strtosysint: nonnegative intmax_t does not fit in uintmax_t"
367 strtosysint (char const *arg
, char **arglim
, intmax_t minval
, uintmax_t maxval
)
370 if (maxval
<= INTMAX_MAX
)
372 if (ISDIGIT (arg
[*arg
== '-']))
374 intmax_t i
= strtoimax (arg
, arglim
, 10);
375 intmax_t imaxval
= maxval
;
376 if (minval
<= i
&& i
<= imaxval
)
379 return i
< minval
? minval
: maxval
;
386 uintmax_t i
= strtoumax (arg
, arglim
, 10);
388 return represent_uintmax (i
);
398 /* Output fraction and trailing digits appropriate for a nanoseconds
399 count equal to NS, but don't output unnecessary '.' or trailing
403 code_ns_fraction (int ns
, char *p
)
422 p
[--i
] = '0' + ns
% 10;
431 code_timespec (struct timespec t
, char sbuf
[TIMESPEC_STRSIZE_BOUND
])
436 bool negative
= s
< 0;
438 /* ignore invalid values of ns */
439 if (BILLION
<= ns
|| ns
< 0)
442 if (negative
&& ns
!= 0)
448 np
= umaxtostr (negative
? - (uintmax_t) s
: (uintmax_t) s
, sbuf
+ 1);
451 code_ns_fraction (ns
, sbuf
+ UINTMAX_STRSIZE_BOUND
);
456 decode_timespec (char const *arg
, char **arg_lim
, bool parse_fraction
)
458 time_t s
= TYPE_MINIMUM (time_t);
461 bool negative
= *arg
== '-';
464 if (! ISDIGIT (arg
[negative
]))
472 intmax_t i
= strtoimax (arg
, arg_lim
, 10);
473 if (TYPE_SIGNED (time_t) ? TYPE_MINIMUM (time_t) <= i
: 0 <= i
)
480 uintmax_t i
= strtoumax (arg
, arg_lim
, 10);
481 if (i
<= TYPE_MAXIMUM (time_t))
490 if (parse_fraction
&& *p
== '.')
493 bool trailing_nonzero
= false;
495 while (ISDIGIT (*++p
))
496 if (digits
< LOG10_BILLION
)
497 digits
++, ns
= 10 * ns
+ (*p
- '0');
499 trailing_nonzero
|= *p
!= '0';
501 while (digits
< LOG10_BILLION
)
506 /* Convert "-1.10000000000001" to s == -2, ns == 89999999.
507 I.e., truncate time stamps towards minus infinity while
508 converting them to internal form. */
509 ns
+= trailing_nonzero
;
512 if (s
== TYPE_MINIMUM (time_t))
527 *arg_lim
= (char *) p
;
535 /* Saved names in case backup needs to be undone. */
536 static char *before_backup_name
;
537 static char *after_backup_name
;
539 /* Return 1 if FILE_NAME is obviously "." or "/". */
541 must_be_dot_or_slash (char const *file_name
)
543 file_name
+= FILE_SYSTEM_PREFIX_LEN (file_name
);
545 if (ISSLASH (file_name
[0]))
548 if (ISSLASH (file_name
[1]))
550 else if (file_name
[1] == '.'
551 && ISSLASH (file_name
[2 + (file_name
[2] == '.')]))
552 file_name
+= 2 + (file_name
[2] == '.');
554 return ! file_name
[1];
558 while (file_name
[0] == '.' && ISSLASH (file_name
[1]))
561 while (ISSLASH (*file_name
))
565 return ! file_name
[0] || (file_name
[0] == '.' && ! file_name
[1]);
569 /* Some implementations of rmdir let you remove '.' or '/'.
570 Report an error with errno set to zero for obvious cases of this;
571 otherwise call rmdir. */
573 safer_rmdir (const char *file_name
)
575 if (must_be_dot_or_slash (file_name
))
581 return unlinkat (chdir_fd
, file_name
, AT_REMOVEDIR
);
584 /* Remove FILE_NAME, returning 1 on success. If FILE_NAME is a directory,
585 then if OPTION is RECURSIVE_REMOVE_OPTION is set remove FILE_NAME
586 recursively; otherwise, remove it only if it is empty. If FILE_NAME is
587 a directory that cannot be removed (e.g., because it is nonempty)
588 and if OPTION is WANT_DIRECTORY_REMOVE_OPTION, then return -1.
589 Return 0 on error, with errno set; if FILE_NAME is obviously the working
590 directory return zero with errno set to zero. */
592 remove_any_file (const char *file_name
, enum remove_option option
)
594 /* Try unlink first if we cannot unlink directories, as this saves
595 us a system call in the common case where we're removing a
597 bool try_unlink_first
= cannot_unlink_dir ();
599 if (try_unlink_first
)
601 if (unlinkat (chdir_fd
, file_name
, 0) == 0)
604 /* POSIX 1003.1-2001 requires EPERM when attempting to unlink a
605 directory without appropriate privileges, but many Linux
606 kernels return the more-sensible EISDIR. */
607 if (errno
!= EPERM
&& errno
!= EISDIR
)
611 if (safer_rmdir (file_name
) == 0)
617 return !try_unlink_first
&& unlinkat (chdir_fd
, file_name
, 0) == 0;
621 #if defined ENOTEMPTY && ENOTEMPTY != EEXIST
626 case ORDINARY_REMOVE_OPTION
:
629 case WANT_DIRECTORY_REMOVE_OPTION
:
632 case RECURSIVE_REMOVE_OPTION
:
634 char *directory
= savedir (file_name
);
641 for (entry
= directory
;
642 (entrylen
= strlen (entry
)) != 0;
643 entry
+= entrylen
+ 1)
645 char *file_name_buffer
= new_name (file_name
, entry
);
646 int r
= remove_any_file (file_name_buffer
,
647 RECURSIVE_REMOVE_OPTION
);
649 free (file_name_buffer
);
660 return safer_rmdir (file_name
) == 0;
669 /* Check if FILE_NAME already exists and make a backup of it right now.
670 Return success (nonzero) only if the backup is either unneeded, or
671 successful. For now, directories are considered to never need
672 backup. If THIS_IS_THE_ARCHIVE is nonzero, this is the archive and
673 so, we do not have to backup block or character devices, nor remote
676 maybe_backup_file (const char *file_name
, bool this_is_the_archive
)
678 struct stat file_stat
;
680 assign_string (&before_backup_name
, file_name
);
682 /* A run situation may exist between Emacs or other GNU programs trying to
683 make a backup for the same file simultaneously. If theoretically
684 possible, real problems are unlikely. Doing any better would require a
685 convention, GNU-wide, for all programs doing backups. */
687 assign_string (&after_backup_name
, 0);
689 /* Check if we really need to backup the file. */
691 if (this_is_the_archive
&& _remdev (file_name
))
694 if (deref_stat (file_name
, &file_stat
) != 0)
699 stat_error (file_name
);
703 if (S_ISDIR (file_stat
.st_mode
))
706 if (this_is_the_archive
707 && (S_ISBLK (file_stat
.st_mode
) || S_ISCHR (file_stat
.st_mode
)))
710 after_backup_name
= find_backup_file_name (file_name
, backup_type
);
711 if (! after_backup_name
)
714 if (renameat (chdir_fd
, before_backup_name
, chdir_fd
, after_backup_name
)
718 fprintf (stdlis
, _("Renaming %s to %s\n"),
719 quote_n (0, before_backup_name
),
720 quote_n (1, after_backup_name
));
725 /* The backup operation failed. */
727 ERROR ((0, e
, _("%s: Cannot rename to %s"),
728 quotearg_colon (before_backup_name
),
729 quote_n (1, after_backup_name
)));
730 assign_string (&after_backup_name
, 0);
735 /* Try to restore the recently backed up file to its original name.
736 This is usually only needed after a failed extraction. */
738 undo_last_backup (void)
740 if (after_backup_name
)
742 if (renameat (chdir_fd
, after_backup_name
, chdir_fd
, before_backup_name
)
746 ERROR ((0, e
, _("%s: Cannot rename to %s"),
747 quotearg_colon (after_backup_name
),
748 quote_n (1, before_backup_name
)));
751 fprintf (stdlis
, _("Renaming %s back to %s\n"),
752 quote_n (0, after_backup_name
),
753 quote_n (1, before_backup_name
));
754 assign_string (&after_backup_name
, 0);
758 /* Apply either stat or lstat to (NAME, BUF), depending on the
759 presence of the --dereference option. NAME is relative to the
760 most-recent argument to chdir_do. */
762 deref_stat (char const *name
, struct stat
*buf
)
764 return fstatat (chdir_fd
, name
, buf
, fstatat_flags
);
767 /* Read from FD into the buffer BUF with COUNT bytes. Attempt to fill
768 BUF. Wait until input is available; this matters because files are
769 opened O_NONBLOCK for security reasons, and on some file systems
770 this can cause read to fail with errno == EAGAIN. Return the
771 actual number of bytes read, zero for EOF, or
772 SAFE_READ_ERROR upon error. */
774 blocking_read (int fd
, void *buf
, size_t count
)
776 size_t bytes
= safe_read (fd
, buf
, count
);
778 #if defined F_SETFL && O_NONBLOCK
779 if (bytes
== SAFE_READ_ERROR
&& errno
== EAGAIN
)
781 int flags
= fcntl (fd
, F_GETFL
);
782 if (0 <= flags
&& flags
& O_NONBLOCK
783 && fcntl (fd
, F_SETFL
, flags
& ~O_NONBLOCK
) != -1)
784 bytes
= safe_read (fd
, buf
, count
);
791 /* Write to FD from the buffer BUF with COUNT bytes. Do a full write.
792 Wait until an output buffer is available; this matters because
793 files are opened O_NONBLOCK for security reasons, and on some file
794 systems this can cause write to fail with errno == EAGAIN. Return
795 the actual number of bytes written, setting errno if that is less
798 blocking_write (int fd
, void const *buf
, size_t count
)
800 size_t bytes
= full_write (fd
, buf
, count
);
802 #if defined F_SETFL && O_NONBLOCK
803 if (bytes
< count
&& errno
== EAGAIN
)
805 int flags
= fcntl (fd
, F_GETFL
);
806 if (0 <= flags
&& flags
& O_NONBLOCK
807 && fcntl (fd
, F_SETFL
, flags
& ~O_NONBLOCK
) != -1)
809 char const *buffer
= buf
;
810 bytes
+= full_write (fd
, buffer
+ bytes
, count
- bytes
);
818 /* Set FD's (i.e., assuming the working directory is PARENTFD, FILE's)
819 access time to ATIME. */
821 set_file_atime (int fd
, int parentfd
, char const *file
, struct timespec atime
)
823 struct timespec ts
[2];
825 ts
[1].tv_nsec
= UTIME_OMIT
;
826 return fdutimensat (fd
, parentfd
, file
, ts
, fstatat_flags
);
829 /* A description of a working directory. */
832 /* The directory's name. */
835 /* If nonzero, the file descriptor of the directory, or AT_FDCWD if
836 the working directory. If zero, the directory needs to be opened
841 /* A vector of chdir targets. wd[0] is the initial working directory. */
842 static struct wd
*wd
;
844 /* The number of working directories in the vector. */
845 static size_t wd_count
;
847 /* The allocated size of the vector. */
848 static size_t wd_alloc
;
850 /* The maximum number of chdir targets with open directories.
851 Don't make it too large, as many operating systems have a small
852 limit on the number of open file descriptors. Also, the current
853 implementation does not scale well. */
854 enum { CHDIR_CACHE_SIZE
= 16 };
856 /* Indexes into WD of chdir targets with open file descriptors, sorted
857 most-recently used first. Zero indexes are unused. */
858 static int wdcache
[CHDIR_CACHE_SIZE
];
860 /* Number of nonzero entries in WDCACHE. */
861 static size_t wdcache_count
;
871 /* DIR is the operand of a -C option; add it to vector of chdir targets,
872 and return the index of its location. */
874 chdir_arg (char const *dir
)
876 if (wd_count
== wd_alloc
)
881 wd
= xmalloc (sizeof *wd
* wd_alloc
);
884 wd
= x2nrealloc (wd
, &wd_alloc
, sizeof *wd
);
888 wd
[wd_count
].name
= ".";
889 wd
[wd_count
].fd
= AT_FDCWD
;
894 /* Optimize the common special case of the working directory,
895 or the working directory as a prefix. */
898 while (dir
[0] == '.' && ISSLASH (dir
[1]))
899 for (dir
+= 2; ISSLASH (*dir
); dir
++)
901 if (! dir
[dir
[0] == '.'])
905 wd
[wd_count
].name
= dir
;
910 /* Index of current directory. */
913 /* Value suitable for use as the first argument to openat, and in
914 similar locations for fstatat, etc. This is an open file
915 descriptor, or AT_FDCWD if the working directory is current. It is
916 valid until the next invocation of chdir_do. */
917 int chdir_fd
= AT_FDCWD
;
919 /* Change to directory I, in a virtual way. This does not actually
920 invoke chdir; it merely sets chdir_fd to an int suitable as the
921 first argument for openat, etc. If I is 0, change to the initial
922 working directory; otherwise, I must be a value returned by
927 if (chdir_current
!= i
)
929 struct wd
*curr
= &wd
[i
];
934 if (! IS_ABSOLUTE_FILE_NAME (curr
->name
))
936 fd
= openat (chdir_fd
, curr
->name
,
937 open_searchdir_flags
& ~ O_NOFOLLOW
);
939 open_fatal (curr
->name
);
943 /* Add I to the cache, tossing out the lowest-ranking entry if the
945 if (wdcache_count
< CHDIR_CACHE_SIZE
)
946 wdcache
[wdcache_count
++] = i
;
949 struct wd
*stale
= &wd
[wdcache
[CHDIR_CACHE_SIZE
- 1]];
950 if (close (stale
->fd
) != 0)
951 close_diag (stale
->name
);
953 wdcache
[CHDIR_CACHE_SIZE
- 1] = i
;
959 /* Move the i value to the front of the cache. This is
960 O(CHDIR_CACHE_SIZE), but the cache is small. */
962 int prev
= wdcache
[0];
963 for (ci
= 1; prev
!= i
; ci
++)
965 int cur
= wdcache
[ci
];
980 close_diag (char const *name
)
982 if (ignore_failed_read_option
)
989 open_diag (char const *name
)
991 if (ignore_failed_read_option
)
998 read_diag_details (char const *name
, off_t offset
, size_t size
)
1000 if (ignore_failed_read_option
)
1001 read_warn_details (name
, offset
, size
);
1003 read_error_details (name
, offset
, size
);
1007 readlink_diag (char const *name
)
1009 if (ignore_failed_read_option
)
1010 readlink_warn (name
);
1012 readlink_error (name
);
1016 savedir_diag (char const *name
)
1018 if (ignore_failed_read_option
)
1019 savedir_warn (name
);
1021 savedir_error (name
);
1025 seek_diag_details (char const *name
, off_t offset
)
1027 if (ignore_failed_read_option
)
1028 seek_warn_details (name
, offset
);
1030 seek_error_details (name
, offset
);
1034 stat_diag (char const *name
)
1036 if (ignore_failed_read_option
)
1043 file_removed_diag (const char *name
, bool top_level
,
1044 void (*diagfn
) (char const *name
))
1046 if (!top_level
&& errno
== ENOENT
)
1048 WARNOPT (WARN_FILE_REMOVED
,
1049 (0, 0, _("%s: File removed before we read it"),
1050 quotearg_colon (name
)));
1051 set_exit_status (TAREXIT_DIFFERS
);
1058 write_fatal_details (char const *name
, ssize_t status
, size_t size
)
1060 write_error_details (name
, status
, size
);
1064 /* Fork, aborting if unsuccessful. */
1069 if (p
== (pid_t
) -1)
1070 call_arg_fatal ("fork", _("child process"));
1074 /* Create a pipe, aborting if unsuccessful. */
1079 call_arg_fatal ("pipe", _("interprocess channel"));
1082 /* Return PTR, aligned upward to the next multiple of ALIGNMENT.
1083 ALIGNMENT must be nonzero. The caller must arrange for ((char *)
1084 PTR) through ((char *) PTR + ALIGNMENT - 1) to be addressable
1087 static inline void *
1088 ptr_align (void *ptr
, size_t alignment
)
1091 char *p1
= p0
+ alignment
- 1;
1092 return p1
- (size_t) p1
% alignment
;
1095 /* Return the address of a page-aligned buffer of at least SIZE bytes.
1096 The caller should free *PTR when done with the buffer. */
1099 page_aligned_alloc (void **ptr
, size_t size
)
1101 size_t alignment
= getpagesize ();
1102 size_t size1
= size
+ alignment
;
1105 *ptr
= xmalloc (size1
);
1106 return ptr_align (*ptr
, alignment
);
1113 char *buffer
; /* directory, '/', and directory member */
1114 size_t buffer_size
; /* allocated size of name_buffer */
1115 size_t dir_length
; /* length of directory part in buffer */
1119 namebuf_create (const char *dir
)
1121 namebuf_t buf
= xmalloc (sizeof (*buf
));
1122 buf
->buffer_size
= strlen (dir
) + 2;
1123 buf
->buffer
= xmalloc (buf
->buffer_size
);
1124 strcpy (buf
->buffer
, dir
);
1125 buf
->dir_length
= strlen (buf
->buffer
);
1126 if (!ISSLASH (buf
->buffer
[buf
->dir_length
- 1]))
1127 buf
->buffer
[buf
->dir_length
++] = DIRECTORY_SEPARATOR
;
1132 namebuf_free (namebuf_t buf
)
1139 namebuf_name (namebuf_t buf
, const char *name
)
1141 size_t len
= strlen (name
);
1142 while (buf
->dir_length
+ len
+ 1 >= buf
->buffer_size
)
1143 buf
->buffer
= x2realloc (buf
->buffer
, &buf
->buffer_size
);
1144 strcpy (buf
->buffer
+ buf
->dir_length
, name
);