Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | /* * I2O Configuration Interface Driver * * (C) Copyright 1999 Red Hat Software * * Written by Alan Cox, Building Number Three Ltd * * Modified 04/20/1999 by Deepak Saxena * - Added basic ioctl() support * Modified 06/07/1999 by Deepak Saxena * - Added software download ioctl (still testing) * Modified 09/10/1999 by Auvo Häkkinen * - Changes to i2o_cfg_reply(), ioctl_parms() * - Added ioct_validate() (not yet tested) * * 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. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/pci.h> #include <linux/i2o.h> #include <linux/errno.h> #include <linux/init.h> #include <linux/malloc.h> #include <linux/miscdevice.h> #include <linux/mm.h> #include <linux/spinlock.h> #include <asm/uaccess.h> #include <asm/io.h> #include "i2o_proc.h" static int i2o_cfg_token = 0; static int i2o_cfg_context = -1; static void *page_buf; static void *i2o_buffer; static spinlock_t i2o_config_lock = SPIN_LOCK_UNLOCKED; struct wait_queue *i2o_wait_queue; static int ioctl_getiops(unsigned long); static int ioctl_gethrt(unsigned long); static int ioctl_getlct(unsigned long); static int ioctl_parms(unsigned long, unsigned int); static int ioctl_html(unsigned long); static int ioctl_swdl(unsigned long); static int ioctl_swul(unsigned long); static int ioctl_swdel(unsigned long); static int ioctl_validate(unsigned long); /* * This is the callback for any message we have posted. The message itself * will be returned to the message pool when we return from the IRQ * * This runs in irq context so be short and sweet. */ static void i2o_cfg_reply(struct i2o_handler *h, struct i2o_controller *c, struct i2o_message *m) { u32 *msg = (u32 *)m; if (msg[4] >> 24) // RegStatus != SUCCESS i2o_cfg_token = -(msg[4] & 0xFFFF); // DetailedStatus else i2o_cfg_token = I2O_POST_WAIT_OK; return; } /* * Each of these describes an i2o message handler. They are * multiplexed by the i2o_core code */ struct i2o_handler cfg_handler= { i2o_cfg_reply, "Configuration", 0, 0xffffffff // All classes }; static long long cfg_llseek(struct file *file, long long offset, int origin) { return -ESPIPE; } static ssize_t cfg_write(struct file *file, const char *buf, size_t count, loff_t *ppos) { printk(KERN_INFO "i2o_config write not yet supported\n"); return 0; } static ssize_t cfg_read(struct file *file, char *buf, size_t count, loff_t *ptr) { return 0; } /* * IOCTL Handler */ static int cfg_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) { int ret; /* Only 1 token, so lock... */ spin_lock(&i2o_config_lock); switch(cmd) { case I2OGETIOPS: ret = ioctl_getiops(arg); break; case I2OHRTGET: ret = ioctl_gethrt(arg); break; case I2OLCTGET: ret = ioctl_getlct(arg); break; case I2OPARMSET: ret = ioctl_parms(arg, I2OPARMSET); break; case I2OPARMGET: ret = ioctl_parms(arg, I2OPARMGET); break; case I2OSWDL: ret = ioctl_swdl(arg); break; case I2OSWUL: ret = ioctl_swul(arg); break; case I2OSWDEL: ret = ioctl_swdel(arg); break; case I2OVALIDATE: ret = ioctl_validate(arg); break; case I2OHTML: ret = ioctl_html(arg); break; default: ret = -EINVAL; } spin_unlock(&i2o_config_lock); return ret; } int ioctl_getiops(unsigned long arg) { u8 *user_iop_table = (u8*)arg; struct i2o_controller *c = NULL; int i; u8 foo[MAX_I2O_CONTROLLERS]; if(!access_ok(VERIFY_WRITE, user_iop_table, MAX_I2O_CONTROLLERS)) return -EFAULT; for(i = 0; i < MAX_I2O_CONTROLLERS; i++) { c = i2o_find_controller(i); if(c) { foo[i] = 1; i2o_unlock_controller(c); } else { foo[i] = 0; } } __copy_to_user(user_iop_table, foo, MAX_I2O_CONTROLLERS); return 0; } int ioctl_gethrt(unsigned long arg) { struct i2o_controller *c; struct i2o_cmd_hrtlct *cmd = (struct i2o_cmd_hrtlct*)arg; struct i2o_cmd_hrtlct kcmd; pi2o_hrt hrt; int len; u32 reslen; int ret = 0; if(copy_from_user(&kcmd, cmd, sizeof(struct i2o_cmd_hrtlct))) return -EFAULT; if(get_user(reslen, kcmd.reslen) < 0) return -EFAULT; if(kcmd.resbuf == NULL) return -EFAULT; c = i2o_find_controller(kcmd.iop); if(!c) return -ENXIO; hrt = (pi2o_hrt)c->hrt; i2o_unlock_controller(c); len = 8 + ((hrt->entry_len * hrt->num_entries) << 2); /* We did a get user...so assuming mem is ok...is this bad? */ put_user(len, kcmd.reslen); if(len > reslen) ret = -ENOBUFS; if(copy_to_user(kcmd.resbuf, (void*)hrt, len)) ret = -EFAULT; return ret; } int ioctl_getlct(unsigned long arg) { struct i2o_controller *c; struct i2o_cmd_hrtlct *cmd = (struct i2o_cmd_hrtlct*)arg; struct i2o_cmd_hrtlct kcmd; pi2o_lct lct; int len; int ret = 0; u32 reslen; if(copy_from_user(&kcmd, cmd, sizeof(struct i2o_cmd_hrtlct))) return -EFAULT; if(get_user(reslen, kcmd.reslen) < 0) return -EFAULT; if(kcmd.resbuf == NULL) return -EFAULT; c = i2o_find_controller(kcmd.iop); if(!c) return -ENXIO; lct = (pi2o_lct)c->lct; i2o_unlock_controller(c); len = (unsigned int)lct->table_size << 2; put_user(len, kcmd.reslen); if(len > reslen) ret = -ENOBUFS; else if(copy_to_user(kcmd.resbuf, (void*)lct, len)) ret = -EFAULT; return ret; } static int ioctl_parms(unsigned long arg, unsigned int type) { int ret = 0; struct i2o_controller *c; struct i2o_cmd_psetget *cmd = (struct i2o_cmd_psetget*)arg; struct i2o_cmd_psetget kcmd; u32 reslen; u8 *ops; u8 *res; int len; u32 i2o_cmd = (type == I2OPARMGET ? I2O_CMD_UTIL_PARAMS_GET : I2O_CMD_UTIL_PARAMS_SET); if(copy_from_user(&kcmd, cmd, sizeof(struct i2o_cmd_psetget))) return -EFAULT; if(get_user(reslen, kcmd.reslen)) return -EFAULT; c = i2o_find_controller(kcmd.iop); if(!c) return -ENXIO; ops = (u8*)kmalloc(kcmd.oplen, GFP_KERNEL); if(!ops) { i2o_unlock_controller(c); return -ENOMEM; } if(copy_from_user(ops, kcmd.opbuf, kcmd.oplen)) { i2o_unlock_controller(c); kfree(ops); return -EFAULT; } /* * It's possible to have a _very_ large table * and that the user asks for all of it at once... */ res = (u8*)kmalloc(65536, GFP_KERNEL); if(!res) { i2o_unlock_controller(c); kfree(ops); return -ENOMEM; } len = i2o_issue_params(i2o_cmd, c, kcmd.tid, cfg_handler.context, ops, kcmd.oplen, res, 65536, &i2o_cfg_token); i2o_unlock_controller(c); kfree(ops); if (len < 0) { kfree(res); return len; /* -DetailedStatus */ } put_user(len, kcmd.reslen); if(len > reslen) ret = -ENOBUFS; else if(copy_to_user(cmd->resbuf, res, len)) ret = -EFAULT; kfree(res); return ret; } int ioctl_html(unsigned long arg) { struct i2o_html *cmd = (struct i2o_html*)arg; struct i2o_html kcmd; struct i2o_controller *c; u8 *res = NULL; void *query = NULL; int ret = 0; int token; u32 len; u32 reslen; u32 msg[MSG_FRAME_SIZE/4]; if(copy_from_user(&kcmd, cmd, sizeof(struct i2o_html))) { printk(KERN_INFO "i2o_config: can't copy html cmd\n"); return -EFAULT; } if(get_user(reslen, kcmd.reslen) < 0) { printk(KERN_INFO "i2o_config: can't copy html reslen\n"); return -EFAULT; } if(!kcmd.resbuf) { printk(KERN_INFO "i2o_config: NULL html buffer\n"); return -EFAULT; } c = i2o_find_controller(kcmd.iop); if(!c) return -ENXIO; if(kcmd.qlen) /* Check for post data */ { query = kmalloc(kcmd.qlen, GFP_KERNEL); if(!query) { i2o_unlock_controller(c); return -ENOMEM; } if(copy_from_user(query, kcmd.qbuf, kcmd.qlen)) { i2o_unlock_controller(c); printk(KERN_INFO "i2o_config: could not get query\n"); kfree(query); return -EFAULT; } } res = kmalloc(4096, GFP_KERNEL); if(!res) { i2o_unlock_controller(c); return -ENOMEM; } msg[1] = (I2O_CMD_UTIL_CONFIG_DIALOG << 24)|HOST_TID<<12|kcmd.tid; msg[2] = i2o_cfg_context; msg[3] = 0; msg[4] = kcmd.page; msg[5] = 0xD0000000|4096; msg[6] = virt_to_bus(res); if(!kcmd.qlen) /* Check for post data */ msg[0] = SEVEN_WORD_MSG_SIZE|SGL_OFFSET_5; else { msg[0] = NINE_WORD_MSG_SIZE|SGL_OFFSET_5; msg[5] = 0x50000000|4096; msg[7] = 0xD4000000|(kcmd.qlen); msg[8] = virt_to_phys(query); } token = i2o_post_wait(c, cmd->tid, msg, 9*4, &i2o_cfg_token, 10); if(token != I2O_POST_WAIT_OK) { i2o_unlock_controller(c); kfree(res); if(kcmd.qlen) kfree(query); return -ETIMEDOUT; } i2o_unlock_controller(c); len = strnlen(res, 8192); put_user(len, kcmd.reslen); if(len > reslen) ret = -ENOMEM; if(copy_to_user(kcmd.resbuf, res, len)) ret = -EFAULT; kfree(res); if(kcmd.qlen) kfree(query); return ret; } int ioctl_swdl(unsigned long arg) { struct i2o_sw_xfer kxfer; struct i2o_sw_xfer *pxfer = (struct i2o_sw_xfer *)arg; unsigned char maxfrag = 0, curfrag = 0; unsigned char buffer[8192]; u32 msg[9]; unsigned int token = 0, diff = 0, swlen = 0, swxfer = 0; struct i2o_controller *c; int foo = 0; printk("*** foo%d ***\n", foo++); if(copy_from_user(&kxfer, pxfer, sizeof(struct i2o_sw_xfer))) { printk( "i2o_config: can't copy i2o_sw cmd @ %p\n", pxfer); return -EFAULT; } printk("*** foo%d ***\n", foo++); printk("Attempting to copy swlen from %p\n", kxfer.swlen); if(get_user(swlen, kxfer.swlen) < 0) { printk( "i2o_config: can't copy swlen\n"); return -EFAULT; } printk("*** foo%d ***\n", foo++); maxfrag = swlen >> 13; // Transfer in 8k fragments printk("Attempting to write maxfrag @ %p\n", kxfer.maxfrag); if(put_user(maxfrag, kxfer.maxfrag) < 0) { printk( "i2o_config: can't write maxfrag\n"); return -EFAULT; } printk("*** foo%d ***\n", foo++); printk("Attempting to write curfrag @ %p\n", kxfer.curfrag); if(put_user(curfrag, kxfer.curfrag) < 0) { printk( "i2o_config: can't write curfrag\n"); return -EFAULT; } printk("*** foo%d ***\n", foo++); if(!kxfer.buf) { printk( "i2o_config: NULL software buffer\n"); return -EFAULT; } printk("*** foo%d ***\n", foo++); // access_ok doesn't check for NULL... if(!access_ok(VERIFY_READ, kxfer.buf, swlen)) { printk( "i2o_config: Cannot read sw buffer\n"); return -EFAULT; } printk("*** foo%d ***\n", foo++); c = i2o_find_controller(kxfer.iop); if(!c) return -ENXIO; printk("*** foo%d ***\n", foo++); msg[0]= NINE_WORD_MSG_SIZE | SGL_OFFSET_7; msg[1]= I2O_CMD_SW_DOWNLOAD<<24 | HOST_TID<<12 | ADAPTER_TID; msg[2]= (u32)cfg_handler.context; msg[3]= 0; msg[4]= ((u32)kxfer.flags)<<24|((u32)kxfer.sw_type)<<16|((u32)maxfrag)<<8|((u32)curfrag); msg[5]= swlen; msg[6]= kxfer.sw_id; msg[7]= (0xD0000000 | 8192); msg[8]= virt_to_phys(buffer); printk("*** foo%d ***\n", foo++); // // Loop through all fragments but last and transfer them... // We already checked memory, so from now we assume it's all good // for(curfrag = 0; curfrag < maxfrag-1; curfrag++) { printk("Transfering fragment %d\n", curfrag); msg[4] |= (u32)curfrag; __copy_from_user(buffer, kxfer.buf, 8192); swxfer += 8192; // Yes...that's one minute, but the spec states that // transfers take a long time, and I've seen just how // long they can take. token = i2o_post_wait(c, ADAPTER_TID, msg, sizeof(msg), &i2o_cfg_token,60); if (token != I2O_POST_WAIT_OK ) // Something very wrong { i2o_unlock_controller(c); printk("Timeout downloading software"); return -ETIMEDOUT; } __put_user(curfrag, kxfer.curfrag); } // Last frag is special case since it's not exactly 8K diff = swlen - swxfer; msg[4] |= (u32)maxfrag; msg[7] = (0xD0000000 | diff); __copy_from_user(buffer, kxfer.buf, 8192); token = i2o_post_wait(c, ADAPTER_TID, msg, sizeof(msg), &i2o_cfg_token,60); if( token != I2O_POST_WAIT_OK ) // Something very wrong { i2o_unlock_controller(c); printk("Timeout downloading software"); return -ETIMEDOUT; } __put_user(curfrag, kxfer.curfrag); i2o_unlock_controller(c); return 0; } /* To be written */ int ioctl_swul(unsigned long arg) { return -EINVAL; } /* To be written */ int ioctl_swdel(unsigned long arg) { return -EINVAL; } int ioctl_validate(unsigned long arg) { int token; int iop = (int)arg; u32 msg[4]; struct i2o_controller *c; c=i2o_find_controller(iop); if (!c) return -ENXIO; msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0; msg[1] = I2O_CMD_CONFIG_VALIDATE<<24 | HOST_TID<<12 | iop; msg[2] = (u32)i2o_cfg_context; msg[3] = 0; token = i2o_post_wait(c, ADAPTER_TID, msg, sizeof(msg),&i2o_cfg_token, 10); i2o_unlock_controller(c); if (token != I2O_POST_WAIT_OK) { printk("Can't validate configuration, ErrorStatus = %d\n", token); return -ETIMEDOUT; } return 0; } static int cfg_open(struct inode *inode, struct file *file) { /* * Should support multiple management users */ MOD_INC_USE_COUNT; return 0; } static int cfg_release(struct inode *inode, struct file *file) { MOD_DEC_USE_COUNT; return 0; } static struct file_operations config_fops = { cfg_llseek, cfg_read, cfg_write, NULL, NULL /*cfg_poll*/, cfg_ioctl, NULL, /* No mmap */ cfg_open, NULL, /* No flush */ cfg_release }; static struct miscdevice i2o_miscdev = { I2O_MINOR, "i2octl", &config_fops }; #ifdef MODULE int init_module(void) #else int __init i2o_config_init(void) #endif { printk(KERN_INFO "i2o configuration manager v 0.02\n"); if((page_buf = kmalloc(4096, GFP_KERNEL))==NULL) { printk(KERN_ERR "i2o_config: no memory for page buffer.\n"); return -ENOBUFS; } if(misc_register(&i2o_miscdev)==-1) { printk(KERN_ERR "i2o_config: can't register device.\n"); kfree(page_buf); return -EBUSY; } /* * Install our handler */ if(i2o_install_handler(&cfg_handler)<0) { kfree(page_buf); printk(KERN_ERR "i2o_config: handler register failed.\n"); misc_deregister(&i2o_miscdev); return -EBUSY; } /* * The low 16bits of the transaction context must match this * for everything we post. Otherwise someone else gets our mail */ i2o_cfg_context = cfg_handler.context; return 0; } #ifdef MODULE void cleanup_module(void) { misc_deregister(&i2o_miscdev); if(page_buf) kfree(page_buf); if(i2o_cfg_context != -1) i2o_remove_handler(&cfg_handler); if(i2o_buffer) kfree(i2o_buffer); } EXPORT_NO_SYMBOLS; MODULE_AUTHOR("Red Hat Software"); MODULE_DESCRIPTION("I2O Configuration"); #endif |