blob: 01ae294743e95392601451359cab2b9b3ec45270 [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"
Alexander Aringa070a912021-05-21 15:08:41 -040023#include "midcomms.h"
David Teigland1c032c02006-04-28 10:50:41 -040024#include "lowcomms.h"
David Teiglande7fd4172006-01-18 09:30:29 +000025
26/*
27 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid
28 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/weight
29 * /config/dlm/<cluster>/comms/<comm>/nodeid
30 * /config/dlm/<cluster>/comms/<comm>/local
Masatake YAMATO55b32862011-06-30 21:37:10 +090031 * /config/dlm/<cluster>/comms/<comm>/addr (write only)
32 * /config/dlm/<cluster>/comms/<comm>/addr_list (read only)
David Teiglande7fd4172006-01-18 09:30:29 +000033 * The <cluster> level is useless, but I haven't figured out how to avoid it.
34 */
35
36static struct config_group *space_list;
37static struct config_group *comm_list;
David Teigland51409342008-07-31 09:31:53 -050038static struct dlm_comm *local_comm;
David Teigland60f98d12011-11-02 14:30:58 -050039static uint32_t dlm_comm_count;
David Teiglande7fd4172006-01-18 09:30:29 +000040
David Teigland51409342008-07-31 09:31:53 -050041struct dlm_clusters;
42struct dlm_cluster;
43struct dlm_spaces;
44struct dlm_space;
45struct dlm_comms;
46struct dlm_comm;
47struct dlm_nodes;
48struct dlm_node;
David Teiglande7fd4172006-01-18 09:30:29 +000049
Joel Beckerf89ab862008-07-17 14:53:48 -070050static struct config_group *make_cluster(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000051static void drop_cluster(struct config_group *, struct config_item *);
52static void release_cluster(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070053static struct config_group *make_space(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000054static void drop_space(struct config_group *, struct config_item *);
55static void release_space(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070056static struct config_item *make_comm(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000057static void drop_comm(struct config_group *, struct config_item *);
58static void release_comm(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070059static struct config_item *make_node(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000060static void drop_node(struct config_group *, struct config_item *);
61static void release_node(struct config_item *);
62
Christoph Hellwig9ae0f362015-10-03 15:32:53 +020063static struct configfs_attribute *comm_attrs[];
64static struct configfs_attribute *node_attrs[];
David Teiglande7fd4172006-01-18 09:30:29 +000065
David Teigland51409342008-07-31 09:31:53 -050066struct dlm_cluster {
David Teiglandd2007782007-01-09 09:46:02 -060067 struct config_group group;
68 unsigned int cl_tcp_port;
69 unsigned int cl_buffer_size;
70 unsigned int cl_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -060071 unsigned int cl_recover_timer;
72 unsigned int cl_toss_secs;
73 unsigned int cl_scan_secs;
74 unsigned int cl_log_debug;
Zhilong Liu505ee522016-06-19 23:52:46 -050075 unsigned int cl_log_info;
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +010076 unsigned int cl_protocol;
Alexander Aringa5b7ab62020-06-26 13:26:49 -040077 unsigned int cl_mark;
David Teigland3ae1acf2007-05-18 08:59:31 -050078 unsigned int cl_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -050079 unsigned int cl_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -050080 unsigned int cl_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -050081 unsigned int cl_recover_callbacks;
82 char cl_cluster_name[DLM_LOCKSPACE_LEN];
David Teiglandd2007782007-01-09 09:46:02 -060083};
84
Christoph Hellwig9ae0f362015-10-03 15:32:53 +020085static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
86{
87 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
88 NULL;
89}
90
David Teiglandd2007782007-01-09 09:46:02 -060091enum {
92 CLUSTER_ATTR_TCP_PORT = 0,
93 CLUSTER_ATTR_BUFFER_SIZE,
94 CLUSTER_ATTR_RSBTBL_SIZE,
David Teiglandd2007782007-01-09 09:46:02 -060095 CLUSTER_ATTR_RECOVER_TIMER,
96 CLUSTER_ATTR_TOSS_SECS,
97 CLUSTER_ATTR_SCAN_SECS,
98 CLUSTER_ATTR_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -050099 CLUSTER_ATTR_LOG_INFO,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100100 CLUSTER_ATTR_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400101 CLUSTER_ATTR_MARK,
David Teigland3ae1acf2007-05-18 08:59:31 -0500102 CLUSTER_ATTR_TIMEWARN_CS,
David Teiglandc6ff6692011-03-28 14:17:26 -0500103 CLUSTER_ATTR_WAITWARN_US,
David Teigland3881ac02011-07-07 14:05:03 -0500104 CLUSTER_ATTR_NEW_RSB_COUNT,
David Teigland60f98d12011-11-02 14:30:58 -0500105 CLUSTER_ATTR_RECOVER_CALLBACKS,
106 CLUSTER_ATTR_CLUSTER_NAME,
David Teiglandd2007782007-01-09 09:46:02 -0600107};
108
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200109static ssize_t cluster_cluster_name_show(struct config_item *item, char *buf)
David Teigland60f98d12011-11-02 14:30:58 -0500110{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200111 struct dlm_cluster *cl = config_item_to_cluster(item);
David Teigland60f98d12011-11-02 14:30:58 -0500112 return sprintf(buf, "%s\n", cl->cl_cluster_name);
113}
114
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200115static ssize_t cluster_cluster_name_store(struct config_item *item,
David Teigland60f98d12011-11-02 14:30:58 -0500116 const char *buf, size_t len)
117{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200118 struct dlm_cluster *cl = config_item_to_cluster(item);
119
Zhao Hongjiangad917e72013-06-20 18:59:51 +0800120 strlcpy(dlm_config.ci_cluster_name, buf,
121 sizeof(dlm_config.ci_cluster_name));
122 strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
David Teigland60f98d12011-11-02 14:30:58 -0500123 return len;
124}
125
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200126CONFIGFS_ATTR(cluster_, cluster_name);
David Teigland60f98d12011-11-02 14:30:58 -0500127
David Teigland51409342008-07-31 09:31:53 -0500128static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
Alexander Aring8aa95402021-03-01 17:05:12 -0500129 int *info_field, int (*check_cb)(unsigned int x),
David Teiglandd2007782007-01-09 09:46:02 -0600130 const char *buf, size_t len)
131{
132 unsigned int x;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700133 int rc;
David Teiglandd2007782007-01-09 09:46:02 -0600134
135 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100136 return -EPERM;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700137 rc = kstrtouint(buf, 0, &x);
138 if (rc)
139 return rc;
David Teiglandd2007782007-01-09 09:46:02 -0600140
Alexander Aring8aa95402021-03-01 17:05:12 -0500141 if (check_cb) {
142 rc = check_cb(x);
143 if (rc)
144 return rc;
145 }
David Teiglandd2007782007-01-09 09:46:02 -0600146
147 *cl_field = x;
148 *info_field = x;
149
150 return len;
151}
152
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400153#define CLUSTER_ATTR(name, check_cb) \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200154static ssize_t cluster_##name##_store(struct config_item *item, \
155 const char *buf, size_t len) \
David Teiglandd2007782007-01-09 09:46:02 -0600156{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200157 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600158 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400159 check_cb, buf, len); \
David Teiglandd2007782007-01-09 09:46:02 -0600160} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200161static ssize_t cluster_##name##_show(struct config_item *item, char *buf) \
David Teiglandd2007782007-01-09 09:46:02 -0600162{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200163 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600164 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
165} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200166CONFIGFS_ATTR(cluster_, name);
David Teiglandd2007782007-01-09 09:46:02 -0600167
Alexander Aring51746162021-03-01 17:05:13 -0500168static int dlm_check_protocol_and_dlm_running(unsigned int x)
169{
170 switch (x) {
171 case 0:
172 /* TCP */
173 break;
174 case 1:
175 /* SCTP */
176 break;
177 default:
178 return -EINVAL;
179 }
180
181 if (dlm_allow_conn)
182 return -EBUSY;
183
184 return 0;
185}
186
187static int dlm_check_zero_and_dlm_running(unsigned int x)
188{
189 if (!x)
190 return -EINVAL;
191
192 if (dlm_allow_conn)
193 return -EBUSY;
194
195 return 0;
196}
197
Alexander Aring8aa95402021-03-01 17:05:12 -0500198static int dlm_check_zero(unsigned int x)
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400199{
Alexander Aring8aa95402021-03-01 17:05:12 -0500200 if (!x)
201 return -EINVAL;
202
203 return 0;
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400204}
205
Alexander Aring8aa95402021-03-01 17:05:12 -0500206static int dlm_check_buffer_size(unsigned int x)
Alexander Aring4e192ee2020-09-24 10:31:25 -0400207{
Alexander Aring8aa95402021-03-01 17:05:12 -0500208 if (x < DEFAULT_BUFFER_SIZE)
209 return -EINVAL;
210
211 return 0;
Alexander Aring4e192ee2020-09-24 10:31:25 -0400212}
213
Alexander Aring51746162021-03-01 17:05:13 -0500214CLUSTER_ATTR(tcp_port, dlm_check_zero_and_dlm_running);
Alexander Aring4e192ee2020-09-24 10:31:25 -0400215CLUSTER_ATTR(buffer_size, dlm_check_buffer_size);
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400216CLUSTER_ATTR(rsbtbl_size, dlm_check_zero);
217CLUSTER_ATTR(recover_timer, dlm_check_zero);
218CLUSTER_ATTR(toss_secs, dlm_check_zero);
219CLUSTER_ATTR(scan_secs, dlm_check_zero);
220CLUSTER_ATTR(log_debug, NULL);
221CLUSTER_ATTR(log_info, NULL);
Alexander Aring51746162021-03-01 17:05:13 -0500222CLUSTER_ATTR(protocol, dlm_check_protocol_and_dlm_running);
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400223CLUSTER_ATTR(mark, NULL);
224CLUSTER_ATTR(timewarn_cs, dlm_check_zero);
225CLUSTER_ATTR(waitwarn_us, NULL);
226CLUSTER_ATTR(new_rsb_count, NULL);
227CLUSTER_ATTR(recover_callbacks, NULL);
David Teiglandd2007782007-01-09 09:46:02 -0600228
229static struct configfs_attribute *cluster_attrs[] = {
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200230 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port,
231 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size,
232 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size,
233 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer,
234 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs,
235 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs,
236 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug,
Zhilong Liu505ee522016-06-19 23:52:46 -0500237 [CLUSTER_ATTR_LOG_INFO] = &cluster_attr_log_info,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200238 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400239 [CLUSTER_ATTR_MARK] = &cluster_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200240 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs,
241 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us,
242 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count,
243 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks,
244 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name,
David Teiglandd2007782007-01-09 09:46:02 -0600245 NULL,
246};
247
David Teiglande7fd4172006-01-18 09:30:29 +0000248enum {
249 COMM_ATTR_NODEID = 0,
250 COMM_ATTR_LOCAL,
251 COMM_ATTR_ADDR,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900252 COMM_ATTR_ADDR_LIST,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400253 COMM_ATTR_MARK,
David Teiglande7fd4172006-01-18 09:30:29 +0000254};
255
David Teiglande7fd4172006-01-18 09:30:29 +0000256enum {
257 NODE_ATTR_NODEID = 0,
258 NODE_ATTR_WEIGHT,
259};
260
David Teigland51409342008-07-31 09:31:53 -0500261struct dlm_clusters {
David Teiglande7fd4172006-01-18 09:30:29 +0000262 struct configfs_subsystem subsys;
263};
264
David Teigland51409342008-07-31 09:31:53 -0500265struct dlm_spaces {
David Teiglande7fd4172006-01-18 09:30:29 +0000266 struct config_group ss_group;
267};
268
David Teigland51409342008-07-31 09:31:53 -0500269struct dlm_space {
David Teiglande7fd4172006-01-18 09:30:29 +0000270 struct config_group group;
271 struct list_head members;
David Teigland90135922006-01-20 08:47:07 +0000272 struct mutex members_lock;
David Teiglande7fd4172006-01-18 09:30:29 +0000273 int members_count;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400274 struct dlm_nodes *nds;
David Teiglande7fd4172006-01-18 09:30:29 +0000275};
276
David Teigland51409342008-07-31 09:31:53 -0500277struct dlm_comms {
David Teiglande7fd4172006-01-18 09:30:29 +0000278 struct config_group cs_group;
279};
280
David Teigland51409342008-07-31 09:31:53 -0500281struct dlm_comm {
David Teiglande7fd4172006-01-18 09:30:29 +0000282 struct config_item item;
David Teigland60f98d12011-11-02 14:30:58 -0500283 int seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000284 int nodeid;
285 int local;
286 int addr_count;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400287 unsigned int mark;
David Teiglande7fd4172006-01-18 09:30:29 +0000288 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
289};
290
David Teigland51409342008-07-31 09:31:53 -0500291struct dlm_nodes {
David Teiglande7fd4172006-01-18 09:30:29 +0000292 struct config_group ns_group;
293};
294
David Teigland51409342008-07-31 09:31:53 -0500295struct dlm_node {
David Teiglande7fd4172006-01-18 09:30:29 +0000296 struct config_item item;
297 struct list_head list; /* space->members */
298 int nodeid;
299 int weight;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500300 int new;
David Teigland60f98d12011-11-02 14:30:58 -0500301 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
David Teiglande7fd4172006-01-18 09:30:29 +0000302};
303
304static struct configfs_group_operations clusters_ops = {
305 .make_group = make_cluster,
306 .drop_item = drop_cluster,
307};
308
309static struct configfs_item_operations cluster_ops = {
310 .release = release_cluster,
311};
312
313static struct configfs_group_operations spaces_ops = {
314 .make_group = make_space,
315 .drop_item = drop_space,
316};
317
318static struct configfs_item_operations space_ops = {
319 .release = release_space,
320};
321
322static struct configfs_group_operations comms_ops = {
323 .make_item = make_comm,
324 .drop_item = drop_comm,
325};
326
327static struct configfs_item_operations comm_ops = {
328 .release = release_comm,
David Teiglande7fd4172006-01-18 09:30:29 +0000329};
330
331static struct configfs_group_operations nodes_ops = {
332 .make_item = make_node,
333 .drop_item = drop_node,
334};
335
336static struct configfs_item_operations node_ops = {
337 .release = release_node,
David Teiglande7fd4172006-01-18 09:30:29 +0000338};
339
Bhumika Goyal761594b2017-10-16 17:18:53 +0200340static const struct config_item_type clusters_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000341 .ct_group_ops = &clusters_ops,
342 .ct_owner = THIS_MODULE,
343};
344
Bhumika Goyal761594b2017-10-16 17:18:53 +0200345static const struct config_item_type cluster_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000346 .ct_item_ops = &cluster_ops,
David Teiglandd2007782007-01-09 09:46:02 -0600347 .ct_attrs = cluster_attrs,
David Teiglande7fd4172006-01-18 09:30:29 +0000348 .ct_owner = THIS_MODULE,
349};
350
Bhumika Goyal761594b2017-10-16 17:18:53 +0200351static const struct config_item_type spaces_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000352 .ct_group_ops = &spaces_ops,
353 .ct_owner = THIS_MODULE,
354};
355
Bhumika Goyal761594b2017-10-16 17:18:53 +0200356static const struct config_item_type space_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000357 .ct_item_ops = &space_ops,
358 .ct_owner = THIS_MODULE,
359};
360
Bhumika Goyal761594b2017-10-16 17:18:53 +0200361static const struct config_item_type comms_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000362 .ct_group_ops = &comms_ops,
363 .ct_owner = THIS_MODULE,
364};
365
Bhumika Goyal761594b2017-10-16 17:18:53 +0200366static const struct config_item_type comm_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000367 .ct_item_ops = &comm_ops,
368 .ct_attrs = comm_attrs,
369 .ct_owner = THIS_MODULE,
370};
371
Bhumika Goyal761594b2017-10-16 17:18:53 +0200372static const struct config_item_type nodes_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000373 .ct_group_ops = &nodes_ops,
374 .ct_owner = THIS_MODULE,
375};
376
Bhumika Goyal761594b2017-10-16 17:18:53 +0200377static const struct config_item_type node_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000378 .ct_item_ops = &node_ops,
379 .ct_attrs = node_attrs,
380 .ct_owner = THIS_MODULE,
381};
382
Andrew Morton27eccf42008-09-05 08:42:08 -0500383static struct dlm_space *config_item_to_space(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000384{
David Teigland51409342008-07-31 09:31:53 -0500385 return i ? container_of(to_config_group(i), struct dlm_space, group) :
386 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000387}
388
Andrew Morton27eccf42008-09-05 08:42:08 -0500389static struct dlm_comm *config_item_to_comm(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000390{
David Teigland51409342008-07-31 09:31:53 -0500391 return i ? container_of(i, struct dlm_comm, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000392}
393
Andrew Morton27eccf42008-09-05 08:42:08 -0500394static struct dlm_node *config_item_to_node(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000395{
David Teigland51409342008-07-31 09:31:53 -0500396 return i ? container_of(i, struct dlm_node, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000397}
398
Joel Beckerf89ab862008-07-17 14:53:48 -0700399static struct config_group *make_cluster(struct config_group *g,
400 const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000401{
David Teigland51409342008-07-31 09:31:53 -0500402 struct dlm_cluster *cl = NULL;
403 struct dlm_spaces *sps = NULL;
404 struct dlm_comms *cms = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000405
David Teigland573c24c2009-11-30 16:34:43 -0600406 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600407 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
408 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000409
Andrew Price82c7d822016-03-22 17:36:34 +0000410 if (!cl || !sps || !cms)
David Teiglande7fd4172006-01-18 09:30:29 +0000411 goto fail;
412
413 config_group_init_type_name(&cl->group, name, &cluster_type);
414 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
415 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
416
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100417 configfs_add_default_group(&sps->ss_group, &cl->group);
418 configfs_add_default_group(&cms->cs_group, &cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000419
David Teiglandd2007782007-01-09 09:46:02 -0600420 cl->cl_tcp_port = dlm_config.ci_tcp_port;
421 cl->cl_buffer_size = dlm_config.ci_buffer_size;
422 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -0600423 cl->cl_recover_timer = dlm_config.ci_recover_timer;
424 cl->cl_toss_secs = dlm_config.ci_toss_secs;
425 cl->cl_scan_secs = dlm_config.ci_scan_secs;
426 cl->cl_log_debug = dlm_config.ci_log_debug;
Zhilong Liu505ee522016-06-19 23:52:46 -0500427 cl->cl_log_info = dlm_config.ci_log_info;
David Teigland0b7cac02007-05-29 08:47:51 -0500428 cl->cl_protocol = dlm_config.ci_protocol;
David Teigland84d8cd62007-05-29 08:44:23 -0500429 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500430 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500431 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500432 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
433 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
434 DLM_LOCKSPACE_LEN);
David Teiglandd2007782007-01-09 09:46:02 -0600435
David Teiglande7fd4172006-01-18 09:30:29 +0000436 space_list = &sps->ss_group;
437 comm_list = &cms->cs_group;
Joel Beckerf89ab862008-07-17 14:53:48 -0700438 return &cl->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000439
440 fail:
441 kfree(cl);
David Teiglande7fd4172006-01-18 09:30:29 +0000442 kfree(sps);
443 kfree(cms);
Joel Beckera6795e92008-07-17 15:21:29 -0700444 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000445}
446
447static void drop_cluster(struct config_group *g, struct config_item *i)
448{
Andrew Morton27eccf42008-09-05 08:42:08 -0500449 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000450
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100451 configfs_remove_default_groups(&cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000452
453 space_list = NULL;
454 comm_list = NULL;
455
456 config_item_put(i);
457}
458
459static void release_cluster(struct config_item *i)
460{
Andrew Morton27eccf42008-09-05 08:42:08 -0500461 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000462 kfree(cl);
463}
464
Joel Beckerf89ab862008-07-17 14:53:48 -0700465static struct config_group *make_space(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000466{
David Teigland51409342008-07-31 09:31:53 -0500467 struct dlm_space *sp = NULL;
468 struct dlm_nodes *nds = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000469
David Teigland573c24c2009-11-30 16:34:43 -0600470 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600471 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000472
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100473 if (!sp || !nds)
David Teiglande7fd4172006-01-18 09:30:29 +0000474 goto fail;
475
476 config_group_init_type_name(&sp->group, name, &space_type);
David Teiglande7fd4172006-01-18 09:30:29 +0000477
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100478 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
479 configfs_add_default_group(&nds->ns_group, &sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000480
481 INIT_LIST_HEAD(&sp->members);
David Teigland90135922006-01-20 08:47:07 +0000482 mutex_init(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000483 sp->members_count = 0;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400484 sp->nds = nds;
Joel Beckerf89ab862008-07-17 14:53:48 -0700485 return &sp->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000486
487 fail:
488 kfree(sp);
David Teiglande7fd4172006-01-18 09:30:29 +0000489 kfree(nds);
Joel Beckera6795e92008-07-17 15:21:29 -0700490 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000491}
492
493static void drop_space(struct config_group *g, struct config_item *i)
494{
Andrew Morton27eccf42008-09-05 08:42:08 -0500495 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000496
497 /* assert list_empty(&sp->members) */
498
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100499 configfs_remove_default_groups(&sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000500 config_item_put(i);
501}
502
503static void release_space(struct config_item *i)
504{
Andrew Morton27eccf42008-09-05 08:42:08 -0500505 struct dlm_space *sp = config_item_to_space(i);
Alexander Aring3d2825c2020-08-27 15:02:51 -0400506 kfree(sp->nds);
David Teiglande7fd4172006-01-18 09:30:29 +0000507 kfree(sp);
508}
509
Joel Beckerf89ab862008-07-17 14:53:48 -0700510static struct config_item *make_comm(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000511{
David Teigland51409342008-07-31 09:31:53 -0500512 struct dlm_comm *cm;
David Teiglande7fd4172006-01-18 09:30:29 +0000513
David Teigland573c24c2009-11-30 16:34:43 -0600514 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000515 if (!cm)
Joel Beckera6795e92008-07-17 15:21:29 -0700516 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000517
518 config_item_init_type_name(&cm->item, name, &comm_type);
David Teigland60f98d12011-11-02 14:30:58 -0500519
520 cm->seq = dlm_comm_count++;
521 if (!cm->seq)
522 cm->seq = dlm_comm_count++;
523
David Teiglande7fd4172006-01-18 09:30:29 +0000524 cm->nodeid = -1;
525 cm->local = 0;
526 cm->addr_count = 0;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400527 cm->mark = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700528 return &cm->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000529}
530
531static void drop_comm(struct config_group *g, struct config_item *i)
532{
Andrew Morton27eccf42008-09-05 08:42:08 -0500533 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000534 if (local_comm == cm)
535 local_comm = NULL;
Alexander Aringa070a912021-05-21 15:08:41 -0400536 dlm_midcomms_close(cm->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000537 while (cm->addr_count--)
538 kfree(cm->addr[cm->addr_count]);
539 config_item_put(i);
540}
541
542static void release_comm(struct config_item *i)
543{
Andrew Morton27eccf42008-09-05 08:42:08 -0500544 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000545 kfree(cm);
546}
547
Joel Beckerf89ab862008-07-17 14:53:48 -0700548static struct config_item *make_node(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000549{
Andrew Morton27eccf42008-09-05 08:42:08 -0500550 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
David Teigland51409342008-07-31 09:31:53 -0500551 struct dlm_node *nd;
David Teiglande7fd4172006-01-18 09:30:29 +0000552
David Teigland573c24c2009-11-30 16:34:43 -0600553 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000554 if (!nd)
Joel Beckera6795e92008-07-17 15:21:29 -0700555 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000556
557 config_item_init_type_name(&nd->item, name, &node_type);
558 nd->nodeid = -1;
559 nd->weight = 1; /* default weight of 1 if none is set */
David Teiglandd44e0fc2008-03-18 14:22:11 -0500560 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
David Teiglande7fd4172006-01-18 09:30:29 +0000561
David Teigland90135922006-01-20 08:47:07 +0000562 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000563 list_add(&nd->list, &sp->members);
564 sp->members_count++;
David Teigland90135922006-01-20 08:47:07 +0000565 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000566
Joel Beckerf89ab862008-07-17 14:53:48 -0700567 return &nd->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000568}
569
570static void drop_node(struct config_group *g, struct config_item *i)
571{
Andrew Morton27eccf42008-09-05 08:42:08 -0500572 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
573 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000574
David Teigland90135922006-01-20 08:47:07 +0000575 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000576 list_del(&nd->list);
577 sp->members_count--;
David Teigland90135922006-01-20 08:47:07 +0000578 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000579
580 config_item_put(i);
581}
582
583static void release_node(struct config_item *i)
584{
Andrew Morton27eccf42008-09-05 08:42:08 -0500585 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000586 kfree(nd);
587}
588
David Teigland51409342008-07-31 09:31:53 -0500589static struct dlm_clusters clusters_root = {
David Teiglande7fd4172006-01-18 09:30:29 +0000590 .subsys = {
591 .su_group = {
592 .cg_item = {
593 .ci_namebuf = "dlm",
594 .ci_type = &clusters_type,
595 },
596 },
597 },
598};
599
Denis Cheng30727172008-02-02 01:53:46 +0800600int __init dlm_config_init(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000601{
602 config_group_init(&clusters_root.subsys.su_group);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700603 mutex_init(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000604 return configfs_register_subsystem(&clusters_root.subsys);
605}
606
607void dlm_config_exit(void)
608{
609 configfs_unregister_subsystem(&clusters_root.subsys);
610}
611
612/*
613 * Functions for user space to read/write attributes
614 */
615
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200616static ssize_t comm_nodeid_show(struct config_item *item, char *buf)
David Teiglandd2007782007-01-09 09:46:02 -0600617{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200618 return sprintf(buf, "%d\n", config_item_to_comm(item)->nodeid);
David Teiglandd2007782007-01-09 09:46:02 -0600619}
620
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200621static ssize_t comm_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500622 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000623{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200624 int rc = kstrtoint(buf, 0, &config_item_to_comm(item)->nodeid);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700625
626 if (rc)
627 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000628 return len;
629}
630
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200631static ssize_t comm_local_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000632{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200633 return sprintf(buf, "%d\n", config_item_to_comm(item)->local);
David Teiglande7fd4172006-01-18 09:30:29 +0000634}
635
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200636static ssize_t comm_local_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500637 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000638{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200639 struct dlm_comm *cm = config_item_to_comm(item);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700640 int rc = kstrtoint(buf, 0, &cm->local);
641
642 if (rc)
643 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000644 if (cm->local && !local_comm)
645 local_comm = cm;
646 return len;
647}
648
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200649static ssize_t comm_addr_store(struct config_item *item, const char *buf,
650 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000651{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200652 struct dlm_comm *cm = config_item_to_comm(item);
David Teiglande7fd4172006-01-18 09:30:29 +0000653 struct sockaddr_storage *addr;
David Teigland36b71a82012-07-26 12:44:30 -0500654 int rv;
David Teiglande7fd4172006-01-18 09:30:29 +0000655
656 if (len != sizeof(struct sockaddr_storage))
657 return -EINVAL;
658
659 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
660 return -ENOSPC;
661
David Teigland573c24c2009-11-30 16:34:43 -0600662 addr = kzalloc(sizeof(*addr), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000663 if (!addr)
664 return -ENOMEM;
665
666 memcpy(addr, buf, len);
David Teigland36b71a82012-07-26 12:44:30 -0500667
668 rv = dlm_lowcomms_addr(cm->nodeid, addr, len);
669 if (rv) {
670 kfree(addr);
671 return rv;
672 }
673
David Teiglande7fd4172006-01-18 09:30:29 +0000674 cm->addr[cm->addr_count++] = addr;
675 return len;
676}
677
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200678static ssize_t comm_addr_list_show(struct config_item *item, char *buf)
Masatake YAMATO55b32862011-06-30 21:37:10 +0900679{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200680 struct dlm_comm *cm = config_item_to_comm(item);
Masatake YAMATO55b32862011-06-30 21:37:10 +0900681 ssize_t s;
682 ssize_t allowance;
683 int i;
684 struct sockaddr_storage *addr;
685 struct sockaddr_in *addr_in;
686 struct sockaddr_in6 *addr_in6;
687
688 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
689 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
690
691
692 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
693 allowance = 4096;
694 buf[0] = '\0';
695
696 for (i = 0; i < cm->addr_count; i++) {
697 addr = cm->addr[i];
698
699 switch(addr->ss_family) {
700 case AF_INET:
701 addr_in = (struct sockaddr_in *)addr;
702 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
703 break;
704 case AF_INET6:
705 addr_in6 = (struct sockaddr_in6 *)addr;
706 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
707 break;
708 default:
709 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
710 break;
711 }
712 allowance -= s;
713 if (allowance >= 0)
714 strcat(buf, buf0);
715 else {
716 allowance += s;
717 break;
718 }
719 }
720 return 4096 - allowance;
721}
722
Alexander Aring9c9f1682020-06-26 13:26:50 -0400723static ssize_t comm_mark_show(struct config_item *item, char *buf)
724{
725 return sprintf(buf, "%u\n", config_item_to_comm(item)->mark);
726}
727
728static ssize_t comm_mark_store(struct config_item *item, const char *buf,
729 size_t len)
730{
Alexander Aringe125fbe2021-03-01 17:05:09 -0500731 struct dlm_comm *comm;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400732 unsigned int mark;
733 int rc;
734
735 rc = kstrtouint(buf, 0, &mark);
736 if (rc)
737 return rc;
738
Alexander Aringe125fbe2021-03-01 17:05:09 -0500739 if (mark == 0)
740 mark = dlm_config.ci_mark;
741
742 comm = config_item_to_comm(item);
743 rc = dlm_lowcomms_nodes_set_mark(comm->nodeid, mark);
744 if (rc)
745 return rc;
746
747 comm->mark = mark;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400748 return len;
749}
750
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200751CONFIGFS_ATTR(comm_, nodeid);
752CONFIGFS_ATTR(comm_, local);
Alexander Aring9c9f1682020-06-26 13:26:50 -0400753CONFIGFS_ATTR(comm_, mark);
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200754CONFIGFS_ATTR_WO(comm_, addr);
755CONFIGFS_ATTR_RO(comm_, addr_list);
756
757static struct configfs_attribute *comm_attrs[] = {
758 [COMM_ATTR_NODEID] = &comm_attr_nodeid,
759 [COMM_ATTR_LOCAL] = &comm_attr_local,
760 [COMM_ATTR_ADDR] = &comm_attr_addr,
761 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400762 [COMM_ATTR_MARK] = &comm_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200763 NULL,
764};
765
766static ssize_t node_nodeid_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000767{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200768 return sprintf(buf, "%d\n", config_item_to_node(item)->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000769}
770
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200771static ssize_t node_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500772 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000773{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200774 struct dlm_node *nd = config_item_to_node(item);
David Teigland60f98d12011-11-02 14:30:58 -0500775 uint32_t seq = 0;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700776 int rc = kstrtoint(buf, 0, &nd->nodeid);
777
778 if (rc)
779 return rc;
David Teigland60f98d12011-11-02 14:30:58 -0500780 dlm_comm_seq(nd->nodeid, &seq);
781 nd->comm_seq = seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000782 return len;
783}
784
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200785static ssize_t node_weight_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000786{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200787 return sprintf(buf, "%d\n", config_item_to_node(item)->weight);
David Teiglande7fd4172006-01-18 09:30:29 +0000788}
789
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200790static ssize_t node_weight_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500791 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000792{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200793 int rc = kstrtoint(buf, 0, &config_item_to_node(item)->weight);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700794
795 if (rc)
796 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000797 return len;
798}
799
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200800CONFIGFS_ATTR(node_, nodeid);
801CONFIGFS_ATTR(node_, weight);
802
803static struct configfs_attribute *node_attrs[] = {
804 [NODE_ATTR_NODEID] = &node_attr_nodeid,
805 [NODE_ATTR_WEIGHT] = &node_attr_weight,
806 NULL,
807};
808
David Teiglande7fd4172006-01-18 09:30:29 +0000809/*
810 * Functions for the dlm to get the info that's been configured
811 */
812
David Teigland51409342008-07-31 09:31:53 -0500813static struct dlm_space *get_space(char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000814{
Satyam Sharma3168b072007-05-08 09:18:58 +0100815 struct config_item *i;
816
David Teiglande7fd4172006-01-18 09:30:29 +0000817 if (!space_list)
818 return NULL;
Satyam Sharma3168b072007-05-08 09:18:58 +0100819
Joel Beckere6bd07a2007-07-06 23:33:17 -0700820 mutex_lock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3fe6c5c2007-07-04 16:37:16 +0530821 i = config_group_find_item(space_list, name);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700822 mutex_unlock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3168b072007-05-08 09:18:58 +0100823
Andrew Morton27eccf42008-09-05 08:42:08 -0500824 return config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000825}
826
David Teigland51409342008-07-31 09:31:53 -0500827static void put_space(struct dlm_space *sp)
David Teiglande7fd4172006-01-18 09:30:29 +0000828{
829 config_item_put(&sp->group.cg_item);
830}
831
David Teigland36b71a82012-07-26 12:44:30 -0500832static struct dlm_comm *get_comm(int nodeid)
David Teiglande7fd4172006-01-18 09:30:29 +0000833{
834 struct config_item *i;
David Teigland51409342008-07-31 09:31:53 -0500835 struct dlm_comm *cm = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000836 int found = 0;
837
838 if (!comm_list)
839 return NULL;
840
Joel Beckere6bd07a2007-07-06 23:33:17 -0700841 mutex_lock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000842
843 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
Andrew Morton27eccf42008-09-05 08:42:08 -0500844 cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000845
David Teigland36b71a82012-07-26 12:44:30 -0500846 if (cm->nodeid != nodeid)
847 continue;
848 found = 1;
849 config_item_get(i);
850 break;
David Teiglande7fd4172006-01-18 09:30:29 +0000851 }
Joel Beckere6bd07a2007-07-06 23:33:17 -0700852 mutex_unlock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000853
Satyam Sharma3168b072007-05-08 09:18:58 +0100854 if (!found)
David Teiglande7fd4172006-01-18 09:30:29 +0000855 cm = NULL;
856 return cm;
857}
858
David Teigland51409342008-07-31 09:31:53 -0500859static void put_comm(struct dlm_comm *cm)
David Teiglande7fd4172006-01-18 09:30:29 +0000860{
861 config_item_put(&cm->item);
862}
863
864/* caller must free mem */
David Teigland60f98d12011-11-02 14:30:58 -0500865int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
866 int *count_out)
David Teiglande7fd4172006-01-18 09:30:29 +0000867{
David Teigland51409342008-07-31 09:31:53 -0500868 struct dlm_space *sp;
869 struct dlm_node *nd;
David Teigland60f98d12011-11-02 14:30:58 -0500870 struct dlm_config_node *nodes, *node;
871 int rv, count;
David Teiglande7fd4172006-01-18 09:30:29 +0000872
873 sp = get_space(lsname);
874 if (!sp)
875 return -EEXIST;
876
David Teigland90135922006-01-20 08:47:07 +0000877 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000878 if (!sp->members_count) {
David Teiglandd44e0fc2008-03-18 14:22:11 -0500879 rv = -EINVAL;
880 printk(KERN_ERR "dlm: zero members_count\n");
David Teiglande7fd4172006-01-18 09:30:29 +0000881 goto out;
882 }
883
David Teigland60f98d12011-11-02 14:30:58 -0500884 count = sp->members_count;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500885
David Teigland60f98d12011-11-02 14:30:58 -0500886 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
887 if (!nodes) {
David Teiglande7fd4172006-01-18 09:30:29 +0000888 rv = -ENOMEM;
889 goto out;
890 }
891
David Teigland60f98d12011-11-02 14:30:58 -0500892 node = nodes;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500893 list_for_each_entry(nd, &sp->members, list) {
David Teigland60f98d12011-11-02 14:30:58 -0500894 node->nodeid = nd->nodeid;
895 node->weight = nd->weight;
896 node->new = nd->new;
897 node->comm_seq = nd->comm_seq;
898 node++;
899
900 nd->new = 0;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500901 }
David Teiglande7fd4172006-01-18 09:30:29 +0000902
David Teigland60f98d12011-11-02 14:30:58 -0500903 *count_out = count;
904 *nodes_out = nodes;
905 rv = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000906 out:
David Teigland90135922006-01-20 08:47:07 +0000907 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000908 put_space(sp);
909 return rv;
910}
911
David Teigland60f98d12011-11-02 14:30:58 -0500912int dlm_comm_seq(int nodeid, uint32_t *seq)
David Teiglande7fd4172006-01-18 09:30:29 +0000913{
David Teigland36b71a82012-07-26 12:44:30 -0500914 struct dlm_comm *cm = get_comm(nodeid);
David Teigland60f98d12011-11-02 14:30:58 -0500915 if (!cm)
916 return -EEXIST;
917 *seq = cm->seq;
918 put_comm(cm);
919 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000920}
921
David Teiglande7fd4172006-01-18 09:30:29 +0000922int dlm_our_nodeid(void)
923{
924 return local_comm ? local_comm->nodeid : 0;
925}
926
927/* num 0 is first addr, num 1 is second addr */
928int dlm_our_addr(struct sockaddr_storage *addr, int num)
929{
930 if (!local_comm)
931 return -1;
932 if (num + 1 > local_comm->addr_count)
933 return -1;
934 memcpy(addr, local_comm->addr[num], sizeof(*addr));
935 return 0;
936}
937
938/* Config file defaults */
939#define DEFAULT_TCP_PORT 21064
David Teiglande3853a92011-03-10 13:07:17 -0600940#define DEFAULT_RSBTBL_SIZE 1024
David Teiglande7fd4172006-01-18 09:30:29 +0000941#define DEFAULT_RECOVER_TIMER 5
942#define DEFAULT_TOSS_SECS 10
943#define DEFAULT_SCAN_SECS 5
David Teigland99fc6482007-01-09 09:44:01 -0600944#define DEFAULT_LOG_DEBUG 0
Zhilong Liu505ee522016-06-19 23:52:46 -0500945#define DEFAULT_LOG_INFO 1
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100946#define DEFAULT_PROTOCOL 0
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400947#define DEFAULT_MARK 0
David Teigland3ae1acf2007-05-18 08:59:31 -0500948#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
David Teiglandc6ff6692011-03-28 14:17:26 -0500949#define DEFAULT_WAITWARN_US 0
David Teigland3881ac02011-07-07 14:05:03 -0500950#define DEFAULT_NEW_RSB_COUNT 128
David Teigland60f98d12011-11-02 14:30:58 -0500951#define DEFAULT_RECOVER_CALLBACKS 0
952#define DEFAULT_CLUSTER_NAME ""
David Teiglande7fd4172006-01-18 09:30:29 +0000953
954struct dlm_config_info dlm_config = {
David Teigland68c817a2007-01-09 09:41:48 -0600955 .ci_tcp_port = DEFAULT_TCP_PORT,
956 .ci_buffer_size = DEFAULT_BUFFER_SIZE,
957 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
David Teigland68c817a2007-01-09 09:41:48 -0600958 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
959 .ci_toss_secs = DEFAULT_TOSS_SECS,
David Teigland99fc6482007-01-09 09:44:01 -0600960 .ci_scan_secs = DEFAULT_SCAN_SECS,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100961 .ci_log_debug = DEFAULT_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -0500962 .ci_log_info = DEFAULT_LOG_INFO,
David Teigland3ae1acf2007-05-18 08:59:31 -0500963 .ci_protocol = DEFAULT_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400964 .ci_mark = DEFAULT_MARK,
David Teiglandc6ff6692011-03-28 14:17:26 -0500965 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
David Teigland3881ac02011-07-07 14:05:03 -0500966 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
David Teigland60f98d12011-11-02 14:30:58 -0500967 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
968 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
969 .ci_cluster_name = DEFAULT_CLUSTER_NAME
David Teiglande7fd4172006-01-18 09:30:29 +0000970};
971