Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | /* * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) * Licensed under the GPL */ #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <signal.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/un.h> #include <unistd.h> #include "user.h" #include "mconsole.h" #include "umid.h" static struct mconsole_command commands[] = { { "version", mconsole_version, 1 }, { "halt", mconsole_halt, 0 }, { "reboot", mconsole_reboot, 0 }, { "config", mconsole_config, 0 }, { "remove", mconsole_remove, 0 }, { "sysrq", mconsole_sysrq, 1 }, { "help", mconsole_help, 1 }, { "cad", mconsole_cad, 1 }, { "stop", mconsole_stop, 0 }, { "go", mconsole_go, 1 }, }; char mconsole_socket_name[256]; int mconsole_reply_v0(struct mc_request *req, char *reply) { struct iovec iov; struct msghdr msg; iov.iov_base = reply; iov.iov_len = strlen(reply); msg.msg_name = &(req->origin); msg.msg_namelen = req->originlen; msg.msg_iov = &iov; msg.msg_iovlen = 1; msg.msg_control = NULL; msg.msg_controllen = 0; msg.msg_flags = 0; return sendmsg(req->originating_fd, &msg, 0); } static struct mconsole_command *mconsole_parse(struct mc_request *req) { struct mconsole_command *cmd; int i; for(i=0;i<sizeof(commands)/sizeof(commands[0]);i++){ cmd = &commands[i]; if(!strncmp(req->request.data, cmd->command, strlen(cmd->command))){ return(cmd); } } return(NULL); } #define MIN(a,b) ((a)<(b) ? (a):(b)) #define STRINGX(x) #x #define STRING(x) STRINGX(x) int mconsole_get_request(int fd, struct mc_request *req) { int len; req->originlen = sizeof(req->origin); req->len = recvfrom(fd, &req->request, sizeof(req->request), 0, (struct sockaddr *) req->origin, &req->originlen); if (req->len < 0) return 0; req->originating_fd = fd; if(req->request.magic != MCONSOLE_MAGIC){ /* Unversioned request */ len = MIN(sizeof(req->request.data) - 1, strlen((char *) &req->request)); memmove(req->request.data, &req->request, len); req->request.data[len] = '\0'; req->request.magic = MCONSOLE_MAGIC; req->request.version = 0; req->request.len = len; mconsole_reply_v0(req, "ERR Version 0 mconsole clients are " "not supported by this driver"); return(0); } if(req->request.len >= MCONSOLE_MAX_DATA){ mconsole_reply(req, "Request too large", 1, 0); return(0); } if(req->request.version != MCONSOLE_VERSION){ mconsole_reply(req, "This driver only supports version " STRING(MCONSOLE_VERSION) " clients", 1, 0); } req->request.data[req->request.len] = '\0'; req->cmd = mconsole_parse(req); if(req->cmd == NULL){ mconsole_reply(req, "Unknown command", 1, 0); return(0); } return(1); } int mconsole_reply(struct mc_request *req, char *str, int err, int more) { struct mconsole_reply reply; int total, len, n; total = strlen(str); do { reply.err = err; /* err can only be true on the first packet */ err = 0; len = MIN(total, MCONSOLE_MAX_DATA - 1); if(len == total) reply.more = more; else reply.more = 1; memcpy(reply.data, str, len); reply.data[len] = '\0'; total -= len; reply.len = len + 1; len = sizeof(reply) + reply.len - sizeof(reply.data); n = sendto(req->originating_fd, &reply, len, 0, (struct sockaddr *) req->origin, req->originlen); if(n < 0) return(-errno); } while(total > 0); return(0); } int mconsole_unlink_socket(void) { unlink(mconsole_socket_name); return 0; } static int notify_sock = -1; int mconsole_notify(char *sock_name, int type, const void *data, int len) { struct sockaddr_un target; struct mconsole_notify packet; int n, err; if(notify_sock < 0){ notify_sock = socket(PF_UNIX, SOCK_DGRAM, 0); if(notify_sock < 0){ printk("mconsole_notify - socket failed, errno = %d\n", errno); return(-errno); } } target.sun_family = AF_UNIX; strcpy(target.sun_path, sock_name); packet.magic = MCONSOLE_MAGIC; packet.version = MCONSOLE_VERSION; packet.type = type; len = (len > sizeof(packet.data)) ? sizeof(packet.data) : len; packet.len = len; memcpy(packet.data, data, len); err = 0; len = sizeof(packet) + packet.len - sizeof(packet.data); n = sendto(notify_sock, &packet, len, 0, (struct sockaddr *) &target, sizeof(target)); if(n < 0){ printk("mconsole_notify - sendto failed, errno = %d\n", errno); err = -errno; } return(err); } /* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically * adjust the settings for this buffer only. This must remain at the end * of the file. * --------------------------------------------------------------------------- * Local variables: * c-file-style: "linux" * End: */ |