Lines Matching +full:ipc +full:-

1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * linux-ksmbd-[email protected]
14 * This is a userspace ABI to communicate data between ksmbd and user IPC
18 * - KSMBD_EVENT_HEARTBEAT_REQUEST(ksmbd_heartbeat)
19 * This event is to check whether user IPC daemon is alive. If user IPC
23 * - KSMBD_EVENT_STARTING_UP(ksmbd_startup_request)
25 * server from the user IPC daemon and to start the server. The global
29 * - KSMBD_EVENT_SHUTTING_DOWN(ksmbd_shutdown_request)
32 * - KSMBD_EVENT_LOGIN_REQUEST/RESPONSE(ksmbd_login_request/response)
33 * This event is to get user account info to user IPC daemon.
35 * - KSMBD_EVENT_SHARE_CONFIG_REQUEST/RESPONSE(ksmbd_share_config_request/response)
38 * - KSMBD_EVENT_TREE_CONNECT_REQUEST/RESPONSE(ksmbd_tree_connect_request/response)
41 * - KSMBD_EVENT_TREE_DISCONNECT_REQUEST(ksmbd_tree_disconnect_request)
42 * This event is to send tree disconnect info to user IPC daemon.
44 * - KSMBD_EVENT_LOGOUT_REQUEST(ksmbd_logout_request)
45 * This event is to send logout request to user IPC daemon.
47 * - KSMBD_EVENT_RPC_REQUEST/RESPONSE(ksmbd_rpc_command)
51 * - KSMBD_EVENT_SPNEGO_AUTHEN_REQUEST/RESPONSE(ksmbd_spnego_authen_request/response)
55 * - KSMBD_EVENT_LOGIN_REQUEST_EXT/RESPONSE_EXT(ksmbd_login_request_ext/response_ext)
56 * This event is to get user account extension info to user IPC daemon.
67 * IPC heartbeat frame to check whether user IPC daemon is alive.
84 * IPC request for ksmbd server startup
120 #define KSMBD_STARTUP_CONFIG_INTERFACES(s) ((s)->____payload)
123 * IPC request to shutdown ksmbd server.
130 * IPC user login request.
139 * IPC user login response.
153 * IPC user login response extension.
163 * IPC request to fetch net share config.
172 * IPC response to the net share config request.
190 #define KSMBD_SHARE_CONFIG_VETO_LIST(s) ((s)->____payload)
195 char *p = sc->____payload; in ksmbd_share_config_path()
197 if (sc->veto_list_sz) in ksmbd_share_config_path()
198 p += sc->veto_list_sz + 1; in ksmbd_share_config_path()
204 * IPC request for tree connection. This request include session and tree
220 * IPC Response structure for tree connection.
230 * IPC Request structure to disconnect tree connection.
239 * IPC Response structure to logout user account.
249 * IPC user daemon.
259 * IPC Request Kerberos authentication
327 KSMBD_EVENT_MAX = __KSMBD_EVENT_MAX - 1
331 * Enumeration for IPC tree connect status.
397 * RPC over IPC.