forked from namjaejeon/ksmbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect.c
350 lines (302 loc) · 8.13 KB
/
connect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
* fs/cifsd/connect.c
*
* Copyright (C) 2015 Samsung Electronics Co., Ltd.
* Copyright (C) 2016 Namjae Jeon <namjae.jeon@protocolfreedom.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "export.h"
#include "glob.h"
#include "smb1pdu.h"
struct task_struct *cifsd_forkerd;
static int deny_new_conn;
/**
* kvec_array_init() - initialize a IO vector segment
* @new: IO vector to be intialized
* @iov: base IO vector
* @nr_segs: number of segments in base iov
* @bytes: total iovec length so far for read
*
* Return: Number of IO segments
*/
static unsigned int kvec_array_init(struct kvec *new, struct kvec *iov,
unsigned int nr_segs, size_t bytes)
{
size_t base = 0;
while (bytes || !iov->iov_len) {
int copy = min(bytes, iov->iov_len);
bytes -= copy;
base += copy;
if (iov->iov_len == base) {
iov++;
nr_segs--;
base = 0;
}
}
memcpy(new, iov, sizeof(*iov) * nr_segs);
new->iov_base += base;
new->iov_len -= base;
return nr_segs;
}
/**
* get_conn_iovec() - get connection iovec for reading from socket
* @conn: TCP server instance of connection
* @nr_segs: number of segments in iov
*
* Return: return existing or newly allocate iovec
*/
static struct kvec *get_conn_iovec(struct connection *conn,
unsigned int nr_segs)
{
struct kvec *new_iov;
if (conn->iov && nr_segs <= conn->nr_iov)
return conn->iov;
/* not big enough -- allocate a new one and release the old */
new_iov = kmalloc(sizeof(*new_iov) * nr_segs, GFP_NOFS);
if (new_iov) {
kfree(conn->iov);
conn->iov = new_iov;
conn->nr_iov = nr_segs;
}
return new_iov;
}
/**
* conn_unresponsive() - check server is unresponsive or not
* @conn: TCP server instance of connection
*
* Return: true if server unresponsive, otherwise false
*/
bool conn_unresponsive(struct connection *conn)
{
if (conn->stats.open_files_count > 0)
return false;
#ifdef CONFIG_CIFS_SMB2_SERVER
if (time_after(jiffies, conn->last_active + 2 * SMB_ECHO_INTERVAL)) {
cifsd_debug("No response from client in 120 secs\n");
return true;
}
return false;
#else
return false;
#endif
}
/**
* cifsd_readv_from_socket() - read data from socket in given iovec
* @conn: TCP server instance of connection
* @iov_orig: base IO vector
* @nr_segs: number of segments in base iov
* @to_read: number of bytes to read from socket
*
* Return: on success return number of bytes read from socket,
* otherwise return error number
*/
int cifsd_readv_from_socket(struct connection *conn,
struct kvec *iov_orig, unsigned int nr_segs,
unsigned int to_read)
{
int length = 0;
int total_read;
unsigned int segs;
struct msghdr cifsd_msg;
struct kvec *iov;
iov = get_conn_iovec(conn, nr_segs);
if (!iov)
return -ENOMEM;
cifsd_msg.msg_control = NULL;
cifsd_msg.msg_controllen = 0;
for (total_read = 0; to_read; total_read += length, to_read -= length) {
try_to_freeze();
if (conn_unresponsive(conn)) {
total_read = -EAGAIN;
break;
}
segs = kvec_array_init(iov, iov_orig, nr_segs, total_read);
length = kernel_recvmsg(conn->sock, &cifsd_msg,
iov, segs, to_read, 0);
if (conn->tcp_status == CifsExiting) {
total_read = -ESHUTDOWN;
break;
} else if (conn->tcp_status == CifsNeedReconnect) {
total_read = -EAGAIN;
break;
} else if (length == -ERESTARTSYS ||
length == -EAGAIN ||
length == -EINTR) {
usleep_range(1000, 2000);
length = 0;
continue;
} else if (length <= 0) {
usleep_range(1000, 2000);
total_read = -EAGAIN;
break;
}
}
return total_read;
}
/**
* cifsd_readv_from_socket() - read data from socket in given buffer
* @conn: TCP server instance of connection
* @buf: buffer to store read data from socket
* @to_read: number of bytes to read from socket
*
* Return: on success return number of bytes read from socket,
* otherwise return error number
*/
int cifsd_read_from_socket(struct connection *conn, char *buf,
unsigned int to_read)
{
struct kvec iov;
iov.iov_base = buf;
iov.iov_len = to_read;
return cifsd_readv_from_socket(conn, &iov, 1, to_read);
}
/**
* cifsd_create_socket - create socket for kcifsd/0
*
* Return: Returns a task_struct or ERR_PTR
*/
int cifsd_create_socket(void)
{
int ret;
struct socket *socket = NULL;
struct sockaddr_in sin;
int opt = 1;
ret = sock_create(PF_INET, SOCK_STREAM, IPPROTO_TCP, &socket);
if (ret)
return ret;
cifsd_debug("socket created\n");
sin.sin_addr.s_addr = htonl(INADDR_ANY);
sin.sin_family = PF_INET;
sin.sin_port = htons(SMB_PORT);
ret = kernel_setsockopt(socket, SOL_SOCKET, SO_REUSEADDR,
(char *)&opt, sizeof(opt));
if (ret < 0) {
cifsd_err("failed to set socket options(%d)\n", ret);
goto release;
}
ret = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
(char *)&opt, sizeof(opt));
if (ret < 0) {
cifsd_err("set TCP_NODELAY socket option error %d\n", ret);
goto release;
}
ret = kernel_bind(socket, (struct sockaddr *)&sin, sizeof(sin));
if (ret) {
cifsd_err("failed to bind socket err = %d\n", ret);
goto release;
}
socket->sk->sk_rcvtimeo = 7 * HZ;
socket->sk->sk_sndtimeo = 5 * HZ;
ret = socket->ops->listen(socket, 64);
if (ret) {
cifsd_err("port listen failure(%d)\n", ret);
goto release;
}
ret = cifsd_start_forker_thread(socket);
if (ret) {
cifsd_err("failed to run forker thread(%d)\n", ret);
goto release;
}
return 0;
release:
cifsd_debug("releasing socket\n");
ret = kernel_sock_shutdown(socket, SHUT_RDWR);
if (ret)
cifsd_err("failed to shutdown socket cleanly\n");
sock_release(socket);
return ret;
}
/**
* cifsd_do_fork() - forker thread to listen new SMB connection
* @p: arguments to forker thread
*
* Return: Returns a task_struct or ERR_PTR
*/
static int cifsd_do_fork(void *p)
{
struct socket *socket = p;
int ret;
struct socket *newsock = NULL;
while (!kthread_should_stop()) {
if (deny_new_conn)
continue;
ret = kernel_accept(socket, &newsock, O_NONBLOCK);
if (ret) {
if (ret == -EAGAIN)
/* check for new connections every 100 msecs */
schedule_timeout_interruptible(HZ/10);
} else {
cifsd_debug("connect success: accepted new connection\n");
newsock->sk->sk_rcvtimeo = 7 * HZ;
newsock->sk->sk_sndtimeo = 5 * HZ;
/* request for new connection */
connect_tcp_sess(newsock);
}
}
cifsd_debug("releasing socket\n");
ret = kernel_sock_shutdown(socket, SHUT_RDWR);
if (ret)
cifsd_err("failed to shutdown socket cleanly\n");
sock_release(socket);
return 0;
}
/**
* cifsd_start_forker_thread() - start forker thread
*
* start forker thread(kcifsd/0) at module init time to listen
* on port 445 for new SMB connection requests. It creates per connection
* server threads(kcifsd/x)
*
* Return: 0 on success or error number
*/
int cifsd_start_forker_thread(struct socket *socket)
{
int rc;
deny_new_conn = 0;
cifsd_forkerd = kthread_run(cifsd_do_fork, socket, "kcifsd/0");
if (IS_ERR(cifsd_forkerd)) {
rc = PTR_ERR(cifsd_forkerd);
cifsd_forkerd = NULL;
return rc;
}
return 0;
}
/**
* cifsd_stop_forker_thread() - stop forker thread
*
* stop forker thread(cifsd_forkerd) at module exit time
*/
void cifsd_stop_forker_thread(void)
{
int ret;
if (cifsd_forkerd) {
ret = kthread_stop(cifsd_forkerd);
if (ret)
cifsd_err("failed to stop forker thread\n");
}
cifsd_forkerd = NULL;
}
void cifsd_close_socket(void)
{
int ret;
cifsd_debug("closing SMB PORT and releasing socket\n");
deny_new_conn = 1;
ret = cifsd_stop_tcp_sess();
if (!ret) {
cifsd_stop_forker_thread();
cifsd_debug("SMB PORT closed\n");
}
}