| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 3 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Licensed under the GPL | 
|  | 5 | */ | 
|  | 6 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <errno.h> | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 8 | #include <string.h> | 
|  | 9 | #include <unistd.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <sys/socket.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <sys/uio.h> | 
|  | 12 | #include <sys/un.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "mconsole.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 |  | 
|  | 15 | static struct mconsole_command commands[] = { | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 16 | /* | 
|  | 17 | * With uts namespaces, uts information becomes process-specific, so | 
| Jeff Dike | 2d77f6f | 2006-07-10 04:45:16 -0700 | [diff] [blame] | 18 | * we need a process context.  If we try handling this in interrupt | 
|  | 19 | * context, we may hit an exiting process without a valid uts | 
|  | 20 | * namespace. | 
|  | 21 | */ | 
|  | 22 | { "version", mconsole_version, MCONSOLE_PROC }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | { "halt", mconsole_halt, MCONSOLE_PROC }, | 
|  | 24 | { "reboot", mconsole_reboot, MCONSOLE_PROC }, | 
|  | 25 | { "config", mconsole_config, MCONSOLE_PROC }, | 
|  | 26 | { "remove", mconsole_remove, MCONSOLE_PROC }, | 
| Paolo 'Blaisorblade' Giarrusso | bd948057 | 2005-09-30 11:59:00 -0700 | [diff] [blame] | 27 | { "sysrq", mconsole_sysrq, MCONSOLE_INTR }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { "help", mconsole_help, MCONSOLE_INTR }, | 
|  | 29 | { "cad", mconsole_cad, MCONSOLE_INTR }, | 
|  | 30 | { "stop", mconsole_stop, MCONSOLE_PROC }, | 
|  | 31 | { "go", mconsole_go, MCONSOLE_INTR }, | 
|  | 32 | { "log", mconsole_log, MCONSOLE_INTR }, | 
|  | 33 | { "proc", mconsole_proc, MCONSOLE_PROC }, | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 34 | { "stack", mconsole_stack, MCONSOLE_INTR }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | }; | 
|  | 36 |  | 
|  | 37 | /* Initialized in mconsole_init, which is an initcall */ | 
|  | 38 | char mconsole_socket_name[256]; | 
|  | 39 |  | 
| WANG Cong | 1605ec0 | 2008-04-28 02:13:56 -0700 | [diff] [blame] | 40 | static int mconsole_reply_v0(struct mc_request *req, char *reply) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 42 | struct iovec iov; | 
|  | 43 | struct msghdr msg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 45 | iov.iov_base = reply; | 
|  | 46 | iov.iov_len = strlen(reply); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 48 | msg.msg_name = &(req->origin); | 
|  | 49 | msg.msg_namelen = req->originlen; | 
|  | 50 | msg.msg_iov = &iov; | 
|  | 51 | msg.msg_iovlen = 1; | 
|  | 52 | msg.msg_control = NULL; | 
|  | 53 | msg.msg_controllen = 0; | 
|  | 54 | msg.msg_flags = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 56 | return sendmsg(req->originating_fd, &msg, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } | 
|  | 58 |  | 
|  | 59 | static struct mconsole_command *mconsole_parse(struct mc_request *req) | 
|  | 60 | { | 
|  | 61 | struct mconsole_command *cmd; | 
|  | 62 | int i; | 
|  | 63 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 64 | for (i = 0; i < ARRAY_SIZE(commands); i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | cmd = &commands[i]; | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 66 | if (!strncmp(req->request.data, cmd->command, | 
|  | 67 | strlen(cmd->command))) { | 
| Jeff Dike | 91b165c | 2006-09-25 23:33:00 -0700 | [diff] [blame] | 68 | return cmd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } | 
|  | 70 | } | 
| Jeff Dike | 91b165c | 2006-09-25 23:33:00 -0700 | [diff] [blame] | 71 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
|  | 74 | #define MIN(a,b) ((a)<(b) ? (a):(b)) | 
|  | 75 |  | 
|  | 76 | #define STRINGX(x) #x | 
|  | 77 | #define STRING(x) STRINGX(x) | 
|  | 78 |  | 
|  | 79 | int mconsole_get_request(int fd, struct mc_request *req) | 
|  | 80 | { | 
|  | 81 | int len; | 
|  | 82 |  | 
|  | 83 | req->originlen = sizeof(req->origin); | 
| Karol Swietlicki | 7b5cc6e | 2008-02-04 22:31:04 -0800 | [diff] [blame] | 84 | req->len = recvfrom(fd, &req->request, sizeof(req->request), 0, | 
|  | 85 | (struct sockaddr *) req->origin, &req->originlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | if (req->len < 0) | 
|  | 87 | return 0; | 
|  | 88 |  | 
|  | 89 | req->originating_fd = fd; | 
|  | 90 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 91 | if (req->request.magic != MCONSOLE_MAGIC) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* Unversioned request */ | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 93 | len = MIN(sizeof(req->request.data) - 1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | strlen((char *) &req->request)); | 
|  | 95 | memmove(req->request.data, &req->request, len); | 
|  | 96 | req->request.data[len] = '\0'; | 
|  | 97 |  | 
|  | 98 | req->request.magic = MCONSOLE_MAGIC; | 
|  | 99 | req->request.version = 0; | 
|  | 100 | req->request.len = len; | 
|  | 101 |  | 
|  | 102 | mconsole_reply_v0(req, "ERR Version 0 mconsole clients are " | 
|  | 103 | "not supported by this driver"); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 104 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } | 
|  | 106 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 107 | if (req->request.len >= MCONSOLE_MAX_DATA) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | mconsole_reply(req, "Request too large", 1, 0); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 109 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 111 | if (req->request.version != MCONSOLE_VERSION) { | 
|  | 112 | mconsole_reply(req, "This driver only supports version " | 
|  | 113 | STRING(MCONSOLE_VERSION) " clients", 1, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | req->request.data[req->request.len] = '\0'; | 
|  | 117 | req->cmd = mconsole_parse(req); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 118 | if (req->cmd == NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | mconsole_reply(req, "Unknown command", 1, 0); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 120 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } | 
|  | 122 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 123 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } | 
|  | 125 |  | 
| Jeff Dike | 7b033e1 | 2006-01-06 00:19:03 -0800 | [diff] [blame] | 126 | int mconsole_reply_len(struct mc_request *req, const char *str, int total, | 
|  | 127 | int err, int more) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 129 | /* | 
|  | 130 | * XXX This is a stack consumption problem.  It'd be nice to | 
| Jeff Dike | f92afe5 | 2006-09-29 01:58:52 -0700 | [diff] [blame] | 131 | * make it global and serialize access to it, but there are a | 
|  | 132 | * ton of callers to this function. | 
|  | 133 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct mconsole_reply reply; | 
| Jeff Dike | 7b033e1 | 2006-01-06 00:19:03 -0800 | [diff] [blame] | 135 | int len, n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | do { | 
|  | 138 | reply.err = err; | 
|  | 139 |  | 
|  | 140 | /* err can only be true on the first packet */ | 
|  | 141 | err = 0; | 
|  | 142 |  | 
|  | 143 | len = MIN(total, MCONSOLE_MAX_DATA - 1); | 
|  | 144 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 145 | if (len == total) reply.more = more; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | else reply.more = 1; | 
|  | 147 |  | 
|  | 148 | memcpy(reply.data, str, len); | 
|  | 149 | reply.data[len] = '\0'; | 
|  | 150 | total -= len; | 
|  | 151 | str += len; | 
|  | 152 | reply.len = len + 1; | 
|  | 153 |  | 
|  | 154 | len = sizeof(reply) + reply.len - sizeof(reply.data); | 
|  | 155 |  | 
|  | 156 | n = sendto(req->originating_fd, &reply, len, 0, | 
|  | 157 | (struct sockaddr *) req->origin, req->originlen); | 
|  | 158 |  | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 159 | if (n < 0) | 
|  | 160 | return -errno; | 
|  | 161 | } while (total > 0); | 
|  | 162 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } | 
|  | 164 |  | 
| Jeff Dike | 7b033e1 | 2006-01-06 00:19:03 -0800 | [diff] [blame] | 165 | int mconsole_reply(struct mc_request *req, const char *str, int err, int more) | 
|  | 166 | { | 
|  | 167 | return mconsole_reply_len(req, str, strlen(str), err, more); | 
|  | 168 | } | 
|  | 169 |  | 
|  | 170 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | int mconsole_unlink_socket(void) | 
|  | 172 | { | 
|  | 173 | unlink(mconsole_socket_name); | 
|  | 174 | return 0; | 
|  | 175 | } | 
|  | 176 |  | 
|  | 177 | static int notify_sock = -1; | 
|  | 178 |  | 
|  | 179 | int mconsole_notify(char *sock_name, int type, const void *data, int len) | 
|  | 180 | { | 
|  | 181 | struct sockaddr_un target; | 
|  | 182 | struct mconsole_notify packet; | 
|  | 183 | int n, err = 0; | 
|  | 184 |  | 
|  | 185 | lock_notify(); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 186 | if (notify_sock < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | notify_sock = socket(PF_UNIX, SOCK_DGRAM, 0); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 188 | if (notify_sock < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | err = -errno; | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 190 | printk(UM_KERN_ERR "mconsole_notify - socket failed, " | 
|  | 191 | "errno = %d\n", errno); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } | 
|  | 193 | } | 
|  | 194 | unlock_notify(); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 195 |  | 
|  | 196 | if (err) | 
|  | 197 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 |  | 
|  | 199 | target.sun_family = AF_UNIX; | 
|  | 200 | strcpy(target.sun_path, sock_name); | 
|  | 201 |  | 
|  | 202 | packet.magic = MCONSOLE_MAGIC; | 
|  | 203 | packet.version = MCONSOLE_VERSION; | 
|  | 204 | packet.type = type; | 
|  | 205 | len = (len > sizeof(packet.data)) ? sizeof(packet.data) : len; | 
|  | 206 | packet.len = len; | 
|  | 207 | memcpy(packet.data, data, len); | 
|  | 208 |  | 
|  | 209 | err = 0; | 
|  | 210 | len = sizeof(packet) + packet.len - sizeof(packet.data); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 211 | n = sendto(notify_sock, &packet, len, 0, (struct sockaddr *) &target, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | sizeof(target)); | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 213 | if (n < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | err = -errno; | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 215 | printk(UM_KERN_ERR "mconsole_notify - sendto failed, " | 
|  | 216 | "errno = %d\n", errno); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } | 
| Jeff Dike | cb8fa61 | 2007-10-16 01:27:34 -0700 | [diff] [blame] | 218 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |