summaryrefslogtreecommitdiff
path: root/src/unistd/renameat.c
blob: d0f31c21d09e562047f617fdf0339d75d993440d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "syscall.h"

int renameat(int oldfd, const char *old, int newfd, const char *new)
{
	char old_copy[PATH_MAX+1], new_copy[PATH_MAX+1];
	char *base;
	size_t old_size, new_size;
	struct stat statbuf;

	if ((old_size = strlen(old)) > PATH_MAX || \
	    (new_size = strlen(new)) > PATH_MAX) {
		errno = ENAMETOOLONG;
		return -1;
	}

	if (strlen(old) == 0 || strlen(new) == 0) {
		errno = ENOENT;
		return -1;
	}

	strcpy(old_copy, old);
	strcpy(new_copy, new);

	base = basename(old_copy);
	strncpy(old_copy, base, sizeof(old_copy));
	base = basename(new_copy);
	strncpy(new_copy, base, sizeof(new_copy));

	if (strcmp(old_copy, ".") == 0 || strcmp(old_copy, "..") == 0 ||
	    strcmp(new_copy, ".") == 0 || strcmp(new_copy, "..") == 0) {
		errno = EINVAL;
		return -1;
	}

	/* The Linux kernel will fail when attempting to rename a symlink of a
	   directory with a trailing slash.  We therefore have to handle this
	   case ourselves. */
	if (old[old_size - 1] == '/') {
		/* Calling stat(2) on a symlink to a dir with the trailing
		   slash causes stat(2) to return the actual directory instead
		   of the symlink itself. */
		strcpy(old_copy, old);
		old_copy[old_size - 1] = '\0';
		if (fstatat(oldfd, old_copy, &statbuf, AT_SYMLINK_NOFOLLOW) == -1) {
			return -1;
		}
		if (S_ISLNK(statbuf.st_mode)) {
			if (fstatat(oldfd, old, &statbuf, 0) == -1) {
				return -1;
			}
			if (S_ISDIR(statbuf.st_mode)) {
				old = old_copy;
			} else {
				/* may as well not waste the syscall */
				errno = ENOTDIR;
				return -1;
			}
		}
	}

	return syscall(SYS_renameat, oldfd, old, newfd, new);
}