Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/******************************************************************************
3*******************************************************************************
4**
5** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
6** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
7**
8**
9*******************************************************************************
10******************************************************************************/
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/configfs.h>
15#include <linux/slab.h>
16#include <linux/in.h>
17#include <linux/in6.h>
18#include <linux/dlmconstants.h>
19#include <net/ipv6.h>
20#include <net/sock.h>
21
22#include "config.h"
23#include "midcomms.h"
24#include "lowcomms.h"
25
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
31 * /config/dlm/<cluster>/comms/<comm>/addr (write only)
32 * /config/dlm/<cluster>/comms/<comm>/addr_list (read only)
33 * 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;
38static struct dlm_comm *local_comm;
39static uint32_t dlm_comm_count;
40
41struct dlm_clusters;
42struct dlm_cluster;
43struct dlm_spaces;
44struct dlm_space;
45struct dlm_comms;
46struct dlm_comm;
47struct dlm_nodes;
48struct dlm_node;
49
50static struct config_group *make_cluster(struct config_group *, const char *);
51static void drop_cluster(struct config_group *, struct config_item *);
52static void release_cluster(struct config_item *);
53static struct config_group *make_space(struct config_group *, const char *);
54static void drop_space(struct config_group *, struct config_item *);
55static void release_space(struct config_item *);
56static struct config_item *make_comm(struct config_group *, const char *);
57static void drop_comm(struct config_group *, struct config_item *);
58static void release_comm(struct config_item *);
59static struct config_item *make_node(struct config_group *, const char *);
60static void drop_node(struct config_group *, struct config_item *);
61static void release_node(struct config_item *);
62
63static struct configfs_attribute *comm_attrs[];
64static struct configfs_attribute *node_attrs[];
65
66struct dlm_cluster {
67 struct config_group group;
68 unsigned int cl_tcp_port;
69 unsigned int cl_buffer_size;
70 unsigned int cl_rsbtbl_size;
71 unsigned int cl_recover_timer;
72 unsigned int cl_toss_secs;
73 unsigned int cl_scan_secs;
74 unsigned int cl_log_debug;
75 unsigned int cl_log_info;
76 unsigned int cl_protocol;
77 unsigned int cl_mark;
78 unsigned int cl_new_rsb_count;
79 unsigned int cl_recover_callbacks;
80 char cl_cluster_name[DLM_LOCKSPACE_LEN];
81
82 struct dlm_spaces *sps;
83 struct dlm_comms *cms;
84};
85
86static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
87{
88 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
89 NULL;
90}
91
92enum {
93 CLUSTER_ATTR_TCP_PORT = 0,
94 CLUSTER_ATTR_BUFFER_SIZE,
95 CLUSTER_ATTR_RSBTBL_SIZE,
96 CLUSTER_ATTR_RECOVER_TIMER,
97 CLUSTER_ATTR_TOSS_SECS,
98 CLUSTER_ATTR_SCAN_SECS,
99 CLUSTER_ATTR_LOG_DEBUG,
100 CLUSTER_ATTR_LOG_INFO,
101 CLUSTER_ATTR_PROTOCOL,
102 CLUSTER_ATTR_MARK,
103 CLUSTER_ATTR_NEW_RSB_COUNT,
104 CLUSTER_ATTR_RECOVER_CALLBACKS,
105 CLUSTER_ATTR_CLUSTER_NAME,
106};
107
108static ssize_t cluster_cluster_name_show(struct config_item *item, char *buf)
109{
110 struct dlm_cluster *cl = config_item_to_cluster(item);
111 return sprintf(buf, "%s\n", cl->cl_cluster_name);
112}
113
114static ssize_t cluster_cluster_name_store(struct config_item *item,
115 const char *buf, size_t len)
116{
117 struct dlm_cluster *cl = config_item_to_cluster(item);
118
119 strscpy(dlm_config.ci_cluster_name, buf,
120 sizeof(dlm_config.ci_cluster_name));
121 strscpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
122 return len;
123}
124
125CONFIGFS_ATTR(cluster_, cluster_name);
126
127static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
128 int *info_field, int (*check_cb)(unsigned int x),
129 const char *buf, size_t len)
130{
131 unsigned int x;
132 int rc;
133
134 if (!capable(CAP_SYS_ADMIN))
135 return -EPERM;
136 rc = kstrtouint(buf, 0, &x);
137 if (rc)
138 return rc;
139
140 if (check_cb) {
141 rc = check_cb(x);
142 if (rc)
143 return rc;
144 }
145
146 *cl_field = x;
147 *info_field = x;
148
149 return len;
150}
151
152#define CLUSTER_ATTR(name, check_cb) \
153static ssize_t cluster_##name##_store(struct config_item *item, \
154 const char *buf, size_t len) \
155{ \
156 struct dlm_cluster *cl = config_item_to_cluster(item); \
157 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
158 check_cb, buf, len); \
159} \
160static ssize_t cluster_##name##_show(struct config_item *item, char *buf) \
161{ \
162 struct dlm_cluster *cl = config_item_to_cluster(item); \
163 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
164} \
165CONFIGFS_ATTR(cluster_, name);
166
167static int dlm_check_protocol_and_dlm_running(unsigned int x)
168{
169 switch (x) {
170 case 0:
171 /* TCP */
172 break;
173 case 1:
174 /* SCTP */
175 break;
176 default:
177 return -EINVAL;
178 }
179
180 if (dlm_lowcomms_is_running())
181 return -EBUSY;
182
183 return 0;
184}
185
186static int dlm_check_zero_and_dlm_running(unsigned int x)
187{
188 if (!x)
189 return -EINVAL;
190
191 if (dlm_lowcomms_is_running())
192 return -EBUSY;
193
194 return 0;
195}
196
197static int dlm_check_zero(unsigned int x)
198{
199 if (!x)
200 return -EINVAL;
201
202 return 0;
203}
204
205static int dlm_check_buffer_size(unsigned int x)
206{
207 if (x < DLM_MAX_SOCKET_BUFSIZE)
208 return -EINVAL;
209
210 return 0;
211}
212
213CLUSTER_ATTR(tcp_port, dlm_check_zero_and_dlm_running);
214CLUSTER_ATTR(buffer_size, dlm_check_buffer_size);
215CLUSTER_ATTR(rsbtbl_size, dlm_check_zero);
216CLUSTER_ATTR(recover_timer, dlm_check_zero);
217CLUSTER_ATTR(toss_secs, dlm_check_zero);
218CLUSTER_ATTR(scan_secs, dlm_check_zero);
219CLUSTER_ATTR(log_debug, NULL);
220CLUSTER_ATTR(log_info, NULL);
221CLUSTER_ATTR(protocol, dlm_check_protocol_and_dlm_running);
222CLUSTER_ATTR(mark, NULL);
223CLUSTER_ATTR(new_rsb_count, NULL);
224CLUSTER_ATTR(recover_callbacks, NULL);
225
226static struct configfs_attribute *cluster_attrs[] = {
227 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port,
228 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size,
229 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size,
230 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer,
231 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs,
232 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs,
233 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug,
234 [CLUSTER_ATTR_LOG_INFO] = &cluster_attr_log_info,
235 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol,
236 [CLUSTER_ATTR_MARK] = &cluster_attr_mark,
237 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count,
238 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks,
239 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name,
240 NULL,
241};
242
243enum {
244 COMM_ATTR_NODEID = 0,
245 COMM_ATTR_LOCAL,
246 COMM_ATTR_ADDR,
247 COMM_ATTR_ADDR_LIST,
248 COMM_ATTR_MARK,
249};
250
251enum {
252 NODE_ATTR_NODEID = 0,
253 NODE_ATTR_WEIGHT,
254};
255
256struct dlm_clusters {
257 struct configfs_subsystem subsys;
258};
259
260struct dlm_spaces {
261 struct config_group ss_group;
262};
263
264struct dlm_space {
265 struct config_group group;
266 struct list_head members;
267 struct mutex members_lock;
268 int members_count;
269 struct dlm_nodes *nds;
270};
271
272struct dlm_comms {
273 struct config_group cs_group;
274};
275
276struct dlm_comm {
277 struct config_item item;
278 int seq;
279 int nodeid;
280 int local;
281 int addr_count;
282 unsigned int mark;
283 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
284};
285
286struct dlm_nodes {
287 struct config_group ns_group;
288};
289
290struct dlm_node {
291 struct config_item item;
292 struct list_head list; /* space->members */
293 int nodeid;
294 int weight;
295 int new;
296 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
297};
298
299static struct configfs_group_operations clusters_ops = {
300 .make_group = make_cluster,
301 .drop_item = drop_cluster,
302};
303
304static struct configfs_item_operations cluster_ops = {
305 .release = release_cluster,
306};
307
308static struct configfs_group_operations spaces_ops = {
309 .make_group = make_space,
310 .drop_item = drop_space,
311};
312
313static struct configfs_item_operations space_ops = {
314 .release = release_space,
315};
316
317static struct configfs_group_operations comms_ops = {
318 .make_item = make_comm,
319 .drop_item = drop_comm,
320};
321
322static struct configfs_item_operations comm_ops = {
323 .release = release_comm,
324};
325
326static struct configfs_group_operations nodes_ops = {
327 .make_item = make_node,
328 .drop_item = drop_node,
329};
330
331static struct configfs_item_operations node_ops = {
332 .release = release_node,
333};
334
335static const struct config_item_type clusters_type = {
336 .ct_group_ops = &clusters_ops,
337 .ct_owner = THIS_MODULE,
338};
339
340static const struct config_item_type cluster_type = {
341 .ct_item_ops = &cluster_ops,
342 .ct_attrs = cluster_attrs,
343 .ct_owner = THIS_MODULE,
344};
345
346static const struct config_item_type spaces_type = {
347 .ct_group_ops = &spaces_ops,
348 .ct_owner = THIS_MODULE,
349};
350
351static const struct config_item_type space_type = {
352 .ct_item_ops = &space_ops,
353 .ct_owner = THIS_MODULE,
354};
355
356static const struct config_item_type comms_type = {
357 .ct_group_ops = &comms_ops,
358 .ct_owner = THIS_MODULE,
359};
360
361static const struct config_item_type comm_type = {
362 .ct_item_ops = &comm_ops,
363 .ct_attrs = comm_attrs,
364 .ct_owner = THIS_MODULE,
365};
366
367static const struct config_item_type nodes_type = {
368 .ct_group_ops = &nodes_ops,
369 .ct_owner = THIS_MODULE,
370};
371
372static const struct config_item_type node_type = {
373 .ct_item_ops = &node_ops,
374 .ct_attrs = node_attrs,
375 .ct_owner = THIS_MODULE,
376};
377
378static struct dlm_space *config_item_to_space(struct config_item *i)
379{
380 return i ? container_of(to_config_group(i), struct dlm_space, group) :
381 NULL;
382}
383
384static struct dlm_comm *config_item_to_comm(struct config_item *i)
385{
386 return i ? container_of(i, struct dlm_comm, item) : NULL;
387}
388
389static struct dlm_node *config_item_to_node(struct config_item *i)
390{
391 return i ? container_of(i, struct dlm_node, item) : NULL;
392}
393
394static struct config_group *make_cluster(struct config_group *g,
395 const char *name)
396{
397 struct dlm_cluster *cl = NULL;
398 struct dlm_spaces *sps = NULL;
399 struct dlm_comms *cms = NULL;
400
401 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
402 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
403 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
404
405 if (!cl || !sps || !cms)
406 goto fail;
407
408 cl->sps = sps;
409 cl->cms = cms;
410
411 config_group_init_type_name(&cl->group, name, &cluster_type);
412 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
413 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
414
415 configfs_add_default_group(&sps->ss_group, &cl->group);
416 configfs_add_default_group(&cms->cs_group, &cl->group);
417
418 cl->cl_tcp_port = dlm_config.ci_tcp_port;
419 cl->cl_buffer_size = dlm_config.ci_buffer_size;
420 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
421 cl->cl_recover_timer = dlm_config.ci_recover_timer;
422 cl->cl_toss_secs = dlm_config.ci_toss_secs;
423 cl->cl_scan_secs = dlm_config.ci_scan_secs;
424 cl->cl_log_debug = dlm_config.ci_log_debug;
425 cl->cl_log_info = dlm_config.ci_log_info;
426 cl->cl_protocol = dlm_config.ci_protocol;
427 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
428 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
429 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
430 DLM_LOCKSPACE_LEN);
431
432 space_list = &sps->ss_group;
433 comm_list = &cms->cs_group;
434 return &cl->group;
435
436 fail:
437 kfree(cl);
438 kfree(sps);
439 kfree(cms);
440 return ERR_PTR(-ENOMEM);
441}
442
443static void drop_cluster(struct config_group *g, struct config_item *i)
444{
445 struct dlm_cluster *cl = config_item_to_cluster(i);
446
447 configfs_remove_default_groups(&cl->group);
448
449 space_list = NULL;
450 comm_list = NULL;
451
452 config_item_put(i);
453}
454
455static void release_cluster(struct config_item *i)
456{
457 struct dlm_cluster *cl = config_item_to_cluster(i);
458
459 kfree(cl->sps);
460 kfree(cl->cms);
461 kfree(cl);
462}
463
464static struct config_group *make_space(struct config_group *g, const char *name)
465{
466 struct dlm_space *sp = NULL;
467 struct dlm_nodes *nds = NULL;
468
469 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
470 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
471
472 if (!sp || !nds)
473 goto fail;
474
475 config_group_init_type_name(&sp->group, name, &space_type);
476
477 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
478 configfs_add_default_group(&nds->ns_group, &sp->group);
479
480 INIT_LIST_HEAD(&sp->members);
481 mutex_init(&sp->members_lock);
482 sp->members_count = 0;
483 sp->nds = nds;
484 return &sp->group;
485
486 fail:
487 kfree(sp);
488 kfree(nds);
489 return ERR_PTR(-ENOMEM);
490}
491
492static void drop_space(struct config_group *g, struct config_item *i)
493{
494 struct dlm_space *sp = config_item_to_space(i);
495
496 /* assert list_empty(&sp->members) */
497
498 configfs_remove_default_groups(&sp->group);
499 config_item_put(i);
500}
501
502static void release_space(struct config_item *i)
503{
504 struct dlm_space *sp = config_item_to_space(i);
505 kfree(sp->nds);
506 kfree(sp);
507}
508
509static struct config_item *make_comm(struct config_group *g, const char *name)
510{
511 struct dlm_comm *cm;
512
513 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
514 if (!cm)
515 return ERR_PTR(-ENOMEM);
516
517 config_item_init_type_name(&cm->item, name, &comm_type);
518
519 cm->seq = dlm_comm_count++;
520 if (!cm->seq)
521 cm->seq = dlm_comm_count++;
522
523 cm->nodeid = -1;
524 cm->local = 0;
525 cm->addr_count = 0;
526 cm->mark = 0;
527 return &cm->item;
528}
529
530static void drop_comm(struct config_group *g, struct config_item *i)
531{
532 struct dlm_comm *cm = config_item_to_comm(i);
533 if (local_comm == cm)
534 local_comm = NULL;
535 dlm_midcomms_close(cm->nodeid);
536 while (cm->addr_count--)
537 kfree(cm->addr[cm->addr_count]);
538 config_item_put(i);
539}
540
541static void release_comm(struct config_item *i)
542{
543 struct dlm_comm *cm = config_item_to_comm(i);
544 kfree(cm);
545}
546
547static struct config_item *make_node(struct config_group *g, const char *name)
548{
549 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
550 struct dlm_node *nd;
551
552 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
553 if (!nd)
554 return ERR_PTR(-ENOMEM);
555
556 config_item_init_type_name(&nd->item, name, &node_type);
557 nd->nodeid = -1;
558 nd->weight = 1; /* default weight of 1 if none is set */
559 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
560
561 mutex_lock(&sp->members_lock);
562 list_add(&nd->list, &sp->members);
563 sp->members_count++;
564 mutex_unlock(&sp->members_lock);
565
566 return &nd->item;
567}
568
569static void drop_node(struct config_group *g, struct config_item *i)
570{
571 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
572 struct dlm_node *nd = config_item_to_node(i);
573
574 mutex_lock(&sp->members_lock);
575 list_del(&nd->list);
576 sp->members_count--;
577 mutex_unlock(&sp->members_lock);
578
579 config_item_put(i);
580}
581
582static void release_node(struct config_item *i)
583{
584 struct dlm_node *nd = config_item_to_node(i);
585 kfree(nd);
586}
587
588static struct dlm_clusters clusters_root = {
589 .subsys = {
590 .su_group = {
591 .cg_item = {
592 .ci_namebuf = "dlm",
593 .ci_type = &clusters_type,
594 },
595 },
596 },
597};
598
599int __init dlm_config_init(void)
600{
601 config_group_init(&clusters_root.subsys.su_group);
602 mutex_init(&clusters_root.subsys.su_mutex);
603 return configfs_register_subsystem(&clusters_root.subsys);
604}
605
606void dlm_config_exit(void)
607{
608 configfs_unregister_subsystem(&clusters_root.subsys);
609}
610
611/*
612 * Functions for user space to read/write attributes
613 */
614
615static ssize_t comm_nodeid_show(struct config_item *item, char *buf)
616{
617 return sprintf(buf, "%d\n", config_item_to_comm(item)->nodeid);
618}
619
620static ssize_t comm_nodeid_store(struct config_item *item, const char *buf,
621 size_t len)
622{
623 int rc = kstrtoint(buf, 0, &config_item_to_comm(item)->nodeid);
624
625 if (rc)
626 return rc;
627 return len;
628}
629
630static ssize_t comm_local_show(struct config_item *item, char *buf)
631{
632 return sprintf(buf, "%d\n", config_item_to_comm(item)->local);
633}
634
635static ssize_t comm_local_store(struct config_item *item, const char *buf,
636 size_t len)
637{
638 struct dlm_comm *cm = config_item_to_comm(item);
639 int rc = kstrtoint(buf, 0, &cm->local);
640
641 if (rc)
642 return rc;
643 if (cm->local && !local_comm)
644 local_comm = cm;
645 return len;
646}
647
648static ssize_t comm_addr_store(struct config_item *item, const char *buf,
649 size_t len)
650{
651 struct dlm_comm *cm = config_item_to_comm(item);
652 struct sockaddr_storage *addr;
653 int rv;
654
655 if (len != sizeof(struct sockaddr_storage))
656 return -EINVAL;
657
658 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
659 return -ENOSPC;
660
661 addr = kzalloc(sizeof(*addr), GFP_NOFS);
662 if (!addr)
663 return -ENOMEM;
664
665 memcpy(addr, buf, len);
666
667 rv = dlm_midcomms_addr(cm->nodeid, addr, len);
668 if (rv) {
669 kfree(addr);
670 return rv;
671 }
672
673 cm->addr[cm->addr_count++] = addr;
674 return len;
675}
676
677static ssize_t comm_addr_list_show(struct config_item *item, char *buf)
678{
679 struct dlm_comm *cm = config_item_to_comm(item);
680 ssize_t s;
681 ssize_t allowance;
682 int i;
683 struct sockaddr_storage *addr;
684 struct sockaddr_in *addr_in;
685 struct sockaddr_in6 *addr_in6;
686
687 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
688 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
689
690
691 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
692 allowance = 4096;
693 buf[0] = '\0';
694
695 for (i = 0; i < cm->addr_count; i++) {
696 addr = cm->addr[i];
697
698 switch(addr->ss_family) {
699 case AF_INET:
700 addr_in = (struct sockaddr_in *)addr;
701 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
702 break;
703 case AF_INET6:
704 addr_in6 = (struct sockaddr_in6 *)addr;
705 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
706 break;
707 default:
708 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
709 break;
710 }
711 allowance -= s;
712 if (allowance >= 0)
713 strcat(buf, buf0);
714 else {
715 allowance += s;
716 break;
717 }
718 }
719 return 4096 - allowance;
720}
721
722static ssize_t comm_mark_show(struct config_item *item, char *buf)
723{
724 return sprintf(buf, "%u\n", config_item_to_comm(item)->mark);
725}
726
727static ssize_t comm_mark_store(struct config_item *item, const char *buf,
728 size_t len)
729{
730 struct dlm_comm *comm;
731 unsigned int mark;
732 int rc;
733
734 rc = kstrtouint(buf, 0, &mark);
735 if (rc)
736 return rc;
737
738 if (mark == 0)
739 mark = dlm_config.ci_mark;
740
741 comm = config_item_to_comm(item);
742 rc = dlm_lowcomms_nodes_set_mark(comm->nodeid, mark);
743 if (rc)
744 return rc;
745
746 comm->mark = mark;
747 return len;
748}
749
750CONFIGFS_ATTR(comm_, nodeid);
751CONFIGFS_ATTR(comm_, local);
752CONFIGFS_ATTR(comm_, mark);
753CONFIGFS_ATTR_WO(comm_, addr);
754CONFIGFS_ATTR_RO(comm_, addr_list);
755
756static struct configfs_attribute *comm_attrs[] = {
757 [COMM_ATTR_NODEID] = &comm_attr_nodeid,
758 [COMM_ATTR_LOCAL] = &comm_attr_local,
759 [COMM_ATTR_ADDR] = &comm_attr_addr,
760 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list,
761 [COMM_ATTR_MARK] = &comm_attr_mark,
762 NULL,
763};
764
765static ssize_t node_nodeid_show(struct config_item *item, char *buf)
766{
767 return sprintf(buf, "%d\n", config_item_to_node(item)->nodeid);
768}
769
770static ssize_t node_nodeid_store(struct config_item *item, const char *buf,
771 size_t len)
772{
773 struct dlm_node *nd = config_item_to_node(item);
774 uint32_t seq = 0;
775 int rc = kstrtoint(buf, 0, &nd->nodeid);
776
777 if (rc)
778 return rc;
779 dlm_comm_seq(nd->nodeid, &seq);
780 nd->comm_seq = seq;
781 return len;
782}
783
784static ssize_t node_weight_show(struct config_item *item, char *buf)
785{
786 return sprintf(buf, "%d\n", config_item_to_node(item)->weight);
787}
788
789static ssize_t node_weight_store(struct config_item *item, const char *buf,
790 size_t len)
791{
792 int rc = kstrtoint(buf, 0, &config_item_to_node(item)->weight);
793
794 if (rc)
795 return rc;
796 return len;
797}
798
799CONFIGFS_ATTR(node_, nodeid);
800CONFIGFS_ATTR(node_, weight);
801
802static struct configfs_attribute *node_attrs[] = {
803 [NODE_ATTR_NODEID] = &node_attr_nodeid,
804 [NODE_ATTR_WEIGHT] = &node_attr_weight,
805 NULL,
806};
807
808/*
809 * Functions for the dlm to get the info that's been configured
810 */
811
812static struct dlm_space *get_space(char *name)
813{
814 struct config_item *i;
815
816 if (!space_list)
817 return NULL;
818
819 mutex_lock(&space_list->cg_subsys->su_mutex);
820 i = config_group_find_item(space_list, name);
821 mutex_unlock(&space_list->cg_subsys->su_mutex);
822
823 return config_item_to_space(i);
824}
825
826static void put_space(struct dlm_space *sp)
827{
828 config_item_put(&sp->group.cg_item);
829}
830
831static struct dlm_comm *get_comm(int nodeid)
832{
833 struct config_item *i;
834 struct dlm_comm *cm = NULL;
835 int found = 0;
836
837 if (!comm_list)
838 return NULL;
839
840 mutex_lock(&clusters_root.subsys.su_mutex);
841
842 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
843 cm = config_item_to_comm(i);
844
845 if (cm->nodeid != nodeid)
846 continue;
847 found = 1;
848 config_item_get(i);
849 break;
850 }
851 mutex_unlock(&clusters_root.subsys.su_mutex);
852
853 if (!found)
854 cm = NULL;
855 return cm;
856}
857
858static void put_comm(struct dlm_comm *cm)
859{
860 config_item_put(&cm->item);
861}
862
863/* caller must free mem */
864int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
865 int *count_out)
866{
867 struct dlm_space *sp;
868 struct dlm_node *nd;
869 struct dlm_config_node *nodes, *node;
870 int rv, count;
871
872 sp = get_space(lsname);
873 if (!sp)
874 return -EEXIST;
875
876 mutex_lock(&sp->members_lock);
877 if (!sp->members_count) {
878 rv = -EINVAL;
879 printk(KERN_ERR "dlm: zero members_count\n");
880 goto out;
881 }
882
883 count = sp->members_count;
884
885 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
886 if (!nodes) {
887 rv = -ENOMEM;
888 goto out;
889 }
890
891 node = nodes;
892 list_for_each_entry(nd, &sp->members, list) {
893 node->nodeid = nd->nodeid;
894 node->weight = nd->weight;
895 node->new = nd->new;
896 node->comm_seq = nd->comm_seq;
897 node++;
898
899 nd->new = 0;
900 }
901
902 *count_out = count;
903 *nodes_out = nodes;
904 rv = 0;
905 out:
906 mutex_unlock(&sp->members_lock);
907 put_space(sp);
908 return rv;
909}
910
911int dlm_comm_seq(int nodeid, uint32_t *seq)
912{
913 struct dlm_comm *cm = get_comm(nodeid);
914 if (!cm)
915 return -EEXIST;
916 *seq = cm->seq;
917 put_comm(cm);
918 return 0;
919}
920
921int dlm_our_nodeid(void)
922{
923 return local_comm ? local_comm->nodeid : 0;
924}
925
926/* num 0 is first addr, num 1 is second addr */
927int dlm_our_addr(struct sockaddr_storage *addr, int num)
928{
929 if (!local_comm)
930 return -1;
931 if (num + 1 > local_comm->addr_count)
932 return -1;
933 memcpy(addr, local_comm->addr[num], sizeof(*addr));
934 return 0;
935}
936
937/* Config file defaults */
938#define DEFAULT_TCP_PORT 21064
939#define DEFAULT_RSBTBL_SIZE 1024
940#define DEFAULT_RECOVER_TIMER 5
941#define DEFAULT_TOSS_SECS 10
942#define DEFAULT_SCAN_SECS 5
943#define DEFAULT_LOG_DEBUG 0
944#define DEFAULT_LOG_INFO 1
945#define DEFAULT_PROTOCOL DLM_PROTO_TCP
946#define DEFAULT_MARK 0
947#define DEFAULT_NEW_RSB_COUNT 128
948#define DEFAULT_RECOVER_CALLBACKS 0
949#define DEFAULT_CLUSTER_NAME ""
950
951struct dlm_config_info dlm_config = {
952 .ci_tcp_port = DEFAULT_TCP_PORT,
953 .ci_buffer_size = DLM_MAX_SOCKET_BUFSIZE,
954 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
955 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
956 .ci_toss_secs = DEFAULT_TOSS_SECS,
957 .ci_scan_secs = DEFAULT_SCAN_SECS,
958 .ci_log_debug = DEFAULT_LOG_DEBUG,
959 .ci_log_info = DEFAULT_LOG_INFO,
960 .ci_protocol = DEFAULT_PROTOCOL,
961 .ci_mark = DEFAULT_MARK,
962 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
963 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
964 .ci_cluster_name = DEFAULT_CLUSTER_NAME
965};
966
1/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
6**
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>
17#include <linux/slab.h>
18#include <linux/in.h>
19#include <linux/in6.h>
20#include <linux/dlmconstants.h>
21#include <net/ipv6.h>
22#include <net/sock.h>
23
24#include "config.h"
25#include "lowcomms.h"
26
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
32 * /config/dlm/<cluster>/comms/<comm>/addr (write only)
33 * /config/dlm/<cluster>/comms/<comm>/addr_list (read only)
34 * 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;
39static struct dlm_comm *local_comm;
40static uint32_t dlm_comm_count;
41
42struct dlm_clusters;
43struct dlm_cluster;
44struct dlm_spaces;
45struct dlm_space;
46struct dlm_comms;
47struct dlm_comm;
48struct dlm_nodes;
49struct dlm_node;
50
51static struct config_group *make_cluster(struct config_group *, const char *);
52static void drop_cluster(struct config_group *, struct config_item *);
53static void release_cluster(struct config_item *);
54static struct config_group *make_space(struct config_group *, const char *);
55static void drop_space(struct config_group *, struct config_item *);
56static void release_space(struct config_item *);
57static struct config_item *make_comm(struct config_group *, const char *);
58static void drop_comm(struct config_group *, struct config_item *);
59static void release_comm(struct config_item *);
60static struct config_item *make_node(struct config_group *, const char *);
61static void drop_node(struct config_group *, struct config_item *);
62static void release_node(struct config_item *);
63
64static 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);
69static 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
78static 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);
86static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf);
87static 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);
93
94struct dlm_cluster {
95 struct config_group group;
96 unsigned int cl_tcp_port;
97 unsigned int cl_buffer_size;
98 unsigned int cl_rsbtbl_size;
99 unsigned int cl_dirtbl_size;
100 unsigned int cl_recover_timer;
101 unsigned int cl_toss_secs;
102 unsigned int cl_scan_secs;
103 unsigned int cl_log_debug;
104 unsigned int cl_protocol;
105 unsigned int cl_timewarn_cs;
106 unsigned int cl_waitwarn_us;
107 unsigned int cl_new_rsb_count;
108 unsigned int cl_recover_callbacks;
109 char cl_cluster_name[DLM_LOCKSPACE_LEN];
110};
111
112enum {
113 CLUSTER_ATTR_TCP_PORT = 0,
114 CLUSTER_ATTR_BUFFER_SIZE,
115 CLUSTER_ATTR_RSBTBL_SIZE,
116 CLUSTER_ATTR_DIRTBL_SIZE,
117 CLUSTER_ATTR_RECOVER_TIMER,
118 CLUSTER_ATTR_TOSS_SECS,
119 CLUSTER_ATTR_SCAN_SECS,
120 CLUSTER_ATTR_LOG_DEBUG,
121 CLUSTER_ATTR_PROTOCOL,
122 CLUSTER_ATTR_TIMEWARN_CS,
123 CLUSTER_ATTR_WAITWARN_US,
124 CLUSTER_ATTR_NEW_RSB_COUNT,
125 CLUSTER_ATTR_RECOVER_CALLBACKS,
126 CLUSTER_ATTR_CLUSTER_NAME,
127};
128
129struct cluster_attribute {
130 struct configfs_attribute attr;
131 ssize_t (*show)(struct dlm_cluster *, char *);
132 ssize_t (*store)(struct dlm_cluster *, const char *, size_t);
133};
134
135static ssize_t cluster_cluster_name_read(struct dlm_cluster *cl, char *buf)
136{
137 return sprintf(buf, "%s\n", cl->cl_cluster_name);
138}
139
140static ssize_t cluster_cluster_name_write(struct dlm_cluster *cl,
141 const char *buf, size_t len)
142{
143 strncpy(dlm_config.ci_cluster_name, buf, DLM_LOCKSPACE_LEN);
144 strncpy(cl->cl_cluster_name, buf, DLM_LOCKSPACE_LEN);
145 return len;
146}
147
148static struct cluster_attribute cluster_attr_cluster_name = {
149 .attr = { .ca_owner = THIS_MODULE,
150 .ca_name = "cluster_name",
151 .ca_mode = S_IRUGO | S_IWUSR },
152 .show = cluster_cluster_name_read,
153 .store = cluster_cluster_name_write,
154};
155
156static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field,
157 int *info_field, int check_zero,
158 const char *buf, size_t len)
159{
160 unsigned int x;
161
162 if (!capable(CAP_SYS_ADMIN))
163 return -EACCES;
164
165 x = simple_strtoul(buf, NULL, 0);
166
167 if (check_zero && !x)
168 return -EINVAL;
169
170 *cl_field = x;
171 *info_field = x;
172
173 return len;
174}
175
176#define CLUSTER_ATTR(name, check_zero) \
177static ssize_t name##_write(struct dlm_cluster *cl, const char *buf, size_t len) \
178{ \
179 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
180 check_zero, buf, len); \
181} \
182static ssize_t name##_read(struct dlm_cluster *cl, char *buf) \
183{ \
184 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
185} \
186static struct cluster_attribute cluster_attr_##name = \
187__CONFIGFS_ATTR(name, 0644, name##_read, name##_write)
188
189CLUSTER_ATTR(tcp_port, 1);
190CLUSTER_ATTR(buffer_size, 1);
191CLUSTER_ATTR(rsbtbl_size, 1);
192CLUSTER_ATTR(dirtbl_size, 1);
193CLUSTER_ATTR(recover_timer, 1);
194CLUSTER_ATTR(toss_secs, 1);
195CLUSTER_ATTR(scan_secs, 1);
196CLUSTER_ATTR(log_debug, 0);
197CLUSTER_ATTR(protocol, 0);
198CLUSTER_ATTR(timewarn_cs, 1);
199CLUSTER_ATTR(waitwarn_us, 0);
200CLUSTER_ATTR(new_rsb_count, 0);
201CLUSTER_ATTR(recover_callbacks, 0);
202
203static struct configfs_attribute *cluster_attrs[] = {
204 [CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port.attr,
205 [CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size.attr,
206 [CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size.attr,
207 [CLUSTER_ATTR_DIRTBL_SIZE] = &cluster_attr_dirtbl_size.attr,
208 [CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer.attr,
209 [CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs.attr,
210 [CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs.attr,
211 [CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug.attr,
212 [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol.attr,
213 [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs.attr,
214 [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us.attr,
215 [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count.attr,
216 [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks.attr,
217 [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name.attr,
218 NULL,
219};
220
221enum {
222 COMM_ATTR_NODEID = 0,
223 COMM_ATTR_LOCAL,
224 COMM_ATTR_ADDR,
225 COMM_ATTR_ADDR_LIST,
226};
227
228struct comm_attribute {
229 struct configfs_attribute attr;
230 ssize_t (*show)(struct dlm_comm *, char *);
231 ssize_t (*store)(struct dlm_comm *, const char *, size_t);
232};
233
234static struct comm_attribute comm_attr_nodeid = {
235 .attr = { .ca_owner = THIS_MODULE,
236 .ca_name = "nodeid",
237 .ca_mode = S_IRUGO | S_IWUSR },
238 .show = comm_nodeid_read,
239 .store = comm_nodeid_write,
240};
241
242static struct comm_attribute comm_attr_local = {
243 .attr = { .ca_owner = THIS_MODULE,
244 .ca_name = "local",
245 .ca_mode = S_IRUGO | S_IWUSR },
246 .show = comm_local_read,
247 .store = comm_local_write,
248};
249
250static struct comm_attribute comm_attr_addr = {
251 .attr = { .ca_owner = THIS_MODULE,
252 .ca_name = "addr",
253 .ca_mode = S_IWUSR },
254 .store = comm_addr_write,
255};
256
257static struct comm_attribute comm_attr_addr_list = {
258 .attr = { .ca_owner = THIS_MODULE,
259 .ca_name = "addr_list",
260 .ca_mode = S_IRUGO },
261 .show = comm_addr_list_read,
262};
263
264static struct configfs_attribute *comm_attrs[] = {
265 [COMM_ATTR_NODEID] = &comm_attr_nodeid.attr,
266 [COMM_ATTR_LOCAL] = &comm_attr_local.attr,
267 [COMM_ATTR_ADDR] = &comm_attr_addr.attr,
268 [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list.attr,
269 NULL,
270};
271
272enum {
273 NODE_ATTR_NODEID = 0,
274 NODE_ATTR_WEIGHT,
275};
276
277struct node_attribute {
278 struct configfs_attribute attr;
279 ssize_t (*show)(struct dlm_node *, char *);
280 ssize_t (*store)(struct dlm_node *, const char *, size_t);
281};
282
283static struct node_attribute node_attr_nodeid = {
284 .attr = { .ca_owner = THIS_MODULE,
285 .ca_name = "nodeid",
286 .ca_mode = S_IRUGO | S_IWUSR },
287 .show = node_nodeid_read,
288 .store = node_nodeid_write,
289};
290
291static struct node_attribute node_attr_weight = {
292 .attr = { .ca_owner = THIS_MODULE,
293 .ca_name = "weight",
294 .ca_mode = S_IRUGO | S_IWUSR },
295 .show = node_weight_read,
296 .store = node_weight_write,
297};
298
299static struct configfs_attribute *node_attrs[] = {
300 [NODE_ATTR_NODEID] = &node_attr_nodeid.attr,
301 [NODE_ATTR_WEIGHT] = &node_attr_weight.attr,
302 NULL,
303};
304
305struct dlm_clusters {
306 struct configfs_subsystem subsys;
307};
308
309struct dlm_spaces {
310 struct config_group ss_group;
311};
312
313struct dlm_space {
314 struct config_group group;
315 struct list_head members;
316 struct mutex members_lock;
317 int members_count;
318};
319
320struct dlm_comms {
321 struct config_group cs_group;
322};
323
324struct dlm_comm {
325 struct config_item item;
326 int seq;
327 int nodeid;
328 int local;
329 int addr_count;
330 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
331};
332
333struct dlm_nodes {
334 struct config_group ns_group;
335};
336
337struct dlm_node {
338 struct config_item item;
339 struct list_head list; /* space->members */
340 int nodeid;
341 int weight;
342 int new;
343 int comm_seq; /* copy of cm->seq when nd->nodeid is set */
344};
345
346static struct configfs_group_operations clusters_ops = {
347 .make_group = make_cluster,
348 .drop_item = drop_cluster,
349};
350
351static struct configfs_item_operations cluster_ops = {
352 .release = release_cluster,
353 .show_attribute = show_cluster,
354 .store_attribute = store_cluster,
355};
356
357static struct configfs_group_operations spaces_ops = {
358 .make_group = make_space,
359 .drop_item = drop_space,
360};
361
362static struct configfs_item_operations space_ops = {
363 .release = release_space,
364};
365
366static struct configfs_group_operations comms_ops = {
367 .make_item = make_comm,
368 .drop_item = drop_comm,
369};
370
371static struct configfs_item_operations comm_ops = {
372 .release = release_comm,
373 .show_attribute = show_comm,
374 .store_attribute = store_comm,
375};
376
377static struct configfs_group_operations nodes_ops = {
378 .make_item = make_node,
379 .drop_item = drop_node,
380};
381
382static struct configfs_item_operations node_ops = {
383 .release = release_node,
384 .show_attribute = show_node,
385 .store_attribute = store_node,
386};
387
388static struct config_item_type clusters_type = {
389 .ct_group_ops = &clusters_ops,
390 .ct_owner = THIS_MODULE,
391};
392
393static struct config_item_type cluster_type = {
394 .ct_item_ops = &cluster_ops,
395 .ct_attrs = cluster_attrs,
396 .ct_owner = THIS_MODULE,
397};
398
399static struct config_item_type spaces_type = {
400 .ct_group_ops = &spaces_ops,
401 .ct_owner = THIS_MODULE,
402};
403
404static struct config_item_type space_type = {
405 .ct_item_ops = &space_ops,
406 .ct_owner = THIS_MODULE,
407};
408
409static struct config_item_type comms_type = {
410 .ct_group_ops = &comms_ops,
411 .ct_owner = THIS_MODULE,
412};
413
414static struct config_item_type comm_type = {
415 .ct_item_ops = &comm_ops,
416 .ct_attrs = comm_attrs,
417 .ct_owner = THIS_MODULE,
418};
419
420static struct config_item_type nodes_type = {
421 .ct_group_ops = &nodes_ops,
422 .ct_owner = THIS_MODULE,
423};
424
425static struct config_item_type node_type = {
426 .ct_item_ops = &node_ops,
427 .ct_attrs = node_attrs,
428 .ct_owner = THIS_MODULE,
429};
430
431static struct dlm_cluster *config_item_to_cluster(struct config_item *i)
432{
433 return i ? container_of(to_config_group(i), struct dlm_cluster, group) :
434 NULL;
435}
436
437static struct dlm_space *config_item_to_space(struct config_item *i)
438{
439 return i ? container_of(to_config_group(i), struct dlm_space, group) :
440 NULL;
441}
442
443static struct dlm_comm *config_item_to_comm(struct config_item *i)
444{
445 return i ? container_of(i, struct dlm_comm, item) : NULL;
446}
447
448static struct dlm_node *config_item_to_node(struct config_item *i)
449{
450 return i ? container_of(i, struct dlm_node, item) : NULL;
451}
452
453static struct config_group *make_cluster(struct config_group *g,
454 const char *name)
455{
456 struct dlm_cluster *cl = NULL;
457 struct dlm_spaces *sps = NULL;
458 struct dlm_comms *cms = NULL;
459 void *gps = NULL;
460
461 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS);
462 gps = kcalloc(3, sizeof(struct config_group *), GFP_NOFS);
463 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS);
464 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS);
465
466 if (!cl || !gps || !sps || !cms)
467 goto fail;
468
469 config_group_init_type_name(&cl->group, name, &cluster_type);
470 config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
471 config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
472
473 cl->group.default_groups = gps;
474 cl->group.default_groups[0] = &sps->ss_group;
475 cl->group.default_groups[1] = &cms->cs_group;
476 cl->group.default_groups[2] = NULL;
477
478 cl->cl_tcp_port = dlm_config.ci_tcp_port;
479 cl->cl_buffer_size = dlm_config.ci_buffer_size;
480 cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
481 cl->cl_dirtbl_size = dlm_config.ci_dirtbl_size;
482 cl->cl_recover_timer = dlm_config.ci_recover_timer;
483 cl->cl_toss_secs = dlm_config.ci_toss_secs;
484 cl->cl_scan_secs = dlm_config.ci_scan_secs;
485 cl->cl_log_debug = dlm_config.ci_log_debug;
486 cl->cl_protocol = dlm_config.ci_protocol;
487 cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
488 cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us;
489 cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count;
490 cl->cl_recover_callbacks = dlm_config.ci_recover_callbacks;
491 memcpy(cl->cl_cluster_name, dlm_config.ci_cluster_name,
492 DLM_LOCKSPACE_LEN);
493
494 space_list = &sps->ss_group;
495 comm_list = &cms->cs_group;
496 return &cl->group;
497
498 fail:
499 kfree(cl);
500 kfree(gps);
501 kfree(sps);
502 kfree(cms);
503 return ERR_PTR(-ENOMEM);
504}
505
506static void drop_cluster(struct config_group *g, struct config_item *i)
507{
508 struct dlm_cluster *cl = config_item_to_cluster(i);
509 struct config_item *tmp;
510 int j;
511
512 for (j = 0; cl->group.default_groups[j]; j++) {
513 tmp = &cl->group.default_groups[j]->cg_item;
514 cl->group.default_groups[j] = NULL;
515 config_item_put(tmp);
516 }
517
518 space_list = NULL;
519 comm_list = NULL;
520
521 config_item_put(i);
522}
523
524static void release_cluster(struct config_item *i)
525{
526 struct dlm_cluster *cl = config_item_to_cluster(i);
527 kfree(cl->group.default_groups);
528 kfree(cl);
529}
530
531static struct config_group *make_space(struct config_group *g, const char *name)
532{
533 struct dlm_space *sp = NULL;
534 struct dlm_nodes *nds = NULL;
535 void *gps = NULL;
536
537 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS);
538 gps = kcalloc(2, sizeof(struct config_group *), GFP_NOFS);
539 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS);
540
541 if (!sp || !gps || !nds)
542 goto fail;
543
544 config_group_init_type_name(&sp->group, name, &space_type);
545 config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
546
547 sp->group.default_groups = gps;
548 sp->group.default_groups[0] = &nds->ns_group;
549 sp->group.default_groups[1] = NULL;
550
551 INIT_LIST_HEAD(&sp->members);
552 mutex_init(&sp->members_lock);
553 sp->members_count = 0;
554 return &sp->group;
555
556 fail:
557 kfree(sp);
558 kfree(gps);
559 kfree(nds);
560 return ERR_PTR(-ENOMEM);
561}
562
563static void drop_space(struct config_group *g, struct config_item *i)
564{
565 struct dlm_space *sp = config_item_to_space(i);
566 struct config_item *tmp;
567 int j;
568
569 /* assert list_empty(&sp->members) */
570
571 for (j = 0; sp->group.default_groups[j]; j++) {
572 tmp = &sp->group.default_groups[j]->cg_item;
573 sp->group.default_groups[j] = NULL;
574 config_item_put(tmp);
575 }
576
577 config_item_put(i);
578}
579
580static void release_space(struct config_item *i)
581{
582 struct dlm_space *sp = config_item_to_space(i);
583 kfree(sp->group.default_groups);
584 kfree(sp);
585}
586
587static struct config_item *make_comm(struct config_group *g, const char *name)
588{
589 struct dlm_comm *cm;
590
591 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS);
592 if (!cm)
593 return ERR_PTR(-ENOMEM);
594
595 config_item_init_type_name(&cm->item, name, &comm_type);
596
597 cm->seq = dlm_comm_count++;
598 if (!cm->seq)
599 cm->seq = dlm_comm_count++;
600
601 cm->nodeid = -1;
602 cm->local = 0;
603 cm->addr_count = 0;
604 return &cm->item;
605}
606
607static void drop_comm(struct config_group *g, struct config_item *i)
608{
609 struct dlm_comm *cm = config_item_to_comm(i);
610 if (local_comm == cm)
611 local_comm = NULL;
612 dlm_lowcomms_close(cm->nodeid);
613 while (cm->addr_count--)
614 kfree(cm->addr[cm->addr_count]);
615 config_item_put(i);
616}
617
618static void release_comm(struct config_item *i)
619{
620 struct dlm_comm *cm = config_item_to_comm(i);
621 kfree(cm);
622}
623
624static struct config_item *make_node(struct config_group *g, const char *name)
625{
626 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
627 struct dlm_node *nd;
628
629 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS);
630 if (!nd)
631 return ERR_PTR(-ENOMEM);
632
633 config_item_init_type_name(&nd->item, name, &node_type);
634 nd->nodeid = -1;
635 nd->weight = 1; /* default weight of 1 if none is set */
636 nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */
637
638 mutex_lock(&sp->members_lock);
639 list_add(&nd->list, &sp->members);
640 sp->members_count++;
641 mutex_unlock(&sp->members_lock);
642
643 return &nd->item;
644}
645
646static void drop_node(struct config_group *g, struct config_item *i)
647{
648 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent);
649 struct dlm_node *nd = config_item_to_node(i);
650
651 mutex_lock(&sp->members_lock);
652 list_del(&nd->list);
653 sp->members_count--;
654 mutex_unlock(&sp->members_lock);
655
656 config_item_put(i);
657}
658
659static void release_node(struct config_item *i)
660{
661 struct dlm_node *nd = config_item_to_node(i);
662 kfree(nd);
663}
664
665static struct dlm_clusters clusters_root = {
666 .subsys = {
667 .su_group = {
668 .cg_item = {
669 .ci_namebuf = "dlm",
670 .ci_type = &clusters_type,
671 },
672 },
673 },
674};
675
676int __init dlm_config_init(void)
677{
678 config_group_init(&clusters_root.subsys.su_group);
679 mutex_init(&clusters_root.subsys.su_mutex);
680 return configfs_register_subsystem(&clusters_root.subsys);
681}
682
683void dlm_config_exit(void)
684{
685 configfs_unregister_subsystem(&clusters_root.subsys);
686}
687
688/*
689 * Functions for user space to read/write attributes
690 */
691
692static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
693 char *buf)
694{
695 struct dlm_cluster *cl = config_item_to_cluster(i);
696 struct cluster_attribute *cla =
697 container_of(a, struct cluster_attribute, attr);
698 return cla->show ? cla->show(cl, buf) : 0;
699}
700
701static ssize_t store_cluster(struct config_item *i,
702 struct configfs_attribute *a,
703 const char *buf, size_t len)
704{
705 struct dlm_cluster *cl = config_item_to_cluster(i);
706 struct cluster_attribute *cla =
707 container_of(a, struct cluster_attribute, attr);
708 return cla->store ? cla->store(cl, buf, len) : -EINVAL;
709}
710
711static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
712 char *buf)
713{
714 struct dlm_comm *cm = config_item_to_comm(i);
715 struct comm_attribute *cma =
716 container_of(a, struct comm_attribute, attr);
717 return cma->show ? cma->show(cm, buf) : 0;
718}
719
720static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
721 const char *buf, size_t len)
722{
723 struct dlm_comm *cm = config_item_to_comm(i);
724 struct comm_attribute *cma =
725 container_of(a, struct comm_attribute, attr);
726 return cma->store ? cma->store(cm, buf, len) : -EINVAL;
727}
728
729static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf)
730{
731 return sprintf(buf, "%d\n", cm->nodeid);
732}
733
734static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf,
735 size_t len)
736{
737 cm->nodeid = simple_strtol(buf, NULL, 0);
738 return len;
739}
740
741static ssize_t comm_local_read(struct dlm_comm *cm, char *buf)
742{
743 return sprintf(buf, "%d\n", cm->local);
744}
745
746static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf,
747 size_t len)
748{
749 cm->local= simple_strtol(buf, NULL, 0);
750 if (cm->local && !local_comm)
751 local_comm = cm;
752 return len;
753}
754
755static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, size_t len)
756{
757 struct sockaddr_storage *addr;
758
759 if (len != sizeof(struct sockaddr_storage))
760 return -EINVAL;
761
762 if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
763 return -ENOSPC;
764
765 addr = kzalloc(sizeof(*addr), GFP_NOFS);
766 if (!addr)
767 return -ENOMEM;
768
769 memcpy(addr, buf, len);
770 cm->addr[cm->addr_count++] = addr;
771 return len;
772}
773
774static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf)
775{
776 ssize_t s;
777 ssize_t allowance;
778 int i;
779 struct sockaddr_storage *addr;
780 struct sockaddr_in *addr_in;
781 struct sockaddr_in6 *addr_in6;
782
783 /* Taken from ip6_addr_string() defined in lib/vsprintf.c */
784 char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")];
785
786
787 /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */
788 allowance = 4096;
789 buf[0] = '\0';
790
791 for (i = 0; i < cm->addr_count; i++) {
792 addr = cm->addr[i];
793
794 switch(addr->ss_family) {
795 case AF_INET:
796 addr_in = (struct sockaddr_in *)addr;
797 s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr);
798 break;
799 case AF_INET6:
800 addr_in6 = (struct sockaddr_in6 *)addr;
801 s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr);
802 break;
803 default:
804 s = sprintf(buf0, "%s\n", "<UNKNOWN>");
805 break;
806 }
807 allowance -= s;
808 if (allowance >= 0)
809 strcat(buf, buf0);
810 else {
811 allowance += s;
812 break;
813 }
814 }
815 return 4096 - allowance;
816}
817
818static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
819 char *buf)
820{
821 struct dlm_node *nd = config_item_to_node(i);
822 struct node_attribute *nda =
823 container_of(a, struct node_attribute, attr);
824 return nda->show ? nda->show(nd, buf) : 0;
825}
826
827static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
828 const char *buf, size_t len)
829{
830 struct dlm_node *nd = config_item_to_node(i);
831 struct node_attribute *nda =
832 container_of(a, struct node_attribute, attr);
833 return nda->store ? nda->store(nd, buf, len) : -EINVAL;
834}
835
836static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf)
837{
838 return sprintf(buf, "%d\n", nd->nodeid);
839}
840
841static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf,
842 size_t len)
843{
844 uint32_t seq = 0;
845 nd->nodeid = simple_strtol(buf, NULL, 0);
846 dlm_comm_seq(nd->nodeid, &seq);
847 nd->comm_seq = seq;
848 return len;
849}
850
851static ssize_t node_weight_read(struct dlm_node *nd, char *buf)
852{
853 return sprintf(buf, "%d\n", nd->weight);
854}
855
856static ssize_t node_weight_write(struct dlm_node *nd, const char *buf,
857 size_t len)
858{
859 nd->weight = simple_strtol(buf, NULL, 0);
860 return len;
861}
862
863/*
864 * Functions for the dlm to get the info that's been configured
865 */
866
867static struct dlm_space *get_space(char *name)
868{
869 struct config_item *i;
870
871 if (!space_list)
872 return NULL;
873
874 mutex_lock(&space_list->cg_subsys->su_mutex);
875 i = config_group_find_item(space_list, name);
876 mutex_unlock(&space_list->cg_subsys->su_mutex);
877
878 return config_item_to_space(i);
879}
880
881static void put_space(struct dlm_space *sp)
882{
883 config_item_put(&sp->group.cg_item);
884}
885
886static int addr_compare(struct sockaddr_storage *x, struct sockaddr_storage *y)
887{
888 switch (x->ss_family) {
889 case AF_INET: {
890 struct sockaddr_in *sinx = (struct sockaddr_in *)x;
891 struct sockaddr_in *siny = (struct sockaddr_in *)y;
892 if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr)
893 return 0;
894 if (sinx->sin_port != siny->sin_port)
895 return 0;
896 break;
897 }
898 case AF_INET6: {
899 struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x;
900 struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y;
901 if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr))
902 return 0;
903 if (sinx->sin6_port != siny->sin6_port)
904 return 0;
905 break;
906 }
907 default:
908 return 0;
909 }
910 return 1;
911}
912
913static struct dlm_comm *get_comm(int nodeid, struct sockaddr_storage *addr)
914{
915 struct config_item *i;
916 struct dlm_comm *cm = NULL;
917 int found = 0;
918
919 if (!comm_list)
920 return NULL;
921
922 mutex_lock(&clusters_root.subsys.su_mutex);
923
924 list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
925 cm = config_item_to_comm(i);
926
927 if (nodeid) {
928 if (cm->nodeid != nodeid)
929 continue;
930 found = 1;
931 config_item_get(i);
932 break;
933 } else {
934 if (!cm->addr_count || !addr_compare(cm->addr[0], addr))
935 continue;
936 found = 1;
937 config_item_get(i);
938 break;
939 }
940 }
941 mutex_unlock(&clusters_root.subsys.su_mutex);
942
943 if (!found)
944 cm = NULL;
945 return cm;
946}
947
948static void put_comm(struct dlm_comm *cm)
949{
950 config_item_put(&cm->item);
951}
952
953/* caller must free mem */
954int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out,
955 int *count_out)
956{
957 struct dlm_space *sp;
958 struct dlm_node *nd;
959 struct dlm_config_node *nodes, *node;
960 int rv, count;
961
962 sp = get_space(lsname);
963 if (!sp)
964 return -EEXIST;
965
966 mutex_lock(&sp->members_lock);
967 if (!sp->members_count) {
968 rv = -EINVAL;
969 printk(KERN_ERR "dlm: zero members_count\n");
970 goto out;
971 }
972
973 count = sp->members_count;
974
975 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS);
976 if (!nodes) {
977 rv = -ENOMEM;
978 goto out;
979 }
980
981 node = nodes;
982 list_for_each_entry(nd, &sp->members, list) {
983 node->nodeid = nd->nodeid;
984 node->weight = nd->weight;
985 node->new = nd->new;
986 node->comm_seq = nd->comm_seq;
987 node++;
988
989 nd->new = 0;
990 }
991
992 *count_out = count;
993 *nodes_out = nodes;
994 rv = 0;
995 out:
996 mutex_unlock(&sp->members_lock);
997 put_space(sp);
998 return rv;
999}
1000
1001int dlm_comm_seq(int nodeid, uint32_t *seq)
1002{
1003 struct dlm_comm *cm = get_comm(nodeid, NULL);
1004 if (!cm)
1005 return -EEXIST;
1006 *seq = cm->seq;
1007 put_comm(cm);
1008 return 0;
1009}
1010
1011int dlm_nodeid_to_addr(int nodeid, struct sockaddr_storage *addr)
1012{
1013 struct dlm_comm *cm = get_comm(nodeid, NULL);
1014 if (!cm)
1015 return -EEXIST;
1016 if (!cm->addr_count)
1017 return -ENOENT;
1018 memcpy(addr, cm->addr[0], sizeof(*addr));
1019 put_comm(cm);
1020 return 0;
1021}
1022
1023int dlm_addr_to_nodeid(struct sockaddr_storage *addr, int *nodeid)
1024{
1025 struct dlm_comm *cm = get_comm(0, addr);
1026 if (!cm)
1027 return -EEXIST;
1028 *nodeid = cm->nodeid;
1029 put_comm(cm);
1030 return 0;
1031}
1032
1033int dlm_our_nodeid(void)
1034{
1035 return local_comm ? local_comm->nodeid : 0;
1036}
1037
1038/* num 0 is first addr, num 1 is second addr */
1039int dlm_our_addr(struct sockaddr_storage *addr, int num)
1040{
1041 if (!local_comm)
1042 return -1;
1043 if (num + 1 > local_comm->addr_count)
1044 return -1;
1045 memcpy(addr, local_comm->addr[num], sizeof(*addr));
1046 return 0;
1047}
1048
1049/* Config file defaults */
1050#define DEFAULT_TCP_PORT 21064
1051#define DEFAULT_BUFFER_SIZE 4096
1052#define DEFAULT_RSBTBL_SIZE 1024
1053#define DEFAULT_DIRTBL_SIZE 1024
1054#define DEFAULT_RECOVER_TIMER 5
1055#define DEFAULT_TOSS_SECS 10
1056#define DEFAULT_SCAN_SECS 5
1057#define DEFAULT_LOG_DEBUG 0
1058#define DEFAULT_PROTOCOL 0
1059#define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */
1060#define DEFAULT_WAITWARN_US 0
1061#define DEFAULT_NEW_RSB_COUNT 128
1062#define DEFAULT_RECOVER_CALLBACKS 0
1063#define DEFAULT_CLUSTER_NAME ""
1064
1065struct dlm_config_info dlm_config = {
1066 .ci_tcp_port = DEFAULT_TCP_PORT,
1067 .ci_buffer_size = DEFAULT_BUFFER_SIZE,
1068 .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
1069 .ci_dirtbl_size = DEFAULT_DIRTBL_SIZE,
1070 .ci_recover_timer = DEFAULT_RECOVER_TIMER,
1071 .ci_toss_secs = DEFAULT_TOSS_SECS,
1072 .ci_scan_secs = DEFAULT_SCAN_SECS,
1073 .ci_log_debug = DEFAULT_LOG_DEBUG,
1074 .ci_protocol = DEFAULT_PROTOCOL,
1075 .ci_timewarn_cs = DEFAULT_TIMEWARN_CS,
1076 .ci_waitwarn_us = DEFAULT_WAITWARN_US,
1077 .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT,
1078 .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS,
1079 .ci_cluster_name = DEFAULT_CLUSTER_NAME
1080};
1081