Linux-CIFS Archive mirror
 help / color / mirror / Atom feed
From: Henrique Carvalho <henrique.carvalho@suse.com>
To: linux-cifs@vger.kernel.org
Cc: sfrench@samba.org, linkinjeon@kernel.org, metze@samba.org,
	pc@manguebit.com, ronniesahlberg@gmail.com,
	sprasad@microsoft.com, tom@talpey.com, bharathsm@microsoft.com,
	ematsumiya@suse.de,
	Henrique Carvalho <henrique.carvalho@suse.com>
Subject: [PATCH v2 00/11] smb: implement SMB over QUIC
Date: Tue, 28 Apr 2026 12:55:38 -0300	[thread overview]
Message-ID: <20260428155542.226234-1-henrique.carvalho@suse.com> (raw)

Hi,

This series introduces SMB over QUIC for cifs.ko and ksmbd.ko.

I'm sending this early for review as this work was rebased on top of
metze's recent transport and smbdirect changes -- at least some of it,
as well as on top of lxin's QUIC branch, and depends on these branches
being merged upstream.

The branch for this series is available at:
https://gitlab.com/hacr/linux/-/tree/smb-quic-v1

Changes in v2: nothing, I just sent the patches in wrong order in v1.

Henrique Carvalho (11):
  smb: common: add smb_tls struct shared by client and server
  smb: client: refactor negotiate context assembly
  smb: client: prepare connect path for QUIC transport
  smb: client: add QUIC mount and transport setup
  smb: server: split interface management from TCP in preparation for
    QUIC
  smb: server: add shared transport helpers in preparation for QUIC
  smb: server: reuse common transport helpers in TCP transport
  smb: server: add QUIC transport support
  smb: server: refactor TCP transport definitions
  smb: server: track TCP and QUIC listener state independently
  docs: smb: document SMB3 over QUIC setup for cifs.ko and ksmbd.ko

 Documentation/filesystems/smb/index.rst |   1 +
 Documentation/filesystems/smb/ksmbd.rst |   2 +-
 Documentation/filesystems/smb/quic.rst  | 332 +++++++++++++++
 fs/smb/client/cifsglob.h                |  19 +-
 fs/smb/client/connect.c                 | 234 ++++++++++-
 fs/smb/client/fs_context.c              |  37 ++
 fs/smb/client/fs_context.h              |   4 +
 fs/smb/client/smb2pdu.c                 | 133 +++---
 fs/smb/client/transport.c               |  40 +-
 fs/smb/common/smbglob.h                 |  12 +
 fs/smb/server/Makefile                  |   3 +-
 fs/smb/server/connection.c              |  11 +-
 fs/smb/server/connection.h              |  10 +-
 fs/smb/server/interface.c               | 235 +++++++++++
 fs/smb/server/interface.h               |  36 ++
 fs/smb/server/mgmt/tree_connect.c       |   2 +-
 fs/smb/server/server.h                  |   1 +
 fs/smb/server/smb2pdu.c                 |   1 +
 fs/smb/server/transport.c               | 344 ++++++++++++++++
 fs/smb/server/transport.h               |  40 ++
 fs/smb/server/transport_ipc.c           |   3 +-
 fs/smb/server/transport_quic.c          | 327 +++++++++++++++
 fs/smb/server/transport_quic.h          |  20 +
 fs/smb/server/transport_tcp.c           | 526 ++----------------------
 fs/smb/server/transport_tcp.h           |  10 +-
 25 files changed, 1785 insertions(+), 598 deletions(-)
 create mode 100644 Documentation/filesystems/smb/quic.rst
 create mode 100644 fs/smb/server/interface.c
 create mode 100644 fs/smb/server/interface.h
 create mode 100644 fs/smb/server/transport.c
 create mode 100644 fs/smb/server/transport.h
 create mode 100644 fs/smb/server/transport_quic.c
 create mode 100644 fs/smb/server/transport_quic.h

-- 
2.53.0


             reply	other threads:[~2026-04-28 15:55 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-28 15:55 Henrique Carvalho [this message]
2026-04-28 15:55 ` [PATCH v2 01/11] smb: common: add smb_tls struct shared by client and server Henrique Carvalho
2026-04-28 15:55 ` [PATCH v2 02/11] smb: client: refactor negotiate context assembly Henrique Carvalho
2026-04-28 15:55 ` [PATCH v2 03/11] smb: client: prepare connect path for QUIC transport Henrique Carvalho
2026-04-28 15:55 ` [PATCH v2 04/11] smb: client: add QUIC mount and transport setup Henrique Carvalho

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260428155542.226234-1-henrique.carvalho@suse.com \
    --to=henrique.carvalho@suse.com \
    --cc=bharathsm@microsoft.com \
    --cc=ematsumiya@suse.de \
    --cc=linkinjeon@kernel.org \
    --cc=linux-cifs@vger.kernel.org \
    --cc=metze@samba.org \
    --cc=pc@manguebit.com \
    --cc=ronniesahlberg@gmail.com \
    --cc=sfrench@samba.org \
    --cc=sprasad@microsoft.com \
    --cc=tom@talpey.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).