Blame view

fs/dlm/config.c 23.9 KB
e7fd41792   David Teigland   [DLM] The core of...
1
2
3
4
  /******************************************************************************
  *******************************************************************************
  **
  **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
5
  **  Copyright (C) 2004-2007 Red Hat, Inc.  All rights reserved.
e7fd41792   David Teigland   [DLM] The core of...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  **
  **  This copyrighted material is made available to anyone wishing to use,
  **  modify, copy, or redistribute it subject to the terms and conditions
  **  of the GNU General Public License v.2.
  **
  *******************************************************************************
  ******************************************************************************/
  
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/configfs.h>
  #include <net/sock.h>
  
  #include "config.h"
1c032c031   David Teigland   [DLM] PATCH 2/3 d...
20
  #include "lowcomms.h"
e7fd41792   David Teigland   [DLM] The core of...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  
  /*
   * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/nodeid
   * /config/dlm/<cluster>/spaces/<space>/nodes/<node>/weight
   * /config/dlm/<cluster>/comms/<comm>/nodeid
   * /config/dlm/<cluster>/comms/<comm>/local
   * /config/dlm/<cluster>/comms/<comm>/addr
   * The <cluster> level is useless, but I haven't figured out how to avoid it.
   */
  
  static struct config_group *space_list;
  static struct config_group *comm_list;
  static struct comm *local_comm;
  
  struct clusters;
  struct cluster;
  struct spaces;
  struct space;
  struct comms;
  struct comm;
  struct nodes;
  struct node;
  
  static struct config_group *make_cluster(struct config_group *, const char *);
  static void drop_cluster(struct config_group *, struct config_item *);
  static void release_cluster(struct config_item *);
  static struct config_group *make_space(struct config_group *, const char *);
  static void drop_space(struct config_group *, struct config_item *);
  static void release_space(struct config_item *);
  static struct config_item *make_comm(struct config_group *, const char *);
  static void drop_comm(struct config_group *, struct config_item *);
  static void release_comm(struct config_item *);
  static struct config_item *make_node(struct config_group *, const char *);
  static void drop_node(struct config_group *, struct config_item *);
  static void release_node(struct config_item *);
d200778e1   David Teigland   [DLM] expose dlm_...
56
57
58
59
60
  static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
  			    char *buf);
  static ssize_t store_cluster(struct config_item *i,
  			     struct configfs_attribute *a,
  			     const char *buf, size_t len);
e7fd41792   David Teigland   [DLM] The core of...
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
  			 char *buf);
  static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
  			  const char *buf, size_t len);
  static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
  			 char *buf);
  static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
  			  const char *buf, size_t len);
  
  static ssize_t comm_nodeid_read(struct comm *cm, char *buf);
  static ssize_t comm_nodeid_write(struct comm *cm, const char *buf, size_t len);
  static ssize_t comm_local_read(struct comm *cm, char *buf);
  static ssize_t comm_local_write(struct comm *cm, const char *buf, size_t len);
  static ssize_t comm_addr_write(struct comm *cm, const char *buf, size_t len);
  static ssize_t node_nodeid_read(struct node *nd, char *buf);
  static ssize_t node_nodeid_write(struct node *nd, const char *buf, size_t len);
  static ssize_t node_weight_read(struct node *nd, char *buf);
  static ssize_t node_weight_write(struct node *nd, const char *buf, size_t len);
d200778e1   David Teigland   [DLM] expose dlm_...
79
80
81
82
83
84
85
86
87
88
89
  struct cluster {
  	struct config_group group;
  	unsigned int cl_tcp_port;
  	unsigned int cl_buffer_size;
  	unsigned int cl_rsbtbl_size;
  	unsigned int cl_lkbtbl_size;
  	unsigned int cl_dirtbl_size;
  	unsigned int cl_recover_timer;
  	unsigned int cl_toss_secs;
  	unsigned int cl_scan_secs;
  	unsigned int cl_log_debug;
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
90
  	unsigned int cl_protocol;
3ae1acf93   David Teigland   [DLM] add lock ti...
91
  	unsigned int cl_timewarn_cs;
d200778e1   David Teigland   [DLM] expose dlm_...
92
93
94
95
96
97
98
99
100
101
102
103
  };
  
  enum {
  	CLUSTER_ATTR_TCP_PORT = 0,
  	CLUSTER_ATTR_BUFFER_SIZE,
  	CLUSTER_ATTR_RSBTBL_SIZE,
  	CLUSTER_ATTR_LKBTBL_SIZE,
  	CLUSTER_ATTR_DIRTBL_SIZE,
  	CLUSTER_ATTR_RECOVER_TIMER,
  	CLUSTER_ATTR_TOSS_SECS,
  	CLUSTER_ATTR_SCAN_SECS,
  	CLUSTER_ATTR_LOG_DEBUG,
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
104
  	CLUSTER_ATTR_PROTOCOL,
3ae1acf93   David Teigland   [DLM] add lock ti...
105
  	CLUSTER_ATTR_TIMEWARN_CS,
d200778e1   David Teigland   [DLM] expose dlm_...
106
107
108
109
110
111
112
113
114
  };
  
  struct cluster_attribute {
  	struct configfs_attribute attr;
  	ssize_t (*show)(struct cluster *, char *);
  	ssize_t (*store)(struct cluster *, const char *, size_t);
  };
  
  static ssize_t cluster_set(struct cluster *cl, unsigned int *cl_field,
5416b704a   Harvey Harrison   dlm: match signed...
115
  			   int *info_field, int check_zero,
d200778e1   David Teigland   [DLM] expose dlm_...
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
  			   const char *buf, size_t len)
  {
  	unsigned int x;
  
  	if (!capable(CAP_SYS_ADMIN))
  		return -EACCES;
  
  	x = simple_strtoul(buf, NULL, 0);
  
  	if (check_zero && !x)
  		return -EINVAL;
  
  	*cl_field = x;
  	*info_field = x;
  
  	return len;
  }
