License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/fs/ncpfs/sock.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992, 1993 Rick Sladkey
|
|
|
|
*
|
|
|
|
* Modified 1995, 1996 by Volker Lendecke to be usable for ncp
|
|
|
|
* Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-04-09 07:04:14 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/socket.h>
|
|
|
|
#include <linux/fcntl.h>
|
|
|
|
#include <linux/stat.h>
|
2007-02-19 18:34:43 +08:00
|
|
|
#include <linux/string.h>
|
2017-02-09 01:51:30 +08:00
|
|
|
#include <linux/sched/signal.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/in.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/signal.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/scm.h>
|
|
|
|
#include <net/sock.h>
|
|
|
|
#include <linux/ipx.h>
|
|
|
|
#include <linux/poll.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
|
2011-01-13 06:37:47 +08:00
|
|
|
#include "ncp_fs.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include "ncpsign_kernel.h"
|
|
|
|
|
|
|
|
static int _recv(struct socket *sock, void *buf, int size, unsigned flags)
|
|
|
|
{
|
|
|
|
struct msghdr msg = {NULL, };
|
|
|
|
struct kvec iov = {buf, size};
|
|
|
|
return kernel_recvmsg(sock, &msg, &iov, 1, size, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int _send(struct socket *sock, const void *buff, int len)
|
|
|
|
{
|
2016-01-10 11:12:55 +08:00
|
|
|
struct msghdr msg = { .msg_flags = 0 };
|
|
|
|
struct kvec vec = {.iov_base = (void *)buff, .iov_len = len};
|
|
|
|
iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &vec, 1, len);
|
|
|
|
return sock_sendmsg(sock, &msg);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ncp_request_reply {
|
|
|
|
struct list_head req;
|
|
|
|
wait_queue_head_t wq;
|
2007-02-19 18:34:43 +08:00
|
|
|
atomic_t refs;
|
|
|
|
unsigned char* reply_buf;
|
2005-04-17 06:20:36 +08:00
|
|
|
size_t datalen;
|
|
|
|
int result;
|
2007-02-19 18:34:43 +08:00
|
|
|
enum { RQ_DONE, RQ_INPROGRESS, RQ_QUEUED, RQ_IDLE, RQ_ABANDONED } status;
|
2016-01-10 11:01:58 +08:00
|
|
|
struct iov_iter from;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct kvec tx_iov[3];
|
|
|
|
u_int16_t tx_type;
|
|
|
|
u_int32_t sign[6];
|
|
|
|
};
|
|
|
|
|
2007-02-19 18:34:43 +08:00
|
|
|
static inline struct ncp_request_reply* ncp_alloc_req(void)
|
|
|
|
{
|
|
|
|
struct ncp_request_reply *req;
|
|
|
|
|
|
|
|
req = kmalloc(sizeof(struct ncp_request_reply), GFP_KERNEL);
|
|
|
|
if (!req)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
init_waitqueue_head(&req->wq);
|
|
|
|
atomic_set(&req->refs, (1));
|
|
|
|
req->status = RQ_IDLE;
|
|
|
|
|
|
|
|
return req;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ncp_req_get(struct ncp_request_reply *req)
|
|
|
|
{
|
|
|
|
atomic_inc(&req->refs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ncp_req_put(struct ncp_request_reply *req)
|
|
|
|
{
|
|
|
|
if (atomic_dec_and_test(&req->refs))
|
|
|
|
kfree(req);
|
|
|
|
}
|
|
|
|
|
2014-04-12 04:15:36 +08:00
|
|
|
void ncp_tcp_data_ready(struct sock *sk)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct ncp_server *server = sk->sk_user_data;
|
|
|
|
|
2014-04-12 04:15:36 +08:00
|
|
|
server->data_ready(sk);
|
2005-04-17 06:20:36 +08:00
|
|
|
schedule_work(&server->rcv.tq);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ncp_tcp_error_report(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct ncp_server *server = sk->sk_user_data;
|
|
|
|
|
|
|
|
server->error_report(sk);
|
|
|
|
schedule_work(&server->rcv.tq);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ncp_tcp_write_space(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct ncp_server *server = sk->sk_user_data;
|
|
|
|
|
|
|
|
/* We do not need any locking: we first set tx.creq, and then we do sendmsg,
|
|
|
|
not vice versa... */
|
|
|
|
server->write_space(sk);
|
|
|
|
if (server->tx.creq)
|
|
|
|
schedule_work(&server->tx.tq);
|
|
|
|
}
|
|
|
|
|
2017-08-30 12:00:21 +08:00
|
|
|
void ncpdgram_timeout_call(struct timer_list *t)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2017-08-30 12:00:21 +08:00
|
|
|
struct ncp_server *server = from_timer(server, t, timeout_tm);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
schedule_work(&server->timeout_tq);
|
|
|
|
}
|
|
|
|
|
2007-02-19 18:34:43 +08:00
|
|
|
static inline void ncp_finish_request(struct ncp_server *server, struct ncp_request_reply *req, int result)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
req->result = result;
|
2007-02-19 18:34:43 +08:00
|
|
|
if (req->status != RQ_ABANDONED)
|
|
|
|
memcpy(req->reply_buf, server->rxbuf, req->datalen);
|
2005-04-17 06:20:36 +08:00
|
|
|
req->status = RQ_DONE;
|
|
|
|
wake_up_all(&req->wq);
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_req_put(req);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-02-19 18:34:43 +08:00
|
|
|
static void __abort_ncp_connection(struct ncp_server *server)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct ncp_request_reply *req;
|
|
|
|
|
|
|
|
ncp_invalidate_conn(server);
|
|
|
|
del_timer(&server->timeout_tm);
|
|
|
|
while (!list_empty(&server->tx.requests)) {
|
|
|
|
req = list_entry(server->tx.requests.next, struct ncp_request_reply, req);
|
|
|
|
|
|
|
|
list_del_init(&req->req);
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, -EIO);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
req = server->rcv.creq;
|
|
|
|
if (req) {
|
|
|
|
server->rcv.creq = NULL;
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, -EIO);
|
2005-04-17 06:20:36 +08:00
|
|
|
server->rcv.ptr = NULL;
|
|
|
|
server->rcv.state = 0;
|
|
|
|
}
|
|
|
|
req = server->tx.creq;
|
|
|
|
if (req) {
|
|
|
|
server->tx.creq = NULL;
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, -EIO);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int get_conn_number(struct ncp_reply_header *rp)
|
|
|
|
{
|
|
|
|
return rp->conn_low | (rp->conn_high << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __ncp_abort_request(struct ncp_server *server, struct ncp_request_reply *req, int err)
|
|
|
|
{
|
|
|
|
/* If req is done, we got signal, but we also received answer... */
|
|
|
|
switch (req->status) {
|
|
|
|
case RQ_IDLE:
|
|
|
|
case RQ_DONE:
|
|
|
|
break;
|
|
|
|
case RQ_QUEUED:
|
|
|
|
list_del_init(&req->req);
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, err);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
case RQ_INPROGRESS:
|
2007-02-19 18:34:43 +08:00
|
|
|
req->status = RQ_ABANDONED;
|
|
|
|
break;
|
|
|
|
case RQ_ABANDONED:
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ncp_abort_request(struct ncp_server *server, struct ncp_request_reply *req, int err)
|
|
|
|
{
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_abort_request(server, req, err);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __ncptcp_abort(struct ncp_server *server)
|
|
|
|
{
|
2007-02-19 18:34:43 +08:00
|
|
|
__abort_ncp_connection(server);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ncpdgram_send(struct socket *sock, struct ncp_request_reply *req)
|
|
|
|
{
|
2016-01-10 11:01:58 +08:00
|
|
|
struct msghdr msg = { .msg_iter = req->from, .msg_flags = MSG_DONTWAIT };
|
|
|
|
return sock_sendmsg(sock, &msg);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __ncptcp_try_send(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
struct ncp_request_reply *rq;
|
2016-01-10 11:01:58 +08:00
|
|
|
struct msghdr msg = { .msg_flags = MSG_NOSIGNAL | MSG_DONTWAIT };
|
2005-04-17 06:20:36 +08:00
|
|
|
int result;
|
|
|
|
|
|
|
|
rq = server->tx.creq;
|
|
|
|
if (!rq)
|
|
|
|
return;
|
|
|
|
|
2016-01-10 11:01:58 +08:00
|
|
|
msg.msg_iter = rq->from;
|
|
|
|
result = sock_sendmsg(server->ncp_sock, &msg);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (result == -EAGAIN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (result < 0) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Send failed: %d\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_abort_request(server, rq, result);
|
|
|
|
return;
|
|
|
|
}
|
2016-01-10 11:01:58 +08:00
|
|
|
if (!msg_data_left(&msg)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
server->rcv.creq = rq;
|
|
|
|
server->tx.creq = NULL;
|
|
|
|
return;
|
|
|
|
}
|
2016-01-10 11:01:58 +08:00
|
|
|
rq->from = msg.msg_iter;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ncp_init_header(struct ncp_server *server, struct ncp_request_reply *req, struct ncp_request_header *h)
|
|
|
|
{
|
|
|
|
req->status = RQ_INPROGRESS;
|
|
|
|
h->conn_low = server->connection;
|
|
|
|
h->conn_high = server->connection >> 8;
|
|
|
|
h->sequence = ++server->sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ncpdgram_start_request(struct ncp_server *server, struct ncp_request_reply *req)
|
|
|
|
{
|
2016-01-10 11:01:58 +08:00
|
|
|
size_t signlen, len = req->tx_iov[1].iov_len;
|
|
|
|
struct ncp_request_header *h = req->tx_iov[1].iov_base;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
ncp_init_header(server, req, h);
|
2016-01-10 11:01:58 +08:00
|
|
|
signlen = sign_packet(server,
|
|
|
|
req->tx_iov[1].iov_base + sizeof(struct ncp_request_header) - 1,
|
|
|
|
len - sizeof(struct ncp_request_header) + 1,
|
|
|
|
cpu_to_le32(len), req->sign);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (signlen) {
|
2016-01-10 11:01:58 +08:00
|
|
|
/* NCP over UDP appends signature */
|
|
|
|
req->tx_iov[2].iov_base = req->sign;
|
|
|
|
req->tx_iov[2].iov_len = signlen;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2016-01-10 11:01:58 +08:00
|
|
|
iov_iter_kvec(&req->from, WRITE | ITER_KVEC,
|
|
|
|
req->tx_iov + 1, signlen ? 2 : 1, len + signlen);
|
2005-04-17 06:20:36 +08:00
|
|
|
server->rcv.creq = req;
|
|
|
|
server->timeout_last = server->m.time_out;
|
|
|
|
server->timeout_retries = server->m.retry_count;
|
|
|
|
ncpdgram_send(server->ncp_sock, req);
|
|
|
|
mod_timer(&server->timeout_tm, jiffies + server->m.time_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NCP_TCP_XMIT_MAGIC (0x446D6454)
|
|
|
|
#define NCP_TCP_XMIT_VERSION (1)
|
|
|
|
#define NCP_TCP_RCVD_MAGIC (0x744E6350)
|
|
|
|
|
|
|
|
static void ncptcp_start_request(struct ncp_server *server, struct ncp_request_reply *req)
|
|
|
|
{
|
2016-01-10 11:01:58 +08:00
|
|
|
size_t signlen, len = req->tx_iov[1].iov_len;
|
|
|
|
struct ncp_request_header *h = req->tx_iov[1].iov_base;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
ncp_init_header(server, req, h);
|
|
|
|
signlen = sign_packet(server, req->tx_iov[1].iov_base + sizeof(struct ncp_request_header) - 1,
|
2016-01-10 11:01:58 +08:00
|
|
|
len - sizeof(struct ncp_request_header) + 1,
|
|
|
|
cpu_to_be32(len + 24), req->sign + 4) + 16;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
req->sign[0] = htonl(NCP_TCP_XMIT_MAGIC);
|
2016-01-10 11:01:58 +08:00
|
|
|
req->sign[1] = htonl(len + signlen);
|
2005-04-17 06:20:36 +08:00
|
|
|
req->sign[2] = htonl(NCP_TCP_XMIT_VERSION);
|
|
|
|
req->sign[3] = htonl(req->datalen + 8);
|
2016-01-10 11:01:58 +08:00
|
|
|
/* NCP over TCP prepends signature */
|
2005-04-17 06:20:36 +08:00
|
|
|
req->tx_iov[0].iov_base = req->sign;
|
|
|
|
req->tx_iov[0].iov_len = signlen;
|
2016-01-10 11:01:58 +08:00
|
|
|
iov_iter_kvec(&req->from, WRITE | ITER_KVEC,
|
|
|
|
req->tx_iov, 2, len + signlen);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
server->tx.creq = req;
|
|
|
|
__ncptcp_try_send(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __ncp_start_request(struct ncp_server *server, struct ncp_request_reply *req)
|
|
|
|
{
|
2007-02-19 18:34:43 +08:00
|
|
|
/* we copy the data so that we do not depend on the caller
|
|
|
|
staying alive */
|
|
|
|
memcpy(server->txbuf, req->tx_iov[1].iov_base, req->tx_iov[1].iov_len);
|
|
|
|
req->tx_iov[1].iov_base = server->txbuf;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (server->ncp_sock->type == SOCK_STREAM)
|
|
|
|
ncptcp_start_request(server, req);
|
|
|
|
else
|
|
|
|
ncpdgram_start_request(server, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ncp_add_request(struct ncp_server *server, struct ncp_request_reply *req)
|
|
|
|
{
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!ncp_conn_valid(server)) {
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Server died\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EIO;
|
|
|
|
}
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_req_get(req);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (server->tx.creq || server->rcv.creq) {
|
|
|
|
req->status = RQ_QUEUED;
|
|
|
|
list_add_tail(&req->req, &server->tx.requests);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
__ncp_start_request(server, req);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __ncp_next_request(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
struct ncp_request_reply *req;
|
|
|
|
|
|
|
|
server->rcv.creq = NULL;
|
|
|
|
if (list_empty(&server->tx.requests)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
req = list_entry(server->tx.requests.next, struct ncp_request_reply, req);
|
|
|
|
list_del_init(&req->req);
|
|
|
|
__ncp_start_request(server, req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void info_server(struct ncp_server *server, unsigned int id, const void * data, size_t len)
|
|
|
|
{
|
|
|
|
if (server->info_sock) {
|
2016-01-10 11:12:55 +08:00
|
|
|
struct msghdr msg = { .msg_flags = MSG_NOSIGNAL };
|
|
|
|
__be32 hdr[2] = {cpu_to_be32(len + 8), cpu_to_be32(id)};
|
|
|
|
struct kvec iov[2] = {
|
|
|
|
{.iov_base = hdr, .iov_len = 8},
|
|
|
|
{.iov_base = (void *)data, .iov_len = len},
|
|
|
|
};
|
|
|
|
|
|
|
|
iov_iter_kvec(&msg.msg_iter, ITER_KVEC | WRITE,
|
|
|
|
iov, 2, len + 8);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-01-10 11:12:55 +08:00
|
|
|
sock_sendmsg(server->info_sock, &msg);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
void ncpdgram_rcv_proc(struct work_struct *work)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-11-22 22:57:56 +08:00
|
|
|
struct ncp_server *server =
|
|
|
|
container_of(work, struct ncp_server, rcv.tq);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct socket* sock;
|
|
|
|
|
|
|
|
sock = server->ncp_sock;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
struct ncp_reply_header reply;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
result = _recv(sock, &reply, sizeof(reply), MSG_PEEK | MSG_DONTWAIT);
|
|
|
|
if (result < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (result >= sizeof(reply)) {
|
|
|
|
struct ncp_request_reply *req;
|
|
|
|
|
|
|
|
if (reply.type == NCP_WATCHDOG) {
|
|
|
|
unsigned char buf[10];
|
|
|
|
|
|
|
|
if (server->connection != get_conn_number(&reply)) {
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
result = _recv(sock, buf, sizeof(buf), MSG_DONTWAIT);
|
|
|
|
if (result < 0) {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "recv failed with %d\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (result < 10) {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "too short (%u) watchdog packet\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (buf[9] != '?') {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "bad signature (%02X) in watchdog packet\n", buf[9]);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
buf[9] = 'Y';
|
|
|
|
_send(sock, buf, sizeof(buf));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (reply.type != NCP_POSITIVE_ACK && reply.type != NCP_REPLY) {
|
|
|
|
result = _recv(sock, server->unexpected_packet.data, sizeof(server->unexpected_packet.data), MSG_DONTWAIT);
|
|
|
|
if (result < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
info_server(server, 0, server->unexpected_packet.data, result);
|
|
|
|
continue;
|
|
|
|
}
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
req = server->rcv.creq;
|
|
|
|
if (req && (req->tx_type == NCP_ALLOC_SLOT_REQUEST || (server->sequence == reply.sequence &&
|
|
|
|
server->connection == get_conn_number(&reply)))) {
|
|
|
|
if (reply.type == NCP_POSITIVE_ACK) {
|
|
|
|
server->timeout_retries = server->m.retry_count;
|
|
|
|
server->timeout_last = NCP_MAX_RPC_TIMEOUT;
|
|
|
|
mod_timer(&server->timeout_tm, jiffies + NCP_MAX_RPC_TIMEOUT);
|
|
|
|
} else if (reply.type == NCP_REPLY) {
|
2007-02-19 18:34:43 +08:00
|
|
|
result = _recv(sock, server->rxbuf, req->datalen, MSG_DONTWAIT);
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_NCPFS_PACKET_SIGNING
|
|
|
|
if (result >= 0 && server->sign_active && req->tx_type != NCP_DEALLOC_SLOT_REQUEST) {
|
|
|
|
if (result < 8 + 8) {
|
|
|
|
result = -EIO;
|
|
|
|
} else {
|
|
|
|
unsigned int hdrl;
|
|
|
|
|
|
|
|
result -= 8;
|
|
|
|
hdrl = sock->sk->sk_family == AF_INET ? 8 : 6;
|
2007-02-19 18:34:43 +08:00
|
|
|
if (sign_verify_reply(server, server->rxbuf + hdrl, result - hdrl, cpu_to_le32(result), server->rxbuf + result)) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_info("Signature violation\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
result = -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
del_timer(&server->timeout_tm);
|
|
|
|
server->rcv.creq = NULL;
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, result);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_next_request(server);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
drop:;
|
|
|
|
_recv(sock, &reply, sizeof(reply), MSG_DONTWAIT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __ncpdgram_timeout_proc(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
/* If timer is pending, we are processing another request... */
|
|
|
|
if (!timer_pending(&server->timeout_tm)) {
|
|
|
|
struct ncp_request_reply* req;
|
|
|
|
|
|
|
|
req = server->rcv.creq;
|
|
|
|
if (req) {
|
|
|
|
int timeout;
|
|
|
|
|
|
|
|
if (server->m.flags & NCP_MOUNT_SOFT) {
|
|
|
|
if (server->timeout_retries-- == 0) {
|
|
|
|
__ncp_abort_request(server, req, -ETIMEDOUT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Ignore errors */
|
|
|
|
ncpdgram_send(server->ncp_sock, req);
|
|
|
|
timeout = server->timeout_last << 1;
|
|
|
|
if (timeout > NCP_MAX_RPC_TIMEOUT) {
|
|
|
|
timeout = NCP_MAX_RPC_TIMEOUT;
|
|
|
|
}
|
|
|
|
server->timeout_last = timeout;
|
|
|
|
mod_timer(&server->timeout_tm, jiffies + timeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
void ncpdgram_timeout_proc(struct work_struct *work)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-11-22 22:57:56 +08:00
|
|
|
struct ncp_server *server =
|
|
|
|
container_of(work, struct ncp_server, timeout_tq);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncpdgram_timeout_proc(server);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int do_tcp_rcv(struct ncp_server *server, void *buffer, size_t len)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
if (buffer) {
|
|
|
|
result = _recv(server->ncp_sock, buffer, len, MSG_DONTWAIT);
|
|
|
|
} else {
|
|
|
|
static unsigned char dummy[1024];
|
|
|
|
|
|
|
|
if (len > sizeof(dummy)) {
|
|
|
|
len = sizeof(dummy);
|
|
|
|
}
|
|
|
|
result = _recv(server->ncp_sock, dummy, len, MSG_DONTWAIT);
|
|
|
|
}
|
|
|
|
if (result < 0) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
if (result > len) {
|
2017-02-28 06:30:02 +08:00
|
|
|
pr_err("tcp: bug in recvmsg (%u > %zu)\n", result, len);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __ncptcp_rcv_proc(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
/* We have to check the result, so store the complete header */
|
|
|
|
while (1) {
|
|
|
|
int result;
|
|
|
|
struct ncp_request_reply *req;
|
|
|
|
int datalen;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
while (server->rcv.len) {
|
|
|
|
result = do_tcp_rcv(server, server->rcv.ptr, server->rcv.len);
|
|
|
|
if (result == -EAGAIN) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (result <= 0) {
|
|
|
|
req = server->rcv.creq;
|
|
|
|
if (req) {
|
|
|
|
__ncp_abort_request(server, req, -EIO);
|
|
|
|
} else {
|
|
|
|
__ncptcp_abort(server);
|
|
|
|
}
|
|
|
|
if (result < 0) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: error in recvmsg: %d\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
} else {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "tcp: EOF\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (server->rcv.ptr) {
|
|
|
|
server->rcv.ptr += result;
|
|
|
|
}
|
|
|
|
server->rcv.len -= result;
|
|
|
|
}
|
|
|
|
switch (server->rcv.state) {
|
|
|
|
case 0:
|
|
|
|
if (server->rcv.buf.magic != htonl(NCP_TCP_RCVD_MAGIC)) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Unexpected reply type %08X\n", ntohl(server->rcv.buf.magic));
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncptcp_abort(server);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
datalen = ntohl(server->rcv.buf.len) & 0x0FFFFFFF;
|
|
|
|
if (datalen < 10) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Unexpected reply len %d\n", datalen);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncptcp_abort(server);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_NCPFS_PACKET_SIGNING
|
|
|
|
if (server->sign_active) {
|
|
|
|
if (datalen < 18) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Unexpected reply len %d\n", datalen);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncptcp_abort(server);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
server->rcv.buf.len = datalen - 8;
|
|
|
|
server->rcv.ptr = (unsigned char*)&server->rcv.buf.p1;
|
|
|
|
server->rcv.len = 8;
|
|
|
|
server->rcv.state = 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
type = ntohs(server->rcv.buf.type);
|
|
|
|
#ifdef CONFIG_NCPFS_PACKET_SIGNING
|
|
|
|
cont:;
|
|
|
|
#endif
|
|
|
|
if (type != NCP_REPLY) {
|
|
|
|
if (datalen - 8 <= sizeof(server->unexpected_packet.data)) {
|
|
|
|
*(__u16*)(server->unexpected_packet.data) = htons(type);
|
|
|
|
server->unexpected_packet.len = datalen - 8;
|
|
|
|
|
|
|
|
server->rcv.state = 5;
|
|
|
|
server->rcv.ptr = server->unexpected_packet.data + 2;
|
|
|
|
server->rcv.len = datalen - 10;
|
|
|
|
break;
|
|
|
|
}
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "tcp: Unexpected NCP type %02X\n", type);
|
2005-04-17 06:20:36 +08:00
|
|
|
skipdata2:;
|
|
|
|
server->rcv.state = 2;
|
|
|
|
skipdata:;
|
|
|
|
server->rcv.ptr = NULL;
|
|
|
|
server->rcv.len = datalen - 10;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
req = server->rcv.creq;
|
|
|
|
if (!req) {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "Reply without appropriate request\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
goto skipdata2;
|
|
|
|
}
|
|
|
|
if (datalen > req->datalen + 8) {
|
2017-02-28 06:30:02 +08:00
|
|
|
pr_err("tcp: Unexpected reply len %d (expected at most %zd)\n", datalen, req->datalen + 8);
|
2005-04-17 06:20:36 +08:00
|
|
|
server->rcv.state = 3;
|
|
|
|
goto skipdata;
|
|
|
|
}
|
|
|
|
req->datalen = datalen - 8;
|
2007-02-19 18:34:43 +08:00
|
|
|
((struct ncp_reply_header*)server->rxbuf)->type = NCP_REPLY;
|
|
|
|
server->rcv.ptr = server->rxbuf + 2;
|
2005-04-17 06:20:36 +08:00
|
|
|
server->rcv.len = datalen - 10;
|
|
|
|
server->rcv.state = 1;
|
|
|
|
break;
|
|
|
|
#ifdef CONFIG_NCPFS_PACKET_SIGNING
|
|
|
|
case 4:
|
|
|
|
datalen = server->rcv.buf.len;
|
|
|
|
type = ntohs(server->rcv.buf.type2);
|
|
|
|
goto cont;
|
|
|
|
#endif
|
|
|
|
case 1:
|
|
|
|
req = server->rcv.creq;
|
|
|
|
if (req->tx_type != NCP_ALLOC_SLOT_REQUEST) {
|
2007-02-19 18:34:43 +08:00
|
|
|
if (((struct ncp_reply_header*)server->rxbuf)->sequence != server->sequence) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Bad sequence number\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_abort_request(server, req, -EIO);
|
|
|
|
return -EIO;
|
|
|
|
}
|
2007-02-19 18:34:43 +08:00
|
|
|
if ((((struct ncp_reply_header*)server->rxbuf)->conn_low | (((struct ncp_reply_header*)server->rxbuf)->conn_high << 8)) != server->connection) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Connection number mismatch\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_abort_request(server, req, -EIO);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_NCPFS_PACKET_SIGNING
|
|
|
|
if (server->sign_active && req->tx_type != NCP_DEALLOC_SLOT_REQUEST) {
|
2007-02-19 18:34:43 +08:00
|
|
|
if (sign_verify_reply(server, server->rxbuf + 6, req->datalen - 6, cpu_to_be32(req->datalen + 16), &server->rcv.buf.type)) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("tcp: Signature violation\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncp_abort_request(server, req, -EIO);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, req, req->datalen);
|
2005-04-17 06:20:36 +08:00
|
|
|
nextreq:;
|
|
|
|
__ncp_next_request(server);
|
|
|
|
case 2:
|
|
|
|
next:;
|
|
|
|
server->rcv.ptr = (unsigned char*)&server->rcv.buf;
|
|
|
|
server->rcv.len = 10;
|
|
|
|
server->rcv.state = 0;
|
|
|
|
break;
|
|
|
|
case 3:
|
2007-02-19 18:34:43 +08:00
|
|
|
ncp_finish_request(server, server->rcv.creq, -EIO);
|
2005-04-17 06:20:36 +08:00
|
|
|
goto nextreq;
|
|
|
|
case 5:
|
|
|
|
info_server(server, 0, server->unexpected_packet.data, server->unexpected_packet.len);
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
void ncp_tcp_rcv_proc(struct work_struct *work)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-11-22 22:57:56 +08:00
|
|
|
struct ncp_server *server =
|
|
|
|
container_of(work, struct ncp_server, rcv.tq);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncptcp_rcv_proc(server);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-11-22 22:57:56 +08:00
|
|
|
void ncp_tcp_tx_proc(struct work_struct *work)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-11-22 22:57:56 +08:00
|
|
|
struct ncp_server *server =
|
|
|
|
container_of(work, struct ncp_server, tx.tq);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
__ncptcp_try_send(server);
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->rcv.creq_mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int do_ncp_rpc_call(struct ncp_server *server, int size,
|
2007-02-19 18:34:43 +08:00
|
|
|
unsigned char* reply_buf, int max_reply_size)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int result;
|
2007-02-19 18:34:43 +08:00
|
|
|
struct ncp_request_reply *req;
|
|
|
|
|
|
|
|
req = ncp_alloc_req();
|
|
|
|
if (!req)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
req->reply_buf = reply_buf;
|
|
|
|
req->datalen = max_reply_size;
|
|
|
|
req->tx_iov[1].iov_base = server->packet;
|
|
|
|
req->tx_iov[1].iov_len = size;
|
|
|
|
req->tx_type = *(u_int16_t*)server->packet;
|
|
|
|
|
|
|
|
result = ncp_add_request(server, req);
|
|
|
|
if (result < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (wait_event_interruptible(req->wq, req->status == RQ_DONE)) {
|
|
|
|
ncp_abort_request(server, req, -EINTR);
|
|
|
|
result = -EINTR;
|
|
|
|
goto out;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2007-02-19 18:34:43 +08:00
|
|
|
|
|
|
|
result = req->result;
|
|
|
|
|
|
|
|
out:
|
|
|
|
ncp_req_put(req);
|
|
|
|
|
|
|
|
return result;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need the server to be locked here, so check!
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int ncp_do_request(struct ncp_server *server, int size,
|
|
|
|
void* reply, int max_reply_size)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
if (server->lock == 0) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_err("Server not locked!\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (!ncp_conn_valid(server)) {
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
sigset_t old_set;
|
|
|
|
unsigned long mask, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(¤t->sighand->siglock, flags);
|
|
|
|
old_set = current->blocked;
|
|
|
|
if (current->flags & PF_EXITING)
|
|
|
|
mask = 0;
|
|
|
|
else
|
|
|
|
mask = sigmask(SIGKILL);
|
|
|
|
if (server->m.flags & NCP_MOUNT_INTR) {
|
|
|
|
/* FIXME: This doesn't seem right at all. So, like,
|
|
|
|
we can't handle SIGINT and get whatever to stop?
|
|
|
|
What if we've blocked it ourselves? What about
|
|
|
|
alarms? Why, in fact, are we mucking with the
|
|
|
|
sigmask at all? -- r~ */
|
|
|
|
if (current->sighand->action[SIGINT - 1].sa.sa_handler == SIG_DFL)
|
|
|
|
mask |= sigmask(SIGINT);
|
|
|
|
if (current->sighand->action[SIGQUIT - 1].sa.sa_handler == SIG_DFL)
|
|
|
|
mask |= sigmask(SIGQUIT);
|
|
|
|
}
|
|
|
|
siginitsetinv(¤t->blocked, mask);
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irqrestore(¤t->sighand->siglock, flags);
|
|
|
|
|
|
|
|
result = do_ncp_rpc_call(server, size, reply, max_reply_size);
|
|
|
|
|
|
|
|
spin_lock_irqsave(¤t->sighand->siglock, flags);
|
|
|
|
current->blocked = old_set;
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irqrestore(¤t->sighand->siglock, flags);
|
|
|
|
}
|
|
|
|
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(2, "do_ncp_rpc_call returned %d\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ncp_do_request assures that at least a complete reply header is
|
|
|
|
* received. It assumes that server->current_size contains the ncp
|
|
|
|
* request size
|
|
|
|
*/
|
|
|
|
int ncp_request2(struct ncp_server *server, int function,
|
|
|
|
void* rpl, int size)
|
|
|
|
{
|
|
|
|
struct ncp_request_header *h;
|
|
|
|
struct ncp_reply_header* reply = rpl;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
h = (struct ncp_request_header *) (server->packet);
|
|
|
|
if (server->has_subfunction != 0) {
|
|
|
|
*(__u16 *) & (h->data[0]) = htons(server->current_size - sizeof(*h) - 2);
|
|
|
|
}
|
|
|
|
h->type = NCP_REQUEST;
|
|
|
|
/*
|
|
|
|
* The server shouldn't know or care what task is making a
|
|
|
|
* request, so we always use the same task number.
|
|
|
|
*/
|
|
|
|
h->task = 2; /* (current->pid) & 0xff; */
|
|
|
|
h->function = function;
|
|
|
|
|
|
|
|
result = ncp_do_request(server, server->current_size, reply, size);
|
|
|
|
if (result < 0) {
|
2014-04-09 07:04:15 +08:00
|
|
|
ncp_dbg(1, "ncp_request_error: %d\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
server->completion = reply->completion_code;
|
|
|
|
server->conn_status = reply->connection_state;
|
|
|
|
server->reply_size = result;
|
|
|
|
server->ncp_reply_size = result - sizeof(struct ncp_reply_header);
|
|
|
|
|
|
|
|
result = reply->completion_code;
|
|
|
|
|
|
|
|
if (result != 0)
|
2014-04-09 07:04:16 +08:00
|
|
|
ncp_vdbg("completion code=%x\n", result);
|
2005-04-17 06:20:36 +08:00
|
|
|
out:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ncp_connect(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
struct ncp_request_header *h;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
server->connection = 0xFFFF;
|
|
|
|
server->sequence = 255;
|
|
|
|
|
|
|
|
h = (struct ncp_request_header *) (server->packet);
|
|
|
|
h->type = NCP_ALLOC_SLOT_REQUEST;
|
|
|
|
h->task = 2; /* see above */
|
|
|
|
h->function = 0;
|
|
|
|
|
|
|
|
result = ncp_do_request(server, sizeof(*h), server->packet, server->packet_size);
|
|
|
|
if (result < 0)
|
|
|
|
goto out;
|
|
|
|
server->connection = h->conn_low + (h->conn_high * 256);
|
|
|
|
result = 0;
|
|
|
|
out:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ncp_disconnect(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
struct ncp_request_header *h;
|
|
|
|
|
|
|
|
h = (struct ncp_request_header *) (server->packet);
|
|
|
|
h->type = NCP_DEALLOC_SLOT_REQUEST;
|
|
|
|
h->task = 2; /* see above */
|
|
|
|
h->function = 0;
|
|
|
|
|
|
|
|
return ncp_do_request(server, sizeof(*h), server->packet, server->packet_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ncp_lock_server(struct ncp_server *server)
|
|
|
|
{
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_lock(&server->mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (server->lock)
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_warn("%s: was locked!\n", __func__);
|
2005-04-17 06:20:36 +08:00
|
|
|
server->lock = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ncp_unlock_server(struct ncp_server *server)
|
|
|
|
{
|
|
|
|
if (!server->lock) {
|
2014-04-09 07:04:14 +08:00
|
|
|
pr_warn("%s: was not locked!\n", __func__);
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
server->lock = 0;
|
2006-03-23 19:00:43 +08:00
|
|
|
mutex_unlock(&server->mutex);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|