blob: 42eee278375620e86c6e6ae9a5844bf73bb2238c [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];
Alexander Aring700ab1c2021-06-02 09:45:16 -040083
84 struct dlm_spaces *sps;
85 struct dlm_comms *cms;
David Teiglandd2007782007-01-09 09:46:02 -060086};
87
Christoph Hellwig9ae0f362015-10-03 15:32:53 +020088static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
89{
90 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
91 NULL;
92}
93
David Teiglandd2007782007-01-09 09:46:02 -060094enum {
95 CLUSTER_ATTR_TCP_PORT = 0,
96 CLUSTER_ATTR_BUFFER_SIZE,
97 CLUSTER_ATTR_RSBTBL_SIZE,
David Teiglandd2007782007-01-09 09:46:02 -060098 CLUSTER_ATTR_RECOVER_TIMER,
99 CLUSTER_ATTR_TOSS_SECS,
100 CLUSTER_ATTR_SCAN_SECS,
101 CLUSTER_ATTR_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -0500102 CLUSTER_ATTR_LOG_INFO,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100103 CLUSTER_ATTR_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400104 CLUSTER_ATTR_MARK,
David Teigland3ae1acf2007-05-18 08:59:31 -0500105 CLUSTER_ATTR_TIMEWARN_CS,
David Teiglandc6ff6692011-03-28 14:17:26 -0500106 CLUSTER_ATTR_WAITWARN_US,
David Teigland3881ac02011-07-07 14:05:03 -0500107 CLUSTER_ATTR_NEW_RSB_COUNT,
David Teigland60f98d12011-11-02 14:30:58 -0500108 CLUSTER_ATTR_RECOVER_CALLBACKS,
109 CLUSTER_ATTR_CLUSTER_NAME,
David Teiglandd2007782007-01-09 09:46:02 -0600110};
111
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200112static ssize_t cluster_cluster_name_show(struct config_item *item, char *buf)
David Teigland60f98d12011-11-02 14:30:58 -0500113{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200114 struct dlm_cluster *cl = config_item_to_cluster(item);
David Teigland60f98d12011-11-02 14:30:58 -0500115 return sprintf(buf, "%s\n", cl->cl_cluster_name);
116}
117
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200118static ssize_t cluster_cluster_name_store(struct config_item *item,
David Teigland60f98d12011-11-02 14:30:58 -0500119 const char *buf, size_t len)
120{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200121 struct dlm_cluster *cl = config_item_to_cluster(item);
122
Zhao Hongjiangad917e72013-06-20 18:59:51 +0800123 strlcpy(dlm_config.ci_cluster_name, buf,
124 sizeof(dlm_config.ci_cluster_name));
125 strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
David Teigland60f98d12011-11-02 14:30:58 -0500126 return len;
127}
128
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200129CONFIGFS_ATTR(cluster_, cluster_name);
David Teigland60f98d12011-11-02 14:30:58 -0500130
David Teigland51409342008-07-31 09:31:53 -0500131static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
Alexander Aring8aa95402021-03-01 17:05:12 -0500132 int *info_field, int (*check_cb)(unsigned int x),
David Teiglandd2007782007-01-09 09:46:02 -0600133 const char *buf, size_t len)
134{
135 unsigned int x;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700136 int rc;
David Teiglandd2007782007-01-09 09:46:02 -0600137
138 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100139 return -EPERM;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700140 rc = kstrtouint(buf, 0, &x);
141 if (rc)
142 return rc;
David Teiglandd2007782007-01-09 09:46:02 -0600143
Alexander Aring8aa95402021-03-01 17:05:12 -0500144 if (check_cb) {
145 rc = check_cb(x);
146 if (rc)
147 return rc;
148 }
David Teiglandd2007782007-01-09 09:46:02 -0600149
150 *cl_field = x;
151 *info_field = x;
152
153 return len;
154}
155
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400156#define CLUSTER_ATTR(name, check_cb) \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200157static ssize_t cluster_##name##_store(struct config_item *item, \
158 const char *buf, size_t len) \
David Teiglandd2007782007-01-09 09:46:02 -0600159{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200160 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600161 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400162 check_cb, buf, len); \
David Teiglandd2007782007-01-09 09:46:02 -0600163} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200164static ssize_t cluster_##name##_show(struct config_item *item, char *buf) \
David Teiglandd2007782007-01-09 09:46:02 -0600165{ \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200166 struct dlm_cluster *cl = config_item_to_cluster(item); \
David Teiglandd2007782007-01-09 09:46:02 -0600167 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
168} \
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200169CONFIGFS_ATTR(cluster_, name);
David Teiglandd2007782007-01-09 09:46:02 -0600170
Alexander Aring51746162021-03-01 17:05:13 -0500171static int dlm_check_protocol_and_dlm_running(unsigned int x)
172{
173 switch (x) {
174 case 0:
175 /* TCP */
176 break;
177 case 1:
178 /* SCTP */
179 break;
180 default:
181 return -EINVAL;
182 }
183
184 if (dlm_allow_conn)
185 return -EBUSY;
186
187 return 0;
188}
189
190static int dlm_check_zero_and_dlm_running(unsigned int x)
191{
192 if (!x)
193 return -EINVAL;
194
195 if (dlm_allow_conn)
196 return -EBUSY;
197
198 return 0;
199}
200
Alexander Aring8aa95402021-03-01 17:05:12 -0500201static int dlm_check_zero(unsigned int x)
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400202{
Alexander Aring8aa95402021-03-01 17:05:12 -0500203 if (!x)
204 return -EINVAL;
205
206 return 0;
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400207}
208
Alexander Aring8aa95402021-03-01 17:05:12 -0500209static int dlm_check_buffer_size(unsigned int x)
Alexander Aring4e192ee2020-09-24 10:31:25 -0400210{
Alexander Aringd10a0b82021-06-02 09:45:20 -0400211 if (x < DLM_MAX_SOCKET_BUFSIZE)
Alexander Aring8aa95402021-03-01 17:05:12 -0500212 return -EINVAL;
213
214 return 0;
Alexander Aring4e192ee2020-09-24 10:31:25 -0400215}
216
Alexander Aring51746162021-03-01 17:05:13 -0500217CLUSTER_ATTR(tcp_port, dlm_check_zero_and_dlm_running);
Alexander Aring4e192ee2020-09-24 10:31:25 -0400218CLUSTER_ATTR(buffer_size, dlm_check_buffer_size);
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400219CLUSTER_ATTR(rsbtbl_size, dlm_check_zero);
220CLUSTER_ATTR(recover_timer, dlm_check_zero);
221CLUSTER_ATTR(toss_secs, dlm_check_zero);
222CLUSTER_ATTR(scan_secs, dlm_check_zero);
223CLUSTER_ATTR(log_debug, NULL);
224CLUSTER_ATTR(log_info, NULL);
Alexander Aring51746162021-03-01 17:05:13 -0500225CLUSTER_ATTR(protocol, dlm_check_protocol_and_dlm_running);
Alexander Aringe1a0ec32020-09-24 10:31:24 -0400226CLUSTER_ATTR(mark, NULL);
227CLUSTER_ATTR(timewarn_cs, dlm_check_zero);
228CLUSTER_ATTR(waitwarn_us, NULL);
229CLUSTER_ATTR(new_rsb_count, NULL);
230CLUSTER_ATTR(recover_callbacks, NULL);
David Teiglandd2007782007-01-09 09:46:02 -0600231
232static struct configfs_attribute *cluster_attrs[] = {
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200233 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port,
234 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size,
235 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size,
236 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer,
237 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs,
238 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs,
239 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug,
Zhilong Liu505ee522016-06-19 23:52:46 -0500240 [CLUSTER_ATTR_LOG_INFO] = &cluster_attr_log_info,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200241 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400242 [CLUSTER_ATTR_MARK] = &cluster_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200243 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs,
244 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us,
245 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count,
246 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks,
247 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name,
David Teiglandd2007782007-01-09 09:46:02 -0600248 NULL,
249};
250
David Teiglande7fd4172006-01-18 09:30:29 +0000251enum {
252 COMM_ATTR_NODEID = 0,
253 COMM_ATTR_LOCAL,
254 COMM_ATTR_ADDR,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900255 COMM_ATTR_ADDR_LIST,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400256 COMM_ATTR_MARK,
David Teiglande7fd4172006-01-18 09:30:29 +0000257};
258
David Teiglande7fd4172006-01-18 09:30:29 +0000259enum {
260 NODE_ATTR_NODEID = 0,
261 NODE_ATTR_WEIGHT,
262};
263
David Teigland51409342008-07-31 09:31:53 -0500264struct dlm_clusters {
David Teiglande7fd4172006-01-18 09:30:29 +0000265 struct configfs_subsystem subsys;
266};
267
David Teigland51409342008-07-31 09:31:53 -0500268struct dlm_spaces {
David Teiglande7fd4172006-01-18 09:30:29 +0000269 struct config_group ss_group;
270};
271
David Teigland51409342008-07-31 09:31:53 -0500272struct dlm_space {
David Teiglande7fd4172006-01-18 09:30:29 +0000273 struct config_group group;
274 struct list_head members;
David Teigland90135922006-01-20 08:47:07 +0000275 struct mutex members_lock;
David Teiglande7fd4172006-01-18 09:30:29 +0000276 int members_count;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400277 struct dlm_nodes *nds;
David Teiglande7fd4172006-01-18 09:30:29 +0000278};
279
David Teigland51409342008-07-31 09:31:53 -0500280struct dlm_comms {
David Teiglande7fd4172006-01-18 09:30:29 +0000281 struct config_group cs_group;
282};
283
David Teigland51409342008-07-31 09:31:53 -0500284struct dlm_comm {
David Teiglande7fd4172006-01-18 09:30:29 +0000285 struct config_item item;
David Teigland60f98d12011-11-02 14:30:58 -0500286 int seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000287 int nodeid;
288 int local;
289 int addr_count;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400290 unsigned int mark;
David Teiglande7fd4172006-01-18 09:30:29 +0000291 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
292};
293
David Teigland51409342008-07-31 09:31:53 -0500294struct dlm_nodes {
David Teiglande7fd4172006-01-18 09:30:29 +0000295 struct config_group ns_group;
296};
297
David Teigland51409342008-07-31 09:31:53 -0500298struct dlm_node {
David Teiglande7fd4172006-01-18 09:30:29 +0000299 struct config_item item;
300 struct list_head list; /* space->members */
301 int nodeid;
302 int weight;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500303 int new;
David Teigland60f98d12011-11-02 14:30:58 -0500304 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
David Teiglande7fd4172006-01-18 09:30:29 +0000305};
306
307static struct configfs_group_operations clusters_ops = {
308 .make_group = make_cluster,
309 .drop_item = drop_cluster,
310};
311
312static struct configfs_item_operations cluster_ops = {
313 .release = release_cluster,
314};
315
316static struct configfs_group_operations spaces_ops = {
317 .make_group = make_space,
318 .drop_item = drop_space,
319};
320
321static struct configfs_item_operations space_ops = {
322 .release = release_space,
323};
324
325static struct configfs_group_operations comms_ops = {
326 .make_item = make_comm,
327 .drop_item = drop_comm,
328};
329
330static struct configfs_item_operations comm_ops = {
331 .release = release_comm,
David Teiglande7fd4172006-01-18 09:30:29 +0000332};
333
334static struct configfs_group_operations nodes_ops = {
335 .make_item = make_node,
336 .drop_item = drop_node,
337};
338
339static struct configfs_item_operations node_ops = {
340 .release = release_node,
David Teiglande7fd4172006-01-18 09:30:29 +0000341};
342
Bhumika Goyal761594b2017-10-16 17:18:53 +0200343static const struct config_item_type clusters_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000344 .ct_group_ops = &clusters_ops,
345 .ct_owner = THIS_MODULE,
346};
347
Bhumika Goyal761594b2017-10-16 17:18:53 +0200348static const struct config_item_type cluster_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000349 .ct_item_ops = &cluster_ops,
David Teiglandd2007782007-01-09 09:46:02 -0600350 .ct_attrs = cluster_attrs,
David Teiglande7fd4172006-01-18 09:30:29 +0000351 .ct_owner = THIS_MODULE,
352};
353
Bhumika Goyal761594b2017-10-16 17:18:53 +0200354static const struct config_item_type spaces_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000355 .ct_group_ops = &spaces_ops,
356 .ct_owner = THIS_MODULE,
357};
358
Bhumika Goyal761594b2017-10-16 17:18:53 +0200359static const struct config_item_type space_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000360 .ct_item_ops = &space_ops,
361 .ct_owner = THIS_MODULE,
362};
363
Bhumika Goyal761594b2017-10-16 17:18:53 +0200364static const struct config_item_type comms_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000365 .ct_group_ops = &comms_ops,
366 .ct_owner = THIS_MODULE,
367};
368
Bhumika Goyal761594b2017-10-16 17:18:53 +0200369static const struct config_item_type comm_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000370 .ct_item_ops = &comm_ops,
371 .ct_attrs = comm_attrs,
372 .ct_owner = THIS_MODULE,
373};
374
Bhumika Goyal761594b2017-10-16 17:18:53 +0200375static const struct config_item_type nodes_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000376 .ct_group_ops = &nodes_ops,
377 .ct_owner = THIS_MODULE,
378};
379
Bhumika Goyal761594b2017-10-16 17:18:53 +0200380static const struct config_item_type node_type = {
David Teiglande7fd4172006-01-18 09:30:29 +0000381 .ct_item_ops = &node_ops,
382 .ct_attrs = node_attrs,
383 .ct_owner = THIS_MODULE,
384};
385
Andrew Morton27eccf42008-09-05 08:42:08 -0500386static struct dlm_space *config_item_to_space(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000387{
David Teigland51409342008-07-31 09:31:53 -0500388 return i ? container_of(to_config_group(i), struct dlm_space, group) :
389 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000390}
391
Andrew Morton27eccf42008-09-05 08:42:08 -0500392static struct dlm_comm *config_item_to_comm(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000393{
David Teigland51409342008-07-31 09:31:53 -0500394 return i ? container_of(i, struct dlm_comm, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000395}
396
Andrew Morton27eccf42008-09-05 08:42:08 -0500397static struct dlm_node *config_item_to_node(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000398{
David Teigland51409342008-07-31 09:31:53 -0500399 return i ? container_of(i, struct dlm_node, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000400}
401
Joel Beckerf89ab862008-07-17 14:53:48 -0700402static struct config_group *make_cluster(struct config_group *g,
403 const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000404{
David Teigland51409342008-07-31 09:31:53 -0500405 struct dlm_cluster *cl = NULL;
406 struct dlm_spaces *sps = NULL;
407 struct dlm_comms *cms = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000408
David Teigland573c24c2009-11-30 16:34:43 -0600409 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600410 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
411 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000412
Andrew Price82c7d822016-03-22 17:36:34 +0000413 if (!cl || !sps || !cms)
David Teiglande7fd4172006-01-18 09:30:29 +0000414 goto fail;
415
Alexander Aring700ab1c2021-06-02 09:45:16 -0400416 cl->sps = sps;
417 cl->cms = cms;
418
David Teiglande7fd4172006-01-18 09:30:29 +0000419 config_group_init_type_name(&cl->group, name, &cluster_type);
420 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
421 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
422
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100423 configfs_add_default_group(&sps->ss_group, &cl->group);
424 configfs_add_default_group(&cms->cs_group, &cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000425
David Teiglandd2007782007-01-09 09:46:02 -0600426 cl->cl_tcp_port = dlm_config.ci_tcp_port;
427 cl->cl_buffer_size = dlm_config.ci_buffer_size;
428 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -0600429 cl->cl_recover_timer = dlm_config.ci_recover_timer;
430 cl->cl_toss_secs = dlm_config.ci_toss_secs;
431 cl->cl_scan_secs = dlm_config.ci_scan_secs;
432 cl->cl_log_debug = dlm_config.ci_log_debug;
Zhilong Liu505ee522016-06-19 23:52:46 -0500433 cl->cl_log_info = dlm_config.ci_log_info;
David Teigland0b7cac02007-05-29 08:47:51 -0500434 cl->cl_protocol = dlm_config.ci_protocol;
David Teigland84d8cd62007-05-29 08:44:23 -0500435 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500436 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500437 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500438 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
439 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
440 DLM_LOCKSPACE_LEN);
David Teiglandd2007782007-01-09 09:46:02 -0600441
David Teiglande7fd4172006-01-18 09:30:29 +0000442 space_list = &sps->ss_group;
443 comm_list = &cms->cs_group;
Joel Beckerf89ab862008-07-17 14:53:48 -0700444 return &cl->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000445
446 fail:
447 kfree(cl);
David Teiglande7fd4172006-01-18 09:30:29 +0000448 kfree(sps);
449 kfree(cms);
Joel Beckera6795e92008-07-17 15:21:29 -0700450 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000451}
452
453static void drop_cluster(struct config_group *g, struct config_item *i)
454{
Andrew Morton27eccf42008-09-05 08:42:08 -0500455 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000456
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100457 configfs_remove_default_groups(&cl->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000458
459 space_list = NULL;
460 comm_list = NULL;
461
462 config_item_put(i);
463}
464
465static void release_cluster(struct config_item *i)
466{
Andrew Morton27eccf42008-09-05 08:42:08 -0500467 struct dlm_cluster *cl = config_item_to_cluster(i);
Alexander Aring700ab1c2021-06-02 09:45:16 -0400468
469 kfree(cl->sps);
470 kfree(cl->cms);
David Teiglande7fd4172006-01-18 09:30:29 +0000471 kfree(cl);
472}
473
Joel Beckerf89ab862008-07-17 14:53:48 -0700474static struct config_group *make_space(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000475{
David Teigland51409342008-07-31 09:31:53 -0500476 struct dlm_space *sp = NULL;
477 struct dlm_nodes *nds = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000478
David Teigland573c24c2009-11-30 16:34:43 -0600479 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
David Teigland573c24c2009-11-30 16:34:43 -0600480 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000481
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100482 if (!sp || !nds)
David Teiglande7fd4172006-01-18 09:30:29 +0000483 goto fail;
484
485 config_group_init_type_name(&sp->group, name, &space_type);
David Teiglande7fd4172006-01-18 09:30:29 +0000486
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100487 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
488 configfs_add_default_group(&nds->ns_group, &sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000489
490 INIT_LIST_HEAD(&sp->members);
David Teigland90135922006-01-20 08:47:07 +0000491 mutex_init(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000492 sp->members_count = 0;
Alexander Aring3d2825c2020-08-27 15:02:51 -0400493 sp->nds = nds;
Joel Beckerf89ab862008-07-17 14:53:48 -0700494 return &sp->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000495
496 fail:
497 kfree(sp);
David Teiglande7fd4172006-01-18 09:30:29 +0000498 kfree(nds);
Joel Beckera6795e92008-07-17 15:21:29 -0700499 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000500}
501
502static void drop_space(struct config_group *g, struct config_item *i)
503{
Andrew Morton27eccf42008-09-05 08:42:08 -0500504 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000505
506 /* assert list_empty(&sp->members) */
507
Christoph Hellwig1ae16022016-02-26 11:02:14 +0100508 configfs_remove_default_groups(&sp->group);
David Teiglande7fd4172006-01-18 09:30:29 +0000509 config_item_put(i);
510}
511
512static void release_space(struct config_item *i)
513{
Andrew Morton27eccf42008-09-05 08:42:08 -0500514 struct dlm_space *sp = config_item_to_space(i);
Alexander Aring3d2825c2020-08-27 15:02:51 -0400515 kfree(sp->nds);
David Teiglande7fd4172006-01-18 09:30:29 +0000516 kfree(sp);
517}
518
Joel Beckerf89ab862008-07-17 14:53:48 -0700519static struct config_item *make_comm(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000520{
David Teigland51409342008-07-31 09:31:53 -0500521 struct dlm_comm *cm;
David Teiglande7fd4172006-01-18 09:30:29 +0000522
David Teigland573c24c2009-11-30 16:34:43 -0600523 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000524 if (!cm)
Joel Beckera6795e92008-07-17 15:21:29 -0700525 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000526
527 config_item_init_type_name(&cm->item, name, &comm_type);
David Teigland60f98d12011-11-02 14:30:58 -0500528
529 cm->seq = dlm_comm_count++;
530 if (!cm->seq)
531 cm->seq = dlm_comm_count++;
532
David Teiglande7fd4172006-01-18 09:30:29 +0000533 cm->nodeid = -1;
534 cm->local = 0;
535 cm->addr_count = 0;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400536 cm->mark = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700537 return &cm->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000538}
539
540static void drop_comm(struct config_group *g, struct config_item *i)
541{
Andrew Morton27eccf42008-09-05 08:42:08 -0500542 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000543 if (local_comm == cm)
544 local_comm = NULL;
Alexander Aringa070a912021-05-21 15:08:41 -0400545 dlm_midcomms_close(cm->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000546 while (cm->addr_count--)
547 kfree(cm->addr[cm->addr_count]);
548 config_item_put(i);
549}
550
551static void release_comm(struct config_item *i)
552{
Andrew Morton27eccf42008-09-05 08:42:08 -0500553 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000554 kfree(cm);
555}
556
Joel Beckerf89ab862008-07-17 14:53:48 -0700557static struct config_item *make_node(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000558{
Andrew Morton27eccf42008-09-05 08:42:08 -0500559 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
David Teigland51409342008-07-31 09:31:53 -0500560 struct dlm_node *nd;
David Teiglande7fd4172006-01-18 09:30:29 +0000561
David Teigland573c24c2009-11-30 16:34:43 -0600562 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000563 if (!nd)
Joel Beckera6795e92008-07-17 15:21:29 -0700564 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000565
566 config_item_init_type_name(&nd->item, name, &node_type);
567 nd->nodeid = -1;
568 nd->weight = 1; /* default weight of 1 if none is set */
David Teiglandd44e0fc2008-03-18 14:22:11 -0500569 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
David Teiglande7fd4172006-01-18 09:30:29 +0000570
David Teigland90135922006-01-20 08:47:07 +0000571 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000572 list_add(&nd->list, &sp->members);
573 sp->members_count++;
David Teigland90135922006-01-20 08:47:07 +0000574 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000575
Joel Beckerf89ab862008-07-17 14:53:48 -0700576 return &nd->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000577}
578
579static void drop_node(struct config_group *g, struct config_item *i)
580{
Andrew Morton27eccf42008-09-05 08:42:08 -0500581 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
582 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000583
David Teigland90135922006-01-20 08:47:07 +0000584 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000585 list_del(&nd->list);
586 sp->members_count--;
David Teigland90135922006-01-20 08:47:07 +0000587 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000588
589 config_item_put(i);
590}
591
592static void release_node(struct config_item *i)
593{
Andrew Morton27eccf42008-09-05 08:42:08 -0500594 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000595 kfree(nd);
596}
597
David Teigland51409342008-07-31 09:31:53 -0500598static struct dlm_clusters clusters_root = {
David Teiglande7fd4172006-01-18 09:30:29 +0000599 .subsys = {
600 .su_group = {
601 .cg_item = {
602 .ci_namebuf = "dlm",
603 .ci_type = &clusters_type,
604 },
605 },
606 },
607};
608
Denis Cheng30727172008-02-02 01:53:46 +0800609int __init dlm_config_init(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000610{
611 config_group_init(&clusters_root.subsys.su_group);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700612 mutex_init(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000613 return configfs_register_subsystem(&clusters_root.subsys);
614}
615
616void dlm_config_exit(void)
617{
618 configfs_unregister_subsystem(&clusters_root.subsys);
619}
620
621/*
622 * Functions for user space to read/write attributes
623 */
624
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200625static ssize_t comm_nodeid_show(struct config_item *item, char *buf)
David Teiglandd2007782007-01-09 09:46:02 -0600626{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200627 return sprintf(buf, "%d\n", config_item_to_comm(item)->nodeid);
David Teiglandd2007782007-01-09 09:46:02 -0600628}
629
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200630static ssize_t comm_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500631 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000632{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200633 int rc = kstrtoint(buf, 0, &config_item_to_comm(item)->nodeid);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700634
635 if (rc)
636 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000637 return len;
638}
639
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200640static ssize_t comm_local_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000641{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200642 return sprintf(buf, "%d\n", config_item_to_comm(item)->local);
David Teiglande7fd4172006-01-18 09:30:29 +0000643}
644
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200645static ssize_t comm_local_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500646 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000647{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200648 struct dlm_comm *cm = config_item_to_comm(item);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700649 int rc = kstrtoint(buf, 0, &cm->local);
650
651 if (rc)
652 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000653 if (cm->local && !local_comm)
654 local_comm = cm;
655 return len;
656}
657
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200658static ssize_t comm_addr_store(struct config_item *item, const char *buf,
659 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000660{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200661 struct dlm_comm *cm = config_item_to_comm(item);
David Teiglande7fd4172006-01-18 09:30:29 +0000662 struct sockaddr_storage *addr;
David Teigland36b71a82012-07-26 12:44:30 -0500663 int rv;
David Teiglande7fd4172006-01-18 09:30:29 +0000664
665 if (len != sizeof(struct sockaddr_storage))
666 return -EINVAL;
667
668 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
669 return -ENOSPC;
670
David Teigland573c24c2009-11-30 16:34:43 -0600671 addr = kzalloc(sizeof(*addr), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000672 if (!addr)
673 return -ENOMEM;
674
675 memcpy(addr, buf, len);
David Teigland36b71a82012-07-26 12:44:30 -0500676
677 rv = dlm_lowcomms_addr(cm->nodeid, addr, len);
678 if (rv) {
679 kfree(addr);
680 return rv;
681 }
682
David Teiglande7fd4172006-01-18 09:30:29 +0000683 cm->addr[cm->addr_count++] = addr;
684 return len;
685}
686
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200687static ssize_t comm_addr_list_show(struct config_item *item, char *buf)
Masatake YAMATO55b32862011-06-30 21:37:10 +0900688{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200689 struct dlm_comm *cm = config_item_to_comm(item);
Masatake YAMATO55b32862011-06-30 21:37:10 +0900690 ssize_t s;
691 ssize_t allowance;
692 int i;
693 struct sockaddr_storage *addr;
694 struct sockaddr_in *addr_in;
695 struct sockaddr_in6 *addr_in6;
696
697 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
698 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
699
700
701 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
702 allowance = 4096;
703 buf[0] = '\0';
704
705 for (i = 0; i < cm->addr_count; i++) {
706 addr = cm->addr[i];
707
708 switch(addr->ss_family) {
709 case AF_INET:
710 addr_in = (struct sockaddr_in *)addr;
711 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
712 break;
713 case AF_INET6:
714 addr_in6 = (struct sockaddr_in6 *)addr;
715 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
716 break;
717 default:
718 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
719 break;
720 }
721 allowance -= s;
722 if (allowance >= 0)
723 strcat(buf, buf0);
724 else {
725 allowance += s;
726 break;
727 }
728 }
729 return 4096 - allowance;
730}
731
Alexander Aring9c9f1682020-06-26 13:26:50 -0400732static ssize_t comm_mark_show(struct config_item *item, char *buf)
733{
734 return sprintf(buf, "%u\n", config_item_to_comm(item)->mark);
735}
736
737static ssize_t comm_mark_store(struct config_item *item, const char *buf,
738 size_t len)
739{
Alexander Aringe125fbe2021-03-01 17:05:09 -0500740 struct dlm_comm *comm;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400741 unsigned int mark;
742 int rc;
743
744 rc = kstrtouint(buf, 0, &mark);
745 if (rc)
746 return rc;
747
Alexander Aringe125fbe2021-03-01 17:05:09 -0500748 if (mark == 0)
749 mark = dlm_config.ci_mark;
750
751 comm = config_item_to_comm(item);
752 rc = dlm_lowcomms_nodes_set_mark(comm->nodeid, mark);
753 if (rc)
754 return rc;
755
756 comm->mark = mark;
Alexander Aring9c9f1682020-06-26 13:26:50 -0400757 return len;
758}
759
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200760CONFIGFS_ATTR(comm_, nodeid);
761CONFIGFS_ATTR(comm_, local);
Alexander Aring9c9f1682020-06-26 13:26:50 -0400762CONFIGFS_ATTR(comm_, mark);
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200763CONFIGFS_ATTR_WO(comm_, addr);
764CONFIGFS_ATTR_RO(comm_, addr_list);
765
766static struct configfs_attribute *comm_attrs[] = {
767 [COMM_ATTR_NODEID] = &comm_attr_nodeid,
768 [COMM_ATTR_LOCAL] = &comm_attr_local,
769 [COMM_ATTR_ADDR] = &comm_attr_addr,
770 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list,
Alexander Aring9c9f1682020-06-26 13:26:50 -0400771 [COMM_ATTR_MARK] = &comm_attr_mark,
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200772 NULL,
773};
774
775static ssize_t node_nodeid_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000776{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200777 return sprintf(buf, "%d\n", config_item_to_node(item)->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000778}
779
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200780static ssize_t node_nodeid_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500781 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000782{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200783 struct dlm_node *nd = config_item_to_node(item);
David Teigland60f98d12011-11-02 14:30:58 -0500784 uint32_t seq = 0;
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700785 int rc = kstrtoint(buf, 0, &nd->nodeid);
786
787 if (rc)
788 return rc;
David Teigland60f98d12011-11-02 14:30:58 -0500789 dlm_comm_seq(nd->nodeid, &seq);
790 nd->comm_seq = seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000791 return len;
792}
793
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200794static ssize_t node_weight_show(struct config_item *item, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000795{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200796 return sprintf(buf, "%d\n", config_item_to_node(item)->weight);
David Teiglande7fd4172006-01-18 09:30:29 +0000797}
798
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200799static ssize_t node_weight_store(struct config_item *item, const char *buf,
David Teigland51409342008-07-31 09:31:53 -0500800 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000801{
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200802 int rc = kstrtoint(buf, 0, &config_item_to_node(item)->weight);
Fabian Frederick4f4c3372014-06-06 14:38:24 -0700803
804 if (rc)
805 return rc;
David Teiglande7fd4172006-01-18 09:30:29 +0000806 return len;
807}
808
Christoph Hellwig9ae0f362015-10-03 15:32:53 +0200809CONFIGFS_ATTR(node_, nodeid);
810CONFIGFS_ATTR(node_, weight);
811
812static struct configfs_attribute *node_attrs[] = {
813 [NODE_ATTR_NODEID] = &node_attr_nodeid,
814 [NODE_ATTR_WEIGHT] = &node_attr_weight,
815 NULL,
816};
817
David Teiglande7fd4172006-01-18 09:30:29 +0000818/*
819 * Functions for the dlm to get the info that's been configured
820 */
821
David Teigland51409342008-07-31 09:31:53 -0500822static struct dlm_space *get_space(char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000823{
Satyam Sharma3168b072007-05-08 09:18:58 +0100824 struct config_item *i;
825
David Teiglande7fd4172006-01-18 09:30:29 +0000826 if (!space_list)
827 return NULL;
Satyam Sharma3168b072007-05-08 09:18:58 +0100828
Joel Beckere6bd07a2007-07-06 23:33:17 -0700829 mutex_lock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3fe6c5c2007-07-04 16:37:16 +0530830 i = config_group_find_item(space_list, name);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700831 mutex_unlock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3168b072007-05-08 09:18:58 +0100832
Andrew Morton27eccf42008-09-05 08:42:08 -0500833 return config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000834}
835
David Teigland51409342008-07-31 09:31:53 -0500836static void put_space(struct dlm_space *sp)
David Teiglande7fd4172006-01-18 09:30:29 +0000837{
838 config_item_put(&sp->group.cg_item);
839}
840
David Teigland36b71a82012-07-26 12:44:30 -0500841static struct dlm_comm *get_comm(int nodeid)
David Teiglande7fd4172006-01-18 09:30:29 +0000842{
843 struct config_item *i;
David Teigland51409342008-07-31 09:31:53 -0500844 struct dlm_comm *cm = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000845 int found = 0;
846
847 if (!comm_list)
848 return NULL;
849
Joel Beckere6bd07a2007-07-06 23:33:17 -0700850 mutex_lock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000851
852 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
Andrew Morton27eccf42008-09-05 08:42:08 -0500853 cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000854
David Teigland36b71a82012-07-26 12:44:30 -0500855 if (cm->nodeid != nodeid)
856 continue;
857 found = 1;
858 config_item_get(i);
859 break;
David Teiglande7fd4172006-01-18 09:30:29 +0000860 }
Joel Beckere6bd07a2007-07-06 23:33:17 -0700861 mutex_unlock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000862
Satyam Sharma3168b072007-05-08 09:18:58 +0100863 if (!found)
David Teiglande7fd4172006-01-18 09:30:29 +0000864 cm = NULL;
865 return cm;
866}
867
David Teigland51409342008-07-31 09:31:53 -0500868static void put_comm(struct dlm_comm *cm)
David Teiglande7fd4172006-01-18 09:30:29 +0000869{
870 config_item_put(&cm->item);
871}
872
873/* caller must free mem */
David Teigland60f98d12011-11-02 14:30:58 -0500874int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
875 int *count_out)
David Teiglande7fd4172006-01-18 09:30:29 +0000876{
David Teigland51409342008-07-31 09:31:53 -0500877 struct dlm_space *sp;
878 struct dlm_node *nd;
David Teigland60f98d12011-11-02 14:30:58 -0500879 struct dlm_config_node *nodes, *node;
880 int rv, count;
David Teiglande7fd4172006-01-18 09:30:29 +0000881
882 sp = get_space(lsname);
883 if (!sp)
884 return -EEXIST;
885
David Teigland90135922006-01-20 08:47:07 +0000886 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000887 if (!sp->members_count) {
David Teiglandd44e0fc2008-03-18 14:22:11 -0500888 rv = -EINVAL;
889 printk(KERN_ERR "dlm: zero members_count\n");
David Teiglande7fd4172006-01-18 09:30:29 +0000890 goto out;
891 }
892
David Teigland60f98d12011-11-02 14:30:58 -0500893 count = sp->members_count;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500894
David Teigland60f98d12011-11-02 14:30:58 -0500895 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
896 if (!nodes) {
David Teiglande7fd4172006-01-18 09:30:29 +0000897 rv = -ENOMEM;
898 goto out;
899 }
900
David Teigland60f98d12011-11-02 14:30:58 -0500901 node = nodes;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500902 list_for_each_entry(nd, &sp->members, list) {
David Teigland60f98d12011-11-02 14:30:58 -0500903 node->nodeid = nd->nodeid;
904 node->weight = nd->weight;
905 node->new = nd->new;
906 node->comm_seq = nd->comm_seq;
907 node++;
908
909 nd->new = 0;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500910 }
David Teiglande7fd4172006-01-18 09:30:29 +0000911
David Teigland60f98d12011-11-02 14:30:58 -0500912 *count_out = count;
913 *nodes_out = nodes;
914 rv = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000915 out:
David Teigland90135922006-01-20 08:47:07 +0000916 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000917 put_space(sp);
918 return rv;
919}
920
David Teigland60f98d12011-11-02 14:30:58 -0500921int dlm_comm_seq(int nodeid, uint32_t *seq)
David Teiglande7fd4172006-01-18 09:30:29 +0000922{
David Teigland36b71a82012-07-26 12:44:30 -0500923 struct dlm_comm *cm = get_comm(nodeid);
David Teigland60f98d12011-11-02 14:30:58 -0500924 if (!cm)
925 return -EEXIST;
926 *seq = cm->seq;
927 put_comm(cm);
928 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000929}
930
David Teiglande7fd4172006-01-18 09:30:29 +0000931int dlm_our_nodeid(void)
932{
933 return local_comm ? local_comm->nodeid : 0;
934}
935
936/* num 0 is first addr, num 1 is second addr */
937int dlm_our_addr(struct sockaddr_storage *addr, int num)
938{
939 if (!local_comm)
940 return -1;
941 if (num + 1 > local_comm->addr_count)
942 return -1;
943 memcpy(addr, local_comm->addr[num], sizeof(*addr));
944 return 0;
945}
946
947/* Config file defaults */
948#define DEFAULT_TCP_PORT 21064
David Teiglande3853a92011-03-10 13:07:17 -0600949#define DEFAULT_RSBTBL_SIZE 1024
David Teiglande7fd4172006-01-18 09:30:29 +0000950#define DEFAULT_RECOVER_TIMER 5
951#define DEFAULT_TOSS_SECS 10
952#define DEFAULT_SCAN_SECS 5
David Teigland99fc6482007-01-09 09:44:01 -0600953#define DEFAULT_LOG_DEBUG 0
Zhilong Liu505ee522016-06-19 23:52:46 -0500954#define DEFAULT_LOG_INFO 1
Alexander Aringac7d5d02021-06-02 09:45:19 -0400955#define DEFAULT_PROTOCOL DLM_PROTO_TCP
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400956#define DEFAULT_MARK 0
David Teigland3ae1acf2007-05-18 08:59:31 -0500957#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
David Teiglandc6ff6692011-03-28 14:17:26 -0500958#define DEFAULT_WAITWARN_US 0
David Teigland3881ac02011-07-07 14:05:03 -0500959#define DEFAULT_NEW_RSB_COUNT 128
David Teigland60f98d12011-11-02 14:30:58 -0500960#define DEFAULT_RECOVER_CALLBACKS 0
961#define DEFAULT_CLUSTER_NAME ""
David Teiglande7fd4172006-01-18 09:30:29 +0000962
963struct dlm_config_info dlm_config = {
David Teigland68c817a2007-01-09 09:41:48 -0600964 .ci_tcp_port = DEFAULT_TCP_PORT,
Alexander Aringd10a0b82021-06-02 09:45:20 -0400965 .ci_buffer_size = DLM_MAX_SOCKET_BUFSIZE,
David Teigland68c817a2007-01-09 09:41:48 -0600966 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
David Teigland68c817a2007-01-09 09:41:48 -0600967 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
968 .ci_toss_secs = DEFAULT_TOSS_SECS,
David Teigland99fc6482007-01-09 09:44:01 -0600969 .ci_scan_secs = DEFAULT_SCAN_SECS,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100970 .ci_log_debug = DEFAULT_LOG_DEBUG,
Zhilong Liu505ee522016-06-19 23:52:46 -0500971 .ci_log_info = DEFAULT_LOG_INFO,
David Teigland3ae1acf2007-05-18 08:59:31 -0500972 .ci_protocol = DEFAULT_PROTOCOL,
Alexander Aringa5b7ab62020-06-26 13:26:49 -0400973 .ci_mark = DEFAULT_MARK,
David Teiglandc6ff6692011-03-28 14:17:26 -0500974 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
David Teigland3881ac02011-07-07 14:05:03 -0500975 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
David Teigland60f98d12011-11-02 14:30:58 -0500976 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
977 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
978 .ci_cluster_name = DEFAULT_CLUSTER_NAME
David Teiglande7fd4172006-01-18 09:30:29 +0000979};
980