public inbox for linux-cifs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/13] smb: improve search speed of SMB1 maperror
@ 2026-04-02 14:18 huiwen.he
  2026-04-02 14:18 ` [PATCH v3 01/13] smb/client: annotate nterr.h with DOS error codes huiwen.he
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: huiwen.he @ 2026-04-02 14:18 UTC (permalink / raw)
  To: smfrench, linkinjeon, dhowells, chenxiaosong, chenxiaosong,
	tangyouling
  Cc: linux-cifs, Huiwen He

From: Huiwen He <hehuiwen@kylinos.cn>

v2->v3:
  - All test cases passed for v3, please see ChenXiaoSong's blog: https://chenxiaosong.com/en/smb1maperror-test.html
  - Patch #01: Correct the SMB1 mapping  NT_STATUS_OBJECT_NAME_INVALID 
  - Patch #02 #10: gen_smb1_mapping: Enhance regex robustness to cover mixed-case prefixes (e.g., ErrNotALink), and match exact filenames to prevent mapping outputs to incorrect files.
  - Patch #06: Add `__init` to `DEFINE_CHECK_SORT_FUNC`
  - Patch #07: Use `KUNIT_ASSERT_NOT_NULL`
  - Add patch #08: Move ERRnetlogonNotStarted to DOS error class

v2: https://lore.kernel.org/linux-cifs/20260401072912.355072-1-huiwen.he@linux.dev/

When searching for the last element, the comparison counts are shown in the table below:

+--------------------+--------+--------+
|                    |Before  |After   |
|                    |Patchset|Patchset|
+--------------------+--------+--------+
| ntstatus_to_dos_map|   533  |    9   |
+--------------------+--------+--------+
|mapping_table_ERRDOS|    34  |    5   |
+--------------------+--------+--------+
|mapping_table_ERRSRV|    37  |    5   |
+--------------------+--------+--------+

The following patches from v1 have already been merged into the mainline:
  - a71a4aab4834 smb/client: add parentheses to NT error code definitions containing bitwise OR operator
  - a9adafd40165 smb/client: add 4 NT error code definitions
  - 98def4eb0244 smb/server: remove unused nterr.h
  - 9f99caa8950a smb/client: fix NT_STATUS_UNABLE_TO_FREE_VM value
  - b2b50fca34da smb/client: fix NT_STATUS_DEVICE_DOOR_OPEN value
  - a1237c203f17 smb/client: fix NT_STATUS_NO_DATA_DETECTED value

Huiwen He (9):
  smb/client: annotate nterr.h with DOS error codes
  smb/client: autogenerate SMB1 NT status to DOS error mapping
  smb/client: replace nt_errs with ntstatus_to_dos_map
  smb/client: refactor ntstatus_to_dos() to return mapping entry
  smb/client: use binary search for NT status to DOS mapping
  smb/client: move ERRnetlogonNotStarted to DOS error class
  smb/client: annotate smberr.h with POSIX error codes
  smb/client: autogenerate SMB1 DOS/SRV to POSIX error mapping
  smb/client: use binary search for SMB1 DOS/SRV error mapping

Youling Tang (4):
  smb/client: check if ntstatus_to_dos_map is sorted
  smb/client: introduce KUnit test to check ntstatus_to_dos_map search
  smb/client: check if SMB1 DOS/SRV error mapping arrays are sorted
  smb/client: introduce KUnit tests to check DOS/SRV err mapping search

 fs/smb/client/.gitignore          |    3 +
 fs/smb/client/Kconfig             |   11 +
 fs/smb/client/Makefile            |   25 +-
 fs/smb/client/cifsfs.c            |    6 +
 fs/smb/client/gen_smb1_mapping    |  112 +++
 fs/smb/client/nterr.c             |  704 -------------------
 fs/smb/client/nterr.h             | 1082 +++++++++++++++--------------
 fs/smb/client/smb1maperror.c      |  873 +++++------------------
 fs/smb/client/smb1maperror_test.c |   83 +++
 fs/smb/client/smb1proto.h         |    9 +
 fs/smb/client/smberr.h            |  415 +++++++----
 11 files changed, 1235 insertions(+), 2088 deletions(-)
 create mode 100644 fs/smb/client/gen_smb1_mapping
 delete mode 100644 fs/smb/client/nterr.c
 create mode 100644 fs/smb/client/smb1maperror_test.c

-- 
2.53.0


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2026-04-02 22:36 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-02 14:18 [PATCH v3 00/13] smb: improve search speed of SMB1 maperror huiwen.he
2026-04-02 14:18 ` [PATCH v3 01/13] smb/client: annotate nterr.h with DOS error codes huiwen.he
2026-04-02 22:35   ` Steve French
2026-04-02 14:18 ` [PATCH v3 02/13] smb/client: autogenerate SMB1 NT status to DOS error mapping huiwen.he
2026-04-02 14:18 ` [PATCH v3 03/13] smb/client: replace nt_errs with ntstatus_to_dos_map huiwen.he
2026-04-02 14:18 ` [PATCH v3 04/13] smb/client: refactor ntstatus_to_dos() to return mapping entry huiwen.he
2026-04-02 14:18 ` [PATCH v3 05/13] smb/client: use binary search for NT status to DOS mapping huiwen.he
2026-04-02 14:18 ` [PATCH v3 06/13] smb/client: check if ntstatus_to_dos_map is sorted huiwen.he
2026-04-02 14:18 ` [PATCH v3 07/13] smb/client: introduce KUnit test to check ntstatus_to_dos_map search huiwen.he
2026-04-02 14:18 ` [PATCH v3 08/13] smb/client: move ERRnetlogonNotStarted to DOS error class huiwen.he
2026-04-02 14:18 ` [PATCH v3 09/13] smb/client: annotate smberr.h with POSIX error codes huiwen.he
2026-04-02 14:18 ` [PATCH v3 10/13] smb/client: autogenerate SMB1 DOS/SRV to POSIX error mapping huiwen.he
2026-04-02 14:18 ` [PATCH v3 11/13] smb/client: use binary search for SMB1 DOS/SRV " huiwen.he
2026-04-02 14:18 ` [PATCH v3 12/13] smb/client: check if SMB1 DOS/SRV error mapping arrays are sorted huiwen.he
2026-04-02 14:18 ` [PATCH v3 13/13] smb/client: introduce KUnit tests to check DOS/SRV err mapping search huiwen.he

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox