ipmi_msghandler.c 114.3 KB
Newer Older
L
Linus Torvalds 已提交
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
/*
 * ipmi_msghandler.c
 *
 * Incoming and outgoing message routing for an IPMI interface.
 *
 * Author: MontaVista Software, Inc.
 *         Corey Minyard <minyard@mvista.com>
 *         source@mvista.com
 *
 * Copyright 2002 MontaVista Software Inc.
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License as published by the
 *  Free Software Foundation; either version 2 of the License, or (at your
 *  option) any later version.
 *
 *
 *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/poll.h>
37
#include <linux/sched.h>
38
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
39
#include <linux/spinlock.h>
40
#include <linux/mutex.h>
L
Linus Torvalds 已提交
41 42 43 44 45 46
#include <linux/slab.h>
#include <linux/ipmi.h>
#include <linux/ipmi_smi.h>
#include <linux/notifier.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
47
#include <linux/rcupdate.h>
48
#include <linux/interrupt.h>
L
Linus Torvalds 已提交
49 50

#define PFX "IPMI message handler: "
51

C
Corey Minyard 已提交
52
#define IPMI_DRIVER_VERSION "39.2"
L
Linus Torvalds 已提交
53 54 55

static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void);
static int ipmi_init_msghandler(void);
56 57
static void smi_recv_tasklet(unsigned long);
static void handle_new_recv_msgs(ipmi_smi_t intf);
58
static void need_waiter(ipmi_smi_t intf);
L
Linus Torvalds 已提交
59

R
Randy Dunlap 已提交
60
static int initialized;
L
Linus Torvalds 已提交
61

62
#ifdef CONFIG_PROC_FS
R
Randy Dunlap 已提交
63
static struct proc_dir_entry *proc_ipmi_root;
64
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
65

C
Corey Minyard 已提交
66 67 68
/* Remain in auto-maintenance mode for this amount of time (in ms). */
#define IPMI_MAINTENANCE_MODE_TIMEOUT 30000

L
Linus Torvalds 已提交
69 70
#define MAX_EVENTS_IN_QUEUE	25

71 72 73 74
/*
 * Don't let a message sit in a queue forever, always time it with at lest
 * the max message timer.  This is in milliseconds.
 */
L
Linus Torvalds 已提交
75 76
#define MAX_MSG_TIMEOUT		60000

77 78 79 80 81 82 83 84 85 86 87 88 89 90
/* Call every ~1000 ms. */
#define IPMI_TIMEOUT_TIME	1000

/* How many jiffies does it take to get to the timeout time. */
#define IPMI_TIMEOUT_JIFFIES	((IPMI_TIMEOUT_TIME * HZ) / 1000)

/*
 * Request events from the queue every second (this is the number of
 * IPMI_TIMEOUT_TIMES between event requests).  Hopefully, in the
 * future, IPMI will add a way to know immediately if an event is in
 * the queue and this silliness can go away.
 */
#define IPMI_REQUEST_EV_TIME	(1000 / (IPMI_TIMEOUT_TIME))

91 92 93
/*
 * The main "user" data structure.
 */
94
struct ipmi_user {
L
Linus Torvalds 已提交
95 96
	struct list_head link;

C
Corey Minyard 已提交
97 98
	/* Set to false when the user is destroyed. */
	bool valid;
99 100 101

	struct kref refcount;

L
Linus Torvalds 已提交
102 103 104 105 106 107 108 109
	/* The upper layer that handles receive messages. */
	struct ipmi_user_hndl *handler;
	void             *handler_data;

	/* The interface this user is bound to. */
	ipmi_smi_t intf;

	/* Does this interface receive IPMI events? */
110
	bool gets_events;
L
Linus Torvalds 已提交
111 112
};

113
struct cmd_rcvr {
L
Linus Torvalds 已提交
114 115 116 117 118
	struct list_head link;

	ipmi_user_t   user;
	unsigned char netfn;
	unsigned char cmd;
119
	unsigned int  chans;
120 121 122 123 124 125 126

	/*
	 * This is used to form a linked lised during mass deletion.
	 * Since this is in an RCU list, we cannot use the link above
	 * or change any data until the RCU period completes.  So we
	 * use this next variable during mass deletion so we can have
	 * a list and don't have to wait and restart the search on
127 128
	 * every individual deletion of a command.
	 */
129
	struct cmd_rcvr *next;
L
Linus Torvalds 已提交
130 131
};

132
struct seq_table {
L
Linus Torvalds 已提交
133 134 135 136 137 138 139
	unsigned int         inuse : 1;
	unsigned int         broadcast : 1;

	unsigned long        timeout;
	unsigned long        orig_timeout;
	unsigned int         retries_left;

140 141 142 143 144
	/*
	 * To verify on an incoming send message response that this is
	 * the message that the response is for, we keep a sequence id
	 * and increment it every time we send a message.
	 */
L
Linus Torvalds 已提交
145 146
	long                 seqid;

147 148 149 150 151
	/*
	 * This is held so we can properly respond to the message on a
	 * timeout, and it is used to hold the temporary data for
	 * retransmission, too.
	 */
L
Linus Torvalds 已提交
152 153 154
	struct ipmi_recv_msg *recv_msg;
};

155 156 157 158
/*
 * Store the information in a msgid (long) to allow us to find a
 * sequence table entry from the msgid.
 */
L
Linus Torvalds 已提交
159 160 161 162 163 164
#define STORE_SEQ_IN_MSGID(seq, seqid) (((seq&0xff)<<26) | (seqid&0x3ffffff))

#define GET_SEQ_FROM_MSGID(msgid, seq, seqid) \
	do {								\
		seq = ((msgid >> 26) & 0x3f);				\
		seqid = (msgid & 0x3fffff);				\
165
	} while (0)
L
Linus Torvalds 已提交
166 167 168

#define NEXT_SEQID(seqid) (((seqid) + 1) & 0x3fffff)

169
struct ipmi_channel {
L
Linus Torvalds 已提交
170 171
	unsigned char medium;
	unsigned char protocol;
172

173 174 175 176
	/*
	 * My slave address.  This is initialized to IPMI_BMC_SLAVE_ADDR,
	 * but may be changed by the user.
	 */
177 178
	unsigned char address;

179 180 181 182
	/*
	 * My LUN.  This should generally stay the SMS LUN, but just in
	 * case...
	 */
183
	unsigned char lun;
L
Linus Torvalds 已提交
184 185
};

186
#ifdef CONFIG_PROC_FS
187
struct ipmi_proc_entry {
L
Linus Torvalds 已提交
188 189 190
	char                   *name;
	struct ipmi_proc_entry *next;
};
191
#endif
L
Linus Torvalds 已提交
192

193
struct bmc_device {
194
	struct platform_device pdev;
195 196 197
	struct ipmi_device_id  id;
	unsigned char          guid[16];
	int                    guid_set;
198 199
	char                   name[16];
	struct kref	       usecount;
200 201 202 203 204 205 206 207 208 209 210 211 212

	/* bmc device attributes */
	struct device_attribute device_id_attr;
	struct device_attribute provides_dev_sdrs_attr;
	struct device_attribute revision_attr;
	struct device_attribute firmware_rev_attr;
	struct device_attribute version_attr;
	struct device_attribute add_dev_support_attr;
	struct device_attribute manufacturer_id_attr;
	struct device_attribute product_id_attr;
	struct device_attribute guid_attr;
	struct device_attribute aux_firmware_rev_attr;
};
213
#define to_bmc_device(x) container_of((x), struct bmc_device, pdev.dev)
214

215 216 217 218
/*
 * Various statistics for IPMI, these index stats[] in the ipmi_smi
 * structure.
 */
219 220 221
enum ipmi_stat_indexes {
	/* Commands we got from the user that were invalid. */
	IPMI_STAT_sent_invalid_commands = 0,
222

223 224
	/* Commands we sent to the MC. */
	IPMI_STAT_sent_local_commands,
225

226 227
	/* Responses from the MC that were delivered to a user. */
	IPMI_STAT_handled_local_responses,
228

229 230
	/* Responses from the MC that were not delivered to a user. */
	IPMI_STAT_unhandled_local_responses,
231

232 233
	/* Commands we sent out to the IPMB bus. */
	IPMI_STAT_sent_ipmb_commands,
234

235 236
	/* Commands sent on the IPMB that had errors on the SEND CMD */
	IPMI_STAT_sent_ipmb_command_errs,
237

238 239
	/* Each retransmit increments this count. */
	IPMI_STAT_retransmitted_ipmb_commands,
240

241 242 243 244 245
	/*
	 * When a message times out (runs out of retransmits) this is
	 * incremented.
	 */
	IPMI_STAT_timed_out_ipmb_commands,
246

247 248 249 250 251 252
	/*
	 * This is like above, but for broadcasts.  Broadcasts are
	 * *not* included in the above count (they are expected to
	 * time out).
	 */
	IPMI_STAT_timed_out_ipmb_broadcasts,
253

254 255
	/* Responses I have sent to the IPMB bus. */
	IPMI_STAT_sent_ipmb_responses,
256

257 258
	/* The response was delivered to the user. */
	IPMI_STAT_handled_ipmb_responses,
259

260 261
	/* The response had invalid data in it. */
	IPMI_STAT_invalid_ipmb_responses,
262

263 264
	/* The response didn't have anyone waiting for it. */
	IPMI_STAT_unhandled_ipmb_responses,
265

266 267
	/* Commands we sent out to the IPMB bus. */
	IPMI_STAT_sent_lan_commands,
268

269 270
	/* Commands sent on the IPMB that had errors on the SEND CMD */
	IPMI_STAT_sent_lan_command_errs,
271

272 273
	/* Each retransmit increments this count. */
	IPMI_STAT_retransmitted_lan_commands,
274

275 276 277 278 279 280 281 282
	/*
	 * When a message times out (runs out of retransmits) this is
	 * incremented.
	 */
	IPMI_STAT_timed_out_lan_commands,

	/* Responses I have sent to the IPMB bus. */
	IPMI_STAT_sent_lan_responses,
283

284 285
	/* The response was delivered to the user. */
	IPMI_STAT_handled_lan_responses,
286

287 288
	/* The response had invalid data in it. */
	IPMI_STAT_invalid_lan_responses,
289

290 291
	/* The response didn't have anyone waiting for it. */
	IPMI_STAT_unhandled_lan_responses,
292

293 294
	/* The command was delivered to the user. */
	IPMI_STAT_handled_commands,
295

296 297
	/* The command had invalid data in it. */
	IPMI_STAT_invalid_commands,
298

299 300
	/* The command didn't have anyone waiting for it. */
	IPMI_STAT_unhandled_commands,
301

302 303
	/* Invalid data in an event. */
	IPMI_STAT_invalid_events,
304

305 306
	/* Events that were received with the proper format. */
	IPMI_STAT_events,
307

308 309 310 311 312
	/* Retransmissions on IPMB that failed. */
	IPMI_STAT_dropped_rexmit_ipmb_commands,

	/* Retransmissions on LAN that failed. */
	IPMI_STAT_dropped_rexmit_lan_commands,
313

314 315 316
	/* This *must* remain last, add new values above this. */
	IPMI_NUM_STATS
};
317 318


L
Linus Torvalds 已提交
319
#define IPMI_IPMB_NUM_SEQ	64
320
#define IPMI_MAX_CHANNELS       16
321
struct ipmi_smi {
L
Linus Torvalds 已提交
322 323 324
	/* What interface number are we? */
	int intf_num;

325 326
	struct kref refcount;

327 328 329
	/* Used for a list of interfaces. */
	struct list_head link;

330 331 332 333
	/*
	 * The list of upper layers that are using me.  seq_lock
	 * protects this.
	 */
334
	struct list_head users;
L
Linus Torvalds 已提交
335

336 337 338 339
	/* Information to supply to users. */
	unsigned char ipmi_version_major;
	unsigned char ipmi_version_minor;

L
Linus Torvalds 已提交
340 341 342
	/* Used for wake ups at startup. */
	wait_queue_head_t waitq;

343 344
	struct bmc_device *bmc;
	char *my_dev_name;
L
Linus Torvalds 已提交
345

346 347
	/*
	 * This is the lower-layer's sender routine.  Note that you
348 349
	 * must either be holding the ipmi_interfaces_mutex or be in
	 * an umpreemptible region to use this.  You must fetch the
350 351
	 * value into a local variable and make sure it is not NULL.
	 */
L
Linus Torvalds 已提交
352 353 354
	struct ipmi_smi_handlers *handlers;
	void                     *send_info;

355
#ifdef CONFIG_PROC_FS
C
Corey Minyard 已提交
356 357
	/* A list of proc entries for this interface. */
	struct mutex           proc_entry_lock;
L
Linus Torvalds 已提交
358
	struct ipmi_proc_entry *proc_entries;
359
#endif
L
Linus Torvalds 已提交
360

361 362 363
	/* Driver-model device for the system interface. */
	struct device          *si_dev;

364 365 366 367 368 369
	/*
	 * A table of sequence numbers for this interface.  We use the
	 * sequence numbers for IPMB messages that go out of the
	 * interface to match them up with their responses.  A routine
	 * is called periodically to time the items in this list.
	 */
L
Linus Torvalds 已提交
370 371 372 373
	spinlock_t       seq_lock;
	struct seq_table seq_table[IPMI_IPMB_NUM_SEQ];
	int curr_seq;

374
	/*
375 376 377 378
	 * Messages queued for delivery.  If delivery fails (out of memory
	 * for instance), They will stay in here to be processed later in a
	 * periodic timer interrupt.  The tasklet is for handling received
	 * messages directly from the handler.
379
	 */
380 381
	spinlock_t       waiting_rcv_msgs_lock;
	struct list_head waiting_rcv_msgs;
382 383
	atomic_t	 watchdog_pretimeouts_to_deliver;
	struct tasklet_struct recv_tasklet;
L
Linus Torvalds 已提交
384

385 386 387 388
	/*
	 * The list of command receivers that are registered for commands
	 * on this interface.
	 */
389
	struct mutex     cmd_rcvrs_mutex;
L
Linus Torvalds 已提交
390 391
	struct list_head cmd_rcvrs;

392 393 394 395
	/*
	 * Events that were queues because no one was there to receive
	 * them.
	 */
L
Linus Torvalds 已提交
396 397 398
	spinlock_t       events_lock; /* For dealing with event stuff. */
	struct list_head waiting_events;
	unsigned int     waiting_events_count; /* How many events in queue? */
399 400
	char             delivering_events;
	char             event_msg_printed;
401 402 403
	atomic_t         event_waiters;
	unsigned int     ticks_to_req_ev;
	int              last_needs_timer;
L
Linus Torvalds 已提交
404

405 406 407 408
	/*
	 * The event receiver for my BMC, only really used at panic
	 * shutdown as a place to store this.
	 */
L
Linus Torvalds 已提交
409 410 411 412 413
	unsigned char event_receiver;
	unsigned char event_receiver_lun;
	unsigned char local_sel_device;
	unsigned char local_event_generator;

C
Corey Minyard 已提交
414 415
	/* For handling of maintenance mode. */
	int maintenance_mode;
C
Corey Minyard 已提交
416
	bool maintenance_mode_enable;
C
Corey Minyard 已提交
417 418 419
	int auto_maintenance_timeout;
	spinlock_t maintenance_mode_lock; /* Used in a timer... */

420 421 422 423 424 425
	/*
	 * A cheap hack, if this is non-null and a message to an
	 * interface comes in with a NULL user, call this routine with
	 * it.  Note that the message will still be freed by the
	 * caller.  This only works on the system interface.
	 */
426
	void (*null_user_handler)(ipmi_smi_t intf, struct ipmi_recv_msg *msg);
L
Linus Torvalds 已提交
427

428 429 430 431
	/*
	 * When we are scanning the channels for an SMI, this will
	 * tell which channel we are scanning.
	 */
L
Linus Torvalds 已提交
432 433 434 435 436 437 438 439 440
	int curr_channel;

	/* Channel information */
	struct ipmi_channel channels[IPMI_MAX_CHANNELS];

	/* Proc FS stuff. */
	struct proc_dir_entry *proc_dir;
	char                  proc_dir_name[10];

441
	atomic_t stats[IPMI_NUM_STATS];
442 443 444 445 446 447 448

	/*
	 * run_to_completion duplicate of smb_info, smi_info
	 * and ipmi_serial_info structures. Used to decrease numbers of
	 * parameters passed by "low" level IPMI code.
	 */
	int run_to_completion;
L
Linus Torvalds 已提交
449
};
450
#define to_si_intf_from_dev(device) container_of(device, struct ipmi_smi, dev)
L
Linus Torvalds 已提交
451

452 453 454
/**
 * The driver model view of the IPMI messaging driver.
 */
455 456 457 458 459
static struct platform_driver ipmidriver = {
	.driver = {
		.name = "ipmi",
		.bus = &platform_bus_type
	}
460 461 462
};
static DEFINE_MUTEX(ipmidriver_mutex);

463
static LIST_HEAD(ipmi_interfaces);
464
static DEFINE_MUTEX(ipmi_interfaces_mutex);
L
Linus Torvalds 已提交
465

466 467 468
/*
 * List of watchers that want to know when smi's are added and deleted.
 */
469
static LIST_HEAD(smi_watchers);
470
static DEFINE_MUTEX(smi_watchers_mutex);
L
Linus Torvalds 已提交
471

