blob: 663fee7287832baf70a2d644239d97ecf4db1523 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/string.h>
13#include <linux/slab.h>
14#include <linux/wait.h>
15#include <linux/sched.h>
16#include <linux/kmod.h>
17#include <linux/fs.h>
18#include <linux/delay.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020019#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21struct lmh_wrapper {
22 struct list_head lw_list;
Steven Whitehouse9b47c112006-09-08 10:17:58 -040023 const struct lm_lockops *lw_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +000024};
25
26/* List of registered low-level locking protocols. A file system selects one
27 of them by name at mount time, e.g. lock_nolock, lock_dlm. */
28
Steven Whitehouse50299962006-09-04 09:49:55 -040029static LIST_HEAD(lmh_list);
30static DEFINE_MUTEX(lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
32/**
Steven Whitehouse2b557f62006-08-07 11:12:30 -040033 * gfs2_register_lockproto - Register a low-level locking protocol
David Teiglandb3b94fa2006-01-16 16:50:04 +000034 * @proto: the protocol definition
35 *
36 * Returns: 0 on success, -EXXX on failure
37 */
38
Steven Whitehouse9b47c112006-09-08 10:17:58 -040039int gfs2_register_lockproto(const struct lm_lockops *proto)
David Teiglandb3b94fa2006-01-16 16:50:04 +000040{
41 struct lmh_wrapper *lw;
42
Steven Whitehousea74604b2006-04-21 15:10:46 -040043 mutex_lock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000044
45 list_for_each_entry(lw, &lmh_list, lw_list) {
46 if (!strcmp(lw->lw_ops->lm_proto_name, proto->lm_proto_name)) {
Steven Whitehousea74604b2006-04-21 15:10:46 -040047 mutex_unlock(&lmh_lock);
Steven Whitehoused92a8d42006-02-27 10:57:14 -050048 printk(KERN_INFO "GFS2: protocol %s already exists\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 proto->lm_proto_name);
50 return -EEXIST;
51 }
52 }
53
Steven Whitehoused92a8d42006-02-27 10:57:14 -050054 lw = kzalloc(sizeof(struct lmh_wrapper), GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000055 if (!lw) {
Steven Whitehousea74604b2006-04-21 15:10:46 -040056 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 return -ENOMEM;
58 }
David Teiglandb3b94fa2006-01-16 16:50:04 +000059
60 lw->lw_ops = proto;
61 list_add(&lw->lw_list, &lmh_list);
62
Steven Whitehousea74604b2006-04-21 15:10:46 -040063 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
65 return 0;
66}
67
68/**
Steven Whitehouse2b557f62006-08-07 11:12:30 -040069 * gfs2_unregister_lockproto - Unregister a low-level locking protocol
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 * @proto: the protocol definition
71 *
72 */
73
Steven Whitehouse9b47c112006-09-08 10:17:58 -040074void gfs2_unregister_lockproto(const struct lm_lockops *proto)
David Teiglandb3b94fa2006-01-16 16:50:04 +000075{
76 struct lmh_wrapper *lw;
77
Steven Whitehousea74604b2006-04-21 15:10:46 -040078 mutex_lock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000079
80 list_for_each_entry(lw, &lmh_list, lw_list) {
81 if (!strcmp(lw->lw_ops->lm_proto_name, proto->lm_proto_name)) {
82 list_del(&lw->lw_list);
Steven Whitehousea74604b2006-04-21 15:10:46 -040083 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000084 kfree(lw);
85 return;
86 }
87 }
88
Steven Whitehousea74604b2006-04-21 15:10:46 -040089 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000090
Steven Whitehoused92a8d42006-02-27 10:57:14 -050091 printk(KERN_WARNING "GFS2: can't unregister lock protocol %s\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +000092 proto->lm_proto_name);
93}
94
95/**
96 * gfs2_mount_lockproto - Mount a lock protocol
97 * @proto_name - the name of the protocol
98 * @table_name - the name of the lock space
99 * @host_data - data specific to this host
100 * @cb - the callback to the code using the lock module
Steven Whitehouse1c089c32006-09-07 15:50:20 -0400101 * @sdp - The GFS2 superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102 * @min_lvb_size - the mininum LVB size that the caller can deal with
103 * @flags - LM_MFLAG_*
104 * @lockstruct - a structure returned describing the mount
105 *
106 * Returns: 0 on success, -EXXX on failure
107 */
108
109int gfs2_mount_lockproto(char *proto_name, char *table_name, char *host_data,
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400110 lm_callback_t cb, void *cb_data,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111 unsigned int min_lvb_size, int flags,
112 struct lm_lockstruct *lockstruct,
113 struct kobject *fskobj)
114{
115 struct lmh_wrapper *lw = NULL;
116 int try = 0;
117 int error, found;
118
Steven Whitehouse2b557f62006-08-07 11:12:30 -0400119retry:
Steven Whitehousea74604b2006-04-21 15:10:46 -0400120 mutex_lock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121
122 found = 0;
123 list_for_each_entry(lw, &lmh_list, lw_list) {
124 if (!strcmp(lw->lw_ops->lm_proto_name, proto_name)) {
125 found = 1;
126 break;
127 }
128 }
129
130 if (!found) {
131 if (!try && capable(CAP_SYS_MODULE)) {
132 try = 1;
Steven Whitehousea74604b2006-04-21 15:10:46 -0400133 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000134 request_module(proto_name);
135 goto retry;
136 }
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500137 printk(KERN_INFO "GFS2: can't find protocol %s\n", proto_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138 error = -ENOENT;
139 goto out;
140 }
141
142 if (!try_module_get(lw->lw_ops->lm_owner)) {
143 try = 0;
Steven Whitehousea74604b2006-04-21 15:10:46 -0400144 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 msleep(1000);
146 goto retry;
147 }
148
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400149 error = lw->lw_ops->lm_mount(table_name, host_data, cb, cb_data,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 min_lvb_size, flags, lockstruct, fskobj);
151 if (error)
152 module_put(lw->lw_ops->lm_owner);
Steven Whitehouse2b557f62006-08-07 11:12:30 -0400153out:
Steven Whitehousea74604b2006-04-21 15:10:46 -0400154 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 return error;
156}
157
158void gfs2_unmount_lockproto(struct lm_lockstruct *lockstruct)
159{
Steven Whitehousea74604b2006-04-21 15:10:46 -0400160 mutex_lock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 lockstruct->ls_ops->lm_unmount(lockstruct->ls_lockspace);
162 if (lockstruct->ls_ops->lm_owner)
163 module_put(lockstruct->ls_ops->lm_owner);
Steven Whitehousea74604b2006-04-21 15:10:46 -0400164 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165}
166
167/**
168 * gfs2_withdraw_lockproto - abnormally unmount a lock module
169 * @lockstruct: the lockstruct passed into mount
170 *
171 */
172
173void gfs2_withdraw_lockproto(struct lm_lockstruct *lockstruct)
174{
Steven Whitehousea74604b2006-04-21 15:10:46 -0400175 mutex_lock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000176 lockstruct->ls_ops->lm_withdraw(lockstruct->ls_lockspace);
177 if (lockstruct->ls_ops->lm_owner)
178 module_put(lockstruct->ls_ops->lm_owner);
Steven Whitehousea74604b2006-04-21 15:10:46 -0400179 mutex_unlock(&lmh_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180}
181
Steven Whitehouse2b557f62006-08-07 11:12:30 -0400182EXPORT_SYMBOL_GPL(gfs2_register_lockproto);
183EXPORT_SYMBOL_GPL(gfs2_unregister_lockproto);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000184