blob: 0d6d9264d6a9ec47c5af4f0be618bdb51a7f0c7e [file] [log] [blame]
Alex Zeffertt1107ba82009-01-07 18:07:11 -08001/*
2 * Driver giving user-space access to the kernel's xenbus connection
3 * to xenstore.
4 *
5 * Copyright (c) 2005, Christian Limpach
6 * Copyright (c) 2005, Rusty Russell, IBM Corporation
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation; or, when distributed
11 * separately from the Linux kernel or incorporated into other
12 * software packages, subject to the following license:
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this source file (the "Software"), to deal in the Software without
16 * restriction, including without limitation the rights to use, copy, modify,
17 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18 * and to permit persons to whom the Software is furnished to do so, subject to
19 * the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 * IN THE SOFTWARE.
31 *
32 * Changes:
33 * 2008-10-07 Alex Zeffertt Replaced /proc/xen/xenbus with xenfs filesystem
34 * and /proc/xen compatibility mount point.
35 * Turned xenfs into a loadable module.
36 */
37
Joe Perches283c0972013-06-28 03:21:41 -070038#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
Alex Zeffertt1107ba82009-01-07 18:07:11 -080040#include <linux/kernel.h>
41#include <linux/errno.h>
42#include <linux/uio.h>
43#include <linux/notifier.h>
44#include <linux/wait.h>
45#include <linux/fs.h>
46#include <linux/poll.h>
47#include <linux/mutex.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040048#include <linux/sched.h>
Alex Zeffertt1107ba82009-01-07 18:07:11 -080049#include <linux/spinlock.h>
50#include <linux/mount.h>
51#include <linux/pagemap.h>
52#include <linux/uaccess.h>
53#include <linux/init.h>
54#include <linux/namei.h>
55#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Bastian Blank2fb36832011-12-10 19:29:47 +010057#include <linux/miscdevice.h>
Alex Zeffertt1107ba82009-01-07 18:07:11 -080058
Alex Zeffertt1107ba82009-01-07 18:07:11 -080059#include <xen/xenbus.h>
Konrad Rzeszutek Wilkb79d2ff2011-12-19 15:08:15 -050060#include <xen/xen.h>
Alex Zeffertt1107ba82009-01-07 18:07:11 -080061#include <asm/xen/hypervisor.h>
62
Juergen Gross332f7912017-02-09 14:39:56 +010063#include "xenbus.h"
64
Alex Zeffertt1107ba82009-01-07 18:07:11 -080065/*
66 * An element of a list of outstanding transactions, for which we're
67 * still waiting a reply.
68 */
69struct xenbus_transaction_holder {
70 struct list_head list;
71 struct xenbus_transaction handle;
72};
73
74/*
75 * A buffer of data on the queue.
76 */
77struct read_buffer {
78 struct list_head list;
79 unsigned int cons;
80 unsigned int len;
81 char msg[];
82};
83
84struct xenbus_file_priv {
85 /*
86 * msgbuffer_mutex is held while partial requests are built up
87 * and complete requests are acted on. It therefore protects
88 * the "transactions" and "watches" lists, and the partial
89 * request length and buffer.
90 *
91 * reply_mutex protects the reply being built up to return to
92 * usermode. It nests inside msgbuffer_mutex but may be held
93 * alone during a watch callback.
94 */
95 struct mutex msgbuffer_mutex;
96
97 /* In-progress transactions */
98 struct list_head transactions;
99
100 /* Active watches. */
101 struct list_head watches;
102
103 /* Partial request. */
104 unsigned int len;
105 union {
106 struct xsd_sockmsg msg;
Ian Campbell50bf7372012-01-04 11:39:51 +0000107 char buffer[XENSTORE_PAYLOAD_MAX];
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800108 } u;
109
110 /* Response queue. */
111 struct mutex reply_mutex;
112 struct list_head read_buffers;
113 wait_queue_head_t read_waitq;
114
Juergen Grossfd8aa902017-02-09 14:39:58 +0100115 struct kref kref;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800116};
117
118/* Read out any raw xenbus messages queued up. */
119static ssize_t xenbus_file_read(struct file *filp,
120 char __user *ubuf,
121 size_t len, loff_t *ppos)
122{
123 struct xenbus_file_priv *u = filp->private_data;
124 struct read_buffer *rb;
125 unsigned i;
126 int ret;
127
128 mutex_lock(&u->reply_mutex);
Daniel De Graaf78081212010-09-08 18:10:42 -0400129again:
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800130 while (list_empty(&u->read_buffers)) {
131 mutex_unlock(&u->reply_mutex);
Paolo Bonzini6280f192010-06-23 18:30:15 +0200132 if (filp->f_flags & O_NONBLOCK)
133 return -EAGAIN;
134
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800135 ret = wait_event_interruptible(u->read_waitq,
136 !list_empty(&u->read_buffers));
137 if (ret)
138 return ret;
139 mutex_lock(&u->reply_mutex);
140 }
141
142 rb = list_entry(u->read_buffers.next, struct read_buffer, list);
143 i = 0;
144 while (i < len) {
145 unsigned sz = min((unsigned)len - i, rb->len - rb->cons);
146
147 ret = copy_to_user(ubuf + i, &rb->msg[rb->cons], sz);
148
149 i += sz - ret;
150 rb->cons += sz - ret;
151
Jeremy Fitzhardingefb27cfb2010-08-25 12:19:53 -0700152 if (ret != 0) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800153 if (i == 0)
154 i = -EFAULT;
155 goto out;
156 }
157
158 /* Clear out buffer if it has been consumed */
159 if (rb->cons == rb->len) {
160 list_del(&rb->list);
161 kfree(rb);
162 if (list_empty(&u->read_buffers))
163 break;
164 rb = list_entry(u->read_buffers.next,
165 struct read_buffer, list);
166 }
167 }
Daniel De Graaf78081212010-09-08 18:10:42 -0400168 if (i == 0)
169 goto again;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800170
171out:
172 mutex_unlock(&u->reply_mutex);
173 return i;
174}
175
176/*
177 * Add a buffer to the queue. Caller must hold the appropriate lock
178 * if the queue is not local. (Commonly the caller will build up
179 * multiple queued buffers on a temporary local list, and then add it
180 * to the appropriate list under lock once all the buffers have een
181 * successfully allocated.)
182 */
183static int queue_reply(struct list_head *queue, const void *data, size_t len)
184{
185 struct read_buffer *rb;
186
187 if (len == 0)
188 return 0;
Insu Yun85c0a872016-01-18 11:54:43 -0500189 if (len > XENSTORE_PAYLOAD_MAX)
190 return -EINVAL;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800191
192 rb = kmalloc(sizeof(*rb) + len, GFP_KERNEL);
193 if (rb == NULL)
194 return -ENOMEM;
195
196 rb->cons = 0;
197 rb->len = len;
198
199 memcpy(rb->msg, data, len);
200
201 list_add_tail(&rb->list, queue);
202 return 0;
203}
204
205/*
206 * Free all the read_buffer s on a list.
207 * Caller must have sole reference to list.
208 */
209static void queue_cleanup(struct list_head *list)
210{
211 struct read_buffer *rb;
212
213 while (!list_empty(list)) {
214 rb = list_entry(list->next, struct read_buffer, list);
215 list_del(list->next);
216 kfree(rb);
217 }
218}
219
220struct watch_adapter {
221 struct list_head list;
222 struct xenbus_watch watch;
223 struct xenbus_file_priv *dev_data;
224 char *token;
225};
226
227static void free_watch_adapter(struct watch_adapter *watch)
228{
229 kfree(watch->watch.node);
230 kfree(watch->token);
231 kfree(watch);
232}
233
234static struct watch_adapter *alloc_watch_adapter(const char *path,
235 const char *token)
236{
237 struct watch_adapter *watch;
238
239 watch = kzalloc(sizeof(*watch), GFP_KERNEL);
240 if (watch == NULL)
241 goto out_fail;
242
243 watch->watch.node = kstrdup(path, GFP_KERNEL);
244 if (watch->watch.node == NULL)
245 goto out_free;
246
247 watch->token = kstrdup(token, GFP_KERNEL);
248 if (watch->token == NULL)
249 goto out_free;
250
251 return watch;
252
253out_free:
254 free_watch_adapter(watch);
255
256out_fail:
257 return NULL;
258}
259
260static void watch_fired(struct xenbus_watch *watch,
Juergen Gross5584ea22017-02-09 14:39:57 +0100261 const char *path,
262 const char *token)
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800263{
264 struct watch_adapter *adap;
265 struct xsd_sockmsg hdr;
Juergen Gross5584ea22017-02-09 14:39:57 +0100266 const char *token_caller;
267 int path_len, tok_len, body_len;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800268 int ret;
269 LIST_HEAD(staging_q);
270
271 adap = container_of(watch, struct watch_adapter, watch);
272
Juergen Gross5584ea22017-02-09 14:39:57 +0100273 token_caller = adap->token;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800274
275 path_len = strlen(path) + 1;
Juergen Gross5584ea22017-02-09 14:39:57 +0100276 tok_len = strlen(token_caller) + 1;
277 body_len = path_len + tok_len;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800278
279 hdr.type = XS_WATCH_EVENT;
280 hdr.len = body_len;
281
282 mutex_lock(&adap->dev_data->reply_mutex);
283
284 ret = queue_reply(&staging_q, &hdr, sizeof(hdr));
285 if (!ret)
286 ret = queue_reply(&staging_q, path, path_len);
287 if (!ret)
Juergen Gross5584ea22017-02-09 14:39:57 +0100288 ret = queue_reply(&staging_q, token_caller, tok_len);
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800289
290 if (!ret) {
291 /* success: pass reply list onto watcher */
292 list_splice_tail(&staging_q, &adap->dev_data->read_buffers);
293 wake_up(&adap->dev_data->read_waitq);
294 } else
295 queue_cleanup(&staging_q);
296
297 mutex_unlock(&adap->dev_data->reply_mutex);
298}
299
Juergen Grossfd8aa902017-02-09 14:39:58 +0100300static void xenbus_file_free(struct kref *kref)
301{
302 struct xenbus_file_priv *u;
303 struct xenbus_transaction_holder *trans, *tmp;
304 struct watch_adapter *watch, *tmp_watch;
305 struct read_buffer *rb, *tmp_rb;
306
307 u = container_of(kref, struct xenbus_file_priv, kref);
308
309 /*
310 * No need for locking here because there are no other users,
311 * by definition.
312 */
313
314 list_for_each_entry_safe(trans, tmp, &u->transactions, list) {
315 xenbus_transaction_end(trans->handle, 1);
316 list_del(&trans->list);
317 kfree(trans);
318 }
319
320 list_for_each_entry_safe(watch, tmp_watch, &u->watches, list) {
321 unregister_xenbus_watch(&watch->watch);
322 list_del(&watch->list);
323 free_watch_adapter(watch);
324 }
325
326 list_for_each_entry_safe(rb, tmp_rb, &u->read_buffers, list) {
327 list_del(&rb->list);
328 kfree(rb);
329 }
330 kfree(u);
331}
332
333static struct xenbus_transaction_holder *xenbus_get_transaction(
334 struct xenbus_file_priv *u, uint32_t tx_id)
335{
336 struct xenbus_transaction_holder *trans;
337
338 list_for_each_entry(trans, &u->transactions, list)
339 if (trans->handle.id == tx_id)
340 return trans;
341
342 return NULL;
343}
344
345void xenbus_dev_queue_reply(struct xb_req_data *req)
346{
347 struct xenbus_file_priv *u = req->par;
348 struct xenbus_transaction_holder *trans = NULL;
349 int rc;
350 LIST_HEAD(staging_q);
351
352 xs_request_exit(req);
353
354 mutex_lock(&u->msgbuffer_mutex);
355
356 if (req->type == XS_TRANSACTION_START) {
357 trans = xenbus_get_transaction(u, 0);
358 if (WARN_ON(!trans))
359 goto out;
360 if (req->msg.type == XS_ERROR) {
361 list_del(&trans->list);
362 kfree(trans);
363 } else {
364 rc = kstrtou32(req->body, 10, &trans->handle.id);
365 if (WARN_ON(rc))
366 goto out;
367 }
Simon Gaiser2a22ee62018-03-15 03:43:20 +0100368 } else if (req->type == XS_TRANSACTION_END) {
Juergen Grossfd8aa902017-02-09 14:39:58 +0100369 trans = xenbus_get_transaction(u, req->msg.tx_id);
370 if (WARN_ON(!trans))
371 goto out;
372 list_del(&trans->list);
373 kfree(trans);
374 }
375
376 mutex_unlock(&u->msgbuffer_mutex);
377
378 mutex_lock(&u->reply_mutex);
379 rc = queue_reply(&staging_q, &req->msg, sizeof(req->msg));
380 if (!rc)
381 rc = queue_reply(&staging_q, req->body, req->msg.len);
382 if (!rc) {
383 list_splice_tail(&staging_q, &u->read_buffers);
384 wake_up(&u->read_waitq);
385 } else {
386 queue_cleanup(&staging_q);
387 }
388 mutex_unlock(&u->reply_mutex);
389
390 kfree(req->body);
391 kfree(req);
392
393 kref_put(&u->kref, xenbus_file_free);
394
395 return;
396
397 out:
398 mutex_unlock(&u->msgbuffer_mutex);
399}
400
Juergen Gross9a6161f2016-12-22 08:19:47 +0100401static int xenbus_command_reply(struct xenbus_file_priv *u,
402 unsigned int msg_type, const char *reply)
403{
404 struct {
405 struct xsd_sockmsg hdr;
406 const char body[16];
407 } msg;
408 int rc;
409
410 msg.hdr = u->u.msg;
411 msg.hdr.type = msg_type;
412 msg.hdr.len = strlen(reply) + 1;
413 if (msg.hdr.len > sizeof(msg.body))
414 return -E2BIG;
415
416 mutex_lock(&u->reply_mutex);
417 rc = queue_reply(&u->read_buffers, &msg, sizeof(msg.hdr) + msg.hdr.len);
418 wake_up(&u->read_waitq);
419 mutex_unlock(&u->reply_mutex);
420
Juergen Grossfd8aa902017-02-09 14:39:58 +0100421 if (!rc)
422 kref_put(&u->kref, xenbus_file_free);
423
Juergen Gross9a6161f2016-12-22 08:19:47 +0100424 return rc;
425}
426
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800427static int xenbus_write_transaction(unsigned msg_type,
428 struct xenbus_file_priv *u)
429{
Ian Campbelle88a0fa2009-01-24 08:22:47 +0000430 int rc;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800431 struct xenbus_transaction_holder *trans = NULL;
Simon Gaiser8fe5ab42018-03-15 03:43:22 +0100432 struct {
433 struct xsd_sockmsg hdr;
434 char body[];
435 } *msg = (void *)u->u.buffer;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800436
437 if (msg_type == XS_TRANSACTION_START) {
Juergen Grossfd8aa902017-02-09 14:39:58 +0100438 trans = kzalloc(sizeof(*trans), GFP_KERNEL);
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800439 if (!trans) {
440 rc = -ENOMEM;
441 goto out;
442 }
Juergen Grossfd8aa902017-02-09 14:39:58 +0100443 list_add(&trans->list, &u->transactions);
Simon Gaiser8fe5ab42018-03-15 03:43:22 +0100444 } else if (msg->hdr.tx_id != 0 &&
445 !xenbus_get_transaction(u, msg->hdr.tx_id))
Juergen Grossfd8aa902017-02-09 14:39:58 +0100446 return xenbus_command_reply(u, XS_ERROR, "ENOENT");
Simon Gaiser8fe5ab42018-03-15 03:43:22 +0100447 else if (msg_type == XS_TRANSACTION_END &&
448 !(msg->hdr.len == 2 &&
449 (!strcmp(msg->body, "T") || !strcmp(msg->body, "F"))))
450 return xenbus_command_reply(u, XS_ERROR, "EINVAL");
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800451
Simon Gaiser8fe5ab42018-03-15 03:43:22 +0100452 rc = xenbus_dev_request_and_reply(&msg->hdr, u);
Jan Beulichac4cde32017-04-04 06:27:22 -0600453 if (rc && trans) {
454 list_del(&trans->list);
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800455 kfree(trans);
Jan Beulichac4cde32017-04-04 06:27:22 -0600456 }
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800457
458out:
459 return rc;
460}
461
462static int xenbus_write_watch(unsigned msg_type, struct xenbus_file_priv *u)
463{
Jan Beuliche1e5b3f2016-10-24 09:03:49 -0600464 struct watch_adapter *watch;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800465 char *path, *token;
466 int err, rc;
467 LIST_HEAD(staging_q);
468
469 path = u->u.buffer + sizeof(u->u.msg);
470 token = memchr(path, 0, u->u.msg.len);
471 if (token == NULL) {
Juergen Gross9a6161f2016-12-22 08:19:47 +0100472 rc = xenbus_command_reply(u, XS_ERROR, "EINVAL");
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800473 goto out;
474 }
475 token++;
Jan Beulicha43a5cc2012-01-24 13:52:42 +0000476 if (memchr(token, 0, u->u.msg.len - (token - path)) == NULL) {
Juergen Gross9a6161f2016-12-22 08:19:47 +0100477 rc = xenbus_command_reply(u, XS_ERROR, "EINVAL");
Jan Beulicha43a5cc2012-01-24 13:52:42 +0000478 goto out;
479 }
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800480
481 if (msg_type == XS_WATCH) {
482 watch = alloc_watch_adapter(path, token);
483 if (watch == NULL) {
484 rc = -ENOMEM;
485 goto out;
486 }
487
488 watch->watch.callback = watch_fired;
489 watch->dev_data = u;
490
491 err = register_xenbus_watch(&watch->watch);
492 if (err) {
493 free_watch_adapter(watch);
494 rc = err;
495 goto out;
496 }
497 list_add(&watch->list, &u->watches);
498 } else {
Jan Beuliche1e5b3f2016-10-24 09:03:49 -0600499 list_for_each_entry(watch, &u->watches, list) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800500 if (!strcmp(watch->token, token) &&
501 !strcmp(watch->watch.node, path)) {
502 unregister_xenbus_watch(&watch->watch);
503 list_del(&watch->list);
504 free_watch_adapter(watch);
505 break;
506 }
507 }
508 }
509
510 /* Success. Synthesize a reply to say all is OK. */
Juergen Gross9a6161f2016-12-22 08:19:47 +0100511 rc = xenbus_command_reply(u, msg_type, "OK");
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800512
513out:
514 return rc;
515}
516
517static ssize_t xenbus_file_write(struct file *filp,
518 const char __user *ubuf,
519 size_t len, loff_t *ppos)
520{
521 struct xenbus_file_priv *u = filp->private_data;
522 uint32_t msg_type;
523 int rc = len;
524 int ret;
525 LIST_HEAD(staging_q);
526
527 /*
528 * We're expecting usermode to be writing properly formed
529 * xenbus messages. If they write an incomplete message we
530 * buffer it up. Once it is complete, we act on it.
531 */
532
533 /*
534 * Make sure concurrent writers can't stomp all over each
535 * other's messages and make a mess of our partial message
536 * buffer. We don't make any attemppt to stop multiple
537 * writers from making a mess of each other's incomplete
538 * messages; we're just trying to guarantee our own internal
539 * consistency and make sure that single writes are handled
540 * atomically.
541 */
542 mutex_lock(&u->msgbuffer_mutex);
543
544 /* Get this out of the way early to avoid confusion */
545 if (len == 0)
546 goto out;
547
548 /* Can't write a xenbus message larger we can buffer */
Jan Beulich1bcaba512012-10-17 13:14:09 -0400549 if (len > sizeof(u->u.buffer) - u->len) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800550 /* On error, dump existing buffer */
551 u->len = 0;
552 rc = -EINVAL;
553 goto out;
554 }
555
556 ret = copy_from_user(u->u.buffer + u->len, ubuf, len);
557
Jeremy Fitzhardingefb27cfb2010-08-25 12:19:53 -0700558 if (ret != 0) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800559 rc = -EFAULT;
560 goto out;
561 }
562
563 /* Deal with a partial copy. */
564 len -= ret;
565 rc = len;
566
567 u->len += len;
568
569 /* Return if we haven't got a full message yet */
570 if (u->len < sizeof(u->u.msg))
571 goto out; /* not even the header yet */
572
573 /* If we're expecting a message that's larger than we can
574 possibly send, dump what we have and return an error. */
575 if ((sizeof(u->u.msg) + u->u.msg.len) > sizeof(u->u.buffer)) {
576 rc = -E2BIG;
577 u->len = 0;
578 goto out;
579 }
580
581 if (u->len < (sizeof(u->u.msg) + u->u.msg.len))
582 goto out; /* incomplete data portion */
583
584 /*
585 * OK, now we have a complete message. Do something with it.
586 */
587
Juergen Grossfd8aa902017-02-09 14:39:58 +0100588 kref_get(&u->kref);
589
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800590 msg_type = u->u.msg.type;
591
592 switch (msg_type) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800593 case XS_WATCH:
594 case XS_UNWATCH:
595 /* (Un)Ask for some path to be watched for changes */
596 ret = xenbus_write_watch(msg_type, u);
597 break;
598
599 default:
Diego Ongaro6d6df2e2010-09-01 09:18:54 -0700600 /* Send out a transaction */
601 ret = xenbus_write_transaction(msg_type, u);
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800602 break;
603 }
Juergen Grossfd8aa902017-02-09 14:39:58 +0100604 if (ret != 0) {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800605 rc = ret;
Juergen Grossfd8aa902017-02-09 14:39:58 +0100606 kref_put(&u->kref, xenbus_file_free);
607 }
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800608
609 /* Buffered message consumed */
610 u->len = 0;
611
612 out:
613 mutex_unlock(&u->msgbuffer_mutex);
614 return rc;
615}
616
617static int xenbus_file_open(struct inode *inode, struct file *filp)
618{
619 struct xenbus_file_priv *u;
620
621 if (xen_store_evtchn == 0)
622 return -ENOENT;
623
624 nonseekable_open(inode, filp);
625
David Vrabel581d21a2016-12-09 14:41:13 +0000626 filp->f_mode &= ~FMODE_ATOMIC_POS; /* cdev-style semantics */
627
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800628 u = kzalloc(sizeof(*u), GFP_KERNEL);
629 if (u == NULL)
630 return -ENOMEM;
631
Juergen Grossfd8aa902017-02-09 14:39:58 +0100632 kref_init(&u->kref);
633
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800634 INIT_LIST_HEAD(&u->transactions);
635 INIT_LIST_HEAD(&u->watches);
636 INIT_LIST_HEAD(&u->read_buffers);
637 init_waitqueue_head(&u->read_waitq);
638
639 mutex_init(&u->reply_mutex);
640 mutex_init(&u->msgbuffer_mutex);
641
642 filp->private_data = u;
643
644 return 0;
645}
646
647static int xenbus_file_release(struct inode *inode, struct file *filp)
648{
649 struct xenbus_file_priv *u = filp->private_data;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800650
Juergen Grossfd8aa902017-02-09 14:39:58 +0100651 kref_put(&u->kref, xenbus_file_free);
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800652
653 return 0;
654}
655
Al Viroafc9a422017-07-03 06:39:46 -0400656static __poll_t xenbus_file_poll(struct file *file, poll_table *wait)
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800657{
658 struct xenbus_file_priv *u = file->private_data;
659
660 poll_wait(file, &u->read_waitq, wait);
661 if (!list_empty(&u->read_buffers))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800662 return EPOLLIN | EPOLLRDNORM;
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800663 return 0;
664}
665
Bastian Blank2fb36832011-12-10 19:29:47 +0100666const struct file_operations xen_xenbus_fops = {
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800667 .read = xenbus_file_read,
668 .write = xenbus_file_write,
669 .open = xenbus_file_open,
670 .release = xenbus_file_release,
671 .poll = xenbus_file_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200672 .llseek = no_llseek,
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800673};
Bastian Blank2fb36832011-12-10 19:29:47 +0100674EXPORT_SYMBOL_GPL(xen_xenbus_fops);
675
676static struct miscdevice xenbus_dev = {
677 .minor = MISC_DYNAMIC_MINOR,
678 .name = "xen/xenbus",
679 .fops = &xen_xenbus_fops,
680};
681
682static int __init xenbus_init(void)
683{
684 int err;
685
686 if (!xen_domain())
687 return -ENODEV;
688
689 err = misc_register(&xenbus_dev);
690 if (err)
Joe Perches283c0972013-06-28 03:21:41 -0700691 pr_err("Could not register xenbus frontend device\n");
Bastian Blank2fb36832011-12-10 19:29:47 +0100692 return err;
693}
Paul Gortmakerab1241a2016-02-21 19:06:06 -0500694device_initcall(xenbus_init);