blob: 22b95acc2a826c219e2f9dcb021ced14a09f1353 [file] [log] [blame]
Joel Becker8adf0532007-11-28 14:38:40 -08001/* -*- 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>
Joel Becker6427a722008-02-18 19:23:28 -080021#include <linux/fs.h>
22#include <linux/miscdevice.h>
23#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joel Becker6427a722008-02-18 19:23:28 -080025#include <linux/reboot.h>
Joel Becker462c7e62008-02-18 19:40:12 -080026#include <asm/uaccess.h>
Joel Becker8adf0532007-11-28 14:38:40 -080027
28#include "stackglue.h"
29
Mark Fasheh53da4932008-07-21 14:29:16 -070030#include <linux/dlm_plock.h>
Joel Becker8adf0532007-11-28 14:38:40 -080031
Joel Becker6427a722008-02-18 19:23:28 -080032/*
33 * The control protocol starts with a handshake. Until the handshake
34 * is complete, the control device will fail all write(2)s.
35 *
36 * The handshake is simple. First, the client reads until EOF. Each line
37 * of output is a supported protocol tag. All protocol tags are a single
38 * character followed by a two hex digit version number. Currently the
39 * only things supported is T01, for "Text-base version 0x01". Next, the
Joel Beckerde870ef2008-02-18 17:07:09 -080040 * client writes the version they would like to use, including the newline.
41 * Thus, the protocol tag is 'T01\n'. If the version tag written is
42 * unknown, -EINVAL is returned. Once the negotiation is complete, the
43 * client can start sending messages.
44 *
Joel Beckerd4b95ee2008-02-20 15:39:44 -080045 * The T01 protocol has three messages. First is the "SETN" message.
Joel Becker3cfd4ab2008-02-20 14:44:34 -080046 * It has the following syntax:
47 *
48 * SETN<space><8-char-hex-nodenum><newline>
49 *
50 * This is 14 characters.
51 *
52 * The "SETN" message must be the first message following the protocol.
53 * It tells ocfs2_control the local node number.
54 *
Joel Beckerd4b95ee2008-02-20 15:39:44 -080055 * Next comes the "SETV" message. It has the following syntax:
56 *
57 * SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
58 *
59 * This is 11 characters.
60 *
61 * The "SETV" message sets the filesystem locking protocol version as
62 * negotiated by the client. The client negotiates based on the maximum
63 * version advertised in /sys/fs/ocfs2/max_locking_protocol. The major
64 * number from the "SETV" message must match
Joel Beckere603cfb2010-01-29 16:06:29 -080065 * ocfs2_user_plugin.sp_max_proto.pv_major, and the minor number
66 * must be less than or equal to ...sp_max_version.pv_minor.
Joel Beckerd4b95ee2008-02-20 15:39:44 -080067 *
68 * Once this information has been set, mounts will be allowed. From this
69 * point on, the "DOWN" message can be sent for node down notification.
70 * It has the following syntax:
Joel Beckerde870ef2008-02-18 17:07:09 -080071 *
72 * DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline>
73 *
74 * eg:
75 *
76 * DOWN 632A924FDD844190BDA93C0DF6B94899 00000001\n
77 *
78 * This is 47 characters.
Joel Becker6427a722008-02-18 19:23:28 -080079 */
80
81/*
Joel Becker462c7e62008-02-18 19:40:12 -080082 * Whether or not the client has done the handshake.
83 * For now, we have just one protocol version.
84 */
85#define OCFS2_CONTROL_PROTO "T01\n"
86#define OCFS2_CONTROL_PROTO_LEN 4
Joel Becker3cfd4ab2008-02-20 14:44:34 -080087
88/* Handshake states */
Joel Becker462c7e62008-02-18 19:40:12 -080089#define OCFS2_CONTROL_HANDSHAKE_INVALID (0)
90#define OCFS2_CONTROL_HANDSHAKE_READ (1)
Joel Becker3cfd4ab2008-02-20 14:44:34 -080091#define OCFS2_CONTROL_HANDSHAKE_PROTOCOL (2)
92#define OCFS2_CONTROL_HANDSHAKE_VALID (3)
93
94/* Messages */
95#define OCFS2_CONTROL_MESSAGE_OP_LEN 4
96#define OCFS2_CONTROL_MESSAGE_SETNODE_OP "SETN"
97#define OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN 14
Joel Beckerd4b95ee2008-02-20 15:39:44 -080098#define OCFS2_CONTROL_MESSAGE_SETVERSION_OP "SETV"
99#define OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN 11
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800100#define OCFS2_CONTROL_MESSAGE_DOWN_OP "DOWN"
Joel Beckerde870ef2008-02-18 17:07:09 -0800101#define OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN 47
102#define OCFS2_TEXT_UUID_LEN 32
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800103#define OCFS2_CONTROL_MESSAGE_VERNUM_LEN 2
Joel Beckerde870ef2008-02-18 17:07:09 -0800104#define OCFS2_CONTROL_MESSAGE_NODENUM_LEN 8
Joel Becker462c7e62008-02-18 19:40:12 -0800105
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800106enum ocfs2_connection_type {
107 WITH_CONTROLD,
108 NO_CONTROLD
109};
110
Joel Becker462c7e62008-02-18 19:40:12 -0800111/*
Joel Becker6427a722008-02-18 19:23:28 -0800112 * ocfs2_live_connection is refcounted because the filesystem and
113 * miscdevice sides can detach in different order. Let's just be safe.
114 */
115struct ocfs2_live_connection {
116 struct list_head oc_list;
117 struct ocfs2_cluster_connection *oc_conn;
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800118 enum ocfs2_connection_type oc_type;
Goldwyn Rodrigues66e188f2014-01-21 15:48:22 -0800119 atomic_t oc_this_node;
120 int oc_our_slot;
Joel Becker6427a722008-02-18 19:23:28 -0800121};
122
Joel Becker462c7e62008-02-18 19:40:12 -0800123struct ocfs2_control_private {
124 struct list_head op_list;
125 int op_state;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800126 int op_this_node;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800127 struct ocfs2_protocol_version op_proto;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800128};
129
130/* SETN<space><8-char-hex-nodenum><newline> */
131struct ocfs2_control_message_setn {
132 char tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
133 char space;
134 char nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
135 char newline;
136};
137
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800138/* SETV<space><2-char-hex-major><space><2-char-hex-minor><newline> */
139struct ocfs2_control_message_setv {
140 char tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
141 char space1;
142 char major[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
143 char space2;
144 char minor[OCFS2_CONTROL_MESSAGE_VERNUM_LEN];
145 char newline;
146};
147
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800148/* DOWN<space><32-char-cap-hex-uuid><space><8-char-hex-nodenum><newline> */
149struct ocfs2_control_message_down {
150 char tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
151 char space1;
152 char uuid[OCFS2_TEXT_UUID_LEN];
153 char space2;
154 char nodestr[OCFS2_CONTROL_MESSAGE_NODENUM_LEN];
155 char newline;
156};
157
158union ocfs2_control_message {
159 char tag[OCFS2_CONTROL_MESSAGE_OP_LEN];
160 struct ocfs2_control_message_setn u_setn;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800161 struct ocfs2_control_message_setv u_setv;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800162 struct ocfs2_control_message_down u_down;
Joel Becker462c7e62008-02-18 19:40:12 -0800163};
164
Joel Beckera12630b2008-05-09 18:49:29 -0700165static struct ocfs2_stack_plugin ocfs2_user_plugin;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800166
Joel Becker6427a722008-02-18 19:23:28 -0800167static atomic_t ocfs2_control_opened;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800168static int ocfs2_control_this_node = -1;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800169static struct ocfs2_protocol_version running_proto;
Joel Becker6427a722008-02-18 19:23:28 -0800170
171static LIST_HEAD(ocfs2_live_connection_list);
Joel Becker462c7e62008-02-18 19:40:12 -0800172static LIST_HEAD(ocfs2_control_private_list);
Joel Becker6427a722008-02-18 19:23:28 -0800173static DEFINE_MUTEX(ocfs2_control_lock);
174
Joel Becker462c7e62008-02-18 19:40:12 -0800175static inline void ocfs2_control_set_handshake_state(struct file *file,
176 int state)
177{
178 struct ocfs2_control_private *p = file->private_data;
179 p->op_state = state;
180}
181
182static inline int ocfs2_control_get_handshake_state(struct file *file)
183{
184 struct ocfs2_control_private *p = file->private_data;
185 return p->op_state;
186}
187
Joel Becker6427a722008-02-18 19:23:28 -0800188static struct ocfs2_live_connection *ocfs2_connection_find(const char *name)
189{
190 size_t len = strlen(name);
191 struct ocfs2_live_connection *c;
192
193 BUG_ON(!mutex_is_locked(&ocfs2_control_lock));
194
195 list_for_each_entry(c, &ocfs2_live_connection_list, oc_list) {
196 if ((c->oc_conn->cc_namelen == len) &&
197 !strncmp(c->oc_conn->cc_name, name, len))
198 return c;
199 }
200
dann frazier226291a2010-11-18 15:03:09 -0700201 return NULL;
Joel Becker6427a722008-02-18 19:23:28 -0800202}
203
204/*
205 * ocfs2_live_connection structures are created underneath the ocfs2
206 * mount path. Since the VFS prevents multiple calls to
207 * fill_super(), we can't get dupes here.
208 */
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800209static int ocfs2_live_connection_attach(struct ocfs2_cluster_connection *conn,
210 struct ocfs2_live_connection *c)
Joel Becker6427a722008-02-18 19:23:28 -0800211{
212 int rc = 0;
Joel Becker6427a722008-02-18 19:23:28 -0800213
214 mutex_lock(&ocfs2_control_lock);
215 c->oc_conn = conn;
216
217 if (atomic_read(&ocfs2_control_opened))
218 list_add(&c->oc_list, &ocfs2_live_connection_list);
219 else {
220 printk(KERN_ERR
221 "ocfs2: Userspace control daemon is not present\n");
222 rc = -ESRCH;
223 }
224
225 mutex_unlock(&ocfs2_control_lock);
Joel Becker6427a722008-02-18 19:23:28 -0800226 return rc;
227}
228
229/*
230 * This function disconnects the cluster connection from ocfs2_control.
231 * Afterwards, userspace can't affect the cluster connection.
232 */
233static void ocfs2_live_connection_drop(struct ocfs2_live_connection *c)
234{
235 mutex_lock(&ocfs2_control_lock);
236 list_del_init(&c->oc_list);
237 c->oc_conn = NULL;
238 mutex_unlock(&ocfs2_control_lock);
239
240 kfree(c);
241}
242
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800243static int ocfs2_control_cfu(void *target, size_t target_len,
244 const char __user *buf, size_t count)
Joel Becker462c7e62008-02-18 19:40:12 -0800245{
246 /* The T01 expects write(2) calls to have exactly one command */
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800247 if ((count != target_len) ||
248 (count > sizeof(union ocfs2_control_message)))
Joel Becker462c7e62008-02-18 19:40:12 -0800249 return -EINVAL;
250
251 if (copy_from_user(target, buf, target_len))
252 return -EFAULT;
253
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800254 return 0;
Joel Becker462c7e62008-02-18 19:40:12 -0800255}
256
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800257static ssize_t ocfs2_control_validate_protocol(struct file *file,
258 const char __user *buf,
259 size_t count)
Joel Becker462c7e62008-02-18 19:40:12 -0800260{
261 ssize_t ret;
262 char kbuf[OCFS2_CONTROL_PROTO_LEN];
263
264 ret = ocfs2_control_cfu(kbuf, OCFS2_CONTROL_PROTO_LEN,
265 buf, count);
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800266 if (ret)
Joel Becker462c7e62008-02-18 19:40:12 -0800267 return ret;
268
269 if (strncmp(kbuf, OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN))
270 return -EINVAL;
271
Joel Becker462c7e62008-02-18 19:40:12 -0800272 ocfs2_control_set_handshake_state(file,
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800273 OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
Joel Becker462c7e62008-02-18 19:40:12 -0800274
275 return count;
276}
277
Joel Beckerde870ef2008-02-18 17:07:09 -0800278static void ocfs2_control_send_down(const char *uuid,
279 int nodenum)
280{
281 struct ocfs2_live_connection *c;
282
283 mutex_lock(&ocfs2_control_lock);
284
285 c = ocfs2_connection_find(uuid);
286 if (c) {
287 BUG_ON(c->oc_conn == NULL);
288 c->oc_conn->cc_recovery_handler(nodenum,
289 c->oc_conn->cc_recovery_data);
290 }
291
292 mutex_unlock(&ocfs2_control_lock);
293}
294
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800295/*
296 * Called whenever configuration elements are sent to /dev/ocfs2_control.
297 * If all configuration elements are present, try to set the global
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800298 * values. If there is a problem, return an error. Skip any missing
299 * elements, and only bump ocfs2_control_opened when we have all elements
300 * and are successful.
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800301 */
302static int ocfs2_control_install_private(struct file *file)
Joel Beckerde870ef2008-02-18 17:07:09 -0800303{
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800304 int rc = 0;
305 int set_p = 1;
306 struct ocfs2_control_private *p = file->private_data;
307
308 BUG_ON(p->op_state != OCFS2_CONTROL_HANDSHAKE_PROTOCOL);
309
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800310 mutex_lock(&ocfs2_control_lock);
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800311
312 if (p->op_this_node < 0) {
313 set_p = 0;
314 } else if ((ocfs2_control_this_node >= 0) &&
315 (ocfs2_control_this_node != p->op_this_node)) {
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800316 rc = -EINVAL;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800317 goto out_unlock;
318 }
319
320 if (!p->op_proto.pv_major) {
321 set_p = 0;
322 } else if (!list_empty(&ocfs2_live_connection_list) &&
323 ((running_proto.pv_major != p->op_proto.pv_major) ||
324 (running_proto.pv_minor != p->op_proto.pv_minor))) {
325 rc = -EINVAL;
326 goto out_unlock;
327 }
328
329 if (set_p) {
330 ocfs2_control_this_node = p->op_this_node;
331 running_proto.pv_major = p->op_proto.pv_major;
332 running_proto.pv_minor = p->op_proto.pv_minor;
333 }
334
335out_unlock:
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800336 mutex_unlock(&ocfs2_control_lock);
337
338 if (!rc && set_p) {
339 /* We set the global values successfully */
340 atomic_inc(&ocfs2_control_opened);
341 ocfs2_control_set_handshake_state(file,
342 OCFS2_CONTROL_HANDSHAKE_VALID);
343 }
344
345 return rc;
346}
347
David Teiglandcf4d8d72008-02-20 14:29:27 -0800348static int ocfs2_control_get_this_node(void)
349{
350 int rc;
351
352 mutex_lock(&ocfs2_control_lock);
353 if (ocfs2_control_this_node < 0)
354 rc = -EINVAL;
355 else
356 rc = ocfs2_control_this_node;
357 mutex_unlock(&ocfs2_control_lock);
358
359 return rc;
360}
361
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800362static int ocfs2_control_do_setnode_msg(struct file *file,
363 struct ocfs2_control_message_setn *msg)
364{
Joel Beckerde870ef2008-02-18 17:07:09 -0800365 long nodenum;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800366 char *ptr = NULL;
367 struct ocfs2_control_private *p = file->private_data;
Joel Beckerde870ef2008-02-18 17:07:09 -0800368
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800369 if (ocfs2_control_get_handshake_state(file) !=
370 OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
Joel Beckerde870ef2008-02-18 17:07:09 -0800371 return -EINVAL;
372
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800373 if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
374 OCFS2_CONTROL_MESSAGE_OP_LEN))
Joel Beckerde870ef2008-02-18 17:07:09 -0800375 return -EINVAL;
Joel Beckerde870ef2008-02-18 17:07:09 -0800376
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800377 if ((msg->space != ' ') || (msg->newline != '\n'))
378 return -EINVAL;
379 msg->space = msg->newline = '\0';
380
381 nodenum = simple_strtol(msg->nodestr, &ptr, 16);
382 if (!ptr || *ptr)
383 return -EINVAL;
384
385 if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
386 (nodenum > INT_MAX) || (nodenum < 0))
387 return -ERANGE;
388 p->op_this_node = nodenum;
389
390 return ocfs2_control_install_private(file);
391}
392
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800393static int ocfs2_control_do_setversion_msg(struct file *file,
394 struct ocfs2_control_message_setv *msg)
395 {
396 long major, minor;
397 char *ptr = NULL;
398 struct ocfs2_control_private *p = file->private_data;
399 struct ocfs2_protocol_version *max =
Joel Beckere603cfb2010-01-29 16:06:29 -0800400 &ocfs2_user_plugin.sp_max_proto;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800401
402 if (ocfs2_control_get_handshake_state(file) !=
403 OCFS2_CONTROL_HANDSHAKE_PROTOCOL)
404 return -EINVAL;
405
406 if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
407 OCFS2_CONTROL_MESSAGE_OP_LEN))
408 return -EINVAL;
409
410 if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
411 (msg->newline != '\n'))
412 return -EINVAL;
413 msg->space1 = msg->space2 = msg->newline = '\0';
414
415 major = simple_strtol(msg->major, &ptr, 16);
416 if (!ptr || *ptr)
417 return -EINVAL;
418 minor = simple_strtol(msg->minor, &ptr, 16);
419 if (!ptr || *ptr)
420 return -EINVAL;
421
422 /*
423 * The major must be between 1 and 255, inclusive. The minor
424 * must be between 0 and 255, inclusive. The version passed in
425 * must be within the maximum version supported by the filesystem.
426 */
427 if ((major == LONG_MIN) || (major == LONG_MAX) ||
428 (major > (u8)-1) || (major < 1))
429 return -ERANGE;
430 if ((minor == LONG_MIN) || (minor == LONG_MAX) ||
431 (minor > (u8)-1) || (minor < 0))
432 return -ERANGE;
433 if ((major != max->pv_major) ||
434 (minor > max->pv_minor))
435 return -EINVAL;
436
437 p->op_proto.pv_major = major;
438 p->op_proto.pv_minor = minor;
439
440 return ocfs2_control_install_private(file);
441}
442
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800443static int ocfs2_control_do_down_msg(struct file *file,
444 struct ocfs2_control_message_down *msg)
445{
446 long nodenum;
447 char *p = NULL;
448
449 if (ocfs2_control_get_handshake_state(file) !=
450 OCFS2_CONTROL_HANDSHAKE_VALID)
451 return -EINVAL;
452
453 if (strncmp(msg->tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
454 OCFS2_CONTROL_MESSAGE_OP_LEN))
455 return -EINVAL;
456
457 if ((msg->space1 != ' ') || (msg->space2 != ' ') ||
458 (msg->newline != '\n'))
459 return -EINVAL;
460 msg->space1 = msg->space2 = msg->newline = '\0';
461
462 nodenum = simple_strtol(msg->nodestr, &p, 16);
Joel Beckerde870ef2008-02-18 17:07:09 -0800463 if (!p || *p)
464 return -EINVAL;
465
466 if ((nodenum == LONG_MIN) || (nodenum == LONG_MAX) ||
467 (nodenum > INT_MAX) || (nodenum < 0))
468 return -ERANGE;
469
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800470 ocfs2_control_send_down(msg->uuid, nodenum);
Joel Beckerde870ef2008-02-18 17:07:09 -0800471
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800472 return 0;
473}
474
475static ssize_t ocfs2_control_message(struct file *file,
476 const char __user *buf,
477 size_t count)
478{
479 ssize_t ret;
480 union ocfs2_control_message msg;
481
482 /* Try to catch padding issues */
483 WARN_ON(offsetof(struct ocfs2_control_message_down, uuid) !=
484 (sizeof(msg.u_down.tag) + sizeof(msg.u_down.space1)));
485
486 memset(&msg, 0, sizeof(union ocfs2_control_message));
487 ret = ocfs2_control_cfu(&msg, count, buf, count);
488 if (ret)
489 goto out;
490
491 if ((count == OCFS2_CONTROL_MESSAGE_SETNODE_TOTAL_LEN) &&
492 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETNODE_OP,
493 OCFS2_CONTROL_MESSAGE_OP_LEN))
494 ret = ocfs2_control_do_setnode_msg(file, &msg.u_setn);
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800495 else if ((count == OCFS2_CONTROL_MESSAGE_SETVERSION_TOTAL_LEN) &&
496 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_SETVERSION_OP,
497 OCFS2_CONTROL_MESSAGE_OP_LEN))
498 ret = ocfs2_control_do_setversion_msg(file, &msg.u_setv);
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800499 else if ((count == OCFS2_CONTROL_MESSAGE_DOWN_TOTAL_LEN) &&
500 !strncmp(msg.tag, OCFS2_CONTROL_MESSAGE_DOWN_OP,
501 OCFS2_CONTROL_MESSAGE_OP_LEN))
502 ret = ocfs2_control_do_down_msg(file, &msg.u_down);
503 else
504 ret = -EINVAL;
505
506out:
507 return ret ? ret : count;
Joel Beckerde870ef2008-02-18 17:07:09 -0800508}
Joel Becker6427a722008-02-18 19:23:28 -0800509
510static ssize_t ocfs2_control_write(struct file *file,
511 const char __user *buf,
512 size_t count,
513 loff_t *ppos)
Joel Becker8adf0532007-11-28 14:38:40 -0800514{
Joel Becker462c7e62008-02-18 19:40:12 -0800515 ssize_t ret;
516
517 switch (ocfs2_control_get_handshake_state(file)) {
518 case OCFS2_CONTROL_HANDSHAKE_INVALID:
519 ret = -EINVAL;
520 break;
521
522 case OCFS2_CONTROL_HANDSHAKE_READ:
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800523 ret = ocfs2_control_validate_protocol(file, buf,
524 count);
Joel Becker462c7e62008-02-18 19:40:12 -0800525 break;
526
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800527 case OCFS2_CONTROL_HANDSHAKE_PROTOCOL:
Joel Becker462c7e62008-02-18 19:40:12 -0800528 case OCFS2_CONTROL_HANDSHAKE_VALID:
Joel Beckerde870ef2008-02-18 17:07:09 -0800529 ret = ocfs2_control_message(file, buf, count);
Joel Becker462c7e62008-02-18 19:40:12 -0800530 break;
531
532 default:
533 BUG();
534 ret = -EIO;
535 break;
536 }
537
538 return ret;
Joel Becker8adf0532007-11-28 14:38:40 -0800539}
540
Joel Becker462c7e62008-02-18 19:40:12 -0800541/*
542 * This is a naive version. If we ever have a new protocol, we'll expand
543 * it. Probably using seq_file.
544 */
Joel Becker6427a722008-02-18 19:23:28 -0800545static ssize_t ocfs2_control_read(struct file *file,
546 char __user *buf,
547 size_t count,
548 loff_t *ppos)
549{
Akinobu Mita7600c722008-06-09 16:34:23 -0700550 ssize_t ret;
Joel Becker462c7e62008-02-18 19:40:12 -0800551
Akinobu Mita7600c722008-06-09 16:34:23 -0700552 ret = simple_read_from_buffer(buf, count, ppos,
553 OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN);
Joel Becker462c7e62008-02-18 19:40:12 -0800554
555 /* Have we read the whole protocol list? */
Akinobu Mita7600c722008-06-09 16:34:23 -0700556 if (ret > 0 && *ppos >= OCFS2_CONTROL_PROTO_LEN)
Joel Becker462c7e62008-02-18 19:40:12 -0800557 ocfs2_control_set_handshake_state(file,
558 OCFS2_CONTROL_HANDSHAKE_READ);
559
Akinobu Mita7600c722008-06-09 16:34:23 -0700560 return ret;
Joel Becker6427a722008-02-18 19:23:28 -0800561}
562
563static int ocfs2_control_release(struct inode *inode, struct file *file)
564{
Joel Becker462c7e62008-02-18 19:40:12 -0800565 struct ocfs2_control_private *p = file->private_data;
566
567 mutex_lock(&ocfs2_control_lock);
568
569 if (ocfs2_control_get_handshake_state(file) !=
570 OCFS2_CONTROL_HANDSHAKE_VALID)
571 goto out;
572
Joel Becker6427a722008-02-18 19:23:28 -0800573 if (atomic_dec_and_test(&ocfs2_control_opened)) {
Joel Becker6427a722008-02-18 19:23:28 -0800574 if (!list_empty(&ocfs2_live_connection_list)) {
575 /* XXX: Do bad things! */
576 printk(KERN_ERR
577 "ocfs2: Unexpected release of ocfs2_control!\n"
578 " Loss of cluster connection requires "
579 "an emergency restart!\n");
580 emergency_restart();
581 }
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800582 /*
583 * Last valid close clears the node number and resets
584 * the locking protocol version
585 */
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800586 ocfs2_control_this_node = -1;
Joel Beckerd4b95ee2008-02-20 15:39:44 -0800587 running_proto.pv_major = 0;
588 running_proto.pv_major = 0;
Joel Becker6427a722008-02-18 19:23:28 -0800589 }
590
Joel Becker462c7e62008-02-18 19:40:12 -0800591out:
592 list_del_init(&p->op_list);
593 file->private_data = NULL;
594
595 mutex_unlock(&ocfs2_control_lock);
596
597 kfree(p);
598
Joel Becker6427a722008-02-18 19:23:28 -0800599 return 0;
600}
601
602static int ocfs2_control_open(struct inode *inode, struct file *file)
603{
Joel Becker462c7e62008-02-18 19:40:12 -0800604 struct ocfs2_control_private *p;
605
606 p = kzalloc(sizeof(struct ocfs2_control_private), GFP_KERNEL);
607 if (!p)
608 return -ENOMEM;
Joel Becker3cfd4ab2008-02-20 14:44:34 -0800609 p->op_this_node = -1;
Joel Becker462c7e62008-02-18 19:40:12 -0800610
611 mutex_lock(&ocfs2_control_lock);
612 file->private_data = p;
613 list_add(&p->op_list, &ocfs2_control_private_list);
614 mutex_unlock(&ocfs2_control_lock);
Joel Becker6427a722008-02-18 19:23:28 -0800615
616 return 0;
617}
618
619static const struct file_operations ocfs2_control_fops = {
620 .open = ocfs2_control_open,
621 .release = ocfs2_control_release,
622 .read = ocfs2_control_read,
623 .write = ocfs2_control_write,
624 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200625 .llseek = default_llseek,
Joel Becker6427a722008-02-18 19:23:28 -0800626};
627
Adrian Bunk4d8755b2008-04-21 11:49:26 +0300628static struct miscdevice ocfs2_control_device = {
Joel Becker6427a722008-02-18 19:23:28 -0800629 .minor = MISC_DYNAMIC_MINOR,
630 .name = "ocfs2_control",
631 .fops = &ocfs2_control_fops,
632};
633
634static int ocfs2_control_init(void)
635{
636 int rc;
637
638 atomic_set(&ocfs2_control_opened, 0);
639
640 rc = misc_register(&ocfs2_control_device);
641 if (rc)
642 printk(KERN_ERR
643 "ocfs2: Unable to register ocfs2_control device "
644 "(errno %d)\n",
645 -rc);
646
647 return rc;
648}
649
650static void ocfs2_control_exit(void)
651{
652 int rc;
653
654 rc = misc_deregister(&ocfs2_control_device);
655 if (rc)
656 printk(KERN_ERR
657 "ocfs2: Unable to deregister ocfs2_control device "
658 "(errno %d)\n",
659 -rc);
660}
661
David Teiglandcf4d8d72008-02-20 14:29:27 -0800662static void fsdlm_lock_ast_wrapper(void *astarg)
663{
Joel Beckerc0e413382010-01-29 14:46:44 -0800664 struct ocfs2_dlm_lksb *lksb = astarg;
Joel Beckera796d282010-01-28 19:22:39 -0800665 int status = lksb->lksb_fsdlm.sb_status;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800666
David Teiglandcf4d8d72008-02-20 14:29:27 -0800667 /*
668 * For now we're punting on the issue of other non-standard errors
669 * where we can't tell if the unlock_ast or lock_ast should be called.
670 * The main "other error" that's possible is EINVAL which means the
671 * function was called with invalid args, which shouldn't be possible
672 * since the caller here is under our control. Other non-standard
673 * errors probably fall into the same category, or otherwise are fatal
674 * which means we can't carry on anyway.
675 */
676
677 if (status == -DLM_EUNLOCK || status == -DLM_ECANCEL)
Joel Becker110946c2010-01-29 15:46:23 -0800678 lksb->lksb_conn->cc_proto->lp_unlock_ast(lksb, 0);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800679 else
Joel Becker110946c2010-01-29 15:46:23 -0800680 lksb->lksb_conn->cc_proto->lp_lock_ast(lksb);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800681}
682
683static void fsdlm_blocking_ast_wrapper(void *astarg, int level)
684{
Joel Beckerc0e413382010-01-29 14:46:44 -0800685 struct ocfs2_dlm_lksb *lksb = astarg;
Joel Beckera796d282010-01-28 19:22:39 -0800686
Joel Becker110946c2010-01-29 15:46:23 -0800687 lksb->lksb_conn->cc_proto->lp_blocking_ast(lksb, level);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800688}
689
690static int user_dlm_lock(struct ocfs2_cluster_connection *conn,
691 int mode,
Joel Beckerc0e413382010-01-29 14:46:44 -0800692 struct ocfs2_dlm_lksb *lksb,
David Teiglandcf4d8d72008-02-20 14:29:27 -0800693 u32 flags,
694 void *name,
Joel Beckera796d282010-01-28 19:22:39 -0800695 unsigned int namelen)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800696{
697 int ret;
698
699 if (!lksb->lksb_fsdlm.sb_lvbptr)
700 lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
701 sizeof(struct dlm_lksb);
702
703 ret = dlm_lock(conn->cc_lockspace, mode, &lksb->lksb_fsdlm,
704 flags|DLM_LKF_NODLCKWT, name, namelen, 0,
Joel Beckera796d282010-01-28 19:22:39 -0800705 fsdlm_lock_ast_wrapper, lksb,
David Teiglandcf4d8d72008-02-20 14:29:27 -0800706 fsdlm_blocking_ast_wrapper);
707 return ret;
708}
709
710static int user_dlm_unlock(struct ocfs2_cluster_connection *conn,
Joel Beckerc0e413382010-01-29 14:46:44 -0800711 struct ocfs2_dlm_lksb *lksb,
Joel Beckera796d282010-01-28 19:22:39 -0800712 u32 flags)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800713{
714 int ret;
715
716 ret = dlm_unlock(conn->cc_lockspace, lksb->lksb_fsdlm.sb_lkid,
Joel Beckera796d282010-01-28 19:22:39 -0800717 flags, &lksb->lksb_fsdlm, lksb);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800718 return ret;
719}
720
Joel Beckerc0e413382010-01-29 14:46:44 -0800721static int user_dlm_lock_status(struct ocfs2_dlm_lksb *lksb)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800722{
723 return lksb->lksb_fsdlm.sb_status;
724}
725
Joel Beckerc0e413382010-01-29 14:46:44 -0800726static int user_dlm_lvb_valid(struct ocfs2_dlm_lksb *lksb)
Joel Becker1c520df2009-06-19 15:14:13 -0700727{
728 int invalid = lksb->lksb_fsdlm.sb_flags & DLM_SBF_VALNOTVALID;
729
730 return !invalid;
731}
732
Joel Beckerc0e413382010-01-29 14:46:44 -0800733static void *user_dlm_lvb(struct ocfs2_dlm_lksb *lksb)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800734{
David Teigland66f502a2008-11-10 16:24:57 -0600735 if (!lksb->lksb_fsdlm.sb_lvbptr)
736 lksb->lksb_fsdlm.sb_lvbptr = (char *)lksb +
737 sizeof(struct dlm_lksb);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800738 return (void *)(lksb->lksb_fsdlm.sb_lvbptr);
739}
740
Joel Beckerc0e413382010-01-29 14:46:44 -0800741static void user_dlm_dump_lksb(struct ocfs2_dlm_lksb *lksb)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800742{
743}
744
Mark Fasheh53da4932008-07-21 14:29:16 -0700745static int user_plock(struct ocfs2_cluster_connection *conn,
746 u64 ino,
747 struct file *file,
748 int cmd,
749 struct file_lock *fl)
750{
751 /*
752 * This more or less just demuxes the plock request into any
753 * one of three dlm calls.
754 *
755 * Internally, fs/dlm will pass these to a misc device, which
756 * a userspace daemon will read and write to.
757 *
758 * For now, cancel requests (which happen internally only),
759 * are turned into unlocks. Most of this function taken from
760 * gfs2_lock.
761 */
762
763 if (cmd == F_CANCELLK) {
764 cmd = F_SETLK;
765 fl->fl_type = F_UNLCK;
766 }
767
768 if (IS_GETLK(cmd))
769 return dlm_posix_get(conn->cc_lockspace, ino, file, fl);
770 else if (fl->fl_type == F_UNLCK)
771 return dlm_posix_unlock(conn->cc_lockspace, ino, file, fl);
772 else
773 return dlm_posix_lock(conn->cc_lockspace, ino, file, cmd, fl);
774}
775
David Teiglandcf4d8d72008-02-20 14:29:27 -0800776/*
777 * Compare a requested locking protocol version against the current one.
778 *
779 * If the major numbers are different, they are incompatible.
780 * If the current minor is greater than the request, they are incompatible.
781 * If the current minor is less than or equal to the request, they are
782 * compatible, and the requester should run at the current minor version.
783 */
784static int fs_protocol_compare(struct ocfs2_protocol_version *existing,
785 struct ocfs2_protocol_version *request)
786{
787 if (existing->pv_major != request->pv_major)
788 return 1;
789
790 if (existing->pv_minor > request->pv_minor)
791 return 1;
792
793 if (existing->pv_minor < request->pv_minor)
794 request->pv_minor = existing->pv_minor;
795
796 return 0;
797}
798
Goldwyn Rodrigues66e188f2014-01-21 15:48:22 -0800799static void user_recover_prep(void *arg)
800{
801}
802
803static void user_recover_slot(void *arg, struct dlm_slot *slot)
804{
805 struct ocfs2_cluster_connection *conn = arg;
806 printk(KERN_INFO "ocfs2: Node %d/%d down. Initiating recovery.\n",
807 slot->nodeid, slot->slot);
808 conn->cc_recovery_handler(slot->nodeid, conn->cc_recovery_data);
809
810}
811
812static void user_recover_done(void *arg, struct dlm_slot *slots,
813 int num_slots, int our_slot,
814 uint32_t generation)
815{
816 struct ocfs2_cluster_connection *conn = arg;
817 struct ocfs2_live_connection *lc = conn->cc_private;
818 int i;
819
820 for (i = 0; i < num_slots; i++)
821 if (slots[i].slot == our_slot) {
822 atomic_set(&lc->oc_this_node, slots[i].nodeid);
823 break;
824 }
825
826 lc->oc_our_slot = our_slot;
827}
828
829const struct dlm_lockspace_ops ocfs2_ls_ops = {
830 .recover_prep = user_recover_prep,
831 .recover_slot = user_recover_slot,
832 .recover_done = user_recover_done,
833};
834
David Teiglandcf4d8d72008-02-20 14:29:27 -0800835static int user_cluster_connect(struct ocfs2_cluster_connection *conn)
836{
837 dlm_lockspace_t *fsdlm;
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800838 struct ocfs2_live_connection *lc;
839 int rc;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800840
841 BUG_ON(conn == NULL);
842
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800843 lc = kzalloc(sizeof(struct ocfs2_live_connection), GFP_KERNEL);
844 if (!lc) {
845 rc = -ENOMEM;
846 goto out;
847 }
848
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800849 lc->oc_type = WITH_CONTROLD;
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800850 rc = ocfs2_live_connection_attach(conn, lc);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800851 if (rc)
852 goto out;
853
854 /*
855 * running_proto must have been set before we allowed any mounts
856 * to proceed.
857 */
858 if (fs_protocol_compare(&running_proto, &conn->cc_version)) {
859 printk(KERN_ERR
860 "Unable to mount with fs locking protocol version "
861 "%u.%u because the userspace control daemon has "
862 "negotiated %u.%u\n",
863 conn->cc_version.pv_major, conn->cc_version.pv_minor,
864 running_proto.pv_major, running_proto.pv_minor);
865 rc = -EPROTO;
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800866 ocfs2_live_connection_drop(lc);
867 lc = NULL;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800868 goto out;
869 }
870
David Teigland60f98d12011-11-02 14:30:58 -0500871 rc = dlm_new_lockspace(conn->cc_name, NULL, DLM_LSFL_FS, DLM_LVB_LEN,
872 NULL, NULL, NULL, &fsdlm);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800873 if (rc) {
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800874 ocfs2_live_connection_drop(lc);
875 lc = NULL;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800876 goto out;
877 }
878
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800879 conn->cc_private = lc;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800880 conn->cc_lockspace = fsdlm;
881out:
Goldwyn Rodrigues24aa3382014-01-21 15:48:23 -0800882 if (rc && lc)
883 kfree(lc);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800884 return rc;
885}
886
Joel Becker2c394502008-05-30 15:58:26 -0700887static int user_cluster_disconnect(struct ocfs2_cluster_connection *conn)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800888{
889 dlm_release_lockspace(conn->cc_lockspace, 2);
890 conn->cc_lockspace = NULL;
891 ocfs2_live_connection_drop(conn->cc_private);
892 conn->cc_private = NULL;
893 return 0;
894}
895
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800896static int user_cluster_this_node(struct ocfs2_cluster_connection *conn,
897 unsigned int *this_node)
David Teiglandcf4d8d72008-02-20 14:29:27 -0800898{
899 int rc;
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800900 struct ocfs2_live_connection *lc = conn->cc_private;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800901
Goldwyn Rodrigues3e834152014-01-21 15:48:24 -0800902 if (lc->oc_type == WITH_CONTROLD)
903 rc = ocfs2_control_get_this_node();
904 else
905 rc = -EINVAL;
David Teiglandcf4d8d72008-02-20 14:29:27 -0800906 if (rc < 0)
907 return rc;
908
909 *this_node = rc;
910 return 0;
911}
912
Joel Beckera12630b2008-05-09 18:49:29 -0700913static struct ocfs2_stack_operations ocfs2_user_plugin_ops = {
David Teiglandcf4d8d72008-02-20 14:29:27 -0800914 .connect = user_cluster_connect,
915 .disconnect = user_cluster_disconnect,
916 .this_node = user_cluster_this_node,
917 .dlm_lock = user_dlm_lock,
918 .dlm_unlock = user_dlm_unlock,
919 .lock_status = user_dlm_lock_status,
Joel Becker1c520df2009-06-19 15:14:13 -0700920 .lvb_valid = user_dlm_lvb_valid,
David Teiglandcf4d8d72008-02-20 14:29:27 -0800921 .lock_lvb = user_dlm_lvb,
Mark Fasheh53da4932008-07-21 14:29:16 -0700922 .plock = user_plock,
David Teiglandcf4d8d72008-02-20 14:29:27 -0800923 .dump_lksb = user_dlm_dump_lksb,
924};
925
Joel Beckera12630b2008-05-09 18:49:29 -0700926static struct ocfs2_stack_plugin ocfs2_user_plugin = {
David Teiglandcf4d8d72008-02-20 14:29:27 -0800927 .sp_name = "user",
Joel Beckera12630b2008-05-09 18:49:29 -0700928 .sp_ops = &ocfs2_user_plugin_ops,
David Teiglandcf4d8d72008-02-20 14:29:27 -0800929 .sp_owner = THIS_MODULE,
930};
931
932
Joel Beckera12630b2008-05-09 18:49:29 -0700933static int __init ocfs2_user_plugin_init(void)
Joel Becker6427a722008-02-18 19:23:28 -0800934{
David Teiglandcf4d8d72008-02-20 14:29:27 -0800935 int rc;
936
937 rc = ocfs2_control_init();
938 if (!rc) {
Joel Beckera12630b2008-05-09 18:49:29 -0700939 rc = ocfs2_stack_glue_register(&ocfs2_user_plugin);
David Teiglandcf4d8d72008-02-20 14:29:27 -0800940 if (rc)
941 ocfs2_control_exit();
942 }
943
944 return rc;
Joel Becker6427a722008-02-18 19:23:28 -0800945}
946
Joel Beckera12630b2008-05-09 18:49:29 -0700947static void __exit ocfs2_user_plugin_exit(void)
Joel Becker8adf0532007-11-28 14:38:40 -0800948{
Joel Beckera12630b2008-05-09 18:49:29 -0700949 ocfs2_stack_glue_unregister(&ocfs2_user_plugin);
Joel Becker6427a722008-02-18 19:23:28 -0800950 ocfs2_control_exit();
Joel Becker8adf0532007-11-28 14:38:40 -0800951}
952
953MODULE_AUTHOR("Oracle");
954MODULE_DESCRIPTION("ocfs2 driver for userspace cluster stacks");
955MODULE_LICENSE("GPL");
Joel Beckera12630b2008-05-09 18:49:29 -0700956module_init(ocfs2_user_plugin_init);
957module_exit(ocfs2_user_plugin_exit);