472 473 474 475 476
#define ipmi_inc_stat(intf, stat) \
	atomic_inc(&(intf)->stats[IPMI_STAT_ ## stat])
#define ipmi_get_stat(intf, stat) \
	((unsigned int) atomic_read(&(intf)->stats[IPMI_STAT_ ## stat]))

477 478 479 480 481 482 483 484 485 486 487 488
static char *addr_src_to_str[] = { "invalid", "hotmod", "hardcoded", "SPMI",
				   "ACPI", "SMBIOS", "PCI",
				   "device-tree", "default" };

const char *ipmi_addr_src_to_str(enum ipmi_addr_src src)
{
	if (src > SI_DEFAULT)
		src = 0; /* Invalid */
	return addr_src_to_str[src];
}
EXPORT_SYMBOL(ipmi_addr_src_to_str);

489 490 491 492 493 494 495 496 497 498 499 500 501 502
static int is_lan_addr(struct ipmi_addr *addr)
{
	return addr->addr_type == IPMI_LAN_ADDR_TYPE;
}

static int is_ipmb_addr(struct ipmi_addr *addr)
{
	return addr->addr_type == IPMI_IPMB_ADDR_TYPE;
}

static int is_ipmb_bcast_addr(struct ipmi_addr *addr)
{
	return addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE;
}
503

504 505 506 507 508 509 510 511 512 513
static void free_recv_msg_list(struct list_head *q)
{
	struct ipmi_recv_msg *msg, *msg2;

	list_for_each_entry_safe(msg, msg2, q, link) {
		list_del(&msg->link);
		ipmi_free_recv_msg(msg);
	}
}

514 515 516 517 518 519 520 521 522 523
static void free_smi_msg_list(struct list_head *q)
{
	struct ipmi_smi_msg *msg, *msg2;

	list_for_each_entry_safe(msg, msg2, q, link) {
		list_del(&msg->link);
		ipmi_free_smi_msg(msg);
	}
}

524 525 526 527 528 529
static void clean_up_interface_data(ipmi_smi_t intf)
{
	int              i;
	struct cmd_rcvr  *rcvr, *rcvr2;
	struct list_head list;

530 531
	tasklet_kill(&intf->recv_tasklet);

532
	free_smi_msg_list(&intf->waiting_rcv_msgs);
533 534
	free_recv_msg_list(&intf->waiting_events);

535 536 537 538
	/*
	 * Wholesale remove all the entries from the list in the
	 * interface and wait for RCU to know that none are in use.
	 */
539
	mutex_lock(&intf->cmd_rcvrs_mutex);
540 541
	INIT_LIST_HEAD(&list);
	list_splice_init_rcu(&intf->cmd_rcvrs, &list, synchronize_rcu);
542
	mutex_unlock(&intf->cmd_rcvrs_mutex);
543 544 545 546 547 548

	list_for_each_entry_safe(rcvr, rcvr2, &list, link)
		kfree(rcvr);

	for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
		if ((intf->seq_table[i].inuse)
549
					&& (intf->seq_table[i].recv_msg))
550 551 552 553 554 555 556 557 558 559 560 561
			ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
	}
}

static void intf_free(struct kref *ref)
{
	ipmi_smi_t intf = container_of(ref, struct ipmi_smi, refcount);

	clean_up_interface_data(intf);
	kfree(intf);
}

562
struct watcher_entry {
563 564
	int              intf_num;
	ipmi_smi_t       intf;
565 566 567
	struct list_head link;
};

L
Linus Torvalds 已提交
568 569
int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
{
570
	ipmi_smi_t intf;
571
	LIST_HEAD(to_deliver);
572 573
	struct watcher_entry *e, *e2;

574 575
	mutex_lock(&smi_watchers_mutex);

576 577
	mutex_lock(&ipmi_interfaces_mutex);

578
	/* Build a list of things to deliver. */
579
	list_for_each_entry(intf, &ipmi_interfaces, link) {
580 581 582 583 584
		if (intf->intf_num == -1)
			continue;
		e = kmalloc(sizeof(*e), GFP_KERNEL);
		if (!e)
			goto out_err;
585 586
		kref_get(&intf->refcount);
		e->intf = intf;
587 588 589
		e->intf_num = intf->intf_num;
		list_add_tail(&e->link, &to_deliver);
	}
L
Linus Torvalds 已提交
590

591 592
	/* We will succeed, so add it to the list. */
	list_add(&watcher->link, &smi_watchers);
593 594 595 596 597

	mutex_unlock(&ipmi_interfaces_mutex);

	list_for_each_entry_safe(e, e2, &to_deliver, link) {
		list_del(&e->link);
598 599
		watcher->new_smi(e->intf_num, e->intf->si_dev);
		kref_put(&e->intf->refcount, intf_free);
600
		kfree(e);
L
Linus Torvalds 已提交
601
	}
602

603
	mutex_unlock(&smi_watchers_mutex);
604

L
Linus Torvalds 已提交
605
	return 0;
606 607

 out_err:
608 609
	mutex_unlock(&ipmi_interfaces_mutex);
	mutex_unlock(&smi_watchers_mutex);
610 611
	list_for_each_entry_safe(e, e2, &to_deliver, link) {
		list_del(&e->link);
612
		kref_put(&e->intf->refcount, intf_free);
613 614 615
		kfree(e);
	}
	return -ENOMEM;
L
Linus Torvalds 已提交
616
}
617
EXPORT_SYMBOL(ipmi_smi_watcher_register);
L
Linus Torvalds 已提交
618 619 620

int ipmi_smi_watcher_unregister(struct ipmi_smi_watcher *watcher)
{
621
	mutex_lock(&smi_watchers_mutex);
L
Linus Torvalds 已提交
622
	list_del(&(watcher->link));
623
	mutex_unlock(&smi_watchers_mutex);
L
Linus Torvalds 已提交
624 625
	return 0;
}
626
EXPORT_SYMBOL(ipmi_smi_watcher_unregister);
L
Linus Torvalds 已提交
627

628 629 630
/*
 * Must be called with smi_watchers_mutex held.
 */
L
Linus Torvalds 已提交
631
static void
632
call_smi_watchers(int i, struct device *dev)
L
Linus Torvalds 已提交
633 634 635 636 637
{
	struct ipmi_smi_watcher *w;

	list_for_each_entry(w, &smi_watchers, link) {
		if (try_module_get(w->owner)) {
638
			w->new_smi(i, dev);
L
Linus Torvalds 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
			module_put(w->owner);
		}
	}
}

static int
ipmi_addr_equal(struct ipmi_addr *addr1, struct ipmi_addr *addr2)
{
	if (addr1->addr_type != addr2->addr_type)
		return 0;

	if (addr1->channel != addr2->channel)
		return 0;

	if (addr1->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
		struct ipmi_system_interface_addr *smi_addr1
		    = (struct ipmi_system_interface_addr *) addr1;
		struct ipmi_system_interface_addr *smi_addr2
		    = (struct ipmi_system_interface_addr *) addr2;
		return (smi_addr1->lun == smi_addr2->lun);
	}

661
	if (is_ipmb_addr(addr1) || is_ipmb_bcast_addr(addr1)) {
L
Linus Torvalds 已提交
662 663 664 665 666 667 668 669 670
		struct ipmi_ipmb_addr *ipmb_addr1
		    = (struct ipmi_ipmb_addr *) addr1;
		struct ipmi_ipmb_addr *ipmb_addr2
		    = (struct ipmi_ipmb_addr *) addr2;

		return ((ipmb_addr1->slave_addr == ipmb_addr2->slave_addr)
			&& (ipmb_addr1->lun == ipmb_addr2->lun));
	}

671
	if (is_lan_addr(addr1)) {
L
Linus Torvalds 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
		struct ipmi_lan_addr *lan_addr1
			= (struct ipmi_lan_addr *) addr1;
		struct ipmi_lan_addr *lan_addr2
		    = (struct ipmi_lan_addr *) addr2;

		return ((lan_addr1->remote_SWID == lan_addr2->remote_SWID)
			&& (lan_addr1->local_SWID == lan_addr2->local_SWID)
			&& (lan_addr1->session_handle
			    == lan_addr2->session_handle)
			&& (lan_addr1->lun == lan_addr2->lun));
	}

	return 1;
}

int ipmi_validate_addr(struct ipmi_addr *addr, int len)
{
689
	if (len < sizeof(struct ipmi_system_interface_addr))
L
Linus Torvalds 已提交
690 691 692 693 694 695 696 697 698
		return -EINVAL;

	if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
		if (addr->channel != IPMI_BMC_CHANNEL)
			return -EINVAL;
		return 0;
	}

	if ((addr->channel == IPMI_BMC_CHANNEL)
699
	    || (addr->channel >= IPMI_MAX_CHANNELS)
L
Linus Torvalds 已提交
700 701 702
	    || (addr->channel < 0))
		return -EINVAL;

703
	if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
704
		if (len < sizeof(struct ipmi_ipmb_addr))
L
Linus Torvalds 已提交
705 706 707 708
			return -EINVAL;
		return 0;
	}

709
	if (is_lan_addr(addr)) {
710
		if (len < sizeof(struct ipmi_lan_addr))
L
Linus Torvalds 已提交
711 712 713 714 715 716
			return -EINVAL;
		return 0;
	}

	return -EINVAL;
}
717
EXPORT_SYMBOL(ipmi_validate_addr);
L
Linus Torvalds 已提交
718 719 720 721 722 723 724

unsigned int ipmi_addr_length(int addr_type)
{
	if (addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
		return sizeof(struct ipmi_system_interface_addr);

	if ((addr_type == IPMI_IPMB_ADDR_TYPE)
725
			|| (addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE))
L
Linus Torvalds 已提交
726 727 728 729 730 731 732
		return sizeof(struct ipmi_ipmb_addr);

	if (addr_type == IPMI_LAN_ADDR_TYPE)
		return sizeof(struct ipmi_lan_addr);

	return 0;
}
733
EXPORT_SYMBOL(ipmi_addr_length);
L
Linus Torvalds 已提交
734 735 736

static void deliver_response(struct ipmi_recv_msg *msg)
{
737
	if (!msg->user) {
738 739 740 741 742
		ipmi_smi_t    intf = msg->user_msg_data;

		/* Special handling for NULL users. */
		if (intf->null_user_handler) {
			intf->null_user_handler(intf, msg);
743
			ipmi_inc_stat(intf, handled_local_responses);
744 745
		} else {
			/* No handler, so give up. */
746
			ipmi_inc_stat(intf, unhandled_local_responses);
747 748 749
		}
		ipmi_free_recv_msg(msg);
	} else {
750 751
		ipmi_user_t user = msg->user;
		user->handler->ipmi_recv_hndl(msg, user->handler_data);
752
	}
L
Linus Torvalds 已提交
753 754
}

755 756 757 758 759 760 761 762 763 764 765
static void
deliver_err_response(struct ipmi_recv_msg *msg, int err)
{
	msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
	msg->msg_data[0] = err;
	msg->msg.netfn |= 1; /* Convert to a response. */
	msg->msg.data_len = 1;
	msg->msg.data = msg->msg_data;
	deliver_response(msg);
}

766 767 768 769 770
/*
 * Find the next sequence number not being used and add the given
 * message with the given timeout to the sequence table.  This must be
 * called with the interface's seq_lock held.
 */
L
Linus Torvalds 已提交
771 772 773 774 775 776 777 778 779 780 781
static int intf_next_seq(ipmi_smi_t           intf,
			 struct ipmi_recv_msg *recv_msg,
			 unsigned long        timeout,
			 int                  retries,
			 int                  broadcast,
			 unsigned char        *seq,
			 long                 *seqid)
{
	int          rv = 0;
	unsigned int i;

782 783
	for (i = intf->curr_seq; (i+1)%IPMI_IPMB_NUM_SEQ != intf->curr_seq;
					i = (i+1)%IPMI_IPMB_NUM_SEQ) {
784
		if (!intf->seq_table[i].inuse)
L
Linus Torvalds 已提交
785 786 787
			break;
	}

788
	if (!intf->seq_table[i].inuse) {
L
Linus Torvalds 已提交
789 790
		intf->seq_table[i].recv_msg = recv_msg;

791 792 793 794
		/*
		 * Start with the maximum timeout, when the send response
		 * comes in we will start the real timer.
		 */
L
Linus Torvalds 已提交
795 796 797 798 799 800 801 802 803
		intf->seq_table[i].timeout = MAX_MSG_TIMEOUT;
		intf->seq_table[i].orig_timeout = timeout;
		intf->seq_table[i].retries_left = retries;
		intf->seq_table[i].broadcast = broadcast;
		intf->seq_table[i].inuse = 1;
		intf->seq_table[i].seqid = NEXT_SEQID(intf->seq_table[i].seqid);
		*seq = i;
		*seqid = intf->seq_table[i].seqid;
		intf->curr_seq = (i+1)%IPMI_IPMB_NUM_SEQ;
804
		need_waiter(intf);
L
Linus Torvalds 已提交
805 806 807
	} else {
		rv = -EAGAIN;
	}
808

L
Linus Torvalds 已提交
809 810 811
	return rv;
}

812 813 814 815 816 817 818
/*
 * Return the receive message for the given sequence number and
 * release the sequence number so it can be reused.  Some other data
 * is passed in to be sure the message matches up correctly (to help
 * guard against message coming in after their timeout and the
 * sequence number being reused).
 */
L
Linus Torvalds 已提交
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
static int intf_find_seq(ipmi_smi_t           intf,
			 unsigned char        seq,
			 short                channel,
			 unsigned char        cmd,
			 unsigned char        netfn,
			 struct ipmi_addr     *addr,
			 struct ipmi_recv_msg **recv_msg)
{
	int           rv = -ENODEV;
	unsigned long flags;

	if (seq >= IPMI_IPMB_NUM_SEQ)
		return -EINVAL;

	spin_lock_irqsave(&(intf->seq_lock), flags);
	if (intf->seq_table[seq].inuse) {
		struct ipmi_recv_msg *msg = intf->seq_table[seq].recv_msg;

837 838 839
		if ((msg->addr.channel == channel) && (msg->msg.cmd == cmd)
				&& (msg->msg.netfn == netfn)
				&& (ipmi_addr_equal(addr, &(msg->addr)))) {
L
Linus Torvalds 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
			*recv_msg = msg;
			intf->seq_table[seq].inuse = 0;
			rv = 0;
		}
	}
	spin_unlock_irqrestore(&(intf->seq_lock), flags);

	return rv;
}


/* Start the timer for a specific sequence table entry. */
static int intf_start_seq_timer(ipmi_smi_t intf,
				long       msgid)
{
	int           rv = -ENODEV;
	unsigned long flags;
	unsigned char seq;
	unsigned long seqid;


	GET_SEQ_FROM_MSGID(msgid, seq, seqid);

	spin_lock_irqsave(&(intf->seq_lock), flags);
864 865 866 867
	/*
	 * We do this verification because the user can be deleted
	 * while a message is outstanding.
	 */
L
Linus Torvalds 已提交
868
	if ((intf->seq_table[seq].inuse)
869
				&& (intf->seq_table[seq].seqid == seqid)) {
L
Linus Torvalds 已提交
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
		struct seq_table *ent = &(intf->seq_table[seq]);
		ent->timeout = ent->orig_timeout;
		rv = 0;
	}
	spin_unlock_irqrestore(&(intf->seq_lock), flags);

	return rv;
}

/* Got an error for the send message for a specific sequence number. */
static int intf_err_seq(ipmi_smi_t   intf,
			long         msgid,
			unsigned int err)
{
	int                  rv = -ENODEV;
	unsigned long        flags;
	unsigned char        seq;
	unsigned long        seqid;
	struct ipmi_recv_msg *msg = NULL;


	GET_SEQ_FROM_MSGID(msgid, seq, seqid);

	spin_lock_irqsave(&(intf->seq_lock), flags);
894 895 896 897
	/*
	 * We do this verification because the user can be deleted
	 * while a message is outstanding.
	 */
L
Linus Torvalds 已提交
898
	if ((intf->seq_table[seq].inuse)
899
				&& (intf->seq_table[seq].seqid == seqid)) {
L
Linus Torvalds 已提交
900 901 902 903 904 905 906 907
		struct seq_table *ent = &(intf->seq_table[seq]);

		ent->inuse = 0;
		msg = ent->recv_msg;
		rv = 0;
	}
	spin_unlock_irqrestore(&(intf->seq_lock), flags);

908 909
	if (msg)
		deliver_err_response(msg, err);
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924

	return rv;
}


int ipmi_create_user(unsigned int          if_num,
		     struct ipmi_user_hndl *handler,
		     void                  *handler_data,
		     ipmi_user_t           *user)
{
	unsigned long flags;
	ipmi_user_t   new_user;
	int           rv = 0;
	ipmi_smi_t    intf;

925 926 927 928 929 930 931
	/*
	 * There is no module usecount here, because it's not
	 * required.  Since this can only be used by and called from
	 * other modules, they will implicitly use this module, and
	 * thus this can't be removed unless the other modules are
	 * removed.
	 */
L
Linus Torvalds 已提交
932 933 934 935

	if (handler == NULL)
		return -EINVAL;

936 937 938 939
	/*
	 * Make sure the driver is actually initialized, this handles
	 * problems with initialization order.
	 */
L
Linus Torvalds 已提交
940 941 942 943 944
	if (!initialized) {
		rv = ipmi_init_msghandler();
		if (rv)
			return rv;

945 946 947 948
		/*
		 * The init code doesn't return an error if it was turned
		 * off, but it won't initialize.  Check that.
		 */
L
Linus Torvalds 已提交
949 950 951 952 953
		if (!initialized)
			return -ENODEV;
	}

	new_user = kmalloc(sizeof(*new_user), GFP_KERNEL);
954
	if (!new_user)
L
Linus Torvalds 已提交
955 956
		return -ENOMEM;

957
	mutex_lock(&ipmi_interfaces_mutex);
958 959 960
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
		if (intf->intf_num == if_num)
			goto found;
L
Linus Torvalds 已提交
961
	}
962
	/* Not found, return an error */
963 964
	rv = -EINVAL;
	goto out_kfree;
L
Linus Torvalds 已提交
965

966
 found:
967 968
	/* Note that each existing user holds a refcount to the interface. */
	kref_get(&intf->refcount);
L
Linus Torvalds 已提交
969

970
	kref_init(&new_user->refcount);
L
Linus Torvalds 已提交
971 972 973
	new_user->handler = handler;
	new_user->handler_data = handler_data;
	new_user->intf = intf;
974
	new_user->gets_events = false;
L
Linus Torvalds 已提交
975 976 977

	if (!try_module_get(intf->handlers->owner)) {
		rv = -ENODEV;
978
		goto out_kref;
L
Linus Torvalds 已提交
979 980 981 982 983 984
	}

	if (intf->handlers->inc_usecount) {
		rv = intf->handlers->inc_usecount(intf->send_info);
		if (rv) {
			module_put(intf->handlers->owner);
985
			goto out_kref;
L
Linus Torvalds 已提交
986 987 988
		}
	}

989 990 991 992
	/*
	 * Hold the lock so intf->handlers is guaranteed to be good
	 * until now
	 */
993 994
	mutex_unlock(&ipmi_interfaces_mutex);

C
Corey Minyard 已提交
995
	new_user->valid = true;
996 997 998
	spin_lock_irqsave(&intf->seq_lock, flags);
	list_add_rcu(&new_user->link, &intf->users);
	spin_unlock_irqrestore(&intf->seq_lock, flags);
999 1000 1001 1002 1003
	if (handler->ipmi_watchdog_pretimeout) {
		/* User wants pretimeouts, so make sure to watch for them. */
		if (atomic_inc_return(&intf->event_waiters) == 1)
			need_waiter(intf);
	}
1004 1005
	*user = new_user;
	return 0;
L
Linus Torvalds 已提交
1006

1007
out_kref:
1008
	kref_put(&intf->refcount, intf_free);
1009
out_kfree:
1010
	mutex_unlock(&ipmi_interfaces_mutex);
1011
	kfree(new_user);
L
Linus Torvalds 已提交
1012 1013
	return rv;
}
1014
EXPORT_SYMBOL(ipmi_create_user);
L
Linus Torvalds 已提交
1015

1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
int ipmi_get_smi_info(int if_num, struct ipmi_smi_info *data)
{
	int           rv = 0;
	ipmi_smi_t    intf;
	struct ipmi_smi_handlers *handlers;

	mutex_lock(&ipmi_interfaces_mutex);
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
		if (intf->intf_num == if_num)
			goto found;
	}
	/* Not found, return an error */
	rv = -EINVAL;
	mutex_unlock(&ipmi_interfaces_mutex);
	return rv;

found:
	handlers = intf->handlers;
	rv = -ENOSYS;
	if (handlers->get_smi_info)
		rv = handlers->get_smi_info(intf->send_info, data);
	mutex_unlock(&ipmi_interfaces_mutex);

	return rv;
}
EXPORT_SYMBOL(ipmi_get_smi_info);

1043 1044 1045 1046 1047 1048 1049
static void free_user(struct kref *ref)
{
	ipmi_user_t user = container_of(ref, struct ipmi_user, refcount);
	kfree(user);
}

int ipmi_destroy_user(ipmi_user_t user)
L
Linus Torvalds 已提交
1050
{
1051
	ipmi_smi_t       intf = user->intf;
L
Linus Torvalds 已提交
1052 1053
	int              i;
	unsigned long    flags;
1054 1055
	struct cmd_rcvr  *rcvr;
	struct cmd_rcvr  *rcvrs = NULL;
L
Linus Torvalds 已提交
1056

C
Corey Minyard 已提交
1057
	user->valid = false;
L
Linus Torvalds 已提交
1058

1059 1060 1061 1062 1063 1064
	if (user->handler->ipmi_watchdog_pretimeout)
		atomic_dec(&intf->event_waiters);

	if (user->gets_events)
		atomic_dec(&intf->event_waiters);

1065 1066 1067
	/* Remove the user from the interface's sequence table. */
	spin_lock_irqsave(&intf->seq_lock, flags);
	list_del_rcu(&user->link);
L
Linus Torvalds 已提交
1068

C
Corey Minyard 已提交
1069
	for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
1070
		if (intf->seq_table[i].inuse
1071
		    && (intf->seq_table[i].recv_msg->user == user)) {
1072
			intf->seq_table[i].inuse = 0;
1073
			ipmi_free_recv_msg(intf->seq_table[i].recv_msg);
L
Linus Torvalds 已提交
1074 1075
		}
	}
1076 1077 1078 1079 1080 1081 1082 1083
	spin_unlock_irqrestore(&intf->seq_lock, flags);

	/*
	 * Remove the user from the command receiver's table.  First
	 * we build a list of everything (not using the standard link,
	 * since other things may be using it till we do
	 * synchronize_rcu()) then free everything in that list.
	 */
1084
	mutex_lock(&intf->cmd_rcvrs_mutex);
1085
	list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
L
Linus Torvalds 已提交
1086
		if (rcvr->user == user) {
1087 1088 1089
			list_del_rcu(&rcvr->link);
			rcvr->next = rcvrs;
			rcvrs = rcvr;
L
Linus Torvalds 已提交
1090 1091
		}
	}
1092
	mutex_unlock(&intf->cmd_rcvrs_mutex);
1093 1094 1095 1096 1097 1098
	synchronize_rcu();
	while (rcvrs) {
		rcvr = rcvrs;
		rcvrs = rcvr->next;
		kfree(rcvr);
	}
L
Linus Torvalds 已提交
1099

1100 1101 1102 1103 1104 1105 1106
	mutex_lock(&ipmi_interfaces_mutex);
	if (intf->handlers) {
		module_put(intf->handlers->owner);
		if (intf->handlers->dec_usecount)
			intf->handlers->dec_usecount(intf->send_info);
	}
	mutex_unlock(&ipmi_interfaces_mutex);
L
Linus Torvalds 已提交
1107

1108
	kref_put(&intf->refcount, intf_free);
L
Linus Torvalds 已提交
1109

1110
	kref_put(&user->refcount, free_user);
L
Linus Torvalds 已提交
1111

1112
	return 0;
L
Linus Torvalds 已提交
1113
}
1114
EXPORT_SYMBOL(ipmi_destroy_user);
L
Linus Torvalds 已提交
1115 1116 1117 1118 1119

void ipmi_get_version(ipmi_user_t   user,
		      unsigned char *major,
		      unsigned char *minor)
{
1120 1121
	*major = user->intf->ipmi_version_major;
	*minor = user->intf->ipmi_version_minor;
L
Linus Torvalds 已提交
1122
}
1123
EXPORT_SYMBOL(ipmi_get_version);
L
Linus Torvalds 已提交
1124

1125 1126 1127
int ipmi_set_my_address(ipmi_user_t   user,
			unsigned int  channel,
			unsigned char address)
L
Linus Torvalds 已提交
1128
{
1129 1130 1131 1132
	if (channel >= IPMI_MAX_CHANNELS)
		return -EINVAL;
	user->intf->channels[channel].address = address;
	return 0;
L
Linus Torvalds 已提交
1133
}
1134
EXPORT_SYMBOL(ipmi_set_my_address);
L
Linus Torvalds 已提交
1135

1136 1137 1138
int ipmi_get_my_address(ipmi_user_t   user,
			unsigned int  channel,
			unsigned char *address)
L
Linus Torvalds 已提交
1139
{
1140 1141 1142 1143
	if (channel >= IPMI_MAX_CHANNELS)
		return -EINVAL;
	*address = user->intf->channels[channel].address;
	return 0;
L
Linus Torvalds 已提交
1144
}
1145
EXPORT_SYMBOL(ipmi_get_my_address);
L
Linus Torvalds 已提交
1146

1147 1148 1149
int ipmi_set_my_LUN(ipmi_user_t   user,
		    unsigned int  channel,
		    unsigned char LUN)
L
Linus Torvalds 已提交
1150
{
1151 1152 1153 1154
	if (channel >= IPMI_MAX_CHANNELS)
		return -EINVAL;
	user->intf->channels[channel].lun = LUN & 0x3;
	return 0;
L
Linus Torvalds 已提交
1155
}
1156
EXPORT_SYMBOL(ipmi_set_my_LUN);
L
Linus Torvalds 已提交
1157

1158 1159 1160
int ipmi_get_my_LUN(ipmi_user_t   user,
		    unsigned int  channel,
		    unsigned char *address)
L
Linus Torvalds 已提交
1161
{
1162 1163 1164 1165
	if (channel >= IPMI_MAX_CHANNELS)
		return -EINVAL;
	*address = user->intf->channels[channel].lun;
	return 0;
L
Linus Torvalds 已提交
1166
}
1167
EXPORT_SYMBOL(ipmi_get_my_LUN);
L
Linus Torvalds 已提交
1168

C
Corey Minyard 已提交
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
int ipmi_get_maintenance_mode(ipmi_user_t user)
{
	int           mode;
	unsigned long flags;

	spin_lock_irqsave(&user->intf->maintenance_mode_lock, flags);
	mode = user->intf->maintenance_mode;
	spin_unlock_irqrestore(&user->intf->maintenance_mode_lock, flags);

	return mode;
}
EXPORT_SYMBOL(ipmi_get_maintenance_mode);

