blob: 1327e1a684df37f1fe7e02689260d8f4b029af80 [file] [log] [blame]
Jonthan Brassowf5db4af2009-06-22 10:12:35 +01001/*
2 * Copyright (C) 2006-2009 Red Hat, Inc.
3 *
4 * This file is released under the LGPL.
5 */
6
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <net/sock.h>
10#include <linux/workqueue.h>
11#include <linux/connector.h>
12#include <linux/device-mapper.h>
13#include <linux/dm-log-userspace.h>
14
15#include "dm-log-userspace-transfer.h"
16
17static uint32_t dm_ulog_seq;
18
19/*
20 * Netlink/Connector is an unreliable protocol. How long should
21 * we wait for a response before assuming it was lost and retrying?
22 * (If we do receive a response after this time, it will be discarded
23 * and the response to the resent request will be waited for.
24 */
25#define DM_ULOG_RETRY_TIMEOUT (15 * HZ)
26
27/*
28 * Pre-allocated space for speed
29 */
30#define DM_ULOG_PREALLOCED_SIZE 512
31static struct cn_msg *prealloced_cn_msg;
32static struct dm_ulog_request *prealloced_ulog_tfr;
33
34static struct cb_id ulog_cn_id = {
35 .idx = CN_IDX_DM,
36 .val = CN_VAL_DM_USERSPACE_LOG
37};
38
39static DEFINE_MUTEX(dm_ulog_lock);
40
41struct receiving_pkg {
42 struct list_head list;
43 struct completion complete;
44
45 uint32_t seq;
46
47 int error;
48 size_t *data_size;
49 char *data;
50};
51
52static DEFINE_SPINLOCK(receiving_list_lock);
53static struct list_head receiving_list;
54
55static int dm_ulog_sendto_server(struct dm_ulog_request *tfr)
56{
57 int r;
58 struct cn_msg *msg = prealloced_cn_msg;
59
60 memset(msg, 0, sizeof(struct cn_msg));
61
62 msg->id.idx = ulog_cn_id.idx;
63 msg->id.val = ulog_cn_id.val;
64 msg->ack = 0;
65 msg->seq = tfr->seq;
66 msg->len = sizeof(struct dm_ulog_request) + tfr->data_size;
67
68 r = cn_netlink_send(msg, 0, gfp_any());
69
70 return r;
71}
72
73/*
74 * Parameters for this function can be either msg or tfr, but not
75 * both. This function fills in the reply for a waiting request.
76 * If just msg is given, then the reply is simply an ACK from userspace
77 * that the request was received.
78 *
79 * Returns: 0 on success, -ENOENT on failure
80 */
81static int fill_pkg(struct cn_msg *msg, struct dm_ulog_request *tfr)
82{
83 uint32_t rtn_seq = (msg) ? msg->seq : (tfr) ? tfr->seq : 0;
84 struct receiving_pkg *pkg;
85
86 /*
87 * The 'receiving_pkg' entries in this list are statically
88 * allocated on the stack in 'dm_consult_userspace'.
89 * Each process that is waiting for a reply from the user
90 * space server will have an entry in this list.
91 *
92 * We are safe to do it this way because the stack space
93 * is unique to each process, but still addressable by
94 * other processes.
95 */
96 list_for_each_entry(pkg, &receiving_list, list) {
97 if (rtn_seq != pkg->seq)
98 continue;
99
100 if (msg) {
101 pkg->error = -msg->ack;
102 /*
103 * If we are trying again, we will need to know our
104 * storage capacity. Otherwise, along with the
105 * error code, we make explicit that we have no data.
106 */
107 if (pkg->error != -EAGAIN)
108 *(pkg->data_size) = 0;
109 } else if (tfr->data_size > *(pkg->data_size)) {
110 DMERR("Insufficient space to receive package [%u] "
Randy Dunlap894ef822009-08-16 07:33:30 -0700111 "(%u vs %zu)", tfr->request_type,
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100112 tfr->data_size, *(pkg->data_size));
113
114 *(pkg->data_size) = 0;
115 pkg->error = -ENOSPC;
116 } else {
117 pkg->error = tfr->error;
118 memcpy(pkg->data, tfr->data, tfr->data_size);
119 *(pkg->data_size) = tfr->data_size;
120 }
121 complete(&pkg->complete);
122 return 0;
123 }
124
125 return -ENOENT;
126}
127
128/*
129 * This is the connector callback that delivers data
130 * that was sent from userspace.
131 */
Philipp Reisner18366b02009-10-02 02:40:06 +0000132static void cn_ulog_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100133{
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100134 struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1);
135
136 spin_lock(&receiving_list_lock);
137 if (msg->len == 0)
138 fill_pkg(msg, NULL);
139 else if (msg->len < sizeof(*tfr))
140 DMERR("Incomplete message received (expected %u, got %u): [%u]",
141 (unsigned)sizeof(*tfr), msg->len, msg->seq);
142 else
143 fill_pkg(NULL, tfr);
144 spin_unlock(&receiving_list_lock);
145}
146
147/**
148 * dm_consult_userspace
Jonathan Brassow7ec23d52009-09-04 20:40:34 +0100149 * @uuid: log's universal unique identifier (must be DM_UUID_LEN in size)
150 * @luid: log's local unique identifier
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100151 * @request_type: found in include/linux/dm-log-userspace.h
152 * @data: data to tx to the server
153 * @data_size: size of data in bytes
154 * @rdata: place to put return data from server
155 * @rdata_size: value-result (amount of space given/amount of space used)
156 *
157 * rdata_size is undefined on failure.
158 *
159 * Memory used to communicate with userspace is zero'ed
160 * before populating to ensure that no unwanted bits leak
161 * from kernel space to user-space. All userspace log communications
162 * between kernel and user space go through this function.
163 *
164 * Returns: 0 on success, -EXXX on failure
165 **/
Jonathan Brassow7ec23d52009-09-04 20:40:34 +0100166int dm_consult_userspace(const char *uuid, uint64_t luid, int request_type,
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100167 char *data, size_t data_size,
168 char *rdata, size_t *rdata_size)
169{
170 int r = 0;
171 size_t dummy = 0;
172 int overhead_size =
173 sizeof(struct dm_ulog_request *) + sizeof(struct cn_msg);
174 struct dm_ulog_request *tfr = prealloced_ulog_tfr;
175 struct receiving_pkg pkg;
176
177 if (data_size > (DM_ULOG_PREALLOCED_SIZE - overhead_size)) {
178 DMINFO("Size of tfr exceeds preallocated size");
179 return -EINVAL;
180 }
181
182 if (!rdata_size)
183 rdata_size = &dummy;
184resend:
185 /*
186 * We serialize the sending of requests so we can
187 * use the preallocated space.
188 */
189 mutex_lock(&dm_ulog_lock);
190
191 memset(tfr, 0, DM_ULOG_PREALLOCED_SIZE - overhead_size);
192 memcpy(tfr->uuid, uuid, DM_UUID_LEN);
Jonathan Brassow7ec23d52009-09-04 20:40:34 +0100193 tfr->luid = luid;
Jonthan Brassowf5db4af2009-06-22 10:12:35 +0100194 tfr->seq = dm_ulog_seq++;
195
196 /*
197 * Must be valid request type (all other bits set to
198 * zero). This reserves other bits for possible future
199 * use.
200 */
201 tfr->request_type = request_type & DM_ULOG_REQUEST_MASK;
202
203 tfr->data_size = data_size;
204 if (data && data_size)
205 memcpy(tfr->data, data, data_size);
206
207 memset(&pkg, 0, sizeof(pkg));
208 init_completion(&pkg.complete);
209 pkg.seq = tfr->seq;
210 pkg.data_size = rdata_size;
211 pkg.data = rdata;
212 spin_lock(&receiving_list_lock);
213 list_add(&(pkg.list), &receiving_list);
214 spin_unlock(&receiving_list_lock);
215
216 r = dm_ulog_sendto_server(tfr);
217
218 mutex_unlock(&dm_ulog_lock);
219
220 if (r) {
221 DMERR("Unable to send log request [%u] to userspace: %d",
222 request_type, r);
223 spin_lock(&receiving_list_lock);
224 list_del_init(&(pkg.list));
225 spin_unlock(&receiving_list_lock);
226
227 goto out;
228 }
229
230 r = wait_for_completion_timeout(&(pkg.complete), DM_ULOG_RETRY_TIMEOUT);
231 spin_lock(&receiving_list_lock);
232 list_del_init(&(pkg.list));
233 spin_unlock(&receiving_list_lock);
234 if (!r) {
235 DMWARN("[%s] Request timed out: [%u/%u] - retrying",
236 (strlen(uuid) > 8) ?
237 (uuid + (strlen(uuid) - 8)) : (uuid),
238 request_type, pkg.seq);
239 goto resend;
240 }
241
242 r = pkg.error;
243 if (r == -EAGAIN)
244 goto resend;
245
246out:
247 return r;
248}
249
250int dm_ulog_tfr_init(void)
251{
252 int r;
253 void *prealloced;
254
255 INIT_LIST_HEAD(&receiving_list);
256
257 prealloced = kmalloc(DM_ULOG_PREALLOCED_SIZE, GFP_KERNEL);
258 if (!prealloced)
259 return -ENOMEM;
260
261 prealloced_cn_msg = prealloced;
262 prealloced_ulog_tfr = prealloced + sizeof(struct cn_msg);
263
264 r = cn_add_callback(&ulog_cn_id, "dmlogusr", cn_ulog_callback);
265 if (r) {
266 cn_del_callback(&ulog_cn_id);
267 return r;
268 }
269
270 return 0;
271}
272
273void dm_ulog_tfr_exit(void)
274{
275 cn_del_callback(&ulog_cn_id);
276 kfree(prealloced_cn_msg);
277}