blob: 49c5f9407098ee1db0effe41dd3cd9414c75081e [file] [log] [blame]
Thomas Gleixner2522fe42019-05-28 09:57:20 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglande7fd4172006-01-18 09:30:29 +00002/******************************************************************************
3*******************************************************************************
4**
5** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
David Teigland60f98d12011-11-02 14:30:58 -05006** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
David Teiglande7fd4172006-01-18 09:30:29 +00007**
David Teiglande7fd4172006-01-18 09:30:29 +00008**
9*******************************************************************************
10******************************************************************************/
11
12#include <linux/kernel.h>
Paul Gortmaker7963b8a2016-09-19 16:44:50 -040013#include <linux/init.h>
David Teiglande7fd4172006-01-18 09:30:29 +000014#include <linux/configfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
David Teigland44be6fd2008-08-28 11:36:19 -050016#include <linux/in.h>
17#include <linux/in6.h>
David Teigland60f98d12011-11-02 14:30:58 -050018#include <linux/dlmconstants.h>
David Teigland44be6fd2008-08-28 11:36:19 -050019#include <net/ipv6.h>
David Teiglande7fd4172006-01-18 09:30:29 +000020#include <net/sock.h>
21
22#include "config.h"
David Teigland1c032c02006-04-28 10:50:41 -040023#include "lowcomms.h"
David Teiglande7fd4172006-01-18 09:30:29 +000024
25/*
26 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid
27 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/weight
28 * /config/dlm/<cluster>/comms/<comm>/nodeid
29 * /config/dlm/<cluster>/comms/<comm>/local
Masatake YAMATO55b32862011-06-30 21:37:10 +090030 * /config/dlm/<cluster>/comms/<comm>/addr (write only)
31 * /config/dlm/<cluster>/comms/<comm>/addr_list (read only)
David Teiglande7fd4172006-01-18 09:30:29 +000032 * The <cluster> level is useless, but I haven't figured out how to avoid it.
33 */
34
35static struct config_group *space_list;
36static struct config_group *comm_list;
David Teigland51409342008-07-31 09:31:53 -050037static struct dlm_comm *local_comm;
David Teigland60f98d12011-11-02 14:30:58 -050038static uint32_t dlm_comm_count;
David Teiglande7fd4172006-01-18 09:30:29 +000039
David Teigland51409342008-07-31 09:31:53 -050040struct dlm_clusters;
41struct dlm_cluster;
42struct dlm_spaces;
43struct dlm_space;
44struct dlm_comms;
45struct dlm_comm;
46struct dlm_nodes;
47struct dlm_node;
David Teiglande7fd4172006-01-18 09:30:29 +000048
Joel Beckerf89ab862008-07-17 14:53:48 -070049static struct config_group *make_cluster(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000050static void drop_cluster(struct config_group *, struct config_item *);
51static void release_cluster(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070052static struct config_group *make_space(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000053static void drop_space(struct config_group *, struct config_item *);
54static void release_space(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070055static struct config_item *make_comm(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000056static void drop_comm(struct config_group *, struct config_item *);
57static void release_comm(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070058static struct config_item *make_node(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000059static void drop_node(struct config_group *, struct config_item *);
60static void release_node(struct config_item *);
61
Christoph Hellwig9ae0f362015-10-03 15:32:53 +020062static struct configfs_attribute *comm_attrs[];
63static struct configfs_attribute *node_attrs[];
David Teiglande7fd4172006-01-18 09:30:29 +000064
David Teigland51409342008-07-31 09:31:53 -050065struct dlm_cluster {
David Teiglandd2007782007-01-09 09:46:02 -060066 struct config_group group;
67 unsigned int cl_tcp_port;
68 unsigned int cl_buffer_size;
69 unsigned int cl_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -060070 unsigned int cl_recover_timer;
71 unsigned int cl_toss_secs;
72 unsigned int cl_scan_secs;
73 unsigned int cl_log_debug;
Zhilong Liu505ee522016-06-19 23:52:46 -050074 unsigned int cl_log_info;
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +010075 unsigned int cl_protocol;
Alexander Aringa5b7ab62020-06-26 13:26:49 -040076 unsigned int cl_mark;
David Teigland3ae1acf2007-05-18 08:59:31 -050077 unsigned int cl_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -050078 unsigned int cl_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -050079 unsigned int cl_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -050080 unsigned int cl_recover_callbacks;
81 char cl_cluster_name[DLM_LOCKSPACE_LEN];
David Teiglandd2007782007-01-09 09:46:02 -060082};
83
Christoph Hellwig9ae0f362015-10-03 15:32:53 +020084static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
85{
86 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
87 NULL;
88}
89
David Teiglandd2007782007-01-09 09:46:02 -060090enum {
91 CLUSTER_ATTR_TCP_PORT = 0,
92 CLUSTER_ATTR_BUFFER_SIZE,
93 CLUSTER_ATTR_RSBTBL_SIZE,
David Teiglandd2007782007-01-09 09:46:02 -060094 CLUSTER_ATTR_RECOVER_TIMER,
95 CLUSTER_ATTR_TOSS_SECS,
96 CLUSTER_ATTR_SCAN_SECS,
97 CLUSTER_ATTR_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -050098 CLUSTER_ATTR_LOG_INFO,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +010099 CLUSTER_ATTR_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400100 CLUSTER_ATTR_MARK,
David Teigland3ae1acf2007-05-18 08:59:31 -0500101 CLUSTER_ATTR_TIMEWARN_CS,
David Teiglandc6ff6692011-03-28 14:17:26 -0500102 CLUSTER_ATTR_WAITWARN_US,
David Teigland3881ac02011-07-07 14:05:03 -0500103 CLUSTER_ATTR_NEW_RSB_COUNT,
David Teigland60f98d12011-11-02 14:30:58 -0500104 CLUSTER_ATTR_RECOVER_CALLBACKS,
105 CLUSTER_ATTR_CLUSTER_NAME,
David Teiglandd2007782007-01-09 09:46:02 -0600106};
107
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200108static ssize_t cluster_cluster_name_show(struct config_item *item, char *buf)
David Teigland60f98d12011-11-02 14:30:58 -0500109{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200110 struct dlm_cluster *cl = config_item_to_cluster(item);
David Teigland60f98d12011-11-02 14:30:58 -0500111 return sprintf(buf, "%s\n", cl->cl_cluster_name);
112}
113
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200114static ssize_t cluster_cluster_name_store(struct config_item *item,
David Teigland60f98d12011-11-02 14:30:58 -0500115 const char *buf, size_t len)
116{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200117 struct dlm_cluster *cl = config_item_to_cluster(item);
118
Zhao Hongjiangad917e72013-06-20 18:59:51 +0800119 strlcpy(dlm_config.ci_cluster_name, buf,
120 sizeof(dlm_config.ci_cluster_name));
121 strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
David Teigland60f98d12011-11-02 14:30:58 -0500122 return len;
123}
124
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200125CONFIGFS_ATTR(cluster_, cluster_name);
David Teigland60f98d12011-11-02 14:30:58 -0500126
David Teigland51409342008-07-31 09:31:53 -0500127static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400128 int *info_field, bool (*check_cb)(unsigned int x),
David Teiglandd2007782007-01-09 09:46:02 -0600129 const char *buf, size_t len)
130{
131 unsigned int x;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700132 int rc;
David Teiglandd2007782007-01-09 09:46:02 -0600133
134 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100135 return -EPERM;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700136 rc = kstrtouint(buf, 0, &x);
137 if (rc)
138 return rc;
David Teiglandd2007782007-01-09 09:46:02 -0600139
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400140 if (check_cb && check_cb(x))
David Teiglandd2007782007-01-09 09:46:02 -0600141 return -EINVAL;
142
143 *cl_field = x;
144 *info_field = x;
145
146 return len;
147}
148
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400149#define CLUSTER_ATTR(name, check_cb) \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200150static ssize_t cluster_##name##_store(struct config_item *item, \
151 const char *buf, size_t len) \
David Teiglandd2007782007-01-09 09:46:02 -0600152{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200153 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600154 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400155 check_cb, buf, len); \
David Teiglandd2007782007-01-09 09:46:02 -0600156} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200157static ssize_t cluster_##name##_show(struct config_item *item, char *buf) \
David Teiglandd2007782007-01-09 09:46:02 -0600158{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200159 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600160 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
161} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200162CONFIGFS_ATTR(cluster_, name);
David Teiglandd2007782007-01-09 09:46:02 -0600163
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400164static bool dlm_check_zero(unsigned int x)
165{
166 return !x;
167}
168
Alexander Aring4e192ee2020-09-24 10:31:25 -0400169static bool dlm_check_buffer_size(unsigned int x)
170{
171 return (x < DEFAULT_BUFFER_SIZE);
172}
173
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400174CLUSTER_ATTR(tcp_port, dlm_check_zero);
Alexander Aring4e192ee2020-09-24 10:31:25 -0400175CLUSTER_ATTR(buffer_size, dlm_check_buffer_size);
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400176CLUSTER_ATTR(rsbtbl_size, dlm_check_zero);
177CLUSTER_ATTR(recover_timer, dlm_check_zero);
178CLUSTER_ATTR(toss_secs, dlm_check_zero);
179CLUSTER_ATTR(scan_secs, dlm_check_zero);
180CLUSTER_ATTR(log_debug, NULL);
181CLUSTER_ATTR(log_info, NULL);
182CLUSTER_ATTR(protocol, NULL);
183CLUSTER_ATTR(mark, NULL);
184CLUSTER_ATTR(timewarn_cs, dlm_check_zero);
185CLUSTER_ATTR(waitwarn_us, NULL);
186CLUSTER_ATTR(new_rsb_count, NULL);
187CLUSTER_ATTR(recover_callbacks, NULL);
David Teiglandd2007782007-01-09 09:46:02 -0600188
189static struct configfs_attribute *cluster_attrs[] = {
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200190 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port,
191 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size,
192 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size,
193 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer,
194 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs,
195 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs,
196 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug,
Zhilong Liu505ee522016-06-19 23:52:46 -0500197 [CLUSTER_ATTR_LOG_INFO] = &cluster_attr_log_info,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200198 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400199 [CLUSTER_ATTR_MARK] = &cluster_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200200 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs,
201 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us,
202 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count,
203 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks,
204 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name,
David Teiglandd2007782007-01-09 09:46:02 -0600205 NULL,
206};
207
David Teiglande7fd4172006-01-18 09:30:29 +0000208enum {
209 COMM_ATTR_NODEID = 0,
210 COMM_ATTR_LOCAL,
211 COMM_ATTR_ADDR,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900212 COMM_ATTR_ADDR_LIST,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400213 COMM_ATTR_MARK,
David Teiglande7fd4172006-01-18 09:30:29 +0000214};
215
David Teiglande7fd4172006-01-18 09:30:29 +0000216enum {
217 NODE_ATTR_NODEID = 0,
218 NODE_ATTR_WEIGHT,
219};
220
David Teigland51409342008-07-31 09:31:53 -0500221struct dlm_clusters {
David Teiglande7fd4172006-01-18 09:30:29 +0000222 struct configfs_subsystem subsys;
223};
224
David Teigland51409342008-07-31 09:31:53 -0500225struct dlm_spaces {
David Teiglande7fd4172006-01-18 09:30:29 +0000226 struct config_group ss_group;
227};
228
David Teigland51409342008-07-31 09:31:53 -0500229struct dlm_space {
David Teiglande7fd4172006-01-18 09:30:29 +0000230 struct config_group group;
231 struct list_head members;
David Teigland90135922006-01-20 08:47:07 +0000232 struct mutex members_lock;
David Teiglande7fd4172006-01-18 09:30:29 +0000233 int members_count;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400234 struct dlm_nodes *nds;
David Teiglande7fd4172006-01-18 09:30:29 +0000235};
236
David Teigland51409342008-07-31 09:31:53 -0500237struct dlm_comms {
David Teiglande7fd4172006-01-18 09:30:29 +0000238 struct config_group cs_group;
239};
240
David Teigland51409342008-07-31 09:31:53 -0500241struct dlm_comm {
David Teiglande7fd4172006-01-18 09:30:29 +0000242 struct config_item item;
David Teigland60f98d12011-11-02 14:30:58 -0500243 int seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000244 int nodeid;
245 int local;
246 int addr_count;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400247 unsigned int mark;
David Teiglande7fd4172006-01-18 09:30:29 +0000248 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
249};
250
David Teigland51409342008-07-31 09:31:53 -0500251struct dlm_nodes {
David Teiglande7fd4172006-01-18 09:30:29 +0000252 struct config_group ns_group;
253};
254
David Teigland51409342008-07-31 09:31:53 -0500255struct dlm_node {
David Teiglande7fd4172006-01-18 09:30:29 +0000256 struct config_item item;
257 struct list_head list; /* space->members */
258 int nodeid;
259 int weight;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500260 int new;
David Teigland60f98d12011-11-02 14:30:58 -0500261 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
David Teiglande7fd4172006-01-18 09:30:29 +0000262};
263
264static struct configfs_group_operations clusters_ops = {
265 .make_group = make_cluster,
266 .drop_item = drop_cluster,
267};
268
269static struct configfs_item_operations cluster_ops = {
270 .release = release_cluster,
271};
272
273static struct configfs_group_operations spaces_ops = {
274 .make_group = make_space,
275 .drop_item = drop_space,
276};
277
278static struct configfs_item_operations space_ops = {
279 .release = release_space,
280};
281
282static struct configfs_group_operations comms_ops = {
283 .make_item = make_comm,
284 .drop_item = drop_comm,
285};
286
287static struct configfs_item_operations comm_ops = {
288 .release = release_comm,
David Teiglande7fd4172006-01-18 09:30:29 +0000289};
290
291static struct configfs_group_operations nodes_ops = {
292 .make_item = make_node,
293 .drop_item = drop_node,
294};
295
296static struct configfs_item_operations node_ops = {
297 .release = release_node,
David Teiglande7fd4172006-01-18 09:30:29 +0000298};
299
Bhumika Goyal761594b2017-10-16 17:18:53 +0200300static const struct config_item_type clusters_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000301 .ct_group_ops = &clusters_ops,
302 .ct_owner = THIS_MODULE,
303};
304
Bhumika Goyal761594b2017-10-16 17:18:53 +0200305static const struct config_item_type cluster_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000306 .ct_item_ops = &cluster_ops,
David Teiglandd2007782007-01-09 09:46:02 -0600307 .ct_attrs = cluster_attrs,
David Teiglande7fd4172006-01-18 09:30:29 +0000308 .ct_owner = THIS_MODULE,
309};
310
Bhumika Goyal761594b2017-10-16 17:18:53 +0200311static const struct config_item_type spaces_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000312 .ct_group_ops = &spaces_ops,
313 .ct_owner = THIS_MODULE,
314};
315
Bhumika Goyal761594b2017-10-16 17:18:53 +0200316static const struct config_item_type space_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000317 .ct_item_ops = &space_ops,
318 .ct_owner = THIS_MODULE,
319};
320
Bhumika Goyal761594b2017-10-16 17:18:53 +0200321static const struct config_item_type comms_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000322 .ct_group_ops = &comms_ops,
323 .ct_owner = THIS_MODULE,
324};
325
Bhumika Goyal761594b2017-10-16 17:18:53 +0200326static const struct config_item_type comm_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000327 .ct_item_ops = &comm_ops,
328 .ct_attrs = comm_attrs,
329 .ct_owner = THIS_MODULE,
330};
331
Bhumika Goyal761594b2017-10-16 17:18:53 +0200332static const struct config_item_type nodes_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000333 .ct_group_ops = &nodes_ops,
334 .ct_owner = THIS_MODULE,
335};
336
Bhumika Goyal761594b2017-10-16 17:18:53 +0200337static const struct config_item_type node_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000338 .ct_item_ops = &node_ops,
339 .ct_attrs = node_attrs,
340 .ct_owner = THIS_MODULE,
341};
342
Andrew Morton27eccf42008-09-05 08:42:08 -0500343static struct dlm_space *config_item_to_space(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000344{
David Teigland51409342008-07-31 09:31:53 -0500345 return i ? container_of(to_config_group(i), struct dlm_space, group) :
346 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000347}
348
Andrew Morton27eccf42008-09-05 08:42:08 -0500349static struct dlm_comm *config_item_to_comm(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000350{
David Teigland51409342008-07-31 09:31:53 -0500351 return i ? container_of(i, struct dlm_comm, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000352}
353
Andrew Morton27eccf42008-09-05 08:42:08 -0500354static struct dlm_node *config_item_to_node(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000355{
David Teigland51409342008-07-31 09:31:53 -0500356 return i ? container_of(i, struct dlm_node, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000357}
358
Joel Beckerf89ab862008-07-17 14:53:48 -0700359static struct config_group *make_cluster(struct config_group *g,
360 const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000361{
David Teigland51409342008-07-31 09:31:53 -0500362 struct dlm_cluster *cl = NULL;
363 struct dlm_spaces *sps = NULL;
364 struct dlm_comms *cms = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000365
David Teigland573c24c2009-11-30 16:34:43 -0600366 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600367 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
368 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000369
Andrew Price82c7d822016-03-22 17:36:34 +0000370 if (!cl || !sps || !cms)
David Teiglande7fd4172006-01-18 09:30:29 +0000371 goto fail;
372
373 config_group_init_type_name(&cl->group, name, &cluster_type);
374 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
375 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
376
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100377 configfs_add_default_group(&sps->ss_group, &cl->group);
378 configfs_add_default_group(&cms->cs_group, &cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000379
David Teiglandd2007782007-01-09 09:46:02 -0600380 cl->cl_tcp_port = dlm_config.ci_tcp_port;
381 cl->cl_buffer_size = dlm_config.ci_buffer_size;
382 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -0600383 cl->cl_recover_timer = dlm_config.ci_recover_timer;
384 cl->cl_toss_secs = dlm_config.ci_toss_secs;
385 cl->cl_scan_secs = dlm_config.ci_scan_secs;
386 cl->cl_log_debug = dlm_config.ci_log_debug;
Zhilong Liu505ee522016-06-19 23:52:46 -0500387 cl->cl_log_info = dlm_config.ci_log_info;
David Teigland0b7cac02007-05-29 08:47:51 -0500388 cl->cl_protocol = dlm_config.ci_protocol;
David Teigland84d8cd62007-05-29 08:44:23 -0500389 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500390 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500391 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500392 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
393 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
394 DLM_LOCKSPACE_LEN);
David Teiglandd2007782007-01-09 09:46:02 -0600395
David Teiglande7fd4172006-01-18 09:30:29 +0000396 space_list = &sps->ss_group;
397 comm_list = &cms->cs_group;
Joel Beckerf89ab862008-07-17 14:53:48 -0700398 return &cl->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000399
400 fail:
401 kfree(cl);
David Teiglande7fd4172006-01-18 09:30:29 +0000402 kfree(sps);
403 kfree(cms);
Joel Beckera6795e92008-07-17 15:21:29 -0700404 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000405}
406
407static void drop_cluster(struct config_group *g, struct config_item *i)
408{
Andrew Morton27eccf42008-09-05 08:42:08 -0500409 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000410
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100411 configfs_remove_default_groups(&cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000412
413 space_list = NULL;
414 comm_list = NULL;
415
416 config_item_put(i);
417}
418
419static void release_cluster(struct config_item *i)
420{
Andrew Morton27eccf42008-09-05 08:42:08 -0500421 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000422 kfree(cl);
423}
424
Joel Beckerf89ab862008-07-17 14:53:48 -0700425static struct config_group *make_space(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000426{
David Teigland51409342008-07-31 09:31:53 -0500427 struct dlm_space *sp = NULL;
428 struct dlm_nodes *nds = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000429
David Teigland573c24c2009-11-30 16:34:43 -0600430 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600431 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000432
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100433 if (!sp || !nds)
David Teiglande7fd4172006-01-18 09:30:29 +0000434 goto fail;
435
436 config_group_init_type_name(&sp->group, name, &space_type);
David Teiglande7fd4172006-01-18 09:30:29 +0000437
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100438 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
439 configfs_add_default_group(&nds->ns_group, &sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000440
441 INIT_LIST_HEAD(&sp->members);
David Teigland90135922006-01-20 08:47:07 +0000442 mutex_init(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000443 sp->members_count = 0;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400444 sp->nds = nds;
Joel Beckerf89ab862008-07-17 14:53:48 -0700445 return &sp->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000446
447 fail:
448 kfree(sp);
David Teiglande7fd4172006-01-18 09:30:29 +0000449 kfree(nds);
Joel Beckera6795e92008-07-17 15:21:29 -0700450 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000451}
452
453static void drop_space(struct config_group *g, struct config_item *i)
454{
Andrew Morton27eccf42008-09-05 08:42:08 -0500455 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000456
457 /* assert list_empty(&sp->members) */
458
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100459 configfs_remove_default_groups(&sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000460 config_item_put(i);
461}
462
463static void release_space(struct config_item *i)
464{
Andrew Morton27eccf42008-09-05 08:42:08 -0500465 struct dlm_space *sp = config_item_to_space(i);
Alexander Aring3d2825c2020-08-27 15:02:51 -0400466 kfree(sp->nds);
David Teiglande7fd4172006-01-18 09:30:29 +0000467 kfree(sp);
468}
469
Joel Beckerf89ab862008-07-17 14:53:48 -0700470static struct config_item *make_comm(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000471{
David Teigland51409342008-07-31 09:31:53 -0500472 struct dlm_comm *cm;
David Teiglande7fd4172006-01-18 09:30:29 +0000473
David Teigland573c24c2009-11-30 16:34:43 -0600474 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000475 if (!cm)
Joel Beckera6795e92008-07-17 15:21:29 -0700476 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000477
478 config_item_init_type_name(&cm->item, name, &comm_type);
David Teigland60f98d12011-11-02 14:30:58 -0500479
480 cm->seq = dlm_comm_count++;
481 if (!cm->seq)
482 cm->seq = dlm_comm_count++;
483
David Teiglande7fd4172006-01-18 09:30:29 +0000484 cm->nodeid = -1;
485 cm->local = 0;
486 cm->addr_count = 0;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400487 cm->mark = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700488 return &cm->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000489}
490
491static void drop_comm(struct config_group *g, struct config_item *i)
492{
Andrew Morton27eccf42008-09-05 08:42:08 -0500493 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000494 if (local_comm == cm)
495 local_comm = NULL;
David Teigland1c032c02006-04-28 10:50:41 -0400496 dlm_lowcomms_close(cm->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000497 while (cm->addr_count--)
498 kfree(cm->addr[cm->addr_count]);
499 config_item_put(i);
500}
501
502static void release_comm(struct config_item *i)
503{
Andrew Morton27eccf42008-09-05 08:42:08 -0500504 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000505 kfree(cm);
506}
507
Joel Beckerf89ab862008-07-17 14:53:48 -0700508static struct config_item *make_node(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000509{
Andrew Morton27eccf42008-09-05 08:42:08 -0500510 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
David Teigland51409342008-07-31 09:31:53 -0500511 struct dlm_node *nd;
David Teiglande7fd4172006-01-18 09:30:29 +0000512
David Teigland573c24c2009-11-30 16:34:43 -0600513 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000514 if (!nd)
Joel Beckera6795e92008-07-17 15:21:29 -0700515 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000516
517 config_item_init_type_name(&nd->item, name, &node_type);
518 nd->nodeid = -1;
519 nd->weight = 1; /* default weight of 1 if none is set */
David Teiglandd44e0fc2008-03-18 14:22:11 -0500520 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
David Teiglande7fd4172006-01-18 09:30:29 +0000521
David Teigland90135922006-01-20 08:47:07 +0000522 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000523 list_add(&nd->list, &sp->members);
524 sp->members_count++;
David Teigland90135922006-01-20 08:47:07 +0000525 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000526
Joel Beckerf89ab862008-07-17 14:53:48 -0700527 return &nd->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000528}
529
530static void drop_node(struct config_group *g, struct config_item *i)
531{
Andrew Morton27eccf42008-09-05 08:42:08 -0500532 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
533 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000534
David Teigland90135922006-01-20 08:47:07 +0000535 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000536 list_del(&nd->list);
537 sp->members_count--;
David Teigland90135922006-01-20 08:47:07 +0000538 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000539
540 config_item_put(i);
541}
542
543static void release_node(struct config_item *i)
544{
Andrew Morton27eccf42008-09-05 08:42:08 -0500545 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000546 kfree(nd);
547}
548
David Teigland51409342008-07-31 09:31:53 -0500549static struct dlm_clusters clusters_root = {
David Teiglande7fd4172006-01-18 09:30:29 +0000550 .subsys = {
551 .su_group = {
552 .cg_item = {
553 .ci_namebuf = "dlm",
554 .ci_type = &clusters_type,
555 },
556 },
557 },
558};
559
Denis Cheng30727172008-02-02 01:53:46 +0800560int __init dlm_config_init(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000561{
562 config_group_init(&clusters_root.subsys.su_group);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700563 mutex_init(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000564 return configfs_register_subsystem(&clusters_root.subsys);
565}
566
567void dlm_config_exit(void)
568{
569 configfs_unregister_subsystem(&clusters_root.subsys);
570}
571
572/*
573 * Functions for user space to read/write attributes
574 */
575
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200576static ssize_t comm_nodeid_show(struct config_item *item, char *buf)
David Teiglandd2007782007-01-09 09:46:02 -0600577{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200578 return sprintf(buf, "%d\n", config_item_to_comm(item)->nodeid);
David Teiglandd2007782007-01-09 09:46:02 -0600579}
580
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200581static ssize_t comm_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500582 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000583{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200584 int rc = kstrtoint(buf, 0, &config_item_to_comm(item)->nodeid);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700585
586 if (rc)
587 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000588 return len;
589}
590
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200591static ssize_t comm_local_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000592{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200593 return sprintf(buf, "%d\n", config_item_to_comm(item)->local);
David Teiglande7fd4172006-01-18 09:30:29 +0000594}
595
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200596static ssize_t comm_local_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500597 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000598{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200599 struct dlm_comm *cm = config_item_to_comm(item);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700600 int rc = kstrtoint(buf, 0, &cm->local);
601
602 if (rc)
603 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000604 if (cm->local && !local_comm)
605 local_comm = cm;
606 return len;
607}
608
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200609static ssize_t comm_addr_store(struct config_item *item, const char *buf,
610 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000611{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200612 struct dlm_comm *cm = config_item_to_comm(item);
David Teiglande7fd4172006-01-18 09:30:29 +0000613 struct sockaddr_storage *addr;
David Teigland36b71a82012-07-26 12:44:30 -0500614 int rv;
David Teiglande7fd4172006-01-18 09:30:29 +0000615
616 if (len != sizeof(struct sockaddr_storage))
617 return -EINVAL;
618
619 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
620 return -ENOSPC;
621
David Teigland573c24c2009-11-30 16:34:43 -0600622 addr = kzalloc(sizeof(*addr), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000623 if (!addr)
624 return -ENOMEM;
625
626 memcpy(addr, buf, len);
David Teigland36b71a82012-07-26 12:44:30 -0500627
628 rv = dlm_lowcomms_addr(cm->nodeid, addr, len);
629 if (rv) {
630 kfree(addr);
631 return rv;
632 }
633
David Teiglande7fd4172006-01-18 09:30:29 +0000634 cm->addr[cm->addr_count++] = addr;
635 return len;
636}
637
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200638static ssize_t comm_addr_list_show(struct config_item *item, char *buf)
Masatake YAMATO55b32862011-06-30 21:37:10 +0900639{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200640 struct dlm_comm *cm = config_item_to_comm(item);
Masatake YAMATO55b32862011-06-30 21:37:10 +0900641 ssize_t s;
642 ssize_t allowance;
643 int i;
644 struct sockaddr_storage *addr;
645 struct sockaddr_in *addr_in;
646 struct sockaddr_in6 *addr_in6;
647
648 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
649 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
650
651
652 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
653 allowance = 4096;
654 buf[0] = '\0';
655
656 for (i = 0; i < cm->addr_count; i++) {
657 addr = cm->addr[i];
658
659 switch(addr->ss_family) {
660 case AF_INET:
661 addr_in = (struct sockaddr_in *)addr;
662 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
663 break;
664 case AF_INET6:
665 addr_in6 = (struct sockaddr_in6 *)addr;
666 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
667 break;
668 default:
669 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
670 break;
671 }
672 allowance -= s;
673 if (allowance >= 0)
674 strcat(buf, buf0);
675 else {
676 allowance += s;
677 break;
678 }
679 }
680 return 4096 - allowance;
681}
682
Alexander Aring9c9f1682020-06-26 13:26:50 -0400683static ssize_t comm_mark_show(struct config_item *item, char *buf)
684{
685 return sprintf(buf, "%u\n", config_item_to_comm(item)->mark);
686}
687
688static ssize_t comm_mark_store(struct config_item *item, const char *buf,
689 size_t len)
690{
691 unsigned int mark;
692 int rc;
693
694 rc = kstrtouint(buf, 0, &mark);
695 if (rc)
696 return rc;
697
698 config_item_to_comm(item)->mark = mark;
699 return len;
700}
701
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200702CONFIGFS_ATTR(comm_, nodeid);
703CONFIGFS_ATTR(comm_, local);
Alexander Aring9c9f1682020-06-26 13:26:50 -0400704CONFIGFS_ATTR(comm_, mark);
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200705CONFIGFS_ATTR_WO(comm_, addr);
706CONFIGFS_ATTR_RO(comm_, addr_list);
707
708static struct configfs_attribute *comm_attrs[] = {
709 [COMM_ATTR_NODEID] = &comm_attr_nodeid,
710 [COMM_ATTR_LOCAL] = &comm_attr_local,
711 [COMM_ATTR_ADDR] = &comm_attr_addr,
712 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400713 [COMM_ATTR_MARK] = &comm_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200714 NULL,
715};
716
717static ssize_t node_nodeid_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000718{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200719 return sprintf(buf, "%d\n", config_item_to_node(item)->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000720}
721
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200722static ssize_t node_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500723 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000724{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200725 struct dlm_node *nd = config_item_to_node(item);
David Teigland60f98d12011-11-02 14:30:58 -0500726 uint32_t seq = 0;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700727 int rc = kstrtoint(buf, 0, &nd->nodeid);
728
729 if (rc)
730 return rc;
David Teigland60f98d12011-11-02 14:30:58 -0500731 dlm_comm_seq(nd->nodeid, &seq);
732 nd->comm_seq = seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000733 return len;
734}
735
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200736static ssize_t node_weight_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000737{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200738 return sprintf(buf, "%d\n", config_item_to_node(item)->weight);
David Teiglande7fd4172006-01-18 09:30:29 +0000739}
740
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200741static ssize_t node_weight_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500742 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000743{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200744 int rc = kstrtoint(buf, 0, &config_item_to_node(item)->weight);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700745
746 if (rc)
747 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000748 return len;
749}
750
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200751CONFIGFS_ATTR(node_, nodeid);
752CONFIGFS_ATTR(node_, weight);
753
754static struct configfs_attribute *node_attrs[] = {
755 [NODE_ATTR_NODEID] = &node_attr_nodeid,
756 [NODE_ATTR_WEIGHT] = &node_attr_weight,
757 NULL,
758};
759
David Teiglande7fd4172006-01-18 09:30:29 +0000760/*
761 * Functions for the dlm to get the info that's been configured
762 */
763
David Teigland51409342008-07-31 09:31:53 -0500764static struct dlm_space *get_space(char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000765{
Satyam Sharma3168b072007-05-08 09:18:58 +0100766 struct config_item *i;
767
David Teiglande7fd4172006-01-18 09:30:29 +0000768 if (!space_list)
769 return NULL;
Satyam Sharma3168b072007-05-08 09:18:58 +0100770
Joel Beckere6bd07a2007-07-06 23:33:17 -0700771 mutex_lock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3fe6c5c2007-07-04 16:37:16 +0530772 i = config_group_find_item(space_list, name);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700773 mutex_unlock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3168b072007-05-08 09:18:58 +0100774
Andrew Morton27eccf42008-09-05 08:42:08 -0500775 return config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000776}
777
David Teigland51409342008-07-31 09:31:53 -0500778static void put_space(struct dlm_space *sp)
David Teiglande7fd4172006-01-18 09:30:29 +0000779{
780 config_item_put(&sp->group.cg_item);
781}
782
David Teigland36b71a82012-07-26 12:44:30 -0500783static struct dlm_comm *get_comm(int nodeid)
David Teiglande7fd4172006-01-18 09:30:29 +0000784{
785 struct config_item *i;
David Teigland51409342008-07-31 09:31:53 -0500786 struct dlm_comm *cm = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000787 int found = 0;
788
789 if (!comm_list)
790 return NULL;
791
Joel Beckere6bd07a2007-07-06 23:33:17 -0700792 mutex_lock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000793
794 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
Andrew Morton27eccf42008-09-05 08:42:08 -0500795 cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000796
David Teigland36b71a82012-07-26 12:44:30 -0500797 if (cm->nodeid != nodeid)
798 continue;
799 found = 1;
800 config_item_get(i);
801 break;
David Teiglande7fd4172006-01-18 09:30:29 +0000802 }
Joel Beckere6bd07a2007-07-06 23:33:17 -0700803 mutex_unlock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000804
Satyam Sharma3168b072007-05-08 09:18:58 +0100805 if (!found)
David Teiglande7fd4172006-01-18 09:30:29 +0000806 cm = NULL;
807 return cm;
808}
809
David Teigland51409342008-07-31 09:31:53 -0500810static void put_comm(struct dlm_comm *cm)
David Teiglande7fd4172006-01-18 09:30:29 +0000811{
812 config_item_put(&cm->item);
813}
814
815/* caller must free mem */
David Teigland60f98d12011-11-02 14:30:58 -0500816int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
817 int *count_out)
David Teiglande7fd4172006-01-18 09:30:29 +0000818{
David Teigland51409342008-07-31 09:31:53 -0500819 struct dlm_space *sp;
820 struct dlm_node *nd;
David Teigland60f98d12011-11-02 14:30:58 -0500821 struct dlm_config_node *nodes, *node;
822 int rv, count;
David Teiglande7fd4172006-01-18 09:30:29 +0000823
824 sp = get_space(lsname);
825 if (!sp)
826 return -EEXIST;
827
David Teigland90135922006-01-20 08:47:07 +0000828 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000829 if (!sp->members_count) {
David Teiglandd44e0fc2008-03-18 14:22:11 -0500830 rv = -EINVAL;
831 printk(KERN_ERR "dlm: zero members_count\n");
David Teiglande7fd4172006-01-18 09:30:29 +0000832 goto out;
833 }
834
David Teigland60f98d12011-11-02 14:30:58 -0500835 count = sp->members_count;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500836
David Teigland60f98d12011-11-02 14:30:58 -0500837 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
838 if (!nodes) {
David Teiglande7fd4172006-01-18 09:30:29 +0000839 rv = -ENOMEM;
840 goto out;
841 }
842
David Teigland60f98d12011-11-02 14:30:58 -0500843 node = nodes;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500844 list_for_each_entry(nd, &sp->members, list) {
David Teigland60f98d12011-11-02 14:30:58 -0500845 node->nodeid = nd->nodeid;
846 node->weight = nd->weight;
847 node->new = nd->new;
848 node->comm_seq = nd->comm_seq;
849 node++;
850
851 nd->new = 0;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500852 }
David Teiglande7fd4172006-01-18 09:30:29 +0000853
David Teigland60f98d12011-11-02 14:30:58 -0500854 *count_out = count;
855 *nodes_out = nodes;
856 rv = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000857 out:
David Teigland90135922006-01-20 08:47:07 +0000858 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000859 put_space(sp);
860 return rv;
861}
862
David Teigland60f98d12011-11-02 14:30:58 -0500863int dlm_comm_seq(int nodeid, uint32_t *seq)
David Teiglande7fd4172006-01-18 09:30:29 +0000864{
David Teigland36b71a82012-07-26 12:44:30 -0500865 struct dlm_comm *cm = get_comm(nodeid);
David Teigland60f98d12011-11-02 14:30:58 -0500866 if (!cm)
867 return -EEXIST;
868 *seq = cm->seq;
869 put_comm(cm);
870 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000871}
872
Alexander Aring3f78cd72020-09-24 10:31:23 -0400873void dlm_comm_mark(int nodeid, unsigned int *mark)
Alexander Aring9c9f1682020-06-26 13:26:50 -0400874{
875 struct dlm_comm *cm;
876
877 cm = get_comm(nodeid);
Alexander Aring3f78cd72020-09-24 10:31:23 -0400878 if (!cm) {
879 *mark = dlm_config.ci_mark;
880 return;
881 }
Alexander Aring9c9f1682020-06-26 13:26:50 -0400882
Alexander Aring3f78cd72020-09-24 10:31:23 -0400883 if (cm->mark)
884 *mark = cm->mark;
885 else
886 *mark = dlm_config.ci_mark;
887
Alexander Aring9c9f1682020-06-26 13:26:50 -0400888 put_comm(cm);
Alexander Aring9c9f1682020-06-26 13:26:50 -0400889}
890
David Teiglande7fd4172006-01-18 09:30:29 +0000891int dlm_our_nodeid(void)
892{
893 return local_comm ? local_comm->nodeid : 0;
894}
895
896/* num 0 is first addr, num 1 is second addr */
897int dlm_our_addr(struct sockaddr_storage *addr, int num)
898{
899 if (!local_comm)
900 return -1;
901 if (num + 1 > local_comm->addr_count)
902 return -1;
903 memcpy(addr, local_comm->addr[num], sizeof(*addr));
904 return 0;
905}
906
907/* Config file defaults */
908#define DEFAULT_TCP_PORT 21064
David Teiglande3853a92011-03-10 13:07:17 -0600909#define DEFAULT_RSBTBL_SIZE 1024
David Teiglande7fd4172006-01-18 09:30:29 +0000910#define DEFAULT_RECOVER_TIMER 5
911#define DEFAULT_TOSS_SECS 10
912#define DEFAULT_SCAN_SECS 5
David Teigland99fc6482007-01-09 09:44:01 -0600913#define DEFAULT_LOG_DEBUG 0
Zhilong Liu505ee522016-06-19 23:52:46 -0500914#define DEFAULT_LOG_INFO 1
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100915#define DEFAULT_PROTOCOL 0
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400916#define DEFAULT_MARK 0
David Teigland3ae1acf2007-05-18 08:59:31 -0500917#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
David Teiglandc6ff6692011-03-28 14:17:26 -0500918#define DEFAULT_WAITWARN_US 0
David Teigland3881ac02011-07-07 14:05:03 -0500919#define DEFAULT_NEW_RSB_COUNT 128
David Teigland60f98d12011-11-02 14:30:58 -0500920#define DEFAULT_RECOVER_CALLBACKS 0
921#define DEFAULT_CLUSTER_NAME ""
David Teiglande7fd4172006-01-18 09:30:29 +0000922
923struct dlm_config_info dlm_config = {
David Teigland68c817a2007-01-09 09:41:48 -0600924 .ci_tcp_port = DEFAULT_TCP_PORT,
925 .ci_buffer_size = DEFAULT_BUFFER_SIZE,
926 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
David Teigland68c817a2007-01-09 09:41:48 -0600927 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
928 .ci_toss_secs = DEFAULT_TOSS_SECS,
David Teigland99fc6482007-01-09 09:44:01 -0600929 .ci_scan_secs = DEFAULT_SCAN_SECS,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100930 .ci_log_debug = DEFAULT_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -0500931 .ci_log_info = DEFAULT_LOG_INFO,
David Teigland3ae1acf2007-05-18 08:59:31 -0500932 .ci_protocol = DEFAULT_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400933 .ci_mark = DEFAULT_MARK,
David Teiglandc6ff6692011-03-28 14:17:26 -0500934 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
David Teigland3881ac02011-07-07 14:05:03 -0500935 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
David Teigland60f98d12011-11-02 14:30:58 -0500936 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
937 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
938 .ci_cluster_name = DEFAULT_CLUSTER_NAME
David Teiglande7fd4172006-01-18 09:30:29 +0000939};
940