static void maintenance_mode_update(ipmi_smi_t intf)
{
	if (intf->handlers->set_maintenance_mode)
		intf->handlers->set_maintenance_mode(
			intf->send_info, intf->maintenance_mode_enable);
}

int ipmi_set_maintenance_mode(ipmi_user_t user, int mode)
{
	int           rv = 0;
	unsigned long flags;
	ipmi_smi_t    intf = user->intf;

	spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
	if (intf->maintenance_mode != mode) {
		switch (mode) {
		case IPMI_MAINTENANCE_MODE_AUTO:
			intf->maintenance_mode_enable
				= (intf->auto_maintenance_timeout > 0);
			break;

		case IPMI_MAINTENANCE_MODE_OFF:
C
Corey Minyard 已提交
1204
			intf->maintenance_mode_enable = false;
C
Corey Minyard 已提交
1205 1206 1207
			break;

		case IPMI_MAINTENANCE_MODE_ON:
C
Corey Minyard 已提交
1208
			intf->maintenance_mode_enable = true;
C
Corey Minyard 已提交
1209 1210 1211 1212 1213 1214
			break;

		default:
			rv = -EINVAL;
			goto out_unlock;
		}
C
Corey Minyard 已提交
1215
		intf->maintenance_mode = mode;
C
Corey Minyard 已提交
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225

		maintenance_mode_update(intf);
	}
 out_unlock:
	spin_unlock_irqrestore(&intf->maintenance_mode_lock, flags);

	return rv;
}
EXPORT_SYMBOL(ipmi_set_maintenance_mode);

1226
int ipmi_set_gets_events(ipmi_user_t user, bool val)
L
Linus Torvalds 已提交
1227
{
1228 1229 1230 1231
	unsigned long        flags;
	ipmi_smi_t           intf = user->intf;
	struct ipmi_recv_msg *msg, *msg2;
	struct list_head     msgs;
L
Linus Torvalds 已提交
1232

1233 1234 1235
	INIT_LIST_HEAD(&msgs);

	spin_lock_irqsave(&intf->events_lock, flags);
1236 1237 1238
	if (user->gets_events == val)
		goto out;

L
Linus Torvalds 已提交
1239 1240
	user->gets_events = val;

1241 1242 1243 1244 1245 1246 1247
	if (val) {
		if (atomic_inc_return(&intf->event_waiters) == 1)
			need_waiter(intf);
	} else {
		atomic_dec(&intf->event_waiters);
	}

1248 1249 1250 1251 1252 1253 1254 1255 1256
	if (intf->delivering_events)
		/*
		 * Another thread is delivering events for this, so
		 * let it handle any new events.
		 */
		goto out;

	/* Deliver any queued events. */
	while (user->gets_events && !list_empty(&intf->waiting_events)) {
A
Akinobu Mita 已提交
1257 1258
		list_for_each_entry_safe(msg, msg2, &intf->waiting_events, link)
			list_move_tail(&msg->link, &msgs);
1259
		intf->waiting_events_count = 0;
1260 1261 1262 1263 1264
		if (intf->event_msg_printed) {
			printk(KERN_WARNING PFX "Event queue no longer"
			       " full\n");
			intf->event_msg_printed = 0;
		}
1265

1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
		intf->delivering_events = 1;
		spin_unlock_irqrestore(&intf->events_lock, flags);

		list_for_each_entry_safe(msg, msg2, &msgs, link) {
			msg->user = user;
			kref_get(&user->refcount);
			deliver_response(msg);
		}

		spin_lock_irqsave(&intf->events_lock, flags);
		intf->delivering_events = 0;
1277 1278
	}

1279
 out:
1280
	spin_unlock_irqrestore(&intf->events_lock, flags);
L
Linus Torvalds 已提交
1281 1282 1283

	return 0;
}
1284
EXPORT_SYMBOL(ipmi_set_gets_events);
L
Linus Torvalds 已提交
1285

1286 1287
static struct cmd_rcvr *find_cmd_rcvr(ipmi_smi_t    intf,
				      unsigned char netfn,
1288 1289
				      unsigned char cmd,
				      unsigned char chan)
1290 1291 1292 1293
{
	struct cmd_rcvr *rcvr;

	list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
1294 1295
		if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
					&& (rcvr->chans & (1 << chan)))
1296 1297 1298 1299 1300
			return rcvr;
	}
	return NULL;
}

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
static int is_cmd_rcvr_exclusive(ipmi_smi_t    intf,
				 unsigned char netfn,
				 unsigned char cmd,
				 unsigned int  chans)
{
	struct cmd_rcvr *rcvr;

	list_for_each_entry_rcu(rcvr, &intf->cmd_rcvrs, link) {
		if ((rcvr->netfn == netfn) && (rcvr->cmd == cmd)
					&& (rcvr->chans & chans))
			return 0;
	}
	return 1;
}

L
Linus Torvalds 已提交
1316 1317
int ipmi_register_for_cmd(ipmi_user_t   user,
			  unsigned char netfn,
1318 1319
			  unsigned char cmd,
			  unsigned int  chans)
L
Linus Torvalds 已提交
1320
{
1321 1322 1323
	ipmi_smi_t      intf = user->intf;
	struct cmd_rcvr *rcvr;
	int             rv = 0;
L
Linus Torvalds 已提交
1324 1325 1326


	rcvr = kmalloc(sizeof(*rcvr), GFP_KERNEL);
1327
	if (!rcvr)
L
Linus Torvalds 已提交
1328
		return -ENOMEM;
1329 1330
	rcvr->cmd = cmd;
	rcvr->netfn = netfn;
1331
	rcvr->chans = chans;
1332
	rcvr->user = user;
L
Linus Torvalds 已提交
1333

1334
	mutex_lock(&intf->cmd_rcvrs_mutex);
L
Linus Torvalds 已提交
1335
	/* Make sure the command/netfn is not already registered. */
1336
	if (!is_cmd_rcvr_exclusive(intf, netfn, cmd, chans)) {
1337 1338
		rv = -EBUSY;
		goto out_unlock;
L
Linus Torvalds 已提交
1339
	}
1340

1341 1342 1343
	if (atomic_inc_return(&intf->event_waiters) == 1)
		need_waiter(intf);

1344
	list_add_rcu(&rcvr->link, &intf->cmd_rcvrs);
L
Linus Torvalds 已提交
1345

1346
 out_unlock:
1347
	mutex_unlock(&intf->cmd_rcvrs_mutex);
L
Linus Torvalds 已提交
1348 1349 1350 1351 1352
	if (rv)
		kfree(rcvr);

	return rv;
}
1353
EXPORT_SYMBOL(ipmi_register_for_cmd);
L
Linus Torvalds 已提交
1354 1355 1356

int ipmi_unregister_for_cmd(ipmi_user_t   user,
			    unsigned char netfn,
1357 1358
			    unsigned char cmd,
			    unsigned int  chans)
L
Linus Torvalds 已提交
1359
{
1360 1361
	ipmi_smi_t      intf = user->intf;
	struct cmd_rcvr *rcvr;
1362 1363
	struct cmd_rcvr *rcvrs = NULL;
	int i, rv = -ENOENT;
L
Linus Torvalds 已提交
1364

1365
	mutex_lock(&intf->cmd_rcvrs_mutex);
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
	for (i = 0; i < IPMI_NUM_CHANNELS; i++) {
		if (((1 << i) & chans) == 0)
			continue;
		rcvr = find_cmd_rcvr(intf, netfn, cmd, i);
		if (rcvr == NULL)
			continue;
		if (rcvr->user == user) {
			rv = 0;
			rcvr->chans &= ~chans;
			if (rcvr->chans == 0) {
				list_del_rcu(&rcvr->link);
				rcvr->next = rcvrs;
				rcvrs = rcvr;
			}
		}
	}
	mutex_unlock(&intf->cmd_rcvrs_mutex);
	synchronize_rcu();
	while (rcvrs) {
1385
		atomic_dec(&intf->event_waiters);
1386 1387
		rcvr = rcvrs;
		rcvrs = rcvr->next;
1388
		kfree(rcvr);
L
Linus Torvalds 已提交
1389
	}
1390
	return rv;
L
Linus Torvalds 已提交
1391
}
1392
EXPORT_SYMBOL(ipmi_unregister_for_cmd);
L
Linus Torvalds 已提交
1393 1394 1395 1396 1397

static unsigned char
ipmb_checksum(unsigned char *data, int size)
{
	unsigned char csum = 0;
1398

L
Linus Torvalds 已提交
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
	for (; size > 0; size--, data++)
		csum += *data;

	return -csum;
}

static inline void format_ipmb_msg(struct ipmi_smi_msg   *smi_msg,
				   struct kernel_ipmi_msg *msg,
				   struct ipmi_ipmb_addr *ipmb_addr,
				   long                  msgid,
				   unsigned char         ipmb_seq,
				   int                   broadcast,
				   unsigned char         source_address,
				   unsigned char         source_lun)
{
	int i = broadcast;

	/* Format the IPMB header data. */
	smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
	smi_msg->data[1] = IPMI_SEND_MSG_CMD;
	smi_msg->data[2] = ipmb_addr->channel;
	if (broadcast)
		smi_msg->data[3] = 0;
	smi_msg->data[i+3] = ipmb_addr->slave_addr;
	smi_msg->data[i+4] = (msg->netfn << 2) | (ipmb_addr->lun & 0x3);
	smi_msg->data[i+5] = ipmb_checksum(&(smi_msg->data[i+3]), 2);
	smi_msg->data[i+6] = source_address;
	smi_msg->data[i+7] = (ipmb_seq << 2) | source_lun;
	smi_msg->data[i+8] = msg->cmd;

	/* Now tack on the data to the message. */
	if (msg->data_len > 0)
		memcpy(&(smi_msg->data[i+9]), msg->data,
		       msg->data_len);
	smi_msg->data_size = msg->data_len + 9;

	/* Now calculate the checksum and tack it on. */
	smi_msg->data[i+smi_msg->data_size]
		= ipmb_checksum(&(smi_msg->data[i+6]),
				smi_msg->data_size-6);

1440 1441 1442 1443
	/*
	 * Add on the checksum size and the offset from the
	 * broadcast.
	 */
L
Linus Torvalds 已提交
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
	smi_msg->data_size += 1 + i;

	smi_msg->msgid = msgid;
}

static inline void format_lan_msg(struct ipmi_smi_msg   *smi_msg,
				  struct kernel_ipmi_msg *msg,
				  struct ipmi_lan_addr  *lan_addr,
				  long                  msgid,
				  unsigned char         ipmb_seq,
				  unsigned char         source_lun)
{
	/* Format the IPMB header data. */
	smi_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
	smi_msg->data[1] = IPMI_SEND_MSG_CMD;
	smi_msg->data[2] = lan_addr->channel;
	smi_msg->data[3] = lan_addr->session_handle;
	smi_msg->data[4] = lan_addr->remote_SWID;
	smi_msg->data[5] = (msg->netfn << 2) | (lan_addr->lun & 0x3);
	smi_msg->data[6] = ipmb_checksum(&(smi_msg->data[4]), 2);
	smi_msg->data[7] = lan_addr->local_SWID;
	smi_msg->data[8] = (ipmb_seq << 2) | source_lun;
	smi_msg->data[9] = msg->cmd;

	/* Now tack on the data to the message. */
	if (msg->data_len > 0)
		memcpy(&(smi_msg->data[10]), msg->data,
		       msg->data_len);
	smi_msg->data_size = msg->data_len + 10;

	/* Now calculate the checksum and tack it on. */
	smi_msg->data[smi_msg->data_size]
		= ipmb_checksum(&(smi_msg->data[7]),
				smi_msg->data_size-7);

1479 1480 1481 1482
	/*
	 * Add on the checksum size and the offset from the
	 * broadcast.
	 */
L
Linus Torvalds 已提交
1483 1484 1485 1486 1487
	smi_msg->data_size += 1;

	smi_msg->msgid = msgid;
}

1488 1489 1490 1491 1492 1493
static void smi_send(ipmi_smi_t intf, struct ipmi_smi_handlers *handlers,
		     struct ipmi_smi_msg *smi_msg, int priority)
{
	handlers->sender(intf->send_info, smi_msg, 0);
}

1494 1495 1496 1497 1498 1499
/*
 * Separate from ipmi_request so that the user does not have to be
 * supplied in certain circumstances (mainly at panic time).  If
 * messages are supplied, they will be freed, even if an error
 * occurs.
 */
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
static int i_ipmi_request(ipmi_user_t          user,
			  ipmi_smi_t           intf,
			  struct ipmi_addr     *addr,
			  long                 msgid,
			  struct kernel_ipmi_msg *msg,
			  void                 *user_msg_data,
			  void                 *supplied_smi,
			  struct ipmi_recv_msg *supplied_recv,
			  int                  priority,
			  unsigned char        source_address,
			  unsigned char        source_lun,
			  int                  retries,
			  unsigned int         retry_time_ms)
L
Linus Torvalds 已提交
1513
{
1514 1515 1516 1517 1518
	int                      rv = 0;
	struct ipmi_smi_msg      *smi_msg;
	struct ipmi_recv_msg     *recv_msg;
	unsigned long            flags;
	struct ipmi_smi_handlers *handlers;
L
Linus Torvalds 已提交
1519 1520


1521
	if (supplied_recv)
L
Linus Torvalds 已提交
1522
		recv_msg = supplied_recv;
1523
	else {
L
Linus Torvalds 已提交
1524
		recv_msg = ipmi_alloc_recv_msg();
1525
		if (recv_msg == NULL)
L
Linus Torvalds 已提交
1526 1527 1528 1529
			return -ENOMEM;
	}
	recv_msg->user_msg_data = user_msg_data;

1530
	if (supplied_smi)
L
Linus Torvalds 已提交
1531
		smi_msg = (struct ipmi_smi_msg *) supplied_smi;
1532
	else {
L
Linus Torvalds 已提交
1533 1534 1535 1536 1537 1538 1539
		smi_msg = ipmi_alloc_smi_msg();
		if (smi_msg == NULL) {
			ipmi_free_recv_msg(recv_msg);
			return -ENOMEM;
		}
	}

1540 1541 1542 1543 1544 1545 1546
	rcu_read_lock();
	handlers = intf->handlers;
	if (!handlers) {
		rv = -ENODEV;
		goto out_err;
	}

L
Linus Torvalds 已提交
1547
	recv_msg->user = user;
1548 1549
	if (user)
		kref_get(&user->refcount);
L
Linus Torvalds 已提交
1550
	recv_msg->msgid = msgid;
1551 1552 1553 1554
	/*
	 * Store the message to send in the receive message so timeout
	 * responses can get the proper response data.
	 */
L
Linus Torvalds 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567
	recv_msg->msg = *msg;

	if (addr->addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE) {
		struct ipmi_system_interface_addr *smi_addr;

		if (msg->netfn & 1) {
			/* Responses are not allowed to the SMI. */
			rv = -EINVAL;
			goto out_err;
		}

		smi_addr = (struct ipmi_system_interface_addr *) addr;
		if (smi_addr->lun > 3) {
1568
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577
			rv = -EINVAL;
			goto out_err;
		}

		memcpy(&recv_msg->addr, smi_addr, sizeof(*smi_addr));

		if ((msg->netfn == IPMI_NETFN_APP_REQUEST)
		    && ((msg->cmd == IPMI_SEND_MSG_CMD)
			|| (msg->cmd == IPMI_GET_MSG_CMD)
1578 1579 1580 1581 1582
			|| (msg->cmd == IPMI_READ_EVENT_MSG_BUFFER_CMD))) {
			/*
			 * We don't let the user do these, since we manage
			 * the sequence numbers.
			 */
1583
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1584 1585 1586 1587
			rv = -EINVAL;
			goto out_err;
		}

C
Corey Minyard 已提交
1588 1589 1590
		if (((msg->netfn == IPMI_NETFN_APP_REQUEST)
		      && ((msg->cmd == IPMI_COLD_RESET_CMD)
			  || (msg->cmd == IPMI_WARM_RESET_CMD)))
1591
		     || (msg->netfn == IPMI_NETFN_FIRMWARE_REQUEST)) {
C
Corey Minyard 已提交
1592 1593 1594 1595
			spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
			intf->auto_maintenance_timeout
				= IPMI_MAINTENANCE_MODE_TIMEOUT;
			if (!intf->maintenance_mode
1596
			    && !intf->maintenance_mode_enable) {
C
Corey Minyard 已提交
1597
				intf->maintenance_mode_enable = true;
C
Corey Minyard 已提交
1598 1599 1600 1601 1602 1603
				maintenance_mode_update(intf);
			}
			spin_unlock_irqrestore(&intf->maintenance_mode_lock,
					       flags);
		}

L
Linus Torvalds 已提交
1604
		if ((msg->data_len + 2) > IPMI_MAX_MSG_LENGTH) {
1605
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
			rv = -EMSGSIZE;
			goto out_err;
		}

		smi_msg->data[0] = (msg->netfn << 2) | (smi_addr->lun & 0x3);
		smi_msg->data[1] = msg->cmd;
		smi_msg->msgid = msgid;
		smi_msg->user_data = recv_msg;
		if (msg->data_len > 0)
			memcpy(&(smi_msg->data[2]), msg->data, msg->data_len);
		smi_msg->data_size = msg->data_len + 2;
1617
		ipmi_inc_stat(intf, sent_local_commands);
1618
	} else if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) {
L
Linus Torvalds 已提交
1619 1620 1621 1622 1623
		struct ipmi_ipmb_addr *ipmb_addr;
		unsigned char         ipmb_seq;
		long                  seqid;
		int                   broadcast = 0;

1624
		if (addr->channel >= IPMI_MAX_CHANNELS) {
1625
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1626 1627 1628 1629 1630
			rv = -EINVAL;
			goto out_err;
		}

		if (intf->channels[addr->channel].medium
1631
					!= IPMI_CHANNEL_MEDIUM_IPMB) {
1632
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
			rv = -EINVAL;
			goto out_err;
		}

		if (retries < 0) {
		    if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)
			retries = 0; /* Don't retry broadcasts. */
		    else
			retries = 4;
		}
		if (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE) {
1644 1645 1646 1647 1648
		    /*
		     * Broadcasts add a zero at the beginning of the
		     * message, but otherwise is the same as an IPMB
		     * address.
		     */
L
Linus Torvalds 已提交
1649 1650 1651 1652 1653 1654 1655 1656 1657
		    addr->addr_type = IPMI_IPMB_ADDR_TYPE;
		    broadcast = 1;
		}


		/* Default to 1 second retries. */
		if (retry_time_ms == 0)
		    retry_time_ms = 1000;

1658 1659 1660 1661
		/*
		 * 9 for the header and 1 for the checksum, plus
		 * possibly one for the broadcast.
		 */
L
Linus Torvalds 已提交
1662
		if ((msg->data_len + 10 + broadcast) > IPMI_MAX_MSG_LENGTH) {
1663
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1664 1665 1666 1667 1668 1669
			rv = -EMSGSIZE;
			goto out_err;
		}

		ipmb_addr = (struct ipmi_ipmb_addr *) addr;
		if (ipmb_addr->lun > 3) {
1670
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1671 1672 1673 1674 1675 1676 1677
			rv = -EINVAL;
			goto out_err;
		}

		memcpy(&recv_msg->addr, ipmb_addr, sizeof(*ipmb_addr));

		if (recv_msg->msg.netfn & 0x1) {
1678 1679 1680 1681
			/*
			 * It's a response, so use the user's sequence
			 * from msgid.
			 */
1682
			ipmi_inc_stat(intf, sent_ipmb_responses);
L
Linus Torvalds 已提交
1683 1684 1685 1686
			format_ipmb_msg(smi_msg, msg, ipmb_addr, msgid,
					msgid, broadcast,
					source_address, source_lun);

1687 1688 1689 1690
			/*
			 * Save the receive message so we can use it
			 * to deliver the response.
			 */
L
Linus Torvalds 已提交
1691 1692 1693 1694 1695 1696
			smi_msg->user_data = recv_msg;
		} else {
			/* It's a command, so get a sequence for it. */

			spin_lock_irqsave(&(intf->seq_lock), flags);

1697 1698 1699 1700
			/*
			 * Create a sequence number with a 1 second
			 * timeout and 4 retries.
			 */
L
Linus Torvalds 已提交
1701 1702 1703 1704 1705 1706 1707 1708
			rv = intf_next_seq(intf,
					   recv_msg,
					   retry_time_ms,
					   retries,
					   broadcast,
					   &ipmb_seq,
					   &seqid);
			if (rv) {
1709 1710 1711 1712
				/*
				 * We have used up all the sequence numbers,
				 * probably, so abort.
				 */
L
Linus Torvalds 已提交
1713 1714 1715 1716 1717
				spin_unlock_irqrestore(&(intf->seq_lock),
						       flags);
				goto out_err;
			}

1718 1719
			ipmi_inc_stat(intf, sent_ipmb_commands);

1720 1721 1722 1723 1724
			/*
			 * Store the sequence number in the message,
			 * so that when the send message response
			 * comes back we can start the timer.
			 */
L
Linus Torvalds 已提交
1725 1726 1727 1728 1729
			format_ipmb_msg(smi_msg, msg, ipmb_addr,
					STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
					ipmb_seq, broadcast,
					source_address, source_lun);

1730 1731 1732 1733
			/*
			 * Copy the message into the recv message data, so we
			 * can retransmit it later if necessary.
			 */
L
Linus Torvalds 已提交
1734 1735 1736 1737 1738
			memcpy(recv_msg->msg_data, smi_msg->data,
			       smi_msg->data_size);
			recv_msg->msg.data = recv_msg->msg_data;
			recv_msg->msg.data_len = smi_msg->data_size;

1739 1740 1741 1742 1743 1744 1745 1746
			/*
			 * We don't unlock until here, because we need
			 * to copy the completed message into the
			 * recv_msg before we release the lock.
			 * Otherwise, race conditions may bite us.  I
			 * know that's pretty paranoid, but I prefer
			 * to be correct.
			 */
L
Linus Torvalds 已提交
1747 1748
			spin_unlock_irqrestore(&(intf->seq_lock), flags);
		}
1749
	} else if (is_lan_addr(addr)) {
L
Linus Torvalds 已提交
1750 1751 1752 1753
		struct ipmi_lan_addr  *lan_addr;
		unsigned char         ipmb_seq;
		long                  seqid;

1754
		if (addr->channel >= IPMI_MAX_CHANNELS) {
1755
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1756 1757 1758 1759 1760
			rv = -EINVAL;
			goto out_err;
		}

		if ((intf->channels[addr->channel].medium
1761
				!= IPMI_CHANNEL_MEDIUM_8023LAN)
L
Linus Torvalds 已提交
1762
		    && (intf->channels[addr->channel].medium
1763
				!= IPMI_CHANNEL_MEDIUM_ASYNC)) {
1764
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
			rv = -EINVAL;
			goto out_err;
		}

		retries = 4;

		/* Default to 1 second retries. */
		if (retry_time_ms == 0)
		    retry_time_ms = 1000;

		/* 11 for the header and 1 for the checksum. */
		if ((msg->data_len + 12) > IPMI_MAX_MSG_LENGTH) {
1777
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1778 1779 1780 1781 1782 1783
			rv = -EMSGSIZE;
			goto out_err;
		}

		lan_addr = (struct ipmi_lan_addr *) addr;
		if (lan_addr->lun > 3) {
1784
			ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1785 1786 1787 1788 1789 1790 1791
			rv = -EINVAL;
			goto out_err;
		}

		memcpy(&recv_msg->addr, lan_addr, sizeof(*lan_addr));

		if (recv_msg->msg.netfn & 0x1) {
1792 1793 1794 1795
			/*
			 * It's a response, so use the user's sequence
			 * from msgid.
			 */
1796
			ipmi_inc_stat(intf, sent_lan_responses);
L
Linus Torvalds 已提交
1797 1798 1799
			format_lan_msg(smi_msg, msg, lan_addr, msgid,
				       msgid, source_lun);

1800 1801 1802 1803
			/*
			 * Save the receive message so we can use it
			 * to deliver the response.
			 */
L
Linus Torvalds 已提交
1804 1805 1806 1807 1808 1809
			smi_msg->user_data = recv_msg;
		} else {
			/* It's a command, so get a sequence for it. */

			spin_lock_irqsave(&(intf->seq_lock), flags);

1810 1811 1812 1813
			/*
			 * Create a sequence number with a 1 second
			 * timeout and 4 retries.
			 */
L
Linus Torvalds 已提交
1814 1815 1816 1817 1818 1819 1820 1821
			rv = intf_next_seq(intf,
					   recv_msg,
					   retry_time_ms,
					   retries,
					   0,
					   &ipmb_seq,
					   &seqid);
			if (rv) {
1822 1823 1824 1825
				/*
				 * We have used up all the sequence numbers,
				 * probably, so abort.
				 */
L
Linus Torvalds 已提交
1826 1827 1828 1829 1830
				spin_unlock_irqrestore(&(intf->seq_lock),
						       flags);
				goto out_err;
			}

1831 1832
			ipmi_inc_stat(intf, sent_lan_commands);

1833 1834 1835 1836 1837
			/*
			 * Store the sequence number in the message,
			 * so that when the send message response
			 * comes back we can start the timer.
			 */
L
Linus Torvalds 已提交
1838 1839 1840 1841
			format_lan_msg(smi_msg, msg, lan_addr,
				       STORE_SEQ_IN_MSGID(ipmb_seq, seqid),
				       ipmb_seq, source_lun);

1842 1843 1844 1845
			/*
			 * Copy the message into the recv message data, so we
			 * can retransmit it later if necessary.
			 */
L
Linus Torvalds 已提交
1846 1847 1848 1849 1850
			memcpy(recv_msg->msg_data, smi_msg->data,
			       smi_msg->data_size);
			recv_msg->msg.data = recv_msg->msg_data;
			recv_msg->msg.data_len = smi_msg->data_size;

1851 1852 1853 1854 1855 1856 1857 1858
			/*
			 * We don't unlock until here, because we need
			 * to copy the completed message into the
			 * recv_msg before we release the lock.
			 * Otherwise, race conditions may bite us.  I
			 * know that's pretty paranoid, but I prefer
			 * to be correct.
			 */
L
Linus Torvalds 已提交
1859 1860 1861 1862
			spin_unlock_irqrestore(&(intf->seq_lock), flags);
		}
	} else {
	    /* Unknown address type. */
1863
		ipmi_inc_stat(intf, sent_invalid_commands);
L
Linus Torvalds 已提交
1864 1865 1866 1867 1868 1869 1870
		rv = -EINVAL;
		goto out_err;
	}

#ifdef DEBUG_MSGING
	{
		int m;
C
Corey Minyard 已提交
1871
		for (m = 0; m < smi_msg->data_size; m++)
L
Linus Torvalds 已提交
1872 1873 1874 1875
			printk(" %2.2x", smi_msg->data[m]);
		printk("\n");
	}
#endif
1876

1877
	smi_send(intf, handlers, smi_msg, priority);
1878
	rcu_read_unlock();
L
Linus Torvalds 已提交
1879 1880 1881 1882

	return 0;

 out_err:
1883
	rcu_read_unlock();
L
Linus Torvalds 已提交
1884 1885 1886 1887 1888
	ipmi_free_smi_msg(smi_msg);
	ipmi_free_recv_msg(recv_msg);
	return rv;
}

1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
static int check_addr(ipmi_smi_t       intf,
		      struct ipmi_addr *addr,
		      unsigned char    *saddr,
		      unsigned char    *lun)
{
	if (addr->channel >= IPMI_MAX_CHANNELS)
		return -EINVAL;
	*lun = intf->channels[addr->channel].lun;
	*saddr = intf->channels[addr->channel].address;
	return 0;
}

L
Linus Torvalds 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909
int ipmi_request_settime(ipmi_user_t      user,
			 struct ipmi_addr *addr,
			 long             msgid,
			 struct kernel_ipmi_msg  *msg,
			 void             *user_msg_data,
			 int              priority,
			 int              retries,
			 unsigned int     retry_time_ms)
{
1910
	unsigned char saddr = 0, lun = 0;
1911 1912
	int           rv;

1913
	if (!user)
1914
		return -EINVAL;
1915 1916 1917
	rv = check_addr(user->intf, addr, &saddr, &lun);
	if (rv)
		return rv;
L
Linus Torvalds 已提交
1918 1919 1920 1921 1922 1923 1924 1925
	return i_ipmi_request(user,
			      user->intf,
			      addr,
			      msgid,
			      msg,
			      user_msg_data,
			      NULL, NULL,
			      priority,
1926 1927
			      saddr,
			      lun,
L
Linus Torvalds 已提交
1928 1929 1930
			      retries,
			      retry_time_ms);
}
1931
EXPORT_SYMBOL(ipmi_request_settime);
L
Linus Torvalds 已提交
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941

int ipmi_request_supply_msgs(ipmi_user_t          user,
			     struct ipmi_addr     *addr,
			     long                 msgid,
			     struct kernel_ipmi_msg *msg,
			     void                 *user_msg_data,
			     void                 *supplied_smi,
			     struct ipmi_recv_msg *supplied_recv,
			     int                  priority)
{
1942
	unsigned char saddr = 0, lun = 0;
1943 1944
	int           rv;

1945
	if (!user)
1946
		return -EINVAL;
1947 1948 1949
	rv = check_addr(user->intf, addr, &saddr, &lun);
	if (rv)
		return rv;
L
Linus Torvalds 已提交
1950 1951 1952 1953 1954 1955 1956 1957 1958
	return i_ipmi_request(user,
			      user->intf,
			      addr,
			      msgid,
			      msg,
			      user_msg_data,
			      supplied_smi,
			      supplied_recv,
			      priority,
1959 1960
			      saddr,
			      lun,
L
Linus Torvalds 已提交
1961 1962
			      -1, 0);
}
1963
EXPORT_SYMBOL(ipmi_request_supply_msgs);
L
Linus Torvalds 已提交
1964

1965
#ifdef CONFIG_PROC_FS
1966
static int smi_ipmb_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
1967
{
1968
	ipmi_smi_t intf = m->private;
1969
	int        i;
L
Linus Torvalds 已提交
1970

1971 1972 1973 1974
	seq_printf(m, "%x", intf->channels[0].address);
	for (i = 1; i < IPMI_MAX_CHANNELS; i++)
		seq_printf(m, " %x", intf->channels[i].address);
	return seq_putc(m, '\n');
L
Linus Torvalds 已提交
1975 1976
}

1977
static int smi_ipmb_proc_open(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
1978
{
A
Al Viro 已提交
1979
	return single_open(file, smi_ipmb_proc_show, PDE_DATA(inode));
1980
}
L
Linus Torvalds 已提交
1981

1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
static const struct file_operations smi_ipmb_proc_ops = {
	.open		= smi_ipmb_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static int smi_version_proc_show(struct seq_file *m, void *v)
{
	ipmi_smi_t intf = m->private;

	return seq_printf(m, "%u.%u\n",
1994 1995
		       ipmi_version_major(&intf->bmc->id),
		       ipmi_version_minor(&intf->bmc->id));
L
Linus Torvalds 已提交
1996 1997
}

1998
static int smi_version_proc_open(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
1999
{
A
Al Viro 已提交
2000
	return single_open(file, smi_version_proc_show, PDE_DATA(inode));
2001 2002 2003 2004 2005 2006 2007 2008
}

static const struct file_operations smi_version_proc_ops = {
	.open		= smi_version_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};
L
Linus Torvalds 已提交
2009

2010 2011 2012 2013 2014
static int smi_stats_proc_show(struct seq_file *m, void *v)
{
	ipmi_smi_t intf = m->private;

	seq_printf(m, "sent_invalid_commands:       %u\n",
2015
		       ipmi_get_stat(intf, sent_invalid_commands));
2016
	seq_printf(m, "sent_local_commands:         %u\n",
2017
		       ipmi_get_stat(intf, sent_local_commands));
2018
	seq_printf(m, "handled_local_responses:     %u\n",
2019
		       ipmi_get_stat(intf, handled_local_responses));
2020
	seq_printf(m, "unhandled_local_responses:   %u\n",
2021
		       ipmi_get_stat(intf, unhandled_local_responses));
2022
	seq_printf(m, "sent_ipmb_commands:          %u\n",
2023
		       ipmi_get_stat(intf, sent_ipmb_commands));
2024
	seq_printf(m, "sent_ipmb_command_errs:      %u\n",
2025
		       ipmi_get_stat(intf, sent_ipmb_command_errs));
2026
	seq_printf(m, "retransmitted_ipmb_commands: %u\n",
2027
		       ipmi_get_stat(intf, retransmitted_ipmb_commands));
2028
	seq_printf(m, "timed_out_ipmb_commands:     %u\n",
2029
		       ipmi_get_stat(intf, timed_out_ipmb_commands));
2030
	seq_printf(m, "timed_out_ipmb_broadcasts:   %u\n",
2031
		       ipmi_get_stat(intf, timed_out_ipmb_broadcasts));
2032
	seq_printf(m, "sent_ipmb_responses:         %u\n",
2033
		       ipmi_get_stat(intf, sent_ipmb_responses));
2034
	seq_printf(m, "handled_ipmb_responses:      %u\n",
2035
		       ipmi_get_stat(intf, handled_ipmb_responses));
2036
	seq_printf(m, "invalid_ipmb_responses:      %u\n",
2037
		       ipmi_get_stat(intf, invalid_ipmb_responses));
2038
	seq_printf(m, "unhandled_ipmb_responses:    %u\n",
2039
		       ipmi_get_stat(intf, unhandled_ipmb_responses));
2040
	seq_printf(m, "sent_lan_commands:           %u\n",
2041
		       ipmi_get_stat(intf, sent_lan_commands));
2042
	seq_printf(m, "sent_lan_command_errs:       %u\n",
2043
		       ipmi_get_stat(intf, sent_lan_command_errs));
2044
	seq_printf(m, "retransmitted_lan_commands:  %u\n",
2045
		       ipmi_get_stat(intf, retransmitted_lan_commands));
2046
	seq_printf(m, "timed_out_lan_commands:      %u\n",
2047
		       ipmi_get_stat(intf, timed_out_lan_commands));
2048
	seq_printf(m, "sent_lan_responses:          %u\n",
2049
		       ipmi_get_stat(intf, sent_lan_responses));
2050
	seq_printf(m, "handled_lan_responses:       %u\n",
2051
		       ipmi_get_stat(intf, handled_lan_responses));
2052
	seq_printf(m, "invalid_lan_responses:       %u\n",
2053
		       ipmi_get_stat(intf, invalid_lan_responses));
2054
	seq_printf(m, "unhandled_lan_responses:     %u\n",
2055
		       ipmi_get_stat(intf, unhandled_lan_responses));
2056
	seq_printf(m, "handled_commands:            %u\n",
2057
		       ipmi_get_stat(intf, handled_commands));
2058
	seq_printf(m, "invalid_commands:            %u\n",
2059
		       ipmi_get_stat(intf, invalid_commands));
2060
	seq_printf(m, "unhandled_commands:          %u\n",
2061
		       ipmi_get_stat(intf, unhandled_commands));
2062
	seq_printf(m, "invalid_events:              %u\n",
2063
		       ipmi_get_stat(intf, invalid_events));
2064
	seq_printf(m, "events:                      %u\n",
2065
		       ipmi_get_stat(intf, events));
2066
	seq_printf(m, "failed rexmit LAN msgs:      %u\n",
2067
		       ipmi_get_stat(intf, dropped_rexmit_lan_commands));
2068
	seq_printf(m, "failed rexmit IPMB msgs:     %u\n",
2069
		       ipmi_get_stat(intf, dropped_rexmit_ipmb_commands));
2070 2071
	return 0;
}
L
Linus Torvalds 已提交
2072

2073 2074
static int smi_stats_proc_open(struct inode *inode, struct file *file)
{
A
Al Viro 已提交
2075
	return single_open(file, smi_stats_proc_show, PDE_DATA(inode));
L
Linus Torvalds 已提交
2076
}
2077 2078 2079 2080 2081 2082 2083

static const struct file_operations smi_stats_proc_ops = {
	.open		= smi_stats_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};
2084
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
2085 2086

int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
2087
			    const struct file_operations *proc_ops,
2088
			    void *data)
L
Linus Torvalds 已提交
2089 2090
{
	int                    rv = 0;
2091 2092
#ifdef CONFIG_PROC_FS
	struct proc_dir_entry  *file;
L
Linus Torvalds 已提交
2093 2094 2095 2096 2097 2098
	struct ipmi_proc_entry *entry;

	/* Create a list element. */
	entry = kmalloc(sizeof(*entry), GFP_KERNEL);
	if (!entry)
		return -ENOMEM;
2099
	entry->name = kstrdup(name, GFP_KERNEL);
L
Linus Torvalds 已提交
2100 2101 2102 2103 2104
	if (!entry->name) {
		kfree(entry);
		return -ENOMEM;
	}

2105
	file = proc_create_data(name, 0, smi->proc_dir, proc_ops, data);
L
Linus Torvalds 已提交
2106 2107 2108 2109 2110
	if (!file) {
		kfree(entry->name);
		kfree(entry);
		rv = -ENOMEM;
	} else {
C
Corey Minyard 已提交
2111
		mutex_lock(&smi->proc_entry_lock);
L
Linus Torvalds 已提交
2112 2113 2114
		/* Stick it on the list. */
		entry->next = smi->proc_entries;
		smi->proc_entries = entry;
C
Corey Minyard 已提交
2115
		mutex_unlock(&smi->proc_entry_lock);
L
Linus Torvalds 已提交
2116
	}
2117
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
2118 2119 2120

	return rv;
}
2121
EXPORT_SYMBOL(ipmi_smi_add_proc_entry);
L
Linus Torvalds 已提交
2122 2123 2124 2125 2126

static int add_proc_entries(ipmi_smi_t smi, int num)
{
	int rv = 0;

2127
#ifdef CONFIG_PROC_FS
L
Linus Torvalds 已提交
2128 2129 2130 2131 2132 2133 2134
	sprintf(smi->proc_dir_name, "%d", num);
	smi->proc_dir = proc_mkdir(smi->proc_dir_name, proc_ipmi_root);
	if (!smi->proc_dir)
		rv = -ENOMEM;

	if (rv == 0)
		rv = ipmi_smi_add_proc_entry(smi, "stats",
2135
					     &smi_stats_proc_ops,
2136
					     smi);
L
Linus Torvalds 已提交
2137 2138 2139

	if (rv == 0)
		rv = ipmi_smi_add_proc_entry(smi, "ipmb",
2140
					     &smi_ipmb_proc_ops,
2141
					     smi);
L
Linus Torvalds 已提交
2142 2143 2144

	if (rv == 0)
		rv = ipmi_smi_add_proc_entry(smi, "version",
2145
					     &smi_version_proc_ops,
2146
					     smi);
2147
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
2148 2149 2150 2151 2152 2153

	return rv;
}

static void remove_proc_entries(ipmi_smi_t smi)
{
2154
#ifdef CONFIG_PROC_FS
L
Linus Torvalds 已提交
2155 2156
	struct ipmi_proc_entry *entry;

C
Corey Minyard 已提交
2157
	mutex_lock(&smi->proc_entry_lock);
L
Linus Torvalds 已提交
2158 2159 2160 2161 2162 2163 2164 2165
	while (smi->proc_entries) {
		entry = smi->proc_entries;
		smi->proc_entries = entry->next;

		remove_proc_entry(entry->name, smi->proc_dir);
		kfree(entry->name);
		kfree(entry);
	}
C
Corey Minyard 已提交
2166
	mutex_unlock(&smi->proc_entry_lock);
L
Linus Torvalds 已提交
2167
	remove_proc_entry(smi->proc_dir_name, proc_ipmi_root);
2168
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
2169 2170
}

2171 2172 2173
static int __find_bmc_guid(struct device *dev, void *data)
{
	unsigned char *id = data;
2174
	struct bmc_device *bmc = to_bmc_device(dev);
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
	return memcmp(bmc->guid, id, 16) == 0;
}

static struct bmc_device *ipmi_find_bmc_guid(struct device_driver *drv,
					     unsigned char *guid)
{
	struct device *dev;

	dev = driver_find_device(drv, NULL, guid, __find_bmc_guid);
	if (dev)
2185
		return to_bmc_device(dev);
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
	else
		return NULL;
}

struct prod_dev_id {
	unsigned int  product_id;
	unsigned char device_id;
};

static int __find_bmc_prod_dev_id(struct device *dev, void *data)
{
	struct prod_dev_id *id = data;
2198
	struct bmc_device *bmc = to_bmc_device(dev);
2199 2200 2201 2202 2203 2204 2205

	return (bmc->id.product_id == id->product_id
		&& bmc->id.device_id == id->device_id);
}

static struct bmc_device *ipmi_find_bmc_prod_dev_id(
	struct device_driver *drv,
2206
	unsigned int product_id, unsigned char device_id)
2207 2208 2209 2210 2211 2212 2213 2214 2215
{
	struct prod_dev_id id = {
		.product_id = product_id,
		.device_id = device_id,
	};
	struct device *dev;

	dev = driver_find_device(drv, NULL, &id, __find_bmc_prod_dev_id);
	if (dev)
2216
		return to_bmc_device(dev);
2217 2218 2219 2220 2221 2222 2223 2224
	else
		return NULL;
}

static ssize_t device_id_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
2225
	struct bmc_device *bmc = to_bmc_device(dev);
2226 2227 2228

	return snprintf(buf, 10, "%u\n", bmc->id.device_id);
}
2229
DEVICE_ATTR(device_id, S_IRUGO, device_id_show, NULL);
2230

2231 2232 2233
static ssize_t provides_device_sdrs_show(struct device *dev,
					 struct device_attribute *attr,
					 char *buf)
2234
{
2235
	struct bmc_device *bmc = to_bmc_device(dev);
2236 2237

	return snprintf(buf, 10, "%u\n",
C
Corey Minyard 已提交
2238
			(bmc->id.device_revision & 0x80) >> 7);
2239
}
2240
DEVICE_ATTR(provides_device_sdrs, S_IRUGO, provides_device_sdrs_show, NULL);
2241 2242 2243 2244

static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
			     char *buf)
{
2245
	struct bmc_device *bmc = to_bmc_device(dev);
2246 2247

	return snprintf(buf, 20, "%u\n",
C
Corey Minyard 已提交
2248
			bmc->id.device_revision & 0x0F);
2249
}
2250
DEVICE_ATTR(revision, S_IRUGO, revision_show, NULL);
2251

2252 2253 2254
static ssize_t firmware_revision_show(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
2255
{
2256
	struct bmc_device *bmc = to_bmc_device(dev);
2257 2258 2259 2260

	return snprintf(buf, 20, "%u.%x\n", bmc->id.firmware_revision_1,
			bmc->id.firmware_revision_2);
}
2261
DEVICE_ATTR(firmware_revision, S_IRUGO, firmware_revision_show, NULL);
2262 2263 2264 2265 2266

static ssize_t ipmi_version_show(struct device *dev,
				 struct device_attribute *attr,
				 char *buf)
{
2267
	struct bmc_device *bmc = to_bmc_device(dev);
2268 2269 2270 2271 2272

	return snprintf(buf, 20, "%u.%u\n",
			ipmi_version_major(&bmc->id),
			ipmi_version_minor(&bmc->id));
}
2273
DEVICE_ATTR(ipmi_version, S_IRUGO, ipmi_version_show, NULL);
2274 2275 2276 2277 2278

static ssize_t add_dev_support_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
2279
	struct bmc_device *bmc = to_bmc_device(dev);
2280 2281 2282 2283

	return snprintf(buf, 10, "0x%02x\n",
			bmc->id.additional_device_support);
}
2284
DEVICE_ATTR(additional_device_support, S_IRUGO, add_dev_support_show, NULL);
2285 2286 2287 2288 2289

static ssize_t manufacturer_id_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
2290
	struct bmc_device *bmc = to_bmc_device(dev);
2291 2292 2293

	return snprintf(buf, 20, "0x%6.6x\n", bmc->id.manufacturer_id);
}
2294
DEVICE_ATTR(manufacturer_id, S_IRUGO, manufacturer_id_show, NULL);
2295 2296 2297 2298 2299

static ssize_t product_id_show(struct device *dev,
			       struct device_attribute *attr,
			       char *buf)
{
2300
	struct bmc_device *bmc = to_bmc_device(dev);
2301 2302 2303

	return snprintf(buf, 10, "0x%4.4x\n", bmc->id.product_id);
}
2304
DEVICE_ATTR(product_id, S_IRUGO, product_id_show, NULL);
2305 2306 2307 2308 2309

static ssize_t aux_firmware_rev_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
2310
	struct bmc_device *bmc = to_bmc_device(dev);
2311 2312 2313 2314 2315 2316 2317

	return snprintf(buf, 21, "0x%02x 0x%02x 0x%02x 0x%02x\n",
			bmc->id.aux_firmware_revision[3],
			bmc->id.aux_firmware_revision[2],
			bmc->id.aux_firmware_revision[1],
			bmc->id.aux_firmware_revision[0]);
}
2318
DEVICE_ATTR(aux_firmware_revision, S_IRUGO, aux_firmware_rev_show, NULL);
2319 2320 2321 2322

static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
			 char *buf)
{
2323
	struct bmc_device *bmc = to_bmc_device(dev);
2324 2325 2326 2327 2328

	return snprintf(buf, 100, "%Lx%Lx\n",
			(long long) bmc->guid[0],
			(long long) bmc->guid[8]);
}
2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
DEVICE_ATTR(guid, S_IRUGO, guid_show, NULL);

static struct attribute *bmc_dev_attrs[] = {
	&dev_attr_device_id.attr,
	&dev_attr_provides_device_sdrs.attr,
	&dev_attr_revision.attr,
	&dev_attr_firmware_revision.attr,
	&dev_attr_ipmi_version.attr,
	&dev_attr_additional_device_support.attr,
	&dev_attr_manufacturer_id.attr,
	&dev_attr_product_id.attr,
	NULL
};
2342

2343 2344 2345
static struct attribute_group bmc_dev_attr_group = {
	.attrs		= bmc_dev_attrs,
};
J
Jeff Garzik 已提交
2346

2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359
static const struct attribute_group *bmc_dev_attr_groups[] = {
	&bmc_dev_attr_group,
	NULL
};

static struct device_type bmc_device_type = {
	.groups		= bmc_dev_attr_groups,
};

static void
release_bmc_device(struct device *dev)
{
	kfree(to_bmc_device(dev));
J
Jeff Garzik 已提交
2360 2361 2362 2363 2364
}

static void
cleanup_bmc_device(struct kref *ref)
{
2365
	struct bmc_device *bmc = container_of(ref, struct bmc_device, usecount);
J
Jeff Garzik 已提交
2366

2367 2368 2369 2370 2371 2372
	if (bmc->id.aux_firmware_revision_set)
		device_remove_file(&bmc->pdev.dev,
				   &bmc->aux_firmware_rev_attr);
	if (bmc->guid_set)
		device_remove_file(&bmc->pdev.dev,
				   &bmc->guid_attr);
J
Jeff Garzik 已提交
2373

2374
	platform_device_unregister(&bmc->pdev);
2375 2376 2377 2378 2379 2380
}

static void ipmi_bmc_unregister(ipmi_smi_t intf)
{
	struct bmc_device *bmc = intf->bmc;

2381
	sysfs_remove_link(&intf->si_dev->kobj, "bmc");
2382
	if (intf->my_dev_name) {
2383
		sysfs_remove_link(&bmc->pdev.dev.kobj, intf->my_dev_name);
2384 2385 2386 2387 2388
		kfree(intf->my_dev_name);
		intf->my_dev_name = NULL;
	}

	mutex_lock(&ipmidriver_mutex);
2389
	kref_put(&bmc->usecount, cleanup_bmc_device);
2390
	intf->bmc = NULL;
2391 2392 2393
	mutex_unlock(&ipmidriver_mutex);
}

2394
static int create_bmc_files(struct bmc_device *bmc)
J
Jeff Garzik 已提交
2395 2396 2397 2398
{
	int err;

	if (bmc->id.aux_firmware_revision_set) {
2399
		bmc->aux_firmware_rev_attr.attr.name = "aux_firmware_revision";
2400
		err = device_create_file(&bmc->pdev.dev,
J
Jeff Garzik 已提交
2401
				   &bmc->aux_firmware_rev_attr);
2402
		if (err)
2403
			goto out;
J
Jeff Garzik 已提交
2404 2405
	}
	if (bmc->guid_set) {
2406
		bmc->guid_attr.attr.name = "guid";
2407
		err = device_create_file(&bmc->pdev.dev,
J
Jeff Garzik 已提交
2408
				   &bmc->guid_attr);
2409 2410
		if (err)
			goto out_aux_firm;
J
Jeff Garzik 已提交
2411 2412 2413 2414 2415 2416
	}

	return 0;

out_aux_firm:
	if (bmc->id.aux_firmware_revision_set)
2417
		device_remove_file(&bmc->pdev.dev,
J
Jeff Garzik 已提交
2418 2419 2420 2421 2422
				   &bmc->aux_firmware_rev_attr);
out:
	return err;
}

2423
static int ipmi_bmc_register(ipmi_smi_t intf, int ifnum)
2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435
{
	int               rv;
	struct bmc_device *bmc = intf->bmc;
	struct bmc_device *old_bmc;

	mutex_lock(&ipmidriver_mutex);

	/*
	 * Try to find if there is an bmc_device struct
	 * representing the interfaced BMC already
	 */
	if (bmc->guid_set)
2436
		old_bmc = ipmi_find_bmc_guid(&ipmidriver.driver, bmc->guid);
2437
	else
2438
		old_bmc = ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450
						    bmc->id.product_id,
						    bmc->id.device_id);

	/*
	 * If there is already an bmc_device, free the new one,
	 * otherwise register the new BMC device
	 */
	if (old_bmc) {
		kfree(bmc);
		intf->bmc = old_bmc;
		bmc = old_bmc;

2451
		kref_get(&bmc->usecount);
2452 2453 2454 2455 2456 2457 2458 2459 2460
		mutex_unlock(&ipmidriver_mutex);

		printk(KERN_INFO
		       "ipmi: interfacing existing BMC (man_id: 0x%6.6x,"
		       " prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
		       bmc->id.manufacturer_id,
		       bmc->id.product_id,
		       bmc->id.device_id);
	} else {
2461 2462 2463
		unsigned char orig_dev_id = bmc->id.device_id;
		int warn_printed = 0;

2464
		snprintf(bmc->name, sizeof(bmc->name),
2465
			 "ipmi_bmc.%4.4x", bmc->id.product_id);
2466
		bmc->pdev.name = bmc->name;
2467

2468
		while (ipmi_find_bmc_prod_dev_id(&ipmidriver.driver,
2469
						 bmc->id.product_id,
C
Corey Minyard 已提交
2470
						 bmc->id.device_id)) {
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
			if (!warn_printed) {
				printk(KERN_WARNING PFX
				       "This machine has two different BMCs"
				       " with the same product id and device"
				       " id.  This is an error in the"
				       " firmware, but incrementing the"
				       " device id to work around the problem."
				       " Prod ID = 0x%x, Dev ID = 0x%x\n",
				       bmc->id.product_id, bmc->id.device_id);
				warn_printed = 1;
			}
			bmc->id.device_id++; /* Wraps at 255 */
			if (bmc->id.device_id == orig_dev_id) {
				printk(KERN_ERR PFX
				       "Out of device ids!\n");
				break;
			}
		}

2490 2491 2492 2493
		bmc->pdev.dev.driver = &ipmidriver.driver;
		bmc->pdev.id = bmc->id.device_id;
		bmc->pdev.dev.release = release_bmc_device;
		bmc->pdev.dev.type = &bmc_device_type;
2494
		kref_init(&bmc->usecount);
2495

2496
		rv = platform_device_register(&bmc->pdev);
2497 2498
		mutex_unlock(&ipmidriver_mutex);
		if (rv) {
2499
			put_device(&bmc->pdev.dev);
2500 2501 2502 2503
			printk(KERN_ERR
			       "ipmi_msghandler:"
			       " Unable to register bmc device: %d\n",
			       rv);
2504 2505 2506 2507
			/*
			 * Don't go to out_err, you can only do that if
			 * the device is registered already.
			 */
2508 2509 2510
			return rv;
		}

2511
		rv = create_bmc_files(bmc);
J
Jeff Garzik 已提交
2512 2513
		if (rv) {
			mutex_lock(&ipmidriver_mutex);
2514
			platform_device_unregister(&bmc->pdev);
J
Jeff Garzik 已提交
2515 2516 2517 2518
			mutex_unlock(&ipmidriver_mutex);

			return rv;
		}
2519

2520 2521 2522 2523 2524
		dev_info(intf->si_dev, "Found new BMC (man_id: 0x%6.6x, "
			 "prod_id: 0x%4.4x, dev_id: 0x%2.2x)\n",
			 bmc->id.manufacturer_id,
			 bmc->id.product_id,
			 bmc->id.device_id);
2525 2526 2527 2528 2529 2530
	}

	/*
	 * create symlink from system interface device to bmc device
	 * and back.
	 */
2531
	rv = sysfs_create_link(&intf->si_dev->kobj, &bmc->pdev.dev.kobj, "bmc");
2532 2533 2534 2535 2536 2537 2538
	if (rv) {
		printk(KERN_ERR
		       "ipmi_msghandler: Unable to create bmc symlink: %d\n",
		       rv);
		goto out_err;
	}

2539
	intf->my_dev_name = kasprintf(GFP_KERNEL, "ipmi%d", ifnum);
2540 2541 2542 2543 2544 2545 2546 2547
	if (!intf->my_dev_name) {
		rv = -ENOMEM;
		printk(KERN_ERR
		       "ipmi_msghandler: allocate link from BMC: %d\n",
		       rv);
		goto out_err;
	}

2548
	rv = sysfs_create_link(&bmc->pdev.dev.kobj, &intf->si_dev->kobj,
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640
			       intf->my_dev_name);
	if (rv) {
		kfree(intf->my_dev_name);
		intf->my_dev_name = NULL;
		printk(KERN_ERR
		       "ipmi_msghandler:"
		       " Unable to create symlink to bmc: %d\n",
		       rv);
		goto out_err;
	}

	return 0;

out_err:
	ipmi_bmc_unregister(intf);
	return rv;
}

static int
send_guid_cmd(ipmi_smi_t intf, int chan)
{
	struct kernel_ipmi_msg            msg;
	struct ipmi_system_interface_addr si;

	si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	si.channel = IPMI_BMC_CHANNEL;
	si.lun = 0;

	msg.netfn = IPMI_NETFN_APP_REQUEST;
	msg.cmd = IPMI_GET_DEVICE_GUID_CMD;
	msg.data = NULL;
	msg.data_len = 0;
	return i_ipmi_request(NULL,
			      intf,
			      (struct ipmi_addr *) &si,
			      0,
			      &msg,
			      intf,
			      NULL,
			      NULL,
			      0,
			      intf->channels[0].address,
			      intf->channels[0].lun,
			      -1, 0);
}

static void
guid_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
{
	if ((msg->addr.addr_type != IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
	    || (msg->msg.netfn != IPMI_NETFN_APP_RESPONSE)
	    || (msg->msg.cmd != IPMI_GET_DEVICE_GUID_CMD))
		/* Not for me */
		return;

	if (msg->msg.data[0] != 0) {
		/* Error from getting the GUID, the BMC doesn't have one. */
		intf->bmc->guid_set = 0;
		goto out;
	}

	if (msg->msg.data_len < 17) {
		intf->bmc->guid_set = 0;
		printk(KERN_WARNING PFX
		       "guid_handler: The GUID response from the BMC was too"
		       " short, it was %d but should have been 17.  Assuming"
		       " GUID is not available.\n",
		       msg->msg.data_len);
		goto out;
	}

	memcpy(intf->bmc->guid, msg->msg.data, 16);
	intf->bmc->guid_set = 1;
 out:
	wake_up(&intf->waitq);
}

static void
get_guid(ipmi_smi_t intf)
{
	int rv;

	intf->bmc->guid_set = 0x2;
	intf->null_user_handler = guid_handler;
	rv = send_guid_cmd(intf, 0);
	if (rv)
		/* Send failed, no GUID available. */
		intf->bmc->guid_set = 0;
	wait_event(intf->waitq, intf->bmc->guid_set != 2);
	intf->null_user_handler = NULL;
}

L
Linus Torvalds 已提交
2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661
static int
send_channel_info_cmd(ipmi_smi_t intf, int chan)
{
	struct kernel_ipmi_msg            msg;
	unsigned char                     data[1];
	struct ipmi_system_interface_addr si;

	si.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	si.channel = IPMI_BMC_CHANNEL;
	si.lun = 0;

	msg.netfn = IPMI_NETFN_APP_REQUEST;
	msg.cmd = IPMI_GET_CHANNEL_INFO_CMD;
	msg.data = data;
	msg.data_len = 1;
	data[0] = chan;
	return i_ipmi_request(NULL,
			      intf,
			      (struct ipmi_addr *) &si,
			      0,
			      &msg,
2662
			      intf,
L
Linus Torvalds 已提交
2663 2664 2665
			      NULL,
			      NULL,
			      0,
2666 2667
			      intf->channels[0].address,
			      intf->channels[0].lun,
L
Linus Torvalds 已提交
2668 2669 2670 2671
			      -1, 0);
}

static void
2672
channel_handler(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
L
Linus Torvalds 已提交
2673 2674 2675 2676
{
	int rv = 0;
	int chan;

2677 2678
	if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
	    && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
2679
	    && (msg->msg.cmd == IPMI_GET_CHANNEL_INFO_CMD)) {
L
Linus Torvalds 已提交
2680
		/* It's the one we want */
2681
		if (msg->msg.data[0] != 0) {
L
Linus Torvalds 已提交
2682 2683
			/* Got an error from the channel, just go on. */

2684
			if (msg->msg.data[0] == IPMI_INVALID_COMMAND_ERR) {
2685 2686 2687 2688 2689 2690
				/*
				 * If the MC does not support this
				 * command, that is legal.  We just
				 * assume it has one IPMB at channel
				 * zero.
				 */
L
Linus Torvalds 已提交
2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701
				intf->channels[0].medium
					= IPMI_CHANNEL_MEDIUM_IPMB;
				intf->channels[0].protocol
					= IPMI_CHANNEL_PROTOCOL_IPMB;

				intf->curr_channel = IPMI_MAX_CHANNELS;
				wake_up(&intf->waitq);
				goto out;
			}
			goto next_channel;
		}
2702
		if (msg->msg.data_len < 4) {
L
Linus Torvalds 已提交
2703 2704 2705 2706
			/* Message not big enough, just go on. */
			goto next_channel;
		}
		chan = intf->curr_channel;
2707 2708
		intf->channels[chan].medium = msg->msg.data[2] & 0x7f;
		intf->channels[chan].protocol = msg->msg.data[3] & 0x1f;
L
Linus Torvalds 已提交
2709

2710
 next_channel:
L
Linus Torvalds 已提交
2711 2712 2713 2714 2715 2716 2717 2718
		intf->curr_channel++;
		if (intf->curr_channel >= IPMI_MAX_CHANNELS)
			wake_up(&intf->waitq);
		else
			rv = send_channel_info_cmd(intf, intf->curr_channel);

		if (rv) {
			/* Got an error somehow, just give up. */
2719 2720 2721 2722
			printk(KERN_WARNING PFX
			       "Error sending channel information for channel"
			       " %d: %d\n", intf->curr_channel, rv);

L
Linus Torvalds 已提交
2723 2724 2725 2726 2727 2728 2729 2730
			intf->curr_channel = IPMI_MAX_CHANNELS;
			wake_up(&intf->waitq);
		}
	}
 out:
	return;
}

2731
static void ipmi_poll(ipmi_smi_t intf)
C
Corey Minyard 已提交
2732 2733 2734
{
	if (intf->handlers->poll)
		intf->handlers->poll(intf->send_info);
2735 2736
	/* In case something came in */
	handle_new_recv_msgs(intf);
C
Corey Minyard 已提交
2737
}
2738 2739 2740 2741

void ipmi_poll_interface(ipmi_user_t user)
{
	ipmi_poll(user->intf);
C
Corey Minyard 已提交
2742
}
2743
EXPORT_SYMBOL(ipmi_poll_interface);
C
Corey Minyard 已提交
2744

L
Linus Torvalds 已提交
2745 2746
int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
		      void		       *send_info,
2747 2748
		      struct ipmi_device_id    *device_id,
		      struct device            *si_dev,
2749
		      unsigned char            slave_addr)
L
Linus Torvalds 已提交
2750 2751 2752
{
	int              i, j;
	int              rv;
2753
	ipmi_smi_t       intf;
2754 2755
	ipmi_smi_t       tintf;
	struct list_head *link;
L
Linus Torvalds 已提交
2756

2757 2758 2759 2760
	/*
	 * Make sure the driver is actually initialized, this handles
	 * problems with initialization order.
	 */
L
Linus Torvalds 已提交
2761 2762 2763 2764
	if (!initialized) {
		rv = ipmi_init_msghandler();
		if (rv)
			return rv;
2765 2766 2767 2768
		/*
		 * The init code doesn't return an error if it was turned
		 * off, but it won't initialize.  Check that.
		 */
L
Linus Torvalds 已提交
2769 2770 2771 2772
		if (!initialized)
			return -ENODEV;
	}

2773
	intf = kzalloc(sizeof(*intf), GFP_KERNEL);
2774
	if (!intf)
L
Linus Torvalds 已提交
2775
		return -ENOMEM;
2776 2777 2778 2779

	intf->ipmi_version_major = ipmi_version_major(device_id);
	intf->ipmi_version_minor = ipmi_version_minor(device_id);

2780 2781 2782 2783 2784
	intf->bmc = kzalloc(sizeof(*intf->bmc), GFP_KERNEL);
	if (!intf->bmc) {
		kfree(intf);
		return -ENOMEM;
	}
2785
	intf->intf_num = -1; /* Mark it invalid for now. */
2786
	kref_init(&intf->refcount);
2787 2788
	intf->bmc->id = *device_id;
	intf->si_dev = si_dev;
2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804
	for (j = 0; j < IPMI_MAX_CHANNELS; j++) {
		intf->channels[j].address = IPMI_BMC_SLAVE_ADDR;
		intf->channels[j].lun = 2;
	}
	if (slave_addr != 0)
		intf->channels[0].address = slave_addr;
	INIT_LIST_HEAD(&intf->users);
	intf->handlers = handlers;
	intf->send_info = send_info;
	spin_lock_init(&intf->seq_lock);
	for (j = 0; j < IPMI_IPMB_NUM_SEQ; j++) {
		intf->seq_table[j].inuse = 0;
		intf->seq_table[j].seqid = 0;
	}
	intf->curr_seq = 0;
#ifdef CONFIG_PROC_FS
C
Corey Minyard 已提交
2805
	mutex_init(&intf->proc_entry_lock);
2806
#endif
2807 2808
	spin_lock_init(&intf->waiting_rcv_msgs_lock);
	INIT_LIST_HEAD(&intf->waiting_rcv_msgs);
2809 2810 2811 2812
	tasklet_init(&intf->recv_tasklet,
		     smi_recv_tasklet,
		     (unsigned long) intf);
	atomic_set(&intf->watchdog_pretimeouts_to_deliver, 0);
2813
	spin_lock_init(&intf->events_lock);
2814 2815
	atomic_set(&intf->event_waiters, 0);
	intf->ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
2816 2817
	INIT_LIST_HEAD(&intf->waiting_events);
	intf->waiting_events_count = 0;
2818
	mutex_init(&intf->cmd_rcvrs_mutex);
C
Corey Minyard 已提交
2819
	spin_lock_init(&intf->maintenance_mode_lock);
2820 2821
	INIT_LIST_HEAD(&intf->cmd_rcvrs);
	init_waitqueue_head(&intf->waitq);
2822 2823
	for (i = 0; i < IPMI_NUM_STATS; i++)
		atomic_set(&intf->stats[i], 0);
2824 2825

	intf->proc_dir = NULL;
L
Linus Torvalds 已提交
2826

2827
	mutex_lock(&smi_watchers_mutex);
2828 2829 2830 2831 2832 2833 2834
	mutex_lock(&ipmi_interfaces_mutex);
	/* Look for a hole in the numbers. */
	i = 0;
	link = &ipmi_interfaces;
	list_for_each_entry_rcu(tintf, &ipmi_interfaces, link) {
		if (tintf->intf_num != i) {
			link = &tintf->link;
L
Linus Torvalds 已提交
2835 2836
			break;
		}
2837
		i++;
L
Linus Torvalds 已提交
2838
	}
2839 2840 2841 2842 2843
	/* Add the new interface in numeric order. */
	if (i == 0)
		list_add_rcu(&intf->link, &ipmi_interfaces);
	else
		list_add_tail_rcu(&intf->link, link);
L
Linus Torvalds 已提交
2844

2845 2846 2847
	rv = handlers->start_processing(send_info, intf);
	if (rv)
		goto out;
L
Linus Torvalds 已提交
2848

2849 2850
	get_guid(intf);

2851
	if ((intf->ipmi_version_major > 1)
2852 2853 2854 2855 2856 2857
			|| ((intf->ipmi_version_major == 1)
			    && (intf->ipmi_version_minor >= 5))) {
		/*
		 * Start scanning the channels to see what is
		 * available.
		 */
2858 2859 2860
		intf->null_user_handler = channel_handler;
		intf->curr_channel = 0;
		rv = send_channel_info_cmd(intf, 0);
2861 2862 2863 2864
		if (rv) {
			printk(KERN_WARNING PFX
			       "Error sending channel information for channel"
			       " 0, %d\n", rv);
2865
			goto out;
2866
		}
L
Linus Torvalds 已提交
2867

2868 2869 2870
		/* Wait for the channel info to be read. */
		wait_event(intf->waitq,
			   intf->curr_channel >= IPMI_MAX_CHANNELS);
2871
		intf->null_user_handler = NULL;
2872 2873 2874 2875
	} else {
		/* Assume a single IPMB channel at zero. */
		intf->channels[0].medium = IPMI_CHANNEL_MEDIUM_IPMB;
		intf->channels[0].protocol = IPMI_CHANNEL_PROTOCOL_IPMB;
C
Corey Minyard 已提交
2876
		intf->curr_channel = IPMI_MAX_CHANNELS;
L
Linus Torvalds 已提交
2877 2878
	}

2879 2880
	if (rv == 0)
		rv = add_proc_entries(intf, i);
L
Linus Torvalds 已提交
2881

2882
	rv = ipmi_bmc_register(intf, i);
2883

2884
 out:
L
Linus Torvalds 已提交
2885
	if (rv) {
2886 2887
		if (intf->proc_dir)
			remove_proc_entries(intf);
2888
		intf->handlers = NULL;
2889 2890
		list_del_rcu(&intf->link);
		mutex_unlock(&ipmi_interfaces_mutex);
2891
		mutex_unlock(&smi_watchers_mutex);
2892
		synchronize_rcu();
2893 2894
		kref_put(&intf->refcount, intf_free);
	} else {
2895 2896 2897 2898 2899 2900
		/*
		 * Keep memory order straight for RCU readers.  Make
		 * sure everything else is committed to memory before
		 * setting intf_num to mark the interface valid.
		 */
		smp_wmb();
2901 2902
		intf->intf_num = i;
		mutex_unlock(&ipmi_interfaces_mutex);
2903
		/* After this point the interface is legal to use. */
2904
		call_smi_watchers(i, intf->si_dev);
2905
		mutex_unlock(&smi_watchers_mutex);
L
Linus Torvalds 已提交
2906 2907 2908 2909
	}

	return rv;
}
2910
EXPORT_SYMBOL(ipmi_register_smi);
L
Linus Torvalds 已提交
2911

2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925
static void cleanup_smi_msgs(ipmi_smi_t intf)
{
	int              i;
	struct seq_table *ent;

	/* No need for locks, the interface is down. */
	for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++) {
		ent = &(intf->seq_table[i]);
		if (!ent->inuse)
			continue;
		deliver_err_response(ent->recv_msg, IPMI_ERR_UNSPECIFIED);
	}
}

L
Linus Torvalds 已提交
2926 2927 2928
int ipmi_unregister_smi(ipmi_smi_t intf)
{
	struct ipmi_smi_watcher *w;
2929
	int    intf_num = intf->intf_num;
L
Linus Torvalds 已提交
2930

2931 2932
	ipmi_bmc_unregister(intf);

2933
	mutex_lock(&smi_watchers_mutex);
2934
	mutex_lock(&ipmi_interfaces_mutex);
2935 2936
	intf->intf_num = -1;
	intf->handlers = NULL;
2937 2938 2939
	list_del_rcu(&intf->link);
	mutex_unlock(&ipmi_interfaces_mutex);
	synchronize_rcu();
L
Linus Torvalds 已提交
2940

2941 2942
	cleanup_smi_msgs(intf);

2943
	remove_proc_entries(intf);
L
Linus Torvalds 已提交
2944

2945 2946 2947 2948
	/*
	 * Call all the watcher interfaces to tell them that
	 * an interface is gone.
	 */
2949
	list_for_each_entry(w, &smi_watchers, link)
2950 2951
		w->smi_gone(intf_num);
	mutex_unlock(&smi_watchers_mutex);
2952 2953

	kref_put(&intf->refcount, intf_free);
L
Linus Torvalds 已提交
2954 2955
	return 0;
}
2956
EXPORT_SYMBOL(ipmi_unregister_smi);
L
Linus Torvalds 已提交
2957 2958 2959 2960 2961 2962 2963

static int handle_ipmb_get_msg_rsp(ipmi_smi_t          intf,
				   struct ipmi_smi_msg *msg)
{
	struct ipmi_ipmb_addr ipmb_addr;
	struct ipmi_recv_msg  *recv_msg;

2964 2965 2966 2967
	/*
	 * This is 11, not 10, because the response must contain a
	 * completion code.
	 */
L
Linus Torvalds 已提交
2968 2969
	if (msg->rsp_size < 11) {
		/* Message not big enough, just ignore it. */
2970
		ipmi_inc_stat(intf, invalid_ipmb_responses);
L
Linus Torvalds 已提交
2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the response, just ignore it. */
		return 0;
	}

	ipmb_addr.addr_type = IPMI_IPMB_ADDR_TYPE;
	ipmb_addr.slave_addr = msg->rsp[6];
	ipmb_addr.channel = msg->rsp[3] & 0x0f;
	ipmb_addr.lun = msg->rsp[7] & 3;

2984 2985 2986 2987
	/*
	 * It's a response from a remote entity.  Look up the sequence
	 * number and handle the response.
	 */
L
Linus Torvalds 已提交
2988 2989 2990 2991 2992 2993
	if (intf_find_seq(intf,
			  msg->rsp[7] >> 2,
			  msg->rsp[3] & 0x0f,
			  msg->rsp[8],
			  (msg->rsp[4] >> 2) & (~1),
			  (struct ipmi_addr *) &(ipmb_addr),
2994 2995 2996 2997 2998
			  &recv_msg)) {
		/*
		 * We were unable to find the sequence number,
		 * so just nuke the message.
		 */
2999
		ipmi_inc_stat(intf, unhandled_ipmb_responses);
L
Linus Torvalds 已提交
3000 3001 3002 3003 3004 3005
		return 0;
	}

	memcpy(recv_msg->msg_data,
	       &(msg->rsp[9]),
	       msg->rsp_size - 9);
3006 3007 3008 3009 3010
	/*
	 * The other fields matched, so no need to set them, except
	 * for netfn, which needs to be the response that was
	 * returned, not the request value.
	 */
L
Linus Torvalds 已提交
3011 3012 3013 3014
	recv_msg->msg.netfn = msg->rsp[4] >> 2;
	recv_msg->msg.data = recv_msg->msg_data;
	recv_msg->msg.data_len = msg->rsp_size - 10;
	recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
3015
	ipmi_inc_stat(intf, handled_ipmb_responses);
L
Linus Torvalds 已提交
3016 3017 3018 3019 3020 3021 3022 3023
	deliver_response(recv_msg);

	return 0;
}

static int handle_ipmb_get_msg_cmd(ipmi_smi_t          intf,
				   struct ipmi_smi_msg *msg)
{
3024 3025 3026 3027
	struct cmd_rcvr          *rcvr;
	int                      rv = 0;
	unsigned char            netfn;
	unsigned char            cmd;
3028
	unsigned char            chan;
3029 3030 3031
	ipmi_user_t              user = NULL;
	struct ipmi_ipmb_addr    *ipmb_addr;
	struct ipmi_recv_msg     *recv_msg;
3032
	struct ipmi_smi_handlers *handlers;
L
Linus Torvalds 已提交
3033 3034 3035

	if (msg->rsp_size < 10) {
		/* Message not big enough, just ignore it. */
3036
		ipmi_inc_stat(intf, invalid_commands);
L
Linus Torvalds 已提交
3037 3038 3039 3040 3041 3042 3043 3044 3045 3046
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the response, just ignore it. */
		return 0;
	}

	netfn = msg->rsp[4] >> 2;
	cmd = msg->rsp[8];
3047
	chan = msg->rsp[3] & 0xf;
L
Linus Torvalds 已提交
3048

3049
	rcu_read_lock();
3050
	rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
3051 3052 3053 3054 3055
	if (rcvr) {
		user = rcvr->user;
		kref_get(&user->refcount);
	} else
		user = NULL;
3056
	rcu_read_unlock();
L
Linus Torvalds 已提交
3057 3058 3059

	if (user == NULL) {
		/* We didn't find a user, deliver an error response. */
3060
		ipmi_inc_stat(intf, unhandled_commands);
L
Linus Torvalds 已提交
3061 3062 3063 3064 3065

		msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
		msg->data[1] = IPMI_SEND_MSG_CMD;
		msg->data[2] = msg->rsp[3];
		msg->data[3] = msg->rsp[6];
3066
		msg->data[4] = ((netfn + 1) << 2) | (msg->rsp[7] & 0x3);
L
Linus Torvalds 已提交
3067
		msg->data[5] = ipmb_checksum(&(msg->data[3]), 2);
3068
		msg->data[6] = intf->channels[msg->rsp[3] & 0xf].address;
3069 3070
		/* rqseq/lun */
		msg->data[7] = (msg->rsp[7] & 0xfc) | (msg->rsp[4] & 0x3);
L
Linus Torvalds 已提交
3071 3072 3073 3074 3075 3076 3077 3078 3079
		msg->data[8] = msg->rsp[8]; /* cmd */
		msg->data[9] = IPMI_INVALID_CMD_COMPLETION_CODE;
		msg->data[10] = ipmb_checksum(&(msg->data[6]), 4);
		msg->data_size = 11;

#ifdef DEBUG_MSGING
	{
		int m;
		printk("Invalid command:");
C
Corey Minyard 已提交
3080
		for (m = 0; m < msg->data_size; m++)
L
Linus Torvalds 已提交
3081 3082 3083 3084
			printk(" %2.2x", msg->data[m]);
		printk("\n");
	}
#endif
3085 3086 3087
		rcu_read_lock();
		handlers = intf->handlers;
		if (handlers) {
3088
			smi_send(intf, handlers, msg, 0);
3089 3090 3091 3092 3093
			/*
			 * We used the message, so return the value
			 * that causes it to not be freed or
			 * queued.
			 */
3094 3095 3096
			rv = -1;
		}
		rcu_read_unlock();
L
Linus Torvalds 已提交
3097 3098
	} else {
		/* Deliver the message to the user. */
3099
		ipmi_inc_stat(intf, handled_commands);
L
Linus Torvalds 已提交
3100 3101

		recv_msg = ipmi_alloc_recv_msg();
3102
		if (!recv_msg) {
3103 3104 3105 3106 3107
			/*
			 * We couldn't allocate memory for the
			 * message, so requeue it for handling
			 * later.
			 */
L
Linus Torvalds 已提交
3108
			rv = 1;
3109
			kref_put(&user->refcount, free_user);
L
Linus Torvalds 已提交
3110 3111 3112 3113 3114 3115 3116 3117
		} else {
			/* Extract the source address from the data. */
			ipmb_addr = (struct ipmi_ipmb_addr *) &recv_msg->addr;
			ipmb_addr->addr_type = IPMI_IPMB_ADDR_TYPE;
			ipmb_addr->slave_addr = msg->rsp[6];
			ipmb_addr->lun = msg->rsp[7] & 3;
			ipmb_addr->channel = msg->rsp[3] & 0xf;

3118 3119 3120 3121
			/*
			 * Extract the rest of the message information
			 * from the IPMB header.
			 */
L
Linus Torvalds 已提交
3122 3123 3124 3125 3126 3127 3128
			recv_msg->user = user;
			recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
			recv_msg->msgid = msg->rsp[7] >> 2;
			recv_msg->msg.netfn = msg->rsp[4] >> 2;
			recv_msg->msg.cmd = msg->rsp[8];
			recv_msg->msg.data = recv_msg->msg_data;

3129 3130 3131 3132
			/*
			 * We chop off 10, not 9 bytes because the checksum
			 * at the end also needs to be removed.
			 */
L
Linus Torvalds 已提交
3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150
			recv_msg->msg.data_len = msg->rsp_size - 10;
			memcpy(recv_msg->msg_data,
			       &(msg->rsp[9]),
			       msg->rsp_size - 10);
			deliver_response(recv_msg);
		}
	}

	return rv;
}

static int handle_lan_get_msg_rsp(ipmi_smi_t          intf,
				  struct ipmi_smi_msg *msg)
{
	struct ipmi_lan_addr  lan_addr;
	struct ipmi_recv_msg  *recv_msg;


3151 3152 3153 3154
	/*
	 * This is 13, not 12, because the response must contain a
	 * completion code.
	 */
L
Linus Torvalds 已提交
3155 3156
	if (msg->rsp_size < 13) {
		/* Message not big enough, just ignore it. */
3157
		ipmi_inc_stat(intf, invalid_lan_responses);
L
Linus Torvalds 已提交
3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the response, just ignore it. */
		return 0;
	}

	lan_addr.addr_type = IPMI_LAN_ADDR_TYPE;
	lan_addr.session_handle = msg->rsp[4];
	lan_addr.remote_SWID = msg->rsp[8];
	lan_addr.local_SWID = msg->rsp[5];
	lan_addr.channel = msg->rsp[3] & 0x0f;
	lan_addr.privilege = msg->rsp[3] >> 4;
	lan_addr.lun = msg->rsp[9] & 3;

3174 3175 3176 3177
	/*
	 * It's a response from a remote entity.  Look up the sequence
	 * number and handle the response.
	 */
L
Linus Torvalds 已提交
3178 3179 3180 3181 3182 3183
	if (intf_find_seq(intf,
			  msg->rsp[9] >> 2,
			  msg->rsp[3] & 0x0f,
			  msg->rsp[10],
			  (msg->rsp[6] >> 2) & (~1),
			  (struct ipmi_addr *) &(lan_addr),
3184 3185 3186 3187 3188
			  &recv_msg)) {
		/*
		 * We were unable to find the sequence number,
		 * so just nuke the message.
		 */
3189
		ipmi_inc_stat(intf, unhandled_lan_responses);
L
Linus Torvalds 已提交
3190 3191 3192 3193 3194 3195
		return 0;
	}

	memcpy(recv_msg->msg_data,
	       &(msg->rsp[11]),
	       msg->rsp_size - 11);
3196 3197 3198 3199 3200
	/*
	 * The other fields matched, so no need to set them, except
	 * for netfn, which needs to be the response that was
	 * returned, not the request value.
	 */
L
Linus Torvalds 已提交
3201 3202 3203 3204
	recv_msg->msg.netfn = msg->rsp[6] >> 2;
	recv_msg->msg.data = recv_msg->msg_data;
	recv_msg->msg.data_len = msg->rsp_size - 12;
	recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
3205
	ipmi_inc_stat(intf, handled_lan_responses);
L
Linus Torvalds 已提交
3206 3207 3208 3209 3210 3211 3212 3213
	deliver_response(recv_msg);

	return 0;
}

static int handle_lan_get_msg_cmd(ipmi_smi_t          intf,
				  struct ipmi_smi_msg *msg)
{
3214 3215 3216 3217
	struct cmd_rcvr          *rcvr;
	int                      rv = 0;
	unsigned char            netfn;
	unsigned char            cmd;
3218
	unsigned char            chan;
3219 3220 3221
	ipmi_user_t              user = NULL;
	struct ipmi_lan_addr     *lan_addr;
	struct ipmi_recv_msg     *recv_msg;
L
Linus Torvalds 已提交
3222 3223 3224

	if (msg->rsp_size < 12) {
		/* Message not big enough, just ignore it. */
3225
		ipmi_inc_stat(intf, invalid_commands);
L
Linus Torvalds 已提交
3226 3227 3228 3229 3230 3231 3232 3233 3234 3235
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the response, just ignore it. */
		return 0;
	}

	netfn = msg->rsp[6] >> 2;
	cmd = msg->rsp[10];
3236
	chan = msg->rsp[3] & 0xf;
L
Linus Torvalds 已提交
3237

3238
	rcu_read_lock();
3239
	rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
3240 3241 3242 3243 3244
	if (rcvr) {
		user = rcvr->user;
		kref_get(&user->refcount);
	} else
		user = NULL;
3245
	rcu_read_unlock();
L
Linus Torvalds 已提交
3246 3247

	if (user == NULL) {
3248
		/* We didn't find a user, just give up. */
3249
		ipmi_inc_stat(intf, unhandled_commands);
L
Linus Torvalds 已提交
3250

3251 3252 3253 3254 3255
		/*
		 * Don't do anything with these messages, just allow
		 * them to be freed.
		 */
		rv = 0;
L
Linus Torvalds 已提交
3256 3257
	} else {
		/* Deliver the message to the user. */
3258
		ipmi_inc_stat(intf, handled_commands);
L
Linus Torvalds 已提交
3259 3260

		recv_msg = ipmi_alloc_recv_msg();
3261
		if (!recv_msg) {
3262 3263 3264 3265
			/*
			 * We couldn't allocate memory for the
			 * message, so requeue it for handling later.
			 */
L
Linus Torvalds 已提交
3266
			rv = 1;
3267
			kref_put(&user->refcount, free_user);
L
Linus Torvalds 已提交
3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278
		} else {
			/* Extract the source address from the data. */
			lan_addr = (struct ipmi_lan_addr *) &recv_msg->addr;
			lan_addr->addr_type = IPMI_LAN_ADDR_TYPE;
			lan_addr->session_handle = msg->rsp[4];
			lan_addr->remote_SWID = msg->rsp[8];
			lan_addr->local_SWID = msg->rsp[5];
			lan_addr->lun = msg->rsp[9] & 3;
			lan_addr->channel = msg->rsp[3] & 0xf;
			lan_addr->privilege = msg->rsp[3] >> 4;

3279 3280 3281 3282
			/*
			 * Extract the rest of the message information
			 * from the IPMB header.
			 */
L
Linus Torvalds 已提交
3283 3284 3285 3286 3287 3288 3289
			recv_msg->user = user;
			recv_msg->recv_type = IPMI_CMD_RECV_TYPE;
			recv_msg->msgid = msg->rsp[9] >> 2;
			recv_msg->msg.netfn = msg->rsp[6] >> 2;
			recv_msg->msg.cmd = msg->rsp[10];
			recv_msg->msg.data = recv_msg->msg_data;

3290 3291 3292 3293
			/*
			 * We chop off 12, not 11 bytes because the checksum
			 * at the end also needs to be removed.
			 */
L
Linus Torvalds 已提交
3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304
			recv_msg->msg.data_len = msg->rsp_size - 12;
			memcpy(recv_msg->msg_data,
			       &(msg->rsp[11]),
			       msg->rsp_size - 12);
			deliver_response(recv_msg);
		}
	}

	return rv;
}

D
dann frazier 已提交
3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412
/*
 * This routine will handle "Get Message" command responses with
 * channels that use an OEM Medium. The message format belongs to
 * the OEM.  See IPMI 2.0 specification, Chapter 6 and
 * Chapter 22, sections 22.6 and 22.24 for more details.
 */
static int handle_oem_get_msg_cmd(ipmi_smi_t          intf,
				  struct ipmi_smi_msg *msg)
{
	struct cmd_rcvr       *rcvr;
	int                   rv = 0;
	unsigned char         netfn;
	unsigned char         cmd;
	unsigned char         chan;
	ipmi_user_t           user = NULL;
	struct ipmi_system_interface_addr *smi_addr;
	struct ipmi_recv_msg  *recv_msg;

	/*
	 * We expect the OEM SW to perform error checking
	 * so we just do some basic sanity checks
	 */
	if (msg->rsp_size < 4) {
		/* Message not big enough, just ignore it. */
		ipmi_inc_stat(intf, invalid_commands);
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the response, just ignore it. */
		return 0;
	}

	/*
	 * This is an OEM Message so the OEM needs to know how
	 * handle the message. We do no interpretation.
	 */
	netfn = msg->rsp[0] >> 2;
	cmd = msg->rsp[1];
	chan = msg->rsp[3] & 0xf;

	rcu_read_lock();
	rcvr = find_cmd_rcvr(intf, netfn, cmd, chan);
	if (rcvr) {
		user = rcvr->user;
		kref_get(&user->refcount);
	} else
		user = NULL;
	rcu_read_unlock();

	if (user == NULL) {
		/* We didn't find a user, just give up. */
		ipmi_inc_stat(intf, unhandled_commands);

		/*
		 * Don't do anything with these messages, just allow
		 * them to be freed.
		 */

		rv = 0;
	} else {
		/* Deliver the message to the user. */
		ipmi_inc_stat(intf, handled_commands);

		recv_msg = ipmi_alloc_recv_msg();
		if (!recv_msg) {
			/*
			 * We couldn't allocate memory for the
			 * message, so requeue it for handling
			 * later.
			 */
			rv = 1;
			kref_put(&user->refcount, free_user);
		} else {
			/*
			 * OEM Messages are expected to be delivered via
			 * the system interface to SMS software.  We might
			 * need to visit this again depending on OEM
			 * requirements
			 */
			smi_addr = ((struct ipmi_system_interface_addr *)
				    &(recv_msg->addr));
			smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
			smi_addr->channel = IPMI_BMC_CHANNEL;
			smi_addr->lun = msg->rsp[0] & 3;

			recv_msg->user = user;
			recv_msg->user_msg_data = NULL;
			recv_msg->recv_type = IPMI_OEM_RECV_TYPE;
			recv_msg->msg.netfn = msg->rsp[0] >> 2;
			recv_msg->msg.cmd = msg->rsp[1];
			recv_msg->msg.data = recv_msg->msg_data;

			/*
			 * The message starts at byte 4 which follows the
			 * the Channel Byte in the "GET MESSAGE" command
			 */
			recv_msg->msg.data_len = msg->rsp_size - 4;
			memcpy(recv_msg->msg_data,
			       &(msg->rsp[4]),
			       msg->rsp_size - 4);
			deliver_response(recv_msg);
		}
	}

	return rv;
}

L
Linus Torvalds 已提交
3413 3414 3415 3416
static void copy_event_into_recv_msg(struct ipmi_recv_msg *recv_msg,
				     struct ipmi_smi_msg  *msg)
{
	struct ipmi_system_interface_addr *smi_addr;
3417

L
Linus Torvalds 已提交
3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442
	recv_msg->msgid = 0;
	smi_addr = (struct ipmi_system_interface_addr *) &(recv_msg->addr);
	smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	smi_addr->channel = IPMI_BMC_CHANNEL;
	smi_addr->lun = msg->rsp[0] & 3;
	recv_msg->recv_type = IPMI_ASYNC_EVENT_RECV_TYPE;
	recv_msg->msg.netfn = msg->rsp[0] >> 2;
	recv_msg->msg.cmd = msg->rsp[1];
	memcpy(recv_msg->msg_data, &(msg->rsp[3]), msg->rsp_size - 3);
	recv_msg->msg.data = recv_msg->msg_data;
	recv_msg->msg.data_len = msg->rsp_size - 3;
}

