Linux Audio

Check our new training course

Loading...
v3.15
   1/* -*- mode: c; c-basic-offset: 8; -*-
   2 * vim: noexpandtab sw=8 ts=8 sts=0:
   3 *
   4 * stack_user.c
   5 *
   6 * Code which interfaces ocfs2 with fs/dlm and a userspace stack.
   7 *
   8 * Copyright (C) 2007 Oracle.  All rights reserved.
   9 *
  10 * This program is free software; you can redistribute it and/or
  11 * modify it under the terms of the GNU General Public
  12 * License as published by the Free Software Foundation, version 2.
  13 *
  14 * This program is distributed in the hope that it will be useful,
  15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17 * General Public License for more details.
  18 */
  19
  20#include <linux/module.h>
  21#include <linux/fs.h>
  22#include <linux/miscdevice.h>
  23#include <linux/mutex.h>
  24#include <linux/slab.h>
  25#include <linux/reboot.h>
  26#include <linux/sched.h>
  27#include <asm/uaccess.h>
  28
  29#include "stackglue.h"
  30
  31#include <linux/dlm_plock.h>
  32
  33/*
  34 * The control protocol starts with a handshake.  Until the handshake
  35 * is complete, the control device will fail all write(2)s.
  36 *
  37 * The handshake is simple.  First, the client reads until EOF.  Each line
  38 * of output is a supported protocol tag.  All protocol tags are a single
  39 * character followed by a two hex digit version number.  Currently the
  40 * only things supported is T01, for "Text-base version 0x01".  Next, the
  41 * client writes the version they would like to use, including the newline.
  42 * Thus, the protocol tag is 'T01\n'.  If the version tag written is
  43 * unknown, -EINVAL is returned.  Once the negotiation is complete, the
  44 * client can start sending messages.
  45 *
  46 * The T01 protocol has three messages.  First is the "SETN" message.
  47 * It has the following syntax:
  48 *
  49 *  SETN<space><8-char-hex-nodenum><newline>
  50 *
  51 * This is 14 characters.
  52 *
  53 * The "SETN" message must be the first message following the protocol.
  54 * It tells ocfs2_control the local node number.
  55 *
  56 * Next comes the "SETV" message.  It has the following syntax:
  57 *
  58 *  SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
  59 *
  60 * This is 11 characters.
  61 *
  62 * The "SETV" message sets the filesystem locking protocol version as
  63 * negotiated by the client.  The client negotiates based on the maximum
  64 * version advertised in /sys/fs/ocfs2/max_locking_protocol.  The major
  65 * number from the "SETV" message must match
  66 * ocfs2_user_plugin.sp_max_proto.pv_major, and the minor number
  67 * must be less than or equal to ...sp_max_version.pv_minor.
  68 *
  69 * Once this information has been set, mounts will be allowed.  From this
  70 * point on, the "DOWN" message can be sent for node down notification.
  71 * It has the following syntax:
  72 *
  73 *  DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline>
  74 *
  75 * eg:
  76 *
  77 *  DOWN 632A924FDD844190BDA93C0DF6B94899 00000001\n
  78 *
  79 * This is 47 characters.
  80 */
  81
  82/*
  83 * Whether or not the client has done the handshake.
  84 * For now, we have just one protocol version.
  85 */
  86#define OCFS2_CONTROL_PROTO			"T01\n"
  87#define OCFS2_CONTROL_PROTO_LEN			4
  88
  89/* Handshake states */
  90#define OCFS2_CONTROL_HANDSHAKE_INVALID		(0)
  91#define OCFS2_CONTROL_HANDSHAKE_READ		(1)
  92#define OCFS2_CONTROL_HANDSHAKE_PROTOCOL	(2)
  93#define OCFS2_CONTROL_HANDSHAKE_VALID		(3)
  94
  95/* Messages */
  96#define OCFS2_CONTROL_MESSAGE_OP_LEN		4
  97#define OCFS2_CONTROL_MESSAGE_SETNODE_OP	"SETN"
  98#define OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN	14
  99#define OCFS2_CONTROL_MESSAGE_SETVERSION_OP	"SETV"
 100#define OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN	11
 101#define OCFS2_CONTROL_MESSAGE_DOWN_OP		"DOWN"
 102#define OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN	47
 103#define OCFS2_TEXT_UUID_LEN			32
 104#define OCFS2_CONTROL_MESSAGE_VERNUM_LEN	2
 105#define OCFS2_CONTROL_MESSAGE_NODENUM_LEN	8
 106#define VERSION_LOCK				"version_lock"
 107
 108enum ocfs2_connection_type {
 109	WITH_CONTROLD,
 110	NO_CONTROLD
 111};
 112
 113/*
 114 * ocfs2_live_connection is refcounted because the filesystem and
 115 * miscdevice sides can detach in different order.  Let's just be safe.
 116 */
 117struct ocfs2_live_connection {
 118	struct list_head		oc_list;
 119	struct ocfs2_cluster_connection	*oc_conn;
 120	enum ocfs2_connection_type	oc_type;
 121	atomic_t                        oc_this_node;
 122	int                             oc_our_slot;
 123	struct dlm_lksb                 oc_version_lksb;
 124	char                            oc_lvb[DLM_LVB_LEN];
 125	struct completion               oc_sync_wait;
 126	wait_queue_head_t		oc_wait;
 127};
 128
 129struct ocfs2_control_private {
 130	struct list_head op_list;
 131	int op_state;
 132	int op_this_node;
 133	struct ocfs2_protocol_version op_proto;
 134};
 135
 136/* SETN<space><8-char-hex-nodenum><newline> */
 137struct ocfs2_control_message_setn {
 138	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 139	char	space;
 140	char	nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
 141	char	newline;
 142};
 143
 144/* SETV<space><2-char-hex-major><space><2-char-hex-minor><newline> */
 145struct ocfs2_control_message_setv {
 146	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 147	char	space1;
 148	char	major[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
 149	char	space2;
 150	char	minor[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
 151	char	newline;
 152};
 153
 154/* DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline> */
 155struct ocfs2_control_message_down {
 156	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 157	char	space1;
 158	char	uuid[OCFS2_TEXT_UUID_LEN];
 159	char	space2;
 160	char	nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
 161	char	newline;
 162};
 163
 164union ocfs2_control_message {
 165	char					tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 166	struct ocfs2_control_message_setn	u_setn;
 167	struct ocfs2_control_message_setv	u_setv;
 168	struct ocfs2_control_message_down	u_down;
 169};
 170
 171static struct ocfs2_stack_plugin ocfs2_user_plugin;
 172
 173static atomic_t ocfs2_control_opened;
 174static int ocfs2_control_this_node = -1;
 175static struct ocfs2_protocol_version running_proto;
 176
 177static LIST_HEAD(ocfs2_live_connection_list);
 178static LIST_HEAD(ocfs2_control_private_list);
 179static DEFINE_MUTEX(ocfs2_control_lock);
 180
 181static inline void ocfs2_control_set_handshake_state(struct file *file,
 182						     int state)
 183{
 184	struct ocfs2_control_private *p = file->private_data;
 185	p->op_state = state;
 186}
 187
 188static inline int ocfs2_control_get_handshake_state(struct file *file)
 189{
 190	struct ocfs2_control_private *p = file->private_data;
 191	return p->op_state;
 192}
 193
 194static struct ocfs2_live_connection *ocfs2_connection_find(const char *name)
 195{
 196	size_t len = strlen(name);
 197	struct ocfs2_live_connection *c;
 198
 199	BUG_ON(!mutex_is_locked(&ocfs2_control_lock));
 200
 201	list_for_each_entry(c, &ocfs2_live_connection_list, oc_list) {
 202		if ((c->oc_conn->cc_namelen == len) &&
 203		    !strncmp(c->oc_conn->cc_name, name, len))
 204			return c;
 205	}
 206
 207	return NULL;
 208}
 209
 210/*
 211 * ocfs2_live_connection structures are created underneath the ocfs2
 212 * mount path.  Since the VFS prevents multiple calls to
 213 * fill_super(), we can't get dupes here.
 214 */
 215static int ocfs2_live_connection_attach(struct ocfs2_cluster_connection *conn,
 216				     struct ocfs2_live_connection *c)
 217{
 218	int rc = 0;
 219
 220	mutex_lock(&ocfs2_control_lock);
 221	c->oc_conn = conn;
 222
 223	if ((c->oc_type == NO_CONTROLD) || atomic_read(&ocfs2_control_opened))
 224		list_add(&c->oc_list, &ocfs2_live_connection_list);
 225	else {
 226		printk(KERN_ERR
 227		       "ocfs2: Userspace control daemon is not present\n");
 228		rc = -ESRCH;
 229	}
 230
 231	mutex_unlock(&ocfs2_control_lock);
 232	return rc;
 233}
 234
 235/*
 236 * This function disconnects the cluster connection from ocfs2_control.
 237 * Afterwards, userspace can't affect the cluster connection.
 238 */
 239static void ocfs2_live_connection_drop(struct ocfs2_live_connection *c)
 240{
 241	mutex_lock(&ocfs2_control_lock);
 242	list_del_init(&c->oc_list);
 243	c->oc_conn = NULL;
 244	mutex_unlock(&ocfs2_control_lock);
 245
 246	kfree(c);
 247}
 248
 249static int ocfs2_control_cfu(void *target, size_t target_len,
 250			     const char __user *buf, size_t count)
 251{
 252	/* The T01 expects write(2) calls to have exactly one command */
 253	if ((count != target_len) ||
 254	    (count > sizeof(union ocfs2_control_message)))
 255		return -EINVAL;
 256
 257	if (copy_from_user(target, buf, target_len))
 258		return -EFAULT;
 259
 260	return 0;
 261}
 262
 263static ssize_t ocfs2_control_validate_protocol(struct file *file,
 264					       const char __user *buf,
 265					       size_t count)
 266{
 267	ssize_t ret;
 268	char kbuf[OCFS2_CONTROL_PROTO_LEN];
 269
 270	ret = ocfs2_control_cfu(kbuf, OCFS2_CONTROL_PROTO_LEN,
 271				buf, count);
 272	if (ret)
 273		return ret;
 274
 275	if (strncmp(kbuf, OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN))
 276		return -EINVAL;
 277
 278	ocfs2_control_set_handshake_state(file,
 279					  OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
 280
 281	return count;
 282}
 283
 284static void ocfs2_control_send_down(const char *uuid,
 285				    int nodenum)
 286{
 287	struct ocfs2_live_connection *c;
 288
 289	mutex_lock(&ocfs2_control_lock);
 290
 291	c = ocfs2_connection_find(uuid);
 292	if (c) {
 293		BUG_ON(c->oc_conn == NULL);
 294		c->oc_conn->cc_recovery_handler(nodenum,
 295						c->oc_conn->cc_recovery_data);
 296	}
 297
 298	mutex_unlock(&ocfs2_control_lock);
 299}
 300
 301/*
 302 * Called whenever configuration elements are sent to /dev/ocfs2_control.
 303 * If all configuration elements are present, try to set the global
 304 * values.  If there is a problem, return an error.  Skip any missing
 305 * elements, and only bump ocfs2_control_opened when we have all elements
 306 * and are successful.
 307 */
 308static int ocfs2_control_install_private(struct file *file)
 309{
 310	int rc = 0;
 311	int set_p = 1;
 312	struct ocfs2_control_private *p = file->private_data;
 313
 314	BUG_ON(p->op_state != OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
 315
 316	mutex_lock(&ocfs2_control_lock);
 317
 318	if (p->op_this_node < 0) {
 319		set_p = 0;
 320	} else if ((ocfs2_control_this_node >= 0) &&
 321		   (ocfs2_control_this_node != p->op_this_node)) {
 322		rc = -EINVAL;
 323		goto out_unlock;
 324	}
 325
 326	if (!p->op_proto.pv_major) {
 327		set_p = 0;
 328	} else if (!list_empty(&ocfs2_live_connection_list) &&
 329		   ((running_proto.pv_major != p->op_proto.pv_major) ||
 330		    (running_proto.pv_minor != p->op_proto.pv_minor))) {
 331		rc = -EINVAL;
 332		goto out_unlock;
 333	}
 334
 335	if (set_p) {
 336		ocfs2_control_this_node = p->op_this_node;
 337		running_proto.pv_major = p->op_proto.pv_major;
 338		running_proto.pv_minor = p->op_proto.pv_minor;
 339	}
 340
 341out_unlock:
 342	mutex_unlock(&ocfs2_control_lock);
 343
 344	if (!rc && set_p) {
 345		/* We set the global values successfully */
 346		atomic_inc(&ocfs2_control_opened);
 347		ocfs2_control_set_handshake_state(file,
 348					OCFS2_CONTROL_HANDSHAKE_VALID);
 349	}
 350
 351	return rc;
 352}
 353
 354static int ocfs2_control_get_this_node(void)
 355{
 356	int rc;
 357
 358	mutex_lock(&ocfs2_control_lock);
 359	if (ocfs2_control_this_node < 0)
 360		rc = -EINVAL;
 361	else
 362		rc = ocfs2_control_this_node;
 363	mutex_unlock(&ocfs2_control_lock);
 364
 365	return rc;
 366}
 367
 368static int ocfs2_control_do_setnode_msg(struct file *file,
 369					struct ocfs2_control_message_setn *msg)
 370{
 371	long nodenum;
 372	char *ptr = NULL;
 373	struct ocfs2_control_private *p = file->private_data;
 374
 375	if (ocfs2_control_get_handshake_state(file) !=
 376	    OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
 377		return -EINVAL;
 378
 379	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
 380		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 381		return -EINVAL;
 382
 383	if ((msg->space != ' ') || (msg->newline != '\n'))
 384		return -EINVAL;
 385	msg->space = msg->newline = '\0';
 386
 387	nodenum = simple_strtol(msg->nodestr, &ptr, 16);
 388	if (!ptr || *ptr)
 389		return -EINVAL;
 390
 391	if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
 392	    (nodenum > INT_MAX) || (nodenum < 0))
 393		return -ERANGE;
 394	p->op_this_node = nodenum;
 395
 396	return ocfs2_control_install_private(file);
 397}
 398
 399static int ocfs2_control_do_setversion_msg(struct file *file,
 400					   struct ocfs2_control_message_setv *msg)
 401 {
 402	long major, minor;
 403	char *ptr = NULL;
 404	struct ocfs2_control_private *p = file->private_data;
 405	struct ocfs2_protocol_version *max =
 406		&ocfs2_user_plugin.sp_max_proto;
 407
 408	if (ocfs2_control_get_handshake_state(file) !=
 409	    OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
 410		return -EINVAL;
 411
 412	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
 413		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 414		return -EINVAL;
 415
 416	if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
 417	    (msg->newline != '\n'))
 418		return -EINVAL;
 419	msg->space1 = msg->space2 = msg->newline = '\0';
 420
 421	major = simple_strtol(msg->major, &ptr, 16);
 422	if (!ptr || *ptr)
 423		return -EINVAL;
 424	minor = simple_strtol(msg->minor, &ptr, 16);
 425	if (!ptr || *ptr)
 426		return -EINVAL;
 427
 428	/*
 429	 * The major must be between 1 and 255, inclusive.  The minor
 430	 * must be between 0 and 255, inclusive.  The version passed in
 431	 * must be within the maximum version supported by the filesystem.
 432	 */
 433	if ((major == LONG_MIN) || (major == LONG_MAX) ||
 434	    (major > (u8)-1) || (major < 1))
 435		return -ERANGE;
 436	if ((minor == LONG_MIN) || (minor == LONG_MAX) ||
 437	    (minor > (u8)-1) || (minor < 0))
 438		return -ERANGE;
 439	if ((major != max->pv_major) ||
 440	    (minor > max->pv_minor))
 441		return -EINVAL;
 442
 443	p->op_proto.pv_major = major;
 444	p->op_proto.pv_minor = minor;
 445
 446	return ocfs2_control_install_private(file);
 447}
 448
 449static int ocfs2_control_do_down_msg(struct file *file,
 450				     struct ocfs2_control_message_down *msg)
 451{
 452	long nodenum;
 453	char *p = NULL;
 454
 455	if (ocfs2_control_get_handshake_state(file) !=
 456	    OCFS2_CONTROL_HANDSHAKE_VALID)
 457		return -EINVAL;
 458
 459	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
 460		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 461		return -EINVAL;
 462
 463	if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
 464	    (msg->newline != '\n'))
 465		return -EINVAL;
 466	msg->space1 = msg->space2 = msg->newline = '\0';
 467
 468	nodenum = simple_strtol(msg->nodestr, &p, 16);
 469	if (!p || *p)
 470		return -EINVAL;
 471
 472	if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
 473	    (nodenum > INT_MAX) || (nodenum < 0))
 474		return -ERANGE;
 475
 476	ocfs2_control_send_down(msg->uuid, nodenum);
 477
 478	return 0;
 479}
 480
 481static ssize_t ocfs2_control_message(struct file *file,
 482				     const char __user *buf,
 483				     size_t count)
 484{
 485	ssize_t ret;
 486	union ocfs2_control_message msg;
 487
 488	/* Try to catch padding issues */
 489	WARN_ON(offsetof(struct ocfs2_control_message_down, uuid) !=
 490		(sizeof(msg.u_down.tag) + sizeof(msg.u_down.space1)));
 491
 492	memset(&msg, 0, sizeof(union ocfs2_control_message));
 493	ret = ocfs2_control_cfu(&msg, count, buf, count);
 494	if (ret)
 495		goto out;
 496
 497	if ((count == OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN) &&
 498	    !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
 499		     OCFS2_CONTROL_MESSAGE_OP_LEN))
 500		ret = ocfs2_control_do_setnode_msg(file, &msg.u_setn);
 501	else if ((count == OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN) &&
 502		 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
 503			  OCFS2_CONTROL_MESSAGE_OP_LEN))
 504		ret = ocfs2_control_do_setversion_msg(file, &msg.u_setv);
 505	else if ((count == OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN) &&
 506		 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
 507			  OCFS2_CONTROL_MESSAGE_OP_LEN))
 508		ret = ocfs2_control_do_down_msg(file, &msg.u_down);
 509	else
 510		ret = -EINVAL;
 511
 512out:
 513	return ret ? ret : count;
 514}
 515
 516static ssize_t ocfs2_control_write(struct file *file,
 517				   const char __user *buf,
 518				   size_t count,
 519				   loff_t *ppos)
 520{
 521	ssize_t ret;
 522
 523	switch (ocfs2_control_get_handshake_state(file)) {
 524		case OCFS2_CONTROL_HANDSHAKE_INVALID:
 525			ret = -EINVAL;
 526			break;
 527
 528		case OCFS2_CONTROL_HANDSHAKE_READ:
 529			ret = ocfs2_control_validate_protocol(file, buf,
 530							      count);
 531			break;
 532
 533		case OCFS2_CONTROL_HANDSHAKE_PROTOCOL:
 534		case OCFS2_CONTROL_HANDSHAKE_VALID:
 535			ret = ocfs2_control_message(file, buf, count);
 536			break;
 537
 538		default:
 539			BUG();
 540			ret = -EIO;
 541			break;
 542	}
 543
 544	return ret;
 545}
 546
 547/*
 548 * This is a naive version.  If we ever have a new protocol, we'll expand
 549 * it.  Probably using seq_file.
 550 */
 551static ssize_t ocfs2_control_read(struct file *file,
 552				  char __user *buf,
 553				  size_t count,
 554				  loff_t *ppos)
 555{
 556	ssize_t ret;
 557
 558	ret = simple_read_from_buffer(buf, count, ppos,
 559			OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN);
 560
 561	/* Have we read the whole protocol list? */
 562	if (ret > 0 && *ppos >= OCFS2_CONTROL_PROTO_LEN)
 563		ocfs2_control_set_handshake_state(file,
 564						  OCFS2_CONTROL_HANDSHAKE_READ);
 565
 566	return ret;
 567}
 568
 569static int ocfs2_control_release(struct inode *inode, struct file *file)
 570{
 571	struct ocfs2_control_private *p = file->private_data;
 572
 573	mutex_lock(&ocfs2_control_lock);
 574
 575	if (ocfs2_control_get_handshake_state(file) !=
 576	    OCFS2_CONTROL_HANDSHAKE_VALID)
 577		goto out;
 578
 579	if (atomic_dec_and_test(&ocfs2_control_opened)) {
 580		if (!list_empty(&ocfs2_live_connection_list)) {
 581			/* XXX: Do bad things! */
 582			printk(KERN_ERR
 583			       "ocfs2: Unexpected release of ocfs2_control!\n"
 584			       "       Loss of cluster connection requires "
 585			       "an emergency restart!\n");
 586			emergency_restart();
 587		}
 588		/*
 589		 * Last valid close clears the node number and resets
 590		 * the locking protocol version
 591		 */
 592		ocfs2_control_this_node = -1;
 593		running_proto.pv_major = 0;
 594		running_proto.pv_major = 0;
 595	}
 596
 597out:
 598	list_del_init(&p->op_list);
 599	file->private_data = NULL;
 600
 601	mutex_unlock(&ocfs2_control_lock);
 602
 603	kfree(p);
 604
 605	return 0;
 606}
 607
 608static int ocfs2_control_open(struct inode *inode, struct file *file)
 609{
 610	struct ocfs2_control_private *p;
 611
 612	p = kzalloc(sizeof(struct ocfs2_control_private), GFP_KERNEL);
 613	if (!p)
 614		return -ENOMEM;
 615	p->op_this_node = -1;
 616
 617	mutex_lock(&ocfs2_control_lock);
 618	file->private_data = p;
 619	list_add(&p->op_list, &ocfs2_control_private_list);
 620	mutex_unlock(&ocfs2_control_lock);
 621
 622	return 0;
 623}
 624
 625static const struct file_operations ocfs2_control_fops = {
 626	.open    = ocfs2_control_open,
 627	.release = ocfs2_control_release,
 628	.read    = ocfs2_control_read,
 629	.write   = ocfs2_control_write,
 630	.owner   = THIS_MODULE,
 631	.llseek  = default_llseek,
 632};
 633
 634static struct miscdevice ocfs2_control_device = {
 635	.minor		= MISC_DYNAMIC_MINOR,
 636	.name		= "ocfs2_control",
 637	.fops		= &ocfs2_control_fops,
 638};
 639
 640static int ocfs2_control_init(void)
 641{
 642	int rc;
 643
 644	atomic_set(&ocfs2_control_opened, 0);
 645
 646	rc = misc_register(&ocfs2_control_device);
 647	if (rc)
 648		printk(KERN_ERR
 649		       "ocfs2: Unable to register ocfs2_control device "
 650		       "(errno %d)\n",
 651		       -rc);
 652
 653	return rc;
 654}
 655
 656static void ocfs2_control_exit(void)
 657{
 658	int rc;
 659
 660	rc = misc_deregister(&ocfs2_control_device);
 661	if (rc)
 662		printk(KERN_ERR
 663		       "ocfs2: Unable to deregister ocfs2_control device "
 664		       "(errno %d)\n",
 665		       -rc);
 666}
 667
 668static void fsdlm_lock_ast_wrapper(void *astarg)
 669{
 670	struct ocfs2_dlm_lksb *lksb = astarg;
 671	int status = lksb->lksb_fsdlm.sb_status;
 672
 673	/*
 674	 * For now we're punting on the issue of other non-standard errors
 675	 * where we can't tell if the unlock_ast or lock_ast should be called.
 676	 * The main "other error" that's possible is EINVAL which means the
 677	 * function was called with invalid args, which shouldn't be possible
 678	 * since the caller here is under our control.  Other non-standard
 679	 * errors probably fall into the same category, or otherwise are fatal
 680	 * which means we can't carry on anyway.
 681	 */
 682
 683	if (status == -DLM_EUNLOCK || status == -DLM_ECANCEL)
 684		lksb->lksb_conn->cc_proto->lp_unlock_ast(lksb, 0);
 685	else
 686		lksb->lksb_conn->cc_proto->lp_lock_ast(lksb);
 687}
 688
 689static void fsdlm_blocking_ast_wrapper(void *astarg, int level)
 690{
 691	struct ocfs2_dlm_lksb *lksb = astarg;
 692
 693	lksb->lksb_conn->cc_proto->lp_blocking_ast(lksb, level);
 694}
 695
 696static int user_dlm_lock(struct ocfs2_cluster_connection *conn,
 697			 int mode,
 698			 struct ocfs2_dlm_lksb *lksb,
 699			 u32 flags,
 700			 void *name,
 701			 unsigned int namelen)
 702{
 703	int ret;
 704
 705	if (!lksb->lksb_fsdlm.sb_lvbptr)
 706		lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
 707					     sizeof(struct dlm_lksb);
 708
 709	ret = dlm_lock(conn->cc_lockspace, mode, &lksb->lksb_fsdlm,
 710		       flags|DLM_LKF_NODLCKWT, name, namelen, 0,
 711		       fsdlm_lock_ast_wrapper, lksb,
 712		       fsdlm_blocking_ast_wrapper);
 713	return ret;
 714}
 715
 716static int user_dlm_unlock(struct ocfs2_cluster_connection *conn,
 717			   struct ocfs2_dlm_lksb *lksb,
 718			   u32 flags)
 719{
 720	int ret;
 721
 722	ret = dlm_unlock(conn->cc_lockspace, lksb->lksb_fsdlm.sb_lkid,
 723			 flags, &lksb->lksb_fsdlm, lksb);
 724	return ret;
 725}
 726
 727static int user_dlm_lock_status(struct ocfs2_dlm_lksb *lksb)
 728{
 729	return lksb->lksb_fsdlm.sb_status;
 730}
 731
 732static int user_dlm_lvb_valid(struct ocfs2_dlm_lksb *lksb)
 733{
 734	int invalid = lksb->lksb_fsdlm.sb_flags & DLM_SBF_VALNOTVALID;
 735
 736	return !invalid;
 737}
 738
 739static void *user_dlm_lvb(struct ocfs2_dlm_lksb *lksb)
 740{
 741	if (!lksb->lksb_fsdlm.sb_lvbptr)
 742		lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
 743					     sizeof(struct dlm_lksb);
 744	return (void *)(lksb->lksb_fsdlm.sb_lvbptr);
 745}
 746
 747static void user_dlm_dump_lksb(struct ocfs2_dlm_lksb *lksb)
 748{
 749}
 750
 751static int user_plock(struct ocfs2_cluster_connection *conn,
 752		      u64 ino,
 753		      struct file *file,
 754		      int cmd,
 755		      struct file_lock *fl)
 756{
 757	/*
 758	 * This more or less just demuxes the plock request into any
 759	 * one of three dlm calls.
 760	 *
 761	 * Internally, fs/dlm will pass these to a misc device, which
 762	 * a userspace daemon will read and write to.
 763	 *
 764	 * For now, cancel requests (which happen internally only),
 765	 * are turned into unlocks. Most of this function taken from
 766	 * gfs2_lock.
 767	 */
 768
 769	if (cmd == F_CANCELLK) {
 770		cmd = F_SETLK;
 771		fl->fl_type = F_UNLCK;
 772	}
 773
 774	if (IS_GETLK(cmd))
 775		return dlm_posix_get(conn->cc_lockspace, ino, file, fl);
 776	else if (fl->fl_type == F_UNLCK)
 777		return dlm_posix_unlock(conn->cc_lockspace, ino, file, fl);
 778	else
 779		return dlm_posix_lock(conn->cc_lockspace, ino, file, cmd, fl);
 780}
 781
 782/*
 783 * Compare a requested locking protocol version against the current one.
 784 *
 785 * If the major numbers are different, they are incompatible.
 786 * If the current minor is greater than the request, they are incompatible.
 787 * If the current minor is less than or equal to the request, they are
 788 * compatible, and the requester should run at the current minor version.
 789 */
 790static int fs_protocol_compare(struct ocfs2_protocol_version *existing,
 791			       struct ocfs2_protocol_version *request)
 792{
 793	if (existing->pv_major != request->pv_major)
 794		return 1;
 795
 796	if (existing->pv_minor > request->pv_minor)
 797		return 1;
 798
 799	if (existing->pv_minor < request->pv_minor)
 800		request->pv_minor = existing->pv_minor;
 801
 802	return 0;
 803}
 804
 805static void lvb_to_version(char *lvb, struct ocfs2_protocol_version *ver)
 806{
 807	struct ocfs2_protocol_version *pv =
 808		(struct ocfs2_protocol_version *)lvb;
 809	/*
 810	 * ocfs2_protocol_version has two u8 variables, so we don't
 811	 * need any endian conversion.
 812	 */
 813	ver->pv_major = pv->pv_major;
 814	ver->pv_minor = pv->pv_minor;
 815}
 816
 817static void version_to_lvb(struct ocfs2_protocol_version *ver, char *lvb)
 818{
 819	struct ocfs2_protocol_version *pv =
 820		(struct ocfs2_protocol_version *)lvb;
 821	/*
 822	 * ocfs2_protocol_version has two u8 variables, so we don't
 823	 * need any endian conversion.
 824	 */
 825	pv->pv_major = ver->pv_major;
 826	pv->pv_minor = ver->pv_minor;
 827}
 828
 829static void sync_wait_cb(void *arg)
 830{
 831	struct ocfs2_cluster_connection *conn = arg;
 832	struct ocfs2_live_connection *lc = conn->cc_private;
 833	complete(&lc->oc_sync_wait);
 834}
 835
 836static int sync_unlock(struct ocfs2_cluster_connection *conn,
 837		struct dlm_lksb *lksb, char *name)
 838{
 839	int error;
 840	struct ocfs2_live_connection *lc = conn->cc_private;
 841
 842	error = dlm_unlock(conn->cc_lockspace, lksb->sb_lkid, 0, lksb, conn);
 843	if (error) {
 844		printk(KERN_ERR "%s lkid %x error %d\n",
 845				name, lksb->sb_lkid, error);
 846		return error;
 847	}
 848
 849	wait_for_completion(&lc->oc_sync_wait);
 850
 851	if (lksb->sb_status != -DLM_EUNLOCK) {
 852		printk(KERN_ERR "%s lkid %x status %d\n",
 853				name, lksb->sb_lkid, lksb->sb_status);
 854		return -1;
 855	}
 856	return 0;
 857}
 858
 859static int sync_lock(struct ocfs2_cluster_connection *conn,
 860		int mode, uint32_t flags,
 861		struct dlm_lksb *lksb, char *name)
 862{
 863	int error, status;
 864	struct ocfs2_live_connection *lc = conn->cc_private;
 865
 866	error = dlm_lock(conn->cc_lockspace, mode, lksb, flags,
 867			name, strlen(name),
 868			0, sync_wait_cb, conn, NULL);
 869	if (error) {
 870		printk(KERN_ERR "%s lkid %x flags %x mode %d error %d\n",
 871				name, lksb->sb_lkid, flags, mode, error);
 872		return error;
 873	}
 874
 875	wait_for_completion(&lc->oc_sync_wait);
 876
 877	status = lksb->sb_status;
 878
 879	if (status && status != -EAGAIN) {
 880		printk(KERN_ERR "%s lkid %x flags %x mode %d status %d\n",
 881				name, lksb->sb_lkid, flags, mode, status);
 882	}
 883
 884	return status;
 885}
 886
 887
 888static int version_lock(struct ocfs2_cluster_connection *conn, int mode,
 889		int flags)
 890{
 891	struct ocfs2_live_connection *lc = conn->cc_private;
 892	return sync_lock(conn, mode, flags,
 893			&lc->oc_version_lksb, VERSION_LOCK);
 894}
 895
 896static int version_unlock(struct ocfs2_cluster_connection *conn)
 897{
 898	struct ocfs2_live_connection *lc = conn->cc_private;
 899	return sync_unlock(conn, &lc->oc_version_lksb, VERSION_LOCK);
 900}
 901
 902/* get_protocol_version()
 903 *
 904 * To exchange ocfs2 versioning, we use the LVB of the version dlm lock.
 905 * The algorithm is:
 906 * 1. Attempt to take the lock in EX mode (non-blocking).
 907 * 2. If successful (which means it is the first mount), write the
 908 *    version number and downconvert to PR lock.
 909 * 3. If unsuccessful (returns -EAGAIN), read the version from the LVB after
 910 *    taking the PR lock.
 911 */
 912
 913static int get_protocol_version(struct ocfs2_cluster_connection *conn)
 914{
 915	int ret;
 916	struct ocfs2_live_connection *lc = conn->cc_private;
 917	struct ocfs2_protocol_version pv;
 918
 919	running_proto.pv_major =
 920		ocfs2_user_plugin.sp_max_proto.pv_major;
 921	running_proto.pv_minor =
 922		ocfs2_user_plugin.sp_max_proto.pv_minor;
 923
 924	lc->oc_version_lksb.sb_lvbptr = lc->oc_lvb;
 925	ret = version_lock(conn, DLM_LOCK_EX,
 926			DLM_LKF_VALBLK|DLM_LKF_NOQUEUE);
 927	if (!ret) {
 928		conn->cc_version.pv_major = running_proto.pv_major;
 929		conn->cc_version.pv_minor = running_proto.pv_minor;
 930		version_to_lvb(&running_proto, lc->oc_lvb);
 931		version_lock(conn, DLM_LOCK_PR, DLM_LKF_CONVERT|DLM_LKF_VALBLK);
 932	} else if (ret == -EAGAIN) {
 933		ret = version_lock(conn, DLM_LOCK_PR, DLM_LKF_VALBLK);
 934		if (ret)
 935			goto out;
 936		lvb_to_version(lc->oc_lvb, &pv);
 937
 938		if ((pv.pv_major != running_proto.pv_major) ||
 939				(pv.pv_minor > running_proto.pv_minor)) {
 940			ret = -EINVAL;
 941			goto out;
 942		}
 943
 944		conn->cc_version.pv_major = pv.pv_major;
 945		conn->cc_version.pv_minor = pv.pv_minor;
 946	}
 947out:
 948	return ret;
 949}
 950
 951static void user_recover_prep(void *arg)
 952{
 953}
 954
 955static void user_recover_slot(void *arg, struct dlm_slot *slot)
 956{
 957	struct ocfs2_cluster_connection *conn = arg;
 958	printk(KERN_INFO "ocfs2: Node %d/%d down. Initiating recovery.\n",
 959			slot->nodeid, slot->slot);
 960	conn->cc_recovery_handler(slot->nodeid, conn->cc_recovery_data);
 961
 962}
 963
 964static void user_recover_done(void *arg, struct dlm_slot *slots,
 965		int num_slots, int our_slot,
 966		uint32_t generation)
 967{
 968	struct ocfs2_cluster_connection *conn = arg;
 969	struct ocfs2_live_connection *lc = conn->cc_private;
 970	int i;
 971
 972	for (i = 0; i < num_slots; i++)
 973		if (slots[i].slot == our_slot) {
 974			atomic_set(&lc->oc_this_node, slots[i].nodeid);
 975			break;
 976		}
 977
 978	lc->oc_our_slot = our_slot;
 979	wake_up(&lc->oc_wait);
 980}
 981
 982static const struct dlm_lockspace_ops ocfs2_ls_ops = {
 983	.recover_prep = user_recover_prep,
 984	.recover_slot = user_recover_slot,
 985	.recover_done = user_recover_done,
 986};
 987
 988static int user_cluster_disconnect(struct ocfs2_cluster_connection *conn)
 989{
 990	version_unlock(conn);
 991	dlm_release_lockspace(conn->cc_lockspace, 2);
 992	conn->cc_lockspace = NULL;
 993	ocfs2_live_connection_drop(conn->cc_private);
 994	conn->cc_private = NULL;
 995	return 0;
 996}
 997
 998static int user_cluster_connect(struct ocfs2_cluster_connection *conn)
 999{
1000	dlm_lockspace_t *fsdlm;
1001	struct ocfs2_live_connection *lc;
1002	int rc, ops_rv;
1003
1004	BUG_ON(conn == NULL);
1005
1006	lc = kzalloc(sizeof(struct ocfs2_live_connection), GFP_KERNEL);
1007	if (!lc) {
1008		rc = -ENOMEM;
1009		goto out;
1010	}
1011
1012	init_waitqueue_head(&lc->oc_wait);
1013	init_completion(&lc->oc_sync_wait);
1014	atomic_set(&lc->oc_this_node, 0);
1015	conn->cc_private = lc;
1016	lc->oc_type = NO_CONTROLD;
1017
1018	rc = dlm_new_lockspace(conn->cc_name, conn->cc_cluster_name,
1019			       DLM_LSFL_FS, DLM_LVB_LEN,
1020			       &ocfs2_ls_ops, conn, &ops_rv, &fsdlm);
1021	if (rc)
 
 
 
 
 
 
1022		goto out;
 
1023
1024	if (ops_rv == -EOPNOTSUPP) {
1025		lc->oc_type = WITH_CONTROLD;
1026		printk(KERN_NOTICE "ocfs2: You seem to be using an older "
1027				"version of dlm_controld and/or ocfs2-tools."
1028				" Please consider upgrading.\n");
1029	} else if (ops_rv) {
1030		rc = ops_rv;
1031		goto out;
1032	}
1033	conn->cc_lockspace = fsdlm;
1034
1035	rc = ocfs2_live_connection_attach(conn, lc);
1036	if (rc)
1037		goto out;
1038
1039	if (lc->oc_type == NO_CONTROLD) {
1040		rc = get_protocol_version(conn);
1041		if (rc) {
1042			printk(KERN_ERR "ocfs2: Could not determine"
1043					" locking version\n");
1044			user_cluster_disconnect(conn);
1045			goto out;
1046		}
1047		wait_event(lc->oc_wait, (atomic_read(&lc->oc_this_node) > 0));
1048	}
1049
1050	/*
1051	 * running_proto must have been set before we allowed any mounts
1052	 * to proceed.
1053	 */
1054	if (fs_protocol_compare(&running_proto, &conn->cc_version)) {
1055		printk(KERN_ERR
1056		       "Unable to mount with fs locking protocol version "
1057		       "%u.%u because negotiated protocol is %u.%u\n",
1058		       conn->cc_version.pv_major, conn->cc_version.pv_minor,
1059		       running_proto.pv_major, running_proto.pv_minor);
1060		rc = -EPROTO;
1061		ocfs2_live_connection_drop(lc);
1062		lc = NULL;
1063	}
1064
1065out:
1066	if (rc && lc)
1067		kfree(lc);
1068	return rc;
1069}
1070
1071
1072static int user_cluster_this_node(struct ocfs2_cluster_connection *conn,
1073				  unsigned int *this_node)
1074{
1075	int rc;
1076	struct ocfs2_live_connection *lc = conn->cc_private;
1077
1078	if (lc->oc_type == WITH_CONTROLD)
1079		rc = ocfs2_control_get_this_node();
1080	else if (lc->oc_type == NO_CONTROLD)
1081		rc = atomic_read(&lc->oc_this_node);
1082	else
1083		rc = -EINVAL;
1084
1085	if (rc < 0)
1086		return rc;
1087
1088	*this_node = rc;
1089	return 0;
1090}
1091
1092static struct ocfs2_stack_operations ocfs2_user_plugin_ops = {
1093	.connect	= user_cluster_connect,
1094	.disconnect	= user_cluster_disconnect,
1095	.this_node	= user_cluster_this_node,
1096	.dlm_lock	= user_dlm_lock,
1097	.dlm_unlock	= user_dlm_unlock,
1098	.lock_status	= user_dlm_lock_status,
1099	.lvb_valid	= user_dlm_lvb_valid,
1100	.lock_lvb	= user_dlm_lvb,
1101	.plock		= user_plock,
1102	.dump_lksb	= user_dlm_dump_lksb,
1103};
1104
1105static struct ocfs2_stack_plugin ocfs2_user_plugin = {
1106	.sp_name	= "user",
1107	.sp_ops		= &ocfs2_user_plugin_ops,
1108	.sp_owner	= THIS_MODULE,
1109};
1110
1111
1112static int __init ocfs2_user_plugin_init(void)
1113{
1114	int rc;
1115
1116	rc = ocfs2_control_init();
1117	if (!rc) {
1118		rc = ocfs2_stack_glue_register(&ocfs2_user_plugin);
1119		if (rc)
1120			ocfs2_control_exit();
1121	}
1122
1123	return rc;
1124}
1125
1126static void __exit ocfs2_user_plugin_exit(void)
1127{
1128	ocfs2_stack_glue_unregister(&ocfs2_user_plugin);
1129	ocfs2_control_exit();
1130}
1131
1132MODULE_AUTHOR("Oracle");
1133MODULE_DESCRIPTION("ocfs2 driver for userspace cluster stacks");
1134MODULE_LICENSE("GPL");
1135module_init(ocfs2_user_plugin_init);
1136module_exit(ocfs2_user_plugin_exit);
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
 
   3 * stack_user.c
   4 *
   5 * Code which interfaces ocfs2 with fs/dlm and a userspace stack.
   6 *
   7 * Copyright (C) 2007 Oracle.  All rights reserved.
 
 
 
 
 
 
 
 
 
   8 */
   9
  10#include <linux/module.h>
  11#include <linux/fs.h>
  12#include <linux/miscdevice.h>
  13#include <linux/mutex.h>
  14#include <linux/slab.h>
  15#include <linux/reboot.h>
  16#include <linux/sched.h>
  17#include <linux/uaccess.h>
  18
  19#include "stackglue.h"
  20
  21#include <linux/dlm_plock.h>
  22
  23/*
  24 * The control protocol starts with a handshake.  Until the handshake
  25 * is complete, the control device will fail all write(2)s.
  26 *
  27 * The handshake is simple.  First, the client reads until EOF.  Each line
  28 * of output is a supported protocol tag.  All protocol tags are a single
  29 * character followed by a two hex digit version number.  Currently the
  30 * only things supported is T01, for "Text-base version 0x01".  Next, the
  31 * client writes the version they would like to use, including the newline.
  32 * Thus, the protocol tag is 'T01\n'.  If the version tag written is
  33 * unknown, -EINVAL is returned.  Once the negotiation is complete, the
  34 * client can start sending messages.
  35 *
  36 * The T01 protocol has three messages.  First is the "SETN" message.
  37 * It has the following syntax:
  38 *
  39 *  SETN<space><8-char-hex-nodenum><newline>
  40 *
  41 * This is 14 characters.
  42 *
  43 * The "SETN" message must be the first message following the protocol.
  44 * It tells ocfs2_control the local node number.
  45 *
  46 * Next comes the "SETV" message.  It has the following syntax:
  47 *
  48 *  SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
  49 *
  50 * This is 11 characters.
  51 *
  52 * The "SETV" message sets the filesystem locking protocol version as
  53 * negotiated by the client.  The client negotiates based on the maximum
  54 * version advertised in /sys/fs/ocfs2/max_locking_protocol.  The major
  55 * number from the "SETV" message must match
  56 * ocfs2_user_plugin.sp_max_proto.pv_major, and the minor number
  57 * must be less than or equal to ...sp_max_version.pv_minor.
  58 *
  59 * Once this information has been set, mounts will be allowed.  From this
  60 * point on, the "DOWN" message can be sent for node down notification.
  61 * It has the following syntax:
  62 *
  63 *  DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline>
  64 *
  65 * eg:
  66 *
  67 *  DOWN 632A924FDD844190BDA93C0DF6B94899 00000001\n
  68 *
  69 * This is 47 characters.
  70 */
  71
  72/*
  73 * Whether or not the client has done the handshake.
  74 * For now, we have just one protocol version.
  75 */
  76#define OCFS2_CONTROL_PROTO			"T01\n"
  77#define OCFS2_CONTROL_PROTO_LEN			4
  78
  79/* Handshake states */
  80#define OCFS2_CONTROL_HANDSHAKE_INVALID		(0)
  81#define OCFS2_CONTROL_HANDSHAKE_READ		(1)
  82#define OCFS2_CONTROL_HANDSHAKE_PROTOCOL	(2)
  83#define OCFS2_CONTROL_HANDSHAKE_VALID		(3)
  84
  85/* Messages */
  86#define OCFS2_CONTROL_MESSAGE_OP_LEN		4
  87#define OCFS2_CONTROL_MESSAGE_SETNODE_OP	"SETN"
  88#define OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN	14
  89#define OCFS2_CONTROL_MESSAGE_SETVERSION_OP	"SETV"
  90#define OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN	11
  91#define OCFS2_CONTROL_MESSAGE_DOWN_OP		"DOWN"
  92#define OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN	47
  93#define OCFS2_TEXT_UUID_LEN			32
  94#define OCFS2_CONTROL_MESSAGE_VERNUM_LEN	2
  95#define OCFS2_CONTROL_MESSAGE_NODENUM_LEN	8
  96#define VERSION_LOCK				"version_lock"
  97
  98enum ocfs2_connection_type {
  99	WITH_CONTROLD,
 100	NO_CONTROLD
 101};
 102
 103/*
 104 * ocfs2_live_connection is refcounted because the filesystem and
 105 * miscdevice sides can detach in different order.  Let's just be safe.
 106 */
 107struct ocfs2_live_connection {
 108	struct list_head		oc_list;
 109	struct ocfs2_cluster_connection	*oc_conn;
 110	enum ocfs2_connection_type	oc_type;
 111	atomic_t                        oc_this_node;
 112	int                             oc_our_slot;
 113	struct dlm_lksb                 oc_version_lksb;
 114	char                            oc_lvb[DLM_LVB_LEN];
 115	struct completion               oc_sync_wait;
 116	wait_queue_head_t		oc_wait;
 117};
 118
 119struct ocfs2_control_private {
 120	struct list_head op_list;
 121	int op_state;
 122	int op_this_node;
 123	struct ocfs2_protocol_version op_proto;
 124};
 125
 126/* SETN<space><8-char-hex-nodenum><newline> */
 127struct ocfs2_control_message_setn {
 128	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 129	char	space;
 130	char	nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
 131	char	newline;
 132};
 133
 134/* SETV<space><2-char-hex-major><space><2-char-hex-minor><newline> */
 135struct ocfs2_control_message_setv {
 136	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 137	char	space1;
 138	char	major[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
 139	char	space2;
 140	char	minor[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
 141	char	newline;
 142};
 143
 144/* DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline> */
 145struct ocfs2_control_message_down {
 146	char	tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 147	char	space1;
 148	char	uuid[OCFS2_TEXT_UUID_LEN];
 149	char	space2;
 150	char	nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
 151	char	newline;
 152};
 153
 154union ocfs2_control_message {
 155	char					tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
 156	struct ocfs2_control_message_setn	u_setn;
 157	struct ocfs2_control_message_setv	u_setv;
 158	struct ocfs2_control_message_down	u_down;
 159};
 160
 161static struct ocfs2_stack_plugin ocfs2_user_plugin;
 162
 163static atomic_t ocfs2_control_opened;
 164static int ocfs2_control_this_node = -1;
 165static struct ocfs2_protocol_version running_proto;
 166
 167static LIST_HEAD(ocfs2_live_connection_list);
 168static LIST_HEAD(ocfs2_control_private_list);
 169static DEFINE_MUTEX(ocfs2_control_lock);
 170
 171static inline void ocfs2_control_set_handshake_state(struct file *file,
 172						     int state)
 173{
 174	struct ocfs2_control_private *p = file->private_data;
 175	p->op_state = state;
 176}
 177
 178static inline int ocfs2_control_get_handshake_state(struct file *file)
 179{
 180	struct ocfs2_control_private *p = file->private_data;
 181	return p->op_state;
 182}
 183
 184static struct ocfs2_live_connection *ocfs2_connection_find(const char *name)
 185{
 186	size_t len = strlen(name);
 187	struct ocfs2_live_connection *c;
 188
 189	BUG_ON(!mutex_is_locked(&ocfs2_control_lock));
 190
 191	list_for_each_entry(c, &ocfs2_live_connection_list, oc_list) {
 192		if ((c->oc_conn->cc_namelen == len) &&
 193		    !strncmp(c->oc_conn->cc_name, name, len))
 194			return c;
 195	}
 196
 197	return NULL;
 198}
 199
 200/*
 201 * ocfs2_live_connection structures are created underneath the ocfs2
 202 * mount path.  Since the VFS prevents multiple calls to
 203 * fill_super(), we can't get dupes here.
 204 */
 205static int ocfs2_live_connection_attach(struct ocfs2_cluster_connection *conn,
 206				     struct ocfs2_live_connection *c)
 207{
 208	int rc = 0;
 209
 210	mutex_lock(&ocfs2_control_lock);
 211	c->oc_conn = conn;
 212
 213	if ((c->oc_type == NO_CONTROLD) || atomic_read(&ocfs2_control_opened))
 214		list_add(&c->oc_list, &ocfs2_live_connection_list);
 215	else {
 216		printk(KERN_ERR
 217		       "ocfs2: Userspace control daemon is not present\n");
 218		rc = -ESRCH;
 219	}
 220
 221	mutex_unlock(&ocfs2_control_lock);
 222	return rc;
 223}
 224
 225/*
 226 * This function disconnects the cluster connection from ocfs2_control.
 227 * Afterwards, userspace can't affect the cluster connection.
 228 */
 229static void ocfs2_live_connection_drop(struct ocfs2_live_connection *c)
 230{
 231	mutex_lock(&ocfs2_control_lock);
 232	list_del_init(&c->oc_list);
 233	c->oc_conn = NULL;
 234	mutex_unlock(&ocfs2_control_lock);
 235
 236	kfree(c);
 237}
 238
 239static int ocfs2_control_cfu(void *target, size_t target_len,
 240			     const char __user *buf, size_t count)
 241{
 242	/* The T01 expects write(2) calls to have exactly one command */
 243	if ((count != target_len) ||
 244	    (count > sizeof(union ocfs2_control_message)))
 245		return -EINVAL;
 246
 247	if (copy_from_user(target, buf, target_len))
 248		return -EFAULT;
 249
 250	return 0;
 251}
 252
 253static ssize_t ocfs2_control_validate_protocol(struct file *file,
 254					       const char __user *buf,
 255					       size_t count)
 256{
 257	ssize_t ret;
 258	char kbuf[OCFS2_CONTROL_PROTO_LEN];
 259
 260	ret = ocfs2_control_cfu(kbuf, OCFS2_CONTROL_PROTO_LEN,
 261				buf, count);
 262	if (ret)
 263		return ret;
 264
 265	if (strncmp(kbuf, OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN))
 266		return -EINVAL;
 267
 268	ocfs2_control_set_handshake_state(file,
 269					  OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
 270
 271	return count;
 272}
 273
 274static void ocfs2_control_send_down(const char *uuid,
 275				    int nodenum)
 276{
 277	struct ocfs2_live_connection *c;
 278
 279	mutex_lock(&ocfs2_control_lock);
 280
 281	c = ocfs2_connection_find(uuid);
 282	if (c) {
 283		BUG_ON(c->oc_conn == NULL);
 284		c->oc_conn->cc_recovery_handler(nodenum,
 285						c->oc_conn->cc_recovery_data);
 286	}
 287
 288	mutex_unlock(&ocfs2_control_lock);
 289}
 290
 291/*
 292 * Called whenever configuration elements are sent to /dev/ocfs2_control.
 293 * If all configuration elements are present, try to set the global
 294 * values.  If there is a problem, return an error.  Skip any missing
 295 * elements, and only bump ocfs2_control_opened when we have all elements
 296 * and are successful.
 297 */
 298static int ocfs2_control_install_private(struct file *file)
 299{
 300	int rc = 0;
 301	int set_p = 1;
 302	struct ocfs2_control_private *p = file->private_data;
 303
 304	BUG_ON(p->op_state != OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
 305
 306	mutex_lock(&ocfs2_control_lock);
 307
 308	if (p->op_this_node < 0) {
 309		set_p = 0;
 310	} else if ((ocfs2_control_this_node >= 0) &&
 311		   (ocfs2_control_this_node != p->op_this_node)) {
 312		rc = -EINVAL;
 313		goto out_unlock;
 314	}
 315
 316	if (!p->op_proto.pv_major) {
 317		set_p = 0;
 318	} else if (!list_empty(&ocfs2_live_connection_list) &&
 319		   ((running_proto.pv_major != p->op_proto.pv_major) ||
 320		    (running_proto.pv_minor != p->op_proto.pv_minor))) {
 321		rc = -EINVAL;
 322		goto out_unlock;
 323	}
 324
 325	if (set_p) {
 326		ocfs2_control_this_node = p->op_this_node;
 327		running_proto.pv_major = p->op_proto.pv_major;
 328		running_proto.pv_minor = p->op_proto.pv_minor;
 329	}
 330
 331out_unlock:
 332	mutex_unlock(&ocfs2_control_lock);
 333
 334	if (!rc && set_p) {
 335		/* We set the global values successfully */
 336		atomic_inc(&ocfs2_control_opened);
 337		ocfs2_control_set_handshake_state(file,
 338					OCFS2_CONTROL_HANDSHAKE_VALID);
 339	}
 340
 341	return rc;
 342}
 343
 344static int ocfs2_control_get_this_node(void)
 345{
 346	int rc;
 347
 348	mutex_lock(&ocfs2_control_lock);
 349	if (ocfs2_control_this_node < 0)
 350		rc = -EINVAL;
 351	else
 352		rc = ocfs2_control_this_node;
 353	mutex_unlock(&ocfs2_control_lock);
 354
 355	return rc;
 356}
 357
 358static int ocfs2_control_do_setnode_msg(struct file *file,
 359					struct ocfs2_control_message_setn *msg)
 360{
 361	long nodenum;
 362	char *ptr = NULL;
 363	struct ocfs2_control_private *p = file->private_data;
 364
 365	if (ocfs2_control_get_handshake_state(file) !=
 366	    OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
 367		return -EINVAL;
 368
 369	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
 370		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 371		return -EINVAL;
 372
 373	if ((msg->space != ' ') || (msg->newline != '\n'))
 374		return -EINVAL;
 375	msg->space = msg->newline = '\0';
 376
 377	nodenum = simple_strtol(msg->nodestr, &ptr, 16);
 378	if (!ptr || *ptr)
 379		return -EINVAL;
 380
 381	if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
 382	    (nodenum > INT_MAX) || (nodenum < 0))
 383		return -ERANGE;
 384	p->op_this_node = nodenum;
 385
 386	return ocfs2_control_install_private(file);
 387}
 388
 389static int ocfs2_control_do_setversion_msg(struct file *file,
 390					   struct ocfs2_control_message_setv *msg)
 391{
 392	long major, minor;
 393	char *ptr = NULL;
 394	struct ocfs2_control_private *p = file->private_data;
 395	struct ocfs2_protocol_version *max =
 396		&ocfs2_user_plugin.sp_max_proto;
 397
 398	if (ocfs2_control_get_handshake_state(file) !=
 399	    OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
 400		return -EINVAL;
 401
 402	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
 403		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 404		return -EINVAL;
 405
 406	if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
 407	    (msg->newline != '\n'))
 408		return -EINVAL;
 409	msg->space1 = msg->space2 = msg->newline = '\0';
 410
 411	major = simple_strtol(msg->major, &ptr, 16);
 412	if (!ptr || *ptr)
 413		return -EINVAL;
 414	minor = simple_strtol(msg->minor, &ptr, 16);
 415	if (!ptr || *ptr)
 416		return -EINVAL;
 417
 418	/*
 419	 * The major must be between 1 and 255, inclusive.  The minor
 420	 * must be between 0 and 255, inclusive.  The version passed in
 421	 * must be within the maximum version supported by the filesystem.
 422	 */
 423	if ((major == LONG_MIN) || (major == LONG_MAX) ||
 424	    (major > (u8)-1) || (major < 1))
 425		return -ERANGE;
 426	if ((minor == LONG_MIN) || (minor == LONG_MAX) ||
 427	    (minor > (u8)-1) || (minor < 0))
 428		return -ERANGE;
 429	if ((major != max->pv_major) ||
 430	    (minor > max->pv_minor))
 431		return -EINVAL;
 432
 433	p->op_proto.pv_major = major;
 434	p->op_proto.pv_minor = minor;
 435
 436	return ocfs2_control_install_private(file);
 437}
 438
 439static int ocfs2_control_do_down_msg(struct file *file,
 440				     struct ocfs2_control_message_down *msg)
 441{
 442	long nodenum;
 443	char *p = NULL;
 444
 445	if (ocfs2_control_get_handshake_state(file) !=
 446	    OCFS2_CONTROL_HANDSHAKE_VALID)
 447		return -EINVAL;
 448
 449	if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
 450		    OCFS2_CONTROL_MESSAGE_OP_LEN))
 451		return -EINVAL;
 452
 453	if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
 454	    (msg->newline != '\n'))
 455		return -EINVAL;
 456	msg->space1 = msg->space2 = msg->newline = '\0';
 457
 458	nodenum = simple_strtol(msg->nodestr, &p, 16);
 459	if (!p || *p)
 460		return -EINVAL;
 461
 462	if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
 463	    (nodenum > INT_MAX) || (nodenum < 0))
 464		return -ERANGE;
 465
 466	ocfs2_control_send_down(msg->uuid, nodenum);
 467
 468	return 0;
 469}
 470
 471static ssize_t ocfs2_control_message(struct file *file,
 472				     const char __user *buf,
 473				     size_t count)
 474{
 475	ssize_t ret;
 476	union ocfs2_control_message msg;
 477
 478	/* Try to catch padding issues */
 479	WARN_ON(offsetof(struct ocfs2_control_message_down, uuid) !=
 480		(sizeof(msg.u_down.tag) + sizeof(msg.u_down.space1)));
 481
 482	memset(&msg, 0, sizeof(union ocfs2_control_message));
 483	ret = ocfs2_control_cfu(&msg, count, buf, count);
 484	if (ret)
 485		goto out;
 486
 487	if ((count == OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN) &&
 488	    !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
 489		     OCFS2_CONTROL_MESSAGE_OP_LEN))
 490		ret = ocfs2_control_do_setnode_msg(file, &msg.u_setn);
 491	else if ((count == OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN) &&
 492		 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
 493			  OCFS2_CONTROL_MESSAGE_OP_LEN))
 494		ret = ocfs2_control_do_setversion_msg(file, &msg.u_setv);
 495	else if ((count == OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN) &&
 496		 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
 497			  OCFS2_CONTROL_MESSAGE_OP_LEN))
 498		ret = ocfs2_control_do_down_msg(file, &msg.u_down);
 499	else
 500		ret = -EINVAL;
 501
 502out:
 503	return ret ? ret : count;
 504}
 505
 506static ssize_t ocfs2_control_write(struct file *file,
 507				   const char __user *buf,
 508				   size_t count,
 509				   loff_t *ppos)
 510{
 511	ssize_t ret;
 512
 513	switch (ocfs2_control_get_handshake_state(file)) {
 514		case OCFS2_CONTROL_HANDSHAKE_INVALID:
 515			ret = -EINVAL;
 516			break;
 517
 518		case OCFS2_CONTROL_HANDSHAKE_READ:
 519			ret = ocfs2_control_validate_protocol(file, buf,
 520							      count);
 521			break;
 522
 523		case OCFS2_CONTROL_HANDSHAKE_PROTOCOL:
 524		case OCFS2_CONTROL_HANDSHAKE_VALID:
 525			ret = ocfs2_control_message(file, buf, count);
 526			break;
 527
 528		default:
 529			BUG();
 530			ret = -EIO;
 531			break;
 532	}
 533
 534	return ret;
 535}
 536
 537/*
 538 * This is a naive version.  If we ever have a new protocol, we'll expand
 539 * it.  Probably using seq_file.
 540 */
 541static ssize_t ocfs2_control_read(struct file *file,
 542				  char __user *buf,
 543				  size_t count,
 544				  loff_t *ppos)
 545{
 546	ssize_t ret;
 547
 548	ret = simple_read_from_buffer(buf, count, ppos,
 549			OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN);
 550
 551	/* Have we read the whole protocol list? */
 552	if (ret > 0 && *ppos >= OCFS2_CONTROL_PROTO_LEN)
 553		ocfs2_control_set_handshake_state(file,
 554						  OCFS2_CONTROL_HANDSHAKE_READ);
 555
 556	return ret;
 557}
 558
 559static int ocfs2_control_release(struct inode *inode, struct file *file)
 560{
 561	struct ocfs2_control_private *p = file->private_data;
 562
 563	mutex_lock(&ocfs2_control_lock);
 564
 565	if (ocfs2_control_get_handshake_state(file) !=
 566	    OCFS2_CONTROL_HANDSHAKE_VALID)
 567		goto out;
 568
 569	if (atomic_dec_and_test(&ocfs2_control_opened)) {
 570		if (!list_empty(&ocfs2_live_connection_list)) {
 571			/* XXX: Do bad things! */
 572			printk(KERN_ERR
 573			       "ocfs2: Unexpected release of ocfs2_control!\n"
 574			       "       Loss of cluster connection requires "
 575			       "an emergency restart!\n");
 576			emergency_restart();
 577		}
 578		/*
 579		 * Last valid close clears the node number and resets
 580		 * the locking protocol version
 581		 */
 582		ocfs2_control_this_node = -1;
 583		running_proto.pv_major = 0;
 584		running_proto.pv_minor = 0;
 585	}
 586
 587out:
 588	list_del_init(&p->op_list);
 589	file->private_data = NULL;
 590
 591	mutex_unlock(&ocfs2_control_lock);
 592
 593	kfree(p);
 594
 595	return 0;
 596}
 597
 598static int ocfs2_control_open(struct inode *inode, struct file *file)
 599{
 600	struct ocfs2_control_private *p;
 601
 602	p = kzalloc(sizeof(struct ocfs2_control_private), GFP_KERNEL);
 603	if (!p)
 604		return -ENOMEM;
 605	p->op_this_node = -1;
 606
 607	mutex_lock(&ocfs2_control_lock);
 608	file->private_data = p;
 609	list_add(&p->op_list, &ocfs2_control_private_list);
 610	mutex_unlock(&ocfs2_control_lock);
 611
 612	return 0;
 613}
 614
 615static const struct file_operations ocfs2_control_fops = {
 616	.open    = ocfs2_control_open,
 617	.release = ocfs2_control_release,
 618	.read    = ocfs2_control_read,
 619	.write   = ocfs2_control_write,
 620	.owner   = THIS_MODULE,
 621	.llseek  = default_llseek,
 622};
 623
 624static struct miscdevice ocfs2_control_device = {
 625	.minor		= MISC_DYNAMIC_MINOR,
 626	.name		= "ocfs2_control",
 627	.fops		= &ocfs2_control_fops,
 628};
 629
 630static int ocfs2_control_init(void)
 631{
 632	int rc;
 633
 634	atomic_set(&ocfs2_control_opened, 0);
 635
 636	rc = misc_register(&ocfs2_control_device);
 637	if (rc)
 638		printk(KERN_ERR
 639		       "ocfs2: Unable to register ocfs2_control device "
 640		       "(errno %d)\n",
 641		       -rc);
 642
 643	return rc;
 644}
 645
 646static void ocfs2_control_exit(void)
 647{
 648	misc_deregister(&ocfs2_control_device);
 
 
 
 
 
 
 
 649}
 650
 651static void fsdlm_lock_ast_wrapper(void *astarg)
 652{
 653	struct ocfs2_dlm_lksb *lksb = astarg;
 654	int status = lksb->lksb_fsdlm.sb_status;
 655
 656	/*
 657	 * For now we're punting on the issue of other non-standard errors
 658	 * where we can't tell if the unlock_ast or lock_ast should be called.
 659	 * The main "other error" that's possible is EINVAL which means the
 660	 * function was called with invalid args, which shouldn't be possible
 661	 * since the caller here is under our control.  Other non-standard
 662	 * errors probably fall into the same category, or otherwise are fatal
 663	 * which means we can't carry on anyway.
 664	 */
 665
 666	if (status == -DLM_EUNLOCK || status == -DLM_ECANCEL)
 667		lksb->lksb_conn->cc_proto->lp_unlock_ast(lksb, 0);
 668	else
 669		lksb->lksb_conn->cc_proto->lp_lock_ast(lksb);
 670}
 671
 672static void fsdlm_blocking_ast_wrapper(void *astarg, int level)
 673{
 674	struct ocfs2_dlm_lksb *lksb = astarg;
 675
 676	lksb->lksb_conn->cc_proto->lp_blocking_ast(lksb, level);
 677}
 678
 679static int user_dlm_lock(struct ocfs2_cluster_connection *conn,
 680			 int mode,
 681			 struct ocfs2_dlm_lksb *lksb,
 682			 u32 flags,
 683			 void *name,
 684			 unsigned int namelen)
 685{
 686	int ret;
 687
 688	if (!lksb->lksb_fsdlm.sb_lvbptr)
 689		lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
 690					     sizeof(struct dlm_lksb);
 691
 692	ret = dlm_lock(conn->cc_lockspace, mode, &lksb->lksb_fsdlm,
 693		       flags|DLM_LKF_NODLCKWT, name, namelen, 0,
 694		       fsdlm_lock_ast_wrapper, lksb,
 695		       fsdlm_blocking_ast_wrapper);
 696	return ret;
 697}
 698
 699static int user_dlm_unlock(struct ocfs2_cluster_connection *conn,
 700			   struct ocfs2_dlm_lksb *lksb,
 701			   u32 flags)
 702{
 703	int ret;
 704
 705	ret = dlm_unlock(conn->cc_lockspace, lksb->lksb_fsdlm.sb_lkid,
 706			 flags, &lksb->lksb_fsdlm, lksb);
 707	return ret;
 708}
 709
 710static int user_dlm_lock_status(struct ocfs2_dlm_lksb *lksb)
 711{
 712	return lksb->lksb_fsdlm.sb_status;
 713}
 714
 715static int user_dlm_lvb_valid(struct ocfs2_dlm_lksb *lksb)
 716{
 717	int invalid = lksb->lksb_fsdlm.sb_flags & DLM_SBF_VALNOTVALID;
 718
 719	return !invalid;
 720}
 721
 722static void *user_dlm_lvb(struct ocfs2_dlm_lksb *lksb)
 723{
 724	if (!lksb->lksb_fsdlm.sb_lvbptr)
 725		lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
 726					     sizeof(struct dlm_lksb);
 727	return (void *)(lksb->lksb_fsdlm.sb_lvbptr);
 728}
 729
 730static void user_dlm_dump_lksb(struct ocfs2_dlm_lksb *lksb)
 731{
 732}
 733
 734static int user_plock(struct ocfs2_cluster_connection *conn,
 735		      u64 ino,
 736		      struct file *file,
 737		      int cmd,
 738		      struct file_lock *fl)
 739{
 740	/*
 741	 * This more or less just demuxes the plock request into any
 742	 * one of three dlm calls.
 743	 *
 744	 * Internally, fs/dlm will pass these to a misc device, which
 745	 * a userspace daemon will read and write to.
 746	 *
 747	 * For now, cancel requests (which happen internally only),
 748	 * are turned into unlocks. Most of this function taken from
 749	 * gfs2_lock.
 750	 */
 751
 752	if (cmd == F_CANCELLK) {
 753		cmd = F_SETLK;
 754		fl->fl_type = F_UNLCK;
 755	}
 756
 757	if (IS_GETLK(cmd))
 758		return dlm_posix_get(conn->cc_lockspace, ino, file, fl);
 759	else if (fl->fl_type == F_UNLCK)
 760		return dlm_posix_unlock(conn->cc_lockspace, ino, file, fl);
 761	else
 762		return dlm_posix_lock(conn->cc_lockspace, ino, file, cmd, fl);
 763}
 764
 765/*
 766 * Compare a requested locking protocol version against the current one.
 767 *
 768 * If the major numbers are different, they are incompatible.
 769 * If the current minor is greater than the request, they are incompatible.
 770 * If the current minor is less than or equal to the request, they are
 771 * compatible, and the requester should run at the current minor version.
 772 */
 773static int fs_protocol_compare(struct ocfs2_protocol_version *existing,
 774			       struct ocfs2_protocol_version *request)
 775{
 776	if (existing->pv_major != request->pv_major)
 777		return 1;
 778
 779	if (existing->pv_minor > request->pv_minor)
 780		return 1;
 781
 782	if (existing->pv_minor < request->pv_minor)
 783		request->pv_minor = existing->pv_minor;
 784
 785	return 0;
 786}
 787
 788static void lvb_to_version(char *lvb, struct ocfs2_protocol_version *ver)
 789{
 790	struct ocfs2_protocol_version *pv =
 791		(struct ocfs2_protocol_version *)lvb;
 792	/*
 793	 * ocfs2_protocol_version has two u8 variables, so we don't
 794	 * need any endian conversion.
 795	 */
 796	ver->pv_major = pv->pv_major;
 797	ver->pv_minor = pv->pv_minor;
 798}
 799
 800static void version_to_lvb(struct ocfs2_protocol_version *ver, char *lvb)
 801{
 802	struct ocfs2_protocol_version *pv =
 803		(struct ocfs2_protocol_version *)lvb;
 804	/*
 805	 * ocfs2_protocol_version has two u8 variables, so we don't
 806	 * need any endian conversion.
 807	 */
 808	pv->pv_major = ver->pv_major;
 809	pv->pv_minor = ver->pv_minor;
 810}
 811
 812static void sync_wait_cb(void *arg)
 813{
 814	struct ocfs2_cluster_connection *conn = arg;
 815	struct ocfs2_live_connection *lc = conn->cc_private;
 816	complete(&lc->oc_sync_wait);
 817}
 818
 819static int sync_unlock(struct ocfs2_cluster_connection *conn,
 820		struct dlm_lksb *lksb, char *name)
 821{
 822	int error;
 823	struct ocfs2_live_connection *lc = conn->cc_private;
 824
 825	error = dlm_unlock(conn->cc_lockspace, lksb->sb_lkid, 0, lksb, conn);
 826	if (error) {
 827		printk(KERN_ERR "%s lkid %x error %d\n",
 828				name, lksb->sb_lkid, error);
 829		return error;
 830	}
 831
 832	wait_for_completion(&lc->oc_sync_wait);
 833
 834	if (lksb->sb_status != -DLM_EUNLOCK) {
 835		printk(KERN_ERR "%s lkid %x status %d\n",
 836				name, lksb->sb_lkid, lksb->sb_status);
 837		return -1;
 838	}
 839	return 0;
 840}
 841
 842static int sync_lock(struct ocfs2_cluster_connection *conn,
 843		int mode, uint32_t flags,
 844		struct dlm_lksb *lksb, char *name)
 845{
 846	int error, status;
 847	struct ocfs2_live_connection *lc = conn->cc_private;
 848
 849	error = dlm_lock(conn->cc_lockspace, mode, lksb, flags,
 850			name, strlen(name),
 851			0, sync_wait_cb, conn, NULL);
 852	if (error) {
 853		printk(KERN_ERR "%s lkid %x flags %x mode %d error %d\n",
 854				name, lksb->sb_lkid, flags, mode, error);
 855		return error;
 856	}
 857
 858	wait_for_completion(&lc->oc_sync_wait);
 859
 860	status = lksb->sb_status;
 861
 862	if (status && status != -EAGAIN) {
 863		printk(KERN_ERR "%s lkid %x flags %x mode %d status %d\n",
 864				name, lksb->sb_lkid, flags, mode, status);
 865	}
 866
 867	return status;
 868}
 869
 870
 871static int version_lock(struct ocfs2_cluster_connection *conn, int mode,
 872		int flags)
 873{
 874	struct ocfs2_live_connection *lc = conn->cc_private;
 875	return sync_lock(conn, mode, flags,
 876			&lc->oc_version_lksb, VERSION_LOCK);
 877}
 878
 879static int version_unlock(struct ocfs2_cluster_connection *conn)
 880{
 881	struct ocfs2_live_connection *lc = conn->cc_private;
 882	return sync_unlock(conn, &lc->oc_version_lksb, VERSION_LOCK);
 883}
 884
 885/* get_protocol_version()
 886 *
 887 * To exchange ocfs2 versioning, we use the LVB of the version dlm lock.
 888 * The algorithm is:
 889 * 1. Attempt to take the lock in EX mode (non-blocking).
 890 * 2. If successful (which means it is the first mount), write the
 891 *    version number and downconvert to PR lock.
 892 * 3. If unsuccessful (returns -EAGAIN), read the version from the LVB after
 893 *    taking the PR lock.
 894 */
 895
 896static int get_protocol_version(struct ocfs2_cluster_connection *conn)
 897{
 898	int ret;
 899	struct ocfs2_live_connection *lc = conn->cc_private;
 900	struct ocfs2_protocol_version pv;
 901
 902	running_proto.pv_major =
 903		ocfs2_user_plugin.sp_max_proto.pv_major;
 904	running_proto.pv_minor =
 905		ocfs2_user_plugin.sp_max_proto.pv_minor;
 906
 907	lc->oc_version_lksb.sb_lvbptr = lc->oc_lvb;
 908	ret = version_lock(conn, DLM_LOCK_EX,
 909			DLM_LKF_VALBLK|DLM_LKF_NOQUEUE);
 910	if (!ret) {
 911		conn->cc_version.pv_major = running_proto.pv_major;
 912		conn->cc_version.pv_minor = running_proto.pv_minor;
 913		version_to_lvb(&running_proto, lc->oc_lvb);
 914		version_lock(conn, DLM_LOCK_PR, DLM_LKF_CONVERT|DLM_LKF_VALBLK);
 915	} else if (ret == -EAGAIN) {
 916		ret = version_lock(conn, DLM_LOCK_PR, DLM_LKF_VALBLK);
 917		if (ret)
 918			goto out;
 919		lvb_to_version(lc->oc_lvb, &pv);
 920
 921		if ((pv.pv_major != running_proto.pv_major) ||
 922				(pv.pv_minor > running_proto.pv_minor)) {
 923			ret = -EINVAL;
 924			goto out;
 925		}
 926
 927		conn->cc_version.pv_major = pv.pv_major;
 928		conn->cc_version.pv_minor = pv.pv_minor;
 929	}
 930out:
 931	return ret;
 932}
 933
 934static void user_recover_prep(void *arg)
 935{
 936}
 937
 938static void user_recover_slot(void *arg, struct dlm_slot *slot)
 939{
 940	struct ocfs2_cluster_connection *conn = arg;
 941	printk(KERN_INFO "ocfs2: Node %d/%d down. Initiating recovery.\n",
 942			slot->nodeid, slot->slot);
 943	conn->cc_recovery_handler(slot->nodeid, conn->cc_recovery_data);
 944
 945}
 946
 947static void user_recover_done(void *arg, struct dlm_slot *slots,
 948		int num_slots, int our_slot,
 949		uint32_t generation)
 950{
 951	struct ocfs2_cluster_connection *conn = arg;
 952	struct ocfs2_live_connection *lc = conn->cc_private;
 953	int i;
 954
 955	for (i = 0; i < num_slots; i++)
 956		if (slots[i].slot == our_slot) {
 957			atomic_set(&lc->oc_this_node, slots[i].nodeid);
 958			break;
 959		}
 960
 961	lc->oc_our_slot = our_slot;
 962	wake_up(&lc->oc_wait);
 963}
 964
 965static const struct dlm_lockspace_ops ocfs2_ls_ops = {
 966	.recover_prep = user_recover_prep,
 967	.recover_slot = user_recover_slot,
 968	.recover_done = user_recover_done,
 969};
 970
 971static int user_cluster_disconnect(struct ocfs2_cluster_connection *conn)
 972{
 973	version_unlock(conn);
 974	dlm_release_lockspace(conn->cc_lockspace, 2);
 975	conn->cc_lockspace = NULL;
 976	ocfs2_live_connection_drop(conn->cc_private);
 977	conn->cc_private = NULL;
 978	return 0;
 979}
 980
 981static int user_cluster_connect(struct ocfs2_cluster_connection *conn)
 982{
 983	dlm_lockspace_t *fsdlm;
 984	struct ocfs2_live_connection *lc;
 985	int rc, ops_rv;
 986
 987	BUG_ON(conn == NULL);
 988
 989	lc = kzalloc(sizeof(struct ocfs2_live_connection), GFP_KERNEL);
 990	if (!lc)
 991		return -ENOMEM;
 
 
 992
 993	init_waitqueue_head(&lc->oc_wait);
 994	init_completion(&lc->oc_sync_wait);
 995	atomic_set(&lc->oc_this_node, 0);
 996	conn->cc_private = lc;
 997	lc->oc_type = NO_CONTROLD;
 998
 999	rc = dlm_new_lockspace(conn->cc_name, conn->cc_cluster_name,
1000			       DLM_LSFL_FS | DLM_LSFL_NEWEXCL, DLM_LVB_LEN,
1001			       &ocfs2_ls_ops, conn, &ops_rv, &fsdlm);
1002	if (rc) {
1003		if (rc == -EEXIST || rc == -EPROTO)
1004			printk(KERN_ERR "ocfs2: Unable to create the "
1005				"lockspace %s (%d), because a ocfs2-tools "
1006				"program is running on this file system "
1007				"with the same name lockspace\n",
1008				conn->cc_name, rc);
1009		goto out;
1010	}
1011
1012	if (ops_rv == -EOPNOTSUPP) {
1013		lc->oc_type = WITH_CONTROLD;
1014		printk(KERN_NOTICE "ocfs2: You seem to be using an older "
1015				"version of dlm_controld and/or ocfs2-tools."
1016				" Please consider upgrading.\n");
1017	} else if (ops_rv) {
1018		rc = ops_rv;
1019		goto out;
1020	}
1021	conn->cc_lockspace = fsdlm;
1022
1023	rc = ocfs2_live_connection_attach(conn, lc);
1024	if (rc)
1025		goto out;
1026
1027	if (lc->oc_type == NO_CONTROLD) {
1028		rc = get_protocol_version(conn);
1029		if (rc) {
1030			printk(KERN_ERR "ocfs2: Could not determine"
1031					" locking version\n");
1032			user_cluster_disconnect(conn);
1033			goto out;
1034		}
1035		wait_event(lc->oc_wait, (atomic_read(&lc->oc_this_node) > 0));
1036	}
1037
1038	/*
1039	 * running_proto must have been set before we allowed any mounts
1040	 * to proceed.
1041	 */
1042	if (fs_protocol_compare(&running_proto, &conn->cc_version)) {
1043		printk(KERN_ERR
1044		       "Unable to mount with fs locking protocol version "
1045		       "%u.%u because negotiated protocol is %u.%u\n",
1046		       conn->cc_version.pv_major, conn->cc_version.pv_minor,
1047		       running_proto.pv_major, running_proto.pv_minor);
1048		rc = -EPROTO;
1049		ocfs2_live_connection_drop(lc);
1050		lc = NULL;
1051	}
1052
1053out:
1054	if (rc)
1055		kfree(lc);
1056	return rc;
1057}
1058
1059
1060static int user_cluster_this_node(struct ocfs2_cluster_connection *conn,
1061				  unsigned int *this_node)
1062{
1063	int rc;
1064	struct ocfs2_live_connection *lc = conn->cc_private;
1065
1066	if (lc->oc_type == WITH_CONTROLD)
1067		rc = ocfs2_control_get_this_node();
1068	else if (lc->oc_type == NO_CONTROLD)
1069		rc = atomic_read(&lc->oc_this_node);
1070	else
1071		rc = -EINVAL;
1072
1073	if (rc < 0)
1074		return rc;
1075
1076	*this_node = rc;
1077	return 0;
1078}
1079
1080static struct ocfs2_stack_operations ocfs2_user_plugin_ops = {
1081	.connect	= user_cluster_connect,
1082	.disconnect	= user_cluster_disconnect,
1083	.this_node	= user_cluster_this_node,
1084	.dlm_lock	= user_dlm_lock,
1085	.dlm_unlock	= user_dlm_unlock,
1086	.lock_status	= user_dlm_lock_status,
1087	.lvb_valid	= user_dlm_lvb_valid,
1088	.lock_lvb	= user_dlm_lvb,
1089	.plock		= user_plock,
1090	.dump_lksb	= user_dlm_dump_lksb,
1091};
1092
1093static struct ocfs2_stack_plugin ocfs2_user_plugin = {
1094	.sp_name	= "user",
1095	.sp_ops		= &ocfs2_user_plugin_ops,
1096	.sp_owner	= THIS_MODULE,
1097};
1098
1099
1100static int __init ocfs2_user_plugin_init(void)
1101{
1102	int rc;
1103
1104	rc = ocfs2_control_init();
1105	if (!rc) {
1106		rc = ocfs2_stack_glue_register(&ocfs2_user_plugin);
1107		if (rc)
1108			ocfs2_control_exit();
1109	}
1110
1111	return rc;
1112}
1113
1114static void __exit ocfs2_user_plugin_exit(void)
1115{
1116	ocfs2_stack_glue_unregister(&ocfs2_user_plugin);
1117	ocfs2_control_exit();
1118}
1119
1120MODULE_AUTHOR("Oracle");
1121MODULE_DESCRIPTION("ocfs2 driver for userspace cluster stacks");
1122MODULE_LICENSE("GPL");
1123module_init(ocfs2_user_plugin_init);
1124module_exit(ocfs2_user_plugin_exit);