1 /******************************************************************************
2 * xenbus_xs.c
3 *
4 * This is the kernel equivalent of the "xs" library. We don't need everything
5 * and we use xenbus_comms for communication.
6 *
7 * Copyright (C) 2005 Rusty Russell, IBM Corporation
8 *
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:
14 *
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:
21 *
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
24 *
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.
32 */
33
34 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
36 #include <linux/unistd.h>
37 #include <linux/errno.h>
38 #include <linux/types.h>
39 #include <linux/uio.h>
40 #include <linux/kernel.h>
41 #include <linux/string.h>
42 #include <linux/err.h>
43 #include <linux/slab.h>
44 #include <linux/fcntl.h>
45 #include <linux/kthread.h>
46 #include <linux/reboot.h>
47 #include <linux/rwsem.h>
48 #include <linux/mutex.h>
49 #include <asm/xen/hypervisor.h>
50 #include <xen/xenbus.h>
51 #include <xen/xen.h>
52 #include "xenbus.h"
53
54 /*
55 * Framework to protect suspend/resume handling against normal Xenstore
56 * message handling:
57 * During suspend/resume there must be no open transaction and no pending
58 * Xenstore request.
59 * New watch events happening in this time can be ignored by firing all watches
60 * after resume.
61 */
62
63 /* Lock protecting enter/exit critical region. */
64 static DEFINE_SPINLOCK(xs_state_lock);
65 /* Number of users in critical region (protected by xs_state_lock). */
66 static unsigned int xs_state_users;
67 /* Suspend handler waiting or already active (protected by xs_state_lock)? */
68 static int xs_suspend_active;
69 /* Unique Xenstore request id (protected by xs_state_lock). */
70 static uint32_t xs_request_id;
71
72 /* Wait queue for all callers waiting for critical region to become usable. */
73 static DECLARE_WAIT_QUEUE_HEAD(xs_state_enter_wq);
74 /* Wait queue for suspend handling waiting for critical region being empty. */
75 static DECLARE_WAIT_QUEUE_HEAD(xs_state_exit_wq);
76
77 /* List of registered watches, and a lock to protect it. */
78 static LIST_HEAD(watches);
79 static DEFINE_SPINLOCK(watches_lock);
80
81 /* List of pending watch callback events, and a lock to protect it. */
82 static LIST_HEAD(watch_events);
83 static DEFINE_SPINLOCK(watch_events_lock);
84
85 /* Protect watch (de)register against save/restore. */
86 static DECLARE_RWSEM(xs_watch_rwsem);
87
88 /*
89 * Details of the xenwatch callback kernel thread. The thread waits on the
90 * watch_events_waitq for work to do (queued on watch_events list). When it
91 * wakes up it acquires the xenwatch_mutex before reading the list and
92 * carrying out work.
93 */
94 static pid_t xenwatch_pid;
95 static DEFINE_MUTEX(xenwatch_mutex);
96 static DECLARE_WAIT_QUEUE_HEAD(watch_events_waitq);
97
xs_suspend_enter(void)98 static void xs_suspend_enter(void)
99 {
100 spin_lock(&xs_state_lock);
101 xs_suspend_active++;
102 spin_unlock(&xs_state_lock);
103 wait_event(xs_state_exit_wq, xs_state_users == 0);
104 }
105
xs_suspend_exit(void)106 static void xs_suspend_exit(void)
107 {
108 xb_dev_generation_id++;
109 spin_lock(&xs_state_lock);
110 xs_suspend_active--;
111 spin_unlock(&xs_state_lock);
112 wake_up_all(&xs_state_enter_wq);
113 }
114
xs_free_req(struct kref * kref)115 void xs_free_req(struct kref *kref)
116 {
117 struct xb_req_data *req = container_of(kref, struct xb_req_data, kref);
118 kfree(req);
119 }
120
xs_request_enter(struct xb_req_data * req)121 static uint32_t xs_request_enter(struct xb_req_data *req)
122 {
123 uint32_t rq_id;
124
125 req->type = req->msg.type;
126
127 spin_lock(&xs_state_lock);
128
129 while (!xs_state_users && xs_suspend_active) {
130 spin_unlock(&xs_state_lock);
131 wait_event(xs_state_enter_wq, xs_suspend_active == 0);
132 spin_lock(&xs_state_lock);
133 }
134
135 if (req->type == XS_TRANSACTION_START && !req->user_req)
136 xs_state_users++;
137 xs_state_users++;
138 rq_id = xs_request_id++;
139
140 spin_unlock(&xs_state_lock);
141
142 return rq_id;
143 }
144
xs_request_exit(struct xb_req_data * req)145 void xs_request_exit(struct xb_req_data *req)
146 {
147 spin_lock(&xs_state_lock);
148 xs_state_users--;
149 if ((req->type == XS_TRANSACTION_START && req->msg.type == XS_ERROR) ||
150 (req->type == XS_TRANSACTION_END && !req->user_req &&
151 !WARN_ON_ONCE(req->msg.type == XS_ERROR &&
152 !strcmp(req->body, "ENOENT"))))
153 xs_state_users--;
154 spin_unlock(&xs_state_lock);
155
156 if (xs_suspend_active && !xs_state_users)
157 wake_up(&xs_state_exit_wq);
158 }
159
get_error(const char * errorstring)160 static int get_error(const char *errorstring)
161 {
162 unsigned int i;
163
164 for (i = 0; strcmp(errorstring, xsd_errors[i].errstring) != 0; i++) {
165 if (i == ARRAY_SIZE(xsd_errors) - 1) {
166 pr_warn("xen store gave: unknown error %s\n",
167 errorstring);
168 return EINVAL;
169 }
170 }
171 return xsd_errors[i].errnum;
172 }
173
xenbus_ok(void)174 static bool xenbus_ok(void)
175 {
176 switch (xen_store_domain_type) {
177 case XS_LOCAL:
178 switch (system_state) {
179 case SYSTEM_POWER_OFF:
180 case SYSTEM_RESTART:
181 case SYSTEM_HALT:
182 return false;
183 default:
184 break;
185 }
186 return true;
187 case XS_PV:
188 case XS_HVM:
189 /* FIXME: Could check that the remote domain is alive,
190 * but it is normally initial domain. */
191 return true;
192 default:
193 break;
194 }
195 return false;
196 }
197
test_reply(struct xb_req_data * req)198 static bool test_reply(struct xb_req_data *req)
199 {
200 if (req->state == xb_req_state_got_reply || !xenbus_ok()) {
201 /* read req->state before all other fields */
202 virt_rmb();
203 return true;
204 }
205
206 /* Make sure to reread req->state each time. */
207 barrier();
208
209 return false;
210 }
211
read_reply(struct xb_req_data * req)212 static void *read_reply(struct xb_req_data *req)
213 {
214 do {
215 wait_event(req->wq, test_reply(req));
216
217 if (!xenbus_ok())
218 /*
219 * If we are in the process of being shut-down there is
220 * no point of trying to contact XenBus - it is either
221 * killed (xenstored application) or the other domain
222 * has been killed or is unreachable.
223 */
224 return ERR_PTR(-EIO);
225 if (req->err)
226 return ERR_PTR(req->err);
227
228 } while (req->state != xb_req_state_got_reply);
229
230 return req->body;
231 }
232
xs_send(struct xb_req_data * req,struct xsd_sockmsg * msg)233 static void xs_send(struct xb_req_data *req, struct xsd_sockmsg *msg)
234 {
235 bool notify;
236
237 req->msg = *msg;
238 req->err = 0;
239 req->state = xb_req_state_queued;
240 init_waitqueue_head(&req->wq);
241
242 /* Save the caller req_id and restore it later in the reply */
243 req->caller_req_id = req->msg.req_id;
244 req->msg.req_id = xs_request_enter(req);
245
246 /*
247 * Take 2nd ref. One for this thread, and the second for the
248 * xenbus_thread.
249 */
250 kref_get(&req->kref);
251
252 mutex_lock(&xb_write_mutex);
253 list_add_tail(&req->list, &xb_write_list);
254 notify = list_is_singular(&xb_write_list);
255 mutex_unlock(&xb_write_mutex);
256
257 if (notify)
258 wake_up(&xb_waitq);
259 }
260
xs_wait_for_reply(struct xb_req_data * req,struct xsd_sockmsg * msg)261 static void *xs_wait_for_reply(struct xb_req_data *req, struct xsd_sockmsg *msg)
262 {
263 void *ret;
264
265 ret = read_reply(req);
266
267 xs_request_exit(req);
268
269 msg->type = req->msg.type;
270 msg->len = req->msg.len;
271
272 mutex_lock(&xb_write_mutex);
273 if (req->state == xb_req_state_queued ||
274 req->state == xb_req_state_wait_reply)
275 req->state = xb_req_state_aborted;
276
277 kref_put(&req->kref, xs_free_req);
278 mutex_unlock(&xb_write_mutex);
279
280 return ret;
281 }
282
xs_wake_up(struct xb_req_data * req)283 static void xs_wake_up(struct xb_req_data *req)
284 {
285 wake_up(&req->wq);
286 }
287
xenbus_dev_request_and_reply(struct xsd_sockmsg * msg,void * par)288 int xenbus_dev_request_and_reply(struct xsd_sockmsg *msg, void *par)
289 {
290 struct xb_req_data *req;
291 struct kvec *vec;
292
293 req = kmalloc(sizeof(*req) + sizeof(*vec), GFP_KERNEL);
294 if (!req)
295 return -ENOMEM;
296
297 vec = (struct kvec *)(req + 1);
298 vec->iov_len = msg->len;
299 vec->iov_base = msg + 1;
300
301 req->vec = vec;
302 req->num_vecs = 1;
303 req->cb = xenbus_dev_queue_reply;
304 req->par = par;
305 req->user_req = true;
306 kref_init(&req->kref);
307
308 xs_send(req, msg);
309
310 return 0;
311 }
312 EXPORT_SYMBOL(xenbus_dev_request_and_reply);
313
314 /* Send message to xs, get kmalloc'ed reply. ERR_PTR() on error. */
xs_talkv(struct xenbus_transaction t,enum xsd_sockmsg_type type,const struct kvec * iovec,unsigned int num_vecs,unsigned int * len)315 static void *xs_talkv(struct xenbus_transaction t,
316 enum xsd_sockmsg_type type,
317 const struct kvec *iovec,
318 unsigned int num_vecs,
319 unsigned int *len)
320 {
321 struct xb_req_data *req;
322 struct xsd_sockmsg msg;
323 void *ret = NULL;
324 unsigned int i;
325 int err;
326
327 req = kmalloc(sizeof(*req), GFP_NOIO | __GFP_HIGH);
328 if (!req)
329 return ERR_PTR(-ENOMEM);
330
331 req->vec = iovec;
332 req->num_vecs = num_vecs;
333 req->cb = xs_wake_up;
334 req->user_req = false;
335 kref_init(&req->kref);
336
337 msg.req_id = 0;
338 msg.tx_id = t.id;
339 msg.type = type;
340 msg.len = 0;
341 for (i = 0; i < num_vecs; i++)
342 msg.len += iovec[i].iov_len;
343
344 xs_send(req, &msg);
345
346 ret = xs_wait_for_reply(req, &msg);
347 if (len)
348 *len = msg.len;
349
350 if (IS_ERR(ret))
351 return ret;
352
353 if (msg.type == XS_ERROR) {
354 err = get_error(ret);
355 kfree(ret);
356 return ERR_PTR(-err);
357 }
358
359 if (msg.type != type) {
360 pr_warn_ratelimited("unexpected type [%d], expected [%d]\n",
361 msg.type, type);
362 kfree(ret);
363 return ERR_PTR(-EINVAL);
364 }
365 return ret;
366 }
367
368 /* Simplified version of xs_talkv: single message. */
xs_single(struct xenbus_transaction t,enum xsd_sockmsg_type type,const char * string,unsigned int * len)369 static void *xs_single(struct xenbus_transaction t,
370 enum xsd_sockmsg_type type,
371 const char *string,
372 unsigned int *len)
373 {
374 struct kvec iovec;
375
376 iovec.iov_base = (void *)string;
377 iovec.iov_len = strlen(string) + 1;
378 return xs_talkv(t, type, &iovec, 1, len);
379 }
380
381 /* Many commands only need an ack, don't care what it says. */
xs_error(char * reply)382 static int xs_error(char *reply)
383 {
384 if (IS_ERR(reply))
385 return PTR_ERR(reply);
386 kfree(reply);
387 return 0;
388 }
389
count_strings(const char * strings,unsigned int len)390 static unsigned int count_strings(const char *strings, unsigned int len)
391 {
392 unsigned int num;
393 const char *p;
394
395 for (p = strings, num = 0; p < strings + len; p += strlen(p) + 1)
396 num++;
397
398 return num;
399 }
400
401 /* Return the path to dir with /name appended. Buffer must be kfree()'ed. */
join(const char * dir,const char * name)402 static char *join(const char *dir, const char *name)
403 {
404 char *buffer;
405
406 if (strlen(name) == 0)
407 buffer = kasprintf(GFP_NOIO | __GFP_HIGH, "%s", dir);
408 else
409 buffer = kasprintf(GFP_NOIO | __GFP_HIGH, "%s/%s", dir, name);
410 return (!buffer) ? ERR_PTR(-ENOMEM) : buffer;
411 }
412
split(char * strings,unsigned int len,unsigned int * num)413 static char **split(char *strings, unsigned int len, unsigned int *num)
414 {
415 char *p, **ret;
416
417 /* Count the strings. */
418 *num = count_strings(strings, len);
419
420 /* Transfer to one big alloc for easy freeing. */
421 ret = kmalloc(*num * sizeof(char *) + len, GFP_NOIO | __GFP_HIGH);
422 if (!ret) {
423 kfree(strings);
424 return ERR_PTR(-ENOMEM);
425 }
426 memcpy(&ret[*num], strings, len);
427 kfree(strings);
428
429 strings = (char *)&ret[*num];
430 for (p = strings, *num = 0; p < strings + len; p += strlen(p) + 1)
431 ret[(*num)++] = p;
432
433 return ret;
434 }
435
xenbus_directory(struct xenbus_transaction t,const char * dir,const char * node,unsigned int * num)436 char **xenbus_directory(struct xenbus_transaction t,
437 const char *dir, const char *node, unsigned int *num)
438 {
439 char *strings, *path;
440 unsigned int len;
441
442 path = join(dir, node);
443 if (IS_ERR(path))
444 return ERR_CAST(path);
445
446 strings = xs_single(t, XS_DIRECTORY, path, &len);
447 kfree(path);
448 if (IS_ERR(strings))
449 return ERR_CAST(strings);
450
451 return split(strings, len, num);
452 }
453 EXPORT_SYMBOL_GPL(xenbus_directory);
454
455 /* Check if a path exists. Return 1 if it does. */
xenbus_exists(struct xenbus_transaction t,const char * dir,const char * node)456 int xenbus_exists(struct xenbus_transaction t,
457 const char *dir, const char *node)
458 {
459 char **d;
460 int dir_n;
461
462 d = xenbus_directory(t, dir, node, &dir_n);
463 if (IS_ERR(d))
464 return 0;
465 kfree(d);
466 return 1;
467 }
468 EXPORT_SYMBOL_GPL(xenbus_exists);
469
470 /* Get the value of a single file.
471 * Returns a kmalloced value: call free() on it after use.
472 * len indicates length in bytes.
473 */
xenbus_read(struct xenbus_transaction t,const char * dir,const char * node,unsigned int * len)474 void *xenbus_read(struct xenbus_transaction t,
475 const char *dir, const char *node, unsigned int *len)
476 {
477 char *path;
478 void *ret;
479
480 path = join(dir, node);
481 if (IS_ERR(path))
482 return ERR_CAST(path);
483
484 ret = xs_single(t, XS_READ, path, len);
485 kfree(path);
486 return ret;
487 }
488 EXPORT_SYMBOL_GPL(xenbus_read);
489
490 /* Write the value of a single file.
491 * Returns -err on failure.
492 */
xenbus_write(struct xenbus_transaction t,const char * dir,const char * node,const char * string)493 int xenbus_write(struct xenbus_transaction t,
494 const char *dir, const char *node, const char *string)
495 {
496 const char *path;
497 struct kvec iovec[2];
498 int ret;
499
500 path = join(dir, node);
501 if (IS_ERR(path))
502 return PTR_ERR(path);
503
504 iovec[0].iov_base = (void *)path;
505 iovec[0].iov_len = strlen(path) + 1;
506 iovec[1].iov_base = (void *)string;
507 iovec[1].iov_len = strlen(string);
508
509 ret = xs_error(xs_talkv(t, XS_WRITE, iovec, ARRAY_SIZE(iovec), NULL));
510 kfree(path);
511 return ret;
512 }
513 EXPORT_SYMBOL_GPL(xenbus_write);
514
515 /* Create a new directory. */
xenbus_mkdir(struct xenbus_transaction t,const char * dir,const char * node)516 int xenbus_mkdir(struct xenbus_transaction t,
517 const char *dir, const char *node)
518 {
519 char *path;
520 int ret;
521
522 path = join(dir, node);
523 if (IS_ERR(path))
524 return PTR_ERR(path);
525
526 ret = xs_error(xs_single(t, XS_MKDIR, path, NULL));
527 kfree(path);
528 return ret;
529 }
530 EXPORT_SYMBOL_GPL(xenbus_mkdir);
531
532 /* Destroy a file or directory (directories must be empty). */
xenbus_rm(struct xenbus_transaction t,const char * dir,const char * node)533 int xenbus_rm(struct xenbus_transaction t, const char *dir, const char *node)
534 {
535 char *path;
536 int ret;
537
538 path = join(dir, node);
539 if (IS_ERR(path))
540 return PTR_ERR(path);
541
542 ret = xs_error(xs_single(t, XS_RM, path, NULL));
543 kfree(path);
544 return ret;
545 }
546 EXPORT_SYMBOL_GPL(xenbus_rm);
547
548 /* Start a transaction: changes by others will not be seen during this
549 * transaction, and changes will not be visible to others until end.
550 */
xenbus_transaction_start(struct xenbus_transaction * t)551 int xenbus_transaction_start(struct xenbus_transaction *t)
552 {
553 char *id_str;
554
555 id_str = xs_single(XBT_NIL, XS_TRANSACTION_START, "", NULL);
556 if (IS_ERR(id_str))
557 return PTR_ERR(id_str);
558
559 t->id = simple_strtoul(id_str, NULL, 0);
560 kfree(id_str);
561 return 0;
562 }
563 EXPORT_SYMBOL_GPL(xenbus_transaction_start);
564
565 /* End a transaction.
566 * If abandon is true, transaction is discarded instead of committed.
567 */
xenbus_transaction_end(struct xenbus_transaction t,int abort)568 int xenbus_transaction_end(struct xenbus_transaction t, int abort)
569 {
570 char abortstr[2];
571
572 if (abort)
573 strcpy(abortstr, "F");
574 else
575 strcpy(abortstr, "T");
576
577 return xs_error(xs_single(t, XS_TRANSACTION_END, abortstr, NULL));
578 }
579 EXPORT_SYMBOL_GPL(xenbus_transaction_end);
580
581 /* Single read and scanf: returns -errno or num scanned. */
xenbus_scanf(struct xenbus_transaction t,const char * dir,const char * node,const char * fmt,...)582 int xenbus_scanf(struct xenbus_transaction t,
583 const char *dir, const char *node, const char *fmt, ...)
584 {
585 va_list ap;
586 int ret;
587 char *val;
588
589 val = xenbus_read(t, dir, node, NULL);
590 if (IS_ERR(val))
591 return PTR_ERR(val);
592
593 va_start(ap, fmt);
594 ret = vsscanf(val, fmt, ap);
595 va_end(ap);
596 kfree(val);
597 /* Distinctive errno. */
598 if (ret == 0)
599 return -ERANGE;
600 return ret;
601 }
602 EXPORT_SYMBOL_GPL(xenbus_scanf);
603
604 /* Read an (optional) unsigned value. */
xenbus_read_unsigned(const char * dir,const char * node,unsigned int default_val)605 unsigned int xenbus_read_unsigned(const char *dir, const char *node,
606 unsigned int default_val)
607 {
608 unsigned int val;
609 int ret;
610
611 ret = xenbus_scanf(XBT_NIL, dir, node, "%u", &val);
612 if (ret <= 0)
613 val = default_val;
614
615 return val;
616 }
617 EXPORT_SYMBOL_GPL(xenbus_read_unsigned);
618
619 /* Single printf and write: returns -errno or 0. */
xenbus_printf(struct xenbus_transaction t,const char * dir,const char * node,const char * fmt,...)620 int xenbus_printf(struct xenbus_transaction t,
621 const char *dir, const char *node, const char *fmt, ...)
622 {
623 va_list ap;
624 int ret;
625 char *buf;
626
627 va_start(ap, fmt);
628 buf = kvasprintf(GFP_NOIO | __GFP_HIGH, fmt, ap);
629 va_end(ap);
630
631 if (!buf)
632 return -ENOMEM;
633
634 ret = xenbus_write(t, dir, node, buf);
635
636 kfree(buf);
637
638 return ret;
639 }
640 EXPORT_SYMBOL_GPL(xenbus_printf);
641
642 /* Takes tuples of names, scanf-style args, and void **, NULL terminated. */
xenbus_gather(struct xenbus_transaction t,const char * dir,...)643 int xenbus_gather(struct xenbus_transaction t, const char *dir, ...)
644 {
645 va_list ap;
646 const char *name;
647 int ret = 0;
648
649 va_start(ap, dir);
650 while (ret == 0 && (name = va_arg(ap, char *)) != NULL) {
651 const char *fmt = va_arg(ap, char *);
652 void *result = va_arg(ap, void *);
653 char *p;
654
655 p = xenbus_read(t, dir, name, NULL);
656 if (IS_ERR(p)) {
657 ret = PTR_ERR(p);
658 break;
659 }
660 if (fmt) {
661 if (sscanf(p, fmt, result) == 0)
662 ret = -EINVAL;
663 kfree(p);
664 } else
665 *(char **)result = p;
666 }
667 va_end(ap);
668 return ret;
669 }
670 EXPORT_SYMBOL_GPL(xenbus_gather);
671
xs_watch(const char * path,const char * token)672 static int xs_watch(const char *path, const char *token)
673 {
674 struct kvec iov[2];
675
676 iov[0].iov_base = (void *)path;
677 iov[0].iov_len = strlen(path) + 1;
678 iov[1].iov_base = (void *)token;
679 iov[1].iov_len = strlen(token) + 1;
680
681 return xs_error(xs_talkv(XBT_NIL, XS_WATCH, iov,
682 ARRAY_SIZE(iov), NULL));
683 }
684
xs_unwatch(const char * path,const char * token)685 static int xs_unwatch(const char *path, const char *token)
686 {
687 struct kvec iov[2];
688
689 iov[0].iov_base = (char *)path;
690 iov[0].iov_len = strlen(path) + 1;
691 iov[1].iov_base = (char *)token;
692 iov[1].iov_len = strlen(token) + 1;
693
694 return xs_error(xs_talkv(XBT_NIL, XS_UNWATCH, iov,
695 ARRAY_SIZE(iov), NULL));
696 }
697
find_watch(const char * token)698 static struct xenbus_watch *find_watch(const char *token)
699 {
700 struct xenbus_watch *i, *cmp;
701
702 cmp = (void *)simple_strtoul(token, NULL, 16);
703
704 list_for_each_entry(i, &watches, list)
705 if (i == cmp)
706 return i;
707
708 return NULL;
709 }
710
xs_watch_msg(struct xs_watch_event * event)711 int xs_watch_msg(struct xs_watch_event *event)
712 {
713 if (count_strings(event->body, event->len) != 2) {
714 kfree(event);
715 return -EINVAL;
716 }
717 event->path = (const char *)event->body;
718 event->token = (const char *)strchr(event->body, '\0') + 1;
719
720 spin_lock(&watches_lock);
721 event->handle = find_watch(event->token);
722 if (event->handle != NULL &&
723 (!event->handle->will_handle ||
724 event->handle->will_handle(event->handle,
725 event->path, event->token))) {
726 spin_lock(&watch_events_lock);
727 list_add_tail(&event->list, &watch_events);
728 event->handle->nr_pending++;
729 wake_up(&watch_events_waitq);
730 spin_unlock(&watch_events_lock);
731 } else
732 kfree(event);
733 spin_unlock(&watches_lock);
734
735 return 0;
736 }
737
738 /*
739 * Certain older XenBus toolstack cannot handle reading values that are
740 * not populated. Some Xen 3.4 installation are incapable of doing this
741 * so if we are running on anything older than 4 do not attempt to read
742 * control/platform-feature-xs_reset_watches.
743 */
xen_strict_xenbus_quirk(void)744 static bool xen_strict_xenbus_quirk(void)
745 {
746 #ifdef CONFIG_X86
747 uint32_t eax, ebx, ecx, edx, base;
748
749 base = xen_cpuid_base();
750 cpuid(base + 1, &eax, &ebx, &ecx, &edx);
751
752 if ((eax >> 16) < 4)
753 return true;
754 #endif
755 return false;
756
757 }
xs_reset_watches(void)758 static void xs_reset_watches(void)
759 {
760 int err;
761
762 if (!xen_hvm_domain() || xen_initial_domain())
763 return;
764
765 if (xen_strict_xenbus_quirk())
766 return;
767
768 if (!xenbus_read_unsigned("control",
769 "platform-feature-xs_reset_watches", 0))
770 return;
771
772 err = xs_error(xs_single(XBT_NIL, XS_RESET_WATCHES, "", NULL));
773 if (err && err != -EEXIST)
774 pr_warn("xs_reset_watches failed: %d\n", err);
775 }
776
777 /* Register callback to watch this node. */
register_xenbus_watch(struct xenbus_watch * watch)778 int register_xenbus_watch(struct xenbus_watch *watch)
779 {
780 /* Pointer in ascii is the token. */
781 char token[sizeof(watch) * 2 + 1];
782 int err;
783
784 sprintf(token, "%lX", (long)watch);
785
786 watch->nr_pending = 0;
787
788 down_read(&xs_watch_rwsem);
789
790 spin_lock(&watches_lock);
791 BUG_ON(find_watch(token));
792 list_add(&watch->list, &watches);
793 spin_unlock(&watches_lock);
794
795 err = xs_watch(watch->node, token);
796
797 if (err) {
798 spin_lock(&watches_lock);
799 list_del(&watch->list);
800 spin_unlock(&watches_lock);
801 }
802
803 up_read(&xs_watch_rwsem);
804
805 return err;
806 }
807 EXPORT_SYMBOL_GPL(register_xenbus_watch);
808
unregister_xenbus_watch(struct xenbus_watch * watch)809 void unregister_xenbus_watch(struct xenbus_watch *watch)
810 {
811 struct xs_watch_event *event, *tmp;
812 char token[sizeof(watch) * 2 + 1];
813 int err;
814
815 sprintf(token, "%lX", (long)watch);
816
817 down_read(&xs_watch_rwsem);
818
819 spin_lock(&watches_lock);
820 BUG_ON(!find_watch(token));
821 list_del(&watch->list);
822 spin_unlock(&watches_lock);
823
824 err = xs_unwatch(watch->node, token);
825 if (err)
826 pr_warn("Failed to release watch %s: %i\n", watch->node, err);
827
828 up_read(&xs_watch_rwsem);
829
830 /* Make sure there are no callbacks running currently (unless
831 its us) */
832 if (current->pid != xenwatch_pid)
833 mutex_lock(&xenwatch_mutex);
834
835 /* Cancel pending watch events. */
836 spin_lock(&watch_events_lock);
837 if (watch->nr_pending) {
838 list_for_each_entry_safe(event, tmp, &watch_events, list) {
839 if (event->handle != watch)
840 continue;
841 list_del(&event->list);
842 kfree(event);
843 }
844 watch->nr_pending = 0;
845 }
846 spin_unlock(&watch_events_lock);
847
848 if (current->pid != xenwatch_pid)
849 mutex_unlock(&xenwatch_mutex);
850 }
851 EXPORT_SYMBOL_GPL(unregister_xenbus_watch);
852
xs_suspend(void)853 void xs_suspend(void)
854 {
855 xs_suspend_enter();
856
857 mutex_lock(&xs_response_mutex);
858 down_write(&xs_watch_rwsem);
859 }
860
xs_resume(void)861 void xs_resume(void)
862 {
863 struct xenbus_watch *watch;
864 char token[sizeof(watch) * 2 + 1];
865
866 xb_init_comms();
867
868 mutex_unlock(&xs_response_mutex);
869
870 xs_suspend_exit();
871
872 /* No need for watches_lock: the xs_watch_rwsem is sufficient. */
873 list_for_each_entry(watch, &watches, list) {
874 sprintf(token, "%lX", (long)watch);
875 xs_watch(watch->node, token);
876 }
877
878 up_write(&xs_watch_rwsem);
879 }
880
xs_suspend_cancel(void)881 void xs_suspend_cancel(void)
882 {
883 up_write(&xs_watch_rwsem);
884 mutex_unlock(&xs_response_mutex);
885
886 xs_suspend_exit();
887 }
888
xenwatch_thread(void * unused)889 static int xenwatch_thread(void *unused)
890 {
891 struct xs_watch_event *event;
892
893 xenwatch_pid = current->pid;
894
895 for (;;) {
896 wait_event_interruptible(watch_events_waitq,
897 !list_empty(&watch_events));
898
899 if (kthread_should_stop())
900 break;
901
902 mutex_lock(&xenwatch_mutex);
903
904 spin_lock(&watch_events_lock);
905 event = list_first_entry_or_null(&watch_events,
906 struct xs_watch_event, list);
907 if (event) {
908 list_del(&event->list);
909 event->handle->nr_pending--;
910 }
911 spin_unlock(&watch_events_lock);
912
913 if (event) {
914 event->handle->callback(event->handle, event->path,
915 event->token);
916 kfree(event);
917 }
918
919 mutex_unlock(&xenwatch_mutex);
920 }
921
922 return 0;
923 }
924
925 /*
926 * Wake up all threads waiting for a xenstore reply. In case of shutdown all
927 * pending replies will be marked as "aborted" in order to let the waiters
928 * return in spite of xenstore possibly no longer being able to reply. This
929 * will avoid blocking shutdown by a thread waiting for xenstore but being
930 * necessary for shutdown processing to proceed.
931 */
xs_reboot_notify(struct notifier_block * nb,unsigned long code,void * unused)932 static int xs_reboot_notify(struct notifier_block *nb,
933 unsigned long code, void *unused)
934 {
935 struct xb_req_data *req;
936
937 mutex_lock(&xb_write_mutex);
938 list_for_each_entry(req, &xs_reply_list, list)
939 wake_up(&req->wq);
940 list_for_each_entry(req, &xb_write_list, list)
941 wake_up(&req->wq);
942 mutex_unlock(&xb_write_mutex);
943 return NOTIFY_DONE;
944 }
945
946 static struct notifier_block xs_reboot_nb = {
947 .notifier_call = xs_reboot_notify,
948 };
949
xs_init(void)950 int xs_init(void)
951 {
952 int err;
953 struct task_struct *task;
954
955 register_reboot_notifier(&xs_reboot_nb);
956
957 /* Initialize the shared memory rings to talk to xenstored */
958 err = xb_init_comms();
959 if (err)
960 return err;
961
962 task = kthread_run(xenwatch_thread, NULL, "xenwatch");
963 if (IS_ERR(task))
964 return PTR_ERR(task);
965
966 /* shutdown watches for kexec boot */
967 xs_reset_watches();
968
969 return 0;
970 }
971