static int handle_read_event_rsp(ipmi_smi_t          intf,
				 struct ipmi_smi_msg *msg)
{
	struct ipmi_recv_msg *recv_msg, *recv_msg2;
	struct list_head     msgs;
	ipmi_user_t          user;
	int                  rv = 0;
	int                  deliver_count = 0;
	unsigned long        flags;

	if (msg->rsp_size < 19) {
		/* Message is too small to be an IPMB event. */
3443
		ipmi_inc_stat(intf, invalid_events);
L
Linus Torvalds 已提交
3444 3445 3446 3447 3448 3449 3450 3451 3452 3453
		return 0;
	}

	if (msg->rsp[2] != 0) {
		/* An error getting the event, just ignore it. */
		return 0;
	}

	INIT_LIST_HEAD(&msgs);

3454
	spin_lock_irqsave(&intf->events_lock, flags);
L
Linus Torvalds 已提交
3455

3456
	ipmi_inc_stat(intf, events);
L
Linus Torvalds 已提交
3457

3458 3459 3460 3461
	/*
	 * Allocate and fill in one message for every user that is
	 * getting events.
	 */
3462 3463
	rcu_read_lock();
	list_for_each_entry_rcu(user, &intf->users, link) {
3464
		if (!user->gets_events)
L
Linus Torvalds 已提交
3465 3466 3467
			continue;

		recv_msg = ipmi_alloc_recv_msg();
3468
		if (!recv_msg) {
3469
			rcu_read_unlock();
3470 3471
			list_for_each_entry_safe(recv_msg, recv_msg2, &msgs,
						 link) {
L
Linus Torvalds 已提交
3472 3473 3474
				list_del(&recv_msg->link);
				ipmi_free_recv_msg(recv_msg);
			}
3475 3476 3477 3478 3479
			/*
			 * We couldn't allocate memory for the
			 * message, so requeue it for handling
			 * later.
			 */
L
Linus Torvalds 已提交
3480 3481 3482 3483 3484 3485 3486 3487
			rv = 1;
			goto out;
		}

		deliver_count++;

		copy_event_into_recv_msg(recv_msg, msg);
		recv_msg->user = user;
3488
		kref_get(&user->refcount);
L
Linus Torvalds 已提交
3489 3490
		list_add_tail(&(recv_msg->link), &msgs);
	}
3491
	rcu_read_unlock();
L
Linus Torvalds 已提交
3492 3493 3494 3495 3496 3497 3498 3499

	if (deliver_count) {
		/* Now deliver all the messages. */
		list_for_each_entry_safe(recv_msg, recv_msg2, &msgs, link) {
			list_del(&recv_msg->link);
			deliver_response(recv_msg);
		}
	} else if (intf->waiting_events_count < MAX_EVENTS_IN_QUEUE) {
3500 3501 3502 3503
		/*
		 * No one to receive the message, put it in queue if there's
		 * not already too many things in the queue.
		 */
L
Linus Torvalds 已提交
3504
		recv_msg = ipmi_alloc_recv_msg();
3505
		if (!recv_msg) {
3506 3507 3508 3509 3510
			/*
			 * We couldn't allocate memory for the
			 * message, so requeue it for handling
			 * later.
			 */
L
Linus Torvalds 已提交
3511 3512 3513 3514 3515 3516
			rv = 1;
			goto out;
		}

		copy_event_into_recv_msg(recv_msg, msg);
		list_add_tail(&(recv_msg->link), &(intf->waiting_events));
3517
		intf->waiting_events_count++;
3518
	} else if (!intf->event_msg_printed) {
3519 3520 3521 3522
		/*
		 * There's too many things in the queue, discard this
		 * message.
		 */
3523 3524 3525
		printk(KERN_WARNING PFX "Event queue full, discarding"
		       " incoming events\n");
		intf->event_msg_printed = 1;
L
Linus Torvalds 已提交
3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537
	}

 out:
	spin_unlock_irqrestore(&(intf->events_lock), flags);

	return rv;
}

static int handle_bmc_rsp(ipmi_smi_t          intf,
			  struct ipmi_smi_msg *msg)
{
	struct ipmi_recv_msg *recv_msg;
3538
	struct ipmi_user     *user;
L
Linus Torvalds 已提交
3539 3540

	recv_msg = (struct ipmi_recv_msg *) msg->user_data;
3541 3542 3543 3544 3545 3546
	if (recv_msg == NULL) {
		printk(KERN_WARNING
		       "IPMI message received with no owner. This\n"
		       "could be because of a malformed message, or\n"
		       "because of a hardware error.  Contact your\n"
		       "hardware vender for assistance\n");
3547 3548
		return 0;
	}
L
Linus Torvalds 已提交
3549

3550
	user = recv_msg->user;
L
Linus Torvalds 已提交
3551
	/* Make sure the user still exists. */
3552
	if (user && !user->valid) {
3553
		/* The user for the message went away, so give up. */
3554
		ipmi_inc_stat(intf, unhandled_local_responses);
L
Linus Torvalds 已提交
3555 3556 3557 3558
		ipmi_free_recv_msg(recv_msg);
	} else {
		struct ipmi_system_interface_addr *smi_addr;

3559
		ipmi_inc_stat(intf, handled_local_responses);
L
Linus Torvalds 已提交
3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579
		recv_msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
		recv_msg->msgid = msg->msgid;
		smi_addr = ((struct ipmi_system_interface_addr *)
			    &(recv_msg->addr));
		smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
		smi_addr->channel = IPMI_BMC_CHANNEL;
		smi_addr->lun = msg->rsp[0] & 3;
		recv_msg->msg.netfn = msg->rsp[0] >> 2;
		recv_msg->msg.cmd = msg->rsp[1];
		memcpy(recv_msg->msg_data,
		       &(msg->rsp[2]),
		       msg->rsp_size - 2);
		recv_msg->msg.data = recv_msg->msg_data;
		recv_msg->msg.data_len = msg->rsp_size - 2;
		deliver_response(recv_msg);
	}

	return 0;
}

3580
/*
3581
 * Handle a received message.  Return 1 if the message should be requeued,
3582 3583 3584
 * 0 if the message should be freed, or -1 if the message should not
 * be freed or requeued.
 */
3585
static int handle_one_recv_msg(ipmi_smi_t          intf,
L
Linus Torvalds 已提交
3586 3587 3588 3589 3590 3591 3592 3593
			       struct ipmi_smi_msg *msg)
{
	int requeue;
	int chan;

#ifdef DEBUG_MSGING
	int m;
	printk("Recv:");
C
Corey Minyard 已提交
3594
	for (m = 0; m < msg->rsp_size; m++)
L
Linus Torvalds 已提交
3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608
		printk(" %2.2x", msg->rsp[m]);
	printk("\n");
#endif
	if (msg->rsp_size < 2) {
		/* Message is too small to be correct. */
		printk(KERN_WARNING PFX "BMC returned to small a message"
		       " for netfn %x cmd %x, got %d bytes\n",
		       (msg->data[0] >> 2) | 1, msg->data[1], msg->rsp_size);

		/* Generate an error response for the message. */
		msg->rsp[0] = msg->data[0] | (1 << 2);
		msg->rsp[1] = msg->data[1];
		msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
		msg->rsp_size = 3;
3609 3610 3611 3612 3613 3614
	} else if (((msg->rsp[0] >> 2) != ((msg->data[0] >> 2) | 1))
		   || (msg->rsp[1] != msg->data[1])) {
		/*
		 * The NetFN and Command in the response is not even
		 * marginally correct.
		 */
L
Linus Torvalds 已提交
3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628
		printk(KERN_WARNING PFX "BMC returned incorrect response,"
		       " expected netfn %x cmd %x, got netfn %x cmd %x\n",
		       (msg->data[0] >> 2) | 1, msg->data[1],
		       msg->rsp[0] >> 2, msg->rsp[1]);

		/* Generate an error response for the message. */
		msg->rsp[0] = msg->data[0] | (1 << 2);
		msg->rsp[1] = msg->data[1];
		msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
		msg->rsp_size = 3;
	}

	if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
	    && (msg->rsp[1] == IPMI_SEND_MSG_CMD)
3629 3630 3631 3632 3633
	    && (msg->user_data != NULL)) {
		/*
		 * It's a response to a response we sent.  For this we
		 * deliver a send message response to the user.
		 */
3634
		struct ipmi_recv_msg     *recv_msg = msg->user_data;
L
Linus Torvalds 已提交
3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645

		requeue = 0;
		if (msg->rsp_size < 2)
			/* Message is too small to be correct. */
			goto out;

		chan = msg->data[2] & 0x0f;
		if (chan >= IPMI_MAX_CHANNELS)
			/* Invalid channel number */
			goto out;

3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657
		if (!recv_msg)
			goto out;

		/* Make sure the user still exists. */
		if (!recv_msg->user || !recv_msg->user->valid)
			goto out;

		recv_msg->recv_type = IPMI_RESPONSE_RESPONSE_TYPE;
		recv_msg->msg.data = recv_msg->msg_data;
		recv_msg->msg.data_len = 1;
		recv_msg->msg_data[0] = msg->rsp[2];
		deliver_response(recv_msg);
L
Linus Torvalds 已提交
3658
	} else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
3659
		   && (msg->rsp[1] == IPMI_GET_MSG_CMD)) {
L
Linus Torvalds 已提交
3660 3661 3662 3663 3664 3665 3666 3667
		/* It's from the receive queue. */
		chan = msg->rsp[3] & 0xf;
		if (chan >= IPMI_MAX_CHANNELS) {
			/* Invalid channel number */
			requeue = 0;
			goto out;
		}

D
dann frazier 已提交
3668
		/*
C
Corey Minyard 已提交
3669 3670 3671 3672 3673
		 * We need to make sure the channels have been initialized.
		 * The channel_handler routine will set the "curr_channel"
		 * equal to or greater than IPMI_MAX_CHANNELS when all the
		 * channels for this interface have been initialized.
		 */
D
dann frazier 已提交
3674
		if (intf->curr_channel < IPMI_MAX_CHANNELS) {
C
Corey Minyard 已提交
3675
			requeue = 0; /* Throw the message away */
D
dann frazier 已提交
3676 3677 3678
			goto out;
		}

L
Linus Torvalds 已提交
3679 3680 3681
		switch (intf->channels[chan].medium) {
		case IPMI_CHANNEL_MEDIUM_IPMB:
			if (msg->rsp[4] & 0x04) {
3682 3683 3684 3685
				/*
				 * It's a response, so find the
				 * requesting message and send it up.
				 */
L
Linus Torvalds 已提交
3686 3687
				requeue = handle_ipmb_get_msg_rsp(intf, msg);
			} else {
3688 3689 3690 3691
				/*
				 * It's a command to the SMS from some other
				 * entity.  Handle that.
				 */
L
Linus Torvalds 已提交
3692 3693 3694 3695 3696 3697 3698
				requeue = handle_ipmb_get_msg_cmd(intf, msg);
			}
			break;

		case IPMI_CHANNEL_MEDIUM_8023LAN:
		case IPMI_CHANNEL_MEDIUM_ASYNC:
			if (msg->rsp[6] & 0x04) {
3699 3700 3701 3702
				/*
				 * It's a response, so find the
				 * requesting message and send it up.
				 */
L
Linus Torvalds 已提交
3703 3704
				requeue = handle_lan_get_msg_rsp(intf, msg);
			} else {
3705 3706 3707 3708
				/*
				 * It's a command to the SMS from some other
				 * entity.  Handle that.
				 */
L
Linus Torvalds 已提交
3709 3710 3711 3712 3713
				requeue = handle_lan_get_msg_cmd(intf, msg);
			}
			break;

		default:
D
dann frazier 已提交
3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727
			/* Check for OEM Channels.  Clients had better
			   register for these commands. */
			if ((intf->channels[chan].medium
			     >= IPMI_CHANNEL_MEDIUM_OEM_MIN)
			    && (intf->channels[chan].medium
				<= IPMI_CHANNEL_MEDIUM_OEM_MAX)) {
				requeue = handle_oem_get_msg_cmd(intf, msg);
			} else {
				/*
				 * We don't handle the channel type, so just
				 * free the message.
				 */
				requeue = 0;
			}
L
Linus Torvalds 已提交
3728 3729 3730
		}

	} else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
3731
		   && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) {
3732
		/* It's an asynchronous event. */
L
Linus Torvalds 已提交
3733 3734 3735 3736 3737 3738 3739 3740 3741 3742
		requeue = handle_read_event_rsp(intf, msg);
	} else {
		/* It's a response from the local BMC. */
		requeue = handle_bmc_rsp(intf, msg);
	}

 out:
	return requeue;
}

3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754
/*
 * If there are messages in the queue or pretimeouts, handle them.
 */
static void handle_new_recv_msgs(ipmi_smi_t intf)
{
	struct ipmi_smi_msg  *smi_msg;
	unsigned long        flags = 0;
	int                  rv;
	int                  run_to_completion = intf->run_to_completion;

	/* See if any waiting messages need to be processed. */
	if (!run_to_completion)
3755 3756 3757
		spin_lock_irqsave(&intf->waiting_rcv_msgs_lock, flags);
	while (!list_empty(&intf->waiting_rcv_msgs)) {
		smi_msg = list_entry(intf->waiting_rcv_msgs.next,
3758 3759 3760
				     struct ipmi_smi_msg, link);
		list_del(&smi_msg->link);
		if (!run_to_completion)
3761 3762
			spin_unlock_irqrestore(&intf->waiting_rcv_msgs_lock,
					       flags);
3763 3764
		rv = handle_one_recv_msg(intf, smi_msg);
		if (!run_to_completion)
3765
			spin_lock_irqsave(&intf->waiting_rcv_msgs_lock, flags);
3766 3767 3768 3769 3770 3771 3772 3773 3774 3775
		if (rv == 0) {
			/* Message handled */
			ipmi_free_smi_msg(smi_msg);
		} else if (rv < 0) {
			/* Fatal error on the message, del but don't free. */
		} else {
			/*
			 * To preserve message order, quit if we
			 * can't handle a message.
			 */
3776
			list_add(&smi_msg->link, &intf->waiting_rcv_msgs);
3777 3778 3779 3780
			break;
		}
	}
	if (!run_to_completion)
3781
		spin_unlock_irqrestore(&intf->waiting_rcv_msgs_lock, flags);
3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804

	/*
	 * If the pretimout count is non-zero, decrement one from it and
	 * deliver pretimeouts to all the users.
	 */
	if (atomic_add_unless(&intf->watchdog_pretimeouts_to_deliver, -1, 0)) {
		ipmi_user_t user;

		rcu_read_lock();
		list_for_each_entry_rcu(user, &intf->users, link) {
			if (user->handler->ipmi_watchdog_pretimeout)
				user->handler->ipmi_watchdog_pretimeout(
					user->handler_data);
		}
		rcu_read_unlock();
	}
}

static void smi_recv_tasklet(unsigned long val)
{
	handle_new_recv_msgs((ipmi_smi_t) val);
}

L
Linus Torvalds 已提交
3805 3806 3807 3808
/* Handle a new message from the lower layer. */
void ipmi_smi_msg_received(ipmi_smi_t          intf,
			   struct ipmi_smi_msg *msg)
{
3809 3810
	unsigned long flags = 0; /* keep us warning-free. */
	int           run_to_completion;
L
Linus Torvalds 已提交
3811 3812 3813 3814 3815


	if ((msg->data_size >= 2)
	    && (msg->data[0] == (IPMI_NETFN_APP_REQUEST << 2))
	    && (msg->data[1] == IPMI_SEND_MSG_CMD)
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829
	    && (msg->user_data == NULL)) {
		/*
		 * This is the local response to a command send, start
		 * the timer for these.  The user_data will not be
		 * NULL if this is a response send, and we will let
		 * response sends just go through.
		 */

		/*
		 * Check for errors, if we get certain errors (ones
		 * that mean basically we can try again later), we
		 * ignore them and start the timer.  Otherwise we
		 * report the error immediately.
		 */
L
Linus Torvalds 已提交
3830 3831
		if ((msg->rsp_size >= 3) && (msg->rsp[2] != 0)
		    && (msg->rsp[2] != IPMI_NODE_BUSY_ERR)
3832 3833
		    && (msg->rsp[2] != IPMI_LOST_ARBITRATION_ERR)
		    && (msg->rsp[2] != IPMI_BUS_ERR)
3834
		    && (msg->rsp[2] != IPMI_NAK_ON_WRITE_ERR)) {
L
Linus Torvalds 已提交
3835 3836 3837 3838 3839 3840 3841 3842 3843
			int chan = msg->rsp[3] & 0xf;

			/* Got an error sending the message, handle it. */
			if (chan >= IPMI_MAX_CHANNELS)
				; /* This shouldn't happen */
			else if ((intf->channels[chan].medium
				  == IPMI_CHANNEL_MEDIUM_8023LAN)
				 || (intf->channels[chan].medium
				     == IPMI_CHANNEL_MEDIUM_ASYNC))
3844
				ipmi_inc_stat(intf, sent_lan_command_errs);
L
Linus Torvalds 已提交
3845
			else
3846
				ipmi_inc_stat(intf, sent_ipmb_command_errs);
L
Linus Torvalds 已提交
3847
			intf_err_seq(intf, msg->msgid, msg->rsp[2]);
3848
		} else
L
Linus Torvalds 已提交
3849 3850 3851 3852
			/* The message was sent, start the timer. */
			intf_start_seq_timer(intf, msg->msgid);

		ipmi_free_smi_msg(msg);
3853
		goto out;
L
Linus Torvalds 已提交
3854 3855
	}

3856 3857 3858 3859
	/*
	 * To preserve message order, if the list is not empty, we
	 * tack this message onto the end of the list.
	 */
3860 3861
	run_to_completion = intf->run_to_completion;
	if (!run_to_completion)
3862 3863
		spin_lock_irqsave(&intf->waiting_rcv_msgs_lock, flags);
	list_add_tail(&msg->link, &intf->waiting_rcv_msgs);
3864
	if (!run_to_completion)
3865
		spin_unlock_irqrestore(&intf->waiting_rcv_msgs_lock, flags);
3866

3867
	tasklet_schedule(&intf->recv_tasklet);
3868 3869
 out:
	return;
L
Linus Torvalds 已提交
3870
}
3871
EXPORT_SYMBOL(ipmi_smi_msg_received);
L
Linus Torvalds 已提交
3872 3873 3874

void ipmi_smi_watchdog_pretimeout(ipmi_smi_t intf)
{
3875 3876
	atomic_set(&intf->watchdog_pretimeouts_to_deliver, 1);
	tasklet_schedule(&intf->recv_tasklet);
L
Linus Torvalds 已提交
3877
}
3878
EXPORT_SYMBOL(ipmi_smi_watchdog_pretimeout);
L
Linus Torvalds 已提交
3879

C
Corey Minyard 已提交
3880 3881 3882
static struct ipmi_smi_msg *
smi_from_recv_msg(ipmi_smi_t intf, struct ipmi_recv_msg *recv_msg,
		  unsigned char seq, long seqid)
L
Linus Torvalds 已提交
3883
{
C
Corey Minyard 已提交
3884
	struct ipmi_smi_msg *smi_msg = ipmi_alloc_smi_msg();
L
Linus Torvalds 已提交
3885
	if (!smi_msg)
3886 3887 3888 3889
		/*
		 * If we can't allocate the message, then just return, we
		 * get 4 retries, so this should be ok.
		 */
C
Corey Minyard 已提交
3890
		return NULL;
L
Linus Torvalds 已提交
3891 3892 3893 3894

	memcpy(smi_msg->data, recv_msg->msg.data, recv_msg->msg.data_len);
	smi_msg->data_size = recv_msg->msg.data_len;
	smi_msg->msgid = STORE_SEQ_IN_MSGID(seq, seqid);
3895

L
Linus Torvalds 已提交
3896 3897 3898 3899
#ifdef DEBUG_MSGING
	{
		int m;
		printk("Resend: ");
C
Corey Minyard 已提交
3900
		for (m = 0; m < smi_msg->data_size; m++)
L
Linus Torvalds 已提交
3901 3902 3903 3904
			printk(" %2.2x", smi_msg->data[m]);
		printk("\n");
	}
#endif
C
Corey Minyard 已提交
3905
	return smi_msg;
L
Linus Torvalds 已提交
3906 3907
}

3908 3909
static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent,
			      struct list_head *timeouts, long timeout_period,
3910 3911
			      int slot, unsigned long *flags,
			      unsigned int *waiting_msgs)
3912
{
3913 3914 3915 3916 3917
	struct ipmi_recv_msg     *msg;
	struct ipmi_smi_handlers *handlers;

	if (intf->intf_num == -1)
		return;
3918 3919 3920 3921 3922

	if (!ent->inuse)
		return;

	ent->timeout -= timeout_period;
3923 3924
	if (ent->timeout > 0) {
		(*waiting_msgs)++;
3925
		return;
3926
	}
3927 3928 3929 3930 3931 3932 3933

	if (ent->retries_left == 0) {
		/* The message has used all its retries. */
		ent->inuse = 0;
		msg = ent->recv_msg;
		list_add_tail(&msg->link, timeouts);
		if (ent->broadcast)
3934
			ipmi_inc_stat(intf, timed_out_ipmb_broadcasts);
3935
		else if (is_lan_addr(&ent->recv_msg->addr))
3936
			ipmi_inc_stat(intf, timed_out_lan_commands);
3937
		else
3938
			ipmi_inc_stat(intf, timed_out_ipmb_commands);
3939 3940 3941 3942
	} else {
		struct ipmi_smi_msg *smi_msg;
		/* More retries, send again. */

3943 3944
		(*waiting_msgs)++;

3945 3946 3947 3948
		/*
		 * Start with the max timer, set to normal timer after
		 * the message is sent.
		 */
3949 3950 3951 3952
		ent->timeout = MAX_MSG_TIMEOUT;
		ent->retries_left--;
		smi_msg = smi_from_recv_msg(intf, ent->recv_msg, slot,
					    ent->seqid);
3953 3954 3955 3956 3957 3958 3959
		if (!smi_msg) {
			if (is_lan_addr(&ent->recv_msg->addr))
				ipmi_inc_stat(intf,
					      dropped_rexmit_lan_commands);
			else
				ipmi_inc_stat(intf,
					      dropped_rexmit_ipmb_commands);
3960
			return;
3961
		}
3962 3963

		spin_unlock_irqrestore(&intf->seq_lock, *flags);
3964

3965 3966 3967 3968 3969 3970 3971
		/*
		 * Send the new message.  We send with a zero
		 * priority.  It timed out, I doubt time is that
		 * critical now, and high priority messages are really
		 * only for messages to the local MC, which don't get
		 * resent.
		 */
3972
		handlers = intf->handlers;
3973 3974 3975 3976 3977 3978 3979 3980
		if (handlers) {
			if (is_lan_addr(&ent->recv_msg->addr))
				ipmi_inc_stat(intf,
					      retransmitted_lan_commands);
			else
				ipmi_inc_stat(intf,
					      retransmitted_ipmb_commands);

3981
			smi_send(intf, intf->handlers, smi_msg, 0);
3982
		} else
3983 3984
			ipmi_free_smi_msg(smi_msg);

3985 3986 3987 3988
		spin_lock_irqsave(&intf->seq_lock, *flags);
	}
}

