Created
December 25, 2019 20:54
-
-
Save michalbednarski/bef82aec3519d9f3225b72b9764a78ed to your computer and use it in GitHub Desktop.
Reduced bug reproduction for https://github.com/termux/proot/issues/87 https://github.com/termux/proot/issues/84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <sys/wait.h> | |
#include <sys/stat.h> | |
#include <unistd.h> | |
#include <dirent.h> | |
#define NAME1 "testfile" | |
#define NAME2 "TESTFILE" | |
int main() { | |
struct stat statl = {}; | |
// Just setup, original file creation can happen in any process | |
int fd = openat(AT_FDCWD, NAME1, O_WRONLY|O_CREAT|O_EXCL, 0600); | |
if (fd < 0) { | |
perror("open 1"); | |
printf("Run this program in new directory"); | |
return 1; | |
} | |
close(fd); | |
#if 1 | |
// All of these trigger bug, proot uses lstat | |
//int status = stat(NAME2, &statl); | |
//int status = lstat(NAME2, &statl); | |
//int status = access(NAME2, F_OK); | |
int status = openat(AT_FDCWD, NAME2, O_RDONLY, 0); | |
if (status < 0) perror("lookup"); | |
#else | |
// This doesn't trigger bug | |
DIR *d = opendir("."); | |
struct dirent *de; | |
while((de = readdir(d))!=NULL) { | |
printf("- %s\n", de->d_name); | |
} | |
#endif | |
// Switch to another process | |
// (file creation must happen in different process, | |
// than one that performed initial lookup) | |
if (fork() > 0) { wait(NULL); exit(0); } | |
// Create file, this will fail on buggy device | |
fd = openat(AT_FDCWD, NAME2, O_WRONLY|O_CREAT, 0600); | |
if (fd < 0) { | |
perror("open 2"); | |
printf("Bug triggered\n"); | |
return 1; | |
} else { | |
printf("Bug didn't occur\n"); | |
return 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment