1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2016 Namjae Jeon <linkinjeon@kernel.org>
4 * Copyright (C) 2018 Samsung Electronics Co., Ltd.
7 #ifndef __KSMBD_OPLOCK_H
8 #define __KSMBD_OPLOCK_H
10 #include "smb_common.h"
12 #define OPLOCK_WAIT_TIME (35 * HZ)
15 #define OPLOCK_STATE_NONE 0x00
16 #define OPLOCK_ACK_WAIT 0x01
17 #define OPLOCK_CLOSING 0x02
19 #define OPLOCK_WRITE_TO_READ 0x01
20 #define OPLOCK_READ_HANDLE_TO_READ 0x02
21 #define OPLOCK_WRITE_TO_NONE 0x04
22 #define OPLOCK_READ_TO_NONE 0x08
24 struct lease_ctx_info {
25 __u8 lease_key[SMB2_LEASE_KEY_SIZE];
29 __u8 parent_lease_key[SMB2_LEASE_KEY_SIZE];
36 char client_guid[SMB2_CLIENT_GUID_SIZE];
37 struct list_head lease_list;
38 struct list_head l_entry;
43 __u8 lease_key[SMB2_LEASE_KEY_SIZE];
48 __u8 parent_lease_key[SMB2_LEASE_KEY_SIZE];
52 struct lease_table *l_lb;
56 struct ksmbd_conn *conn;
57 struct ksmbd_session *sess;
58 struct ksmbd_work *work;
59 struct ksmbd_file *o_fp;
62 unsigned long pending_break;
64 atomic_t breaking_cnt;
68 bool open_trunc; /* truncate on open */
69 struct lease *o_lease;
70 struct list_head interim_list;
71 struct list_head op_entry;
72 struct list_head lease_entry;
73 wait_queue_head_t oplock_q; /* Other server threads */
74 wait_queue_head_t oplock_brk; /* oplock breaking wait */
75 struct rcu_head rcu_head;
78 struct lease_break_info {
82 char lease_key[SMB2_LEASE_KEY_SIZE];
85 struct oplock_break_info {
91 int smb_grant_oplock(struct ksmbd_work *work, int req_op_level,
92 u64 pid, struct ksmbd_file *fp, __u16 tid,
93 struct lease_ctx_info *lctx, int share_ret);
94 void smb_break_all_levII_oplock(struct ksmbd_work *work,
95 struct ksmbd_file *fp, int is_trunc);
96 int opinfo_write_to_read(struct oplock_info *opinfo);
97 int opinfo_read_handle_to_read(struct oplock_info *opinfo);
98 int opinfo_write_to_none(struct oplock_info *opinfo);
99 int opinfo_read_to_none(struct oplock_info *opinfo);
100 void close_id_del_oplock(struct ksmbd_file *fp);
101 void smb_break_all_oplock(struct ksmbd_work *work, struct ksmbd_file *fp);
102 struct oplock_info *opinfo_get(struct ksmbd_file *fp);
103 void opinfo_put(struct oplock_info *opinfo);
105 /* Lease related functions */
106 void create_lease_buf(u8 *rbuf, struct lease *lease);
107 struct lease_ctx_info *parse_lease_state(void *open_req);
108 __u8 smb2_map_lease_to_oplock(__le32 lease_state);
109 int lease_read_to_write(struct oplock_info *opinfo);
111 /* Durable related functions */
112 void create_durable_rsp_buf(char *cc);
113 void create_durable_v2_rsp_buf(char *cc, struct ksmbd_file *fp);
114 void create_mxac_rsp_buf(char *cc, int maximal_access);
115 void create_disk_id_rsp_buf(char *cc, __u64 file_id, __u64 vol_id);
116 void create_posix_rsp_buf(char *cc, struct ksmbd_file *fp);
117 struct create_context *smb2_find_context_vals(void *open_req, const char *tag, int tag_len);
118 struct oplock_info *lookup_lease_in_table(struct ksmbd_conn *conn,
120 int find_same_lease_key(struct ksmbd_session *sess, struct ksmbd_inode *ci,
121 struct lease_ctx_info *lctx);
122 void destroy_lease_table(struct ksmbd_conn *conn);
123 void smb_send_parent_lease_break_noti(struct ksmbd_file *fp,
124 struct lease_ctx_info *lctx);
125 void smb_lazy_parent_lease_break_close(struct ksmbd_file *fp);
126 int smb2_check_durable_oplock(struct ksmbd_conn *conn,
127 struct ksmbd_share_config *share,
128 struct ksmbd_file *fp,
129 struct lease_ctx_info *lctx,
131 #endif /* __KSMBD_OPLOCK_H */