blob: 76feb4b60fa6d0a307d70b216a7d4a91cdf389ba [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
David Teigland60f98d12011-11-02 14:30:58 -05005** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
David Teiglande7fd4172006-01-18 09:30:29 +00006**
7** This copyrighted material is made available to anyone wishing to use,
8** modify, copy, or redistribute it subject to the terms and conditions
9** of the GNU General Public License v.2.
10**
11*******************************************************************************
12******************************************************************************/
13
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/configfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
David Teigland44be6fd2008-08-28 11:36:19 -050018#include <linux/in.h>
19#include <linux/in6.h>
David Teigland60f98d12011-11-02 14:30:58 -050020#include <linux/dlmconstants.h>
David Teigland44be6fd2008-08-28 11:36:19 -050021#include <net/ipv6.h>
David Teiglande7fd4172006-01-18 09:30:29 +000022#include <net/sock.h>
23
24#include "config.h"
David Teigland1c032c02006-04-28 10:50:41 -040025#include "lowcomms.h"
David Teiglande7fd4172006-01-18 09:30:29 +000026
27/*
28 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid
29 * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/weight
30 * /config/dlm/<cluster>/comms/<comm>/nodeid
31 * /config/dlm/<cluster>/comms/<comm>/local
Masatake YAMATO55b32862011-06-30 21:37:10 +090032 * /config/dlm/<cluster>/comms/<comm>/addr (write only)
33 * /config/dlm/<cluster>/comms/<comm>/addr_list (read only)
David Teiglande7fd4172006-01-18 09:30:29 +000034 * The <cluster> level is useless, but I haven't figured out how to avoid it.
35 */
36
37static struct config_group *space_list;
38static struct config_group *comm_list;
David Teigland51409342008-07-31 09:31:53 -050039static struct dlm_comm *local_comm;
David Teigland60f98d12011-11-02 14:30:58 -050040static uint32_t dlm_comm_count;
David Teiglande7fd4172006-01-18 09:30:29 +000041
David Teigland51409342008-07-31 09:31:53 -050042struct dlm_clusters;
43struct dlm_cluster;
44struct dlm_spaces;
45struct dlm_space;
46struct dlm_comms;
47struct dlm_comm;
48struct dlm_nodes;
49struct dlm_node;
David Teiglande7fd4172006-01-18 09:30:29 +000050
Joel Beckerf89ab862008-07-17 14:53:48 -070051static struct config_group *make_cluster(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000052static void drop_cluster(struct config_group *, struct config_item *);
53static void release_cluster(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070054static struct config_group *make_space(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000055static void drop_space(struct config_group *, struct config_item *);
56static void release_space(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070057static struct config_item *make_comm(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000058static void drop_comm(struct config_group *, struct config_item *);
59static void release_comm(struct config_item *);
Joel Beckerf89ab862008-07-17 14:53:48 -070060static struct config_item *make_node(struct config_group *, const char *);
David Teiglande7fd4172006-01-18 09:30:29 +000061static void drop_node(struct config_group *, struct config_item *);
62static void release_node(struct config_item *);
63
David Teiglandd2007782007-01-09 09:46:02 -060064static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
65 char *buf);
66static ssize_t store_cluster(struct config_item *i,
67 struct configfs_attribute *a,
68 const char *buf, size_t len);
David Teiglande7fd4172006-01-18 09:30:29 +000069static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
70 char *buf);
71static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
72 const char *buf, size_t len);
73static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
74 char *buf);
75static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
76 const char *buf, size_t len);
77
David Teigland51409342008-07-31 09:31:53 -050078static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf);
79static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf,
80 size_t len);
81static ssize_t comm_local_read(struct dlm_comm *cm, char *buf);
82static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf,
83 size_t len);
84static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf,
85 size_t len);
Masatake YAMATO55b32862011-06-30 21:37:10 +090086static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf);
David Teigland51409342008-07-31 09:31:53 -050087static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf);
88static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf,
89 size_t len);
90static ssize_t node_weight_read(struct dlm_node *nd, char *buf);
91static ssize_t node_weight_write(struct dlm_node *nd, const char *buf,
92 size_t len);
David Teiglande7fd4172006-01-18 09:30:29 +000093
David Teigland51409342008-07-31 09:31:53 -050094struct dlm_cluster {
David Teiglandd2007782007-01-09 09:46:02 -060095 struct config_group group;
96 unsigned int cl_tcp_port;
97 unsigned int cl_buffer_size;
98 unsigned int cl_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -060099 unsigned int cl_recover_timer;
100 unsigned int cl_toss_secs;
101 unsigned int cl_scan_secs;
102 unsigned int cl_log_debug;
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100103 unsigned int cl_protocol;
David Teigland3ae1acf2007-05-18 08:59:31 -0500104 unsigned int cl_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500105 unsigned int cl_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500106 unsigned int cl_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500107 unsigned int cl_recover_callbacks;
108 char cl_cluster_name[DLM_LOCKSPACE_LEN];
David Teiglandd2007782007-01-09 09:46:02 -0600109};
110
111enum {
112 CLUSTER_ATTR_TCP_PORT = 0,
113 CLUSTER_ATTR_BUFFER_SIZE,
114 CLUSTER_ATTR_RSBTBL_SIZE,
David Teiglandd2007782007-01-09 09:46:02 -0600115 CLUSTER_ATTR_RECOVER_TIMER,
116 CLUSTER_ATTR_TOSS_SECS,
117 CLUSTER_ATTR_SCAN_SECS,
118 CLUSTER_ATTR_LOG_DEBUG,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100119 CLUSTER_ATTR_PROTOCOL,
David Teigland3ae1acf2007-05-18 08:59:31 -0500120 CLUSTER_ATTR_TIMEWARN_CS,
David Teiglandc6ff6692011-03-28 14:17:26 -0500121 CLUSTER_ATTR_WAITWARN_US,
David Teigland3881ac02011-07-07 14:05:03 -0500122 CLUSTER_ATTR_NEW_RSB_COUNT,
David Teigland60f98d12011-11-02 14:30:58 -0500123 CLUSTER_ATTR_RECOVER_CALLBACKS,
124 CLUSTER_ATTR_CLUSTER_NAME,
David Teiglandd2007782007-01-09 09:46:02 -0600125};
126
127struct cluster_attribute {
128 struct configfs_attribute attr;
David Teigland51409342008-07-31 09:31:53 -0500129 ssize_t (*show)(struct dlm_cluster *, char *);
130 ssize_t (*store)(struct dlm_cluster *, const char *, size_t);
David Teiglandd2007782007-01-09 09:46:02 -0600131};
132
David Teigland60f98d12011-11-02 14:30:58 -0500133static ssize_t cluster_cluster_name_read(struct dlm_cluster *cl, char *buf)
134{
135 return sprintf(buf, "%s\n", cl->cl_cluster_name);
136}
137
138static ssize_t cluster_cluster_name_write(struct dlm_cluster *cl,
139 const char *buf, size_t len)
140{
Zhao Hongjiangad917e72013-06-20 18:59:51 +0800141 strlcpy(dlm_config.ci_cluster_name, buf,
142 sizeof(dlm_config.ci_cluster_name));
143 strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
David Teigland60f98d12011-11-02 14:30:58 -0500144 return len;
145}
146
147static struct cluster_attribute cluster_attr_cluster_name = {
148 .attr = { .ca_owner = THIS_MODULE,
149 .ca_name = "cluster_name",
150 .ca_mode = S_IRUGO | S_IWUSR },
151 .show = cluster_cluster_name_read,
152 .store = cluster_cluster_name_write,
153};
154
David Teigland51409342008-07-31 09:31:53 -0500155static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
Harvey Harrison5416b702008-02-13 16:54:29 -0800156 int *info_field, int check_zero,
David Teiglandd2007782007-01-09 09:46:02 -0600157 const char *buf, size_t len)
158{
159 unsigned int x;
160
161 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100162 return -EPERM;
David Teiglandd2007782007-01-09 09:46:02 -0600163
164 x = simple_strtoul(buf, NULL, 0);
165
166 if (check_zero && !x)
167 return -EINVAL;
168
169 *cl_field = x;
170 *info_field = x;
171
172 return len;
173}
174
David Teiglandd2007782007-01-09 09:46:02 -0600175#define CLUSTER_ATTR(name, check_zero) \
David Teigland51409342008-07-31 09:31:53 -0500176static ssize_t name##_write(struct dlm_cluster *cl, const char *buf, size_t len) \
David Teiglandd2007782007-01-09 09:46:02 -0600177{ \
178 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
179 check_zero, buf, len); \
180} \
David Teigland51409342008-07-31 09:31:53 -0500181static ssize_t name##_read(struct dlm_cluster *cl, char *buf) \
David Teiglandd2007782007-01-09 09:46:02 -0600182{ \
183 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
184} \
185static struct cluster_attribute cluster_attr_##name = \
186__CONFIGFS_ATTR(name, 0644, name##_read, name##_write)
187
188CLUSTER_ATTR(tcp_port, 1);
189CLUSTER_ATTR(buffer_size, 1);
190CLUSTER_ATTR(rsbtbl_size, 1);
David Teiglandd2007782007-01-09 09:46:02 -0600191CLUSTER_ATTR(recover_timer, 1);
192CLUSTER_ATTR(toss_secs, 1);
193CLUSTER_ATTR(scan_secs, 1);
194CLUSTER_ATTR(log_debug, 0);
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100195CLUSTER_ATTR(protocol, 0);
David Teigland3ae1acf2007-05-18 08:59:31 -0500196CLUSTER_ATTR(timewarn_cs, 1);
David Teiglandc6ff6692011-03-28 14:17:26 -0500197CLUSTER_ATTR(waitwarn_us, 0);
David Teigland3881ac02011-07-07 14:05:03 -0500198CLUSTER_ATTR(new_rsb_count, 0);
David Teigland60f98d12011-11-02 14:30:58 -0500199CLUSTER_ATTR(recover_callbacks, 0);
David Teiglandd2007782007-01-09 09:46:02 -0600200
201static struct configfs_attribute *cluster_attrs[] = {
202 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port.attr,
203 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size.attr,
204 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size.attr,
David Teiglandd2007782007-01-09 09:46:02 -0600205 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer.attr,
206 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs.attr,
207 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs.attr,
208 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug.attr,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100209 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol.attr,
David Teigland3ae1acf2007-05-18 08:59:31 -0500210 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs.attr,
David Teiglandc6ff6692011-03-28 14:17:26 -0500211 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us.attr,
David Teigland3881ac02011-07-07 14:05:03 -0500212 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count.attr,
David Teigland60f98d12011-11-02 14:30:58 -0500213 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks.attr,
214 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name.attr,
David Teiglandd2007782007-01-09 09:46:02 -0600215 NULL,
216};
217
David Teiglande7fd4172006-01-18 09:30:29 +0000218enum {
219 COMM_ATTR_NODEID = 0,
220 COMM_ATTR_LOCAL,
221 COMM_ATTR_ADDR,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900222 COMM_ATTR_ADDR_LIST,
David Teiglande7fd4172006-01-18 09:30:29 +0000223};
224
225struct comm_attribute {
226 struct configfs_attribute attr;
David Teigland51409342008-07-31 09:31:53 -0500227 ssize_t (*show)(struct dlm_comm *, char *);
228 ssize_t (*store)(struct dlm_comm *, const char *, size_t);
David Teiglande7fd4172006-01-18 09:30:29 +0000229};
230
231static struct comm_attribute comm_attr_nodeid = {
232 .attr = { .ca_owner = THIS_MODULE,
233 .ca_name = "nodeid",
234 .ca_mode = S_IRUGO | S_IWUSR },
235 .show = comm_nodeid_read,
236 .store = comm_nodeid_write,
237};
238
239static struct comm_attribute comm_attr_local = {
240 .attr = { .ca_owner = THIS_MODULE,
241 .ca_name = "local",
242 .ca_mode = S_IRUGO | S_IWUSR },
243 .show = comm_local_read,
244 .store = comm_local_write,
245};
246
247static struct comm_attribute comm_attr_addr = {
248 .attr = { .ca_owner = THIS_MODULE,
249 .ca_name = "addr",
Masatake YAMATO55b32862011-06-30 21:37:10 +0900250 .ca_mode = S_IWUSR },
David Teiglande7fd4172006-01-18 09:30:29 +0000251 .store = comm_addr_write,
252};
253
Masatake YAMATO55b32862011-06-30 21:37:10 +0900254static struct comm_attribute comm_attr_addr_list = {
255 .attr = { .ca_owner = THIS_MODULE,
256 .ca_name = "addr_list",
257 .ca_mode = S_IRUGO },
258 .show = comm_addr_list_read,
259};
260
David Teiglande7fd4172006-01-18 09:30:29 +0000261static struct configfs_attribute *comm_attrs[] = {
262 [COMM_ATTR_NODEID] = &comm_attr_nodeid.attr,
263 [COMM_ATTR_LOCAL] = &comm_attr_local.attr,
264 [COMM_ATTR_ADDR] = &comm_attr_addr.attr,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900265 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list.attr,
David Teiglande7fd4172006-01-18 09:30:29 +0000266 NULL,
267};
268
269enum {
270 NODE_ATTR_NODEID = 0,
271 NODE_ATTR_WEIGHT,
272};
273
274struct node_attribute {
275 struct configfs_attribute attr;
David Teigland51409342008-07-31 09:31:53 -0500276 ssize_t (*show)(struct dlm_node *, char *);
277 ssize_t (*store)(struct dlm_node *, const char *, size_t);
David Teiglande7fd4172006-01-18 09:30:29 +0000278};
279
280static struct node_attribute node_attr_nodeid = {
281 .attr = { .ca_owner = THIS_MODULE,
282 .ca_name = "nodeid",
283 .ca_mode = S_IRUGO | S_IWUSR },
284 .show = node_nodeid_read,
285 .store = node_nodeid_write,
286};
287
288static struct node_attribute node_attr_weight = {
289 .attr = { .ca_owner = THIS_MODULE,
290 .ca_name = "weight",
291 .ca_mode = S_IRUGO | S_IWUSR },
292 .show = node_weight_read,
293 .store = node_weight_write,
294};
295
296static struct configfs_attribute *node_attrs[] = {
297 [NODE_ATTR_NODEID] = &node_attr_nodeid.attr,
298 [NODE_ATTR_WEIGHT] = &node_attr_weight.attr,
299 NULL,
300};
301
David Teigland51409342008-07-31 09:31:53 -0500302struct dlm_clusters {
David Teiglande7fd4172006-01-18 09:30:29 +0000303 struct configfs_subsystem subsys;
304};
305
David Teigland51409342008-07-31 09:31:53 -0500306struct dlm_spaces {
David Teiglande7fd4172006-01-18 09:30:29 +0000307 struct config_group ss_group;
308};
309
David Teigland51409342008-07-31 09:31:53 -0500310struct dlm_space {
David Teiglande7fd4172006-01-18 09:30:29 +0000311 struct config_group group;
312 struct list_head members;
David Teigland90135922006-01-20 08:47:07 +0000313 struct mutex members_lock;
David Teiglande7fd4172006-01-18 09:30:29 +0000314 int members_count;
315};
316
David Teigland51409342008-07-31 09:31:53 -0500317struct dlm_comms {
David Teiglande7fd4172006-01-18 09:30:29 +0000318 struct config_group cs_group;
319};
320
David Teigland51409342008-07-31 09:31:53 -0500321struct dlm_comm {
David Teiglande7fd4172006-01-18 09:30:29 +0000322 struct config_item item;
David Teigland60f98d12011-11-02 14:30:58 -0500323 int seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000324 int nodeid;
325 int local;
326 int addr_count;
327 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
328};
329
David Teigland51409342008-07-31 09:31:53 -0500330struct dlm_nodes {
David Teiglande7fd4172006-01-18 09:30:29 +0000331 struct config_group ns_group;
332};
333
David Teigland51409342008-07-31 09:31:53 -0500334struct dlm_node {
David Teiglande7fd4172006-01-18 09:30:29 +0000335 struct config_item item;
336 struct list_head list; /* space->members */
337 int nodeid;
338 int weight;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500339 int new;
David Teigland60f98d12011-11-02 14:30:58 -0500340 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
David Teiglande7fd4172006-01-18 09:30:29 +0000341};
342
343static struct configfs_group_operations clusters_ops = {
344 .make_group = make_cluster,
345 .drop_item = drop_cluster,
346};
347
348static struct configfs_item_operations cluster_ops = {
349 .release = release_cluster,
David Teiglandd2007782007-01-09 09:46:02 -0600350 .show_attribute = show_cluster,
351 .store_attribute = store_cluster,
David Teiglande7fd4172006-01-18 09:30:29 +0000352};
353
354static struct configfs_group_operations spaces_ops = {
355 .make_group = make_space,
356 .drop_item = drop_space,
357};
358
359static struct configfs_item_operations space_ops = {
360 .release = release_space,
361};
362
363static struct configfs_group_operations comms_ops = {
364 .make_item = make_comm,
365 .drop_item = drop_comm,
366};
367
368static struct configfs_item_operations comm_ops = {
369 .release = release_comm,
370 .show_attribute = show_comm,
371 .store_attribute = store_comm,
372};
373
374static struct configfs_group_operations nodes_ops = {
375 .make_item = make_node,
376 .drop_item = drop_node,
377};
378
379static struct configfs_item_operations node_ops = {
380 .release = release_node,
381 .show_attribute = show_node,
382 .store_attribute = store_node,
383};
384
385static struct config_item_type clusters_type = {
386 .ct_group_ops = &clusters_ops,
387 .ct_owner = THIS_MODULE,
388};
389
390static struct config_item_type cluster_type = {
391 .ct_item_ops = &cluster_ops,
David Teiglandd2007782007-01-09 09:46:02 -0600392 .ct_attrs = cluster_attrs,
David Teiglande7fd4172006-01-18 09:30:29 +0000393 .ct_owner = THIS_MODULE,
394};
395
396static struct config_item_type spaces_type = {
397 .ct_group_ops = &spaces_ops,
398 .ct_owner = THIS_MODULE,
399};
400
401static struct config_item_type space_type = {
402 .ct_item_ops = &space_ops,
403 .ct_owner = THIS_MODULE,
404};
405
406static struct config_item_type comms_type = {
407 .ct_group_ops = &comms_ops,
408 .ct_owner = THIS_MODULE,
409};
410
411static struct config_item_type comm_type = {
412 .ct_item_ops = &comm_ops,
413 .ct_attrs = comm_attrs,
414 .ct_owner = THIS_MODULE,
415};
416
417static struct config_item_type nodes_type = {
418 .ct_group_ops = &nodes_ops,
419 .ct_owner = THIS_MODULE,
420};
421
422static struct config_item_type node_type = {
423 .ct_item_ops = &node_ops,
424 .ct_attrs = node_attrs,
425 .ct_owner = THIS_MODULE,
426};
427
Andrew Morton27eccf42008-09-05 08:42:08 -0500428static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000429{
David Teigland51409342008-07-31 09:31:53 -0500430 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
431 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000432}
433
Andrew Morton27eccf42008-09-05 08:42:08 -0500434static struct dlm_space *config_item_to_space(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000435{
David Teigland51409342008-07-31 09:31:53 -0500436 return i ? container_of(to_config_group(i), struct dlm_space, group) :
437 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000438}
439
Andrew Morton27eccf42008-09-05 08:42:08 -0500440static struct dlm_comm *config_item_to_comm(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000441{
David Teigland51409342008-07-31 09:31:53 -0500442 return i ? container_of(i, struct dlm_comm, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000443}
444
Andrew Morton27eccf42008-09-05 08:42:08 -0500445static struct dlm_node *config_item_to_node(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000446{
David Teigland51409342008-07-31 09:31:53 -0500447 return i ? container_of(i, struct dlm_node, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000448}
449
Joel Beckerf89ab862008-07-17 14:53:48 -0700450static struct config_group *make_cluster(struct config_group *g,
451 const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000452{
David Teigland51409342008-07-31 09:31:53 -0500453 struct dlm_cluster *cl = NULL;
454 struct dlm_spaces *sps = NULL;
455 struct dlm_comms *cms = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000456 void *gps = NULL;
457
David Teigland573c24c2009-11-30 16:34:43 -0600458 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
459 gps = kcalloc(3, sizeof(struct config_group *), GFP_NOFS);
460 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
461 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000462
463 if (!cl || !gps || !sps || !cms)
464 goto fail;
465
466 config_group_init_type_name(&cl->group, name, &cluster_type);
467 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
468 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
469
470 cl->group.default_groups = gps;
471 cl->group.default_groups[0] = &sps->ss_group;
472 cl->group.default_groups[1] = &cms->cs_group;
473 cl->group.default_groups[2] = NULL;
474
David Teiglandd2007782007-01-09 09:46:02 -0600475 cl->cl_tcp_port = dlm_config.ci_tcp_port;
476 cl->cl_buffer_size = dlm_config.ci_buffer_size;
477 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -0600478 cl->cl_recover_timer = dlm_config.ci_recover_timer;
479 cl->cl_toss_secs = dlm_config.ci_toss_secs;
480 cl->cl_scan_secs = dlm_config.ci_scan_secs;
481 cl->cl_log_debug = dlm_config.ci_log_debug;
David Teigland0b7cac02007-05-29 08:47:51 -0500482 cl->cl_protocol = dlm_config.ci_protocol;
David Teigland84d8cd62007-05-29 08:44:23 -0500483 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500484 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500485 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500486 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
487 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
488 DLM_LOCKSPACE_LEN);
David Teiglandd2007782007-01-09 09:46:02 -0600489
David Teiglande7fd4172006-01-18 09:30:29 +0000490 space_list = &sps->ss_group;
491 comm_list = &cms->cs_group;
Joel Beckerf89ab862008-07-17 14:53:48 -0700492 return &cl->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000493
494 fail:
495 kfree(cl);
496 kfree(gps);
497 kfree(sps);
498 kfree(cms);
Joel Beckera6795e92008-07-17 15:21:29 -0700499 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000500}
501
502static void drop_cluster(struct config_group *g, struct config_item *i)
503{
Andrew Morton27eccf42008-09-05 08:42:08 -0500504 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000505 struct config_item *tmp;
506 int j;
507
508 for (j = 0; cl->group.default_groups[j]; j++) {
509 tmp = &cl->group.default_groups[j]->cg_item;
510 cl->group.default_groups[j] = NULL;
511 config_item_put(tmp);
512 }
513
514 space_list = NULL;
515 comm_list = NULL;
516
517 config_item_put(i);
518}
519
520static void release_cluster(struct config_item *i)
521{
Andrew Morton27eccf42008-09-05 08:42:08 -0500522 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000523 kfree(cl->group.default_groups);
524 kfree(cl);
525}
526
Joel Beckerf89ab862008-07-17 14:53:48 -0700527static struct config_group *make_space(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000528{
David Teigland51409342008-07-31 09:31:53 -0500529 struct dlm_space *sp = NULL;
530 struct dlm_nodes *nds = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000531 void *gps = NULL;
532
David Teigland573c24c2009-11-30 16:34:43 -0600533 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
534 gps = kcalloc(2, sizeof(struct config_group *), GFP_NOFS);
535 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000536
537 if (!sp || !gps || !nds)
538 goto fail;
539
540 config_group_init_type_name(&sp->group, name, &space_type);
541 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
542
543 sp->group.default_groups = gps;
544 sp->group.default_groups[0] = &nds->ns_group;
545 sp->group.default_groups[1] = NULL;
546
547 INIT_LIST_HEAD(&sp->members);
David Teigland90135922006-01-20 08:47:07 +0000548 mutex_init(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000549 sp->members_count = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700550 return &sp->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000551
552 fail:
553 kfree(sp);
554 kfree(gps);
555 kfree(nds);
Joel Beckera6795e92008-07-17 15:21:29 -0700556 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000557}
558
559static void drop_space(struct config_group *g, struct config_item *i)
560{
Andrew Morton27eccf42008-09-05 08:42:08 -0500561 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000562 struct config_item *tmp;
563 int j;
564
565 /* assert list_empty(&sp->members) */
566
567 for (j = 0; sp->group.default_groups[j]; j++) {
568 tmp = &sp->group.default_groups[j]->cg_item;
569 sp->group.default_groups[j] = NULL;
570 config_item_put(tmp);
571 }
572
573 config_item_put(i);
574}
575
576static void release_space(struct config_item *i)
577{
Andrew Morton27eccf42008-09-05 08:42:08 -0500578 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000579 kfree(sp->group.default_groups);
580 kfree(sp);
581}
582
Joel Beckerf89ab862008-07-17 14:53:48 -0700583static struct config_item *make_comm(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000584{
David Teigland51409342008-07-31 09:31:53 -0500585 struct dlm_comm *cm;
David Teiglande7fd4172006-01-18 09:30:29 +0000586
David Teigland573c24c2009-11-30 16:34:43 -0600587 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000588 if (!cm)
Joel Beckera6795e92008-07-17 15:21:29 -0700589 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000590
591 config_item_init_type_name(&cm->item, name, &comm_type);
David Teigland60f98d12011-11-02 14:30:58 -0500592
593 cm->seq = dlm_comm_count++;
594 if (!cm->seq)
595 cm->seq = dlm_comm_count++;
596
David Teiglande7fd4172006-01-18 09:30:29 +0000597 cm->nodeid = -1;
598 cm->local = 0;
599 cm->addr_count = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700600 return &cm->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000601}
602
603static void drop_comm(struct config_group *g, struct config_item *i)
604{
Andrew Morton27eccf42008-09-05 08:42:08 -0500605 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000606 if (local_comm == cm)
607 local_comm = NULL;
David Teigland1c032c02006-04-28 10:50:41 -0400608 dlm_lowcomms_close(cm->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000609 while (cm->addr_count--)
610 kfree(cm->addr[cm->addr_count]);
611 config_item_put(i);
612}
613
614static void release_comm(struct config_item *i)
615{
Andrew Morton27eccf42008-09-05 08:42:08 -0500616 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000617 kfree(cm);
618}
619
Joel Beckerf89ab862008-07-17 14:53:48 -0700620static struct config_item *make_node(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000621{
Andrew Morton27eccf42008-09-05 08:42:08 -0500622 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
David Teigland51409342008-07-31 09:31:53 -0500623 struct dlm_node *nd;
David Teiglande7fd4172006-01-18 09:30:29 +0000624
David Teigland573c24c2009-11-30 16:34:43 -0600625 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000626 if (!nd)
Joel Beckera6795e92008-07-17 15:21:29 -0700627 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000628
629 config_item_init_type_name(&nd->item, name, &node_type);
630 nd->nodeid = -1;
631 nd->weight = 1; /* default weight of 1 if none is set */
David Teiglandd44e0fc2008-03-18 14:22:11 -0500632 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
David Teiglande7fd4172006-01-18 09:30:29 +0000633
David Teigland90135922006-01-20 08:47:07 +0000634 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000635 list_add(&nd->list, &sp->members);
636 sp->members_count++;
David Teigland90135922006-01-20 08:47:07 +0000637 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000638
Joel Beckerf89ab862008-07-17 14:53:48 -0700639 return &nd->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000640}
641
642static void drop_node(struct config_group *g, struct config_item *i)
643{
Andrew Morton27eccf42008-09-05 08:42:08 -0500644 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
645 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000646
David Teigland90135922006-01-20 08:47:07 +0000647 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000648 list_del(&nd->list);
649 sp->members_count--;
David Teigland90135922006-01-20 08:47:07 +0000650 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000651
652 config_item_put(i);
653}
654
655static void release_node(struct config_item *i)
656{
Andrew Morton27eccf42008-09-05 08:42:08 -0500657 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000658 kfree(nd);
659}
660
David Teigland51409342008-07-31 09:31:53 -0500661static struct dlm_clusters clusters_root = {
David Teiglande7fd4172006-01-18 09:30:29 +0000662 .subsys = {
663 .su_group = {
664 .cg_item = {
665 .ci_namebuf = "dlm",
666 .ci_type = &clusters_type,
667 },
668 },
669 },
670};
671
Denis Cheng30727172008-02-02 01:53:46 +0800672int __init dlm_config_init(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000673{
674 config_group_init(&clusters_root.subsys.su_group);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700675 mutex_init(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000676 return configfs_register_subsystem(&clusters_root.subsys);
677}
678
679void dlm_config_exit(void)
680{
681 configfs_unregister_subsystem(&clusters_root.subsys);
682}
683
684/*
685 * Functions for user space to read/write attributes
686 */
687
David Teiglandd2007782007-01-09 09:46:02 -0600688static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
689 char *buf)
690{
Andrew Morton27eccf42008-09-05 08:42:08 -0500691 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglandd2007782007-01-09 09:46:02 -0600692 struct cluster_attribute *cla =
693 container_of(a, struct cluster_attribute, attr);
694 return cla->show ? cla->show(cl, buf) : 0;
695}
696
697static ssize_t store_cluster(struct config_item *i,
698 struct configfs_attribute *a,
699 const char *buf, size_t len)
700{
Andrew Morton27eccf42008-09-05 08:42:08 -0500701 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglandd2007782007-01-09 09:46:02 -0600702 struct cluster_attribute *cla =
703 container_of(a, struct cluster_attribute, attr);
704 return cla->store ? cla->store(cl, buf, len) : -EINVAL;
705}
706
David Teiglande7fd4172006-01-18 09:30:29 +0000707static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
708 char *buf)
709{
Andrew Morton27eccf42008-09-05 08:42:08 -0500710 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000711 struct comm_attribute *cma =
712 container_of(a, struct comm_attribute, attr);
713 return cma->show ? cma->show(cm, buf) : 0;
714}
715
716static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
717 const char *buf, size_t len)
718{
Andrew Morton27eccf42008-09-05 08:42:08 -0500719 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000720 struct comm_attribute *cma =
721 container_of(a, struct comm_attribute, attr);
722 return cma->store ? cma->store(cm, buf, len) : -EINVAL;
723}
724
David Teigland51409342008-07-31 09:31:53 -0500725static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000726{
727 return sprintf(buf, "%d\n", cm->nodeid);
728}
729
David Teigland51409342008-07-31 09:31:53 -0500730static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf,
731 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000732{
733 cm->nodeid = simple_strtol(buf, NULL, 0);
734 return len;
735}
736
David Teigland51409342008-07-31 09:31:53 -0500737static ssize_t comm_local_read(struct dlm_comm *cm, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000738{
739 return sprintf(buf, "%d\n", cm->local);
740}
741
David Teigland51409342008-07-31 09:31:53 -0500742static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf,
743 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000744{
745 cm->local= simple_strtol(buf, NULL, 0);
746 if (cm->local && !local_comm)
747 local_comm = cm;
748 return len;
749}
750
David Teigland51409342008-07-31 09:31:53 -0500751static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000752{
753 struct sockaddr_storage *addr;
David Teigland36b71a82012-07-26 12:44:30 -0500754 int rv;
David Teiglande7fd4172006-01-18 09:30:29 +0000755
756 if (len != sizeof(struct sockaddr_storage))
757 return -EINVAL;
758
759 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
760 return -ENOSPC;
761
David Teigland573c24c2009-11-30 16:34:43 -0600762 addr = kzalloc(sizeof(*addr), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000763 if (!addr)
764 return -ENOMEM;
765
766 memcpy(addr, buf, len);
David Teigland36b71a82012-07-26 12:44:30 -0500767
768 rv = dlm_lowcomms_addr(cm->nodeid, addr, len);
769 if (rv) {
770 kfree(addr);
771 return rv;
772 }
773
David Teiglande7fd4172006-01-18 09:30:29 +0000774 cm->addr[cm->addr_count++] = addr;
775 return len;
776}
777
Masatake YAMATO55b32862011-06-30 21:37:10 +0900778static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf)
779{
780 ssize_t s;
781 ssize_t allowance;
782 int i;
783 struct sockaddr_storage *addr;
784 struct sockaddr_in *addr_in;
785 struct sockaddr_in6 *addr_in6;
786
787 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
788 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
789
790
791 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
792 allowance = 4096;
793 buf[0] = '\0';
794
795 for (i = 0; i < cm->addr_count; i++) {
796 addr = cm->addr[i];
797
798 switch(addr->ss_family) {
799 case AF_INET:
800 addr_in = (struct sockaddr_in *)addr;
801 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
802 break;
803 case AF_INET6:
804 addr_in6 = (struct sockaddr_in6 *)addr;
805 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
806 break;
807 default:
808 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
809 break;
810 }
811 allowance -= s;
812 if (allowance >= 0)
813 strcat(buf, buf0);
814 else {
815 allowance += s;
816 break;
817 }
818 }
819 return 4096 - allowance;
820}
821
David Teiglande7fd4172006-01-18 09:30:29 +0000822static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
823 char *buf)
824{
Andrew Morton27eccf42008-09-05 08:42:08 -0500825 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000826 struct node_attribute *nda =
827 container_of(a, struct node_attribute, attr);
828 return nda->show ? nda->show(nd, buf) : 0;
829}
830
831static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
832 const char *buf, size_t len)
833{
Andrew Morton27eccf42008-09-05 08:42:08 -0500834 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000835 struct node_attribute *nda =
836 container_of(a, struct node_attribute, attr);
837 return nda->store ? nda->store(nd, buf, len) : -EINVAL;
838}
839
David Teigland51409342008-07-31 09:31:53 -0500840static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000841{
842 return sprintf(buf, "%d\n", nd->nodeid);
843}
844
David Teigland51409342008-07-31 09:31:53 -0500845static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf,
846 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000847{
David Teigland60f98d12011-11-02 14:30:58 -0500848 uint32_t seq = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000849 nd->nodeid = simple_strtol(buf, NULL, 0);
David Teigland60f98d12011-11-02 14:30:58 -0500850 dlm_comm_seq(nd->nodeid, &seq);
851 nd->comm_seq = seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000852 return len;
853}
854
David Teigland51409342008-07-31 09:31:53 -0500855static ssize_t node_weight_read(struct dlm_node *nd, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000856{
857 return sprintf(buf, "%d\n", nd->weight);
858}
859
David Teigland51409342008-07-31 09:31:53 -0500860static ssize_t node_weight_write(struct dlm_node *nd, const char *buf,
861 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000862{
863 nd->weight = simple_strtol(buf, NULL, 0);
864 return len;
865}
866
867/*
868 * Functions for the dlm to get the info that's been configured
869 */
870
David Teigland51409342008-07-31 09:31:53 -0500871static struct dlm_space *get_space(char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000872{
Satyam Sharma3168b072007-05-08 09:18:58 +0100873 struct config_item *i;
874
David Teiglande7fd4172006-01-18 09:30:29 +0000875 if (!space_list)
876 return NULL;
Satyam Sharma3168b072007-05-08 09:18:58 +0100877
Joel Beckere6bd07a2007-07-06 23:33:17 -0700878 mutex_lock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3fe6c5c2007-07-04 16:37:16 +0530879 i = config_group_find_item(space_list, name);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700880 mutex_unlock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3168b072007-05-08 09:18:58 +0100881
Andrew Morton27eccf42008-09-05 08:42:08 -0500882 return config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000883}
884
David Teigland51409342008-07-31 09:31:53 -0500885static void put_space(struct dlm_space *sp)
David Teiglande7fd4172006-01-18 09:30:29 +0000886{
887 config_item_put(&sp->group.cg_item);
888}
889
David Teigland36b71a82012-07-26 12:44:30 -0500890static struct dlm_comm *get_comm(int nodeid)
David Teiglande7fd4172006-01-18 09:30:29 +0000891{
892 struct config_item *i;
David Teigland51409342008-07-31 09:31:53 -0500893 struct dlm_comm *cm = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000894 int found = 0;
895
896 if (!comm_list)
897 return NULL;
898
Joel Beckere6bd07a2007-07-06 23:33:17 -0700899 mutex_lock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000900
901 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
Andrew Morton27eccf42008-09-05 08:42:08 -0500902 cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000903
David Teigland36b71a82012-07-26 12:44:30 -0500904 if (cm->nodeid != nodeid)
905 continue;
906 found = 1;
907 config_item_get(i);
908 break;
David Teiglande7fd4172006-01-18 09:30:29 +0000909 }
Joel Beckere6bd07a2007-07-06 23:33:17 -0700910 mutex_unlock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000911
Satyam Sharma3168b072007-05-08 09:18:58 +0100912 if (!found)
David Teiglande7fd4172006-01-18 09:30:29 +0000913 cm = NULL;
914 return cm;
915}
916
David Teigland51409342008-07-31 09:31:53 -0500917static void put_comm(struct dlm_comm *cm)
David Teiglande7fd4172006-01-18 09:30:29 +0000918{
919 config_item_put(&cm->item);
920}
921
922/* caller must free mem */
David Teigland60f98d12011-11-02 14:30:58 -0500923int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
924 int *count_out)
David Teiglande7fd4172006-01-18 09:30:29 +0000925{
David Teigland51409342008-07-31 09:31:53 -0500926 struct dlm_space *sp;
927 struct dlm_node *nd;
David Teigland60f98d12011-11-02 14:30:58 -0500928 struct dlm_config_node *nodes, *node;
929 int rv, count;
David Teiglande7fd4172006-01-18 09:30:29 +0000930
931 sp = get_space(lsname);
932 if (!sp)
933 return -EEXIST;
934
David Teigland90135922006-01-20 08:47:07 +0000935 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000936 if (!sp->members_count) {
David Teiglandd44e0fc2008-03-18 14:22:11 -0500937 rv = -EINVAL;
938 printk(KERN_ERR "dlm: zero members_count\n");
David Teiglande7fd4172006-01-18 09:30:29 +0000939 goto out;
940 }
941
David Teigland60f98d12011-11-02 14:30:58 -0500942 count = sp->members_count;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500943
David Teigland60f98d12011-11-02 14:30:58 -0500944 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
945 if (!nodes) {
David Teiglande7fd4172006-01-18 09:30:29 +0000946 rv = -ENOMEM;
947 goto out;
948 }
949
David Teigland60f98d12011-11-02 14:30:58 -0500950 node = nodes;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500951 list_for_each_entry(nd, &sp->members, list) {
David Teigland60f98d12011-11-02 14:30:58 -0500952 node->nodeid = nd->nodeid;
953 node->weight = nd->weight;
954 node->new = nd->new;
955 node->comm_seq = nd->comm_seq;
956 node++;
957
958 nd->new = 0;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500959 }
David Teiglande7fd4172006-01-18 09:30:29 +0000960
David Teigland60f98d12011-11-02 14:30:58 -0500961 *count_out = count;
962 *nodes_out = nodes;
963 rv = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000964 out:
David Teigland90135922006-01-20 08:47:07 +0000965 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000966 put_space(sp);
967 return rv;
968}
969
David Teigland60f98d12011-11-02 14:30:58 -0500970int dlm_comm_seq(int nodeid, uint32_t *seq)
David Teiglande7fd4172006-01-18 09:30:29 +0000971{
David Teigland36b71a82012-07-26 12:44:30 -0500972 struct dlm_comm *cm = get_comm(nodeid);
David Teigland60f98d12011-11-02 14:30:58 -0500973 if (!cm)
974 return -EEXIST;
975 *seq = cm->seq;
976 put_comm(cm);
977 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000978}
979
David Teiglande7fd4172006-01-18 09:30:29 +0000980int dlm_our_nodeid(void)
981{
982 return local_comm ? local_comm->nodeid : 0;
983}
984
985/* num 0 is first addr, num 1 is second addr */
986int dlm_our_addr(struct sockaddr_storage *addr, int num)
987{
988 if (!local_comm)
989 return -1;
990 if (num + 1 > local_comm->addr_count)
991 return -1;
992 memcpy(addr, local_comm->addr[num], sizeof(*addr));
993 return 0;
994}
995
996/* Config file defaults */
997#define DEFAULT_TCP_PORT 21064
998#define DEFAULT_BUFFER_SIZE 4096
David Teiglande3853a92011-03-10 13:07:17 -0600999#define DEFAULT_RSBTBL_SIZE 1024
David Teiglande7fd4172006-01-18 09:30:29 +00001000#define DEFAULT_RECOVER_TIMER 5
1001#define DEFAULT_TOSS_SECS 10
1002#define DEFAULT_SCAN_SECS 5
David Teigland99fc6482007-01-09 09:44:01 -06001003#define DEFAULT_LOG_DEBUG 0
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +01001004#define DEFAULT_PROTOCOL 0
David Teigland3ae1acf2007-05-18 08:59:31 -05001005#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
David Teiglandc6ff6692011-03-28 14:17:26 -05001006#define DEFAULT_WAITWARN_US 0
David Teigland3881ac02011-07-07 14:05:03 -05001007#define DEFAULT_NEW_RSB_COUNT 128
David Teigland60f98d12011-11-02 14:30:58 -05001008#define DEFAULT_RECOVER_CALLBACKS 0
1009#define DEFAULT_CLUSTER_NAME ""
David Teiglande7fd4172006-01-18 09:30:29 +00001010
1011struct dlm_config_info dlm_config = {
David Teigland68c817a2007-01-09 09:41:48 -06001012 .ci_tcp_port = DEFAULT_TCP_PORT,
1013 .ci_buffer_size = DEFAULT_BUFFER_SIZE,
1014 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
David Teigland68c817a2007-01-09 09:41:48 -06001015 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
1016 .ci_toss_secs = DEFAULT_TOSS_SECS,
David Teigland99fc6482007-01-09 09:44:01 -06001017 .ci_scan_secs = DEFAULT_SCAN_SECS,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +01001018 .ci_log_debug = DEFAULT_LOG_DEBUG,
David Teigland3ae1acf2007-05-18 08:59:31 -05001019 .ci_protocol = DEFAULT_PROTOCOL,
David Teiglandc6ff6692011-03-28 14:17:26 -05001020 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
David Teigland3881ac02011-07-07 14:05:03 -05001021 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
David Teigland60f98d12011-11-02 14:30:58 -05001022 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
1023 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
1024 .ci_cluster_name = DEFAULT_CLUSTER_NAME
David Teiglande7fd4172006-01-18 09:30:29 +00001025};
1026