mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
31 lines
652 B
C++
31 lines
652 B
C++
|
#include "org_thoughtcrime_securesms_util_FileUtils.h"
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
jint JNICALL Java_org_thoughtcrime_securesms_util_FileUtils_getFileDescriptorOwner
|
||
|
(JNIEnv *env, jclass clazz, jobject fileDescriptor)
|
||
|
{
|
||
|
jclass fdClass = env->GetObjectClass(fileDescriptor);
|
||
|
|
||
|
if (fdClass == NULL) {
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
jfieldID fdFieldId = env->GetFieldID(fdClass, "descriptor", "I");
|
||
|
|
||
|
if (fdFieldId == NULL) {
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int fd = env->GetIntField(fileDescriptor, fdFieldId);
|
||
|
|
||
|
struct stat stat_struct;
|
||
|
|
||
|
if (fstat(fd, &stat_struct) != 0) {
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
return stat_struct.st_uid;
|
||
|
}
|