vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | #include <dlfcn.h> |
| 3 | #include <iostream> |
| 4 | #include <unistd.h> |
| 5 | #include <assert.h> |
| 6 | #include <dirent.h> |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 7 | #include <systemd/sd-bus.h> |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 8 | #include <string.h> |
| 9 | #include <stdlib.h> |
| 10 | #include <map> |
| 11 | #include "ipmid.H" |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 12 | #include <sys/time.h> |
| 13 | #include <errno.h> |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 14 | #include "sensorhandler.h" |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 15 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 16 | sd_bus *bus = NULL; |
vishwa | b9f559a | 2016-01-13 01:53:08 -0600 | [diff] [blame^] | 17 | sd_bus_slot *ipmid_slot = NULL; |
Chris Austen | 30195fa | 2015-11-13 14:39:19 -0600 | [diff] [blame] | 18 | |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 19 | FILE *ipmiio, *ipmidbus, *ipmicmddetails; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 20 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 21 | void print_usage(void) { |
| 22 | fprintf(stderr, "Options: [-d mask]\n"); |
| 23 | fprintf(stderr, " mask : 0x01 - Print ipmi packets\n"); |
| 24 | fprintf(stderr, " mask : 0x02 - Print DBUS operations\n"); |
| 25 | fprintf(stderr, " mask : 0x04 - Print ipmi command details\n"); |
| 26 | fprintf(stderr, " mask : 0xFF - Print all trace\n"); |
| 27 | } |
| 28 | |
| 29 | |
| 30 | |
Jeremy Kerr | e41081f | 2015-10-27 12:11:36 +0800 | [diff] [blame] | 31 | const char * DBUS_INTF = "org.openbmc.HostIpmi"; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 32 | |
Jeremy Kerr | e41081f | 2015-10-27 12:11:36 +0800 | [diff] [blame] | 33 | const char * FILTER = "type='signal',interface='org.openbmc.HostIpmi',member='ReceivedMessage'"; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 34 | |
| 35 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 36 | typedef std::pair<ipmi_netfn_t, ipmi_cmd_t> ipmi_fn_cmd_t; |
| 37 | typedef std::pair<ipmid_callback_t, ipmi_context_t> ipmi_fn_context_t; |
| 38 | |
| 39 | // Global data structure that contains the IPMI command handler's registrations. |
| 40 | std::map<ipmi_fn_cmd_t, ipmi_fn_context_t> g_ipmid_router_map; |
| 41 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 42 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 43 | #ifndef HEXDUMP_COLS |
| 44 | #define HEXDUMP_COLS 16 |
| 45 | #endif |
| 46 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 47 | void hexdump(FILE *s, void *mem, size_t len) |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 48 | { |
| 49 | unsigned int i, j; |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 50 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 51 | for(i = 0; i < len + ((len % HEXDUMP_COLS) ? (HEXDUMP_COLS - len % HEXDUMP_COLS) : 0); i++) |
| 52 | { |
| 53 | /* print offset */ |
| 54 | if(i % HEXDUMP_COLS == 0) |
| 55 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 56 | fprintf(s,"0x%06x: ", i); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 57 | } |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 58 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 59 | /* print hex data */ |
| 60 | if(i < len) |
| 61 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 62 | fprintf(s,"%02x ", 0xFF & ((char*)mem)[i]); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 63 | } |
| 64 | else /* end of block, just aligning for ASCII dump */ |
| 65 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 66 | fprintf(s," "); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 67 | } |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 68 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 69 | /* print ASCII dump */ |
| 70 | if(i % HEXDUMP_COLS == (HEXDUMP_COLS - 1)) |
| 71 | { |
| 72 | for(j = i - (HEXDUMP_COLS - 1); j <= i; j++) |
| 73 | { |
| 74 | if(j >= len) /* end of block, not really printing */ |
| 75 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 76 | fputc(' ', s); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 77 | } |
| 78 | else if(isprint(((char*)mem)[j])) /* printable char */ |
| 79 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 80 | fputc(0xFF & ((char*)mem)[j], s); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 81 | } |
| 82 | else /* other char */ |
| 83 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 84 | fputc('.',s); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 85 | } |
| 86 | } |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 87 | fputc('\n',s); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 93 | // Method that gets called by shared libraries to get their command handlers registered |
| 94 | void ipmi_register_callback(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 95 | ipmi_context_t context, ipmid_callback_t handler) |
| 96 | { |
| 97 | // Pack NetFn and Command in one. |
| 98 | auto netfn_and_cmd = std::make_pair(netfn, cmd); |
| 99 | |
| 100 | // Pack Function handler and Data in another. |
| 101 | auto handler_and_context = std::make_pair(handler, context); |
| 102 | |
| 103 | // Check if the registration has already been made.. |
| 104 | auto iter = g_ipmid_router_map.find(netfn_and_cmd); |
| 105 | if(iter != g_ipmid_router_map.end()) |
| 106 | { |
| 107 | fprintf(stderr,"ERROR : Duplicate registration for NetFn [0x%X], Cmd:[0x%X]\n",netfn, cmd); |
| 108 | } |
| 109 | else |
| 110 | { |
| 111 | // This is a fresh registration.. Add it to the map. |
| 112 | g_ipmid_router_map.emplace(netfn_and_cmd, handler_and_context); |
| 113 | } |
| 114 | |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | // Looks at the map and calls corresponding handler functions. |
| 119 | ipmi_ret_t ipmi_netfn_router(ipmi_netfn_t netfn, ipmi_cmd_t cmd, ipmi_request_t request, |
| 120 | ipmi_response_t response, ipmi_data_len_t data_len) |
| 121 | { |
| 122 | // return from the Command handlers. |
| 123 | ipmi_ret_t rc = IPMI_CC_INVALID; |
| 124 | |
| 125 | // Walk the map that has the registered handlers and invoke the approprite |
| 126 | // handlers for matching commands. |
| 127 | auto iter = g_ipmid_router_map.find(std::make_pair(netfn, cmd)); |
| 128 | if(iter == g_ipmid_router_map.end()) |
| 129 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 130 | fprintf(stderr, "No registered handlers for NetFn:[0x%X], Cmd:[0x%X]" |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 131 | " trying Wilcard implementation \n",netfn, cmd); |
| 132 | |
| 133 | // Now that we did not find any specific [NetFn,Cmd], tuple, check for |
| 134 | // NetFn, WildCard command present. |
| 135 | iter = g_ipmid_router_map.find(std::make_pair(netfn, IPMI_CMD_WILDCARD)); |
| 136 | if(iter == g_ipmid_router_map.end()) |
| 137 | { |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 138 | fprintf(stderr, "No Registered handlers for NetFn:[0x%X],Cmd:[0x%X]\n",netfn, IPMI_CMD_WILDCARD); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 139 | |
| 140 | // Respond with a 0xC1 |
| 141 | memcpy(response, &rc, IPMI_CC_LEN); |
| 142 | *data_len = IPMI_CC_LEN; |
| 143 | return rc; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | #ifdef __IPMI_DEBUG__ |
| 148 | // We have either a perfect match -OR- a wild card atleast, |
| 149 | printf("Calling Net function:[0x%X], Command:[0x%X]\n", netfn, cmd); |
| 150 | #endif |
| 151 | |
| 152 | // Extract the map data onto appropriate containers |
| 153 | auto handler_and_context = iter->second; |
| 154 | |
| 155 | // Creating a pointer type casted to char* to make sure we advance 1 byte |
| 156 | // when we advance pointer to next's address. advancing void * would not |
| 157 | // make sense. |
| 158 | char *respo = &((char *)response)[IPMI_CC_LEN]; |
| 159 | |
| 160 | // Response message from the plugin goes into a byte post the base response |
| 161 | rc = (handler_and_context.first) (netfn, cmd, request, respo, |
| 162 | data_len, handler_and_context.second); |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 163 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 164 | // Now copy the return code that we got from handler and pack it in first |
| 165 | // byte. |
| 166 | memcpy(response, &rc, IPMI_CC_LEN); |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 167 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 168 | // Data length is now actual data + completion code. |
| 169 | *data_len = *data_len + IPMI_CC_LEN; |
| 170 | |
| 171 | return rc; |
| 172 | } |
| 173 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 174 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 175 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 176 | |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 177 | static int send_ipmi_message(sd_bus_message *req, unsigned char seq, unsigned char netfn, unsigned char lun, unsigned char cmd, unsigned char cc, unsigned char *buf, unsigned char len) { |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 178 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 179 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 180 | sd_bus_message *reply = NULL, *m=NULL; |
Jeremy Kerr | e41081f | 2015-10-27 12:11:36 +0800 | [diff] [blame] | 181 | const char *dest, *path; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 182 | int r, pty; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 183 | |
Jeremy Kerr | e41081f | 2015-10-27 12:11:36 +0800 | [diff] [blame] | 184 | dest = sd_bus_message_get_sender(req); |
| 185 | path = sd_bus_message_get_path(req); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 186 | |
Jeremy Kerr | e41081f | 2015-10-27 12:11:36 +0800 | [diff] [blame] | 187 | r = sd_bus_message_new_method_call(bus,&m,dest,path,DBUS_INTF,"sendMessage"); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 188 | if (r < 0) { |
| 189 | fprintf(stderr, "Failed to add the method object: %s\n", strerror(-r)); |
| 190 | return -1; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 191 | } |
| 192 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 193 | |
Chris Austen | abfb5e8 | 2015-10-13 12:29:24 -0500 | [diff] [blame] | 194 | // Responses in IPMI require a bit set. So there ya go... |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 195 | netfn |= 0x01; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 196 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 197 | |
| 198 | // Add the bytes needed for the methods to be called |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 199 | r = sd_bus_message_append(m, "yyyyy", seq, netfn, lun, cmd, cc); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 200 | if (r < 0) { |
| 201 | fprintf(stderr, "Failed add the netfn and others : %s\n", strerror(-r)); |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 202 | goto final; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 203 | } |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 204 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 205 | r = sd_bus_message_append_array(m, 'y', buf, len); |
| 206 | if (r < 0) { |
| 207 | fprintf(stderr, "Failed to add the string of response bytes: %s\n", strerror(-r)); |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 208 | goto final; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | |
| 212 | |
| 213 | // Call the IPMI responder on the bus so the message can be sent to the CEC |
| 214 | r = sd_bus_call(bus, m, 0, &error, &reply); |
| 215 | if (r < 0) { |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 216 | fprintf(stderr, "Failed to call the method: %s\n", strerror(-r)); |
Chris Austen | 6bd2396 | 2015-12-07 21:31:48 -0600 | [diff] [blame] | 217 | fprintf(stderr, "Dest: %s, Path: %s\n", dest, path); |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 218 | goto final; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | r = sd_bus_message_read(reply, "x", &pty); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 222 | if (r < 0) { |
| 223 | fprintf(stderr, "Failed to get a rc from the method: %s\n", strerror(-r)); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 224 | } |
| 225 | |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 226 | final: |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 227 | sd_bus_error_free(&error); |
| 228 | sd_bus_message_unref(m); |
Chris Austen | 169395e | 2015-12-02 20:56:15 -0600 | [diff] [blame] | 229 | sd_bus_message_unref(reply); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 230 | |
| 231 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 232 | return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | static int handle_ipmi_command(sd_bus_message *m, void *user_data, sd_bus_error |
| 236 | *ret_error) { |
| 237 | int r = 0; |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 238 | unsigned char sequence, netfn, lun, cmd; |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 239 | const void *request; |
| 240 | size_t sz; |
| 241 | size_t resplen =MAX_IPMI_BUFFER; |
| 242 | unsigned char response[MAX_IPMI_BUFFER]; |
| 243 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 244 | memset(response, 0, MAX_IPMI_BUFFER); |
| 245 | |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 246 | r = sd_bus_message_read(m, "yyyy", &sequence, &netfn, &lun, &cmd); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 247 | if (r < 0) { |
| 248 | fprintf(stderr, "Failed to parse signal message: %s\n", strerror(-r)); |
| 249 | return -1; |
| 250 | } |
| 251 | |
| 252 | r = sd_bus_message_read_array(m, 'y', &request, &sz ); |
| 253 | if (r < 0) { |
| 254 | fprintf(stderr, "Failed to parse signal message: %s\n", strerror(-r)); |
| 255 | return -1; |
| 256 | } |
| 257 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 258 | fprintf(ipmiio, "IPMI Incoming: Seq 0x%02x, NetFn 0x%02x, CMD: 0x%02x \n", sequence, netfn, cmd); |
| 259 | hexdump(ipmiio, (void*)request, sz); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 260 | |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 261 | // Allow the length field to be used for both input and output of the |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 262 | // ipmi call |
| 263 | resplen = sz; |
| 264 | |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 265 | // Now that we have parsed the entire byte array from the caller |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 266 | // we can call the ipmi router to do the work... |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 267 | r = ipmi_netfn_router(netfn, cmd, (void *)request, (void *)response, &resplen); |
| 268 | if(r != 0) |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 269 | { |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 270 | fprintf(stderr,"ERROR:[0x%X] handling NetFn:[0x%X], Cmd:[0x%X]\n",r, netfn, cmd); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 271 | } |
| 272 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 273 | fprintf(ipmiio, "IPMI Response:\n"); |
| 274 | hexdump(ipmiio, (void*)response, resplen); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 275 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 276 | // Send the response buffer from the ipmi command |
Jeremy Kerr | 2564b1a | 2015-10-27 13:37:17 +0800 | [diff] [blame] | 277 | r = send_ipmi_message(m, sequence, netfn, lun, cmd, response[0], |
| 278 | ((unsigned char *)response) + 1, resplen - 1); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 279 | if (r < 0) { |
| 280 | fprintf(stderr, "Failed to send the response message\n"); |
| 281 | return -1; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 282 | } |
| 283 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 284 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 285 | return 0; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 286 | } |
| 287 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 288 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 289 | //---------------------------------------------------------------------- |
| 290 | // handler_select |
| 291 | // Select all the files ending with with .so. in the given diretcory |
| 292 | // @d: dirent structure containing the file name |
| 293 | //---------------------------------------------------------------------- |
| 294 | int handler_select(const struct dirent *entry) |
| 295 | { |
| 296 | // To hold ".so" from entry->d_name; |
| 297 | char dname_copy[4] = {0}; |
| 298 | |
| 299 | // We want to avoid checking for everything and isolate to the ones having |
| 300 | // .so in them. |
| 301 | if(strstr(entry->d_name, IPMI_PLUGIN_EXTN)) |
| 302 | { |
| 303 | // It is possible that .so could be anywhere in the string but unlikely |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 304 | // But being careful here. Get the base address of the string, move |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 305 | // until end and come back 3 steps and that gets what we need. |
| 306 | strcpy(dname_copy, (entry->d_name + strlen(entry->d_name)-strlen(IPMI_PLUGIN_EXTN))); |
| 307 | if(strcmp(dname_copy, IPMI_PLUGIN_EXTN) == 0) |
| 308 | { |
| 309 | return 1; |
| 310 | } |
| 311 | } |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | // This will do a dlopen of every .so in ipmi_lib_path and will dlopen everything so that they will |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 316 | // register a callback handler |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 317 | void ipmi_register_callback_handlers(const char* ipmi_lib_path) |
| 318 | { |
| 319 | // For walking the ipmi_lib_path |
| 320 | struct dirent **handler_list; |
| 321 | int num_handlers = 0; |
| 322 | |
| 323 | // This is used to check and abort if someone tries to register a bad one. |
| 324 | void *lib_handler = NULL; |
| 325 | |
| 326 | if(ipmi_lib_path == NULL) |
| 327 | { |
| 328 | fprintf(stderr,"ERROR; No handlers to be registered for ipmi.. Aborting\n"); |
| 329 | assert(0); |
| 330 | } |
| 331 | else |
| 332 | { |
| 333 | // 1: Open ipmi_lib_path. Its usually "/usr/lib/phosphor-host-ipmid" |
| 334 | // 2: Scan the directory for the files that end with .so |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 335 | // 3: For each one of them, just do a 'dlopen' so that they register |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 336 | // the handlers for callback routines. |
| 337 | |
| 338 | std::string handler_fqdn = ipmi_lib_path; |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 339 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 340 | // Append a "/" since we need to add the name of the .so. If there is |
| 341 | // already a .so, adding one more is not any harm. |
| 342 | handler_fqdn += "/"; |
| 343 | |
| 344 | num_handlers = scandir(ipmi_lib_path, &handler_list, handler_select, alphasort); |
Jeremy Kerr | 5e8f85e | 2015-10-27 13:43:54 +0800 | [diff] [blame] | 345 | if (num_handlers < 0) |
| 346 | return; |
| 347 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 348 | while(num_handlers--) |
| 349 | { |
Chris Austen | 5403026 | 2015-10-13 12:30:46 -0500 | [diff] [blame] | 350 | handler_fqdn = ipmi_lib_path; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 351 | handler_fqdn += handler_list[num_handlers]->d_name; |
Chris Austen | 5403026 | 2015-10-13 12:30:46 -0500 | [diff] [blame] | 352 | printf("Registering handler:[%s]\n",handler_fqdn.c_str()); |
| 353 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 354 | lib_handler = dlopen(handler_fqdn.c_str(), RTLD_NOW); |
| 355 | if(lib_handler == NULL) |
| 356 | { |
Chris Austen | 120f732 | 2015-10-14 23:27:31 -0500 | [diff] [blame] | 357 | fprintf(stderr,"ERROR opening [%s]: %s\n", |
| 358 | handler_fqdn.c_str(), dlerror()); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 359 | } |
| 360 | // Wipe the memory allocated for this particular entry. |
| 361 | free(handler_list[num_handlers]); |
| 362 | } |
| 363 | // Done with all registration. |
| 364 | free(handler_list); |
| 365 | } |
| 366 | |
| 367 | // TODO : What to be done on the memory that is given by dlopen ?. |
| 368 | return; |
| 369 | } |
| 370 | |
Chris Austen | 30195fa | 2015-11-13 14:39:19 -0600 | [diff] [blame] | 371 | sd_bus *ipmid_get_sd_bus_connection(void) { |
| 372 | return bus; |
| 373 | } |
| 374 | |
vishwa | b9f559a | 2016-01-13 01:53:08 -0600 | [diff] [blame^] | 375 | sd_bus_slot *ipmid_get_sd_bus_slot(void) { |
| 376 | return ipmid_slot; |
| 377 | } |
| 378 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 379 | int main(int argc, char *argv[]) |
| 380 | { |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 381 | int r; |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 382 | unsigned long tvalue; |
| 383 | int c; |
| 384 | |
| 385 | |
| 386 | |
| 387 | // This file and subsequient switch is for turning on levels |
| 388 | // of trace |
| 389 | ipmicmddetails = ipmiio = ipmidbus = fopen("/dev/null", "w"); |
| 390 | |
| 391 | while ((c = getopt (argc, argv, "h:d:")) != -1) |
| 392 | switch (c) { |
| 393 | case 'd': |
| 394 | tvalue = strtoul(optarg, NULL, 16); |
| 395 | if (1&tvalue) { |
| 396 | ipmiio = stdout; |
| 397 | } |
| 398 | if (2&tvalue) { |
| 399 | ipmidbus = stdout; |
| 400 | } |
| 401 | if (4&tvalue) { |
| 402 | ipmicmddetails = stdout; |
| 403 | } |
| 404 | break; |
| 405 | case 'h': |
| 406 | case '?': |
| 407 | print_usage(); |
| 408 | return 1; |
| 409 | } |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 410 | |
| 411 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 412 | /* Connect to system bus */ |
| 413 | r = sd_bus_open_system(&bus); |
| 414 | if (r < 0) { |
| 415 | fprintf(stderr, "Failed to connect to system bus: %s\n", |
| 416 | strerror(-r)); |
| 417 | goto finish; |
| 418 | } |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 419 | |
Chris Austen | 30195fa | 2015-11-13 14:39:19 -0600 | [diff] [blame] | 420 | // Register all the handlers that provider implementation to IPMI commands. |
| 421 | ipmi_register_callback_handlers(HOST_IPMI_LIB_PATH); |
| 422 | |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 423 | // Watch for BT messages |
vishwa | b9f559a | 2016-01-13 01:53:08 -0600 | [diff] [blame^] | 424 | r = sd_bus_add_match(bus, &ipmid_slot, FILTER, handle_ipmi_command, NULL); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 425 | if (r < 0) { |
| 426 | fprintf(stderr, "Failed: sd_bus_add_match: %s : %s\n", strerror(-r), FILTER); |
| 427 | goto finish; |
| 428 | } |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 429 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 430 | |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 431 | for (;;) { |
| 432 | /* Process requests */ |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 433 | r = sd_bus_process(bus, NULL); |
| 434 | if (r < 0) { |
| 435 | fprintf(stderr, "Failed to process bus: %s\n", strerror(-r)); |
| 436 | goto finish; |
| 437 | } |
| 438 | if (r > 0) { |
| 439 | continue; |
| 440 | } |
| 441 | |
| 442 | r = sd_bus_wait(bus, (uint64_t) - 1); |
| 443 | if (r < 0) { |
| 444 | fprintf(stderr, "Failed to wait on bus: %s\n", strerror(-r)); |
| 445 | goto finish; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | finish: |
vishwa | b9f559a | 2016-01-13 01:53:08 -0600 | [diff] [blame^] | 450 | sd_bus_slot_unref(ipmid_slot); |
Chris Austen | 0ba649e | 2015-10-13 12:28:13 -0500 | [diff] [blame] | 451 | sd_bus_unref(bus); |
| 452 | return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; |
| 453 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 454 | } |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 455 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 456 | // Use a lookup table to find the interface name of a specific sensor |
| 457 | // This will be used until an alternative is found. this is the first |
| 458 | // step for mapping IPMI |
| 459 | int find_interface_property_fru_type(dbus_interface_t *interface, const char *property_name, char *property_value) { |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 460 | |
Joel Stanley | f19539e | 2015-11-25 17:24:05 +1030 | [diff] [blame] | 461 | char *str1; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 462 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 463 | sd_bus_message *reply = NULL, *m=NULL; |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 464 | |
| 465 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 466 | int r; |
| 467 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 468 | r = sd_bus_message_new_method_call(bus,&m,interface->bus,interface->path,"org.freedesktop.DBus.Properties","Get"); |
| 469 | if (r < 0) { |
| 470 | fprintf(stderr, "Failed to create a method call: %s", strerror(-r)); |
| 471 | fprintf(stderr,"Bus: %s Path: %s Interface: %s \n", |
| 472 | interface->bus, interface->path, interface->interface); |
| 473 | } |
| 474 | |
| 475 | r = sd_bus_message_append(m, "ss", "org.openbmc.InventoryItem", property_name); |
| 476 | if (r < 0) { |
| 477 | fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r)); |
| 478 | fprintf(stderr,"Bus: %s Path: %s Interface: %s \n", |
| 479 | interface->bus, interface->path, interface->interface); |
| 480 | } |
| 481 | |
| 482 | r = sd_bus_call(bus, m, 0, &error, &reply); |
| 483 | if (r < 0) { |
| 484 | fprintf(stderr, "Failed to call the method: %s", strerror(-r)); |
| 485 | goto final; |
| 486 | } |
| 487 | |
| 488 | r = sd_bus_message_read(reply, "v", "s", &str1) ; |
| 489 | if (r < 0) { |
| 490 | fprintf(stderr, "Failed to get a response: %s", strerror(-r)); |
| 491 | goto final; |
| 492 | } |
| 493 | |
| 494 | strcpy(property_value, str1); |
| 495 | |
| 496 | final: |
| 497 | |
| 498 | sd_bus_error_free(&error); |
| 499 | sd_bus_message_unref(m); |
| 500 | |
| 501 | return r; |
| 502 | } |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 503 | |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 504 | |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 505 | // Use a lookup table to find the interface name of a specific sensor |
| 506 | // This will be used until an alternative is found. this is the first |
| 507 | // step for mapping IPMI |
| 508 | int find_openbmc_path(const char *type, const uint8_t num, dbus_interface_t *interface) { |
| 509 | |
| 510 | const char *busname = "org.openbmc.managers.System"; |
| 511 | const char *objname = "/org/openbmc/managers/System"; |
| 512 | |
| 513 | char *str1, *str2, *str3; |
| 514 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 515 | sd_bus_message *reply = NULL, *m=NULL; |
| 516 | |
| 517 | |
| 518 | int r; |
| 519 | |
| 520 | r = sd_bus_message_new_method_call(bus,&m,busname,objname,busname,"getObjectFromByteId"); |
| 521 | if (r < 0) { |
| 522 | fprintf(stderr, "Failed to create a method call: %s", strerror(-r)); |
| 523 | } |
| 524 | |
| 525 | r = sd_bus_message_append(m, "sy", type, num); |
| 526 | if (r < 0) { |
| 527 | fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r)); |
| 528 | } |
| 529 | |
| 530 | // Call the IPMI responder on the bus so the message can be sent to the CEC |
| 531 | r = sd_bus_call(bus, m, 0, &error, &reply); |
| 532 | if (r < 0) { |
| 533 | fprintf(stderr, "Failed to call the method: %s", strerror(-r)); |
| 534 | goto final; |
| 535 | } |
| 536 | |
| 537 | |
| 538 | r = sd_bus_message_read(reply, "(sss)", &str1, &str2, &str3); |
| 539 | if (r < 0) { |
| 540 | fprintf(stderr, "Failed to get a response: %s", strerror(-r)); |
| 541 | goto final; |
| 542 | } |
| 543 | |
| 544 | strncpy(interface->bus, str1, MAX_DBUS_PATH); |
| 545 | strncpy(interface->path, str2, MAX_DBUS_PATH); |
| 546 | strncpy(interface->interface, str3, MAX_DBUS_PATH); |
| 547 | |
| 548 | interface->sensornumber = num; |
| 549 | |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 550 | final: |
| 551 | |
| 552 | sd_bus_error_free(&error); |
| 553 | sd_bus_message_unref(m); |
| 554 | |
| 555 | return r; |
| 556 | } |
| 557 | |
| 558 | |
| 559 | ///////////////////////////////////////////////////////////////////// |
| 560 | // |
| 561 | // Routines used by ipmi commands wanting to interact on the dbus |
| 562 | // |
| 563 | ///////////////////////////////////////////////////////////////////// |
| 564 | |
| 565 | |
| 566 | // Simple set routine because some methods are standard. |
| 567 | int set_sensor_dbus_state(uint8_t number, const char *method, const char *value) { |
| 568 | |
| 569 | |
| 570 | dbus_interface_t a; |
| 571 | int r; |
| 572 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 573 | sd_bus_message *reply = NULL, *m=NULL; |
| 574 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 575 | fprintf(ipmidbus, "Attempting to set a dbus Sensor 0x%02x via %s with a value of %s\n", |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 576 | number, method, value); |
| 577 | |
| 578 | r = find_openbmc_path("SENSOR", number, &a); |
| 579 | |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 580 | r = sd_bus_message_new_method_call(bus,&m,a.bus,a.path,a.interface,method); |
| 581 | if (r < 0) { |
| 582 | fprintf(stderr, "Failed to create a method call: %s", strerror(-r)); |
| 583 | } |
| 584 | |
| 585 | r = sd_bus_message_append(m, "s", value); |
| 586 | if (r < 0) { |
| 587 | fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r)); |
| 588 | } |
| 589 | |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 590 | r = sd_bus_call(bus, m, 0, &error, &reply); |
| 591 | if (r < 0) { |
| 592 | fprintf(stderr, "Failed to call the method: %s", strerror(-r)); |
| 593 | } |
| 594 | |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 595 | sd_bus_error_free(&error); |
| 596 | sd_bus_message_unref(m); |
| 597 | |
| 598 | return 0; |
Chris Austen | b071c70 | 2015-10-15 00:00:09 -0500 | [diff] [blame] | 599 | } |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 600 | |
| 601 | int set_sensor_dbus_state_v(uint8_t number, const char *method, char *value) { |
| 602 | |
| 603 | |
| 604 | dbus_interface_t a; |
| 605 | int r; |
| 606 | sd_bus_error error = SD_BUS_ERROR_NULL; |
Joel Stanley | f19539e | 2015-11-25 17:24:05 +1030 | [diff] [blame] | 607 | sd_bus_message *m=NULL; |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 608 | |
Chris Austen | 9949731 | 2015-10-22 13:00:16 -0500 | [diff] [blame] | 609 | fprintf(ipmidbus, "Attempting to set a dbus Variant Sensor 0x%02x via %s with a value of %s\n", |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 610 | number, method, value); |
| 611 | |
| 612 | r = find_openbmc_path("SENSOR", number, &a); |
| 613 | |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 614 | r = sd_bus_message_new_method_call(bus,&m,a.bus,a.path,a.interface,method); |
| 615 | if (r < 0) { |
| 616 | fprintf(stderr, "Failed to create a method call: %s", strerror(-r)); |
| 617 | } |
| 618 | |
| 619 | r = sd_bus_message_append(m, "v", "s", value); |
| 620 | if (r < 0) { |
| 621 | fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r)); |
| 622 | } |
| 623 | |
| 624 | |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 625 | r = sd_bus_call(bus, m, 0, &error, NULL); |
| 626 | if (r < 0) { |
| 627 | fprintf(stderr, "12 Failed to call the method: %s", strerror(-r)); |
| 628 | } |
| 629 | |
| 630 | |
Chris Austen | 0130d6e | 2015-10-15 22:32:36 -0500 | [diff] [blame] | 631 | sd_bus_error_free(&error); |
| 632 | sd_bus_message_unref(m); |
| 633 | |
| 634 | return 0; |
| 635 | } |