2019-05-28 16:57:20 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-11-02 16:19:21 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
|
2009-01-28 18:57:40 +00:00
|
|
|
** Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
|
2006-11-02 16:19:21 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
*******************************************************************************
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* lowcomms.c
|
|
|
|
*
|
|
|
|
* This is the "low-level" comms layer.
|
|
|
|
*
|
|
|
|
* It is responsible for sending/receiving messages
|
|
|
|
* from other nodes in the cluster.
|
|
|
|
*
|
|
|
|
* Cluster nodes are referred to by their nodeids. nodeids are
|
|
|
|
* simply 32 bit numbers to the locking module - if they need to
|
2009-01-22 21:26:47 +00:00
|
|
|
* be expanded for the cluster infrastructure then that is its
|
2006-11-02 16:19:21 +00:00
|
|
|
* responsibility. It is this layer's
|
|
|
|
* responsibility to resolve these into IP address or
|
|
|
|
* whatever it needs for inter-node communication.
|
|
|
|
*
|
|
|
|
* The comms level is two kernel threads that deal mainly with
|
|
|
|
* the receiving of messages from other nodes and passing them
|
|
|
|
* up to the mid-level comms layer (which understands the
|
|
|
|
* message format) for execution by the locking core, and
|
|
|
|
* a send thread which does all the setting up of connections
|
|
|
|
* to remote nodes and the sending of data. Threads are not allowed
|
|
|
|
* to send their own data because it may cause them to wait in times
|
|
|
|
* of high load. Also, this way, the sending thread can collect together
|
|
|
|
* messages bound for one node and send them in one block.
|
|
|
|
*
|
2009-01-22 21:26:47 +00:00
|
|
|
* lowcomms will choose to use either TCP or SCTP as its transport layer
|
2007-04-17 14:39:57 +00:00
|
|
|
* depending on the configuration variable 'protocol'. This should be set
|
2009-01-22 21:26:47 +00:00
|
|
|
* to 0 (default) for TCP or 1 for SCTP. It should be configured using a
|
2007-04-17 14:39:57 +00:00
|
|
|
* cluster-wide mechanism as it must be the same on all nodes of the cluster
|
|
|
|
* for the DLM to function.
|
2006-11-02 16:19:21 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/ioctls.h>
|
|
|
|
#include <net/sock.h>
|
|
|
|
#include <net/tcp.h>
|
|
|
|
#include <linux/pagemap.h>
|
2007-04-17 14:39:57 +00:00
|
|
|
#include <linux/file.h>
|
2008-05-12 15:04:51 +00:00
|
|
|
#include <linux/mutex.h>
|
2007-04-17 14:39:57 +00:00
|
|
|
#include <linux/sctp.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 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2012-03-08 05:55:59 +00:00
|
|
|
#include <net/sctp/sctp.h>
|
2009-01-22 21:24:49 +00:00
|
|
|
#include <net/ipv6.h>
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2021-11-02 19:17:16 +00:00
|
|
|
#include <trace/events/dlm.h>
|
2023-01-20 00:45:16 +00:00
|
|
|
#include <trace/events/sock.h>
|
2021-11-02 19:17:16 +00:00
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
#include "dlm_internal.h"
|
|
|
|
#include "lowcomms.h"
|
|
|
|
#include "midcomms.h"
|
2021-11-30 19:47:19 +00:00
|
|
|
#include "memory.h"
|
2006-11-02 16:19:21 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2023-01-12 22:18:42 +00:00
|
|
|
#define DLM_SHUTDOWN_WAIT_TIMEOUT msecs_to_jiffies(5000)
|
2023-10-10 22:04:48 +00:00
|
|
|
#define DLM_MAX_PROCESS_BUFFERS 24
|
2007-04-17 14:39:57 +00:00
|
|
|
#define NEEDED_RMEM (4*1024*1024)
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
struct connection {
|
|
|
|
struct socket *sock; /* NULL if not connected */
|
|
|
|
uint32_t nodeid; /* So we know who we are in the list */
|
2022-11-17 22:11:57 +00:00
|
|
|
/* this semaphore is used to allow parallel recv/send in read
|
|
|
|
* lock mode. When we release a sock we need to held the write lock.
|
|
|
|
*
|
|
|
|
* However this is locking code and not nice. When we remove the
|
|
|
|
* othercon handling we can look into other mechanism to synchronize
|
|
|
|
* io handling to call sock_release() at the right time.
|
|
|
|
*/
|
|
|
|
struct rw_semaphore sock_lock;
|
2007-04-17 14:39:57 +00:00
|
|
|
unsigned long flags;
|
2022-11-17 22:11:57 +00:00
|
|
|
#define CF_APP_LIMITED 0
|
|
|
|
#define CF_RECV_PENDING 1
|
|
|
|
#define CF_SEND_PENDING 2
|
|
|
|
#define CF_RECV_INTR 3
|
|
|
|
#define CF_IO_STOP 4
|
2007-04-17 14:39:57 +00:00
|
|
|
#define CF_IS_OTHERCON 5
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
struct list_head writequeue; /* List of outgoing writequeue_entries */
|
2006-11-02 16:19:21 +00:00
|
|
|
spinlock_t writequeue_lock;
|
|
|
|
int retries;
|
2009-01-28 18:57:40 +00:00
|
|
|
struct hlist_node list;
|
2022-11-17 22:11:57 +00:00
|
|
|
/* due some connect()/accept() races we currently have this cross over
|
|
|
|
* connection attempt second connection for one node.
|
|
|
|
*
|
|
|
|
* There is a solution to avoid the race by introducing a connect
|
|
|
|
* rule as e.g. our_nodeid > nodeid_to_connect who is allowed to
|
|
|
|
* connect. Otherside can connect but will only be considered that
|
|
|
|
* the other side wants to have a reconnect.
|
|
|
|
*
|
|
|
|
* However changing to this behaviour will break backwards compatible.
|
|
|
|
* In a DLM protocol major version upgrade we should remove this!
|
|
|
|
*/
|
2006-11-02 16:19:21 +00:00
|
|
|
struct connection *othercon;
|
2022-11-17 22:11:57 +00:00
|
|
|
struct work_struct rwork; /* receive worker */
|
|
|
|
struct work_struct swork; /* send worker */
|
2023-01-12 22:18:42 +00:00
|
|
|
wait_queue_head_t shutdown_wait;
|
2022-11-17 22:11:57 +00:00
|
|
|
unsigned char rx_leftover_buf[DLM_MAX_SOCKET_BUFSIZE];
|
2020-09-24 14:31:26 +00:00
|
|
|
int rx_leftover;
|
2022-11-17 22:11:53 +00:00
|
|
|
int mark;
|
|
|
|
int addr_count;
|
|
|
|
int curr_addr_index;
|
|
|
|
struct sockaddr_storage addr[DLM_MAX_ADDR_COUNT];
|
|
|
|
spinlock_t addrs_lock;
|
2020-08-27 19:02:49 +00:00
|
|
|
struct rcu_head rcu;
|
2006-11-02 16:19:21 +00:00
|
|
|
};
|
|
|
|
#define sock2con(x) ((struct connection *)(x)->sk_user_data)
|
|
|
|
|
2020-11-03 01:04:25 +00:00
|
|
|
struct listen_connection {
|
|
|
|
struct socket *sock;
|
|
|
|
struct work_struct rwork;
|
|
|
|
};
|
|
|
|
|
2021-03-01 22:05:16 +00:00
|
|
|
#define DLM_WQ_REMAIN_BYTES(e) (PAGE_SIZE - e->end)
|
|
|
|
#define DLM_WQ_LENGTH_BYTES(e) (e->end - e->offset)
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* An entry waiting to be sent */
|
|
|
|
struct writequeue_entry {
|
|
|
|
struct list_head list;
|
|
|
|
struct page *page;
|
|
|
|
int offset;
|
|
|
|
int len;
|
|
|
|
int end;
|
|
|
|
int users;
|
2021-05-21 19:08:48 +00:00
|
|
|
bool dirty;
|
2006-11-02 16:19:21 +00:00
|
|
|
struct connection *con;
|
2021-05-21 19:08:42 +00:00
|
|
|
struct list_head msgs;
|
|
|
|
struct kref ref;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dlm_msg {
|
|
|
|
struct writequeue_entry *entry;
|
2021-05-21 19:08:43 +00:00
|
|
|
struct dlm_msg *orig_msg;
|
|
|
|
bool retransmit;
|
2021-05-21 19:08:42 +00:00
|
|
|
void *ppc;
|
|
|
|
int len;
|
|
|
|
int idx; /* new()/commit() idx exchange */
|
|
|
|
|
|
|
|
struct list_head list;
|
|
|
|
struct kref ref;
|
2006-11-02 16:19:21 +00:00
|
|
|
};
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
struct processqueue_entry {
|
|
|
|
unsigned char *buf;
|
|
|
|
int nodeid;
|
|
|
|
int buflen;
|
|
|
|
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2021-07-16 20:22:40 +00:00
|
|
|
struct dlm_proto_ops {
|
2021-07-16 20:22:43 +00:00
|
|
|
bool try_new_addr;
|
2021-07-16 20:22:41 +00:00
|
|
|
const char *name;
|
|
|
|
int proto;
|
|
|
|
|
2021-07-16 20:22:43 +00:00
|
|
|
void (*sockopts)(struct socket *sock);
|
|
|
|
int (*bind)(struct socket *sock);
|
2021-07-16 20:22:41 +00:00
|
|
|
int (*listen_validate)(void);
|
|
|
|
void (*listen_sockopts)(struct socket *sock);
|
|
|
|
int (*listen_bind)(struct socket *sock);
|
2021-07-16 20:22:40 +00:00
|
|
|
};
|
|
|
|
|
DLM: Fix saving of NULL callbacks
In a previous patch I noted that accept() often copies the struct
sock (sk) which overwrites the sock callbacks. However, in testing
we discovered that the dlm connection structures (con) are sometimes
deleted and recreated as connections come and go, and since they're
zeroed out by kmem_cache_zalloc, the saved callback pointers are
also initialized to zero. But with today's DLM code, the callbacks
are only saved when a socket is added.
During recovery testing, we discovered a common situation in which
the new con is initialized to zero, then a socket is added after
accept(). In this case, the sock's saved values are all NULL, but
the saved values are wiped out, due to accept(). Therefore, we
don't have a known good copy of the callbacks from which we can
restore.
Since the struct sock callbacks are always good after listen(),
this patch saves the known good values after listen(). These good
values are then used for subsequent restores.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Reviewed-by: Tadashi Miyauchi <miyauchi@toshiba-tops.co.jp>
Signed-off-by: David Teigland <teigland@redhat.com>
2017-09-12 08:55:23 +00:00
|
|
|
static struct listen_sock_callbacks {
|
|
|
|
void (*sk_error_report)(struct sock *);
|
|
|
|
void (*sk_data_ready)(struct sock *);
|
|
|
|
void (*sk_state_change)(struct sock *);
|
|
|
|
void (*sk_write_space)(struct sock *);
|
|
|
|
} listen_sock;
|
|
|
|
|
2020-11-03 01:04:25 +00:00
|
|
|
static struct listen_connection listen_con;
|
2022-11-17 22:11:52 +00:00
|
|
|
static struct sockaddr_storage dlm_local_addr[DLM_MAX_ADDR_COUNT];
|
2007-04-17 14:39:57 +00:00
|
|
|
static int dlm_local_count;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2007-01-15 14:33:34 +00:00
|
|
|
/* Work queues */
|
2022-11-17 22:11:57 +00:00
|
|
|
static struct workqueue_struct *io_workqueue;
|
|
|
|
static struct workqueue_struct *process_workqueue;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2009-01-28 18:57:40 +00:00
|
|
|
static struct hlist_head connection_hash[CONN_HASH_SIZE];
|
2020-08-27 19:02:49 +00:00
|
|
|
static DEFINE_SPINLOCK(connections_lock);
|
|
|
|
DEFINE_STATIC_SRCU(connections_srcu);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2021-07-16 20:22:40 +00:00
|
|
|
static const struct dlm_proto_ops *dlm_proto_ops;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
#define DLM_IO_SUCCESS 0
|
|
|
|
#define DLM_IO_END 1
|
|
|
|
#define DLM_IO_EOF 2
|
|
|
|
#define DLM_IO_RESCHED 3
|
2023-10-10 22:04:48 +00:00
|
|
|
#define DLM_IO_FLUSH 4
|
2022-11-17 22:11:57 +00:00
|
|
|
|
2007-01-15 14:33:34 +00:00
|
|
|
static void process_recv_sockets(struct work_struct *work);
|
|
|
|
static void process_send_sockets(struct work_struct *work);
|
2022-11-17 22:11:57 +00:00
|
|
|
static void process_dlm_messages(struct work_struct *work);
|
|
|
|
|
|
|
|
static DECLARE_WORK(process_work, process_dlm_messages);
|
|
|
|
static DEFINE_SPINLOCK(processqueue_lock);
|
|
|
|
static bool process_dlm_messages_pending;
|
2024-04-02 19:18:10 +00:00
|
|
|
static DECLARE_WAIT_QUEUE_HEAD(processqueue_wq);
|
2023-10-10 22:04:48 +00:00
|
|
|
static atomic_t processqueue_count;
|
2022-11-17 22:11:57 +00:00
|
|
|
static LIST_HEAD(processqueue);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:49 +00:00
|
|
|
bool dlm_lowcomms_is_running(void)
|
|
|
|
{
|
|
|
|
return !!listen_con.sock;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static void lowcomms_queue_swork(struct connection *con)
|
|
|
|
{
|
2022-11-22 14:48:01 +00:00
|
|
|
assert_spin_locked(&con->writequeue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
|
|
|
|
if (!test_bit(CF_IO_STOP, &con->flags) &&
|
|
|
|
!test_bit(CF_APP_LIMITED, &con->flags) &&
|
|
|
|
!test_and_set_bit(CF_SEND_PENDING, &con->flags))
|
|
|
|
queue_work(io_workqueue, &con->swork);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void lowcomms_queue_rwork(struct connection *con)
|
|
|
|
{
|
2022-11-22 14:48:01 +00:00
|
|
|
#ifdef CONFIG_LOCKDEP
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(!lockdep_sock_is_held(con->sock->sk));
|
2022-11-22 14:48:01 +00:00
|
|
|
#endif
|
2022-11-17 22:11:57 +00:00
|
|
|
|
|
|
|
if (!test_bit(CF_IO_STOP, &con->flags) &&
|
|
|
|
!test_and_set_bit(CF_RECV_PENDING, &con->flags))
|
|
|
|
queue_work(io_workqueue, &con->rwork);
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:19 +00:00
|
|
|
static void writequeue_entry_ctor(void *data)
|
|
|
|
{
|
|
|
|
struct writequeue_entry *entry = data;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&entry->msgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct kmem_cache *dlm_lowcomms_writequeue_cache_create(void)
|
|
|
|
{
|
|
|
|
return kmem_cache_create("dlm_writequeue", sizeof(struct writequeue_entry),
|
|
|
|
0, 0, writequeue_entry_ctor);
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:20 +00:00
|
|
|
struct kmem_cache *dlm_lowcomms_msg_cache_create(void)
|
|
|
|
{
|
2024-04-02 19:17:56 +00:00
|
|
|
return KMEM_CACHE(dlm_msg, 0);
|
2021-11-30 19:47:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:39 +00:00
|
|
|
/* need to held writequeue_lock */
|
|
|
|
static struct writequeue_entry *con_next_wq(struct connection *con)
|
|
|
|
{
|
|
|
|
struct writequeue_entry *e;
|
|
|
|
|
2022-11-17 22:11:48 +00:00
|
|
|
e = list_first_entry_or_null(&con->writequeue, struct writequeue_entry,
|
|
|
|
list);
|
2021-11-30 19:47:15 +00:00
|
|
|
/* if len is zero nothing is to send, if there are users filling
|
|
|
|
* buffers we wait until the users are done so we can send more.
|
|
|
|
*/
|
2022-11-17 22:11:48 +00:00
|
|
|
if (!e || e->users || e->len == 0)
|
2021-07-16 20:22:39 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
static struct connection *__find_con(int nodeid, int r)
|
2009-01-28 18:57:40 +00:00
|
|
|
{
|
|
|
|
struct connection *con;
|
|
|
|
|
2020-08-27 19:02:49 +00:00
|
|
|
hlist_for_each_entry_rcu(con, &connection_hash[r], list) {
|
2021-05-21 19:08:35 +00:00
|
|
|
if (con->nodeid == nodeid)
|
2009-01-28 18:57:40 +00:00
|
|
|
return con;
|
|
|
|
}
|
2020-08-27 19:02:49 +00:00
|
|
|
|
2009-01-28 18:57:40 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static void dlm_con_init(struct connection *con, int nodeid)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2007-04-17 14:39:57 +00:00
|
|
|
con->nodeid = nodeid;
|
2022-11-17 22:11:57 +00:00
|
|
|
init_rwsem(&con->sock_lock);
|
2007-04-17 14:39:57 +00:00
|
|
|
INIT_LIST_HEAD(&con->writequeue);
|
|
|
|
spin_lock_init(&con->writequeue_lock);
|
|
|
|
INIT_WORK(&con->swork, process_send_sockets);
|
|
|
|
INIT_WORK(&con->rwork, process_recv_sockets);
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_init(&con->addrs_lock);
|
2023-01-12 22:18:42 +00:00
|
|
|
init_waitqueue_head(&con->shutdown_wait);
|
2020-11-03 01:04:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If 'allocation' is zero then we don't attempt to create a new
|
|
|
|
* connection structure for this node.
|
|
|
|
*/
|
|
|
|
static struct connection *nodeid2con(int nodeid, gfp_t alloc)
|
|
|
|
{
|
|
|
|
struct connection *con, *tmp;
|
2022-11-17 22:11:57 +00:00
|
|
|
int r;
|
2020-11-03 01:04:21 +00:00
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
r = nodeid_hash(nodeid);
|
|
|
|
con = __find_con(nodeid, r);
|
2020-11-03 01:04:21 +00:00
|
|
|
if (con || !alloc)
|
|
|
|
return con;
|
|
|
|
|
|
|
|
con = kzalloc(sizeof(*con), alloc);
|
|
|
|
if (!con)
|
|
|
|
return NULL;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
dlm_con_init(con, nodeid);
|
2020-11-03 01:04:21 +00:00
|
|
|
|
2020-08-27 19:02:49 +00:00
|
|
|
spin_lock(&connections_lock);
|
2020-09-30 22:37:29 +00:00
|
|
|
/* Because multiple workqueues/threads calls this function it can
|
|
|
|
* race on multiple cpu's. Instead of locking hot path __find_con()
|
|
|
|
* we just check in rare cases of recently added nodes again
|
|
|
|
* under protection of connections_lock. If this is the case we
|
|
|
|
* abort our connection creation and return the existing connection.
|
|
|
|
*/
|
2021-05-21 19:08:35 +00:00
|
|
|
tmp = __find_con(nodeid, r);
|
2020-09-30 22:37:29 +00:00
|
|
|
if (tmp) {
|
|
|
|
spin_unlock(&connections_lock);
|
|
|
|
kfree(con);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2020-08-27 19:02:49 +00:00
|
|
|
hlist_add_head_rcu(&con->list, &connection_hash[r]);
|
|
|
|
spin_unlock(&connections_lock);
|
|
|
|
|
2007-04-17 14:39:57 +00:00
|
|
|
return con;
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:04:27 +00:00
|
|
|
static int addr_compare(const struct sockaddr_storage *x,
|
|
|
|
const struct sockaddr_storage *y)
|
2007-04-17 14:39:57 +00:00
|
|
|
{
|
2012-07-26 17:44:30 +00:00
|
|
|
switch (x->ss_family) {
|
|
|
|
case AF_INET: {
|
|
|
|
struct sockaddr_in *sinx = (struct sockaddr_in *)x;
|
|
|
|
struct sockaddr_in *siny = (struct sockaddr_in *)y;
|
|
|
|
if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr)
|
|
|
|
return 0;
|
|
|
|
if (sinx->sin_port != siny->sin_port)
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AF_INET6: {
|
|
|
|
struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x;
|
|
|
|
struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y;
|
|
|
|
if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr))
|
|
|
|
return 0;
|
|
|
|
if (sinx->sin6_port != siny->sin6_port)
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nodeid_to_addr(int nodeid, struct sockaddr_storage *sas_out,
|
2021-03-01 22:05:09 +00:00
|
|
|
struct sockaddr *sa_out, bool try_new_addr,
|
|
|
|
unsigned int *mark)
|
2012-07-26 17:44:30 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_storage sas;
|
2022-11-17 22:11:53 +00:00
|
|
|
struct connection *con;
|
|
|
|
int idx;
|
2007-04-17 14:39:57 +00:00
|
|
|
|
|
|
|
if (!dlm_local_count)
|
|
|
|
return -1;
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
|
|
|
con = nodeid2con(nodeid, 0);
|
|
|
|
if (!con) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
2015-08-11 22:22:23 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_lock(&con->addrs_lock);
|
|
|
|
if (!con->addr_count) {
|
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
return -ENOENT;
|
2013-06-14 09:56:12 +00:00
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
memcpy(&sas, &con->addr[con->curr_addr_index],
|
|
|
|
sizeof(struct sockaddr_storage));
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
if (try_new_addr) {
|
|
|
|
con->curr_addr_index++;
|
|
|
|
if (con->curr_addr_index == con->addr_count)
|
|
|
|
con->curr_addr_index = 0;
|
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
*mark = con->mark;
|
|
|
|
spin_unlock(&con->addrs_lock);
|
2021-03-01 22:05:09 +00:00
|
|
|
|
2012-07-26 17:44:30 +00:00
|
|
|
if (sas_out)
|
|
|
|
memcpy(sas_out, &sas, sizeof(struct sockaddr_storage));
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
if (!sa_out) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
return 0;
|
2022-11-17 22:11:53 +00:00
|
|
|
}
|
2007-04-17 14:39:57 +00:00
|
|
|
|
2022-11-17 22:11:52 +00:00
|
|
|
if (dlm_local_addr[0].ss_family == AF_INET) {
|
2012-07-26 17:44:30 +00:00
|
|
|
struct sockaddr_in *in4 = (struct sockaddr_in *) &sas;
|
|
|
|
struct sockaddr_in *ret4 = (struct sockaddr_in *) sa_out;
|
2007-04-17 14:39:57 +00:00
|
|
|
ret4->sin_addr.s_addr = in4->sin_addr.s_addr;
|
|
|
|
} else {
|
2012-07-26 17:44:30 +00:00
|
|
|
struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &sas;
|
|
|
|
struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) sa_out;
|
2011-11-21 03:39:03 +00:00
|
|
|
ret6->sin6_addr = in6->sin6_addr;
|
2007-04-17 14:39:57 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2007-04-17 14:39:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-01 22:05:09 +00:00
|
|
|
static int addr_to_nodeid(struct sockaddr_storage *addr, int *nodeid,
|
|
|
|
unsigned int *mark)
|
2012-07-26 17:44:30 +00:00
|
|
|
{
|
2022-11-17 22:11:53 +00:00
|
|
|
struct connection *con;
|
|
|
|
int i, idx, addr_i;
|
|
|
|
|
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
|
|
|
for (i = 0; i < CONN_HASH_SIZE; i++) {
|
|
|
|
hlist_for_each_entry_rcu(con, &connection_hash[i], list) {
|
|
|
|
WARN_ON_ONCE(!con->addr_count);
|
|
|
|
|
|
|
|
spin_lock(&con->addrs_lock);
|
|
|
|
for (addr_i = 0; addr_i < con->addr_count; addr_i++) {
|
|
|
|
if (addr_compare(&con->addr[addr_i], addr)) {
|
|
|
|
*nodeid = con->nodeid;
|
|
|
|
*mark = con->mark;
|
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-06-14 09:56:12 +00:00
|
|
|
}
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_unlock(&con->addrs_lock);
|
2013-06-14 09:56:12 +00:00
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
}
|
2022-11-17 22:11:53 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
|
|
|
|
return -ENOENT;
|
2012-07-26 17:44:30 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
static bool dlm_lowcomms_con_has_addr(const struct connection *con,
|
|
|
|
const struct sockaddr_storage *addr)
|
2020-11-03 01:04:28 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
for (i = 0; i < con->addr_count; i++) {
|
|
|
|
if (addr_compare(&con->addr[i], addr))
|
2020-11-03 01:04:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-05-28 21:12:33 +00:00
|
|
|
int dlm_lowcomms_addr(int nodeid, struct sockaddr_storage *addr)
|
2012-07-26 17:44:30 +00:00
|
|
|
{
|
2022-11-17 22:11:53 +00:00
|
|
|
struct connection *con;
|
|
|
|
bool ret, idx;
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
|
|
|
con = nodeid2con(nodeid, GFP_NOFS);
|
|
|
|
if (!con) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_lock(&con->addrs_lock);
|
|
|
|
if (!con->addr_count) {
|
|
|
|
memcpy(&con->addr[0], addr, sizeof(*addr));
|
|
|
|
con->addr_count = 1;
|
|
|
|
con->mark = dlm_config.ci_mark;
|
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
ret = dlm_lowcomms_con_has_addr(con, addr);
|
2020-11-03 01:04:28 +00:00
|
|
|
if (ret) {
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2020-11-03 01:04:28 +00:00
|
|
|
return -EEXIST;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
if (con->addr_count >= DLM_MAX_ADDR_COUNT) {
|
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
return -ENOSPC;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
memcpy(&con->addr[con->addr_count++], addr, sizeof(*addr));
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
spin_unlock(&con->addrs_lock);
|
2012-07-26 17:44:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Data available on socket or listen socket received a connect */
|
2014-04-11 20:15:36 +00:00
|
|
|
static void lowcomms_data_ready(struct sock *sk)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2022-11-17 22:11:54 +00:00
|
|
|
struct connection *con = sock2con(sk);
|
2017-09-12 09:01:55 +00:00
|
|
|
|
2023-01-20 00:45:16 +00:00
|
|
|
trace_sk_data_ready(sk);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
set_bit(CF_RECV_INTR, &con->flags);
|
|
|
|
lowcomms_queue_rwork(con);
|
2020-11-03 01:04:25 +00:00
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
static void lowcomms_write_space(struct sock *sk)
|
|
|
|
{
|
2022-11-17 22:11:54 +00:00
|
|
|
struct connection *con = sock2con(sk);
|
2010-11-11 05:56:39 +00:00
|
|
|
|
|
|
|
clear_bit(SOCK_NOSPACE, &con->sock->flags);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
2010-11-11 05:56:39 +00:00
|
|
|
if (test_and_clear_bit(CF_APP_LIMITED, &con->flags)) {
|
|
|
|
con->sock->sk->sk_write_pending--;
|
2015-11-30 04:03:10 +00:00
|
|
|
clear_bit(SOCKWQ_ASYNC_NOSPACE, &con->sock->flags);
|
2010-11-11 05:56:39 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
lowcomms_queue_swork(con);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void lowcomms_state_change(struct sock *sk)
|
|
|
|
{
|
2015-08-11 22:22:23 +00:00
|
|
|
/* SCTP layer is not calling sk_data_ready when the connection
|
2022-11-17 22:11:57 +00:00
|
|
|
* is done, so we catch the signal through here.
|
2015-08-11 22:22:23 +00:00
|
|
|
*/
|
2022-11-17 22:11:57 +00:00
|
|
|
if (sk->sk_shutdown == RCV_SHUTDOWN)
|
|
|
|
lowcomms_data_ready(sk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void lowcomms_listen_data_ready(struct sock *sk)
|
|
|
|
{
|
2023-01-20 00:45:16 +00:00
|
|
|
trace_sk_data_ready(sk);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
queue_work(io_workqueue, &listen_con.rwork);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2009-05-07 15:54:16 +00:00
|
|
|
int dlm_lowcomms_connect_node(int nodeid)
|
|
|
|
{
|
|
|
|
struct connection *con;
|
2021-05-21 19:08:35 +00:00
|
|
|
int idx;
|
2009-05-07 15:54:16 +00:00
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
2022-11-17 22:11:53 +00:00
|
|
|
con = nodeid2con(nodeid, 0);
|
|
|
|
if (WARN_ON_ONCE(!con)) {
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2022-11-17 22:11:53 +00:00
|
|
|
return -ENOENT;
|
2021-05-21 19:08:35 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
down_read(&con->sock_lock);
|
|
|
|
if (!con->sock) {
|
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
lowcomms_queue_swork(con);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
}
|
|
|
|
up_read(&con->sock_lock);
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
cond_resched();
|
2009-05-07 15:54:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-01 22:05:09 +00:00
|
|
|
int dlm_lowcomms_nodes_set_mark(int nodeid, unsigned int mark)
|
|
|
|
{
|
2022-11-17 22:11:53 +00:00
|
|
|
struct connection *con;
|
|
|
|
int idx;
|
2021-03-01 22:05:09 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
|
|
|
con = nodeid2con(nodeid, 0);
|
|
|
|
if (!con) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2021-03-01 22:05:09 +00:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_lock(&con->addrs_lock);
|
|
|
|
con->mark = mark;
|
|
|
|
spin_unlock(&con->addrs_lock);
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2021-03-01 22:05:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-27 14:34:47 +00:00
|
|
|
static void lowcomms_error_report(struct sock *sk)
|
|
|
|
{
|
2022-11-17 22:11:54 +00:00
|
|
|
struct connection *con = sock2con(sk);
|
2021-11-15 13:57:05 +00:00
|
|
|
struct inet_sock *inet;
|
2015-08-27 14:34:47 +00:00
|
|
|
|
2021-11-15 13:57:05 +00:00
|
|
|
inet = inet_sk(sk);
|
|
|
|
switch (sk->sk_family) {
|
|
|
|
case AF_INET:
|
2015-08-27 14:34:47 +00:00
|
|
|
printk_ratelimited(KERN_ERR "dlm: node %d: socket error "
|
2021-11-15 13:57:05 +00:00
|
|
|
"sending to node %d at %pI4, dport %d, "
|
2015-08-27 14:34:47 +00:00
|
|
|
"sk_err=%d/%d\n", dlm_our_nodeid(),
|
2021-11-15 13:57:05 +00:00
|
|
|
con->nodeid, &inet->inet_daddr,
|
|
|
|
ntohs(inet->inet_dport), sk->sk_err,
|
2023-03-15 20:57:43 +00:00
|
|
|
READ_ONCE(sk->sk_err_soft));
|
2021-11-15 13:57:05 +00:00
|
|
|
break;
|
2021-11-17 14:20:43 +00:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6)
|
2021-11-15 13:57:05 +00:00
|
|
|
case AF_INET6:
|
2015-08-27 14:34:47 +00:00
|
|
|
printk_ratelimited(KERN_ERR "dlm: node %d: socket error "
|
2021-11-15 13:57:05 +00:00
|
|
|
"sending to node %d at %pI6c, "
|
|
|
|
"dport %d, sk_err=%d/%d\n", dlm_our_nodeid(),
|
|
|
|
con->nodeid, &sk->sk_v6_daddr,
|
|
|
|
ntohs(inet->inet_dport), sk->sk_err,
|
2023-03-15 20:57:43 +00:00
|
|
|
READ_ONCE(sk->sk_err_soft));
|
2021-11-15 13:57:05 +00:00
|
|
|
break;
|
2021-11-17 14:20:43 +00:00
|
|
|
#endif
|
2021-11-15 13:57:05 +00:00
|
|
|
default:
|
|
|
|
printk_ratelimited(KERN_ERR "dlm: node %d: socket error "
|
|
|
|
"invalid socket family %d set, "
|
|
|
|
"sk_err=%d/%d\n", dlm_our_nodeid(),
|
2023-03-15 20:57:43 +00:00
|
|
|
sk->sk_family, sk->sk_err,
|
|
|
|
READ_ONCE(sk->sk_err_soft));
|
2021-05-21 19:08:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
dlm_midcomms_unack_msg_resend(con->nodeid);
|
2021-05-21 19:08:37 +00:00
|
|
|
|
2022-11-17 22:11:55 +00:00
|
|
|
listen_sock.sk_error_report(sk);
|
2016-02-05 19:39:02 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static void restore_callbacks(struct sock *sk)
|
2016-02-05 19:39:02 +00:00
|
|
|
{
|
2022-11-22 14:48:01 +00:00
|
|
|
#ifdef CONFIG_LOCKDEP
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(!lockdep_sock_is_held(sk));
|
2022-11-22 14:48:01 +00:00
|
|
|
#endif
|
DLM: Fix saving of NULL callbacks
In a previous patch I noted that accept() often copies the struct
sock (sk) which overwrites the sock callbacks. However, in testing
we discovered that the dlm connection structures (con) are sometimes
deleted and recreated as connections come and go, and since they're
zeroed out by kmem_cache_zalloc, the saved callback pointers are
also initialized to zero. But with today's DLM code, the callbacks
are only saved when a socket is added.
During recovery testing, we discovered a common situation in which
the new con is initialized to zero, then a socket is added after
accept(). In this case, the sock's saved values are all NULL, but
the saved values are wiped out, due to accept(). Therefore, we
don't have a known good copy of the callbacks from which we can
restore.
Since the struct sock callbacks are always good after listen(),
this patch saves the known good values after listen(). These good
values are then used for subsequent restores.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Reviewed-by: Tadashi Miyauchi <miyauchi@toshiba-tops.co.jp>
Signed-off-by: David Teigland <teigland@redhat.com>
2017-09-12 08:55:23 +00:00
|
|
|
|
2016-02-05 19:39:02 +00:00
|
|
|
sk->sk_user_data = NULL;
|
DLM: Fix saving of NULL callbacks
In a previous patch I noted that accept() often copies the struct
sock (sk) which overwrites the sock callbacks. However, in testing
we discovered that the dlm connection structures (con) are sometimes
deleted and recreated as connections come and go, and since they're
zeroed out by kmem_cache_zalloc, the saved callback pointers are
also initialized to zero. But with today's DLM code, the callbacks
are only saved when a socket is added.
During recovery testing, we discovered a common situation in which
the new con is initialized to zero, then a socket is added after
accept(). In this case, the sock's saved values are all NULL, but
the saved values are wiped out, due to accept(). Therefore, we
don't have a known good copy of the callbacks from which we can
restore.
Since the struct sock callbacks are always good after listen(),
this patch saves the known good values after listen(). These good
values are then used for subsequent restores.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Reviewed-by: Tadashi Miyauchi <miyauchi@toshiba-tops.co.jp>
Signed-off-by: David Teigland <teigland@redhat.com>
2017-09-12 08:55:23 +00:00
|
|
|
sk->sk_data_ready = listen_sock.sk_data_ready;
|
|
|
|
sk->sk_state_change = listen_sock.sk_state_change;
|
|
|
|
sk->sk_write_space = listen_sock.sk_write_space;
|
|
|
|
sk->sk_error_report = listen_sock.sk_error_report;
|
2015-08-27 14:34:47 +00:00
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Make a socket active */
|
2017-09-12 08:55:32 +00:00
|
|
|
static void add_sock(struct socket *sock, struct connection *con)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2016-02-05 19:39:02 +00:00
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
|
2021-11-15 13:57:06 +00:00
|
|
|
lock_sock(sk);
|
2006-11-02 16:19:21 +00:00
|
|
|
con->sock = sock;
|
|
|
|
|
2016-02-05 19:39:02 +00:00
|
|
|
sk->sk_user_data = con;
|
|
|
|
sk->sk_data_ready = lowcomms_data_ready;
|
|
|
|
sk->sk_write_space = lowcomms_write_space;
|
2022-11-17 22:11:57 +00:00
|
|
|
if (dlm_config.ci_protocol == DLM_PROTO_SCTP)
|
|
|
|
sk->sk_state_change = lowcomms_state_change;
|
2016-02-05 19:39:02 +00:00
|
|
|
sk->sk_allocation = GFP_NOFS;
|
2022-12-16 12:45:27 +00:00
|
|
|
sk->sk_use_task_frag = false;
|
2016-02-05 19:39:02 +00:00
|
|
|
sk->sk_error_report = lowcomms_error_report;
|
2021-11-15 13:57:06 +00:00
|
|
|
release_sock(sk);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2007-04-17 14:39:57 +00:00
|
|
|
/* Add the port number to an IPv6 or 4 sockaddr and return the address
|
2006-11-02 16:19:21 +00:00
|
|
|
length */
|
|
|
|
static void make_sockaddr(struct sockaddr_storage *saddr, uint16_t port,
|
|
|
|
int *addr_len)
|
|
|
|
{
|
2022-11-17 22:11:52 +00:00
|
|
|
saddr->ss_family = dlm_local_addr[0].ss_family;
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
if (saddr->ss_family == AF_INET) {
|
2006-11-02 16:19:21 +00:00
|
|
|
struct sockaddr_in *in4_addr = (struct sockaddr_in *)saddr;
|
|
|
|
in4_addr->sin_port = cpu_to_be16(port);
|
|
|
|
*addr_len = sizeof(struct sockaddr_in);
|
2007-04-17 14:39:57 +00:00
|
|
|
memset(&in4_addr->sin_zero, 0, sizeof(in4_addr->sin_zero));
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
} else {
|
2006-11-02 16:19:21 +00:00
|
|
|
struct sockaddr_in6 *in6_addr = (struct sockaddr_in6 *)saddr;
|
|
|
|
in6_addr->sin6_port = cpu_to_be16(port);
|
|
|
|
*addr_len = sizeof(struct sockaddr_in6);
|
|
|
|
}
|
2007-07-17 15:53:15 +00:00
|
|
|
memset((char *)saddr + *addr_len, 0, sizeof(struct sockaddr_storage) - *addr_len);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2021-05-21 19:08:48 +00:00
|
|
|
static void dlm_page_release(struct kref *kref)
|
|
|
|
{
|
|
|
|
struct writequeue_entry *e = container_of(kref, struct writequeue_entry,
|
|
|
|
ref);
|
|
|
|
|
|
|
|
__free_page(e->page);
|
2021-11-30 19:47:19 +00:00
|
|
|
dlm_free_writequeue(e);
|
2021-05-21 19:08:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dlm_msg_release(struct kref *kref)
|
|
|
|
{
|
|
|
|
struct dlm_msg *msg = container_of(kref, struct dlm_msg, ref);
|
|
|
|
|
|
|
|
kref_put(&msg->entry->ref, dlm_page_release);
|
2021-11-30 19:47:20 +00:00
|
|
|
dlm_free_msg(msg);
|
2021-05-21 19:08:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_entry(struct writequeue_entry *e)
|
|
|
|
{
|
|
|
|
struct dlm_msg *msg, *tmp;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(msg, tmp, &e->msgs, list) {
|
|
|
|
if (msg->orig_msg) {
|
|
|
|
msg->orig_msg->retransmit = false;
|
|
|
|
kref_put(&msg->orig_msg->ref, dlm_msg_release);
|
|
|
|
}
|
|
|
|
|
|
|
|
list_del(&msg->list);
|
|
|
|
kref_put(&msg->ref, dlm_msg_release);
|
|
|
|
}
|
|
|
|
|
|
|
|
list_del(&e->list);
|
|
|
|
kref_put(&e->ref, dlm_page_release);
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:04:25 +00:00
|
|
|
static void dlm_close_sock(struct socket **sock)
|
|
|
|
{
|
2022-11-17 22:11:57 +00:00
|
|
|
lock_sock((*sock)->sk);
|
|
|
|
restore_callbacks((*sock)->sk);
|
|
|
|
release_sock((*sock)->sk);
|
|
|
|
|
|
|
|
sock_release(*sock);
|
|
|
|
*sock = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void allow_connection_io(struct connection *con)
|
|
|
|
{
|
|
|
|
if (con->othercon)
|
|
|
|
clear_bit(CF_IO_STOP, &con->othercon->flags);
|
|
|
|
clear_bit(CF_IO_STOP, &con->flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void stop_connection_io(struct connection *con)
|
|
|
|
{
|
|
|
|
if (con->othercon)
|
|
|
|
stop_connection_io(con->othercon);
|
|
|
|
|
2023-05-29 21:44:34 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
set_bit(CF_IO_STOP, &con->flags);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
down_write(&con->sock_lock);
|
|
|
|
if (con->sock) {
|
|
|
|
lock_sock(con->sock->sk);
|
|
|
|
restore_callbacks(con->sock->sk);
|
|
|
|
release_sock(con->sock->sk);
|
2020-11-03 01:04:25 +00:00
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
up_write(&con->sock_lock);
|
|
|
|
|
|
|
|
cancel_work_sync(&con->swork);
|
|
|
|
cancel_work_sync(&con->rwork);
|
2020-11-03 01:04:25 +00:00
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Close a remote connection and tidy up */
|
2022-11-17 22:11:57 +00:00
|
|
|
static void close_connection(struct connection *con, bool and_other)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2021-05-21 19:08:48 +00:00
|
|
|
struct writequeue_entry *e;
|
2017-09-12 08:55:50 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
if (con->othercon && and_other)
|
|
|
|
close_connection(con->othercon, false);
|
|
|
|
|
|
|
|
down_write(&con->sock_lock);
|
|
|
|
if (!con->sock) {
|
|
|
|
up_write(&con->sock_lock);
|
|
|
|
return;
|
2017-09-12 09:02:02 +00:00
|
|
|
}
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2020-11-03 01:04:25 +00:00
|
|
|
dlm_close_sock(&con->sock);
|
|
|
|
|
2021-05-21 19:08:48 +00:00
|
|
|
/* if we send a writequeue entry only a half way, we drop the
|
|
|
|
* whole entry because reconnection and that we not start of the
|
|
|
|
* middle of a msg which will confuse the other end.
|
|
|
|
*
|
|
|
|
* we can always drop messages because retransmits, but what we
|
|
|
|
* cannot allow is to transmit half messages which may be processed
|
|
|
|
* at the other side.
|
|
|
|
*
|
|
|
|
* our policy is to start on a clean state when disconnects, we don't
|
|
|
|
* know what's send/received on transport layer in this case.
|
|
|
|
*/
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
2021-05-21 19:08:48 +00:00
|
|
|
if (!list_empty(&con->writequeue)) {
|
|
|
|
e = list_first_entry(&con->writequeue, struct writequeue_entry,
|
|
|
|
list);
|
|
|
|
if (e->dirty)
|
|
|
|
free_entry(e);
|
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2021-05-21 19:08:48 +00:00
|
|
|
|
2020-09-24 14:31:26 +00:00
|
|
|
con->rx_leftover = 0;
|
2007-08-20 14:13:38 +00:00
|
|
|
con->retries = 0;
|
2021-07-16 20:22:37 +00:00
|
|
|
clear_bit(CF_APP_LIMITED, &con->flags);
|
2022-11-17 22:11:57 +00:00
|
|
|
clear_bit(CF_RECV_PENDING, &con->flags);
|
|
|
|
clear_bit(CF_SEND_PENDING, &con->flags);
|
|
|
|
up_write(&con->sock_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 22:18:42 +00:00
|
|
|
static void shutdown_connection(struct connection *con, bool and_other)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (con->othercon && and_other)
|
|
|
|
shutdown_connection(con->othercon, false);
|
|
|
|
|
|
|
|
flush_workqueue(io_workqueue);
|
|
|
|
down_read(&con->sock_lock);
|
|
|
|
/* nothing to shutdown */
|
|
|
|
if (!con->sock) {
|
|
|
|
up_read(&con->sock_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = kernel_sock_shutdown(con->sock, SHUT_WR);
|
|
|
|
up_read(&con->sock_lock);
|
|
|
|
if (ret) {
|
|
|
|
log_print("Connection %p failed to shutdown: %d will force close",
|
|
|
|
con, ret);
|
|
|
|
goto force_close;
|
|
|
|
} else {
|
|
|
|
ret = wait_event_timeout(con->shutdown_wait, !con->sock,
|
|
|
|
DLM_SHUTDOWN_WAIT_TIMEOUT);
|
|
|
|
if (ret == 0) {
|
|
|
|
log_print("Connection %p shutdown timed out, will force close",
|
|
|
|
con);
|
|
|
|
goto force_close;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
force_close:
|
|
|
|
close_connection(con, false);
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static struct processqueue_entry *new_processqueue_entry(int nodeid,
|
|
|
|
int buflen)
|
2020-09-24 14:31:26 +00:00
|
|
|
{
|
2022-11-17 22:11:57 +00:00
|
|
|
struct processqueue_entry *pentry;
|
2020-09-24 14:31:26 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry = kmalloc(sizeof(*pentry), GFP_NOFS);
|
|
|
|
if (!pentry)
|
|
|
|
return NULL;
|
2020-09-24 14:31:26 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry->buf = kmalloc(buflen, GFP_NOFS);
|
|
|
|
if (!pentry->buf) {
|
|
|
|
kfree(pentry);
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-09-24 14:31:26 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry->nodeid = nodeid;
|
|
|
|
return pentry;
|
2020-09-24 14:31:26 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static void free_processqueue_entry(struct processqueue_entry *pentry)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2022-11-17 22:11:57 +00:00
|
|
|
kfree(pentry->buf);
|
|
|
|
kfree(pentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void process_dlm_messages(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct processqueue_entry *pentry;
|
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_lock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry = list_first_entry_or_null(&processqueue,
|
|
|
|
struct processqueue_entry, list);
|
|
|
|
if (WARN_ON_ONCE(!pentry)) {
|
2023-05-29 21:44:31 +00:00
|
|
|
process_dlm_messages_pending = false;
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
return;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
list_del(&pentry->list);
|
2024-04-02 19:18:10 +00:00
|
|
|
if (atomic_dec_and_test(&processqueue_count))
|
|
|
|
wake_up(&processqueue_wq);
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
|
2021-07-16 20:22:45 +00:00
|
|
|
for (;;) {
|
2022-11-17 22:11:57 +00:00
|
|
|
dlm_process_incoming_buffer(pentry->nodeid, pentry->buf,
|
|
|
|
pentry->buflen);
|
|
|
|
free_processqueue_entry(pentry);
|
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_lock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry = list_first_entry_or_null(&processqueue,
|
|
|
|
struct processqueue_entry, list);
|
|
|
|
if (!pentry) {
|
|
|
|
process_dlm_messages_pending = false;
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&processqueue_lock);
|
2021-07-16 20:22:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
|
|
|
|
list_del(&pentry->list);
|
2024-04-02 19:18:10 +00:00
|
|
|
if (atomic_dec_and_test(&processqueue_count))
|
|
|
|
wake_up(&processqueue_wq);
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Data received from remote end */
|
|
|
|
static int receive_from_sock(struct connection *con, int buflen)
|
|
|
|
{
|
|
|
|
struct processqueue_entry *pentry;
|
|
|
|
int ret, buflen_real;
|
|
|
|
struct msghdr msg;
|
|
|
|
struct kvec iov;
|
|
|
|
|
|
|
|
pentry = new_processqueue_entry(con->nodeid, buflen);
|
|
|
|
if (!pentry)
|
|
|
|
return DLM_IO_RESCHED;
|
|
|
|
|
|
|
|
memcpy(pentry->buf, con->rx_leftover_buf, con->rx_leftover);
|
|
|
|
|
|
|
|
/* calculate new buffer parameter regarding last receive and
|
|
|
|
* possible leftover bytes
|
|
|
|
*/
|
|
|
|
iov.iov_base = pentry->buf + con->rx_leftover;
|
|
|
|
iov.iov_len = buflen - con->rx_leftover;
|
|
|
|
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
|
|
|
msg.msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
|
|
|
|
clear_bit(CF_RECV_INTR, &con->flags);
|
|
|
|
again:
|
|
|
|
ret = kernel_recvmsg(con->sock, &msg, &iov, 1, iov.iov_len,
|
|
|
|
msg.msg_flags);
|
|
|
|
trace_dlm_recv(con->nodeid, ret);
|
|
|
|
if (ret == -EAGAIN) {
|
|
|
|
lock_sock(con->sock->sk);
|
|
|
|
if (test_and_clear_bit(CF_RECV_INTR, &con->flags)) {
|
|
|
|
release_sock(con->sock->sk);
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear_bit(CF_RECV_PENDING, &con->flags);
|
|
|
|
release_sock(con->sock->sk);
|
|
|
|
free_processqueue_entry(pentry);
|
|
|
|
return DLM_IO_END;
|
|
|
|
} else if (ret == 0) {
|
|
|
|
/* close will clear CF_RECV_PENDING */
|
|
|
|
free_processqueue_entry(pentry);
|
|
|
|
return DLM_IO_EOF;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
free_processqueue_entry(pentry);
|
|
|
|
return ret;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* new buflen according readed bytes and leftover from last receive */
|
|
|
|
buflen_real = ret + con->rx_leftover;
|
|
|
|
ret = dlm_validate_incoming_buffer(con->nodeid, pentry->buf,
|
|
|
|
buflen_real);
|
|
|
|
if (ret < 0) {
|
|
|
|
free_processqueue_entry(pentry);
|
|
|
|
return ret;
|
|
|
|
}
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
pentry->buflen = ret;
|
|
|
|
|
|
|
|
/* calculate leftover bytes from process and put it into begin of
|
|
|
|
* the receive buffer, so next receive we have the full message
|
|
|
|
* at the start address of the receive buffer.
|
|
|
|
*/
|
|
|
|
con->rx_leftover = buflen_real - ret;
|
|
|
|
memmove(con->rx_leftover_buf, pentry->buf + ret,
|
|
|
|
con->rx_leftover);
|
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_lock_bh(&processqueue_lock);
|
2023-10-10 22:04:48 +00:00
|
|
|
ret = atomic_inc_return(&processqueue_count);
|
2022-11-17 22:11:57 +00:00
|
|
|
list_add_tail(&pentry->list, &processqueue);
|
|
|
|
if (!process_dlm_messages_pending) {
|
|
|
|
process_dlm_messages_pending = true;
|
|
|
|
queue_work(process_workqueue, &process_work);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&processqueue_lock);
|
2022-11-17 22:11:57 +00:00
|
|
|
|
2023-10-10 22:04:48 +00:00
|
|
|
if (ret > DLM_MAX_PROCESS_BUFFERS)
|
|
|
|
return DLM_IO_FLUSH;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
return DLM_IO_SUCCESS;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Listening socket is busy, accept a connection */
|
2022-11-17 22:11:57 +00:00
|
|
|
static int accept_from_sock(void)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_storage peeraddr;
|
2022-11-17 22:11:57 +00:00
|
|
|
int len, idx, result, nodeid;
|
2006-11-02 16:19:21 +00:00
|
|
|
struct connection *newcon;
|
2022-11-17 22:11:57 +00:00
|
|
|
struct socket *newsock;
|
2020-09-24 14:31:23 +00:00
|
|
|
unsigned int mark;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
result = kernel_accept(listen_con.sock, &newsock, O_NONBLOCK);
|
|
|
|
if (result == -EAGAIN)
|
|
|
|
return DLM_IO_END;
|
|
|
|
else if (result < 0)
|
2006-11-02 16:19:21 +00:00
|
|
|
goto accept_err;
|
|
|
|
|
|
|
|
/* Get the connected socket's peer */
|
|
|
|
memset(&peeraddr, 0, sizeof(peeraddr));
|
2018-02-12 19:00:20 +00:00
|
|
|
len = newsock->ops->getname(newsock, (struct sockaddr *)&peeraddr, 2);
|
|
|
|
if (len < 0) {
|
2006-11-02 16:19:21 +00:00
|
|
|
result = -ECONNABORTED;
|
|
|
|
goto accept_err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the new node's NODEID */
|
|
|
|
make_sockaddr(&peeraddr, 0, &len);
|
2021-03-01 22:05:09 +00:00
|
|
|
if (addr_to_nodeid(&peeraddr, &nodeid, &mark)) {
|
2022-01-04 14:09:47 +00:00
|
|
|
switch (peeraddr.ss_family) {
|
|
|
|
case AF_INET: {
|
|
|
|
struct sockaddr_in *sin = (struct sockaddr_in *)&peeraddr;
|
|
|
|
|
|
|
|
log_print("connect from non cluster IPv4 node %pI4",
|
|
|
|
&sin->sin_addr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_IPV6)
|
|
|
|
case AF_INET6: {
|
|
|
|
struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&peeraddr;
|
|
|
|
|
|
|
|
log_print("connect from non cluster IPv6 node %pI6c",
|
|
|
|
&sin6->sin6_addr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
log_print("invalid family from non cluster node");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
sock_release(newsock);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_print("got connection from %d", nodeid);
|
|
|
|
|
|
|
|
/* Check to see if we already have a connection to this node. This
|
|
|
|
* could happen if the two nodes initiate a connection at roughly
|
|
|
|
* the same time and the connections cross on the wire.
|
|
|
|
* In this case we store the incoming one in "othercon"
|
|
|
|
*/
|
2021-05-21 19:08:35 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
2022-11-17 22:11:53 +00:00
|
|
|
newcon = nodeid2con(nodeid, 0);
|
|
|
|
if (WARN_ON_ONCE(!newcon)) {
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2022-11-17 22:11:53 +00:00
|
|
|
result = -ENOENT;
|
2006-11-02 16:19:21 +00:00
|
|
|
goto accept_err;
|
|
|
|
}
|
2020-11-03 01:04:25 +00:00
|
|
|
|
2021-03-01 22:05:09 +00:00
|
|
|
sock_set_mark(newsock->sk, mark);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
down_write(&newcon->sock_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
if (newcon->sock) {
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
struct connection *othercon = newcon->othercon;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
|
|
|
if (!othercon) {
|
2020-08-27 19:02:49 +00:00
|
|
|
othercon = kzalloc(sizeof(*othercon), GFP_NOFS);
|
2006-11-02 16:19:21 +00:00
|
|
|
if (!othercon) {
|
2007-04-26 18:46:49 +00:00
|
|
|
log_print("failed to allocate incoming socket");
|
2022-11-17 22:11:57 +00:00
|
|
|
up_write(&newcon->sock_lock);
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2006-11-02 16:19:21 +00:00
|
|
|
result = -ENOMEM;
|
|
|
|
goto accept_err;
|
|
|
|
}
|
2020-09-24 14:31:26 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
dlm_con_init(othercon, nodeid);
|
|
|
|
lockdep_set_subclass(&othercon->sock_lock, 1);
|
2020-11-03 01:04:21 +00:00
|
|
|
newcon->othercon = othercon;
|
2022-11-17 22:11:57 +00:00
|
|
|
set_bit(CF_IS_OTHERCON, &othercon->flags);
|
2020-07-27 13:13:37 +00:00
|
|
|
} else {
|
|
|
|
/* close other sock con if we have something new */
|
2022-11-17 22:11:57 +00:00
|
|
|
close_connection(othercon, false);
|
2007-08-20 14:13:38 +00:00
|
|
|
}
|
2020-07-27 13:13:37 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
down_write(&othercon->sock_lock);
|
2020-07-27 13:13:37 +00:00
|
|
|
add_sock(newsock, othercon);
|
2022-11-17 22:11:57 +00:00
|
|
|
|
|
|
|
/* check if we receved something while adding */
|
|
|
|
lock_sock(othercon->sock->sk);
|
|
|
|
lowcomms_queue_rwork(othercon);
|
|
|
|
release_sock(othercon->sock->sk);
|
|
|
|
up_write(&othercon->sock_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-09-23 18:23:26 +00:00
|
|
|
/* accept copies the sk after we've saved the callbacks, so we
|
|
|
|
don't want to save them a second time or comm errors will
|
|
|
|
result in calling sk_error_report recursively. */
|
2017-09-12 08:55:32 +00:00
|
|
|
add_sock(newsock, newcon);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* check if we receved something while adding */
|
|
|
|
lock_sock(newcon->sock->sk);
|
|
|
|
lowcomms_queue_rwork(newcon);
|
|
|
|
release_sock(newcon->sock->sk);
|
|
|
|
}
|
|
|
|
up_write(&newcon->sock_lock);
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
return DLM_IO_SUCCESS;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
accept_err:
|
2017-09-12 09:01:38 +00:00
|
|
|
if (newsock)
|
|
|
|
sock_release(newsock);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-06-14 09:56:13 +00:00
|
|
|
/*
|
|
|
|
* writequeue_entry_complete - try to delete and free write queue entry
|
|
|
|
* @e: write queue entry to try to delete
|
|
|
|
* @completed: bytes completed
|
|
|
|
*
|
|
|
|
* writequeue_lock must be held.
|
|
|
|
*/
|
|
|
|
static void writequeue_entry_complete(struct writequeue_entry *e, int completed)
|
|
|
|
{
|
|
|
|
e->offset += completed;
|
|
|
|
e->len -= completed;
|
2021-05-21 19:08:48 +00:00
|
|
|
/* signal that page was half way transmitted */
|
|
|
|
e->dirty = true;
|
2013-06-14 09:56:13 +00:00
|
|
|
|
2021-05-21 19:08:42 +00:00
|
|
|
if (e->len == 0 && e->users == 0)
|
2013-06-14 09:56:13 +00:00
|
|
|
free_entry(e);
|
|
|
|
}
|
|
|
|
|
2015-08-11 22:22:23 +00:00
|
|
|
/*
|
|
|
|
* sctp_bind_addrs - bind a SCTP socket to all our addresses
|
|
|
|
*/
|
2020-11-03 01:04:24 +00:00
|
|
|
static int sctp_bind_addrs(struct socket *sock, uint16_t port)
|
2015-08-11 22:22:23 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_storage localaddr;
|
2020-05-29 12:09:42 +00:00
|
|
|
struct sockaddr *addr = (struct sockaddr *)&localaddr;
|
2015-08-11 22:22:23 +00:00
|
|
|
int i, addr_len, result = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < dlm_local_count; i++) {
|
2022-11-17 22:11:52 +00:00
|
|
|
memcpy(&localaddr, &dlm_local_addr[i], sizeof(localaddr));
|
2015-08-11 22:22:23 +00:00
|
|
|
make_sockaddr(&localaddr, port, &addr_len);
|
|
|
|
|
|
|
|
if (!i)
|
2020-11-03 01:04:24 +00:00
|
|
|
result = kernel_bind(sock, addr, addr_len);
|
2015-08-11 22:22:23 +00:00
|
|
|
else
|
2020-11-03 01:04:24 +00:00
|
|
|
result = sock_bind_add(sock->sk, addr, addr_len);
|
2015-08-11 22:22:23 +00:00
|
|
|
|
|
|
|
if (result < 0) {
|
|
|
|
log_print("Can't bind to %d addr number %d, %d.\n",
|
|
|
|
port, i + 1, result);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-04-17 14:39:57 +00:00
|
|
|
/* Get local addresses */
|
|
|
|
static void init_local(void)
|
|
|
|
{
|
2022-11-17 22:11:52 +00:00
|
|
|
struct sockaddr_storage sas;
|
2007-04-17 14:39:57 +00:00
|
|
|
int i;
|
|
|
|
|
2007-04-23 15:26:21 +00:00
|
|
|
dlm_local_count = 0;
|
2012-03-21 14:18:34 +00:00
|
|
|
for (i = 0; i < DLM_MAX_ADDR_COUNT; i++) {
|
2007-04-17 14:39:57 +00:00
|
|
|
if (dlm_our_addr(&sas, i))
|
|
|
|
break;
|
|
|
|
|
2022-11-17 22:11:52 +00:00
|
|
|
memcpy(&dlm_local_addr[dlm_local_count++], &sas, sizeof(sas));
|
2007-04-17 14:39:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:17 +00:00
|
|
|
static struct writequeue_entry *new_writequeue_entry(struct connection *con)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
|
|
|
struct writequeue_entry *entry;
|
|
|
|
|
2021-11-30 19:47:19 +00:00
|
|
|
entry = dlm_allocate_writequeue();
|
2006-11-02 16:19:21 +00:00
|
|
|
if (!entry)
|
|
|
|
return NULL;
|
|
|
|
|
2021-11-30 19:47:17 +00:00
|
|
|
entry->page = alloc_page(GFP_ATOMIC | __GFP_ZERO);
|
2006-11-02 16:19:21 +00:00
|
|
|
if (!entry->page) {
|
2021-11-30 19:47:19 +00:00
|
|
|
dlm_free_writequeue(entry);
|
2006-11-02 16:19:21 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:19 +00:00
|
|
|
entry->offset = 0;
|
|
|
|
entry->len = 0;
|
|
|
|
entry->end = 0;
|
|
|
|
entry->dirty = false;
|
2006-11-02 16:19:21 +00:00
|
|
|
entry->con = con;
|
2021-03-01 22:05:16 +00:00
|
|
|
entry->users = 1;
|
2021-05-21 19:08:42 +00:00
|
|
|
kref_init(&entry->ref);
|
2006-11-02 16:19:21 +00:00
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2021-03-01 22:05:16 +00:00
|
|
|
static struct writequeue_entry *new_wq_entry(struct connection *con, int len,
|
2021-11-30 19:47:17 +00:00
|
|
|
char **ppc, void (*cb)(void *data),
|
|
|
|
void *data)
|
2021-03-01 22:05:16 +00:00
|
|
|
{
|
|
|
|
struct writequeue_entry *e;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
2021-03-01 22:05:16 +00:00
|
|
|
if (!list_empty(&con->writequeue)) {
|
|
|
|
e = list_last_entry(&con->writequeue, struct writequeue_entry, list);
|
|
|
|
if (DLM_WQ_REMAIN_BYTES(e) >= len) {
|
2021-05-21 19:08:42 +00:00
|
|
|
kref_get(&e->ref);
|
|
|
|
|
2021-03-01 22:05:16 +00:00
|
|
|
*ppc = page_address(e->page) + e->end;
|
2021-05-21 19:08:42 +00:00
|
|
|
if (cb)
|
2021-11-02 19:17:19 +00:00
|
|
|
cb(data);
|
2021-05-21 19:08:42 +00:00
|
|
|
|
2021-03-01 22:05:16 +00:00
|
|
|
e->end += len;
|
|
|
|
e->users++;
|
2021-11-30 19:47:17 +00:00
|
|
|
goto out;
|
2021-03-01 22:05:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:17 +00:00
|
|
|
e = new_writequeue_entry(con);
|
2021-03-01 22:05:16 +00:00
|
|
|
if (!e)
|
2021-11-30 19:47:17 +00:00
|
|
|
goto out;
|
2021-03-01 22:05:16 +00:00
|
|
|
|
2021-05-21 19:08:42 +00:00
|
|
|
kref_get(&e->ref);
|
2021-03-01 22:05:16 +00:00
|
|
|
*ppc = page_address(e->page);
|
|
|
|
e->end += len;
|
2021-05-21 19:08:42 +00:00
|
|
|
if (cb)
|
2021-11-02 19:17:19 +00:00
|
|
|
cb(data);
|
2021-05-21 19:08:42 +00:00
|
|
|
|
2021-03-01 22:05:16 +00:00
|
|
|
list_add_tail(&e->list, &con->writequeue);
|
|
|
|
|
2021-11-30 19:47:17 +00:00
|
|
|
out:
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2021-03-01 22:05:16 +00:00
|
|
|
return e;
|
|
|
|
};
|
|
|
|
|
2021-05-21 19:08:43 +00:00
|
|
|
static struct dlm_msg *dlm_lowcomms_new_msg_con(struct connection *con, int len,
|
2024-04-02 19:17:57 +00:00
|
|
|
char **ppc, void (*cb)(void *data),
|
2021-11-02 19:17:19 +00:00
|
|
|
void *data)
|
2021-05-21 19:08:43 +00:00
|
|
|
{
|
|
|
|
struct writequeue_entry *e;
|
|
|
|
struct dlm_msg *msg;
|
|
|
|
|
2024-04-02 19:17:57 +00:00
|
|
|
msg = dlm_allocate_msg();
|
2021-05-21 19:08:43 +00:00
|
|
|
if (!msg)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
kref_init(&msg->ref);
|
|
|
|
|
2021-11-30 19:47:17 +00:00
|
|
|
e = new_wq_entry(con, len, ppc, cb, data);
|
2021-05-21 19:08:43 +00:00
|
|
|
if (!e) {
|
2021-11-30 19:47:20 +00:00
|
|
|
dlm_free_msg(msg);
|
2021-05-21 19:08:43 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-30 19:47:20 +00:00
|
|
|
msg->retransmit = false;
|
|
|
|
msg->orig_msg = NULL;
|
2021-05-21 19:08:43 +00:00
|
|
|
msg->ppc = *ppc;
|
|
|
|
msg->len = len;
|
|
|
|
msg->entry = e;
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2022-04-04 20:06:37 +00:00
|
|
|
/* avoid false positive for nodes_srcu, unlock happens in
|
|
|
|
* dlm_lowcomms_commit_msg which is a must call if success
|
|
|
|
*/
|
|
|
|
#ifndef __CHECKER__
|
2024-04-02 19:17:57 +00:00
|
|
|
struct dlm_msg *dlm_lowcomms_new_msg(int nodeid, int len, char **ppc,
|
|
|
|
void (*cb)(void *data), void *data)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
|
|
|
struct connection *con;
|
2021-05-21 19:08:42 +00:00
|
|
|
struct dlm_msg *msg;
|
2021-05-21 19:08:35 +00:00
|
|
|
int idx;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2021-06-02 13:45:20 +00:00
|
|
|
if (len > DLM_MAX_SOCKET_BUFSIZE ||
|
2021-03-01 22:05:14 +00:00
|
|
|
len < sizeof(struct dlm_header)) {
|
2021-06-02 13:45:20 +00:00
|
|
|
BUILD_BUG_ON(PAGE_SIZE < DLM_MAX_SOCKET_BUFSIZE);
|
2020-11-03 01:04:18 +00:00
|
|
|
log_print("failed to allocate a buffer of size %d", len);
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(1);
|
2020-11-03 01:04:18 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
2022-11-17 22:11:53 +00:00
|
|
|
con = nodeid2con(nodeid, 0);
|
|
|
|
if (WARN_ON_ONCE(!con)) {
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2006-11-02 16:19:21 +00:00
|
|
|
return NULL;
|
2021-05-21 19:08:35 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:17:57 +00:00
|
|
|
msg = dlm_lowcomms_new_msg_con(con, len, ppc, cb, data);
|
2021-05-21 19:08:42 +00:00
|
|
|
if (!msg) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-08-15 19:43:13 +00:00
|
|
|
/* for dlm_lowcomms_commit_msg() */
|
|
|
|
kref_get(&msg->ref);
|
2021-05-21 19:08:35 +00:00
|
|
|
/* we assume if successful commit must called */
|
2021-05-21 19:08:42 +00:00
|
|
|
msg->idx = idx;
|
|
|
|
return msg;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
2022-04-04 20:06:37 +00:00
|
|
|
#endif
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2021-05-21 19:08:43 +00:00
|
|
|
static void _dlm_lowcomms_commit_msg(struct dlm_msg *msg)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2021-05-21 19:08:42 +00:00
|
|
|
struct writequeue_entry *e = msg->entry;
|
2006-11-02 16:19:21 +00:00
|
|
|
struct connection *con = e->con;
|
|
|
|
int users;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
2021-05-21 19:08:42 +00:00
|
|
|
kref_get(&msg->ref);
|
|
|
|
list_add(&msg->list, &e->msgs);
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
users = --e->users;
|
|
|
|
if (users)
|
|
|
|
goto out;
|
2021-03-01 22:05:16 +00:00
|
|
|
|
|
|
|
e->len = DLM_WQ_LENGTH_BYTES(e);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
lowcomms_queue_swork(con);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
[DLM] Clean up lowcomms
This fixes up most of the things pointed out by akpm and Pavel Machek
with comments below indicating why some things have been left:
Andrew Morton wrote:
>
>> +static struct nodeinfo *nodeid2nodeinfo(int nodeid, gfp_t alloc)
>> +{
>> + struct nodeinfo *ni;
>> + int r;
>> + int n;
>> +
>> + down_read(&nodeinfo_lock);
>
> Given that this function can sleep, I wonder if `alloc' is useful.
>
> I see lots of callers passing in a literal "0" for `alloc'. That's in fact
> a secret (GFP_ATOMIC & ~__GFP_HIGH). I doubt if that's what you really
> meant. Particularly as the code could at least have used __GFP_WAIT (aka
> GFP_NOIO) which is much, much more reliable than "0". In fact "0" is the
> least reliable mode possible.
>
> IOW, this is all bollixed up.
When 0 is passed into nodeid2nodeinfo the function does not try to allocate a
new structure at all. it's an indication that the caller only wants the nodeinfo
struct for that nodeid if there actually is one in existance.
I've tidied the function itself so it's more obvious, (and tidier!)
>> +/* Data received from remote end */
>> +static int receive_from_sock(void)
>> +{
>> + int ret = 0;
>> + struct msghdr msg;
>> + struct kvec iov[2];
>> + unsigned len;
>> + int r;
>> + struct sctp_sndrcvinfo *sinfo;
>> + struct cmsghdr *cmsg;
>> + struct nodeinfo *ni;
>> +
>> + /* These two are marginally too big for stack allocation, but this
>> + * function is (currently) only called by dlm_recvd so static should be
>> + * OK.
>> + */
>> + static struct sockaddr_storage msgname;
>> + static char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> whoa. This is globally singly-threaded code??
Yes. it is only ever run in the context of dlm_recvd.
>>
>> +static void initiate_association(int nodeid)
>> +{
>> + struct sockaddr_storage rem_addr;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Another static buffer to worry about. Globally singly-threaded code?
Yes. Only ever called by dlm_sendd.
>> +
>> +/* Send a message */
>> +static int send_to_sock(struct nodeinfo *ni)
>> +{
>> + int ret = 0;
>> + struct writequeue_entry *e;
>> + int len, offset;
>> + struct msghdr outmsg;
>> + static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
>
> Singly-threaded?
Yep.
>>
>> +static void dealloc_nodeinfo(void)
>> +{
>> + int i;
>> +
>> + for (i=1; i<=max_nodeid; i++) {
>> + struct nodeinfo *ni = nodeid2nodeinfo(i, 0);
>> + if (ni) {
>> + idr_remove(&nodeinfo_idr, i);
>
> Didn't that need locking?
Not. it's only ever called at DLM shutdown after all the other threads
have been stopped.
>>
>> +static int write_list_empty(void)
>> +{
>> + int status;
>> +
>> + spin_lock_bh(&write_nodes_lock);
>> + status = list_empty(&write_nodes);
>> + spin_unlock_bh(&write_nodes_lock);
>> +
>> + return status;
>> +}
>
> This function's return value is meaningless. As soon as the lock gets
> dropped, the return value can get out of sync with reality.
>
> Looking at the caller, this _might_ happen to be OK, but it's a nasty and
> dangerous thing. Really the locking should be moved into the caller.
It's just an optimisation to allow the caller to schedule if there is no work
to do. if something arrives immediately afterwards then it will get picked up
when the process re-awakes (and it will be woken by that arrival).
The 'accepting' atomic has gone completely. as Andrew pointed out it didn't
really achieve much anyway. I suspect it was a plaster over some other
startup or shutdown bug to be honest.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Andrew Morton <akpm@osdl.org>
Cc: Pavel Machek <pavel@ucw.cz>
2006-12-06 15:10:37 +00:00
|
|
|
out:
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-04 20:06:37 +00:00
|
|
|
/* avoid false positive for nodes_srcu, lock was happen in
|
|
|
|
* dlm_lowcomms_new_msg
|
|
|
|
*/
|
|
|
|
#ifndef __CHECKER__
|
2021-05-21 19:08:43 +00:00
|
|
|
void dlm_lowcomms_commit_msg(struct dlm_msg *msg)
|
|
|
|
{
|
|
|
|
_dlm_lowcomms_commit_msg(msg);
|
|
|
|
srcu_read_unlock(&connections_srcu, msg->idx);
|
2022-08-15 19:43:13 +00:00
|
|
|
/* because dlm_lowcomms_new_msg() */
|
|
|
|
kref_put(&msg->ref, dlm_msg_release);
|
2021-05-21 19:08:43 +00:00
|
|
|
}
|
2022-04-04 20:06:37 +00:00
|
|
|
#endif
|
2021-05-21 19:08:43 +00:00
|
|
|
|
2021-05-21 19:08:42 +00:00
|
|
|
void dlm_lowcomms_put_msg(struct dlm_msg *msg)
|
|
|
|
{
|
|
|
|
kref_put(&msg->ref, dlm_msg_release);
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* does not held connections_srcu, usage lowcomms_error_report only */
|
2021-05-21 19:08:43 +00:00
|
|
|
int dlm_lowcomms_resend_msg(struct dlm_msg *msg)
|
|
|
|
{
|
|
|
|
struct dlm_msg *msg_resend;
|
|
|
|
char *ppc;
|
|
|
|
|
|
|
|
if (msg->retransmit)
|
|
|
|
return 1;
|
|
|
|
|
2024-04-02 19:17:57 +00:00
|
|
|
msg_resend = dlm_lowcomms_new_msg_con(msg->entry->con, msg->len, &ppc,
|
|
|
|
NULL, NULL);
|
2021-05-21 19:08:43 +00:00
|
|
|
if (!msg_resend)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
msg->retransmit = true;
|
|
|
|
kref_get(&msg->ref);
|
|
|
|
msg_resend->orig_msg = msg;
|
|
|
|
|
|
|
|
memcpy(ppc, msg->ppc, msg->len);
|
|
|
|
_dlm_lowcomms_commit_msg(msg_resend);
|
|
|
|
dlm_lowcomms_put_msg(msg_resend);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Send a message */
|
2022-11-17 22:11:57 +00:00
|
|
|
static int send_to_sock(struct connection *con)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
|
|
|
struct writequeue_entry *e;
|
2023-06-23 22:55:03 +00:00
|
|
|
struct bio_vec bvec;
|
|
|
|
struct msghdr msg = {
|
|
|
|
.msg_flags = MSG_SPLICE_PAGES | MSG_DONTWAIT | MSG_NOSIGNAL,
|
|
|
|
};
|
2021-07-16 20:22:39 +00:00
|
|
|
int len, offset, ret;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
e = con_next_wq(con);
|
|
|
|
if (!e) {
|
|
|
|
clear_bit(CF_SEND_PENDING, &con->flags);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
return DLM_IO_END;
|
|
|
|
}
|
2010-11-12 17:15:20 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
len = e->len;
|
|
|
|
offset = e->offset;
|
|
|
|
WARN_ON_ONCE(len == 0 && e->users == 0);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2022-10-27 20:45:24 +00:00
|
|
|
|
2023-06-23 22:55:03 +00:00
|
|
|
bvec_set_page(&bvec, e->page, len, offset);
|
|
|
|
iov_iter_bvec(&msg.msg_iter, ITER_SOURCE, &bvec, 1, len);
|
|
|
|
ret = sock_sendmsg(con->sock, &msg);
|
2022-11-17 22:11:57 +00:00
|
|
|
trace_dlm_send(con->nodeid, ret);
|
|
|
|
if (ret == -EAGAIN || ret == 0) {
|
|
|
|
lock_sock(con->sock->sk);
|
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
if (test_bit(SOCKWQ_ASYNC_NOSPACE, &con->sock->flags) &&
|
|
|
|
!test_and_set_bit(CF_APP_LIMITED, &con->flags)) {
|
|
|
|
/* Notify TCP that we're limited by the
|
|
|
|
* application window size.
|
|
|
|
*/
|
|
|
|
set_bit(SOCK_NOSPACE, &con->sock->sk->sk_socket->flags);
|
|
|
|
con->sock->sk->sk_write_pending++;
|
|
|
|
|
|
|
|
clear_bit(CF_SEND_PENDING, &con->flags);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
release_sock(con->sock->sk);
|
|
|
|
|
|
|
|
/* wait for write_space() event */
|
|
|
|
return DLM_IO_END;
|
2010-11-12 17:15:20 +00:00
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
release_sock(con->sock->sk);
|
|
|
|
|
|
|
|
return DLM_IO_RESCHED;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
return ret;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
2021-05-21 19:08:39 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
writequeue_entry_complete(e, ret);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
return DLM_IO_SUCCESS;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void clean_one_writequeue(struct connection *con)
|
|
|
|
{
|
2009-01-28 18:57:40 +00:00
|
|
|
struct writequeue_entry *e, *safe;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
2009-01-28 18:57:40 +00:00
|
|
|
list_for_each_entry_safe(e, safe, &con->writequeue, list) {
|
2006-11-02 16:19:21 +00:00
|
|
|
free_entry(e);
|
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
static void connection_release(struct rcu_head *rcu)
|
|
|
|
{
|
|
|
|
struct connection *con = container_of(rcu, struct connection, rcu);
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(!list_empty(&con->writequeue));
|
|
|
|
WARN_ON_ONCE(con->sock);
|
2022-11-17 22:11:53 +00:00
|
|
|
kfree(con);
|
|
|
|
}
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Called from recovery when it knows that a node has
|
|
|
|
left the cluster */
|
|
|
|
int dlm_lowcomms_close(int nodeid)
|
|
|
|
{
|
|
|
|
struct connection *con;
|
2021-05-21 19:08:35 +00:00
|
|
|
int idx;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
|
|
|
log_print("closing connection to node %d", nodeid);
|
2022-11-17 22:11:53 +00:00
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
2006-11-02 16:19:21 +00:00
|
|
|
con = nodeid2con(nodeid, 0);
|
2022-11-17 22:11:53 +00:00
|
|
|
if (WARN_ON_ONCE(!con)) {
|
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
|
|
|
return -ENOENT;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
stop_connection_io(con);
|
|
|
|
log_print("io handling for node: %d stopped", nodeid);
|
|
|
|
close_connection(con, true);
|
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
spin_lock(&connections_lock);
|
|
|
|
hlist_del_rcu(&con->list);
|
|
|
|
spin_unlock(&connections_lock);
|
|
|
|
|
|
|
|
clean_one_writequeue(con);
|
|
|
|
call_srcu(&connections_srcu, &con->rcu, connection_release);
|
|
|
|
if (con->othercon) {
|
|
|
|
clean_one_writequeue(con->othercon);
|
2023-05-29 21:44:33 +00:00
|
|
|
call_srcu(&connections_srcu, &con->othercon->rcu, connection_release);
|
2012-07-26 17:44:30 +00:00
|
|
|
}
|
2022-11-17 22:11:53 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* for debugging we print when we are done to compare with other
|
|
|
|
* messages in between. This function need to be correctly synchronized
|
|
|
|
* with io handling
|
|
|
|
*/
|
|
|
|
log_print("closing connection to node %d done", nodeid);
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* Receive worker function */
|
2007-01-15 14:33:34 +00:00
|
|
|
static void process_recv_sockets(struct work_struct *work)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2007-01-15 14:33:34 +00:00
|
|
|
struct connection *con = container_of(work, struct connection, rwork);
|
2022-11-17 22:11:57 +00:00
|
|
|
int ret, buflen;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
down_read(&con->sock_lock);
|
|
|
|
if (!con->sock) {
|
|
|
|
up_read(&con->sock_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
buflen = READ_ONCE(dlm_config.ci_buffer_size);
|
|
|
|
do {
|
|
|
|
ret = receive_from_sock(con, buflen);
|
|
|
|
} while (ret == DLM_IO_SUCCESS);
|
|
|
|
up_read(&con->sock_lock);
|
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case DLM_IO_END:
|
|
|
|
/* CF_RECV_PENDING cleared */
|
|
|
|
break;
|
|
|
|
case DLM_IO_EOF:
|
|
|
|
close_connection(con, false);
|
2023-01-12 22:18:42 +00:00
|
|
|
wake_up(&con->shutdown_wait);
|
2022-11-17 22:11:57 +00:00
|
|
|
/* CF_RECV_PENDING cleared */
|
|
|
|
break;
|
2023-10-10 22:04:48 +00:00
|
|
|
case DLM_IO_FLUSH:
|
2024-04-02 19:18:10 +00:00
|
|
|
/* we can't flush the process_workqueue here because a
|
|
|
|
* WQ_MEM_RECLAIM workequeue can occurr a deadlock for a non
|
|
|
|
* WQ_MEM_RECLAIM workqueue such as process_workqueue. Instead
|
|
|
|
* we have a waitqueue to wait until all messages are
|
|
|
|
* processed.
|
|
|
|
*
|
|
|
|
* This handling is only necessary to backoff the sender and
|
|
|
|
* not queue all messages from the socket layer into DLM
|
|
|
|
* processqueue. When DLM is capable to parse multiple messages
|
|
|
|
* on an e.g. per socket basis this handling can might be
|
|
|
|
* removed. Especially in a message burst we are too slow to
|
|
|
|
* process messages and the queue will fill up memory.
|
|
|
|
*/
|
|
|
|
wait_event(processqueue_wq, !atomic_read(&processqueue_count));
|
2023-10-10 22:04:48 +00:00
|
|
|
fallthrough;
|
2022-11-17 22:11:57 +00:00
|
|
|
case DLM_IO_RESCHED:
|
|
|
|
cond_resched();
|
|
|
|
queue_work(io_workqueue, &con->rwork);
|
|
|
|
/* CF_RECV_PENDING not cleared */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (ret < 0) {
|
|
|
|
if (test_bit(CF_IS_OTHERCON, &con->flags)) {
|
|
|
|
close_connection(con, false);
|
|
|
|
} else {
|
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
lowcomms_queue_swork(con);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CF_RECV_PENDING cleared for othercon
|
|
|
|
* we trigger send queue if not already done
|
|
|
|
* and process_send_sockets will handle it
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
break;
|
|
|
|
}
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:04:25 +00:00
|
|
|
static void process_listen_recv_socket(struct work_struct *work)
|
|
|
|
{
|
2022-10-27 20:45:12 +00:00
|
|
|
int ret;
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
if (WARN_ON_ONCE(!listen_con.sock))
|
|
|
|
return;
|
|
|
|
|
2022-10-27 20:45:12 +00:00
|
|
|
do {
|
2022-11-17 22:11:57 +00:00
|
|
|
ret = accept_from_sock();
|
|
|
|
} while (ret == DLM_IO_SUCCESS);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
log_print("critical error accepting connection: %d", ret);
|
2020-11-03 01:04:25 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
static int dlm_connect(struct connection *con)
|
2021-07-16 20:22:43 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_storage addr;
|
|
|
|
int result, addr_len;
|
|
|
|
struct socket *sock;
|
|
|
|
unsigned int mark;
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
result = nodeid_to_addr(con->nodeid, &addr, NULL,
|
|
|
|
dlm_proto_ops->try_new_addr, &mark);
|
|
|
|
if (result < 0) {
|
|
|
|
log_print("no address for nodeid %d", con->nodeid);
|
2022-11-17 22:11:57 +00:00
|
|
|
return result;
|
2021-07-16 20:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a socket to communicate with */
|
2022-11-17 22:11:52 +00:00
|
|
|
result = sock_create_kern(&init_net, dlm_local_addr[0].ss_family,
|
2021-07-16 20:22:43 +00:00
|
|
|
SOCK_STREAM, dlm_proto_ops->proto, &sock);
|
|
|
|
if (result < 0)
|
2022-11-17 22:11:57 +00:00
|
|
|
return result;
|
2021-07-16 20:22:43 +00:00
|
|
|
|
|
|
|
sock_set_mark(sock->sk, mark);
|
|
|
|
dlm_proto_ops->sockopts(sock);
|
|
|
|
|
|
|
|
result = dlm_proto_ops->bind(sock);
|
2022-11-17 22:11:57 +00:00
|
|
|
if (result < 0) {
|
|
|
|
sock_release(sock);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_sock(sock, con);
|
2021-07-16 20:22:43 +00:00
|
|
|
|
|
|
|
log_print_ratelimited("connecting to %d", con->nodeid);
|
|
|
|
make_sockaddr(&addr, dlm_config.ci_tcp_port, &addr_len);
|
2024-08-02 17:26:47 +00:00
|
|
|
result = kernel_connect(sock, (struct sockaddr *)&addr, addr_len, 0);
|
2022-11-17 22:11:57 +00:00
|
|
|
switch (result) {
|
|
|
|
case -EINPROGRESS:
|
|
|
|
/* not an error */
|
|
|
|
fallthrough;
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (result < 0)
|
|
|
|
dlm_close_sock(&con->sock);
|
2021-07-16 20:22:43 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
break;
|
2021-07-16 20:22:43 +00:00
|
|
|
}
|
2022-11-17 22:11:57 +00:00
|
|
|
|
|
|
|
return result;
|
2021-07-16 20:22:43 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* Send worker function */
|
2007-01-15 14:33:34 +00:00
|
|
|
static void process_send_sockets(struct work_struct *work)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2007-01-15 14:33:34 +00:00
|
|
|
struct connection *con = container_of(work, struct connection, swork);
|
2022-11-17 22:11:57 +00:00
|
|
|
int ret;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(test_bit(CF_IS_OTHERCON, &con->flags));
|
|
|
|
|
|
|
|
down_read(&con->sock_lock);
|
|
|
|
if (!con->sock) {
|
|
|
|
up_read(&con->sock_lock);
|
|
|
|
down_write(&con->sock_lock);
|
|
|
|
if (!con->sock) {
|
|
|
|
ret = dlm_connect(con);
|
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* CF_SEND_PENDING not cleared */
|
|
|
|
up_write(&con->sock_lock);
|
|
|
|
log_print("connect to node %d try %d error %d",
|
|
|
|
con->nodeid, con->retries++, ret);
|
|
|
|
msleep(1000);
|
|
|
|
/* For now we try forever to reconnect. In
|
|
|
|
* future we should send a event to cluster
|
|
|
|
* manager to fence itself after certain amount
|
|
|
|
* of retries.
|
|
|
|
*/
|
|
|
|
queue_work(io_workqueue, &con->swork);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
downgrade_write(&con->sock_lock);
|
|
|
|
}
|
2021-05-21 19:08:36 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
do {
|
|
|
|
ret = send_to_sock(con);
|
|
|
|
} while (ret == DLM_IO_SUCCESS);
|
|
|
|
up_read(&con->sock_lock);
|
2021-05-21 19:08:37 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
switch (ret) {
|
|
|
|
case DLM_IO_END:
|
|
|
|
/* CF_SEND_PENDING cleared */
|
|
|
|
break;
|
|
|
|
case DLM_IO_RESCHED:
|
|
|
|
/* CF_SEND_PENDING not cleared */
|
|
|
|
cond_resched();
|
|
|
|
queue_work(io_workqueue, &con->swork);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (ret < 0) {
|
|
|
|
close_connection(con, false);
|
2021-05-21 19:08:37 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
/* CF_SEND_PENDING cleared */
|
|
|
|
spin_lock_bh(&con->writequeue_lock);
|
|
|
|
lowcomms_queue_swork(con);
|
|
|
|
spin_unlock_bh(&con->writequeue_lock);
|
|
|
|
break;
|
|
|
|
}
|
2021-07-16 20:22:43 +00:00
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
break;
|
2021-05-21 19:08:37 +00:00
|
|
|
}
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2007-01-15 14:33:34 +00:00
|
|
|
static void work_stop(void)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2022-11-17 22:11:57 +00:00
|
|
|
if (io_workqueue) {
|
|
|
|
destroy_workqueue(io_workqueue);
|
|
|
|
io_workqueue = NULL;
|
2021-06-02 13:45:15 +00:00
|
|
|
}
|
|
|
|
|
2022-11-17 22:11:57 +00:00
|
|
|
if (process_workqueue) {
|
|
|
|
destroy_workqueue(process_workqueue);
|
|
|
|
process_workqueue = NULL;
|
2021-06-02 13:45:15 +00:00
|
|
|
}
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2007-01-15 14:33:34 +00:00
|
|
|
static int work_start(void)
|
2006-11-02 16:19:21 +00:00
|
|
|
{
|
2023-03-06 20:48:09 +00:00
|
|
|
io_workqueue = alloc_workqueue("dlm_io", WQ_HIGHPRI | WQ_MEM_RECLAIM |
|
|
|
|
WQ_UNBOUND, 0);
|
2022-11-17 22:11:57 +00:00
|
|
|
if (!io_workqueue) {
|
|
|
|
log_print("can't start dlm_io");
|
2010-12-13 19:42:24 +00:00
|
|
|
return -ENOMEM;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:18:10 +00:00
|
|
|
process_workqueue = alloc_workqueue("dlm_process", WQ_HIGHPRI | WQ_BH, 0);
|
2022-11-17 22:11:57 +00:00
|
|
|
if (!process_workqueue) {
|
|
|
|
log_print("can't start dlm_process");
|
|
|
|
destroy_workqueue(io_workqueue);
|
|
|
|
io_workqueue = NULL;
|
2010-12-13 19:42:24 +00:00
|
|
|
return -ENOMEM;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-01 22:05:20 +00:00
|
|
|
void dlm_lowcomms_shutdown(void)
|
|
|
|
{
|
2023-01-12 22:18:42 +00:00
|
|
|
struct connection *con;
|
|
|
|
int i, idx;
|
|
|
|
|
2022-11-17 22:11:51 +00:00
|
|
|
/* stop lowcomms_listen_data_ready calls */
|
|
|
|
lock_sock(listen_con.sock->sk);
|
|
|
|
listen_con.sock->sk->sk_data_ready = listen_sock.sk_data_ready;
|
|
|
|
release_sock(listen_con.sock->sk);
|
2021-03-01 22:05:20 +00:00
|
|
|
|
2022-11-17 22:11:51 +00:00
|
|
|
cancel_work_sync(&listen_con.rwork);
|
2021-03-01 22:05:20 +00:00
|
|
|
dlm_close_sock(&listen_con.sock);
|
2022-11-17 22:11:57 +00:00
|
|
|
|
2021-05-21 19:08:35 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
2023-01-12 22:18:42 +00:00
|
|
|
for (i = 0; i < CONN_HASH_SIZE; i++) {
|
|
|
|
hlist_for_each_entry_rcu(con, &connection_hash[i], list) {
|
|
|
|
shutdown_connection(con, true);
|
|
|
|
stop_connection_io(con);
|
|
|
|
flush_workqueue(process_workqueue);
|
|
|
|
close_connection(con, true);
|
|
|
|
|
|
|
|
clean_one_writequeue(con);
|
|
|
|
if (con->othercon)
|
|
|
|
clean_one_writequeue(con->othercon);
|
|
|
|
allow_connection_io(con);
|
|
|
|
}
|
2022-11-17 22:11:50 +00:00
|
|
|
}
|
2021-05-21 19:08:35 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2021-03-01 22:05:20 +00:00
|
|
|
}
|
|
|
|
|
2009-01-28 18:57:40 +00:00
|
|
|
void dlm_lowcomms_stop(void)
|
|
|
|
{
|
2007-01-15 14:33:34 +00:00
|
|
|
work_stop();
|
2021-07-16 20:22:40 +00:00
|
|
|
dlm_proto_ops = NULL;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:41 +00:00
|
|
|
static int dlm_listen_for_all(void)
|
|
|
|
{
|
|
|
|
struct socket *sock;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
log_print("Using %s for communications",
|
|
|
|
dlm_proto_ops->name);
|
|
|
|
|
2021-07-16 20:22:42 +00:00
|
|
|
result = dlm_proto_ops->listen_validate();
|
|
|
|
if (result < 0)
|
|
|
|
return result;
|
2021-07-16 20:22:41 +00:00
|
|
|
|
2022-11-17 22:11:52 +00:00
|
|
|
result = sock_create_kern(&init_net, dlm_local_addr[0].ss_family,
|
2021-07-16 20:22:41 +00:00
|
|
|
SOCK_STREAM, dlm_proto_ops->proto, &sock);
|
|
|
|
if (result < 0) {
|
2021-11-02 19:17:10 +00:00
|
|
|
log_print("Can't create comms socket: %d", result);
|
2022-04-04 20:06:28 +00:00
|
|
|
return result;
|
2021-07-16 20:22:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sock_set_mark(sock->sk, dlm_config.ci_mark);
|
|
|
|
dlm_proto_ops->listen_sockopts(sock);
|
|
|
|
|
|
|
|
result = dlm_proto_ops->listen_bind(sock);
|
|
|
|
if (result < 0)
|
|
|
|
goto out;
|
|
|
|
|
2022-11-17 22:11:51 +00:00
|
|
|
lock_sock(sock->sk);
|
|
|
|
listen_sock.sk_data_ready = sock->sk->sk_data_ready;
|
|
|
|
listen_sock.sk_write_space = sock->sk->sk_write_space;
|
|
|
|
listen_sock.sk_error_report = sock->sk->sk_error_report;
|
|
|
|
listen_sock.sk_state_change = sock->sk->sk_state_change;
|
|
|
|
|
|
|
|
listen_con.sock = sock;
|
|
|
|
|
|
|
|
sock->sk->sk_allocation = GFP_NOFS;
|
2022-12-16 12:45:27 +00:00
|
|
|
sock->sk->sk_use_task_frag = false;
|
2022-11-17 22:11:51 +00:00
|
|
|
sock->sk->sk_data_ready = lowcomms_listen_data_ready;
|
|
|
|
release_sock(sock->sk);
|
2021-07-16 20:22:41 +00:00
|
|
|
|
2023-03-06 20:48:10 +00:00
|
|
|
result = sock->ops->listen(sock, 128);
|
2021-07-16 20:22:41 +00:00
|
|
|
if (result < 0) {
|
|
|
|
dlm_close_sock(&listen_con.sock);
|
2022-10-27 20:45:11 +00:00
|
|
|
return result;
|
2021-07-16 20:22:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
sock_release(sock);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:43 +00:00
|
|
|
static int dlm_tcp_bind(struct socket *sock)
|
|
|
|
{
|
|
|
|
struct sockaddr_storage src_addr;
|
|
|
|
int result, addr_len;
|
|
|
|
|
|
|
|
/* Bind to our cluster-known address connecting to avoid
|
|
|
|
* routing problems.
|
|
|
|
*/
|
2022-11-17 22:11:52 +00:00
|
|
|
memcpy(&src_addr, &dlm_local_addr[0], sizeof(src_addr));
|
2021-07-16 20:22:43 +00:00
|
|
|
make_sockaddr(&src_addr, 0, &addr_len);
|
|
|
|
|
2023-11-06 21:24:38 +00:00
|
|
|
result = kernel_bind(sock, (struct sockaddr *)&src_addr,
|
|
|
|
addr_len);
|
2021-07-16 20:22:43 +00:00
|
|
|
if (result < 0) {
|
|
|
|
/* This *may* not indicate a critical error */
|
|
|
|
log_print("could not bind for connect: %d", result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:41 +00:00
|
|
|
static int dlm_tcp_listen_validate(void)
|
|
|
|
{
|
|
|
|
/* We don't support multi-homed hosts */
|
|
|
|
if (dlm_local_count > 1) {
|
|
|
|
log_print("TCP protocol can't handle multi-homed hosts, try SCTP");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dlm_tcp_sockopts(struct socket *sock)
|
|
|
|
{
|
|
|
|
/* Turn off Nagle's algorithm */
|
|
|
|
tcp_sock_set_nodelay(sock->sk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dlm_tcp_listen_sockopts(struct socket *sock)
|
|
|
|
{
|
|
|
|
dlm_tcp_sockopts(sock);
|
|
|
|
sock_set_reuseaddr(sock->sk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dlm_tcp_listen_bind(struct socket *sock)
|
|
|
|
{
|
|
|
|
int addr_len;
|
|
|
|
|
|
|
|
/* Bind to our port */
|
2022-11-17 22:11:52 +00:00
|
|
|
make_sockaddr(&dlm_local_addr[0], dlm_config.ci_tcp_port, &addr_len);
|
2023-11-06 21:24:38 +00:00
|
|
|
return kernel_bind(sock, (struct sockaddr *)&dlm_local_addr[0],
|
|
|
|
addr_len);
|
2021-07-16 20:22:41 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:40 +00:00
|
|
|
static const struct dlm_proto_ops dlm_tcp_ops = {
|
2021-07-16 20:22:41 +00:00
|
|
|
.name = "TCP",
|
|
|
|
.proto = IPPROTO_TCP,
|
2021-07-16 20:22:43 +00:00
|
|
|
.sockopts = dlm_tcp_sockopts,
|
|
|
|
.bind = dlm_tcp_bind,
|
2021-07-16 20:22:41 +00:00
|
|
|
.listen_validate = dlm_tcp_listen_validate,
|
|
|
|
.listen_sockopts = dlm_tcp_listen_sockopts,
|
|
|
|
.listen_bind = dlm_tcp_listen_bind,
|
2021-07-16 20:22:40 +00:00
|
|
|
};
|
|
|
|
|
2021-07-16 20:22:43 +00:00
|
|
|
static int dlm_sctp_bind(struct socket *sock)
|
|
|
|
{
|
|
|
|
return sctp_bind_addrs(sock, 0);
|
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:42 +00:00
|
|
|
static int dlm_sctp_listen_validate(void)
|
|
|
|
{
|
|
|
|
if (!IS_ENABLED(CONFIG_IP_SCTP)) {
|
|
|
|
log_print("SCTP is not enabled by this kernel");
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
request_module("sctp");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:41 +00:00
|
|
|
static int dlm_sctp_bind_listen(struct socket *sock)
|
|
|
|
{
|
|
|
|
return sctp_bind_addrs(sock, dlm_config.ci_tcp_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dlm_sctp_sockopts(struct socket *sock)
|
|
|
|
{
|
|
|
|
/* Turn off Nagle's algorithm */
|
|
|
|
sctp_sock_set_nodelay(sock->sk);
|
|
|
|
sock_set_rcvbuf(sock->sk, NEEDED_RMEM);
|
|
|
|
}
|
|
|
|
|
2021-07-16 20:22:40 +00:00
|
|
|
static const struct dlm_proto_ops dlm_sctp_ops = {
|
2021-07-16 20:22:41 +00:00
|
|
|
.name = "SCTP",
|
|
|
|
.proto = IPPROTO_SCTP,
|
2021-07-16 20:22:43 +00:00
|
|
|
.try_new_addr = true,
|
|
|
|
.sockopts = dlm_sctp_sockopts,
|
|
|
|
.bind = dlm_sctp_bind,
|
2021-07-16 20:22:42 +00:00
|
|
|
.listen_validate = dlm_sctp_listen_validate,
|
2021-07-16 20:22:41 +00:00
|
|
|
.listen_sockopts = dlm_sctp_sockopts,
|
|
|
|
.listen_bind = dlm_sctp_bind_listen,
|
2021-07-16 20:22:40 +00:00
|
|
|
};
|
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
int dlm_lowcomms_start(void)
|
|
|
|
{
|
2022-11-17 22:11:56 +00:00
|
|
|
int error;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
2007-04-17 14:39:57 +00:00
|
|
|
init_local();
|
|
|
|
if (!dlm_local_count) {
|
2007-04-26 18:46:49 +00:00
|
|
|
error = -ENOTCONN;
|
2006-11-02 16:19:21 +00:00
|
|
|
log_print("no local IP address has been set");
|
2012-03-30 16:46:08 +00:00
|
|
|
goto fail;
|
2006-11-02 16:19:21 +00:00
|
|
|
}
|
|
|
|
|
2012-03-30 16:46:08 +00:00
|
|
|
error = work_start();
|
|
|
|
if (error)
|
2022-11-17 22:11:52 +00:00
|
|
|
goto fail;
|
2012-03-30 16:46:08 +00:00
|
|
|
|
2006-11-02 16:19:21 +00:00
|
|
|
/* Start listening */
|
2021-06-02 13:45:19 +00:00
|
|
|
switch (dlm_config.ci_protocol) {
|
|
|
|
case DLM_PROTO_TCP:
|
2021-07-16 20:22:40 +00:00
|
|
|
dlm_proto_ops = &dlm_tcp_ops;
|
2021-06-02 13:45:19 +00:00
|
|
|
break;
|
|
|
|
case DLM_PROTO_SCTP:
|
2021-07-16 20:22:40 +00:00
|
|
|
dlm_proto_ops = &dlm_sctp_ops;
|
2021-06-02 13:45:19 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_print("Invalid protocol identifier %d set",
|
|
|
|
dlm_config.ci_protocol);
|
|
|
|
error = -EINVAL;
|
2021-07-16 20:22:41 +00:00
|
|
|
goto fail_proto_ops;
|
2021-06-02 13:45:19 +00:00
|
|
|
}
|
2021-07-16 20:22:41 +00:00
|
|
|
|
|
|
|
error = dlm_listen_for_all();
|
2006-11-02 16:19:21 +00:00
|
|
|
if (error)
|
2021-07-16 20:22:41 +00:00
|
|
|
goto fail_listen;
|
2006-11-02 16:19:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2021-07-16 20:22:41 +00:00
|
|
|
fail_listen:
|
|
|
|
dlm_proto_ops = NULL;
|
|
|
|
fail_proto_ops:
|
2021-06-02 13:45:15 +00:00
|
|
|
work_stop();
|
2012-03-30 16:46:08 +00:00
|
|
|
fail:
|
2006-11-02 16:19:21 +00:00
|
|
|
return error;
|
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:46 +00:00
|
|
|
void dlm_lowcomms_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < CONN_HASH_SIZE; i++)
|
|
|
|
INIT_HLIST_HEAD(&connection_hash[i]);
|
|
|
|
|
|
|
|
INIT_WORK(&listen_con.rwork, process_listen_recv_socket);
|
|
|
|
}
|
|
|
|
|
2012-07-26 17:44:30 +00:00
|
|
|
void dlm_lowcomms_exit(void)
|
|
|
|
{
|
2022-11-17 22:11:53 +00:00
|
|
|
struct connection *con;
|
|
|
|
int i, idx;
|
2012-07-26 17:44:30 +00:00
|
|
|
|
2022-11-17 22:11:53 +00:00
|
|
|
idx = srcu_read_lock(&connections_srcu);
|
|
|
|
for (i = 0; i < CONN_HASH_SIZE; i++) {
|
|
|
|
hlist_for_each_entry_rcu(con, &connection_hash[i], list) {
|
|
|
|
spin_lock(&connections_lock);
|
|
|
|
hlist_del_rcu(&con->list);
|
|
|
|
spin_unlock(&connections_lock);
|
|
|
|
|
|
|
|
if (con->othercon)
|
|
|
|
call_srcu(&connections_srcu, &con->othercon->rcu,
|
|
|
|
connection_release);
|
|
|
|
call_srcu(&connections_srcu, &con->rcu, connection_release);
|
|
|
|
}
|
2012-07-26 17:44:30 +00:00
|
|
|
}
|
2022-11-17 22:11:53 +00:00
|
|
|
srcu_read_unlock(&connections_srcu, idx);
|
2012-07-26 17:44:30 +00:00
|
|
|
}
|