3989
static unsigned int ipmi_timeout_handler(ipmi_smi_t intf, long timeout_period)
L
Linus Torvalds 已提交
3990 3991 3992 3993
{
	struct list_head     timeouts;
	struct ipmi_recv_msg *msg, *msg2;
	unsigned long        flags;
3994
	int                  i;
3995
	unsigned int         waiting_msgs = 0;
L
Linus Torvalds 已提交
3996

3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008
	/*
	 * Go through the seq table and find any messages that
	 * have timed out, putting them in the timeouts
	 * list.
	 */
	INIT_LIST_HEAD(&timeouts);
	spin_lock_irqsave(&intf->seq_lock, flags);
	for (i = 0; i < IPMI_IPMB_NUM_SEQ; i++)
		check_msg_timeout(intf, &(intf->seq_table[i]),
				  &timeouts, timeout_period, i,
				  &flags, &waiting_msgs);
	spin_unlock_irqrestore(&intf->seq_lock, flags);
4009

4010 4011
	list_for_each_entry_safe(msg, msg2, &timeouts, link)
		deliver_err_response(msg, IPMI_TIMEOUT_COMPLETION_CODE);
C
Corey Minyard 已提交
4012

4013 4014 4015 4016 4017 4018 4019 4020 4021 4022
	/*
	 * Maintenance mode handling.  Check the timeout
	 * optimistically before we claim the lock.  It may
	 * mean a timeout gets missed occasionally, but that
	 * only means the timeout gets extended by one period
	 * in that case.  No big deal, and it avoids the lock
	 * most of the time.
	 */
	if (intf->auto_maintenance_timeout > 0) {
		spin_lock_irqsave(&intf->maintenance_mode_lock, flags);
C
Corey Minyard 已提交
4023
		if (intf->auto_maintenance_timeout > 0) {
4024 4025 4026 4027
			intf->auto_maintenance_timeout
				-= timeout_period;
			if (!intf->maintenance_mode
			    && (intf->auto_maintenance_timeout <= 0)) {
C
Corey Minyard 已提交
4028
				intf->maintenance_mode_enable = false;
4029
				maintenance_mode_update(intf);
C
Corey Minyard 已提交
4030 4031
			}
		}
4032 4033
		spin_unlock_irqrestore(&intf->maintenance_mode_lock,
				       flags);
L
Linus Torvalds 已提交
4034
	}
4035 4036 4037 4038

	tasklet_schedule(&intf->recv_tasklet);

	return waiting_msgs;
L
Linus Torvalds 已提交
4039 4040
}

4041
static void ipmi_request_event(ipmi_smi_t intf)
L
Linus Torvalds 已提交
4042
{
4043
	struct ipmi_smi_handlers *handlers;
L
Linus Torvalds 已提交
4044

4045 4046 4047
	/* No event requests when in maintenance mode. */
	if (intf->maintenance_mode_enable)
		return;
C
Corey Minyard 已提交
4048

4049 4050 4051
	handlers = intf->handlers;
	if (handlers)
		handlers->request_events(intf->send_info);
L
Linus Torvalds 已提交
4052 4053 4054 4055
}

static struct timer_list ipmi_timer;

4056
static atomic_t stop_operation;
L
Linus Torvalds 已提交
4057 4058 4059

static void ipmi_timeout(unsigned long data)
{
4060 4061 4062
	ipmi_smi_t intf;
	int nt = 0;

4063
	if (atomic_read(&stop_operation))
L
Linus Torvalds 已提交
4064 4065
		return;

4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079
	rcu_read_lock();
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
		int lnt = 0;

		if (atomic_read(&intf->event_waiters)) {
			intf->ticks_to_req_ev--;
			if (intf->ticks_to_req_ev == 0) {
				ipmi_request_event(intf);
				intf->ticks_to_req_ev = IPMI_REQUEST_EV_TIME;
			}
			lnt++;
		}

		lnt += ipmi_timeout_handler(intf, IPMI_TIMEOUT_TIME);
L
Linus Torvalds 已提交
4080

4081 4082 4083 4084 4085
		lnt = !!lnt;
		if (lnt != intf->last_needs_timer &&
					intf->handlers->set_need_watch)
			intf->handlers->set_need_watch(intf->send_info, lnt);
		intf->last_needs_timer = lnt;
L
Linus Torvalds 已提交
4086

4087 4088 4089 4090 4091 4092
		nt += lnt;
	}
	rcu_read_unlock();

	if (nt)
		mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
L
Linus Torvalds 已提交
4093 4094
}

4095 4096 4097 4098 4099 4100
static void need_waiter(ipmi_smi_t intf)
{
	/* Racy, but worst case we start the timer twice. */
	if (!timer_pending(&ipmi_timer))
		mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
}
L
Linus Torvalds 已提交
4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122

static atomic_t smi_msg_inuse_count = ATOMIC_INIT(0);
static atomic_t recv_msg_inuse_count = ATOMIC_INIT(0);

/* FIXME - convert these to slabs. */
static void free_smi_msg(struct ipmi_smi_msg *msg)
{
	atomic_dec(&smi_msg_inuse_count);
	kfree(msg);
}

struct ipmi_smi_msg *ipmi_alloc_smi_msg(void)
{
	struct ipmi_smi_msg *rv;
	rv = kmalloc(sizeof(struct ipmi_smi_msg), GFP_ATOMIC);
	if (rv) {
		rv->done = free_smi_msg;
		rv->user_data = NULL;
		atomic_inc(&smi_msg_inuse_count);
	}
	return rv;
}
4123
EXPORT_SYMBOL(ipmi_alloc_smi_msg);
L
Linus Torvalds 已提交
4124 4125 4126 4127 4128 4129 4130

static void free_recv_msg(struct ipmi_recv_msg *msg)
{
	atomic_dec(&recv_msg_inuse_count);
	kfree(msg);
}

A
Adrian Bunk 已提交
4131
static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void)
L
Linus Torvalds 已提交
4132 4133 4134 4135 4136
{
	struct ipmi_recv_msg *rv;

	rv = kmalloc(sizeof(struct ipmi_recv_msg), GFP_ATOMIC);
	if (rv) {
4137
		rv->user = NULL;
L
Linus Torvalds 已提交
4138 4139 4140 4141 4142 4143
		rv->done = free_recv_msg;
		atomic_inc(&recv_msg_inuse_count);
	}
	return rv;
}

4144 4145 4146 4147 4148 4149
void ipmi_free_recv_msg(struct ipmi_recv_msg *msg)
{
	if (msg->user)
		kref_put(&msg->user->refcount, free_user);
	msg->done(msg);
}
4150
EXPORT_SYMBOL(ipmi_free_recv_msg);
4151

L
Linus Torvalds 已提交
4152 4153
#ifdef CONFIG_IPMI_PANIC_EVENT

4154 4155
static atomic_t panic_done_count = ATOMIC_INIT(0);

L
Linus Torvalds 已提交
4156 4157
static void dummy_smi_done_handler(struct ipmi_smi_msg *msg)
{
4158
	atomic_dec(&panic_done_count);
L
Linus Torvalds 已提交
4159 4160 4161 4162
}

static void dummy_recv_done_handler(struct ipmi_recv_msg *msg)
{
4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195
	atomic_dec(&panic_done_count);
}

/*
 * Inside a panic, send a message and wait for a response.
 */
static void ipmi_panic_request_and_wait(ipmi_smi_t           intf,
					struct ipmi_addr     *addr,
					struct kernel_ipmi_msg *msg)
{
	struct ipmi_smi_msg  smi_msg;
	struct ipmi_recv_msg recv_msg;
	int rv;

	smi_msg.done = dummy_smi_done_handler;
	recv_msg.done = dummy_recv_done_handler;
	atomic_add(2, &panic_done_count);
	rv = i_ipmi_request(NULL,
			    intf,
			    addr,
			    0,
			    msg,
			    intf,
			    &smi_msg,
			    &recv_msg,
			    0,
			    intf->channels[0].address,
			    intf->channels[0].lun,
			    0, 1); /* Don't retry, and don't wait. */
	if (rv)
		atomic_sub(2, &panic_done_count);
	while (atomic_read(&panic_done_count) != 0)
		ipmi_poll(intf);
L
Linus Torvalds 已提交
4196 4197 4198
}

#ifdef CONFIG_IPMI_PANIC_STRING
4199
static void event_receiver_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
L
Linus Torvalds 已提交
4200
{
4201 4202 4203
	if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
	    && (msg->msg.netfn == IPMI_NETFN_SENSOR_EVENT_RESPONSE)
	    && (msg->msg.cmd == IPMI_GET_EVENT_RECEIVER_CMD)
4204
	    && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
L
Linus Torvalds 已提交
4205
		/* A get event receiver command, save it. */
4206 4207
		intf->event_receiver = msg->msg.data[1];
		intf->event_receiver_lun = msg->msg.data[2] & 0x3;
L
Linus Torvalds 已提交
4208 4209 4210
	}
}

4211
static void device_id_fetcher(ipmi_smi_t intf, struct ipmi_recv_msg *msg)
L
Linus Torvalds 已提交
4212
{
4213 4214 4215
	if ((msg->addr.addr_type == IPMI_SYSTEM_INTERFACE_ADDR_TYPE)
	    && (msg->msg.netfn == IPMI_NETFN_APP_RESPONSE)
	    && (msg->msg.cmd == IPMI_GET_DEVICE_ID_CMD)
4216 4217 4218 4219 4220
	    && (msg->msg.data[0] == IPMI_CC_NO_ERROR)) {
		/*
		 * A get device id command, save if we are an event
		 * receiver or generator.
		 */
4221 4222
		intf->local_sel_device = (msg->msg.data[6] >> 2) & 1;
		intf->local_event_generator = (msg->msg.data[6] >> 5) & 1;
L
Linus Torvalds 已提交
4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244
	}
}
#endif

static void send_panic_events(char *str)
{
	struct kernel_ipmi_msg            msg;
	ipmi_smi_t                        intf;
	unsigned char                     data[16];
	struct ipmi_system_interface_addr *si;
	struct ipmi_addr                  addr;

	si = (struct ipmi_system_interface_addr *) &addr;
	si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
	si->channel = IPMI_BMC_CHANNEL;
	si->lun = 0;

	/* Fill in an event telling that we have failed. */
	msg.netfn = 0x04; /* Sensor or Event. */
	msg.cmd = 2; /* Platform event command. */
	msg.data = data;
	msg.data_len = 8;
M
Matt Domsch 已提交
4245
	data[0] = 0x41; /* Kernel generator ID, IPMI table 5-4 */
L
Linus Torvalds 已提交
4246 4247 4248 4249 4250
	data[1] = 0x03; /* This is for IPMI 1.0. */
	data[2] = 0x20; /* OS Critical Stop, IPMI table 36-3 */
	data[4] = 0x6f; /* Sensor specific, IPMI table 36-1 */
	data[5] = 0xa1; /* Runtime stop OEM bytes 2 & 3. */

4251 4252 4253 4254
	/*
	 * Put a few breadcrumbs in.  Hopefully later we can add more things
	 * to make the panic events more useful.
	 */
L
Linus Torvalds 已提交
4255 4256 4257 4258 4259 4260 4261
	if (str) {
		data[3] = str[0];
		data[6] = str[1];
		data[7] = str[2];
	}

	/* For every registered interface, send the event. */
4262
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
4263 4264
		if (!intf->handlers)
			/* Interface is not ready. */
L
Linus Torvalds 已提交
4265 4266
			continue;

4267
		intf->run_to_completion = 1;
L
Linus Torvalds 已提交
4268 4269
		/* Send the event announcing the panic. */
		intf->handlers->set_run_to_completion(intf->send_info, 1);
4270
		ipmi_panic_request_and_wait(intf, &addr, &msg);
L
Linus Torvalds 已提交
4271 4272 4273
	}

#ifdef CONFIG_IPMI_PANIC_STRING
4274 4275 4276 4277 4278
	/*
	 * On every interface, dump a bunch of OEM event holding the
	 * string.
	 */
	if (!str)
L
Linus Torvalds 已提交
4279 4280
		return;

4281 4282
	/* For every registered interface, send the event. */
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
L
Linus Torvalds 已提交
4283 4284 4285 4286
		char                  *p = str;
		struct ipmi_ipmb_addr *ipmb;
		int                   j;

4287 4288
		if (intf->intf_num == -1)
			/* Interface was not ready yet. */
L
Linus Torvalds 已提交
4289 4290
			continue;

4291 4292 4293 4294 4295 4296 4297 4298
		/*
		 * intf_num is used as an marker to tell if the
		 * interface is valid.  Thus we need a read barrier to
		 * make sure data fetched before checking intf_num
		 * won't be used.
		 */
		smp_rmb();

4299 4300 4301 4302 4303 4304 4305
		/*
		 * First job here is to figure out where to send the
		 * OEM events.  There's no way in IPMI to send OEM
		 * events using an event send command, so we have to
		 * find the SEL to put them in and stick them in
		 * there.
		 */
L
Linus Torvalds 已提交
4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317

		/* Get capabilities from the get device id. */
		intf->local_sel_device = 0;
		intf->local_event_generator = 0;
		intf->event_receiver = 0;

		/* Request the device info from the local MC. */
		msg.netfn = IPMI_NETFN_APP_REQUEST;
		msg.cmd = IPMI_GET_DEVICE_ID_CMD;
		msg.data = NULL;
		msg.data_len = 0;
		intf->null_user_handler = device_id_fetcher;
4318
		ipmi_panic_request_and_wait(intf, &addr, &msg);
L
Linus Torvalds 已提交
4319 4320 4321 4322 4323 4324 4325 4326

		if (intf->local_event_generator) {
			/* Request the event receiver from the local MC. */
			msg.netfn = IPMI_NETFN_SENSOR_EVENT_REQUEST;
			msg.cmd = IPMI_GET_EVENT_RECEIVER_CMD;
			msg.data = NULL;
			msg.data_len = 0;
			intf->null_user_handler = event_receiver_fetcher;
4327
			ipmi_panic_request_and_wait(intf, &addr, &msg);
L
Linus Torvalds 已提交
4328 4329 4330
		}
		intf->null_user_handler = NULL;

4331 4332 4333 4334 4335 4336
		/*
		 * Validate the event receiver.  The low bit must not
		 * be 1 (it must be a valid IPMB address), it cannot
		 * be zero, and it must not be my address.
		 */
		if (((intf->event_receiver & 1) == 0)
L
Linus Torvalds 已提交
4337
		    && (intf->event_receiver != 0)
4338 4339 4340 4341 4342
		    && (intf->event_receiver != intf->channels[0].address)) {
			/*
			 * The event receiver is valid, send an IPMB
			 * message.
			 */
L
Linus Torvalds 已提交
4343 4344 4345 4346 4347 4348
			ipmb = (struct ipmi_ipmb_addr *) &addr;
			ipmb->addr_type = IPMI_IPMB_ADDR_TYPE;
			ipmb->channel = 0; /* FIXME - is this right? */
			ipmb->lun = intf->event_receiver_lun;
			ipmb->slave_addr = intf->event_receiver;
		} else if (intf->local_sel_device) {
4349 4350 4351 4352 4353
			/*
			 * The event receiver was not valid (or was
			 * me), but I am an SEL device, just dump it
			 * in my SEL.
			 */
L
Linus Torvalds 已提交
4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374
			si = (struct ipmi_system_interface_addr *) &addr;
			si->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
			si->channel = IPMI_BMC_CHANNEL;
			si->lun = 0;
		} else
			continue; /* No where to send the event. */

		msg.netfn = IPMI_NETFN_STORAGE_REQUEST; /* Storage. */
		msg.cmd = IPMI_ADD_SEL_ENTRY_CMD;
		msg.data = data;
		msg.data_len = 16;

		j = 0;
		while (*p) {
			int size = strlen(p);

			if (size > 11)
				size = 11;
			data[0] = 0;
			data[1] = 0;
			data[2] = 0xf0; /* OEM event without timestamp. */
4375
			data[3] = intf->channels[0].address;
L
Linus Torvalds 已提交
4376
			data[4] = j++; /* sequence # */
4377 4378 4379 4380
			/*
			 * Always give 11 bytes, so strncpy will fill
			 * it with zeroes for me.
			 */
L
Linus Torvalds 已提交
4381 4382 4383
			strncpy(data+5, p, 11);
			p += size;

4384
			ipmi_panic_request_and_wait(intf, &addr, &msg);
L
Linus Torvalds 已提交
4385
		}
4386
	}
L
Linus Torvalds 已提交
4387 4388 4389 4390
#endif /* CONFIG_IPMI_PANIC_STRING */
}
#endif /* CONFIG_IPMI_PANIC_EVENT */

R
Randy Dunlap 已提交
4391
static int has_panicked;
L
Linus Torvalds 已提交
4392 4393 4394

static int panic_event(struct notifier_block *this,
		       unsigned long         event,
4395
		       void                  *ptr)
L
Linus Torvalds 已提交
4396 4397 4398
{
	ipmi_smi_t intf;

L
Lee Revell 已提交
4399
	if (has_panicked)
L
Linus Torvalds 已提交
4400
		return NOTIFY_DONE;
L
Lee Revell 已提交
4401
	has_panicked = 1;
L
Linus Torvalds 已提交
4402 4403

	/* For every registered interface, set it to run to completion. */
4404
	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
4405 4406
		if (!intf->handlers)
			/* Interface is not ready. */
L
Linus Torvalds 已提交
4407 4408
			continue;

4409
		intf->run_to_completion = 1;
L
Linus Torvalds 已提交
4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427
		intf->handlers->set_run_to_completion(intf->send_info, 1);
	}

#ifdef CONFIG_IPMI_PANIC_EVENT
	send_panic_events(ptr);
#endif

	return NOTIFY_DONE;
}

static struct notifier_block panic_block = {
	.notifier_call	= panic_event,
	.next		= NULL,
	.priority	= 200	/* priority: INT_MAX >= x >= 0 */
};

static int ipmi_init_msghandler(void)
{
4428
	int rv;
L
Linus Torvalds 已提交
4429 4430 4431 4432

	if (initialized)
		return 0;

4433
	rv = driver_register(&ipmidriver.driver);
4434 4435 4436 4437 4438
	if (rv) {
		printk(KERN_ERR PFX "Could not register IPMI driver\n");
		return rv;
	}

L
Linus Torvalds 已提交
4439
	printk(KERN_INFO "ipmi message handler version "
4440
	       IPMI_DRIVER_VERSION "\n");
L
Linus Torvalds 已提交
4441

4442
#ifdef CONFIG_PROC_FS
L
Linus Torvalds 已提交
4443 4444 4445
	proc_ipmi_root = proc_mkdir("ipmi", NULL);
	if (!proc_ipmi_root) {
	    printk(KERN_ERR PFX "Unable to create IPMI proc dir");
4446
	    driver_unregister(&ipmidriver.driver);
L
Linus Torvalds 已提交
4447 4448 4449
	    return -ENOMEM;
	}

4450
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
4451

4452 4453
	setup_timer(&ipmi_timer, ipmi_timeout, 0);
	mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES);
L
Linus Torvalds 已提交
4454

4455
	atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
L
Linus Torvalds 已提交
4456 4457 4458 4459 4460 4461

	initialized = 1;

	return 0;
}

4462
static int __init ipmi_init_msghandler_mod(void)
L
Linus Torvalds 已提交
4463 4464 4465 4466 4467
{
	ipmi_init_msghandler();
	return 0;
}

4468
static void __exit cleanup_ipmi(void)
L
Linus Torvalds 已提交
4469 4470 4471 4472 4473 4474
{
	int count;

	if (!initialized)
		return;

4475
	atomic_notifier_chain_unregister(&panic_notifier_list, &panic_block);
L
Linus Torvalds 已提交
4476

4477 4478 4479 4480
	/*
	 * This can't be called if any interfaces exist, so no worry
	 * about shutting down the interfaces.
	 */
L
Linus Torvalds 已提交
4481

4482 4483 4484 4485 4486
	/*
	 * Tell the timer to stop, then wait for it to stop.  This
	 * avoids problems with race conditions removing the timer
	 * here.
	 */
4487 4488
	atomic_inc(&stop_operation);
	del_timer_sync(&ipmi_timer);
L
Linus Torvalds 已提交
4489

4490
#ifdef CONFIG_PROC_FS
4491
	proc_remove(proc_ipmi_root);
4492
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
4493

4494
	driver_unregister(&ipmidriver.driver);
4495

L
Linus Torvalds 已提交
4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511
	initialized = 0;

	/* Check for buffer leaks. */
	count = atomic_read(&smi_msg_inuse_count);
	if (count != 0)
		printk(KERN_WARNING PFX "SMI message count %d at exit\n",
		       count);
	count = atomic_read(&recv_msg_inuse_count);
	if (count != 0)
		printk(KERN_WARNING PFX "recv message count %d at exit\n",
		       count);
}
module_exit(cleanup_ipmi);

module_init(ipmi_init_msghandler_mod);
MODULE_LICENSE("GPL");
4512
MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
4513 4514
MODULE_DESCRIPTION("Incoming and outgoing message routing for an IPMI"
		   " interface.");
4515
MODULE_VERSION(IPMI_DRIVER_VERSION);