Blob Blame History Raw
/********************************************************/
/*  ntapi: Native API core library                      */
/*  Copyright (C) 2013--2016  Z. Gilboa                 */
/*  Released under GPLv2 and GPLv3; see COPYING.NTAPI.  */
/********************************************************/

#include <ntapi/ntapi.h>
#include <ntapi/nt_file.h>
#include <ntapi/nt_fsctl.h>
#include <ntapi/nt_mount.h>
#include <ntapi/nt_stat.h>
#include "ntapi_impl.h"

int32_t __stdcall __ntapi_tt_stat(
	__in	void *			hfile,
	__in	void *			hroot	__optional,
	__in	nt_unicode_string *	path,
	__out	nt_stat *		stat,
	__out	uintptr_t *		buffer,
	__in	uint32_t		buffer_size,
	__in	uint32_t		open_options,
	__in	uint32_t		flags)
{
	int32_t			status;
	nt_oa			oa;
	nt_iosb			iosb;
	nt_unicode_string *	sdev;
	nt_fai *		fai;
	wchar16_t *		wch;
	wchar16_t *		wch_mark;
	uint32_t		hash;

	/* validation */
	if (!hfile && !path)
		return NT_STATUS_INVALID_PARAMETER;

	/* hfile */
	if (hfile) {
		stat->flags = 0;
	} else {
		/* oa */
		oa.len = sizeof(nt_oa);
		oa.root_dir = hroot;
		oa.obj_name = path;
		oa.obj_attr = 0;
		oa.sec_desc = 0;
		oa.sec_qos = 0;

		/* open file/folder */
		if ((status = __ntapi->zw_open_file(
				&hfile,
				NT_SEC_SYNCHRONIZE
					| NT_FILE_READ_ATTRIBUTES
					| NT_FILE_READ_ACCESS,
				&oa,
				&iosb,
				NT_FILE_SHARE_READ | NT_FILE_SHARE_WRITE,
				open_options | NT_FILE_SYNCHRONOUS_IO_ALERT)))
			return status;

		stat->flags = NT_STAT_NEW_HANDLE;
	}

	stat->hfile = hfile;

	/* system-unique device name */
	if ((status = __ntapi->zw_query_information_file(
			hfile,
			&iosb,
			buffer,
			buffer_size,
			NT_FILE_ALL_INFORMATION)))
		return status;

	/* copy file info minus name */
	__ntapi->tt_aligned_block_memcpy(
		(uintptr_t *)stat,
		(uintptr_t *)buffer,
		((size_t)(&((nt_fai *)0)->name_info)));

	/* record the file name length, but do not hash */
	fai = (nt_fai *)buffer;
	stat->file_name_length = fai->name_info.file_name_length;
	stat->file_name_hash   = 0;


	/* file system size information */
	if ((status = __ntapi->zw_query_volume_information_file(
			hfile,
			&iosb,
			&(stat->fssi),
			sizeof(stat->fssi),
			NT_FILE_FS_SIZE_INFORMATION)))
		return status;

	/* system-unique device name */
	if ((status = __ntapi->zw_query_object(
			hfile,
			NT_OBJECT_NAME_INFORMATION,
			buffer,
			buffer_size,
			(uint32_t *)&iosb.info)))
		return status;

	sdev = (nt_unicode_string *)buffer;
	wch  = sdev->buffer;

	if (sdev->strlen < __DEVICE_PATH_PREFIX_LEN)
		return NT_STATUS_INVALID_HANDLE;

	if ((wch[0] != '\\')
			|| (wch[1] != 'D')
			|| (wch[2] != 'e')
			|| (wch[3] != 'v')
			|| (wch[4] != 'i')
			|| (wch[5] != 'c')
			|| (wch[6] != 'e')
			|| (wch[7] != '\\'))
		return NT_STATUS_INVALID_HANDLE;

	if ((sdev->strlen >= __DEVICE_MUP_PREFIX_LEN)
			&& (wch[8]=='M')
			&& (wch[9]=='u')
			&& (wch[10]=='p')
			&& (wch[11]=='\\')) {
		wch_mark = &wch[12];
		hash     = __DEVICE_MUP_PREFIX_HASH;
		stat->flags |= NT_STAT_MUP_DEVICE;

		for (wch=wch_mark; *wch!='\\'; wch++)
			(void)0;
		wch++;
	} else {
		wch_mark = &wch[8];
		wch      = wch_mark;
		hash     = __DEVICE_PATH_PREFIX_HASH;
	}

	for (; *wch!='\\'; )
		wch++;

	stat->dev_name_strlen = (uint16_t)((wch - sdev->buffer) * sizeof(uint16_t));
	stat->dev_name_hash   = __ntapi->tt_buffer_crc32(
					hash,wch_mark,
					sizeof(wchar16_t)*(wch-wch_mark));

	if (!(flags & NT_STAT_DEV_NAME_COPY)) {
		*stat->dev_name = 0;
		return NT_STATUS_SUCCESS;
	} else if (stat->dev_name_maxlen < sdev->strlen) {
		*stat->dev_name = 0;
		return NT_STATUS_BUFFER_TOO_SMALL;
	}

	__ntapi->tt_memcpy_utf16(
		(wchar16_t *)stat->dev_name,
		(wchar16_t *)sdev->buffer,
		stat->dev_name_strlen);

	return NT_STATUS_SUCCESS;
}