2017-08-10 15:22:42 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
#include "bb_archive.h"
|
|
|
|
|
2018-02-20 20:27:45 +05:30
|
|
|
void FAST_FUNC create_or_remember_symlink(llist_t **symlink_placeholders,
|
|
|
|
const char *target,
|
|
|
|
const char *linkname)
|
2017-08-10 15:22:42 +05:30
|
|
|
{
|
2018-02-20 20:27:45 +05:30
|
|
|
if (target[0] == '/' || strstr(target, "..")) {
|
|
|
|
llist_add_to(symlink_placeholders,
|
|
|
|
xasprintf("%s%c%s", linkname, '\0', target)
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (symlink(target, linkname) != 0) {
|
|
|
|
/* shared message */
|
|
|
|
bb_perror_msg_and_die("can't create %slink '%s' to '%s'",
|
|
|
|
"sym", linkname, target
|
2017-08-10 15:22:42 +05:30
|
|
|
);
|
|
|
|
}
|
2018-02-20 20:27:45 +05:30
|
|
|
}
|
2017-08-10 15:22:42 +05:30
|
|
|
|
2018-02-20 20:27:45 +05:30
|
|
|
void FAST_FUNC create_symlinks_from_list(llist_t *list)
|
|
|
|
{
|
|
|
|
while (list) {
|
|
|
|
char *target;
|
2017-08-10 15:22:42 +05:30
|
|
|
|
2018-02-20 20:27:45 +05:30
|
|
|
target = list->data + strlen(list->data) + 1;
|
|
|
|
if (symlink(target, list->data)) {
|
|
|
|
/* shared message */
|
|
|
|
bb_error_msg_and_die("can't create %slink '%s' to '%s'",
|
|
|
|
"sym",
|
|
|
|
list->data, target
|
|
|
|
);
|
2017-08-10 15:22:42 +05:30
|
|
|
}
|
2018-02-20 20:27:45 +05:30
|
|
|
list = list->link;
|
2017-08-10 15:22:42 +05:30
|
|
|
}
|
|
|
|
}
|