2022-03-20 15:01:14 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/intrin/describeflags.h"
|
|
|
|
#include "libc/macros.h"
|
|
|
|
#include "libc/nt/enum/accessmask.h"
|
|
|
|
#include "libc/nt/enum/filesharemode.h"
|
2023-08-21 09:28:24 +00:00
|
|
|
// clang-format off
|
2022-03-20 15:01:14 +00:00
|
|
|
|
|
|
|
static const struct DescribeFlags kFileAccessflags[] = {
|
2023-08-21 09:28:24 +00:00
|
|
|
{kNtFileAllAccess, "kNtFileAllAccess"},
|
|
|
|
{kNtFileGenericRead|kNtFileGenericWrite|kNtFileGenericExecute,
|
|
|
|
"kNtFileGenericRead|kNtFileGenericWrite|kNtFileGenericExecute"},
|
|
|
|
{kNtFileGenericRead|kNtFileGenericWrite,
|
|
|
|
"kNtFileGenericRead|kNtFileGenericWrite"},
|
|
|
|
{kNtFileGenericRead|kNtFileGenericExecute,
|
|
|
|
"kNtFileGenericRead|kNtFileGenericExecute"},
|
|
|
|
{kNtFileGenericWrite|kNtFileGenericExecute,
|
|
|
|
"kNtFileGenericWrite|kNtFileGenericExecute"},
|
|
|
|
{kNtFileGenericRead, "kNtFileGenericRead"},
|
|
|
|
{kNtFileGenericWrite, "kNtFileGenericWrite"},
|
|
|
|
{kNtFileGenericExecute, "kNtFileGenericExecute"},
|
|
|
|
{kNtGenericRead, "kNtGenericRead"},
|
|
|
|
{kNtGenericWrite, "kNtGenericWrite"},
|
|
|
|
{kNtGenericExecute, "kNtGenericExecute"},
|
|
|
|
{kNtGenericAll, "kNtGenericAll"},
|
|
|
|
{kNtDelete, "kNtDelete"},
|
|
|
|
{kNtReadControl, "kNtReadControl"},
|
|
|
|
{kNtWriteDac, "kNtWriteDac"},
|
|
|
|
{kNtWriteOwner, "kNtWriteOwner"},
|
|
|
|
{kNtSynchronize, "kNtSynchronize"},
|
|
|
|
{kNtStandardRightsRequired, "kNtStandardRightsRequired"},
|
|
|
|
{kNtAccessSystemSecurity, "kNtAccessSystemSecurity"},
|
|
|
|
{kNtMaximumAllowed, "kNtMaximumAllowed"},
|
|
|
|
{kNtFileReadData, "kNtFileReadData"},
|
|
|
|
{kNtFileListDirectory, "kNtFileListDirectory"},
|
|
|
|
{kNtFileWriteData, "kNtFileWriteData"},
|
|
|
|
{kNtFileAddFile, "kNtFileAddFile"},
|
|
|
|
{kNtFileAppendData, "kNtFileAppendData"},
|
|
|
|
{kNtFileAddSubdirectory, "kNtFileAddSubdirectory"},
|
|
|
|
{kNtFileCreatePipeInstance, "kNtFileCreatePipeInstance"},
|
|
|
|
{kNtFileReadEa, "kNtFileReadEa"},
|
|
|
|
{kNtFileWriteEa, "kNtFileWriteEa"},
|
|
|
|
{kNtFileExecute, "kNtFileExecute"},
|
|
|
|
{kNtFileTraverse, "kNtFileTraverse"},
|
|
|
|
{kNtFileDeleteChild, "kNtFileDeleteChild"},
|
|
|
|
{kNtFileReadAttributes, "kNtFileReadAttributes"},
|
|
|
|
{kNtFileWriteAttributes, "kNtFileWriteAttributes"},
|
|
|
|
{kNtTokenAssignPrimary, "kNtTokenAssignPrimary"},
|
|
|
|
{kNtTokenDuplicate, "kNtTokenDuplicate"},
|
|
|
|
{kNtTokenImpersonate, "kNtTokenImpersonate"},
|
|
|
|
{kNtTokenQuery, "kNtTokenQuery"},
|
|
|
|
{kNtTokenQuerySource, "kNtTokenQuerySource"},
|
|
|
|
{kNtTokenAdjustPrivileges, "kNtTokenAdjustPrivileges"},
|
|
|
|
{kNtTokenAdjustGroups, "kNtTokenAdjustGroups"},
|
|
|
|
{kNtTokenAdjustDefault, "kNtTokenAdjustDefault"},
|
|
|
|
{kNtTokenAdjustSessionid, "kNtTokenAdjustSessionid"},
|
2022-03-20 15:01:14 +00:00
|
|
|
};
|
|
|
|
|
2024-08-25 01:10:22 +00:00
|
|
|
const char *_DescribeNtFileAccessFlags(char buf[512], uint32_t x) {
|
|
|
|
return _DescribeFlags(buf, 512, kFileAccessflags, ARRAYLEN(kFileAccessflags),
|
2023-08-21 09:28:24 +00:00
|
|
|
"", x);
|
2022-03-20 15:01:14 +00:00
|
|
|
}
|