David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | ******************************************************************************* |
| 3 | ** |
| 4 | ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 5 | ** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved. |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
David Teigland | 44be6fd | 2008-08-28 11:36:19 -0500 | [diff] [blame] | 18 | #include <linux/in.h> |
| 19 | #include <linux/in6.h> |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 20 | #include <linux/dlmconstants.h> |
David Teigland | 44be6fd | 2008-08-28 11:36:19 -0500 | [diff] [blame] | 21 | #include <net/ipv6.h> |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 22 | #include <net/sock.h> |
| 23 | |
| 24 | #include "config.h" |
David Teigland | 1c032c0 | 2006-04-28 10:50:41 -0400 | [diff] [blame] | 25 | #include "lowcomms.h" |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 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 |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 32 | * /config/dlm/<cluster>/comms/<comm>/addr (write only) |
| 33 | * /config/dlm/<cluster>/comms/<comm>/addr_list (read only) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 34 | * The <cluster> level is useless, but I haven't figured out how to avoid it. |
| 35 | */ |
| 36 | |
| 37 | static struct config_group *space_list; |
| 38 | static struct config_group *comm_list; |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 39 | static struct dlm_comm *local_comm; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 40 | static uint32_t dlm_comm_count; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 41 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 42 | struct dlm_clusters; |
| 43 | struct dlm_cluster; |
| 44 | struct dlm_spaces; |
| 45 | struct dlm_space; |
| 46 | struct dlm_comms; |
| 47 | struct dlm_comm; |
| 48 | struct dlm_nodes; |
| 49 | struct dlm_node; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 50 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 51 | static struct config_group *make_cluster(struct config_group *, const char *); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 52 | static void drop_cluster(struct config_group *, struct config_item *); |
| 53 | static void release_cluster(struct config_item *); |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 54 | static struct config_group *make_space(struct config_group *, const char *); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 55 | static void drop_space(struct config_group *, struct config_item *); |
| 56 | static void release_space(struct config_item *); |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 57 | static struct config_item *make_comm(struct config_group *, const char *); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 58 | static void drop_comm(struct config_group *, struct config_item *); |
| 59 | static void release_comm(struct config_item *); |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 60 | static struct config_item *make_node(struct config_group *, const char *); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 61 | static void drop_node(struct config_group *, struct config_item *); |
| 62 | static void release_node(struct config_item *); |
| 63 | |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 64 | static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a, |
| 65 | char *buf); |
| 66 | static ssize_t store_cluster(struct config_item *i, |
| 67 | struct configfs_attribute *a, |
| 68 | const char *buf, size_t len); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 69 | static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a, |
| 70 | char *buf); |
| 71 | static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a, |
| 72 | const char *buf, size_t len); |
| 73 | static ssize_t show_node(struct config_item *i, struct configfs_attribute *a, |
| 74 | char *buf); |
| 75 | static ssize_t store_node(struct config_item *i, struct configfs_attribute *a, |
| 76 | const char *buf, size_t len); |
| 77 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 78 | static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf); |
| 79 | static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf, |
| 80 | size_t len); |
| 81 | static ssize_t comm_local_read(struct dlm_comm *cm, char *buf); |
| 82 | static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf, |
| 83 | size_t len); |
| 84 | static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, |
| 85 | size_t len); |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 86 | static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf); |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 87 | static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf); |
| 88 | static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf, |
| 89 | size_t len); |
| 90 | static ssize_t node_weight_read(struct dlm_node *nd, char *buf); |
| 91 | static ssize_t node_weight_write(struct dlm_node *nd, const char *buf, |
| 92 | size_t len); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 93 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 94 | struct dlm_cluster { |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 95 | struct config_group group; |
| 96 | unsigned int cl_tcp_port; |
| 97 | unsigned int cl_buffer_size; |
| 98 | unsigned int cl_rsbtbl_size; |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 99 | unsigned int cl_recover_timer; |
| 100 | unsigned int cl_toss_secs; |
| 101 | unsigned int cl_scan_secs; |
| 102 | unsigned int cl_log_debug; |
Patrick Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 103 | unsigned int cl_protocol; |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 104 | unsigned int cl_timewarn_cs; |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 105 | unsigned int cl_waitwarn_us; |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 106 | unsigned int cl_new_rsb_count; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 107 | unsigned int cl_recover_callbacks; |
| 108 | char cl_cluster_name[DLM_LOCKSPACE_LEN]; |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | enum { |
| 112 | CLUSTER_ATTR_TCP_PORT = 0, |
| 113 | CLUSTER_ATTR_BUFFER_SIZE, |
| 114 | CLUSTER_ATTR_RSBTBL_SIZE, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 115 | CLUSTER_ATTR_RECOVER_TIMER, |
| 116 | CLUSTER_ATTR_TOSS_SECS, |
| 117 | CLUSTER_ATTR_SCAN_SECS, |
| 118 | CLUSTER_ATTR_LOG_DEBUG, |
Patrick Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 119 | CLUSTER_ATTR_PROTOCOL, |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 120 | CLUSTER_ATTR_TIMEWARN_CS, |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 121 | CLUSTER_ATTR_WAITWARN_US, |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 122 | CLUSTER_ATTR_NEW_RSB_COUNT, |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 123 | CLUSTER_ATTR_RECOVER_CALLBACKS, |
| 124 | CLUSTER_ATTR_CLUSTER_NAME, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | struct cluster_attribute { |
| 128 | struct configfs_attribute attr; |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 129 | ssize_t (*show)(struct dlm_cluster *, char *); |
| 130 | ssize_t (*store)(struct dlm_cluster *, const char *, size_t); |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 131 | }; |
| 132 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 133 | static 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 | |
| 138 | static 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 | |
| 146 | static 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 Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 154 | static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field, |
Harvey Harrison | 5416b70 | 2008-02-13 16:54:29 -0800 | [diff] [blame] | 155 | int *info_field, int check_zero, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 156 | 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 174 | #define CLUSTER_ATTR(name, check_zero) \ |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 175 | static ssize_t name##_write(struct dlm_cluster *cl, const char *buf, size_t len) \ |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 176 | { \ |
| 177 | return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \ |
| 178 | check_zero, buf, len); \ |
| 179 | } \ |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 180 | static ssize_t name##_read(struct dlm_cluster *cl, char *buf) \ |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 181 | { \ |
| 182 | return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \ |
| 183 | } \ |
| 184 | static struct cluster_attribute cluster_attr_##name = \ |
| 185 | __CONFIGFS_ATTR(name, 0644, name##_read, name##_write) |
| 186 | |
| 187 | CLUSTER_ATTR(tcp_port, 1); |
| 188 | CLUSTER_ATTR(buffer_size, 1); |
| 189 | CLUSTER_ATTR(rsbtbl_size, 1); |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 190 | CLUSTER_ATTR(recover_timer, 1); |
| 191 | CLUSTER_ATTR(toss_secs, 1); |
| 192 | CLUSTER_ATTR(scan_secs, 1); |
| 193 | CLUSTER_ATTR(log_debug, 0); |
Patrick Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 194 | CLUSTER_ATTR(protocol, 0); |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 195 | CLUSTER_ATTR(timewarn_cs, 1); |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 196 | CLUSTER_ATTR(waitwarn_us, 0); |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 197 | CLUSTER_ATTR(new_rsb_count, 0); |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 198 | CLUSTER_ATTR(recover_callbacks, 0); |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 199 | |
| 200 | static 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 204 | [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 Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 208 | [CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol.attr, |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 209 | [CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs.attr, |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 210 | [CLUSTER_ATTR_WAITWARN_US] = &cluster_attr_waitwarn_us.attr, |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 211 | [CLUSTER_ATTR_NEW_RSB_COUNT] = &cluster_attr_new_rsb_count.attr, |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 212 | [CLUSTER_ATTR_RECOVER_CALLBACKS] = &cluster_attr_recover_callbacks.attr, |
| 213 | [CLUSTER_ATTR_CLUSTER_NAME] = &cluster_attr_cluster_name.attr, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 214 | NULL, |
| 215 | }; |
| 216 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 217 | enum { |
| 218 | COMM_ATTR_NODEID = 0, |
| 219 | COMM_ATTR_LOCAL, |
| 220 | COMM_ATTR_ADDR, |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 221 | COMM_ATTR_ADDR_LIST, |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | struct comm_attribute { |
| 225 | struct configfs_attribute attr; |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 226 | ssize_t (*show)(struct dlm_comm *, char *); |
| 227 | ssize_t (*store)(struct dlm_comm *, const char *, size_t); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 228 | }; |
| 229 | |
| 230 | static 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 | |
| 238 | static 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 | |
| 246 | static struct comm_attribute comm_attr_addr = { |
| 247 | .attr = { .ca_owner = THIS_MODULE, |
| 248 | .ca_name = "addr", |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 249 | .ca_mode = S_IWUSR }, |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 250 | .store = comm_addr_write, |
| 251 | }; |
| 252 | |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 253 | static 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 Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 260 | static 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 YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 264 | [COMM_ATTR_ADDR_LIST] = &comm_attr_addr_list.attr, |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 265 | NULL, |
| 266 | }; |
| 267 | |
| 268 | enum { |
| 269 | NODE_ATTR_NODEID = 0, |
| 270 | NODE_ATTR_WEIGHT, |
| 271 | }; |
| 272 | |
| 273 | struct node_attribute { |
| 274 | struct configfs_attribute attr; |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 275 | ssize_t (*show)(struct dlm_node *, char *); |
| 276 | ssize_t (*store)(struct dlm_node *, const char *, size_t); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | static 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 | |
| 287 | static 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 | |
| 295 | static 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 Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 301 | struct dlm_clusters { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 302 | struct configfs_subsystem subsys; |
| 303 | }; |
| 304 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 305 | struct dlm_spaces { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 306 | struct config_group ss_group; |
| 307 | }; |
| 308 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 309 | struct dlm_space { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 310 | struct config_group group; |
| 311 | struct list_head members; |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 312 | struct mutex members_lock; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 313 | int members_count; |
| 314 | }; |
| 315 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 316 | struct dlm_comms { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 317 | struct config_group cs_group; |
| 318 | }; |
| 319 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 320 | struct dlm_comm { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 321 | struct config_item item; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 322 | int seq; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 323 | int nodeid; |
| 324 | int local; |
| 325 | int addr_count; |
| 326 | struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT]; |
| 327 | }; |
| 328 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 329 | struct dlm_nodes { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 330 | struct config_group ns_group; |
| 331 | }; |
| 332 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 333 | struct dlm_node { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 334 | struct config_item item; |
| 335 | struct list_head list; /* space->members */ |
| 336 | int nodeid; |
| 337 | int weight; |
David Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 338 | int new; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 339 | int comm_seq; /* copy of cm->seq when nd->nodeid is set */ |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 340 | }; |
| 341 | |
| 342 | static struct configfs_group_operations clusters_ops = { |
| 343 | .make_group = make_cluster, |
| 344 | .drop_item = drop_cluster, |
| 345 | }; |
| 346 | |
| 347 | static struct configfs_item_operations cluster_ops = { |
| 348 | .release = release_cluster, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 349 | .show_attribute = show_cluster, |
| 350 | .store_attribute = store_cluster, |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | static struct configfs_group_operations spaces_ops = { |
| 354 | .make_group = make_space, |
| 355 | .drop_item = drop_space, |
| 356 | }; |
| 357 | |
| 358 | static struct configfs_item_operations space_ops = { |
| 359 | .release = release_space, |
| 360 | }; |
| 361 | |
| 362 | static struct configfs_group_operations comms_ops = { |
| 363 | .make_item = make_comm, |
| 364 | .drop_item = drop_comm, |
| 365 | }; |
| 366 | |
| 367 | static struct configfs_item_operations comm_ops = { |
| 368 | .release = release_comm, |
| 369 | .show_attribute = show_comm, |
| 370 | .store_attribute = store_comm, |
| 371 | }; |
| 372 | |
| 373 | static struct configfs_group_operations nodes_ops = { |
| 374 | .make_item = make_node, |
| 375 | .drop_item = drop_node, |
| 376 | }; |
| 377 | |
| 378 | static struct configfs_item_operations node_ops = { |
| 379 | .release = release_node, |
| 380 | .show_attribute = show_node, |
| 381 | .store_attribute = store_node, |
| 382 | }; |
| 383 | |
| 384 | static struct config_item_type clusters_type = { |
| 385 | .ct_group_ops = &clusters_ops, |
| 386 | .ct_owner = THIS_MODULE, |
| 387 | }; |
| 388 | |
| 389 | static struct config_item_type cluster_type = { |
| 390 | .ct_item_ops = &cluster_ops, |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 391 | .ct_attrs = cluster_attrs, |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 392 | .ct_owner = THIS_MODULE, |
| 393 | }; |
| 394 | |
| 395 | static struct config_item_type spaces_type = { |
| 396 | .ct_group_ops = &spaces_ops, |
| 397 | .ct_owner = THIS_MODULE, |
| 398 | }; |
| 399 | |
| 400 | static struct config_item_type space_type = { |
| 401 | .ct_item_ops = &space_ops, |
| 402 | .ct_owner = THIS_MODULE, |
| 403 | }; |
| 404 | |
| 405 | static struct config_item_type comms_type = { |
| 406 | .ct_group_ops = &comms_ops, |
| 407 | .ct_owner = THIS_MODULE, |
| 408 | }; |
| 409 | |
| 410 | static struct config_item_type comm_type = { |
| 411 | .ct_item_ops = &comm_ops, |
| 412 | .ct_attrs = comm_attrs, |
| 413 | .ct_owner = THIS_MODULE, |
| 414 | }; |
| 415 | |
| 416 | static struct config_item_type nodes_type = { |
| 417 | .ct_group_ops = &nodes_ops, |
| 418 | .ct_owner = THIS_MODULE, |
| 419 | }; |
| 420 | |
| 421 | static 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 Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 427 | static struct dlm_cluster *config_item_to_cluster(struct config_item *i) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 428 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 429 | return i ? container_of(to_config_group(i), struct dlm_cluster, group) : |
| 430 | NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 433 | static struct dlm_space *config_item_to_space(struct config_item *i) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 434 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 435 | return i ? container_of(to_config_group(i), struct dlm_space, group) : |
| 436 | NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 437 | } |
| 438 | |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 439 | static struct dlm_comm *config_item_to_comm(struct config_item *i) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 440 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 441 | return i ? container_of(i, struct dlm_comm, item) : NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 442 | } |
| 443 | |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 444 | static struct dlm_node *config_item_to_node(struct config_item *i) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 445 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 446 | return i ? container_of(i, struct dlm_node, item) : NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 449 | static struct config_group *make_cluster(struct config_group *g, |
| 450 | const char *name) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 451 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 452 | struct dlm_cluster *cl = NULL; |
| 453 | struct dlm_spaces *sps = NULL; |
| 454 | struct dlm_comms *cms = NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 455 | void *gps = NULL; |
| 456 | |
David Teigland | 573c24c | 2009-11-30 16:34:43 -0600 | [diff] [blame] | 457 | 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 Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 461 | |
| 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 474 | 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 477 | 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 Teigland | 0b7cac0 | 2007-05-29 08:47:51 -0500 | [diff] [blame] | 481 | cl->cl_protocol = dlm_config.ci_protocol; |
David Teigland | 84d8cd6 | 2007-05-29 08:44:23 -0500 | [diff] [blame] | 482 | cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs; |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 483 | cl->cl_waitwarn_us = dlm_config.ci_waitwarn_us; |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 484 | cl->cl_new_rsb_count = dlm_config.ci_new_rsb_count; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 485 | 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 488 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 489 | space_list = &sps->ss_group; |
| 490 | comm_list = &cms->cs_group; |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 491 | return &cl->group; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 492 | |
| 493 | fail: |
| 494 | kfree(cl); |
| 495 | kfree(gps); |
| 496 | kfree(sps); |
| 497 | kfree(cms); |
Joel Becker | a6795e9 | 2008-07-17 15:21:29 -0700 | [diff] [blame] | 498 | return ERR_PTR(-ENOMEM); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static void drop_cluster(struct config_group *g, struct config_item *i) |
| 502 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 503 | struct dlm_cluster *cl = config_item_to_cluster(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 504 | 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 | |
| 519 | static void release_cluster(struct config_item *i) |
| 520 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 521 | struct dlm_cluster *cl = config_item_to_cluster(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 522 | kfree(cl->group.default_groups); |
| 523 | kfree(cl); |
| 524 | } |
| 525 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 526 | static struct config_group *make_space(struct config_group *g, const char *name) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 527 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 528 | struct dlm_space *sp = NULL; |
| 529 | struct dlm_nodes *nds = NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 530 | void *gps = NULL; |
| 531 | |
David Teigland | 573c24c | 2009-11-30 16:34:43 -0600 | [diff] [blame] | 532 | 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 Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 535 | |
| 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 Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 547 | mutex_init(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 548 | sp->members_count = 0; |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 549 | return &sp->group; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 550 | |
| 551 | fail: |
| 552 | kfree(sp); |
| 553 | kfree(gps); |
| 554 | kfree(nds); |
Joel Becker | a6795e9 | 2008-07-17 15:21:29 -0700 | [diff] [blame] | 555 | return ERR_PTR(-ENOMEM); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | static void drop_space(struct config_group *g, struct config_item *i) |
| 559 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 560 | struct dlm_space *sp = config_item_to_space(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 561 | 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 | |
| 575 | static void release_space(struct config_item *i) |
| 576 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 577 | struct dlm_space *sp = config_item_to_space(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 578 | kfree(sp->group.default_groups); |
| 579 | kfree(sp); |
| 580 | } |
| 581 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 582 | static struct config_item *make_comm(struct config_group *g, const char *name) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 583 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 584 | struct dlm_comm *cm; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 585 | |
David Teigland | 573c24c | 2009-11-30 16:34:43 -0600 | [diff] [blame] | 586 | cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 587 | if (!cm) |
Joel Becker | a6795e9 | 2008-07-17 15:21:29 -0700 | [diff] [blame] | 588 | return ERR_PTR(-ENOMEM); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 589 | |
| 590 | config_item_init_type_name(&cm->item, name, &comm_type); |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 591 | |
| 592 | cm->seq = dlm_comm_count++; |
| 593 | if (!cm->seq) |
| 594 | cm->seq = dlm_comm_count++; |
| 595 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 596 | cm->nodeid = -1; |
| 597 | cm->local = 0; |
| 598 | cm->addr_count = 0; |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 599 | return &cm->item; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | static void drop_comm(struct config_group *g, struct config_item *i) |
| 603 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 604 | struct dlm_comm *cm = config_item_to_comm(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 605 | if (local_comm == cm) |
| 606 | local_comm = NULL; |
David Teigland | 1c032c0 | 2006-04-28 10:50:41 -0400 | [diff] [blame] | 607 | dlm_lowcomms_close(cm->nodeid); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 608 | while (cm->addr_count--) |
| 609 | kfree(cm->addr[cm->addr_count]); |
| 610 | config_item_put(i); |
| 611 | } |
| 612 | |
| 613 | static void release_comm(struct config_item *i) |
| 614 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 615 | struct dlm_comm *cm = config_item_to_comm(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 616 | kfree(cm); |
| 617 | } |
| 618 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 619 | static struct config_item *make_node(struct config_group *g, const char *name) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 620 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 621 | struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 622 | struct dlm_node *nd; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 623 | |
David Teigland | 573c24c | 2009-11-30 16:34:43 -0600 | [diff] [blame] | 624 | nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 625 | if (!nd) |
Joel Becker | a6795e9 | 2008-07-17 15:21:29 -0700 | [diff] [blame] | 626 | return ERR_PTR(-ENOMEM); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 627 | |
| 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 Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 631 | nd->new = 1; /* set to 0 once it's been read by dlm_nodeid_list() */ |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 632 | |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 633 | mutex_lock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 634 | list_add(&nd->list, &sp->members); |
| 635 | sp->members_count++; |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 636 | mutex_unlock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 637 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 638 | return &nd->item; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | static void drop_node(struct config_group *g, struct config_item *i) |
| 642 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 643 | struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); |
| 644 | struct dlm_node *nd = config_item_to_node(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 645 | |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 646 | mutex_lock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 647 | list_del(&nd->list); |
| 648 | sp->members_count--; |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 649 | mutex_unlock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 650 | |
| 651 | config_item_put(i); |
| 652 | } |
| 653 | |
| 654 | static void release_node(struct config_item *i) |
| 655 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 656 | struct dlm_node *nd = config_item_to_node(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 657 | kfree(nd); |
| 658 | } |
| 659 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 660 | static struct dlm_clusters clusters_root = { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 661 | .subsys = { |
| 662 | .su_group = { |
| 663 | .cg_item = { |
| 664 | .ci_namebuf = "dlm", |
| 665 | .ci_type = &clusters_type, |
| 666 | }, |
| 667 | }, |
| 668 | }, |
| 669 | }; |
| 670 | |
Denis Cheng | 3072717 | 2008-02-02 01:53:46 +0800 | [diff] [blame] | 671 | int __init dlm_config_init(void) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 672 | { |
| 673 | config_group_init(&clusters_root.subsys.su_group); |
Joel Becker | e6bd07a | 2007-07-06 23:33:17 -0700 | [diff] [blame] | 674 | mutex_init(&clusters_root.subsys.su_mutex); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 675 | return configfs_register_subsystem(&clusters_root.subsys); |
| 676 | } |
| 677 | |
| 678 | void 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 Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 687 | static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a, |
| 688 | char *buf) |
| 689 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 690 | struct dlm_cluster *cl = config_item_to_cluster(i); |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 691 | struct cluster_attribute *cla = |
| 692 | container_of(a, struct cluster_attribute, attr); |
| 693 | return cla->show ? cla->show(cl, buf) : 0; |
| 694 | } |
| 695 | |
| 696 | static ssize_t store_cluster(struct config_item *i, |
| 697 | struct configfs_attribute *a, |
| 698 | const char *buf, size_t len) |
| 699 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 700 | struct dlm_cluster *cl = config_item_to_cluster(i); |
David Teigland | d200778 | 2007-01-09 09:46:02 -0600 | [diff] [blame] | 701 | 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 Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 706 | static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a, |
| 707 | char *buf) |
| 708 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 709 | struct dlm_comm *cm = config_item_to_comm(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 710 | struct comm_attribute *cma = |
| 711 | container_of(a, struct comm_attribute, attr); |
| 712 | return cma->show ? cma->show(cm, buf) : 0; |
| 713 | } |
| 714 | |
| 715 | static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a, |
| 716 | const char *buf, size_t len) |
| 717 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 718 | struct dlm_comm *cm = config_item_to_comm(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 719 | 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 Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 724 | static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 725 | { |
| 726 | return sprintf(buf, "%d\n", cm->nodeid); |
| 727 | } |
| 728 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 729 | static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf, |
| 730 | size_t len) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 731 | { |
| 732 | cm->nodeid = simple_strtol(buf, NULL, 0); |
| 733 | return len; |
| 734 | } |
| 735 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 736 | static ssize_t comm_local_read(struct dlm_comm *cm, char *buf) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 737 | { |
| 738 | return sprintf(buf, "%d\n", cm->local); |
| 739 | } |
| 740 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 741 | static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf, |
| 742 | size_t len) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 743 | { |
| 744 | cm->local= simple_strtol(buf, NULL, 0); |
| 745 | if (cm->local && !local_comm) |
| 746 | local_comm = cm; |
| 747 | return len; |
| 748 | } |
| 749 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 750 | static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, size_t len) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 751 | { |
| 752 | struct sockaddr_storage *addr; |
| 753 | |
| 754 | if (len != sizeof(struct sockaddr_storage)) |
| 755 | return -EINVAL; |
| 756 | |
| 757 | if (cm->addr_count >= DLM_MAX_ADDR_COUNT) |
| 758 | return -ENOSPC; |
| 759 | |
David Teigland | 573c24c | 2009-11-30 16:34:43 -0600 | [diff] [blame] | 760 | addr = kzalloc(sizeof(*addr), GFP_NOFS); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 761 | if (!addr) |
| 762 | return -ENOMEM; |
| 763 | |
| 764 | memcpy(addr, buf, len); |
| 765 | cm->addr[cm->addr_count++] = addr; |
| 766 | return len; |
| 767 | } |
| 768 | |
Masatake YAMATO | 55b3286 | 2011-06-30 21:37:10 +0900 | [diff] [blame] | 769 | static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf) |
| 770 | { |
| 771 | ssize_t s; |
| 772 | ssize_t allowance; |
| 773 | int i; |
| 774 | struct sockaddr_storage *addr; |
| 775 | struct sockaddr_in *addr_in; |
| 776 | struct sockaddr_in6 *addr_in6; |
| 777 | |
| 778 | /* Taken from ip6_addr_string() defined in lib/vsprintf.c */ |
| 779 | char buf0[sizeof("AF_INET6 xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255\n")]; |
| 780 | |
| 781 | |
| 782 | /* Derived from SIMPLE_ATTR_SIZE of fs/configfs/file.c */ |
| 783 | allowance = 4096; |
| 784 | buf[0] = '\0'; |
| 785 | |
| 786 | for (i = 0; i < cm->addr_count; i++) { |
| 787 | addr = cm->addr[i]; |
| 788 | |
| 789 | switch(addr->ss_family) { |
| 790 | case AF_INET: |
| 791 | addr_in = (struct sockaddr_in *)addr; |
| 792 | s = sprintf(buf0, "AF_INET %pI4\n", &addr_in->sin_addr.s_addr); |
| 793 | break; |
| 794 | case AF_INET6: |
| 795 | addr_in6 = (struct sockaddr_in6 *)addr; |
| 796 | s = sprintf(buf0, "AF_INET6 %pI6\n", &addr_in6->sin6_addr); |
| 797 | break; |
| 798 | default: |
| 799 | s = sprintf(buf0, "%s\n", "<UNKNOWN>"); |
| 800 | break; |
| 801 | } |
| 802 | allowance -= s; |
| 803 | if (allowance >= 0) |
| 804 | strcat(buf, buf0); |
| 805 | else { |
| 806 | allowance += s; |
| 807 | break; |
| 808 | } |
| 809 | } |
| 810 | return 4096 - allowance; |
| 811 | } |
| 812 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 813 | static ssize_t show_node(struct config_item *i, struct configfs_attribute *a, |
| 814 | char *buf) |
| 815 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 816 | struct dlm_node *nd = config_item_to_node(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 817 | struct node_attribute *nda = |
| 818 | container_of(a, struct node_attribute, attr); |
| 819 | return nda->show ? nda->show(nd, buf) : 0; |
| 820 | } |
| 821 | |
| 822 | static ssize_t store_node(struct config_item *i, struct configfs_attribute *a, |
| 823 | const char *buf, size_t len) |
| 824 | { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 825 | struct dlm_node *nd = config_item_to_node(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 826 | struct node_attribute *nda = |
| 827 | container_of(a, struct node_attribute, attr); |
| 828 | return nda->store ? nda->store(nd, buf, len) : -EINVAL; |
| 829 | } |
| 830 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 831 | static ssize_t node_nodeid_read(struct dlm_node *nd, char *buf) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 832 | { |
| 833 | return sprintf(buf, "%d\n", nd->nodeid); |
| 834 | } |
| 835 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 836 | static ssize_t node_nodeid_write(struct dlm_node *nd, const char *buf, |
| 837 | size_t len) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 838 | { |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 839 | uint32_t seq = 0; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 840 | nd->nodeid = simple_strtol(buf, NULL, 0); |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 841 | dlm_comm_seq(nd->nodeid, &seq); |
| 842 | nd->comm_seq = seq; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 843 | return len; |
| 844 | } |
| 845 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 846 | static ssize_t node_weight_read(struct dlm_node *nd, char *buf) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 847 | { |
| 848 | return sprintf(buf, "%d\n", nd->weight); |
| 849 | } |
| 850 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 851 | static ssize_t node_weight_write(struct dlm_node *nd, const char *buf, |
| 852 | size_t len) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 853 | { |
| 854 | nd->weight = simple_strtol(buf, NULL, 0); |
| 855 | return len; |
| 856 | } |
| 857 | |
| 858 | /* |
| 859 | * Functions for the dlm to get the info that's been configured |
| 860 | */ |
| 861 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 862 | static struct dlm_space *get_space(char *name) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 863 | { |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 864 | struct config_item *i; |
| 865 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 866 | if (!space_list) |
| 867 | return NULL; |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 868 | |
Joel Becker | e6bd07a | 2007-07-06 23:33:17 -0700 | [diff] [blame] | 869 | mutex_lock(&space_list->cg_subsys->su_mutex); |
Satyam Sharma | 3fe6c5c | 2007-07-04 16:37:16 +0530 | [diff] [blame] | 870 | i = config_group_find_item(space_list, name); |
Joel Becker | e6bd07a | 2007-07-06 23:33:17 -0700 | [diff] [blame] | 871 | mutex_unlock(&space_list->cg_subsys->su_mutex); |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 872 | |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 873 | return config_item_to_space(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 874 | } |
| 875 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 876 | static void put_space(struct dlm_space *sp) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 877 | { |
| 878 | config_item_put(&sp->group.cg_item); |
| 879 | } |
| 880 | |
David Teigland | 44be6fd | 2008-08-28 11:36:19 -0500 | [diff] [blame] | 881 | static int addr_compare(struct sockaddr_storage *x, struct sockaddr_storage *y) |
| 882 | { |
| 883 | switch (x->ss_family) { |
| 884 | case AF_INET: { |
| 885 | struct sockaddr_in *sinx = (struct sockaddr_in *)x; |
| 886 | struct sockaddr_in *siny = (struct sockaddr_in *)y; |
| 887 | if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr) |
| 888 | return 0; |
| 889 | if (sinx->sin_port != siny->sin_port) |
| 890 | return 0; |
| 891 | break; |
| 892 | } |
| 893 | case AF_INET6: { |
| 894 | struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x; |
| 895 | struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y; |
| 896 | if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr)) |
| 897 | return 0; |
| 898 | if (sinx->sin6_port != siny->sin6_port) |
| 899 | return 0; |
| 900 | break; |
| 901 | } |
| 902 | default: |
| 903 | return 0; |
| 904 | } |
| 905 | return 1; |
| 906 | } |
| 907 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 908 | static struct dlm_comm *get_comm(int nodeid, struct sockaddr_storage *addr) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 909 | { |
| 910 | struct config_item *i; |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 911 | struct dlm_comm *cm = NULL; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 912 | int found = 0; |
| 913 | |
| 914 | if (!comm_list) |
| 915 | return NULL; |
| 916 | |
Joel Becker | e6bd07a | 2007-07-06 23:33:17 -0700 | [diff] [blame] | 917 | mutex_lock(&clusters_root.subsys.su_mutex); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 918 | |
| 919 | list_for_each_entry(i, &comm_list->cg_children, ci_entry) { |
Andrew Morton | 27eccf4 | 2008-09-05 08:42:08 -0500 | [diff] [blame] | 920 | cm = config_item_to_comm(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 921 | |
| 922 | if (nodeid) { |
| 923 | if (cm->nodeid != nodeid) |
| 924 | continue; |
| 925 | found = 1; |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 926 | config_item_get(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 927 | break; |
| 928 | } else { |
David Teigland | 44be6fd | 2008-08-28 11:36:19 -0500 | [diff] [blame] | 929 | if (!cm->addr_count || !addr_compare(cm->addr[0], addr)) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 930 | continue; |
| 931 | found = 1; |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 932 | config_item_get(i); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 933 | break; |
| 934 | } |
| 935 | } |
Joel Becker | e6bd07a | 2007-07-06 23:33:17 -0700 | [diff] [blame] | 936 | mutex_unlock(&clusters_root.subsys.su_mutex); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 937 | |
Satyam Sharma | 3168b07 | 2007-05-08 09:18:58 +0100 | [diff] [blame] | 938 | if (!found) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 939 | cm = NULL; |
| 940 | return cm; |
| 941 | } |
| 942 | |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 943 | static void put_comm(struct dlm_comm *cm) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 944 | { |
| 945 | config_item_put(&cm->item); |
| 946 | } |
| 947 | |
| 948 | /* caller must free mem */ |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 949 | int dlm_config_nodes(char *lsname, struct dlm_config_node **nodes_out, |
| 950 | int *count_out) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 951 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 952 | struct dlm_space *sp; |
| 953 | struct dlm_node *nd; |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 954 | struct dlm_config_node *nodes, *node; |
| 955 | int rv, count; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 956 | |
| 957 | sp = get_space(lsname); |
| 958 | if (!sp) |
| 959 | return -EEXIST; |
| 960 | |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 961 | mutex_lock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 962 | if (!sp->members_count) { |
David Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 963 | rv = -EINVAL; |
| 964 | printk(KERN_ERR "dlm: zero members_count\n"); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 965 | goto out; |
| 966 | } |
| 967 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 968 | count = sp->members_count; |
David Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 969 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 970 | nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS); |
| 971 | if (!nodes) { |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 972 | rv = -ENOMEM; |
| 973 | goto out; |
| 974 | } |
| 975 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 976 | node = nodes; |
David Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 977 | list_for_each_entry(nd, &sp->members, list) { |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 978 | node->nodeid = nd->nodeid; |
| 979 | node->weight = nd->weight; |
| 980 | node->new = nd->new; |
| 981 | node->comm_seq = nd->comm_seq; |
| 982 | node++; |
| 983 | |
| 984 | nd->new = 0; |
David Teigland | d44e0fc | 2008-03-18 14:22:11 -0500 | [diff] [blame] | 985 | } |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 986 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 987 | *count_out = count; |
| 988 | *nodes_out = nodes; |
| 989 | rv = 0; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 990 | out: |
David Teigland | 9013592 | 2006-01-20 08:47:07 +0000 | [diff] [blame] | 991 | mutex_unlock(&sp->members_lock); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 992 | put_space(sp); |
| 993 | return rv; |
| 994 | } |
| 995 | |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 996 | int dlm_comm_seq(int nodeid, uint32_t *seq) |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 997 | { |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 998 | struct dlm_comm *cm = get_comm(nodeid, NULL); |
| 999 | if (!cm) |
| 1000 | return -EEXIST; |
| 1001 | *seq = cm->seq; |
| 1002 | put_comm(cm); |
| 1003 | return 0; |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | int dlm_nodeid_to_addr(int nodeid, struct sockaddr_storage *addr) |
| 1007 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 1008 | struct dlm_comm *cm = get_comm(nodeid, NULL); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1009 | if (!cm) |
| 1010 | return -EEXIST; |
| 1011 | if (!cm->addr_count) |
| 1012 | return -ENOENT; |
| 1013 | memcpy(addr, cm->addr[0], sizeof(*addr)); |
| 1014 | put_comm(cm); |
| 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | int dlm_addr_to_nodeid(struct sockaddr_storage *addr, int *nodeid) |
| 1019 | { |
David Teigland | 5140934 | 2008-07-31 09:31:53 -0500 | [diff] [blame] | 1020 | struct dlm_comm *cm = get_comm(0, addr); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1021 | if (!cm) |
| 1022 | return -EEXIST; |
| 1023 | *nodeid = cm->nodeid; |
| 1024 | put_comm(cm); |
| 1025 | return 0; |
| 1026 | } |
| 1027 | |
| 1028 | int dlm_our_nodeid(void) |
| 1029 | { |
| 1030 | return local_comm ? local_comm->nodeid : 0; |
| 1031 | } |
| 1032 | |
| 1033 | /* num 0 is first addr, num 1 is second addr */ |
| 1034 | int dlm_our_addr(struct sockaddr_storage *addr, int num) |
| 1035 | { |
| 1036 | if (!local_comm) |
| 1037 | return -1; |
| 1038 | if (num + 1 > local_comm->addr_count) |
| 1039 | return -1; |
| 1040 | memcpy(addr, local_comm->addr[num], sizeof(*addr)); |
| 1041 | return 0; |
| 1042 | } |
| 1043 | |
| 1044 | /* Config file defaults */ |
| 1045 | #define DEFAULT_TCP_PORT 21064 |
| 1046 | #define DEFAULT_BUFFER_SIZE 4096 |
David Teigland | e3853a9 | 2011-03-10 13:07:17 -0600 | [diff] [blame] | 1047 | #define DEFAULT_RSBTBL_SIZE 1024 |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1048 | #define DEFAULT_RECOVER_TIMER 5 |
| 1049 | #define DEFAULT_TOSS_SECS 10 |
| 1050 | #define DEFAULT_SCAN_SECS 5 |
David Teigland | 99fc648 | 2007-01-09 09:44:01 -0600 | [diff] [blame] | 1051 | #define DEFAULT_LOG_DEBUG 0 |
Patrick Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 1052 | #define DEFAULT_PROTOCOL 0 |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 1053 | #define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */ |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 1054 | #define DEFAULT_WAITWARN_US 0 |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 1055 | #define DEFAULT_NEW_RSB_COUNT 128 |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 1056 | #define DEFAULT_RECOVER_CALLBACKS 0 |
| 1057 | #define DEFAULT_CLUSTER_NAME "" |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1058 | |
| 1059 | struct dlm_config_info dlm_config = { |
David Teigland | 68c817a | 2007-01-09 09:41:48 -0600 | [diff] [blame] | 1060 | .ci_tcp_port = DEFAULT_TCP_PORT, |
| 1061 | .ci_buffer_size = DEFAULT_BUFFER_SIZE, |
| 1062 | .ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE, |
David Teigland | 68c817a | 2007-01-09 09:41:48 -0600 | [diff] [blame] | 1063 | .ci_recover_timer = DEFAULT_RECOVER_TIMER, |
| 1064 | .ci_toss_secs = DEFAULT_TOSS_SECS, |
David Teigland | 99fc648 | 2007-01-09 09:44:01 -0600 | [diff] [blame] | 1065 | .ci_scan_secs = DEFAULT_SCAN_SECS, |
Patrick Caulfield | 6ed7257b | 2007-04-17 15:39:57 +0100 | [diff] [blame] | 1066 | .ci_log_debug = DEFAULT_LOG_DEBUG, |
David Teigland | 3ae1acf | 2007-05-18 08:59:31 -0500 | [diff] [blame] | 1067 | .ci_protocol = DEFAULT_PROTOCOL, |
David Teigland | c6ff669 | 2011-03-28 14:17:26 -0500 | [diff] [blame] | 1068 | .ci_timewarn_cs = DEFAULT_TIMEWARN_CS, |
David Teigland | 3881ac0 | 2011-07-07 14:05:03 -0500 | [diff] [blame] | 1069 | .ci_waitwarn_us = DEFAULT_WAITWARN_US, |
David Teigland | 60f98d1 | 2011-11-02 14:30:58 -0500 | [diff] [blame] | 1070 | .ci_new_rsb_count = DEFAULT_NEW_RSB_COUNT, |
| 1071 | .ci_recover_callbacks = DEFAULT_RECOVER_CALLBACKS, |
| 1072 | .ci_cluster_name = DEFAULT_CLUSTER_NAME |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1073 | }; |
| 1074 | |