1 /* Implement ln -f "atomically"
3 Copyright 2017-2023 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert. */
20 /* A naive "ln -f A B" unlinks B and then links A to B. This module
21 instead links A to a randomly-named temporary T in B's directory,
22 and then renames T to B. This approach has a window with a
23 randomly-named temporary, which is safer for many applications than
24 a window where B does not exist. */
29 #include "force-link.h"
33 /* A basename pattern suitable for a temporary file. It should work
34 even on file systems like FAT that support only short names.
35 "Cu" is short for "Coreutils" or for "Changeable unstable",
38 static char const simple_pattern
[] = "CuXXXXXX";
39 enum { x_suffix_len
= sizeof "XXXXXX" - 1 };
41 /* A size for smallish buffers containing file names. Longer file
42 names can use malloc. */
44 enum { smallsize
= 256 };
46 /* Return a template for a file in the same directory as DSTNAME.
47 Use BUF if the template fits, otherwise use malloc and return nullptr
48 (setting errno) if unsuccessful. */
51 samedir_template (char const *dstname
, char buf
[smallsize
])
53 ptrdiff_t dstdirlen
= last_component (dstname
) - dstname
;
54 size_t dsttmpsize
= dstdirlen
+ sizeof simple_pattern
;
56 if (dsttmpsize
<= smallsize
)
60 dsttmp
= malloc (dsttmpsize
);
64 strcpy (mempcpy (dsttmp
, dstname
, dstdirlen
), simple_pattern
);
69 /* Auxiliaries for force_linkat. */
80 try_link (char *dest
, void *arg
)
82 struct link_arg
*a
= arg
;
83 return linkat (a
->srcdir
, a
->srcname
, a
->dstdir
, dest
, a
->flags
);
86 /* Hard-link directory SRCDIR's file SRCNAME to directory DSTDIR's
87 file DSTNAME, using linkat-style FLAGS to control the linking.
88 If FORCE and DSTNAME already exists, replace it atomically.
89 If LINKAT_ERRNO is 0, the hard link is already done; if positive,
90 the hard link was tried and failed with errno == LINKAT_ERRNO. Return
91 -1 if successful and DSTNAME already existed,
92 0 if successful and DSTNAME did not already exist, and
93 a positive errno value on failure. */
95 force_linkat (int srcdir
, char const *srcname
,
96 int dstdir
, char const *dstname
, int flags
, bool force
,
100 linkat_errno
= (linkat (srcdir
, srcname
, dstdir
, dstname
, flags
) == 0
102 if (!force
|| linkat_errno
!= EEXIST
)
106 char *dsttmp
= samedir_template (dstname
, buf
);
109 struct link_arg arg
= { srcdir
, srcname
, dstdir
, flags
};
112 if (try_tempname_len (dsttmp
, 0, &arg
, try_link
, x_suffix_len
) != 0)
116 err
= renameat (dstdir
, dsttmp
, dstdir
, dstname
) == 0 ? -1 : errno
;
117 /* Unlink DSTTMP even if renameat succeeded, in case DSTTMP
118 and DSTNAME were already the same hard link and renameat
120 unlinkat (dstdir
, dsttmp
, 0);
129 /* Auxiliaries for force_symlinkat. */
138 try_symlink (char *dest
, void *arg
)
140 struct symlink_arg
*a
= arg
;
141 return symlinkat (a
->srcname
, a
->dstdir
, dest
);
144 /* Create a symlink containing SRCNAME in directory DSTDIR's file DSTNAME.
145 If FORCE and DSTNAME already exists, replace it atomically.
146 If SYMLINKAT_ERRNO is 0, the symlink is already done; if positive,
147 the symlink was tried and failed with errno == SYMLINKAT_ERRNO. Return
148 -1 if successful and DSTNAME already existed,
149 0 if successful and DSTNAME did not already exist, and
150 a positive errno value on failure. */
152 force_symlinkat (char const *srcname
, int dstdir
, char const *dstname
,
153 bool force
, int symlinkat_errno
)
155 if (symlinkat_errno
< 0)
156 symlinkat_errno
= symlinkat (srcname
, dstdir
, dstname
) == 0 ? 0 : errno
;
157 if (!force
|| symlinkat_errno
!= EEXIST
)
158 return symlinkat_errno
;
161 char *dsttmp
= samedir_template (dstname
, buf
);
164 struct symlink_arg arg
= { srcname
, dstdir
};
167 if (try_tempname_len (dsttmp
, 0, &arg
, try_symlink
, x_suffix_len
) != 0)
169 else if (renameat (dstdir
, dsttmp
, dstdir
, dstname
) != 0)
172 unlinkat (dstdir
, dsttmp
, 0);
176 /* Don't worry about renameat being a no-op, since DSTTMP is