#include #include #include #include #include #include #include "hooklib/path.h" #include "hooklib/reg.h" #include "platform/vfs.h" #include "util/dprintf.h" static void vfs_fixup_path(wchar_t *path, size_t max_count); static HRESULT vfs_mkdir_rec(const wchar_t *path); static HRESULT vfs_path_hook(const wchar_t *src, wchar_t *dest, size_t *count); static HRESULT vfs_reg_read_amfs(void *bytes, uint32_t *nbytes); static HRESULT vfs_reg_read_appdata(void *bytes, uint32_t *nbytes); static struct vfs_config vfs_config; HRESULT vfs_hook_init(const struct vfs_config *config) { size_t nthome_len; DWORD home_ok; HRESULT hr; assert(config != NULL); if (!config->enable) { return S_FALSE; } if (config->d_drive[0] == L'\0') { dprintf("Vfs: FATAL: AMFS path not specified in INI file\n"); return E_FAIL; } memcpy(&vfs_config, config, sizeof(*config)); vfs_fixup_path(vfs_config.d_drive, _countof(vfs_config.d_drive)); hr = vfs_mkdir_rec(vfs_config.d_drive); if (FAILED(hr)) { dprintf("Vfs: Failed to create D Drive dir %S: %x\n", config->d_drive, (int) hr); } /* Not auto-creating option directory as it is normally a read-only mount */ hr = path_hook_push(vfs_path_hook); if (FAILED(hr)) { return hr; } return S_OK; } static void vfs_fixup_path(wchar_t *path, size_t max_count) { size_t count; wchar_t abspath[MAX_PATH]; assert(path != NULL); /* Requirement for PathIsRelativeW */ assert(max_count <= MAX_PATH); if (PathIsRelativeW(path)) { count = GetFullPathNameW(path, _countof(abspath), abspath, NULL); /* GetFullPathName's length return value is tricky, because it includes the NUL terminator on failure, but doesn't on success. Check if it fits the temp buf (else it's a failure and includes NUL anyway), then if it fits the target buf, NUL included. */ if (count == 0 || count > _countof(abspath) || count >= max_count) { goto fail; } wcscpy_s(path, max_count, abspath); } else { count = wcslen(path); } if (path_is_separator_w(path[count - 1])) { return; } if (count + 2 > max_count) { goto fail; } path[count + 0] = L'\\'; path[count + 1] = L'\0'; return; fail: dprintf("Vfs: FATAL: Path too long: %S\n", path); abort(); } static HRESULT vfs_mkdir_rec(const wchar_t *path) { wchar_t *copy; wchar_t *pos; wchar_t wc; HRESULT hr; DWORD attr; BOOL ok; assert(path != NULL); copy = _wcsdup(path); if (copy == NULL) { hr = HRESULT_FROM_WIN32(ERROR_OUTOFMEMORY); goto end; } pos = copy; do { wc = *pos; if (wc == L'\0' || wc == L'/' || wc == L'\\') { *pos = L'\0'; attr = GetFileAttributesW(copy); if (attr == INVALID_FILE_ATTRIBUTES) { ok = CreateDirectoryW(copy, NULL); if (!ok) { hr = HRESULT_FROM_WIN32(GetLastError()); goto end; } } *pos = wc; } pos++; } while (wc != L'\0'); hr = S_OK; end: free(copy); return hr; } static HRESULT vfs_path_hook(const wchar_t *src, wchar_t *dest, size_t *count) { const wchar_t *redir; size_t required; size_t redir_len; assert(src != NULL); assert(count != NULL); if (src[0] == L'\0' || src[1] != L':' || !path_is_separator_w(src[2])) { return S_FALSE; } switch (src[0]) { case L'D': case L'd': redir = vfs_config.d_drive; break; default: return S_FALSE; } /* Cut off \, replace with redir path, count NUL terminator */ redir_len = wcslen(redir); required = wcslen(src) - 3 + redir_len + 1; if (dest != NULL) { if (required > *count) { return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER); } wcscpy_s(dest, *count, redir); wcscpy_s(dest + redir_len, *count - redir_len, src + 3); } *count = required; return S_OK; }