uml: mconsole mutex conversion
[safe/jmp/linux-2.6] / arch / um / drivers / mconsole_kern.c
1 /*
2  * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org)
3  * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4  * Licensed under the GPL
5  */
6
7 #include "linux/console.h"
8 #include "linux/ctype.h"
9 #include "linux/interrupt.h"
10 #include "linux/list.h"
11 #include "linux/mm.h"
12 #include "linux/module.h"
13 #include "linux/notifier.h"
14 #include "linux/reboot.h"
15 #include "linux/proc_fs.h"
16 #include "linux/slab.h"
17 #include "linux/syscalls.h"
18 #include "linux/utsname.h"
19 #include "linux/workqueue.h"
20 #include "linux/mutex.h"
21 #include "asm/uaccess.h"
22 #include "init.h"
23 #include "irq_kern.h"
24 #include "irq_user.h"
25 #include "kern_util.h"
26 #include "mconsole.h"
27 #include "mconsole_kern.h"
28 #include "os.h"
29
30 static int do_unlink_socket(struct notifier_block *notifier,
31                             unsigned long what, void *data)
32 {
33         return mconsole_unlink_socket();
34 }
35
36
37 static struct notifier_block reboot_notifier = {
38         .notifier_call          = do_unlink_socket,
39         .priority               = 0,
40 };
41
42 /* Safe without explicit locking for now.  Tasklets provide their own
43  * locking, and the interrupt handler is safe because it can't interrupt
44  * itself and it can only happen on CPU 0.
45  */
46
47 static LIST_HEAD(mc_requests);
48
49 static void mc_work_proc(struct work_struct *unused)
50 {
51         struct mconsole_entry *req;
52         unsigned long flags;
53
54         while (!list_empty(&mc_requests)) {
55                 local_irq_save(flags);
56                 req = list_entry(mc_requests.next, struct mconsole_entry, list);
57                 list_del(&req->list);
58                 local_irq_restore(flags);
59                 req->request.cmd->handler(&req->request);
60                 kfree(req);
61         }
62 }
63
64 static DECLARE_WORK(mconsole_work, mc_work_proc);
65
66 static irqreturn_t mconsole_interrupt(int irq, void *dev_id)
67 {
68         /* long to avoid size mismatch warnings from gcc */
69         long fd;
70         struct mconsole_entry *new;
71         static struct mc_request req;   /* that's OK */
72
73         fd = (long) dev_id;
74         while (mconsole_get_request(fd, &req)) {
75                 if (req.cmd->context == MCONSOLE_INTR)
76                         (*req.cmd->handler)(&req);
77                 else {
78                         new = kmalloc(sizeof(*new), GFP_NOWAIT);
79                         if (new == NULL)
80                                 mconsole_reply(&req, "Out of memory", 1, 0);
81                         else {
82                                 new->request = req;
83                                 new->request.regs = get_irq_regs()->regs;
84                                 list_add(&new->list, &mc_requests);
85                         }
86                 }
87         }
88         if (!list_empty(&mc_requests))
89                 schedule_work(&mconsole_work);
90         reactivate_fd(fd, MCONSOLE_IRQ);
91         return IRQ_HANDLED;
92 }
93
94 void mconsole_version(struct mc_request *req)
95 {
96         char version[256];
97
98         sprintf(version, "%s %s %s %s %s", utsname()->sysname,
99                 utsname()->nodename, utsname()->release, utsname()->version,
100                 utsname()->machine);
101         mconsole_reply(req, version, 0, 0);
102 }
103
104 void mconsole_log(struct mc_request *req)
105 {
106         int len;
107         char *ptr = req->request.data;
108
109         ptr += strlen("log ");
110
111         len = req->len - (ptr - req->request.data);
112         printk(KERN_WARNING "%.*s", len, ptr);
113         mconsole_reply(req, "", 0, 0);
114 }
115
116 /* This is a more convoluted version of mconsole_proc, which has some stability
117  * problems; however, we need it fixed, because it is expected that UML users
118  * mount HPPFS instead of procfs on /proc. And we want mconsole_proc to still
119  * show the real procfs content, not the ones from hppfs.*/
120 #if 0
121 void mconsole_proc(struct mc_request *req)
122 {
123         struct nameidata nd;
124         struct file_system_type *proc;
125         struct super_block *super;
126         struct file *file;
127         int n, err;
128         char *ptr = req->request.data, *buf;
129
130         ptr += strlen("proc");
131         while (isspace(*ptr)) ptr++;
132
133         proc = get_fs_type("proc");
134         if (proc == NULL) {
135                 mconsole_reply(req, "procfs not registered", 1, 0);
136                 goto out;
137         }
138
139         super = (*proc->get_sb)(proc, 0, NULL, NULL);
140         put_filesystem(proc);
141         if (super == NULL) {
142                 mconsole_reply(req, "Failed to get procfs superblock", 1, 0);
143                 goto out;
144         }
145         up_write(&super->s_umount);
146
147         nd.dentry = super->s_root;
148         nd.mnt = NULL;
149         nd.flags = O_RDONLY + 1;
150         nd.last_type = LAST_ROOT;
151
152         /* START: it was experienced that the stability problems are closed
153          * if commenting out these two calls + the below read cycle. To
154          * make UML crash again, it was enough to readd either one.*/
155         err = link_path_walk(ptr, &nd);
156         if (err) {
157                 mconsole_reply(req, "Failed to look up file", 1, 0);
158                 goto out_kill;
159         }
160
161         file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
162         if (IS_ERR(file)) {
163                 mconsole_reply(req, "Failed to open file", 1, 0);
164                 goto out_kill;
165         }
166         /*END*/
167
168         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
169         if (buf == NULL) {
170                 mconsole_reply(req, "Failed to allocate buffer", 1, 0);
171                 goto out_fput;
172         }
173
174         if ((file->f_op != NULL) && (file->f_op->read != NULL)) {
175                 do {
176                         n = (*file->f_op->read)(file, buf, PAGE_SIZE - 1,
177                                                 &file->f_pos);
178                         if (n >= 0) {
179                                 buf[n] = '\0';
180                                 mconsole_reply(req, buf, 0, (n > 0));
181                         }
182                         else {
183                                 mconsole_reply(req, "Read of file failed",
184                                                1, 0);
185                                 goto out_free;
186                         }
187                 } while (n > 0);
188         }
189         else mconsole_reply(req, "", 0, 0);
190
191  out_free:
192         kfree(buf);
193  out_fput:
194         fput(file);
195  out_kill:
196         deactivate_super(super);
197  out: ;
198 }
199 #endif
200
201 void mconsole_proc(struct mc_request *req)
202 {
203         char path[64];
204         char *buf;
205         int len;
206         int fd;
207         int first_chunk = 1;
208         char *ptr = req->request.data;
209
210         ptr += strlen("proc");
211         while (isspace(*ptr))
212                 ptr++;
213         snprintf(path, sizeof(path), "/proc/%s", ptr);
214
215         fd = sys_open(path, 0, 0);
216         if (fd < 0) {
217                 mconsole_reply(req, "Failed to open file", 1, 0);
218                 printk(KERN_ERR "open %s: %d\n",path,fd);
219                 goto out;
220         }
221
222         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
223         if (buf == NULL) {
224                 mconsole_reply(req, "Failed to allocate buffer", 1, 0);
225                 goto out_close;
226         }
227
228         for (;;) {
229                 len = sys_read(fd, buf, PAGE_SIZE-1);
230                 if (len < 0) {
231                         mconsole_reply(req, "Read of file failed", 1, 0);
232                         goto out_free;
233                 }
234                 /* Begin the file content on his own line. */
235                 if (first_chunk) {
236                         mconsole_reply(req, "\n", 0, 1);
237                         first_chunk = 0;
238                 }
239                 if (len == PAGE_SIZE-1) {
240                         buf[len] = '\0';
241                         mconsole_reply(req, buf, 0, 1);
242                 } else {
243                         buf[len] = '\0';
244                         mconsole_reply(req, buf, 0, 0);
245                         break;
246                 }
247         }
248
249  out_free:
250         kfree(buf);
251  out_close:
252         sys_close(fd);
253  out:
254         /* nothing */;
255 }
256
257 #define UML_MCONSOLE_HELPTEXT \
258 "Commands: \n\
259     version - Get kernel version \n\
260     help - Print this message \n\
261     halt - Halt UML \n\
262     reboot - Reboot UML \n\
263     config <dev>=<config> - Add a new device to UML;  \n\
264         same syntax as command line \n\
265     config <dev> - Query the configuration of a device \n\
266     remove <dev> - Remove a device from UML \n\
267     sysrq <letter> - Performs the SysRq action controlled by the letter \n\
268     cad - invoke the Ctrl-Alt-Del handler \n\
269     stop - pause the UML; it will do nothing until it receives a 'go' \n\
270     go - continue the UML after a 'stop' \n\
271     log <string> - make UML enter <string> into the kernel log\n\
272     proc <file> - returns the contents of the UML's /proc/<file>\n\
273     stack <pid> - returns the stack of the specified pid\n\
274 "
275
276 void mconsole_help(struct mc_request *req)
277 {
278         mconsole_reply(req, UML_MCONSOLE_HELPTEXT, 0, 0);
279 }
280
281 void mconsole_halt(struct mc_request *req)
282 {
283         mconsole_reply(req, "", 0, 0);
284         machine_halt();
285 }
286
287 void mconsole_reboot(struct mc_request *req)
288 {
289         mconsole_reply(req, "", 0, 0);
290         machine_restart(NULL);
291 }
292
293 void mconsole_cad(struct mc_request *req)
294 {
295         mconsole_reply(req, "", 0, 0);
296         ctrl_alt_del();
297 }
298
299 void mconsole_go(struct mc_request *req)
300 {
301         mconsole_reply(req, "Not stopped", 1, 0);
302 }
303
304 void mconsole_stop(struct mc_request *req)
305 {
306         deactivate_fd(req->originating_fd, MCONSOLE_IRQ);
307         os_set_fd_block(req->originating_fd, 1);
308         mconsole_reply(req, "stopped", 0, 0);
309         for (;;) {
310                 if (!mconsole_get_request(req->originating_fd, req))
311                         continue;
312                 if (req->cmd->handler == mconsole_go)
313                         break;
314                 if (req->cmd->handler == mconsole_stop) {
315                         mconsole_reply(req, "Already stopped", 1, 0);
316                         continue;
317                 }
318                 if (req->cmd->handler == mconsole_sysrq) {
319                         struct pt_regs *old_regs;
320                         old_regs = set_irq_regs((struct pt_regs *)&req->regs);
321                         mconsole_sysrq(req);
322                         set_irq_regs(old_regs);
323                         continue;
324                 }
325                 (*req->cmd->handler)(req);
326         }
327         os_set_fd_block(req->originating_fd, 0);
328         reactivate_fd(req->originating_fd, MCONSOLE_IRQ);
329         mconsole_reply(req, "", 0, 0);
330 }
331
332 static DEFINE_SPINLOCK(mc_devices_lock);
333 static LIST_HEAD(mconsole_devices);
334
335 void mconsole_register_dev(struct mc_device *new)
336 {
337         spin_lock(&mc_devices_lock);
338         BUG_ON(!list_empty(&new->list));
339         list_add(&new->list, &mconsole_devices);
340         spin_unlock(&mc_devices_lock);
341 }
342
343 static struct mc_device *mconsole_find_dev(char *name)
344 {
345         struct list_head *ele;
346         struct mc_device *dev;
347
348         list_for_each(ele, &mconsole_devices) {
349                 dev = list_entry(ele, struct mc_device, list);
350                 if (!strncmp(name, dev->name, strlen(dev->name)))
351                         return dev;
352         }
353         return NULL;
354 }
355
356 #define UNPLUGGED_PER_PAGE \
357         ((PAGE_SIZE - sizeof(struct list_head)) / sizeof(unsigned long))
358
359 struct unplugged_pages {
360         struct list_head list;
361         void *pages[UNPLUGGED_PER_PAGE];
362 };
363
364 static DEFINE_MUTEX(plug_mem_mutex);
365 static unsigned long long unplugged_pages_count = 0;
366 static LIST_HEAD(unplugged_pages);
367 static int unplug_index = UNPLUGGED_PER_PAGE;
368
369 static int mem_config(char *str, char **error_out)
370 {
371         unsigned long long diff;
372         int err = -EINVAL, i, add;
373         char *ret;
374
375         if (str[0] != '=') {
376                 *error_out = "Expected '=' after 'mem'";
377                 goto out;
378         }
379
380         str++;
381         if (str[0] == '-')
382                 add = 0;
383         else if (str[0] == '+') {
384                 add = 1;
385         }
386         else {
387                 *error_out = "Expected increment to start with '-' or '+'";
388                 goto out;
389         }
390
391         str++;
392         diff = memparse(str, &ret);
393         if (*ret != '\0') {
394                 *error_out = "Failed to parse memory increment";
395                 goto out;
396         }
397
398         diff /= PAGE_SIZE;
399
400         mutex_lock(&plug_mem_mutex);
401         for (i = 0; i < diff; i++) {
402                 struct unplugged_pages *unplugged;
403                 void *addr;
404
405                 if (add) {
406                         if (list_empty(&unplugged_pages))
407                                 break;
408
409                         unplugged = list_entry(unplugged_pages.next,
410                                                struct unplugged_pages, list);
411                         if (unplug_index > 0)
412                                 addr = unplugged->pages[--unplug_index];
413                         else {
414                                 list_del(&unplugged->list);
415                                 addr = unplugged;
416                                 unplug_index = UNPLUGGED_PER_PAGE;
417                         }
418
419                         free_page((unsigned long) addr);
420                         unplugged_pages_count--;
421                 }
422                 else {
423                         struct page *page;
424
425                         page = alloc_page(GFP_ATOMIC);
426                         if (page == NULL)
427                                 break;
428
429                         unplugged = page_address(page);
430                         if (unplug_index == UNPLUGGED_PER_PAGE) {
431                                 list_add(&unplugged->list, &unplugged_pages);
432                                 unplug_index = 0;
433                         }
434                         else {
435                                 struct list_head *entry = unplugged_pages.next;
436                                 addr = unplugged;
437
438                                 unplugged = list_entry(entry,
439                                                        struct unplugged_pages,
440                                                        list);
441                                 err = os_drop_memory(addr, PAGE_SIZE);
442                                 if (err) {
443                                         printk(KERN_ERR "Failed to release "
444                                                "memory - errno = %d\n", err);
445                                         *error_out = "Failed to release memory";
446                                         goto out_unlock;
447                                 }
448                                 unplugged->pages[unplug_index++] = addr;
449                         }
450
451                         unplugged_pages_count++;
452                 }
453         }
454
455         err = 0;
456 out_unlock:
457         mutex_unlock(&plug_mem_mutex);
458 out:
459         return err;
460 }
461
462 static int mem_get_config(char *name, char *str, int size, char **error_out)
463 {
464         char buf[sizeof("18446744073709551615")];
465         int len = 0;
466
467         sprintf(buf, "%ld", uml_physmem);
468         CONFIG_CHUNK(str, size, len, buf, 1);
469
470         return len;
471 }
472
473 static int mem_id(char **str, int *start_out, int *end_out)
474 {
475         *start_out = 0;
476         *end_out = 0;
477
478         return 0;
479 }
480
481 static int mem_remove(int n, char **error_out)
482 {
483         *error_out = "Memory doesn't support the remove operation";
484         return -EBUSY;
485 }
486
487 static struct mc_device mem_mc = {
488         .list           = LIST_HEAD_INIT(mem_mc.list),
489         .name           = "mem",
490         .config         = mem_config,
491         .get_config     = mem_get_config,
492         .id             = mem_id,
493         .remove         = mem_remove,
494 };
495
496 static int __init mem_mc_init(void)
497 {
498         if (can_drop_memory())
499                 mconsole_register_dev(&mem_mc);
500         else printk(KERN_ERR "Can't release memory to the host - memory "
501                     "hotplug won't be supported\n");
502         return 0;
503 }
504
505 __initcall(mem_mc_init);
506
507 #define CONFIG_BUF_SIZE 64
508
509 static void mconsole_get_config(int (*get_config)(char *, char *, int,
510                                                   char **),
511                                 struct mc_request *req, char *name)
512 {
513         char default_buf[CONFIG_BUF_SIZE], *error, *buf;
514         int n, size;
515
516         if (get_config == NULL) {
517                 mconsole_reply(req, "No get_config routine defined", 1, 0);
518                 return;
519         }
520
521         error = NULL;
522         size = ARRAY_SIZE(default_buf);
523         buf = default_buf;
524
525         while (1) {
526                 n = (*get_config)(name, buf, size, &error);
527                 if (error != NULL) {
528                         mconsole_reply(req, error, 1, 0);
529                         goto out;
530                 }
531
532                 if (n <= size) {
533                         mconsole_reply(req, buf, 0, 0);
534                         goto out;
535                 }
536
537                 if (buf != default_buf)
538                         kfree(buf);
539
540                 size = n;
541                 buf = kmalloc(size, GFP_KERNEL);
542                 if (buf == NULL) {
543                         mconsole_reply(req, "Failed to allocate buffer", 1, 0);
544                         return;
545                 }
546         }
547  out:
548         if (buf != default_buf)
549                 kfree(buf);
550 }
551
552 void mconsole_config(struct mc_request *req)
553 {
554         struct mc_device *dev;
555         char *ptr = req->request.data, *name, *error_string = "";
556         int err;
557
558         ptr += strlen("config");
559         while (isspace(*ptr))
560                 ptr++;
561         dev = mconsole_find_dev(ptr);
562         if (dev == NULL) {
563                 mconsole_reply(req, "Bad configuration option", 1, 0);
564                 return;
565         }
566
567         name = &ptr[strlen(dev->name)];
568         ptr = name;
569         while ((*ptr != '=') && (*ptr != '\0'))
570                 ptr++;
571
572         if (*ptr == '=') {
573                 err = (*dev->config)(name, &error_string);
574                 mconsole_reply(req, error_string, err, 0);
575         }
576         else mconsole_get_config(dev->get_config, req, name);
577 }
578
579 void mconsole_remove(struct mc_request *req)
580 {
581         struct mc_device *dev;
582         char *ptr = req->request.data, *err_msg = "";
583         char error[256];
584         int err, start, end, n;
585
586         ptr += strlen("remove");
587         while (isspace(*ptr)) ptr++;
588         dev = mconsole_find_dev(ptr);
589         if (dev == NULL) {
590                 mconsole_reply(req, "Bad remove option", 1, 0);
591                 return;
592         }
593
594         ptr = &ptr[strlen(dev->name)];
595
596         err = 1;
597         n = (*dev->id)(&ptr, &start, &end);
598         if (n < 0) {
599                 err_msg = "Couldn't parse device number";
600                 goto out;
601         }
602         else if ((n < start) || (n > end)) {
603                 sprintf(error, "Invalid device number - must be between "
604                         "%d and %d", start, end);
605                 err_msg = error;
606                 goto out;
607         }
608
609         err_msg = NULL;
610         err = (*dev->remove)(n, &err_msg);
611         switch(err) {
612         case 0:
613                 err_msg = "";
614                 break;
615         case -ENODEV:
616                 if (err_msg == NULL)
617                         err_msg = "Device doesn't exist";
618                 break;
619         case -EBUSY:
620                 if (err_msg == NULL)
621                         err_msg = "Device is currently open";
622                 break;
623         default:
624                 break;
625         }
626 out:
627         mconsole_reply(req, err_msg, err, 0);
628 }
629
630 struct mconsole_output {
631         struct list_head list;
632         struct mc_request *req;
633 };
634
635 static DEFINE_SPINLOCK(client_lock);
636 static LIST_HEAD(clients);
637 static char console_buf[MCONSOLE_MAX_DATA];
638
639 static void console_write(struct console *console, const char *string,
640                           unsigned int len)
641 {
642         struct list_head *ele;
643         int n;
644
645         if (list_empty(&clients))
646                 return;
647
648         while (len > 0) {
649                 n = min((size_t) len, ARRAY_SIZE(console_buf));
650                 strncpy(console_buf, string, n);
651                 string += n;
652                 len -= n;
653
654                 list_for_each(ele, &clients) {
655                         struct mconsole_output *entry;
656
657                         entry = list_entry(ele, struct mconsole_output, list);
658                         mconsole_reply_len(entry->req, console_buf, n, 0, 1);
659                 }
660         }
661 }
662
663 static struct console mc_console = { .name      = "mc",
664                                      .write     = console_write,
665                                      .flags     = CON_ENABLED,
666                                      .index     = -1 };
667
668 static int mc_add_console(void)
669 {
670         register_console(&mc_console);
671         return 0;
672 }
673
674 late_initcall(mc_add_console);
675
676 static void with_console(struct mc_request *req, void (*proc)(void *),
677                          void *arg)
678 {
679         struct mconsole_output entry;
680         unsigned long flags;
681
682         entry.req = req;
683         spin_lock_irqsave(&client_lock, flags);
684         list_add(&entry.list, &clients);
685         spin_unlock_irqrestore(&client_lock, flags);
686
687         (*proc)(arg);
688
689         mconsole_reply_len(req, "", 0, 0, 0);
690
691         spin_lock_irqsave(&client_lock, flags);
692         list_del(&entry.list);
693         spin_unlock_irqrestore(&client_lock, flags);
694 }
695
696 #ifdef CONFIG_MAGIC_SYSRQ
697
698 #include <linux/sysrq.h>
699
700 static void sysrq_proc(void *arg)
701 {
702         char *op = arg;
703         handle_sysrq(*op, NULL);
704 }
705
706 void mconsole_sysrq(struct mc_request *req)
707 {
708         char *ptr = req->request.data;
709
710         ptr += strlen("sysrq");
711         while (isspace(*ptr)) ptr++;
712
713         /*
714          * With 'b', the system will shut down without a chance to reply,
715          * so in this case, we reply first.
716          */
717         if (*ptr == 'b')
718                 mconsole_reply(req, "", 0, 0);
719
720         with_console(req, sysrq_proc, ptr);
721 }
722 #else
723 void mconsole_sysrq(struct mc_request *req)
724 {
725         mconsole_reply(req, "Sysrq not compiled in", 1, 0);
726 }
727 #endif
728
729 static void stack_proc(void *arg)
730 {
731         struct task_struct *from = current, *to = arg;
732
733         to->thread.saved_task = from;
734         switch_to(from, to, from);
735 }
736
737 /*
738  * Mconsole stack trace
739  *  Added by Allan Graves, Jeff Dike
740  *  Dumps a stacks registers to the linux console.
741  *  Usage stack <pid>.
742  */
743 void mconsole_stack(struct mc_request *req)
744 {
745         char *ptr = req->request.data;
746         int pid_requested= -1;
747         struct task_struct *to = NULL;
748
749         /*
750          * Would be nice:
751          * 1) Send showregs output to mconsole.
752          * 2) Add a way to stack dump all pids.
753          */
754
755         ptr += strlen("stack");
756         while (isspace(*ptr))
757                 ptr++;
758
759         /*
760          * Should really check for multiple pids or reject bad args here
761          */
762         /* What do the arguments in mconsole_reply mean? */
763         if (sscanf(ptr, "%d", &pid_requested) == 0) {
764                 mconsole_reply(req, "Please specify a pid", 1, 0);
765                 return;
766         }
767
768         to = find_task_by_pid(pid_requested);
769         if ((to == NULL) || (pid_requested == 0)) {
770                 mconsole_reply(req, "Couldn't find that pid", 1, 0);
771                 return;
772         }
773         with_console(req, stack_proc, to);
774 }
775
776 /*
777  * Changed by mconsole_setup, which is __setup, and called before SMP is
778  * active.
779  */
780 static char *notify_socket = NULL;
781
782 static int __init mconsole_init(void)
783 {
784         /* long to avoid size mismatch warnings from gcc */
785         long sock;
786         int err;
787         char file[256];
788
789         if (umid_file_name("mconsole", file, sizeof(file)))
790                 return -1;
791         snprintf(mconsole_socket_name, sizeof(file), "%s", file);
792
793         sock = os_create_unix_socket(file, sizeof(file), 1);
794         if (sock < 0) {
795                 printk(KERN_ERR "Failed to initialize management console\n");
796                 return 1;
797         }
798         if (os_set_fd_block(sock, 0))
799                 goto out;
800
801         register_reboot_notifier(&reboot_notifier);
802
803         err = um_request_irq(MCONSOLE_IRQ, sock, IRQ_READ, mconsole_interrupt,
804                              IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
805                              "mconsole", (void *)sock);
806         if (err) {
807                 printk(KERN_ERR "Failed to get IRQ for management console\n");
808                 goto out;
809         }
810
811         if (notify_socket != NULL) {
812                 notify_socket = kstrdup(notify_socket, GFP_KERNEL);
813                 if (notify_socket != NULL)
814                         mconsole_notify(notify_socket, MCONSOLE_SOCKET,
815                                         mconsole_socket_name,
816                                         strlen(mconsole_socket_name) + 1);
817                 else printk(KERN_ERR "mconsole_setup failed to strdup "
818                             "string\n");
819         }
820
821         printk(KERN_INFO "mconsole (version %d) initialized on %s\n",
822                MCONSOLE_VERSION, mconsole_socket_name);
823         return 0;
824
825  out:
826         os_close_file(sock);
827         return 1;
828 }
829
830 __initcall(mconsole_init);
831
832 static int write_proc_mconsole(struct file *file, const char __user *buffer,
833                                unsigned long count, void *data)
834 {
835         char *buf;
836
837         buf = kmalloc(count + 1, GFP_KERNEL);
838         if (buf == NULL)
839                 return -ENOMEM;
840
841         if (copy_from_user(buf, buffer, count)) {
842                 count = -EFAULT;
843                 goto out;
844         }
845
846         buf[count] = '\0';
847
848         mconsole_notify(notify_socket, MCONSOLE_USER_NOTIFY, buf, count);
849  out:
850         kfree(buf);
851         return count;
852 }
853
854 static int create_proc_mconsole(void)
855 {
856         struct proc_dir_entry *ent;
857
858         if (notify_socket == NULL)
859                 return 0;
860
861         ent = create_proc_entry("mconsole", S_IFREG | 0200, NULL);
862         if (ent == NULL) {
863                 printk(KERN_INFO "create_proc_mconsole : create_proc_entry "
864                        "failed\n");
865                 return 0;
866         }
867
868         ent->read_proc = NULL;
869         ent->write_proc = write_proc_mconsole;
870         return 0;
871 }
872
873 static DEFINE_SPINLOCK(notify_spinlock);
874
875 void lock_notify(void)
876 {
877         spin_lock(&notify_spinlock);
878 }
879
880 void unlock_notify(void)
881 {
882         spin_unlock(&notify_spinlock);
883 }
884
885 __initcall(create_proc_mconsole);
886
887 #define NOTIFY "notify:"
888
889 static int mconsole_setup(char *str)
890 {
891         if (!strncmp(str, NOTIFY, strlen(NOTIFY))) {
892                 str += strlen(NOTIFY);
893                 notify_socket = str;
894         }
895         else printk(KERN_ERR "mconsole_setup : Unknown option - '%s'\n", str);
896         return 1;
897 }
898
899 __setup("mconsole=", mconsole_setup);
900
901 __uml_help(mconsole_setup,
902 "mconsole=notify:<socket>\n"
903 "    Requests that the mconsole driver send a message to the named Unix\n"
904 "    socket containing the name of the mconsole socket.  This also serves\n"
905 "    to notify outside processes when UML has booted far enough to respond\n"
906 "    to mconsole requests.\n\n"
907 );
908
909 static int notify_panic(struct notifier_block *self, unsigned long unused1,
910                         void *ptr)
911 {
912         char *message = ptr;
913
914         if (notify_socket == NULL)
915                 return 0;
916
917         mconsole_notify(notify_socket, MCONSOLE_PANIC, message,
918                         strlen(message) + 1);
919         return 0;
920 }
921
922 static struct notifier_block panic_exit_notifier = {
923         .notifier_call          = notify_panic,
924         .next                   = NULL,
925         .priority               = 1
926 };
927
928 static int add_notifier(void)
929 {
930         atomic_notifier_chain_register(&panic_notifier_list,
931                         &panic_exit_notifier);
932         return 0;
933 }
934
935 __initcall(add_notifier);
936
937 char *mconsole_notify_socket(void)
938 {
939         return notify_socket;
940 }
941
942 EXPORT_SYMBOL(mconsole_notify_socket);