1 /* 2 * (C) 2001 Clemson University and The University of Chicago 3 * 4 * Changes by Acxiom Corporation to add protocol version to kernel 5 * communication, Copyright Acxiom Corporation, 2005. 6 * 7 * See COPYING in top-level directory. 8 */ 9 10 #include "protocol.h" 11 #include "orangefs-kernel.h" 12 #include "orangefs-dev-proto.h" 13 #include "orangefs-bufmap.h" 14 #include "orangefs-debugfs.h" 15 16 #include <linux/debugfs.h> 17 #include <linux/slab.h> 18 19 /* this file implements the /dev/pvfs2-req device node */ 20 21 uint32_t orangefs_userspace_version; 22 23 static int open_access_count; 24 25 static DEFINE_MUTEX(devreq_mutex); 26 27 #define DUMP_DEVICE_ERROR() \ 28 do { \ 29 gossip_err("*****************************************************\n");\ 30 gossip_err("ORANGEFS Device Error: You cannot open the device file "); \ 31 gossip_err("\n/dev/%s more than once. Please make sure that\nthere " \ 32 "are no ", ORANGEFS_REQDEVICE_NAME); \ 33 gossip_err("instances of a program using this device\ncurrently " \ 34 "running. (You must verify this!)\n"); \ 35 gossip_err("For example, you can use the lsof program as follows:\n");\ 36 gossip_err("'lsof | grep %s' (run this as root)\n", \ 37 ORANGEFS_REQDEVICE_NAME); \ 38 gossip_err(" open_access_count = %d\n", open_access_count); \ 39 gossip_err("*****************************************************\n");\ 40 } while (0) 41 42 static int hash_func(__u64 tag, int table_size) 43 { 44 return do_div(tag, (unsigned int)table_size); 45 } 46 47 static void orangefs_devreq_add_op(struct orangefs_kernel_op_s *op) 48 { 49 int index = hash_func(op->tag, hash_table_size); 50 51 list_add_tail(&op->list, &orangefs_htable_ops_in_progress[index]); 52 } 53 54 /* 55 * find the op with this tag and remove it from the in progress 56 * hash table. 57 */ 58 static struct orangefs_kernel_op_s *orangefs_devreq_remove_op(__u64 tag) 59 { 60 struct orangefs_kernel_op_s *op, *next; 61 int index; 62 63 index = hash_func(tag, hash_table_size); 64 65 spin_lock(&orangefs_htable_ops_in_progress_lock); 66 list_for_each_entry_safe(op, 67 next, 68 &orangefs_htable_ops_in_progress[index], 69 list) { 70 if (op->tag == tag && !op_state_purged(op) && 71 !op_state_given_up(op)) { 72 list_del_init(&op->list); 73 spin_unlock(&orangefs_htable_ops_in_progress_lock); 74 return op; 75 } 76 } 77 78 spin_unlock(&orangefs_htable_ops_in_progress_lock); 79 return NULL; 80 } 81 82 /* Returns whether any FS are still pending remounted */ 83 static int mark_all_pending_mounts(void) 84 { 85 int unmounted = 1; 86 struct orangefs_sb_info_s *orangefs_sb = NULL; 87 88 spin_lock(&orangefs_superblocks_lock); 89 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { 90 /* All of these file system require a remount */ 91 orangefs_sb->mount_pending = 1; 92 unmounted = 0; 93 } 94 spin_unlock(&orangefs_superblocks_lock); 95 return unmounted; 96 } 97 98 /* 99 * Determine if a given file system needs to be remounted or not 100 * Returns -1 on error 101 * 0 if already mounted 102 * 1 if needs remount 103 */ 104 static int fs_mount_pending(__s32 fsid) 105 { 106 int mount_pending = -1; 107 struct orangefs_sb_info_s *orangefs_sb = NULL; 108 109 spin_lock(&orangefs_superblocks_lock); 110 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { 111 if (orangefs_sb->fs_id == fsid) { 112 mount_pending = orangefs_sb->mount_pending; 113 break; 114 } 115 } 116 spin_unlock(&orangefs_superblocks_lock); 117 return mount_pending; 118 } 119 120 static int orangefs_devreq_open(struct inode *inode, struct file *file) 121 { 122 int ret = -EINVAL; 123 124 /* in order to ensure that the filesystem driver sees correct UIDs */ 125 if (file->f_cred->user_ns != &init_user_ns) { 126 gossip_err("%s: device cannot be opened outside init_user_ns\n", 127 __func__); 128 goto out; 129 } 130 131 if (!(file->f_flags & O_NONBLOCK)) { 132 gossip_err("%s: device cannot be opened in blocking mode\n", 133 __func__); 134 goto out; 135 } 136 ret = -EACCES; 137 gossip_debug(GOSSIP_DEV_DEBUG, "client-core: opening device\n"); 138 mutex_lock(&devreq_mutex); 139 140 if (open_access_count == 0) { 141 open_access_count = 1; 142 ret = 0; 143 } else { 144 DUMP_DEVICE_ERROR(); 145 } 146 mutex_unlock(&devreq_mutex); 147 148 out: 149 150 gossip_debug(GOSSIP_DEV_DEBUG, 151 "pvfs2-client-core: open device complete (ret = %d)\n", 152 ret); 153 return ret; 154 } 155 156 /* Function for read() callers into the device */ 157 static ssize_t orangefs_devreq_read(struct file *file, 158 char __user *buf, 159 size_t count, loff_t *offset) 160 { 161 struct orangefs_kernel_op_s *op, *temp; 162 __s32 proto_ver = ORANGEFS_KERNEL_PROTO_VERSION; 163 static __s32 magic = ORANGEFS_DEVREQ_MAGIC; 164 struct orangefs_kernel_op_s *cur_op = NULL; 165 unsigned long ret; 166 167 /* We do not support blocking IO. */ 168 if (!(file->f_flags & O_NONBLOCK)) { 169 gossip_err("%s: blocking read from client-core.\n", 170 __func__); 171 return -EINVAL; 172 } 173 174 /* 175 * The client will do an ioctl to find MAX_DEV_REQ_UPSIZE, then 176 * always read with that size buffer. 177 */ 178 if (count != MAX_DEV_REQ_UPSIZE) { 179 gossip_err("orangefs: client-core tried to read wrong size\n"); 180 return -EINVAL; 181 } 182 183 /* Check for an empty list before locking. */ 184 if (list_empty(&orangefs_request_list)) 185 return -EAGAIN; 186 187 restart: 188 /* Get next op (if any) from top of list. */ 189 spin_lock(&orangefs_request_list_lock); 190 list_for_each_entry_safe(op, temp, &orangefs_request_list, list) { 191 __s32 fsid; 192 /* This lock is held past the end of the loop when we break. */ 193 spin_lock(&op->lock); 194 if (unlikely(op_state_purged(op) || op_state_given_up(op))) { 195 spin_unlock(&op->lock); 196 continue; 197 } 198 199 fsid = fsid_of_op(op); 200 if (fsid != ORANGEFS_FS_ID_NULL) { 201 int ret; 202 /* Skip ops whose filesystem needs to be mounted. */ 203 ret = fs_mount_pending(fsid); 204 if (ret == 1) { 205 gossip_debug(GOSSIP_DEV_DEBUG, 206 "%s: mount pending, skipping op tag " 207 "%llu %s\n", 208 __func__, 209 llu(op->tag), 210 get_opname_string(op)); 211 spin_unlock(&op->lock); 212 continue; 213 /* 214 * Skip ops whose filesystem we don't know about unless 215 * it is being mounted or unmounted. It is possible for 216 * a filesystem we don't know about to be unmounted if 217 * it fails to mount in the kernel after userspace has 218 * been sent the mount request. 219 */ 220 /* XXX: is there a better way to detect this? */ 221 } else if (ret == -1 && 222 !(op->upcall.type == 223 ORANGEFS_VFS_OP_FS_MOUNT || 224 op->upcall.type == 225 ORANGEFS_VFS_OP_GETATTR || 226 op->upcall.type == 227 ORANGEFS_VFS_OP_FS_UMOUNT)) { 228 gossip_debug(GOSSIP_DEV_DEBUG, 229 "orangefs: skipping op tag %llu %s\n", 230 llu(op->tag), get_opname_string(op)); 231 gossip_err( 232 "orangefs: ERROR: fs_mount_pending %d\n", 233 fsid); 234 spin_unlock(&op->lock); 235 continue; 236 } 237 } 238 /* 239 * Either this op does not pertain to a filesystem, is mounting 240 * a filesystem, or pertains to a mounted filesystem. Let it 241 * through. 242 */ 243 cur_op = op; 244 break; 245 } 246 247 /* 248 * At this point we either have a valid op and can continue or have not 249 * found an op and must ask the client to try again later. 250 */ 251 if (!cur_op) { 252 spin_unlock(&orangefs_request_list_lock); 253 return -EAGAIN; 254 } 255 256 gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n", 257 __func__, 258 llu(cur_op->tag), 259 get_opname_string(cur_op)); 260 261 /* 262 * Such an op should never be on the list in the first place. If so, we 263 * will abort. 264 */ 265 if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) { 266 gossip_err("orangefs: ERROR: Current op already queued.\n"); 267 list_del_init(&cur_op->list); 268 spin_unlock(&cur_op->lock); 269 spin_unlock(&orangefs_request_list_lock); 270 return -EAGAIN; 271 } 272 273 list_del_init(&cur_op->list); 274 spin_unlock(&orangefs_request_list_lock); 275 276 spin_unlock(&cur_op->lock); 277 278 /* Push the upcall out. */ 279 ret = copy_to_user(buf, &proto_ver, sizeof(__s32)); 280 if (ret != 0) 281 goto error; 282 ret = copy_to_user(buf+sizeof(__s32), &magic, sizeof(__s32)); 283 if (ret != 0) 284 goto error; 285 ret = copy_to_user(buf+2 * sizeof(__s32), &cur_op->tag, sizeof(__u64)); 286 if (ret != 0) 287 goto error; 288 ret = copy_to_user(buf+2*sizeof(__s32)+sizeof(__u64), &cur_op->upcall, 289 sizeof(struct orangefs_upcall_s)); 290 if (ret != 0) 291 goto error; 292 293 spin_lock(&orangefs_htable_ops_in_progress_lock); 294 spin_lock(&cur_op->lock); 295 if (unlikely(op_state_given_up(cur_op))) { 296 spin_unlock(&cur_op->lock); 297 spin_unlock(&orangefs_htable_ops_in_progress_lock); 298 complete(&cur_op->waitq); 299 goto restart; 300 } 301 302 /* 303 * Set the operation to be in progress and move it between lists since 304 * it has been sent to the client. 305 */ 306 set_op_state_inprogress(cur_op); 307 gossip_debug(GOSSIP_DEV_DEBUG, 308 "%s: 1 op:%s: op_state:%d: process:%s:\n", 309 __func__, 310 get_opname_string(cur_op), 311 cur_op->op_state, 312 current->comm); 313 orangefs_devreq_add_op(cur_op); 314 spin_unlock(&cur_op->lock); 315 spin_unlock(&orangefs_htable_ops_in_progress_lock); 316 317 /* The client only asks to read one size buffer. */ 318 return MAX_DEV_REQ_UPSIZE; 319 error: 320 /* 321 * We were unable to copy the op data to the client. Put the op back in 322 * list. If client has crashed, the op will be purged later when the 323 * device is released. 324 */ 325 gossip_err("orangefs: Failed to copy data to user space\n"); 326 spin_lock(&orangefs_request_list_lock); 327 spin_lock(&cur_op->lock); 328 if (likely(!op_state_given_up(cur_op))) { 329 set_op_state_waiting(cur_op); 330 gossip_debug(GOSSIP_DEV_DEBUG, 331 "%s: 2 op:%s: op_state:%d: process:%s:\n", 332 __func__, 333 get_opname_string(cur_op), 334 cur_op->op_state, 335 current->comm); 336 list_add(&cur_op->list, &orangefs_request_list); 337 spin_unlock(&cur_op->lock); 338 } else { 339 spin_unlock(&cur_op->lock); 340 complete(&cur_op->waitq); 341 } 342 spin_unlock(&orangefs_request_list_lock); 343 return -EFAULT; 344 } 345 346 /* 347 * Function for writev() callers into the device. 348 * 349 * Userspace should have written: 350 * - __u32 version 351 * - __u32 magic 352 * - __u64 tag 353 * - struct orangefs_downcall_s 354 * - trailer buffer (in the case of READDIR operations) 355 */ 356 static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb, 357 struct iov_iter *iter) 358 { 359 ssize_t ret; 360 struct orangefs_kernel_op_s *op = NULL; 361 struct { 362 __u32 version; 363 __u32 magic; 364 __u64 tag; 365 } head; 366 int total = ret = iov_iter_count(iter); 367 int downcall_size = sizeof(struct orangefs_downcall_s); 368 int head_size = sizeof(head); 369 370 gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n", 371 __func__, 372 total, 373 ret); 374 375 if (total < MAX_DEV_REQ_DOWNSIZE) { 376 gossip_err("%s: total:%d: must be at least:%u:\n", 377 __func__, 378 total, 379 (unsigned int) MAX_DEV_REQ_DOWNSIZE); 380 return -EFAULT; 381 } 382 383 if (!copy_from_iter_full(&head, head_size, iter)) { 384 gossip_err("%s: failed to copy head.\n", __func__); 385 return -EFAULT; 386 } 387 388 if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) { 389 gossip_err("%s: userspace claims version" 390 "%d, minimum version required: %d.\n", 391 __func__, 392 head.version, 393 ORANGEFS_MINIMUM_USERSPACE_VERSION); 394 return -EPROTO; 395 } 396 397 if (head.magic != ORANGEFS_DEVREQ_MAGIC) { 398 gossip_err("Error: Device magic number does not match.\n"); 399 return -EPROTO; 400 } 401 402 if (!orangefs_userspace_version) { 403 orangefs_userspace_version = head.version; 404 } else if (orangefs_userspace_version != head.version) { 405 gossip_err("Error: userspace version changes\n"); 406 return -EPROTO; 407 } 408 409 /* remove the op from the in progress hash table */ 410 op = orangefs_devreq_remove_op(head.tag); 411 if (!op) { 412 gossip_debug(GOSSIP_DEV_DEBUG, 413 "%s: No one's waiting for tag %llu\n", 414 __func__, llu(head.tag)); 415 return ret; 416 } 417 418 if (!copy_from_iter_full(&op->downcall, downcall_size, iter)) { 419 gossip_err("%s: failed to copy downcall.\n", __func__); 420 goto Efault; 421 } 422 423 if (op->downcall.status) 424 goto wakeup; 425 426 /* 427 * We've successfully peeled off the head and the downcall. 428 * Something has gone awry if total doesn't equal the 429 * sum of head_size, downcall_size and trailer_size. 430 */ 431 if ((head_size + downcall_size + op->downcall.trailer_size) != total) { 432 gossip_err("%s: funky write, head_size:%d" 433 ": downcall_size:%d: trailer_size:%lld" 434 ": total size:%d:\n", 435 __func__, 436 head_size, 437 downcall_size, 438 op->downcall.trailer_size, 439 total); 440 goto Efault; 441 } 442 443 /* Only READDIR operations should have trailers. */ 444 if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) && 445 (op->downcall.trailer_size != 0)) { 446 gossip_err("%s: %x operation with trailer.", 447 __func__, 448 op->downcall.type); 449 goto Efault; 450 } 451 452 /* READDIR operations should always have trailers. */ 453 if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) && 454 (op->downcall.trailer_size == 0)) { 455 gossip_err("%s: %x operation with no trailer.", 456 __func__, 457 op->downcall.type); 458 goto Efault; 459 } 460 461 if (op->downcall.type != ORANGEFS_VFS_OP_READDIR) 462 goto wakeup; 463 464 op->downcall.trailer_buf = vmalloc(op->downcall.trailer_size); 465 if (!op->downcall.trailer_buf) 466 goto Enomem; 467 468 memset(op->downcall.trailer_buf, 0, op->downcall.trailer_size); 469 if (!copy_from_iter_full(op->downcall.trailer_buf, 470 op->downcall.trailer_size, iter)) { 471 gossip_err("%s: failed to copy trailer.\n", __func__); 472 vfree(op->downcall.trailer_buf); 473 goto Efault; 474 } 475 476 wakeup: 477 /* 478 * Return to vfs waitqueue, and back to service_operation 479 * through wait_for_matching_downcall. 480 */ 481 spin_lock(&op->lock); 482 if (unlikely(op_is_cancel(op))) { 483 spin_unlock(&op->lock); 484 put_cancel(op); 485 } else if (unlikely(op_state_given_up(op))) { 486 spin_unlock(&op->lock); 487 complete(&op->waitq); 488 } else { 489 set_op_state_serviced(op); 490 gossip_debug(GOSSIP_DEV_DEBUG, 491 "%s: op:%s: op_state:%d: process:%s:\n", 492 __func__, 493 get_opname_string(op), 494 op->op_state, 495 current->comm); 496 spin_unlock(&op->lock); 497 } 498 return ret; 499 500 Efault: 501 op->downcall.status = -(ORANGEFS_ERROR_BIT | 9); 502 ret = -EFAULT; 503 goto wakeup; 504 505 Enomem: 506 op->downcall.status = -(ORANGEFS_ERROR_BIT | 8); 507 ret = -ENOMEM; 508 goto wakeup; 509 } 510 511 /* 512 * NOTE: gets called when the last reference to this device is dropped. 513 * Using the open_access_count variable, we enforce a reference count 514 * on this file so that it can be opened by only one process at a time. 515 * the devreq_mutex is used to make sure all i/o has completed 516 * before we call orangefs_bufmap_finalize, and similar such tricky 517 * situations 518 */ 519 static int orangefs_devreq_release(struct inode *inode, struct file *file) 520 { 521 int unmounted = 0; 522 523 gossip_debug(GOSSIP_DEV_DEBUG, 524 "%s:pvfs2-client-core: exiting, closing device\n", 525 __func__); 526 527 mutex_lock(&devreq_mutex); 528 orangefs_bufmap_finalize(); 529 530 open_access_count = -1; 531 532 unmounted = mark_all_pending_mounts(); 533 gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n", 534 (unmounted ? "UNMOUNTED" : "MOUNTED")); 535 536 purge_waiting_ops(); 537 purge_inprogress_ops(); 538 539 orangefs_bufmap_run_down(); 540 541 gossip_debug(GOSSIP_DEV_DEBUG, 542 "pvfs2-client-core: device close complete\n"); 543 open_access_count = 0; 544 orangefs_userspace_version = 0; 545 mutex_unlock(&devreq_mutex); 546 return 0; 547 } 548 549 int is_daemon_in_service(void) 550 { 551 int in_service; 552 553 /* 554 * What this function does is checks if client-core is alive 555 * based on the access count we maintain on the device. 556 */ 557 mutex_lock(&devreq_mutex); 558 in_service = open_access_count == 1 ? 0 : -EIO; 559 mutex_unlock(&devreq_mutex); 560 return in_service; 561 } 562 563 bool __is_daemon_in_service(void) 564 { 565 return open_access_count == 1; 566 } 567 568 static inline long check_ioctl_command(unsigned int command) 569 { 570 /* Check for valid ioctl codes */ 571 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) { 572 gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n", 573 command, 574 _IOC_TYPE(command), 575 ORANGEFS_DEV_MAGIC); 576 return -EINVAL; 577 } 578 /* and valid ioctl commands */ 579 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) { 580 gossip_err("Invalid ioctl command number [%d >= %d]\n", 581 _IOC_NR(command), ORANGEFS_DEV_MAXNR); 582 return -ENOIOCTLCMD; 583 } 584 return 0; 585 } 586 587 static long dispatch_ioctl_command(unsigned int command, unsigned long arg) 588 { 589 static __s32 magic = ORANGEFS_DEVREQ_MAGIC; 590 static __s32 max_up_size = MAX_DEV_REQ_UPSIZE; 591 static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE; 592 struct ORANGEFS_dev_map_desc user_desc; 593 int ret = 0; 594 int upstream_kmod = 1; 595 struct orangefs_sb_info_s *orangefs_sb; 596 597 /* mtmoore: add locking here */ 598 599 switch (command) { 600 case ORANGEFS_DEV_GET_MAGIC: 601 return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ? 602 -EIO : 603 0); 604 case ORANGEFS_DEV_GET_MAX_UPSIZE: 605 return ((put_user(max_up_size, 606 (__s32 __user *) arg) == -EFAULT) ? 607 -EIO : 608 0); 609 case ORANGEFS_DEV_GET_MAX_DOWNSIZE: 610 return ((put_user(max_down_size, 611 (__s32 __user *) arg) == -EFAULT) ? 612 -EIO : 613 0); 614 case ORANGEFS_DEV_MAP: 615 ret = copy_from_user(&user_desc, 616 (struct ORANGEFS_dev_map_desc __user *) 617 arg, 618 sizeof(struct ORANGEFS_dev_map_desc)); 619 /* WTF -EIO and not -EFAULT? */ 620 return ret ? -EIO : orangefs_bufmap_initialize(&user_desc); 621 case ORANGEFS_DEV_REMOUNT_ALL: 622 gossip_debug(GOSSIP_DEV_DEBUG, 623 "%s: got ORANGEFS_DEV_REMOUNT_ALL\n", 624 __func__); 625 626 /* 627 * remount all mounted orangefs volumes to regain the lost 628 * dynamic mount tables (if any) -- NOTE: this is done 629 * without keeping the superblock list locked due to the 630 * upcall/downcall waiting. also, the request mutex is 631 * used to ensure that no operations will be serviced until 632 * all of the remounts are serviced (to avoid ops between 633 * mounts to fail) 634 */ 635 ret = mutex_lock_interruptible(&orangefs_request_mutex); 636 if (ret < 0) 637 return ret; 638 gossip_debug(GOSSIP_DEV_DEBUG, 639 "%s: priority remount in progress\n", 640 __func__); 641 spin_lock(&orangefs_superblocks_lock); 642 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { 643 /* 644 * We have to drop the spinlock, so entries can be 645 * removed. They can't be freed, though, so we just 646 * keep the forward pointers and zero the back ones - 647 * that way we can get to the rest of the list. 648 */ 649 if (!orangefs_sb->list.prev) 650 continue; 651 gossip_debug(GOSSIP_DEV_DEBUG, 652 "%s: Remounting SB %p\n", 653 __func__, 654 orangefs_sb); 655 656 spin_unlock(&orangefs_superblocks_lock); 657 ret = orangefs_remount(orangefs_sb); 658 spin_lock(&orangefs_superblocks_lock); 659 if (ret) { 660 gossip_debug(GOSSIP_DEV_DEBUG, 661 "SB %p remount failed\n", 662 orangefs_sb); 663 break; 664 } 665 } 666 spin_unlock(&orangefs_superblocks_lock); 667 gossip_debug(GOSSIP_DEV_DEBUG, 668 "%s: priority remount complete\n", 669 __func__); 670 mutex_unlock(&orangefs_request_mutex); 671 return ret; 672 673 case ORANGEFS_DEV_UPSTREAM: 674 ret = copy_to_user((void __user *)arg, 675 &upstream_kmod, 676 sizeof(upstream_kmod)); 677 678 if (ret != 0) 679 return -EIO; 680 else 681 return ret; 682 683 case ORANGEFS_DEV_CLIENT_MASK: 684 return orangefs_debugfs_new_client_mask((void __user *)arg); 685 case ORANGEFS_DEV_CLIENT_STRING: 686 return orangefs_debugfs_new_client_string((void __user *)arg); 687 case ORANGEFS_DEV_DEBUG: 688 return orangefs_debugfs_new_debug((void __user *)arg); 689 default: 690 return -ENOIOCTLCMD; 691 } 692 return -ENOIOCTLCMD; 693 } 694 695 static long orangefs_devreq_ioctl(struct file *file, 696 unsigned int command, unsigned long arg) 697 { 698 long ret; 699 700 /* Check for properly constructed commands */ 701 ret = check_ioctl_command(command); 702 if (ret < 0) 703 return (int)ret; 704 705 return (int)dispatch_ioctl_command(command, arg); 706 } 707 708 #ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */ 709 710 /* Compat structure for the ORANGEFS_DEV_MAP ioctl */ 711 struct ORANGEFS_dev_map_desc32 { 712 compat_uptr_t ptr; 713 __s32 total_size; 714 __s32 size; 715 __s32 count; 716 }; 717 718 static unsigned long translate_dev_map26(unsigned long args, long *error) 719 { 720 struct ORANGEFS_dev_map_desc32 __user *p32 = (void __user *)args; 721 /* 722 * Depending on the architecture, allocate some space on the 723 * user-call-stack based on our expected layout. 724 */ 725 struct ORANGEFS_dev_map_desc __user *p = 726 compat_alloc_user_space(sizeof(*p)); 727 compat_uptr_t addr; 728 729 *error = 0; 730 /* get the ptr from the 32 bit user-space */ 731 if (get_user(addr, &p32->ptr)) 732 goto err; 733 /* try to put that into a 64-bit layout */ 734 if (put_user(compat_ptr(addr), &p->ptr)) 735 goto err; 736 /* copy the remaining fields */ 737 if (copy_in_user(&p->total_size, &p32->total_size, sizeof(__s32))) 738 goto err; 739 if (copy_in_user(&p->size, &p32->size, sizeof(__s32))) 740 goto err; 741 if (copy_in_user(&p->count, &p32->count, sizeof(__s32))) 742 goto err; 743 return (unsigned long)p; 744 err: 745 *error = -EFAULT; 746 return 0; 747 } 748 749 /* 750 * 32 bit user-space apps' ioctl handlers when kernel modules 751 * is compiled as a 64 bit one 752 */ 753 static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd, 754 unsigned long args) 755 { 756 long ret; 757 unsigned long arg = args; 758 759 /* Check for properly constructed commands */ 760 ret = check_ioctl_command(cmd); 761 if (ret < 0) 762 return ret; 763 if (cmd == ORANGEFS_DEV_MAP) { 764 /* 765 * convert the arguments to what we expect internally 766 * in kernel space 767 */ 768 arg = translate_dev_map26(args, &ret); 769 if (ret < 0) { 770 gossip_err("Could not translate dev map\n"); 771 return ret; 772 } 773 } 774 /* no other ioctl requires translation */ 775 return dispatch_ioctl_command(cmd, arg); 776 } 777 778 #endif /* CONFIG_COMPAT is in .config */ 779 780 /* the assigned character device major number */ 781 static int orangefs_dev_major; 782 783 /* 784 * Initialize orangefs device specific state: 785 * Must be called at module load time only 786 */ 787 int orangefs_dev_init(void) 788 { 789 /* register orangefs-req device */ 790 orangefs_dev_major = register_chrdev(0, 791 ORANGEFS_REQDEVICE_NAME, 792 &orangefs_devreq_file_operations); 793 if (orangefs_dev_major < 0) { 794 gossip_debug(GOSSIP_DEV_DEBUG, 795 "Failed to register /dev/%s (error %d)\n", 796 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major); 797 return orangefs_dev_major; 798 } 799 800 gossip_debug(GOSSIP_DEV_DEBUG, 801 "*** /dev/%s character device registered ***\n", 802 ORANGEFS_REQDEVICE_NAME); 803 gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n", 804 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major); 805 return 0; 806 } 807 808 void orangefs_dev_cleanup(void) 809 { 810 unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME); 811 gossip_debug(GOSSIP_DEV_DEBUG, 812 "*** /dev/%s character device unregistered ***\n", 813 ORANGEFS_REQDEVICE_NAME); 814 } 815 816 static unsigned int orangefs_devreq_poll(struct file *file, 817 struct poll_table_struct *poll_table) 818 { 819 int poll_revent_mask = 0; 820 821 poll_wait(file, &orangefs_request_list_waitq, poll_table); 822 823 if (!list_empty(&orangefs_request_list)) 824 poll_revent_mask |= POLL_IN; 825 return poll_revent_mask; 826 } 827 828 const struct file_operations orangefs_devreq_file_operations = { 829 .owner = THIS_MODULE, 830 .read = orangefs_devreq_read, 831 .write_iter = orangefs_devreq_write_iter, 832 .open = orangefs_devreq_open, 833 .release = orangefs_devreq_release, 834 .unlocked_ioctl = orangefs_devreq_ioctl, 835 836 #ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */ 837 .compat_ioctl = orangefs_devreq_compat_ioctl, 838 #endif 839 .poll = orangefs_devreq_poll 840 }; 841