Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / drivers / xen / xenbus / xenbus_xs.c
blobca373d16a77dd0d105a1517db8725b3b267debdb
1 /******************************************************************************
2 * xenbus_xs.c
4 * This is the kernel equivalent of the "xs" library. We don't need everything
5 * and we use xenbus_comms for communication.
7 * Copyright (C) 2005 Rusty Russell, IBM Corporation
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation; or, when distributed
12 * separately from the Linux kernel or incorporated into other
13 * software packages, subject to the following license:
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
31 * IN THE SOFTWARE.
34 #include <linux/unistd.h>
35 #include <linux/errno.h>
36 #include <linux/types.h>
37 #include <linux/uio.h>
38 #include <linux/kernel.h>
39 #include <linux/string.h>
40 #include <linux/err.h>
41 #include <linux/slab.h>
42 #include <linux/fcntl.h>
43 #include <linux/kthread.h>
44 #include <linux/rwsem.h>
45 #include <linux/module.h>
46 #include <linux/mutex.h>
47 #include <xen/xenbus.h>
48 #include <xen/xen.h>
49 #include "xenbus_comms.h"
50 #include <asm/xen/hypervisor.h>
52 struct xs_stored_msg {
53 struct list_head list;
55 struct xsd_sockmsg hdr;
57 union {
58 /* Queued replies. */
59 struct {
60 char *body;
61 } reply;
63 /* Queued watch events. */
64 struct {
65 struct xenbus_watch *handle;
66 char **vec;
67 unsigned int vec_size;
68 } watch;
69 } u;
72 struct xs_handle {
73 /* A list of replies. Currently only one will ever be outstanding. */
74 struct list_head reply_list;
75 spinlock_t reply_lock;
76 wait_queue_head_t reply_waitq;
79 * Mutex ordering: transaction_mutex -> watch_mutex -> request_mutex.
80 * response_mutex is never taken simultaneously with the other three.
82 * transaction_mutex must be held before incrementing
83 * transaction_count. The mutex is held when a suspend is in
84 * progress to prevent new transactions starting.
86 * When decrementing transaction_count to zero the wait queue
87 * should be woken up, the suspend code waits for count to
88 * reach zero.
91 /* One request at a time. */
92 struct mutex request_mutex;
94 /* Protect xenbus reader thread against save/restore. */
95 struct mutex response_mutex;
97 /* Protect transactions against save/restore. */
98 struct mutex transaction_mutex;
99 atomic_t transaction_count;
100 wait_queue_head_t transaction_wq;
102 /* Protect watch (de)register against save/restore. */
103 struct rw_semaphore watch_mutex;
106 static struct xs_handle xs_state;
108 /* List of registered watches, and a lock to protect it. */
109 static LIST_HEAD(watches);
110 static DEFINE_SPINLOCK(watches_lock);
112 /* List of pending watch callback events, and a lock to protect it. */
113 static LIST_HEAD(watch_events);
114 static DEFINE_SPINLOCK(watch_events_lock);
117 * Details of the xenwatch callback kernel thread. The thread waits on the
118 * watch_events_waitq for work to do (queued on watch_events list). When it
119 * wakes up it acquires the xenwatch_mutex before reading the list and
120 * carrying out work.
122 static pid_t xenwatch_pid;
123 static DEFINE_MUTEX(xenwatch_mutex);
124 static DECLARE_WAIT_QUEUE_HEAD(watch_events_waitq);
126 static int get_error(const char *errorstring)
128 unsigned int i;
130 for (i = 0; strcmp(errorstring, xsd_errors[i].errstring) != 0; i++) {
131 if (i == ARRAY_SIZE(xsd_errors) - 1) {
132 printk(KERN_WARNING
133 "XENBUS xen store gave: unknown error %s",
134 errorstring);
135 return EINVAL;
138 return xsd_errors[i].errnum;
141 static void *read_reply(enum xsd_sockmsg_type *type, unsigned int *len)
143 struct xs_stored_msg *msg;
144 char *body;
146 spin_lock(&xs_state.reply_lock);
148 while (list_empty(&xs_state.reply_list)) {
149 spin_unlock(&xs_state.reply_lock);
150 /* XXX FIXME: Avoid synchronous wait for response here. */
151 wait_event(xs_state.reply_waitq,
152 !list_empty(&xs_state.reply_list));
153 spin_lock(&xs_state.reply_lock);
156 msg = list_entry(xs_state.reply_list.next,
157 struct xs_stored_msg, list);
158 list_del(&msg->list);
160 spin_unlock(&xs_state.reply_lock);
162 *type = msg->hdr.type;
163 if (len)
164 *len = msg->hdr.len;
165 body = msg->u.reply.body;
167 kfree(msg);
169 return body;
172 static void transaction_start(void)
174 mutex_lock(&xs_state.transaction_mutex);
175 atomic_inc(&xs_state.transaction_count);
176 mutex_unlock(&xs_state.transaction_mutex);
179 static void transaction_end(void)
181 if (atomic_dec_and_test(&xs_state.transaction_count))
182 wake_up(&xs_state.transaction_wq);
185 static void transaction_suspend(void)
187 mutex_lock(&xs_state.transaction_mutex);
188 wait_event(xs_state.transaction_wq,
189 atomic_read(&xs_state.transaction_count) == 0);
192 static void transaction_resume(void)
194 mutex_unlock(&xs_state.transaction_mutex);
197 void *xenbus_dev_request_and_reply(struct xsd_sockmsg *msg)
199 void *ret;
200 struct xsd_sockmsg req_msg = *msg;
201 int err;
203 if (req_msg.type == XS_TRANSACTION_START)
204 transaction_start();
206 mutex_lock(&xs_state.request_mutex);
208 err = xb_write(msg, sizeof(*msg) + msg->len);
209 if (err) {
210 msg->type = XS_ERROR;
211 ret = ERR_PTR(err);
212 } else
213 ret = read_reply(&msg->type, &msg->len);
215 mutex_unlock(&xs_state.request_mutex);
217 if ((msg->type == XS_TRANSACTION_END) ||
218 ((req_msg.type == XS_TRANSACTION_START) &&
219 (msg->type == XS_ERROR)))
220 transaction_end();
222 return ret;
224 EXPORT_SYMBOL(xenbus_dev_request_and_reply);
226 /* Send message to xs, get kmalloc'ed reply. ERR_PTR() on error. */
227 static void *xs_talkv(struct xenbus_transaction t,
228 enum xsd_sockmsg_type type,
229 const struct kvec *iovec,
230 unsigned int num_vecs,
231 unsigned int *len)
233 struct xsd_sockmsg msg;
234 void *ret = NULL;
235 unsigned int i;
236 int err;
238 msg.tx_id = t.id;
239 msg.req_id = 0;
240 msg.type = type;
241 msg.len = 0;
242 for (i = 0; i < num_vecs; i++)
243 msg.len += iovec[i].iov_len;
245 mutex_lock(&xs_state.request_mutex);
247 err = xb_write(&msg, sizeof(msg));
248 if (err) {
249 mutex_unlock(&xs_state.request_mutex);
250 return ERR_PTR(err);
253 for (i = 0; i < num_vecs; i++) {
254 err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
255 if (err) {
256 mutex_unlock(&xs_state.request_mutex);
257 return ERR_PTR(err);
261 ret = read_reply(&msg.type, len);
263 mutex_unlock(&xs_state.request_mutex);
265 if (IS_ERR(ret))
266 return ret;
268 if (msg.type == XS_ERROR) {
269 err = get_error(ret);
270 kfree(ret);
271 return ERR_PTR(-err);
274 if (msg.type != type) {
275 if (printk_ratelimit())
276 printk(KERN_WARNING
277 "XENBUS unexpected type [%d], expected [%d]\n",
278 msg.type, type);
279 kfree(ret);
280 return ERR_PTR(-EINVAL);
282 return ret;
285 /* Simplified version of xs_talkv: single message. */
286 static void *xs_single(struct xenbus_transaction t,
287 enum xsd_sockmsg_type type,
288 const char *string,
289 unsigned int *len)
291 struct kvec iovec;
293 iovec.iov_base = (void *)string;
294 iovec.iov_len = strlen(string) + 1;
295 return xs_talkv(t, type, &iovec, 1, len);
298 /* Many commands only need an ack, don't care what it says. */
299 static int xs_error(char *reply)
301 if (IS_ERR(reply))
302 return PTR_ERR(reply);
303 kfree(reply);
304 return 0;
307 static unsigned int count_strings(const char *strings, unsigned int len)
309 unsigned int num;
310 const char *p;
312 for (p = strings, num = 0; p < strings + len; p += strlen(p) + 1)
313 num++;
315 return num;
318 /* Return the path to dir with /name appended. Buffer must be kfree()'ed. */
319 static char *join(const char *dir, const char *name)
321 char *buffer;
323 if (strlen(name) == 0)
324 buffer = kasprintf(GFP_NOIO | __GFP_HIGH, "%s", dir);
325 else
326 buffer = kasprintf(GFP_NOIO | __GFP_HIGH, "%s/%s", dir, name);
327 return (!buffer) ? ERR_PTR(-ENOMEM) : buffer;
330 static char **split(char *strings, unsigned int len, unsigned int *num)
332 char *p, **ret;
334 /* Count the strings. */
335 *num = count_strings(strings, len);
337 /* Transfer to one big alloc for easy freeing. */
338 ret = kmalloc(*num * sizeof(char *) + len, GFP_NOIO | __GFP_HIGH);
339 if (!ret) {
340 kfree(strings);
341 return ERR_PTR(-ENOMEM);
343 memcpy(&ret[*num], strings, len);
344 kfree(strings);
346 strings = (char *)&ret[*num];
347 for (p = strings, *num = 0; p < strings + len; p += strlen(p) + 1)
348 ret[(*num)++] = p;
350 return ret;
353 char **xenbus_directory(struct xenbus_transaction t,
354 const char *dir, const char *node, unsigned int *num)
356 char *strings, *path;
357 unsigned int len;
359 path = join(dir, node);
360 if (IS_ERR(path))
361 return (char **)path;
363 strings = xs_single(t, XS_DIRECTORY, path, &len);
364 kfree(path);
365 if (IS_ERR(strings))
366 return (char **)strings;
368 return split(strings, len, num);
370 EXPORT_SYMBOL_GPL(xenbus_directory);
372 /* Check if a path exists. Return 1 if it does. */
373 int xenbus_exists(struct xenbus_transaction t,
374 const char *dir, const char *node)
376 char **d;
377 int dir_n;
379 d = xenbus_directory(t, dir, node, &dir_n);
380 if (IS_ERR(d))
381 return 0;
382 kfree(d);
383 return 1;
385 EXPORT_SYMBOL_GPL(xenbus_exists);
387 /* Get the value of a single file.
388 * Returns a kmalloced value: call free() on it after use.
389 * len indicates length in bytes.
391 void *xenbus_read(struct xenbus_transaction t,
392 const char *dir, const char *node, unsigned int *len)
394 char *path;
395 void *ret;
397 path = join(dir, node);
398 if (IS_ERR(path))
399 return (void *)path;
401 ret = xs_single(t, XS_READ, path, len);
402 kfree(path);
403 return ret;
405 EXPORT_SYMBOL_GPL(xenbus_read);
407 /* Write the value of a single file.
408 * Returns -err on failure.
410 int xenbus_write(struct xenbus_transaction t,
411 const char *dir, const char *node, const char *string)
413 const char *path;
414 struct kvec iovec[2];
415 int ret;
417 path = join(dir, node);
418 if (IS_ERR(path))
419 return PTR_ERR(path);
421 iovec[0].iov_base = (void *)path;
422 iovec[0].iov_len = strlen(path) + 1;
423 iovec[1].iov_base = (void *)string;
424 iovec[1].iov_len = strlen(string);
426 ret = xs_error(xs_talkv(t, XS_WRITE, iovec, ARRAY_SIZE(iovec), NULL));
427 kfree(path);
428 return ret;
430 EXPORT_SYMBOL_GPL(xenbus_write);
432 /* Create a new directory. */
433 int xenbus_mkdir(struct xenbus_transaction t,
434 const char *dir, const char *node)
436 char *path;
437 int ret;
439 path = join(dir, node);
440 if (IS_ERR(path))
441 return PTR_ERR(path);
443 ret = xs_error(xs_single(t, XS_MKDIR, path, NULL));
444 kfree(path);
445 return ret;
447 EXPORT_SYMBOL_GPL(xenbus_mkdir);
449 /* Destroy a file or directory (directories must be empty). */
450 int xenbus_rm(struct xenbus_transaction t, const char *dir, const char *node)
452 char *path;
453 int ret;
455 path = join(dir, node);
456 if (IS_ERR(path))
457 return PTR_ERR(path);
459 ret = xs_error(xs_single(t, XS_RM, path, NULL));
460 kfree(path);
461 return ret;
463 EXPORT_SYMBOL_GPL(xenbus_rm);
465 /* Start a transaction: changes by others will not be seen during this
466 * transaction, and changes will not be visible to others until end.
468 int xenbus_transaction_start(struct xenbus_transaction *t)
470 char *id_str;
472 transaction_start();
474 id_str = xs_single(XBT_NIL, XS_TRANSACTION_START, "", NULL);
475 if (IS_ERR(id_str)) {
476 transaction_end();
477 return PTR_ERR(id_str);
480 t->id = simple_strtoul(id_str, NULL, 0);
481 kfree(id_str);
482 return 0;
484 EXPORT_SYMBOL_GPL(xenbus_transaction_start);
486 /* End a transaction.
487 * If abandon is true, transaction is discarded instead of committed.
489 int xenbus_transaction_end(struct xenbus_transaction t, int abort)
491 char abortstr[2];
492 int err;
494 if (abort)
495 strcpy(abortstr, "F");
496 else
497 strcpy(abortstr, "T");
499 err = xs_error(xs_single(t, XS_TRANSACTION_END, abortstr, NULL));
501 transaction_end();
503 return err;
505 EXPORT_SYMBOL_GPL(xenbus_transaction_end);
507 /* Single read and scanf: returns -errno or num scanned. */
508 int xenbus_scanf(struct xenbus_transaction t,
509 const char *dir, const char *node, const char *fmt, ...)
511 va_list ap;
512 int ret;
513 char *val;
515 val = xenbus_read(t, dir, node, NULL);
516 if (IS_ERR(val))
517 return PTR_ERR(val);
519 va_start(ap, fmt);
520 ret = vsscanf(val, fmt, ap);
521 va_end(ap);
522 kfree(val);
523 /* Distinctive errno. */
524 if (ret == 0)
525 return -ERANGE;
526 return ret;
528 EXPORT_SYMBOL_GPL(xenbus_scanf);
530 /* Single printf and write: returns -errno or 0. */
531 int xenbus_printf(struct xenbus_transaction t,
532 const char *dir, const char *node, const char *fmt, ...)
534 va_list ap;
535 int ret;
536 char *buf;
538 va_start(ap, fmt);
539 buf = kvasprintf(GFP_NOIO | __GFP_HIGH, fmt, ap);
540 va_end(ap);
542 if (!buf)
543 return -ENOMEM;
545 ret = xenbus_write(t, dir, node, buf);
547 kfree(buf);
549 return ret;
551 EXPORT_SYMBOL_GPL(xenbus_printf);
553 /* Takes tuples of names, scanf-style args, and void **, NULL terminated. */
554 int xenbus_gather(struct xenbus_transaction t, const char *dir, ...)
556 va_list ap;
557 const char *name;
558 int ret = 0;
560 va_start(ap, dir);
561 while (ret == 0 && (name = va_arg(ap, char *)) != NULL) {
562 const char *fmt = va_arg(ap, char *);
563 void *result = va_arg(ap, void *);
564 char *p;
566 p = xenbus_read(t, dir, name, NULL);
567 if (IS_ERR(p)) {
568 ret = PTR_ERR(p);
569 break;
571 if (fmt) {
572 if (sscanf(p, fmt, result) == 0)
573 ret = -EINVAL;
574 kfree(p);
575 } else
576 *(char **)result = p;
578 va_end(ap);
579 return ret;
581 EXPORT_SYMBOL_GPL(xenbus_gather);
583 static int xs_watch(const char *path, const char *token)
585 struct kvec iov[2];
587 iov[0].iov_base = (void *)path;
588 iov[0].iov_len = strlen(path) + 1;
589 iov[1].iov_base = (void *)token;
590 iov[1].iov_len = strlen(token) + 1;
592 return xs_error(xs_talkv(XBT_NIL, XS_WATCH, iov,
593 ARRAY_SIZE(iov), NULL));
596 static int xs_unwatch(const char *path, const char *token)
598 struct kvec iov[2];
600 iov[0].iov_base = (char *)path;
601 iov[0].iov_len = strlen(path) + 1;
602 iov[1].iov_base = (char *)token;
603 iov[1].iov_len = strlen(token) + 1;
605 return xs_error(xs_talkv(XBT_NIL, XS_UNWATCH, iov,
606 ARRAY_SIZE(iov), NULL));
609 static struct xenbus_watch *find_watch(const char *token)
611 struct xenbus_watch *i, *cmp;
613 cmp = (void *)simple_strtoul(token, NULL, 16);
615 list_for_each_entry(i, &watches, list)
616 if (i == cmp)
617 return i;
619 return NULL;
622 * Certain older XenBus toolstack cannot handle reading values that are
623 * not populated. Some Xen 3.4 installation are incapable of doing this
624 * so if we are running on anything older than 4 do not attempt to read
625 * control/platform-feature-xs_reset_watches.
627 static bool xen_strict_xenbus_quirk()
629 uint32_t eax, ebx, ecx, edx, base;
631 base = xen_cpuid_base();
632 cpuid(base + 1, &eax, &ebx, &ecx, &edx);
634 if ((eax >> 16) < 4)
635 return true;
636 return false;
639 static void xs_reset_watches(void)
641 int err, supported = 0;
643 if (!xen_hvm_domain())
644 return;
646 if (xen_strict_xenbus_quirk())
647 return;
649 err = xenbus_scanf(XBT_NIL, "control",
650 "platform-feature-xs_reset_watches", "%d", &supported);
651 if (err != 1 || !supported)
652 return;
654 err = xs_error(xs_single(XBT_NIL, XS_RESET_WATCHES, "", NULL));
655 if (err && err != -EEXIST)
656 printk(KERN_WARNING "xs_reset_watches failed: %d\n", err);
659 /* Register callback to watch this node. */
660 int register_xenbus_watch(struct xenbus_watch *watch)
662 /* Pointer in ascii is the token. */
663 char token[sizeof(watch) * 2 + 1];
664 int err;
666 sprintf(token, "%lX", (long)watch);
668 down_read(&xs_state.watch_mutex);
670 spin_lock(&watches_lock);
671 BUG_ON(find_watch(token));
672 list_add(&watch->list, &watches);
673 spin_unlock(&watches_lock);
675 err = xs_watch(watch->node, token);
677 if (err) {
678 spin_lock(&watches_lock);
679 list_del(&watch->list);
680 spin_unlock(&watches_lock);
683 up_read(&xs_state.watch_mutex);
685 return err;
687 EXPORT_SYMBOL_GPL(register_xenbus_watch);
689 void unregister_xenbus_watch(struct xenbus_watch *watch)
691 struct xs_stored_msg *msg, *tmp;
692 char token[sizeof(watch) * 2 + 1];
693 int err;
695 sprintf(token, "%lX", (long)watch);
697 down_read(&xs_state.watch_mutex);
699 spin_lock(&watches_lock);
700 BUG_ON(!find_watch(token));
701 list_del(&watch->list);
702 spin_unlock(&watches_lock);
704 err = xs_unwatch(watch->node, token);
705 if (err)
706 printk(KERN_WARNING
707 "XENBUS Failed to release watch %s: %i\n",
708 watch->node, err);
710 up_read(&xs_state.watch_mutex);
712 /* Make sure there are no callbacks running currently (unless
713 its us) */
714 if (current->pid != xenwatch_pid)
715 mutex_lock(&xenwatch_mutex);
717 /* Cancel pending watch events. */
718 spin_lock(&watch_events_lock);
719 list_for_each_entry_safe(msg, tmp, &watch_events, list) {
720 if (msg->u.watch.handle != watch)
721 continue;
722 list_del(&msg->list);
723 kfree(msg->u.watch.vec);
724 kfree(msg);
726 spin_unlock(&watch_events_lock);
728 if (current->pid != xenwatch_pid)
729 mutex_unlock(&xenwatch_mutex);
731 EXPORT_SYMBOL_GPL(unregister_xenbus_watch);
733 void xs_suspend(void)
735 transaction_suspend();
736 down_write(&xs_state.watch_mutex);
737 mutex_lock(&xs_state.request_mutex);
738 mutex_lock(&xs_state.response_mutex);
741 void xs_resume(void)
743 struct xenbus_watch *watch;
744 char token[sizeof(watch) * 2 + 1];
746 xb_init_comms();
748 mutex_unlock(&xs_state.response_mutex);
749 mutex_unlock(&xs_state.request_mutex);
750 transaction_resume();
752 /* No need for watches_lock: the watch_mutex is sufficient. */
753 list_for_each_entry(watch, &watches, list) {
754 sprintf(token, "%lX", (long)watch);
755 xs_watch(watch->node, token);
758 up_write(&xs_state.watch_mutex);
761 void xs_suspend_cancel(void)
763 mutex_unlock(&xs_state.response_mutex);
764 mutex_unlock(&xs_state.request_mutex);
765 up_write(&xs_state.watch_mutex);
766 mutex_unlock(&xs_state.transaction_mutex);
769 static int xenwatch_thread(void *unused)
771 struct list_head *ent;
772 struct xs_stored_msg *msg;
774 for (;;) {
775 wait_event_interruptible(watch_events_waitq,
776 !list_empty(&watch_events));
778 if (kthread_should_stop())
779 break;
781 mutex_lock(&xenwatch_mutex);
783 spin_lock(&watch_events_lock);
784 ent = watch_events.next;
785 if (ent != &watch_events)
786 list_del(ent);
787 spin_unlock(&watch_events_lock);
789 if (ent != &watch_events) {
790 msg = list_entry(ent, struct xs_stored_msg, list);
791 msg->u.watch.handle->callback(
792 msg->u.watch.handle,
793 (const char **)msg->u.watch.vec,
794 msg->u.watch.vec_size);
795 kfree(msg->u.watch.vec);
796 kfree(msg);
799 mutex_unlock(&xenwatch_mutex);
802 return 0;
805 static int process_msg(void)
807 struct xs_stored_msg *msg;
808 char *body;
809 int err;
812 * We must disallow save/restore while reading a xenstore message.
813 * A partial read across s/r leaves us out of sync with xenstored.
815 for (;;) {
816 err = xb_wait_for_data_to_read();
817 if (err)
818 return err;
819 mutex_lock(&xs_state.response_mutex);
820 if (xb_data_to_read())
821 break;
822 /* We raced with save/restore: pending data 'disappeared'. */
823 mutex_unlock(&xs_state.response_mutex);
827 msg = kmalloc(sizeof(*msg), GFP_NOIO | __GFP_HIGH);
828 if (msg == NULL) {
829 err = -ENOMEM;
830 goto out;
833 err = xb_read(&msg->hdr, sizeof(msg->hdr));
834 if (err) {
835 kfree(msg);
836 goto out;
839 if (msg->hdr.len > XENSTORE_PAYLOAD_MAX) {
840 kfree(msg);
841 err = -EINVAL;
842 goto out;
845 body = kmalloc(msg->hdr.len + 1, GFP_NOIO | __GFP_HIGH);
846 if (body == NULL) {
847 kfree(msg);
848 err = -ENOMEM;
849 goto out;
852 err = xb_read(body, msg->hdr.len);
853 if (err) {
854 kfree(body);
855 kfree(msg);
856 goto out;
858 body[msg->hdr.len] = '\0';
860 if (msg->hdr.type == XS_WATCH_EVENT) {
861 msg->u.watch.vec = split(body, msg->hdr.len,
862 &msg->u.watch.vec_size);
863 if (IS_ERR(msg->u.watch.vec)) {
864 err = PTR_ERR(msg->u.watch.vec);
865 kfree(msg);
866 goto out;
869 spin_lock(&watches_lock);
870 msg->u.watch.handle = find_watch(
871 msg->u.watch.vec[XS_WATCH_TOKEN]);
872 if (msg->u.watch.handle != NULL) {
873 spin_lock(&watch_events_lock);
874 list_add_tail(&msg->list, &watch_events);
875 wake_up(&watch_events_waitq);
876 spin_unlock(&watch_events_lock);
877 } else {
878 kfree(msg->u.watch.vec);
879 kfree(msg);
881 spin_unlock(&watches_lock);
882 } else {
883 msg->u.reply.body = body;
884 spin_lock(&xs_state.reply_lock);
885 list_add_tail(&msg->list, &xs_state.reply_list);
886 spin_unlock(&xs_state.reply_lock);
887 wake_up(&xs_state.reply_waitq);
890 out:
891 mutex_unlock(&xs_state.response_mutex);
892 return err;
895 static int xenbus_thread(void *unused)
897 int err;
899 for (;;) {
900 err = process_msg();
901 if (err)
902 printk(KERN_WARNING "XENBUS error %d while reading "
903 "message\n", err);
904 if (kthread_should_stop())
905 break;
908 return 0;
911 int xs_init(void)
913 int err;
914 struct task_struct *task;
916 INIT_LIST_HEAD(&xs_state.reply_list);
917 spin_lock_init(&xs_state.reply_lock);
918 init_waitqueue_head(&xs_state.reply_waitq);
920 mutex_init(&xs_state.request_mutex);
921 mutex_init(&xs_state.response_mutex);
922 mutex_init(&xs_state.transaction_mutex);
923 init_rwsem(&xs_state.watch_mutex);
924 atomic_set(&xs_state.transaction_count, 0);
925 init_waitqueue_head(&xs_state.transaction_wq);
927 /* Initialize the shared memory rings to talk to xenstored */
928 err = xb_init_comms();
929 if (err)
930 return err;
932 task = kthread_run(xenwatch_thread, NULL, "xenwatch");
933 if (IS_ERR(task))
934 return PTR_ERR(task);
935 xenwatch_pid = task->pid;
937 task = kthread_run(xenbus_thread, NULL, "xenbus");
938 if (IS_ERR(task))
939 return PTR_ERR(task);
941 /* shutdown watches for kexec boot */
942 xs_reset_watches();
944 return 0;