blob: a0387dd8b1f0f3abf10ab7e257f9af34d7886900 [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{
141 strncpy(dlm_config.ci_cluster_name, buf, DLM_LOCKSPACE_LEN);
142 strncpy(cl->cl_cluster_name, buf, DLM_LOCKSPACE_LEN);
143 return len;
144}
145
146static struct cluster_attribute cluster_attr_cluster_name = {
147 .attr = { .ca_owner = THIS_MODULE,
148 .ca_name = "cluster_name",
149 .ca_mode = S_IRUGO | S_IWUSR },
150 .show = cluster_cluster_name_read,
151 .store = cluster_cluster_name_write,
152};
153
David Teigland51409342008-07-31 09:31:53 -0500154static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
Harvey Harrison5416b702008-02-13 16:54:29 -0800155 int *info_field, int check_zero,
David Teiglandd2007782007-01-09 09:46:02 -0600156 const char *buf, size_t len)
157{
158 unsigned int x;
159
160 if (!capable(CAP_SYS_ADMIN))
161 return -EACCES;
162
163 x = simple_strtoul(buf, NULL, 0);
164
165 if (check_zero && !x)
166 return -EINVAL;
167
168 *cl_field = x;
169 *info_field = x;
170
171 return len;
172}
173
David Teiglandd2007782007-01-09 09:46:02 -0600174#define CLUSTER_ATTR(name, check_zero) \
David Teigland51409342008-07-31 09:31:53 -0500175static ssize_t name##_write(struct dlm_cluster *cl, const char *buf, size_t len) \
David Teiglandd2007782007-01-09 09:46:02 -0600176{ \
177 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
178 check_zero, buf, len); \
179} \
David Teigland51409342008-07-31 09:31:53 -0500180static ssize_t name##_read(struct dlm_cluster *cl, char *buf) \
David Teiglandd2007782007-01-09 09:46:02 -0600181{ \
182 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
183} \
184static struct cluster_attribute cluster_attr_##name = \
185__CONFIGFS_ATTR(name, 0644, name##_read, name##_write)
186
187CLUSTER_ATTR(tcp_port, 1);
188CLUSTER_ATTR(buffer_size, 1);
189CLUSTER_ATTR(rsbtbl_size, 1);
David Teiglandd2007782007-01-09 09:46:02 -0600190CLUSTER_ATTR(recover_timer, 1);
191CLUSTER_ATTR(toss_secs, 1);
192CLUSTER_ATTR(scan_secs, 1);
193CLUSTER_ATTR(log_debug, 0);
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100194CLUSTER_ATTR(protocol, 0);
David Teigland3ae1acf2007-05-18 08:59:31 -0500195CLUSTER_ATTR(timewarn_cs, 1);
David Teiglandc6ff6692011-03-28 14:17:26 -0500196CLUSTER_ATTR(waitwarn_us, 0);
David Teigland3881ac02011-07-07 14:05:03 -0500197CLUSTER_ATTR(new_rsb_count, 0);
David Teigland60f98d12011-11-02 14:30:58 -0500198CLUSTER_ATTR(recover_callbacks, 0);
David Teiglandd2007782007-01-09 09:46:02 -0600199
200static struct configfs_attribute *cluster_attrs[] = {
201 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port.attr,
202 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size.attr,
203 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size.attr,
David Teiglandd2007782007-01-09 09:46:02 -0600204 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer.attr,
205 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs.attr,
206 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs.attr,
207 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug.attr,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +0100208 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol.attr,
David Teigland3ae1acf2007-05-18 08:59:31 -0500209 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs.attr,
David Teiglandc6ff6692011-03-28 14:17:26 -0500210 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us.attr,
David Teigland3881ac02011-07-07 14:05:03 -0500211 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count.attr,
David Teigland60f98d12011-11-02 14:30:58 -0500212 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks.attr,
213 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name.attr,
David Teiglandd2007782007-01-09 09:46:02 -0600214 NULL,
215};
216
David Teiglande7fd4172006-01-18 09:30:29 +0000217enum {
218 COMM_ATTR_NODEID = 0,
219 COMM_ATTR_LOCAL,
220 COMM_ATTR_ADDR,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900221 COMM_ATTR_ADDR_LIST,
David Teiglande7fd4172006-01-18 09:30:29 +0000222};
223
224struct comm_attribute {
225 struct configfs_attribute attr;
David Teigland51409342008-07-31 09:31:53 -0500226 ssize_t (*show)(struct dlm_comm *, char *);
227 ssize_t (*store)(struct dlm_comm *, const char *, size_t);
David Teiglande7fd4172006-01-18 09:30:29 +0000228};
229
230static struct comm_attribute comm_attr_nodeid = {
231 .attr = { .ca_owner = THIS_MODULE,
232 .ca_name = "nodeid",
233 .ca_mode = S_IRUGO | S_IWUSR },
234 .show = comm_nodeid_read,
235 .store = comm_nodeid_write,
236};
237
238static struct comm_attribute comm_attr_local = {
239 .attr = { .ca_owner = THIS_MODULE,
240 .ca_name = "local",
241 .ca_mode = S_IRUGO | S_IWUSR },
242 .show = comm_local_read,
243 .store = comm_local_write,
244};
245
246static struct comm_attribute comm_attr_addr = {
247 .attr = { .ca_owner = THIS_MODULE,
248 .ca_name = "addr",
Masatake YAMATO55b32862011-06-30 21:37:10 +0900249 .ca_mode = S_IWUSR },
David Teiglande7fd4172006-01-18 09:30:29 +0000250 .store = comm_addr_write,
251};
252
Masatake YAMATO55b32862011-06-30 21:37:10 +0900253static struct comm_attribute comm_attr_addr_list = {
254 .attr = { .ca_owner = THIS_MODULE,
255 .ca_name = "addr_list",
256 .ca_mode = S_IRUGO },
257 .show = comm_addr_list_read,
258};
259
David Teiglande7fd4172006-01-18 09:30:29 +0000260static struct configfs_attribute *comm_attrs[] = {
261 [COMM_ATTR_NODEID] = &comm_attr_nodeid.attr,
262 [COMM_ATTR_LOCAL] = &comm_attr_local.attr,
263 [COMM_ATTR_ADDR] = &comm_attr_addr.attr,
Masatake YAMATO55b32862011-06-30 21:37:10 +0900264 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list.attr,
David Teiglande7fd4172006-01-18 09:30:29 +0000265 NULL,
266};
267
268enum {
269 NODE_ATTR_NODEID = 0,
270 NODE_ATTR_WEIGHT,
271};
272
273struct node_attribute {
274 struct configfs_attribute attr;
David Teigland51409342008-07-31 09:31:53 -0500275 ssize_t (*show)(struct dlm_node *, char *);
276 ssize_t (*store)(struct dlm_node *, const char *, size_t);
David Teiglande7fd4172006-01-18 09:30:29 +0000277};
278
279static struct node_attribute node_attr_nodeid = {
280 .attr = { .ca_owner = THIS_MODULE,
281 .ca_name = "nodeid",
282 .ca_mode = S_IRUGO | S_IWUSR },
283 .show = node_nodeid_read,
284 .store = node_nodeid_write,
285};
286
287static struct node_attribute node_attr_weight = {
288 .attr = { .ca_owner = THIS_MODULE,
289 .ca_name = "weight",
290 .ca_mode = S_IRUGO | S_IWUSR },
291 .show = node_weight_read,
292 .store = node_weight_write,
293};
294
295static struct configfs_attribute *node_attrs[] = {
296 [NODE_ATTR_NODEID] = &node_attr_nodeid.attr,
297 [NODE_ATTR_WEIGHT] = &node_attr_weight.attr,
298 NULL,
299};
300
David Teigland51409342008-07-31 09:31:53 -0500301struct dlm_clusters {
David Teiglande7fd4172006-01-18 09:30:29 +0000302 struct configfs_subsystem subsys;
303};
304
David Teigland51409342008-07-31 09:31:53 -0500305struct dlm_spaces {
David Teiglande7fd4172006-01-18 09:30:29 +0000306 struct config_group ss_group;
307};
308
David Teigland51409342008-07-31 09:31:53 -0500309struct dlm_space {
David Teiglande7fd4172006-01-18 09:30:29 +0000310 struct config_group group;
311 struct list_head members;
David Teigland90135922006-01-20 08:47:07 +0000312 struct mutex members_lock;
David Teiglande7fd4172006-01-18 09:30:29 +0000313 int members_count;
314};
315
David Teigland51409342008-07-31 09:31:53 -0500316struct dlm_comms {
David Teiglande7fd4172006-01-18 09:30:29 +0000317 struct config_group cs_group;
318};
319
David Teigland51409342008-07-31 09:31:53 -0500320struct dlm_comm {
David Teiglande7fd4172006-01-18 09:30:29 +0000321 struct config_item item;
David Teigland60f98d12011-11-02 14:30:58 -0500322 int seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000323 int nodeid;
324 int local;
325 int addr_count;
326 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
327};
328
David Teigland51409342008-07-31 09:31:53 -0500329struct dlm_nodes {
David Teiglande7fd4172006-01-18 09:30:29 +0000330 struct config_group ns_group;
331};
332
David Teigland51409342008-07-31 09:31:53 -0500333struct dlm_node {
David Teiglande7fd4172006-01-18 09:30:29 +0000334 struct config_item item;
335 struct list_head list; /* space->members */
336 int nodeid;
337 int weight;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500338 int new;
David Teigland60f98d12011-11-02 14:30:58 -0500339 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
David Teiglande7fd4172006-01-18 09:30:29 +0000340};
341
342static struct configfs_group_operations clusters_ops = {
343 .make_group = make_cluster,
344 .drop_item = drop_cluster,
345};
346
347static struct configfs_item_operations cluster_ops = {
348 .release = release_cluster,
David Teiglandd2007782007-01-09 09:46:02 -0600349 .show_attribute = show_cluster,
350 .store_attribute = store_cluster,
David Teiglande7fd4172006-01-18 09:30:29 +0000351};
352
353static struct configfs_group_operations spaces_ops = {
354 .make_group = make_space,
355 .drop_item = drop_space,
356};
357
358static struct configfs_item_operations space_ops = {
359 .release = release_space,
360};
361
362static struct configfs_group_operations comms_ops = {
363 .make_item = make_comm,
364 .drop_item = drop_comm,
365};
366
367static struct configfs_item_operations comm_ops = {
368 .release = release_comm,
369 .show_attribute = show_comm,
370 .store_attribute = store_comm,
371};
372
373static struct configfs_group_operations nodes_ops = {
374 .make_item = make_node,
375 .drop_item = drop_node,
376};
377
378static struct configfs_item_operations node_ops = {
379 .release = release_node,
380 .show_attribute = show_node,
381 .store_attribute = store_node,
382};
383
384static struct config_item_type clusters_type = {
385 .ct_group_ops = &clusters_ops,
386 .ct_owner = THIS_MODULE,
387};
388
389static struct config_item_type cluster_type = {
390 .ct_item_ops = &cluster_ops,
David Teiglandd2007782007-01-09 09:46:02 -0600391 .ct_attrs = cluster_attrs,
David Teiglande7fd4172006-01-18 09:30:29 +0000392 .ct_owner = THIS_MODULE,
393};
394
395static struct config_item_type spaces_type = {
396 .ct_group_ops = &spaces_ops,
397 .ct_owner = THIS_MODULE,
398};
399
400static struct config_item_type space_type = {
401 .ct_item_ops = &space_ops,
402 .ct_owner = THIS_MODULE,
403};
404
405static struct config_item_type comms_type = {
406 .ct_group_ops = &comms_ops,
407 .ct_owner = THIS_MODULE,
408};
409
410static struct config_item_type comm_type = {
411 .ct_item_ops = &comm_ops,
412 .ct_attrs = comm_attrs,
413 .ct_owner = THIS_MODULE,
414};
415
416static struct config_item_type nodes_type = {
417 .ct_group_ops = &nodes_ops,
418 .ct_owner = THIS_MODULE,
419};
420
421static struct config_item_type node_type = {
422 .ct_item_ops = &node_ops,
423 .ct_attrs = node_attrs,
424 .ct_owner = THIS_MODULE,
425};
426
Andrew Morton27eccf42008-09-05 08:42:08 -0500427static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000428{
David Teigland51409342008-07-31 09:31:53 -0500429 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
430 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000431}
432
Andrew Morton27eccf42008-09-05 08:42:08 -0500433static struct dlm_space *config_item_to_space(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000434{
David Teigland51409342008-07-31 09:31:53 -0500435 return i ? container_of(to_config_group(i), struct dlm_space, group) :
436 NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000437}
438
Andrew Morton27eccf42008-09-05 08:42:08 -0500439static struct dlm_comm *config_item_to_comm(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000440{
David Teigland51409342008-07-31 09:31:53 -0500441 return i ? container_of(i, struct dlm_comm, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000442}
443
Andrew Morton27eccf42008-09-05 08:42:08 -0500444static struct dlm_node *config_item_to_node(struct config_item *i)
David Teiglande7fd4172006-01-18 09:30:29 +0000445{
David Teigland51409342008-07-31 09:31:53 -0500446 return i ? container_of(i, struct dlm_node, item) : NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000447}
448
Joel Beckerf89ab862008-07-17 14:53:48 -0700449static struct config_group *make_cluster(struct config_group *g,
450 const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000451{
David Teigland51409342008-07-31 09:31:53 -0500452 struct dlm_cluster *cl = NULL;
453 struct dlm_spaces *sps = NULL;
454 struct dlm_comms *cms = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000455 void *gps = NULL;
456
David Teigland573c24c2009-11-30 16:34:43 -0600457 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
458 gps = kcalloc(3, sizeof(struct config_group *), GFP_NOFS);
459 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
460 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000461
462 if (!cl || !gps || !sps || !cms)
463 goto fail;
464
465 config_group_init_type_name(&cl->group, name, &cluster_type);
466 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
467 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
468
469 cl->group.default_groups = gps;
470 cl->group.default_groups[0] = &sps->ss_group;
471 cl->group.default_groups[1] = &cms->cs_group;
472 cl->group.default_groups[2] = NULL;
473
David Teiglandd2007782007-01-09 09:46:02 -0600474 cl->cl_tcp_port = dlm_config.ci_tcp_port;
475 cl->cl_buffer_size = dlm_config.ci_buffer_size;
476 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
David Teiglandd2007782007-01-09 09:46:02 -0600477 cl->cl_recover_timer = dlm_config.ci_recover_timer;
478 cl->cl_toss_secs = dlm_config.ci_toss_secs;
479 cl->cl_scan_secs = dlm_config.ci_scan_secs;
480 cl->cl_log_debug = dlm_config.ci_log_debug;
David Teigland0b7cac02007-05-29 08:47:51 -0500481 cl->cl_protocol = dlm_config.ci_protocol;
David Teigland84d8cd62007-05-29 08:44:23 -0500482 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
David Teiglandc6ff6692011-03-28 14:17:26 -0500483 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
David Teigland3881ac02011-07-07 14:05:03 -0500484 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
David Teigland60f98d12011-11-02 14:30:58 -0500485 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
486 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
487 DLM_LOCKSPACE_LEN);
David Teiglandd2007782007-01-09 09:46:02 -0600488
David Teiglande7fd4172006-01-18 09:30:29 +0000489 space_list = &sps->ss_group;
490 comm_list = &cms->cs_group;
Joel Beckerf89ab862008-07-17 14:53:48 -0700491 return &cl->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000492
493 fail:
494 kfree(cl);
495 kfree(gps);
496 kfree(sps);
497 kfree(cms);
Joel Beckera6795e92008-07-17 15:21:29 -0700498 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000499}
500
501static void drop_cluster(struct config_group *g, struct config_item *i)
502{
Andrew Morton27eccf42008-09-05 08:42:08 -0500503 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000504 struct config_item *tmp;
505 int j;
506
507 for (j = 0; cl->group.default_groups[j]; j++) {
508 tmp = &cl->group.default_groups[j]->cg_item;
509 cl->group.default_groups[j] = NULL;
510 config_item_put(tmp);
511 }
512
513 space_list = NULL;
514 comm_list = NULL;
515
516 config_item_put(i);
517}
518
519static void release_cluster(struct config_item *i)
520{
Andrew Morton27eccf42008-09-05 08:42:08 -0500521 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000522 kfree(cl->group.default_groups);
523 kfree(cl);
524}
525
Joel Beckerf89ab862008-07-17 14:53:48 -0700526static struct config_group *make_space(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000527{
David Teigland51409342008-07-31 09:31:53 -0500528 struct dlm_space *sp = NULL;
529 struct dlm_nodes *nds = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000530 void *gps = NULL;
531
David Teigland573c24c2009-11-30 16:34:43 -0600532 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
533 gps = kcalloc(2, sizeof(struct config_group *), GFP_NOFS);
534 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000535
536 if (!sp || !gps || !nds)
537 goto fail;
538
539 config_group_init_type_name(&sp->group, name, &space_type);
540 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
541
542 sp->group.default_groups = gps;
543 sp->group.default_groups[0] = &nds->ns_group;
544 sp->group.default_groups[1] = NULL;
545
546 INIT_LIST_HEAD(&sp->members);
David Teigland90135922006-01-20 08:47:07 +0000547 mutex_init(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000548 sp->members_count = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700549 return &sp->group;
David Teiglande7fd4172006-01-18 09:30:29 +0000550
551 fail:
552 kfree(sp);
553 kfree(gps);
554 kfree(nds);
Joel Beckera6795e92008-07-17 15:21:29 -0700555 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000556}
557
558static void drop_space(struct config_group *g, struct config_item *i)
559{
Andrew Morton27eccf42008-09-05 08:42:08 -0500560 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000561 struct config_item *tmp;
562 int j;
563
564 /* assert list_empty(&sp->members) */
565
566 for (j = 0; sp->group.default_groups[j]; j++) {
567 tmp = &sp->group.default_groups[j]->cg_item;
568 sp->group.default_groups[j] = NULL;
569 config_item_put(tmp);
570 }
571
572 config_item_put(i);
573}
574
575static void release_space(struct config_item *i)
576{
Andrew Morton27eccf42008-09-05 08:42:08 -0500577 struct dlm_space *sp = config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000578 kfree(sp->group.default_groups);
579 kfree(sp);
580}
581
Joel Beckerf89ab862008-07-17 14:53:48 -0700582static struct config_item *make_comm(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000583{
David Teigland51409342008-07-31 09:31:53 -0500584 struct dlm_comm *cm;
David Teiglande7fd4172006-01-18 09:30:29 +0000585
David Teigland573c24c2009-11-30 16:34:43 -0600586 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000587 if (!cm)
Joel Beckera6795e92008-07-17 15:21:29 -0700588 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000589
590 config_item_init_type_name(&cm->item, name, &comm_type);
David Teigland60f98d12011-11-02 14:30:58 -0500591
592 cm->seq = dlm_comm_count++;
593 if (!cm->seq)
594 cm->seq = dlm_comm_count++;
595
David Teiglande7fd4172006-01-18 09:30:29 +0000596 cm->nodeid = -1;
597 cm->local = 0;
598 cm->addr_count = 0;
Joel Beckerf89ab862008-07-17 14:53:48 -0700599 return &cm->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000600}
601
602static void drop_comm(struct config_group *g, struct config_item *i)
603{
Andrew Morton27eccf42008-09-05 08:42:08 -0500604 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000605 if (local_comm == cm)
606 local_comm = NULL;
David Teigland1c032c02006-04-28 10:50:41 -0400607 dlm_lowcomms_close(cm->nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +0000608 while (cm->addr_count--)
609 kfree(cm->addr[cm->addr_count]);
610 config_item_put(i);
611}
612
613static void release_comm(struct config_item *i)
614{
Andrew Morton27eccf42008-09-05 08:42:08 -0500615 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000616 kfree(cm);
617}
618
Joel Beckerf89ab862008-07-17 14:53:48 -0700619static struct config_item *make_node(struct config_group *g, const char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000620{
Andrew Morton27eccf42008-09-05 08:42:08 -0500621 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
David Teigland51409342008-07-31 09:31:53 -0500622 struct dlm_node *nd;
David Teiglande7fd4172006-01-18 09:30:29 +0000623
David Teigland573c24c2009-11-30 16:34:43 -0600624 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000625 if (!nd)
Joel Beckera6795e92008-07-17 15:21:29 -0700626 return ERR_PTR(-ENOMEM);
David Teiglande7fd4172006-01-18 09:30:29 +0000627
628 config_item_init_type_name(&nd->item, name, &node_type);
629 nd->nodeid = -1;
630 nd->weight = 1; /* default weight of 1 if none is set */
David Teiglandd44e0fc2008-03-18 14:22:11 -0500631 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
David Teiglande7fd4172006-01-18 09:30:29 +0000632
David Teigland90135922006-01-20 08:47:07 +0000633 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000634 list_add(&nd->list, &sp->members);
635 sp->members_count++;
David Teigland90135922006-01-20 08:47:07 +0000636 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000637
Joel Beckerf89ab862008-07-17 14:53:48 -0700638 return &nd->item;
David Teiglande7fd4172006-01-18 09:30:29 +0000639}
640
641static void drop_node(struct config_group *g, struct config_item *i)
642{
Andrew Morton27eccf42008-09-05 08:42:08 -0500643 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
644 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000645
David Teigland90135922006-01-20 08:47:07 +0000646 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000647 list_del(&nd->list);
648 sp->members_count--;
David Teigland90135922006-01-20 08:47:07 +0000649 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000650
651 config_item_put(i);
652}
653
654static void release_node(struct config_item *i)
655{
Andrew Morton27eccf42008-09-05 08:42:08 -0500656 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000657 kfree(nd);
658}
659
David Teigland51409342008-07-31 09:31:53 -0500660static struct dlm_clusters clusters_root = {
David Teiglande7fd4172006-01-18 09:30:29 +0000661 .subsys = {
662 .su_group = {
663 .cg_item = {
664 .ci_namebuf = "dlm",
665 .ci_type = &clusters_type,
666 },
667 },
668 },
669};
670
Denis Cheng30727172008-02-02 01:53:46 +0800671int __init dlm_config_init(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000672{
673 config_group_init(&clusters_root.subsys.su_group);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700674 mutex_init(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000675 return configfs_register_subsystem(&clusters_root.subsys);
676}
677
678void dlm_config_exit(void)
679{
680 configfs_unregister_subsystem(&clusters_root.subsys);
681}
682
683/*
684 * Functions for user space to read/write attributes
685 */
686
David Teiglandd2007782007-01-09 09:46:02 -0600687static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
688 char *buf)
689{
Andrew Morton27eccf42008-09-05 08:42:08 -0500690 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglandd2007782007-01-09 09:46:02 -0600691 struct cluster_attribute *cla =
692 container_of(a, struct cluster_attribute, attr);
693 return cla->show ? cla->show(cl, buf) : 0;
694}
695
696static ssize_t store_cluster(struct config_item *i,
697 struct configfs_attribute *a,
698 const char *buf, size_t len)
699{
Andrew Morton27eccf42008-09-05 08:42:08 -0500700 struct dlm_cluster *cl = config_item_to_cluster(i);
David Teiglandd2007782007-01-09 09:46:02 -0600701 struct cluster_attribute *cla =
702 container_of(a, struct cluster_attribute, attr);
703 return cla->store ? cla->store(cl, buf, len) : -EINVAL;
704}
705
David Teiglande7fd4172006-01-18 09:30:29 +0000706static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
707 char *buf)
708{
Andrew Morton27eccf42008-09-05 08:42:08 -0500709 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000710 struct comm_attribute *cma =
711 container_of(a, struct comm_attribute, attr);
712 return cma->show ? cma->show(cm, buf) : 0;
713}
714
715static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
716 const char *buf, size_t len)
717{
Andrew Morton27eccf42008-09-05 08:42:08 -0500718 struct dlm_comm *cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000719 struct comm_attribute *cma =
720 container_of(a, struct comm_attribute, attr);
721 return cma->store ? cma->store(cm, buf, len) : -EINVAL;
722}
723
David Teigland51409342008-07-31 09:31:53 -0500724static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000725{
726 return sprintf(buf, "%d\n", cm->nodeid);
727}
728
David Teigland51409342008-07-31 09:31:53 -0500729static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf,
730 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000731{
732 cm->nodeid = simple_strtol(buf, NULL, 0);
733 return len;
734}
735
David Teigland51409342008-07-31 09:31:53 -0500736static ssize_t comm_local_read(struct dlm_comm *cm, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000737{
738 return sprintf(buf, "%d\n", cm->local);
739}
740
David Teigland51409342008-07-31 09:31:53 -0500741static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf,
742 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000743{
744 cm->local= simple_strtol(buf, NULL, 0);
745 if (cm->local && !local_comm)
746 local_comm = cm;
747 return len;
748}
749
David Teigland51409342008-07-31 09:31:53 -0500750static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000751{
752 struct sockaddr_storage *addr;
David Teigland36b71a82012-07-26 12:44:30 -0500753 int rv;
David Teiglande7fd4172006-01-18 09:30:29 +0000754
755 if (len != sizeof(struct sockaddr_storage))
756 return -EINVAL;
757
758 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
759 return -ENOSPC;
760
David Teigland573c24c2009-11-30 16:34:43 -0600761 addr = kzalloc(sizeof(*addr), GFP_NOFS);
David Teiglande7fd4172006-01-18 09:30:29 +0000762 if (!addr)
763 return -ENOMEM;
764
765 memcpy(addr, buf, len);
David Teigland36b71a82012-07-26 12:44:30 -0500766
767 rv = dlm_lowcomms_addr(cm->nodeid, addr, len);
768 if (rv) {
769 kfree(addr);
770 return rv;
771 }
772
David Teiglande7fd4172006-01-18 09:30:29 +0000773 cm->addr[cm->addr_count++] = addr;
774 return len;
775}
776
Masatake YAMATO55b32862011-06-30 21:37:10 +0900777static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf)
778{
779 ssize_t s;
780 ssize_t allowance;
781 int i;
782 struct sockaddr_storage *addr;
783 struct sockaddr_in *addr_in;
784 struct sockaddr_in6 *addr_in6;
785
786 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
787 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
788
789
790 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
791 allowance = 4096;
792 buf[0] = '\0';
793
794 for (i = 0; i < cm->addr_count; i++) {
795 addr = cm->addr[i];
796
797 switch(addr->ss_family) {
798 case AF_INET:
799 addr_in = (struct sockaddr_in *)addr;
800 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
801 break;
802 case AF_INET6:
803 addr_in6 = (struct sockaddr_in6 *)addr;
804 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
805 break;
806 default:
807 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
808 break;
809 }
810 allowance -= s;
811 if (allowance >= 0)
812 strcat(buf, buf0);
813 else {
814 allowance += s;
815 break;
816 }
817 }
818 return 4096 - allowance;
819}
820
David Teiglande7fd4172006-01-18 09:30:29 +0000821static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
822 char *buf)
823{
Andrew Morton27eccf42008-09-05 08:42:08 -0500824 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000825 struct node_attribute *nda =
826 container_of(a, struct node_attribute, attr);
827 return nda->show ? nda->show(nd, buf) : 0;
828}
829
830static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
831 const char *buf, size_t len)
832{
Andrew Morton27eccf42008-09-05 08:42:08 -0500833 struct dlm_node *nd = config_item_to_node(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000834 struct node_attribute *nda =
835 container_of(a, struct node_attribute, attr);
836 return nda->store ? nda->store(nd, buf, len) : -EINVAL;
837}
838
David Teigland51409342008-07-31 09:31:53 -0500839static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000840{
841 return sprintf(buf, "%d\n", nd->nodeid);
842}
843
David Teigland51409342008-07-31 09:31:53 -0500844static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf,
845 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000846{
David Teigland60f98d12011-11-02 14:30:58 -0500847 uint32_t seq = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000848 nd->nodeid = simple_strtol(buf, NULL, 0);
David Teigland60f98d12011-11-02 14:30:58 -0500849 dlm_comm_seq(nd->nodeid, &seq);
850 nd->comm_seq = seq;
David Teiglande7fd4172006-01-18 09:30:29 +0000851 return len;
852}
853
David Teigland51409342008-07-31 09:31:53 -0500854static ssize_t node_weight_read(struct dlm_node *nd, char *buf)
David Teiglande7fd4172006-01-18 09:30:29 +0000855{
856 return sprintf(buf, "%d\n", nd->weight);
857}
858
David Teigland51409342008-07-31 09:31:53 -0500859static ssize_t node_weight_write(struct dlm_node *nd, const char *buf,
860 size_t len)
David Teiglande7fd4172006-01-18 09:30:29 +0000861{
862 nd->weight = simple_strtol(buf, NULL, 0);
863 return len;
864}
865
866/*
867 * Functions for the dlm to get the info that's been configured
868 */
869
David Teigland51409342008-07-31 09:31:53 -0500870static struct dlm_space *get_space(char *name)
David Teiglande7fd4172006-01-18 09:30:29 +0000871{
Satyam Sharma3168b072007-05-08 09:18:58 +0100872 struct config_item *i;
873
David Teiglande7fd4172006-01-18 09:30:29 +0000874 if (!space_list)
875 return NULL;
Satyam Sharma3168b072007-05-08 09:18:58 +0100876
Joel Beckere6bd07a2007-07-06 23:33:17 -0700877 mutex_lock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3fe6c5c2007-07-04 16:37:16 +0530878 i = config_group_find_item(space_list, name);
Joel Beckere6bd07a2007-07-06 23:33:17 -0700879 mutex_unlock(&space_list->cg_subsys->su_mutex);
Satyam Sharma3168b072007-05-08 09:18:58 +0100880
Andrew Morton27eccf42008-09-05 08:42:08 -0500881 return config_item_to_space(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000882}
883
David Teigland51409342008-07-31 09:31:53 -0500884static void put_space(struct dlm_space *sp)
David Teiglande7fd4172006-01-18 09:30:29 +0000885{
886 config_item_put(&sp->group.cg_item);
887}
888
David Teigland36b71a82012-07-26 12:44:30 -0500889static struct dlm_comm *get_comm(int nodeid)
David Teiglande7fd4172006-01-18 09:30:29 +0000890{
891 struct config_item *i;
David Teigland51409342008-07-31 09:31:53 -0500892 struct dlm_comm *cm = NULL;
David Teiglande7fd4172006-01-18 09:30:29 +0000893 int found = 0;
894
895 if (!comm_list)
896 return NULL;
897
Joel Beckere6bd07a2007-07-06 23:33:17 -0700898 mutex_lock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000899
900 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
Andrew Morton27eccf42008-09-05 08:42:08 -0500901 cm = config_item_to_comm(i);
David Teiglande7fd4172006-01-18 09:30:29 +0000902
David Teigland36b71a82012-07-26 12:44:30 -0500903 if (cm->nodeid != nodeid)
904 continue;
905 found = 1;
906 config_item_get(i);
907 break;
David Teiglande7fd4172006-01-18 09:30:29 +0000908 }
Joel Beckere6bd07a2007-07-06 23:33:17 -0700909 mutex_unlock(&clusters_root.subsys.su_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +0000910
Satyam Sharma3168b072007-05-08 09:18:58 +0100911 if (!found)
David Teiglande7fd4172006-01-18 09:30:29 +0000912 cm = NULL;
913 return cm;
914}
915
David Teigland51409342008-07-31 09:31:53 -0500916static void put_comm(struct dlm_comm *cm)
David Teiglande7fd4172006-01-18 09:30:29 +0000917{
918 config_item_put(&cm->item);
919}
920
921/* caller must free mem */
David Teigland60f98d12011-11-02 14:30:58 -0500922int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
923 int *count_out)
David Teiglande7fd4172006-01-18 09:30:29 +0000924{
David Teigland51409342008-07-31 09:31:53 -0500925 struct dlm_space *sp;
926 struct dlm_node *nd;
David Teigland60f98d12011-11-02 14:30:58 -0500927 struct dlm_config_node *nodes, *node;
928 int rv, count;
David Teiglande7fd4172006-01-18 09:30:29 +0000929
930 sp = get_space(lsname);
931 if (!sp)
932 return -EEXIST;
933
David Teigland90135922006-01-20 08:47:07 +0000934 mutex_lock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000935 if (!sp->members_count) {
David Teiglandd44e0fc2008-03-18 14:22:11 -0500936 rv = -EINVAL;
937 printk(KERN_ERR "dlm: zero members_count\n");
David Teiglande7fd4172006-01-18 09:30:29 +0000938 goto out;
939 }
940
David Teigland60f98d12011-11-02 14:30:58 -0500941 count = sp->members_count;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500942
David Teigland60f98d12011-11-02 14:30:58 -0500943 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
944 if (!nodes) {
David Teiglande7fd4172006-01-18 09:30:29 +0000945 rv = -ENOMEM;
946 goto out;
947 }
948
David Teigland60f98d12011-11-02 14:30:58 -0500949 node = nodes;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500950 list_for_each_entry(nd, &sp->members, list) {
David Teigland60f98d12011-11-02 14:30:58 -0500951 node->nodeid = nd->nodeid;
952 node->weight = nd->weight;
953 node->new = nd->new;
954 node->comm_seq = nd->comm_seq;
955 node++;
956
957 nd->new = 0;
David Teiglandd44e0fc2008-03-18 14:22:11 -0500958 }
David Teiglande7fd4172006-01-18 09:30:29 +0000959
David Teigland60f98d12011-11-02 14:30:58 -0500960 *count_out = count;
961 *nodes_out = nodes;
962 rv = 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000963 out:
David Teigland90135922006-01-20 08:47:07 +0000964 mutex_unlock(&sp->members_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000965 put_space(sp);
966 return rv;
967}
968
David Teigland60f98d12011-11-02 14:30:58 -0500969int dlm_comm_seq(int nodeid, uint32_t *seq)
David Teiglande7fd4172006-01-18 09:30:29 +0000970{
David Teigland36b71a82012-07-26 12:44:30 -0500971 struct dlm_comm *cm = get_comm(nodeid);
David Teigland60f98d12011-11-02 14:30:58 -0500972 if (!cm)
973 return -EEXIST;
974 *seq = cm->seq;
975 put_comm(cm);
976 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000977}
978
David Teiglande7fd4172006-01-18 09:30:29 +0000979int dlm_our_nodeid(void)
980{
981 return local_comm ? local_comm->nodeid : 0;
982}
983
984/* num 0 is first addr, num 1 is second addr */
985int dlm_our_addr(struct sockaddr_storage *addr, int num)
986{
987 if (!local_comm)
988 return -1;
989 if (num + 1 > local_comm->addr_count)
990 return -1;
991 memcpy(addr, local_comm->addr[num], sizeof(*addr));
992 return 0;
993}
994
995/* Config file defaults */
996#define DEFAULT_TCP_PORT 21064
997#define DEFAULT_BUFFER_SIZE 4096
David Teiglande3853a92011-03-10 13:07:17 -0600998#define DEFAULT_RSBTBL_SIZE 1024
David Teiglande7fd4172006-01-18 09:30:29 +0000999#define DEFAULT_RECOVER_TIMER 5
1000#define DEFAULT_TOSS_SECS 10
1001#define DEFAULT_SCAN_SECS 5
David Teigland99fc6482007-01-09 09:44:01 -06001002#define DEFAULT_LOG_DEBUG 0
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +01001003#define DEFAULT_PROTOCOL 0
David Teigland3ae1acf2007-05-18 08:59:31 -05001004#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
David Teiglandc6ff6692011-03-28 14:17:26 -05001005#define DEFAULT_WAITWARN_US 0
David Teigland3881ac02011-07-07 14:05:03 -05001006#define DEFAULT_NEW_RSB_COUNT 128
David Teigland60f98d12011-11-02 14:30:58 -05001007#define DEFAULT_RECOVER_CALLBACKS 0
1008#define DEFAULT_CLUSTER_NAME ""
David Teiglande7fd4172006-01-18 09:30:29 +00001009
1010struct dlm_config_info dlm_config = {
David Teigland68c817a2007-01-09 09:41:48 -06001011 .ci_tcp_port = DEFAULT_TCP_PORT,
1012 .ci_buffer_size = DEFAULT_BUFFER_SIZE,
1013 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
David Teigland68c817a2007-01-09 09:41:48 -06001014 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
1015 .ci_toss_secs = DEFAULT_TOSS_SECS,
David Teigland99fc6482007-01-09 09:44:01 -06001016 .ci_scan_secs = DEFAULT_SCAN_SECS,
Patrick Caulfield6ed7257b2007-04-17 15:39:57 +01001017 .ci_log_debug = DEFAULT_LOG_DEBUG,
David Teigland3ae1acf2007-05-18 08:59:31 -05001018 .ci_protocol = DEFAULT_PROTOCOL,
David Teiglandc6ff6692011-03-28 14:17:26 -05001019 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
David Teigland3881ac02011-07-07 14:05:03 -05001020 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
David Teigland60f98d12011-11-02 14:30:58 -05001021 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
1022 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
1023 .ci_cluster_name = DEFAULT_CLUSTER_NAME
David Teiglande7fd4172006-01-18 09:30:29 +00001024};
1025