d200778e1   David Teigland   [DLM] expose dlm_...
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  #define CLUSTER_ATTR(name, check_zero)                                        \
  static ssize_t name##_write(struct cluster *cl, const char *buf, size_t len)  \
  {                                                                             \
  	return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name,         \
  			   check_zero, buf, len);                             \
  }                                                                             \
  static ssize_t name##_read(struct cluster *cl, char *buf)                     \
  {                                                                             \
  	return snprintf(buf, PAGE_SIZE, "%u
  ", cl->cl_##name);               \
  }                                                                             \
  static struct cluster_attribute cluster_attr_##name =                         \
  __CONFIGFS_ATTR(name, 0644, name##_read, name##_write)
  
  CLUSTER_ATTR(tcp_port, 1);
  CLUSTER_ATTR(buffer_size, 1);
  CLUSTER_ATTR(rsbtbl_size, 1);
  CLUSTER_ATTR(lkbtbl_size, 1);
  CLUSTER_ATTR(dirtbl_size, 1);
  CLUSTER_ATTR(recover_timer, 1);
  CLUSTER_ATTR(toss_secs, 1);
  CLUSTER_ATTR(scan_secs, 1);
  CLUSTER_ATTR(log_debug, 0);
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
156
  CLUSTER_ATTR(protocol, 0);
3ae1acf93   David Teigland   [DLM] add lock ti...
157
  CLUSTER_ATTR(timewarn_cs, 1);
d200778e1   David Teigland   [DLM] expose dlm_...
158
159
160
161
162
163
164
165
166
167
168
  
  static struct configfs_attribute *cluster_attrs[] = {
  	[CLUSTER_ATTR_TCP_PORT] = &cluster_attr_tcp_port.attr,
  	[CLUSTER_ATTR_BUFFER_SIZE] = &cluster_attr_buffer_size.attr,
  	[CLUSTER_ATTR_RSBTBL_SIZE] = &cluster_attr_rsbtbl_size.attr,
  	[CLUSTER_ATTR_LKBTBL_SIZE] = &cluster_attr_lkbtbl_size.attr,
  	[CLUSTER_ATTR_DIRTBL_SIZE] = &cluster_attr_dirtbl_size.attr,
  	[CLUSTER_ATTR_RECOVER_TIMER] = &cluster_attr_recover_timer.attr,
  	[CLUSTER_ATTR_TOSS_SECS] = &cluster_attr_toss_secs.attr,
  	[CLUSTER_ATTR_SCAN_SECS] = &cluster_attr_scan_secs.attr,
  	[CLUSTER_ATTR_LOG_DEBUG] = &cluster_attr_log_debug.attr,
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
169
  	[CLUSTER_ATTR_PROTOCOL] = &cluster_attr_protocol.attr,
3ae1acf93   David Teigland   [DLM] add lock ti...
170
  	[CLUSTER_ATTR_TIMEWARN_CS] = &cluster_attr_timewarn_cs.attr,
d200778e1   David Teigland   [DLM] expose dlm_...
171
172
  	NULL,
  };
e7fd41792   David Teigland   [DLM] The core of...
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
  enum {
  	COMM_ATTR_NODEID = 0,
  	COMM_ATTR_LOCAL,
  	COMM_ATTR_ADDR,
  };
  
  struct comm_attribute {
  	struct configfs_attribute attr;
  	ssize_t (*show)(struct comm *, char *);
  	ssize_t (*store)(struct comm *, const char *, size_t);
  };
  
  static struct comm_attribute comm_attr_nodeid = {
  	.attr   = { .ca_owner = THIS_MODULE,
                      .ca_name = "nodeid",
                      .ca_mode = S_IRUGO | S_IWUSR },
  	.show   = comm_nodeid_read,
  	.store  = comm_nodeid_write,
  };
  
  static struct comm_attribute comm_attr_local = {
  	.attr   = { .ca_owner = THIS_MODULE,
                      .ca_name = "local",
                      .ca_mode = S_IRUGO | S_IWUSR },
  	.show   = comm_local_read,
  	.store  = comm_local_write,
  };
  
  static struct comm_attribute comm_attr_addr = {
  	.attr   = { .ca_owner = THIS_MODULE,
                      .ca_name = "addr",
                      .ca_mode = S_IRUGO | S_IWUSR },
  	.store  = comm_addr_write,
  };
  
  static struct configfs_attribute *comm_attrs[] = {
  	[COMM_ATTR_NODEID] = &comm_attr_nodeid.attr,
  	[COMM_ATTR_LOCAL] = &comm_attr_local.attr,
  	[COMM_ATTR_ADDR] = &comm_attr_addr.attr,
  	NULL,
  };
  
  enum {
  	NODE_ATTR_NODEID = 0,
  	NODE_ATTR_WEIGHT,
  };
  
  struct node_attribute {
  	struct configfs_attribute attr;
  	ssize_t (*show)(struct node *, char *);
  	ssize_t (*store)(struct node *, const char *, size_t);
  };
  
  static struct node_attribute node_attr_nodeid = {
  	.attr   = { .ca_owner = THIS_MODULE,
                      .ca_name = "nodeid",
                      .ca_mode = S_IRUGO | S_IWUSR },
  	.show   = node_nodeid_read,
  	.store  = node_nodeid_write,
  };
  
  static struct node_attribute node_attr_weight = {
  	.attr   = { .ca_owner = THIS_MODULE,
                      .ca_name = "weight",
                      .ca_mode = S_IRUGO | S_IWUSR },
  	.show   = node_weight_read,
  	.store  = node_weight_write,
  };
  
  static struct configfs_attribute *node_attrs[] = {
  	[NODE_ATTR_NODEID] = &node_attr_nodeid.attr,
  	[NODE_ATTR_WEIGHT] = &node_attr_weight.attr,
  	NULL,
  };
  
  struct clusters {
  	struct configfs_subsystem subsys;
  };
e7fd41792   David Teigland   [DLM] The core of...
251
252
253
254
255
256
257
  struct spaces {
  	struct config_group ss_group;
  };
  
  struct space {
  	struct config_group group;
  	struct list_head members;
901359256   David Teigland   [DLM] Update DLM ...
258
  	struct mutex members_lock;
e7fd41792   David Teigland   [DLM] The core of...
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
  	int members_count;
  };
  
  struct comms {
  	struct config_group cs_group;
  };
  
  struct comm {
  	struct config_item item;
  	int nodeid;
  	int local;
  	int addr_count;
  	struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
  };
  
  struct nodes {
  	struct config_group ns_group;
  };
  
  struct node {
  	struct config_item item;
  	struct list_head list; /* space->members */
  	int nodeid;
  	int weight;
d44e0fc70   David Teigland   dlm: recover node...
283
  	int new;
e7fd41792   David Teigland   [DLM] The core of...
284
285
286
287
288
289
290
291
292
  };
  
  static struct configfs_group_operations clusters_ops = {
  	.make_group = make_cluster,
  	.drop_item = drop_cluster,
  };
  
  static struct configfs_item_operations cluster_ops = {
  	.release = release_cluster,
d200778e1   David Teigland   [DLM] expose dlm_...
293
294
  	.show_attribute = show_cluster,
  	.store_attribute = store_cluster,
e7fd41792   David Teigland   [DLM] The core of...
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
  };
  
  static struct configfs_group_operations spaces_ops = {
  	.make_group = make_space,
  	.drop_item = drop_space,
  };
  
  static struct configfs_item_operations space_ops = {
  	.release = release_space,
  };
  
  static struct configfs_group_operations comms_ops = {
  	.make_item = make_comm,
  	.drop_item = drop_comm,
  };
  
  static struct configfs_item_operations comm_ops = {
  	.release = release_comm,
  	.show_attribute = show_comm,
  	.store_attribute = store_comm,
  };
  
  static struct configfs_group_operations nodes_ops = {
  	.make_item = make_node,
  	.drop_item = drop_node,
  };
  
  static struct configfs_item_operations node_ops = {
  	.release = release_node,
  	.show_attribute = show_node,
  	.store_attribute = store_node,
  };
  
  static struct config_item_type clusters_type = {
  	.ct_group_ops = &clusters_ops,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type cluster_type = {
  	.ct_item_ops = &cluster_ops,
d200778e1   David Teigland   [DLM] expose dlm_...
335
  	.ct_attrs = cluster_attrs,
e7fd41792   David Teigland   [DLM] The core of...
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type spaces_type = {
  	.ct_group_ops = &spaces_ops,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type space_type = {
  	.ct_item_ops = &space_ops,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type comms_type = {
  	.ct_group_ops = &comms_ops,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type comm_type = {
  	.ct_item_ops = &comm_ops,
  	.ct_attrs = comm_attrs,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type nodes_type = {
  	.ct_group_ops = &nodes_ops,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct config_item_type node_type = {
  	.ct_item_ops = &node_ops,
  	.ct_attrs = node_attrs,
  	.ct_owner = THIS_MODULE,
  };
  
  static struct cluster *to_cluster(struct config_item *i)
  {
  	return i ? container_of(to_config_group(i), struct cluster, group):NULL;
  }
  
  static struct space *to_space(struct config_item *i)
  {
  	return i ? container_of(to_config_group(i), struct space, group) : NULL;
  }
  
  static struct comm *to_comm(struct config_item *i)
  {
  	return i ? container_of(i, struct comm, item) : NULL;
  }
  
  static struct node *to_node(struct config_item *i)
  {
  	return i ? container_of(i, struct node, item) : NULL;
  }
  
  static struct config_group *make_cluster(struct config_group *g,
  					 const char *name)
  {
  	struct cluster *cl = NULL;
  	struct spaces *sps = NULL;
  	struct comms *cms = NULL;
  	void *gps = NULL;
  
  	cl = kzalloc(sizeof(struct cluster), GFP_KERNEL);
  	gps = kcalloc(3, sizeof(struct config_group *), GFP_KERNEL);
  	sps = kzalloc(sizeof(struct spaces), GFP_KERNEL);
  	cms = kzalloc(sizeof(struct comms), GFP_KERNEL);
  
  	if (!cl || !gps || !sps || !cms)
  		goto fail;
  
  	config_group_init_type_name(&cl->group, name, &cluster_type);
  	config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type);
  	config_group_init_type_name(&cms->cs_group, "comms", &comms_type);
  
  	cl->group.default_groups = gps;
  	cl->group.default_groups[0] = &sps->ss_group;
  	cl->group.default_groups[1] = &cms->cs_group;
  	cl->group.default_groups[2] = NULL;
d200778e1   David Teigland   [DLM] expose dlm_...
415
416
417
418
419
420
421
422
423
  	cl->cl_tcp_port = dlm_config.ci_tcp_port;
  	cl->cl_buffer_size = dlm_config.ci_buffer_size;
  	cl->cl_rsbtbl_size = dlm_config.ci_rsbtbl_size;
  	cl->cl_lkbtbl_size = dlm_config.ci_lkbtbl_size;
  	cl->cl_dirtbl_size = dlm_config.ci_dirtbl_size;
  	cl->cl_recover_timer = dlm_config.ci_recover_timer;
  	cl->cl_toss_secs = dlm_config.ci_toss_secs;
  	cl->cl_scan_secs = dlm_config.ci_scan_secs;
  	cl->cl_log_debug = dlm_config.ci_log_debug;
0b7cac0fb   David Teigland   [DLM] show defaul...
424
  	cl->cl_protocol = dlm_config.ci_protocol;
84d8cd69a   David Teigland   [DLM] timeout fixes
425
  	cl->cl_timewarn_cs = dlm_config.ci_timewarn_cs;
d200778e1   David Teigland   [DLM] expose dlm_...
426

e7fd41792   David Teigland   [DLM] The core of...
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
  	space_list = &sps->ss_group;
  	comm_list = &cms->cs_group;
  	return &cl->group;
  
   fail:
  	kfree(cl);
  	kfree(gps);
  	kfree(sps);
  	kfree(cms);
  	return NULL;
  }
  
  static void drop_cluster(struct config_group *g, struct config_item *i)
  {
  	struct cluster *cl = to_cluster(i);
  	struct config_item *tmp;
  	int j;
  
  	for (j = 0; cl->group.default_groups[j]; j++) {
  		tmp = &cl->group.default_groups[j]->cg_item;
  		cl->group.default_groups[j] = NULL;
  		config_item_put(tmp);
  	}
  
  	space_list = NULL;
  	comm_list = NULL;
  
  	config_item_put(i);
  }
  
  static void release_cluster(struct config_item *i)
  {
  	struct cluster *cl = to_cluster(i);
  	kfree(cl->group.default_groups);
  	kfree(cl);
  }
  
  static struct config_group *make_space(struct config_group *g, const char *name)
  {
  	struct space *sp = NULL;
  	struct nodes *nds = NULL;
  	void *gps = NULL;
  
  	sp = kzalloc(sizeof(struct space), GFP_KERNEL);
  	gps = kcalloc(2, sizeof(struct config_group *), GFP_KERNEL);
  	nds = kzalloc(sizeof(struct nodes), GFP_KERNEL);
  
  	if (!sp || !gps || !nds)
  		goto fail;
  
  	config_group_init_type_name(&sp->group, name, &space_type);
  	config_group_init_type_name(&nds->ns_group, "nodes", &nodes_type);
  
  	sp->group.default_groups = gps;
  	sp->group.default_groups[0] = &nds->ns_group;
  	sp->group.default_groups[1] = NULL;
  
  	INIT_LIST_HEAD(&sp->members);
901359256   David Teigland   [DLM] Update DLM ...
485
  	mutex_init(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
  	sp->members_count = 0;
  	return &sp->group;
  
   fail:
  	kfree(sp);
  	kfree(gps);
  	kfree(nds);
  	return NULL;
  }
  
  static void drop_space(struct config_group *g, struct config_item *i)
  {
  	struct space *sp = to_space(i);
  	struct config_item *tmp;
  	int j;
  
  	/* assert list_empty(&sp->members) */
  
  	for (j = 0; sp->group.default_groups[j]; j++) {
  		tmp = &sp->group.default_groups[j]->cg_item;
  		sp->group.default_groups[j] = NULL;
  		config_item_put(tmp);
  	}
  
  	config_item_put(i);
  }
  
  static void release_space(struct config_item *i)
  {
  	struct space *sp = to_space(i);
  	kfree(sp->group.default_groups);
  	kfree(sp);
  }
  
  static struct config_item *make_comm(struct config_group *g, const char *name)
  {
  	struct comm *cm;
  
  	cm = kzalloc(sizeof(struct comm), GFP_KERNEL);
  	if (!cm)
  		return NULL;
  
  	config_item_init_type_name(&cm->item, name, &comm_type);
  	cm->nodeid = -1;
  	cm->local = 0;
  	cm->addr_count = 0;
  	return &cm->item;
  }
  
  static void drop_comm(struct config_group *g, struct config_item *i)
  {
  	struct comm *cm = to_comm(i);
  	if (local_comm == cm)
  		local_comm = NULL;
1c032c031   David Teigland   [DLM] PATCH 2/3 d...
540
  	dlm_lowcomms_close(cm->nodeid);
e7fd41792   David Teigland   [DLM] The core of...
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
  	while (cm->addr_count--)
  		kfree(cm->addr[cm->addr_count]);
  	config_item_put(i);
  }
  
  static void release_comm(struct config_item *i)
  {
  	struct comm *cm = to_comm(i);
  	kfree(cm);
  }
  
  static struct config_item *make_node(struct config_group *g, const char *name)
  {
  	struct space *sp = to_space(g->cg_item.ci_parent);
  	struct node *nd;
  
  	nd = kzalloc(sizeof(struct node), GFP_KERNEL);
  	if (!nd)
  		return NULL;
  
  	config_item_init_type_name(&nd->item, name, &node_type);
  	nd->nodeid = -1;
  	nd->weight = 1;  /* default weight of 1 if none is set */
d44e0fc70   David Teigland   dlm: recover node...
564
  	nd->new = 1;     /* set to 0 once it's been read by dlm_nodeid_list() */
e7fd41792   David Teigland   [DLM] The core of...
565

901359256   David Teigland   [DLM] Update DLM ...
566
  	mutex_lock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
567
568
  	list_add(&nd->list, &sp->members);
  	sp->members_count++;
901359256   David Teigland   [DLM] Update DLM ...
569
  	mutex_unlock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
570
571
572
573
574
575
576
577
  
  	return &nd->item;
  }
  
  static void drop_node(struct config_group *g, struct config_item *i)
  {
  	struct space *sp = to_space(g->cg_item.ci_parent);
  	struct node *nd = to_node(i);
901359256   David Teigland   [DLM] Update DLM ...
578
  	mutex_lock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
579
580
  	list_del(&nd->list);
  	sp->members_count--;
901359256   David Teigland   [DLM] Update DLM ...
581
  	mutex_unlock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
  
  	config_item_put(i);
  }
  
  static void release_node(struct config_item *i)
  {
  	struct node *nd = to_node(i);
  	kfree(nd);
  }
  
  static struct clusters clusters_root = {
  	.subsys = {
  		.su_group = {
  			.cg_item = {
  				.ci_namebuf = "dlm",
  				.ci_type = &clusters_type,
  			},
  		},
  	},
  };
30727174b   Denis Cheng   dlm: add __init a...
602
  int __init dlm_config_init(void)
e7fd41792   David Teigland   [DLM] The core of...
603
604
  {
  	config_group_init(&clusters_root.subsys.su_group);
e6bd07aee   Joel Becker   configfs: Convert...
605
  	mutex_init(&clusters_root.subsys.su_mutex);
e7fd41792   David Teigland   [DLM] The core of...
606
607
608
609
610
611
612
613
614
615
616
  	return configfs_register_subsystem(&clusters_root.subsys);
  }
  
  void dlm_config_exit(void)
  {
  	configfs_unregister_subsystem(&clusters_root.subsys);
  }
  
  /*
   * Functions for user space to read/write attributes
   */
d200778e1   David Teigland   [DLM] expose dlm_...
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
  static ssize_t show_cluster(struct config_item *i, struct configfs_attribute *a,
  			    char *buf)
  {
  	struct cluster *cl = to_cluster(i);
  	struct cluster_attribute *cla =
  			container_of(a, struct cluster_attribute, attr);
  	return cla->show ? cla->show(cl, buf) : 0;
  }
  
  static ssize_t store_cluster(struct config_item *i,
  			     struct configfs_attribute *a,
  			     const char *buf, size_t len)
  {
  	struct cluster *cl = to_cluster(i);
  	struct cluster_attribute *cla =
  		container_of(a, struct cluster_attribute, attr);
  	return cla->store ? cla->store(cl, buf, len) : -EINVAL;
  }
e7fd41792   David Teigland   [DLM] The core of...
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
  static ssize_t show_comm(struct config_item *i, struct configfs_attribute *a,
  			 char *buf)
  {
  	struct comm *cm = to_comm(i);
  	struct comm_attribute *cma =
  			container_of(a, struct comm_attribute, attr);
  	return cma->show ? cma->show(cm, buf) : 0;
  }
  
  static ssize_t store_comm(struct config_item *i, struct configfs_attribute *a,
  			  const char *buf, size_t len)
  {
  	struct comm *cm = to_comm(i);
  	struct comm_attribute *cma =
  		container_of(a, struct comm_attribute, attr);
  	return cma->store ? cma->store(cm, buf, len) : -EINVAL;
  }
  
  static ssize_t comm_nodeid_read(struct comm *cm, char *buf)
  {
  	return sprintf(buf, "%d
  ", cm->nodeid);
  }
  
  static ssize_t comm_nodeid_write(struct comm *cm, const char *buf, size_t len)
  {
  	cm->nodeid = simple_strtol(buf, NULL, 0);
  	return len;
  }
  
  static ssize_t comm_local_read(struct comm *cm, char *buf)
  {
  	return sprintf(buf, "%d
  ", cm->local);
  }
  
  static ssize_t comm_local_write(struct comm *cm, const char *buf, size_t len)
  {
  	cm->local= simple_strtol(buf, NULL, 0);
  	if (cm->local && !local_comm)
  		local_comm = cm;
  	return len;
  }
  
  static ssize_t comm_addr_write(struct comm *cm, const char *buf, size_t len)
  {
  	struct sockaddr_storage *addr;
  
  	if (len != sizeof(struct sockaddr_storage))
  		return -EINVAL;
  
  	if (cm->addr_count >= DLM_MAX_ADDR_COUNT)
  		return -ENOSPC;
  
  	addr = kzalloc(sizeof(*addr), GFP_KERNEL);
  	if (!addr)
  		return -ENOMEM;
  
  	memcpy(addr, buf, len);
  	cm->addr[cm->addr_count++] = addr;
  	return len;
  }
  
  static ssize_t show_node(struct config_item *i, struct configfs_attribute *a,
  			 char *buf)
  {
  	struct node *nd = to_node(i);
  	struct node_attribute *nda =
  			container_of(a, struct node_attribute, attr);
  	return nda->show ? nda->show(nd, buf) : 0;
  }
  
  static ssize_t store_node(struct config_item *i, struct configfs_attribute *a,
  			  const char *buf, size_t len)
  {
  	struct node *nd = to_node(i);
  	struct node_attribute *nda =
  		container_of(a, struct node_attribute, attr);
  	return nda->store ? nda->store(nd, buf, len) : -EINVAL;
  }
  
  static ssize_t node_nodeid_read(struct node *nd, char *buf)
  {
  	return sprintf(buf, "%d
  ", nd->nodeid);
  }
  
  static ssize_t node_nodeid_write(struct node *nd, const char *buf, size_t len)
  {
  	nd->nodeid = simple_strtol(buf, NULL, 0);
  	return len;
  }
  
  static ssize_t node_weight_read(struct node *nd, char *buf)
  {
  	return sprintf(buf, "%d
  ", nd->weight);
  }
  
  static ssize_t node_weight_write(struct node *nd, const char *buf, size_t len)
  {
  	nd->weight = simple_strtol(buf, NULL, 0);
  	return len;
  }
  
  /*
   * Functions for the dlm to get the info that's been configured
   */
  
  static struct space *get_space(char *name)
  {
3168b0780   Satyam Sharma   [DLM] fix a coupl...
746
  	struct config_item *i;
e7fd41792   David Teigland   [DLM] The core of...
747
748
  	if (!space_list)
  		return NULL;
3168b0780   Satyam Sharma   [DLM] fix a coupl...
749

e6bd07aee   Joel Becker   configfs: Convert...
750
  	mutex_lock(&space_list->cg_subsys->su_mutex);
3fe6c5ce1   Satyam Sharma   [PATCH] configfs+...
751
  	i = config_group_find_item(space_list, name);
e6bd07aee   Joel Becker   configfs: Convert...
752
  	mutex_unlock(&space_list->cg_subsys->su_mutex);
3168b0780   Satyam Sharma   [DLM] fix a coupl...
753
754
  
  	return to_space(i);
e7fd41792   David Teigland   [DLM] The core of...
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
  }
  
  static void put_space(struct space *sp)
  {
  	config_item_put(&sp->group.cg_item);
  }
  
  static struct comm *get_comm(int nodeid, struct sockaddr_storage *addr)
  {
  	struct config_item *i;
  	struct comm *cm = NULL;
  	int found = 0;
  
  	if (!comm_list)
  		return NULL;
e6bd07aee   Joel Becker   configfs: Convert...
770
  	mutex_lock(&clusters_root.subsys.su_mutex);
e7fd41792   David Teigland   [DLM] The core of...
771
772
773
774
775
776
777
778
  
  	list_for_each_entry(i, &comm_list->cg_children, ci_entry) {
  		cm = to_comm(i);
  
  		if (nodeid) {
  			if (cm->nodeid != nodeid)
  				continue;
  			found = 1;
3168b0780   Satyam Sharma   [DLM] fix a coupl...
779
  			config_item_get(i);
e7fd41792   David Teigland   [DLM] The core of...
780
781
782
783
784
785
  			break;
  		} else {
  			if (!cm->addr_count ||
  			    memcmp(cm->addr[0], addr, sizeof(*addr)))
  				continue;
  			found = 1;
3168b0780   Satyam Sharma   [DLM] fix a coupl...
786
  			config_item_get(i);
e7fd41792   David Teigland   [DLM] The core of...
787
788
789
  			break;
  		}
  	}
e6bd07aee   Joel Becker   configfs: Convert...
790
  	mutex_unlock(&clusters_root.subsys.su_mutex);
e7fd41792   David Teigland   [DLM] The core of...
791

3168b0780   Satyam Sharma   [DLM] fix a coupl...
792
  	if (!found)
e7fd41792   David Teigland   [DLM] The core of...
793
794
795
796
797
798
799
800
801
802
  		cm = NULL;
  	return cm;
  }
  
  static void put_comm(struct comm *cm)
  {
  	config_item_put(&cm->item);
  }
  
  /* caller must free mem */
d44e0fc70   David Teigland   dlm: recover node...
803
804
  int dlm_nodeid_list(char *lsname, int **ids_out, int *ids_count_out,
  		    int **new_out, int *new_count_out)
e7fd41792   David Teigland   [DLM] The core of...
805
806
807
  {
  	struct space *sp;
  	struct node *nd;
d44e0fc70   David Teigland   dlm: recover node...
808
809
  	int i = 0, rv = 0, ids_count = 0, new_count = 0;
  	int *ids, *new;
e7fd41792   David Teigland   [DLM] The core of...
810
811
812
813
  
  	sp = get_space(lsname);
  	if (!sp)
  		return -EEXIST;
901359256   David Teigland   [DLM] Update DLM ...
814
  	mutex_lock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
815
  	if (!sp->members_count) {
d44e0fc70   David Teigland   dlm: recover node...
816
817
818
  		rv = -EINVAL;
  		printk(KERN_ERR "dlm: zero members_count
  ");
e7fd41792   David Teigland   [DLM] The core of...
819
820
  		goto out;
  	}
d44e0fc70   David Teigland   dlm: recover node...
821
822
823
  	ids_count = sp->members_count;
  
  	ids = kcalloc(ids_count, sizeof(int), GFP_KERNEL);
e7fd41792   David Teigland   [DLM] The core of...
824
825
826
827
  	if (!ids) {
  		rv = -ENOMEM;
  		goto out;
  	}
d44e0fc70   David Teigland   dlm: recover node...
828
  	list_for_each_entry(nd, &sp->members, list) {
e7fd41792   David Teigland   [DLM] The core of...
829
  		ids[i++] = nd->nodeid;
d44e0fc70   David Teigland   dlm: recover node...
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
  		if (nd->new)
  			new_count++;
  	}
  
  	if (ids_count != i)
  		printk(KERN_ERR "dlm: bad nodeid count %d %d
  ", ids_count, i);
  
  	if (!new_count)
  		goto out_ids;
  
  	new = kcalloc(new_count, sizeof(int), GFP_KERNEL);
  	if (!new) {
  		kfree(ids);
  		rv = -ENOMEM;
  		goto out;
  	}
e7fd41792   David Teigland   [DLM] The core of...
847

d44e0fc70   David Teigland   dlm: recover node...
848
849
850
851
852
853
854
855
856
  	i = 0;
  	list_for_each_entry(nd, &sp->members, list) {
  		if (nd->new) {
  			new[i++] = nd->nodeid;
  			nd->new = 0;
  		}
  	}
  	*new_count_out = new_count;
  	*new_out = new;
e7fd41792   David Teigland   [DLM] The core of...
857

d44e0fc70   David Teigland   dlm: recover node...
858
859
   out_ids:
  	*ids_count_out = ids_count;
e7fd41792   David Teigland   [DLM] The core of...
860
861
  	*ids_out = ids;
   out:
901359256   David Teigland   [DLM] Update DLM ...
862
  	mutex_unlock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
863
864
865
866
867
868
869
870
871
872
873
874
875
  	put_space(sp);
  	return rv;
  }
  
  int dlm_node_weight(char *lsname, int nodeid)
  {
  	struct space *sp;
  	struct node *nd;
  	int w = -EEXIST;
  
  	sp = get_space(lsname);
  	if (!sp)
  		goto out;
901359256   David Teigland   [DLM] Update DLM ...
876
  	mutex_lock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
877
878
879
880
881
882
  	list_for_each_entry(nd, &sp->members, list) {
  		if (nd->nodeid != nodeid)
  			continue;
  		w = nd->weight;
  		break;
  	}
901359256   David Teigland   [DLM] Update DLM ...
883
  	mutex_unlock(&sp->members_lock);
e7fd41792   David Teigland   [DLM] The core of...
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
  	put_space(sp);
   out:
  	return w;
  }
  
  int dlm_nodeid_to_addr(int nodeid, struct sockaddr_storage *addr)
  {
  	struct comm *cm = get_comm(nodeid, NULL);
  	if (!cm)
  		return -EEXIST;
  	if (!cm->addr_count)
  		return -ENOENT;
  	memcpy(addr, cm->addr[0], sizeof(*addr));
  	put_comm(cm);
  	return 0;
  }
  
  int dlm_addr_to_nodeid(struct sockaddr_storage *addr, int *nodeid)
  {
  	struct comm *cm = get_comm(0, addr);
  	if (!cm)
  		return -EEXIST;
  	*nodeid = cm->nodeid;
  	put_comm(cm);
  	return 0;
  }
  
  int dlm_our_nodeid(void)
  {
  	return local_comm ? local_comm->nodeid : 0;
  }
  
  /* num 0 is first addr, num 1 is second addr */
  int dlm_our_addr(struct sockaddr_storage *addr, int num)
  {
  	if (!local_comm)
  		return -1;
  	if (num + 1 > local_comm->addr_count)
  		return -1;
  	memcpy(addr, local_comm->addr[num], sizeof(*addr));
  	return 0;
  }
  
  /* Config file defaults */
  #define DEFAULT_TCP_PORT       21064
  #define DEFAULT_BUFFER_SIZE     4096
  #define DEFAULT_RSBTBL_SIZE      256
  #define DEFAULT_LKBTBL_SIZE     1024
  #define DEFAULT_DIRTBL_SIZE      512
  #define DEFAULT_RECOVER_TIMER      5
  #define DEFAULT_TOSS_SECS         10
  #define DEFAULT_SCAN_SECS          5
99fc64874   David Teigland   [DLM] add config ...
936
  #define DEFAULT_LOG_DEBUG          0
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
937
  #define DEFAULT_PROTOCOL           0
3ae1acf93   David Teigland   [DLM] add lock ti...
938
  #define DEFAULT_TIMEWARN_CS      500 /* 5 sec = 500 centiseconds */
e7fd41792   David Teigland   [DLM] The core of...
939
940
  
  struct dlm_config_info dlm_config = {
68c817a1c   David Teigland   [DLM] rename dlm_...
941
942
943
944
945
946
947
  	.ci_tcp_port = DEFAULT_TCP_PORT,
  	.ci_buffer_size = DEFAULT_BUFFER_SIZE,
  	.ci_rsbtbl_size = DEFAULT_RSBTBL_SIZE,
  	.ci_lkbtbl_size = DEFAULT_LKBTBL_SIZE,
  	.ci_dirtbl_size = DEFAULT_DIRTBL_SIZE,
  	.ci_recover_timer = DEFAULT_RECOVER_TIMER,
  	.ci_toss_secs = DEFAULT_TOSS_SECS,
99fc64874   David Teigland   [DLM] add config ...
948
  	.ci_scan_secs = DEFAULT_SCAN_SECS,
6ed7257b4   Patrick Caulfield   [DLM] Consolidate...
949
  	.ci_log_debug = DEFAULT_LOG_DEBUG,
3ae1acf93   David Teigland   [DLM] add lock ti...
950
951
  	.ci_protocol = DEFAULT_PROTOCOL,
  	.ci_timewarn_cs = DEFAULT_TIMEWARN_CS
e7fd41792   David Teigland   [DLM] The core of...
952
  };