HDFS-7047. Expose FileStatus#isEncrypted in libhdfs (cmccabe)
This commit is contained in:
parent
485c96e3cb
commit
570b8b468e
|
@ -475,6 +475,8 @@ Release 2.6.0 - UNRELEASED
|
||||||
|
|
||||||
HDFS-7004. Update KeyProvider instantiation to create by URI. (wang)
|
HDFS-7004. Update KeyProvider instantiation to create by URI. (wang)
|
||||||
|
|
||||||
|
HDFS-7047. Expose FileStatus#isEncrypted in libhdfs (cmccabe)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-6690. Deduplicate xattr names in memory. (wang)
|
HDFS-6690. Deduplicate xattr names in memory. (wang)
|
||||||
|
|
|
@ -79,6 +79,15 @@ struct hdfsFile_internal {
|
||||||
int flags;
|
int flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define HDFS_EXTENDED_FILE_INFO_ENCRYPTED 0x1
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extended file information.
|
||||||
|
*/
|
||||||
|
struct hdfsExtendedFileInfo {
|
||||||
|
int flags;
|
||||||
|
};
|
||||||
|
|
||||||
int hdfsFileIsOpenForRead(hdfsFile file)
|
int hdfsFileIsOpenForRead(hdfsFile file)
|
||||||
{
|
{
|
||||||
return (file->type == HDFS_STREAM_INPUT);
|
return (file->type == HDFS_STREAM_INPUT);
|
||||||
|
@ -2837,7 +2846,37 @@ tOffset hdfsGetUsed(hdfsFS fs)
|
||||||
return jVal.j;
|
return jVal.j;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We cannot add new fields to the hdfsFileInfo structure because it would break
|
||||||
|
* binary compatibility. The reason is because we return an array
|
||||||
|
* of hdfsFileInfo structures from hdfsListDirectory. So changing the size of
|
||||||
|
* those structures would break all programs that relied on finding the second
|
||||||
|
* element in the array at <base_offset> + sizeof(struct hdfsFileInfo).
|
||||||
|
*
|
||||||
|
* So instead, we add the new fields to the hdfsExtendedFileInfo structure.
|
||||||
|
* This structure is contained in the mOwner string found inside the
|
||||||
|
* hdfsFileInfo. Specifically, the format of mOwner is:
|
||||||
|
*
|
||||||
|
* [owner-string] [null byte] [padding] [hdfsExtendedFileInfo structure]
|
||||||
|
*
|
||||||
|
* The padding is added so that the hdfsExtendedFileInfo structure starts on an
|
||||||
|
* 8-byte boundary.
|
||||||
|
*
|
||||||
|
* @param str The string to locate the extended info in.
|
||||||
|
* @return The offset of the hdfsExtendedFileInfo structure.
|
||||||
|
*/
|
||||||
|
static size_t getExtendedFileInfoOffset(const char *str)
|
||||||
|
{
|
||||||
|
int num_64_bit_words = ((strlen(str) + 1) + 7) / 8;
|
||||||
|
return num_64_bit_words * 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct hdfsExtendedFileInfo *getExtendedFileInfo(hdfsFileInfo *fileInfo)
|
||||||
|
{
|
||||||
|
char *owner = fileInfo->mOwner;
|
||||||
|
return (struct hdfsExtendedFileInfo *)(owner +
|
||||||
|
getExtendedFileInfoOffset(owner));
|
||||||
|
}
|
||||||
|
|
||||||
static jthrowable
|
static jthrowable
|
||||||
getFileInfoFromStat(JNIEnv *env, jobject jStat, hdfsFileInfo *fileInfo)
|
getFileInfoFromStat(JNIEnv *env, jobject jStat, hdfsFileInfo *fileInfo)
|
||||||
|
@ -2852,6 +2891,8 @@ getFileInfoFromStat(JNIEnv *env, jobject jStat, hdfsFileInfo *fileInfo)
|
||||||
const char *cPathName;
|
const char *cPathName;
|
||||||
const char *cUserName;
|
const char *cUserName;
|
||||||
const char *cGroupName;
|
const char *cGroupName;
|
||||||
|
struct hdfsExtendedFileInfo *extInfo;
|
||||||
|
size_t extOffset;
|
||||||
|
|
||||||
jthr = invokeMethod(env, &jVal, INSTANCE, jStat,
|
jthr = invokeMethod(env, &jVal, INSTANCE, jStat,
|
||||||
HADOOP_STAT, "isDir", "()Z");
|
HADOOP_STAT, "isDir", "()Z");
|
||||||
|
@ -2926,9 +2967,24 @@ getFileInfoFromStat(JNIEnv *env, jobject jStat, hdfsFileInfo *fileInfo)
|
||||||
jthr = getPendingExceptionAndClear(env);
|
jthr = getPendingExceptionAndClear(env);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
fileInfo->mOwner = strdup(cUserName);
|
extOffset = getExtendedFileInfoOffset(cUserName);
|
||||||
|
fileInfo->mOwner = malloc(extOffset + sizeof(struct hdfsExtendedFileInfo));
|
||||||
|
if (!fileInfo->mOwner) {
|
||||||
|
jthr = newRuntimeError(env, "getFileInfo: OOM allocating mOwner");
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
strcpy(fileInfo->mOwner, cUserName);
|
||||||
(*env)->ReleaseStringUTFChars(env, jUserName, cUserName);
|
(*env)->ReleaseStringUTFChars(env, jUserName, cUserName);
|
||||||
|
extInfo = getExtendedFileInfo(fileInfo);
|
||||||
|
memset(extInfo, 0, sizeof(*extInfo));
|
||||||
|
jthr = invokeMethod(env, &jVal, INSTANCE, jStat,
|
||||||
|
HADOOP_STAT, "isEncrypted", "()Z");
|
||||||
|
if (jthr) {
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
if (jVal.z == JNI_TRUE) {
|
||||||
|
extInfo->flags |= HDFS_EXTENDED_FILE_INFO_ENCRYPTED;
|
||||||
|
}
|
||||||
jthr = invokeMethod(env, &jVal, INSTANCE, jStat, HADOOP_STAT,
|
jthr = invokeMethod(env, &jVal, INSTANCE, jStat, HADOOP_STAT,
|
||||||
"getGroup", "()Ljava/lang/String;");
|
"getGroup", "()Ljava/lang/String;");
|
||||||
if (jthr)
|
if (jthr)
|
||||||
|
@ -3174,6 +3230,13 @@ void hdfsFreeFileInfo(hdfsFileInfo *hdfsFileInfo, int numEntries)
|
||||||
free(hdfsFileInfo);
|
free(hdfsFileInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int hdfsFileIsEncrypted(hdfsFileInfo *fileInfo)
|
||||||
|
{
|
||||||
|
struct hdfsExtendedFileInfo *extInfo;
|
||||||
|
|
||||||
|
extInfo = getExtendedFileInfo(fileInfo);
|
||||||
|
return !!(extInfo->flags & HDFS_EXTENDED_FILE_INFO_ENCRYPTED);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -592,6 +592,14 @@ extern "C" {
|
||||||
*/
|
*/
|
||||||
void hdfsFreeFileInfo(hdfsFileInfo *hdfsFileInfo, int numEntries);
|
void hdfsFreeFileInfo(hdfsFileInfo *hdfsFileInfo, int numEntries);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hdfsFileIsEncrypted: determine if a file is encrypted based on its
|
||||||
|
* hdfsFileInfo.
|
||||||
|
* @return -1 if there was an error (errno will be set), 0 if the file is
|
||||||
|
* not encrypted, 1 if the file is encrypted.
|
||||||
|
*/
|
||||||
|
int hdfsFileIsEncrypted(hdfsFileInfo *hdfsFileInfo);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hdfsGetHosts - Get hostnames where a particular block (determined by
|
* hdfsGetHosts - Get hostnames where a particular block (determined by
|
||||||
|
|
|
@ -217,6 +217,7 @@ static int doTestHdfsOperations(struct tlhThreadInfo *ti, hdfsFS fs,
|
||||||
fileInfo = hdfsGetPathInfo(fs, paths->file2);
|
fileInfo = hdfsGetPathInfo(fs, paths->file2);
|
||||||
EXPECT_NONNULL(fileInfo);
|
EXPECT_NONNULL(fileInfo);
|
||||||
EXPECT_ZERO(strcmp("doop", fileInfo->mGroup));
|
EXPECT_ZERO(strcmp("doop", fileInfo->mGroup));
|
||||||
|
EXPECT_ZERO(hdfsFileIsEncrypted(fileInfo));
|
||||||
hdfsFreeFileInfo(fileInfo, 1);
|
hdfsFreeFileInfo(fileInfo, 1);
|
||||||
|
|
||||||
EXPECT_ZERO(hdfsChown(fs, paths->file2, "ha", "doop2"));
|
EXPECT_ZERO(hdfsChown(fs, paths->file2, "ha", "doop2"));
|
||||||
|
|
Loading…
Reference in New Issue