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 | /* * Copyright (C) 1996, 1997 Claus-Justus Heine. 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, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * * This file contains the code that registers the zftape frontend * to the ftape floppy tape driver for Linux */ #include <linux/config.h> #include <linux/module.h> #include <linux/errno.h> #include <linux/version.h> #include <linux/fs.h> #include <asm/segment.h> #include <linux/kernel.h> #include <linux/signal.h> #include <linux/major.h> #include <linux/malloc.h> #ifdef CONFIG_KERNELD #include <linux/kerneld.h> #endif #include <linux/fcntl.h> #include <linux/wrapper.h> #include <linux/zftape.h> #if LINUX_VERSION_CODE >=KERNEL_VER(2,1,16) #include <linux/init.h> #else #define __initdata #define __initfunc(__arg) __arg #endif #include "../zftape/zftape-init.h" #include "../zftape/zftape-read.h" #include "../zftape/zftape-write.h" #include "../zftape/zftape-ctl.h" #include "../zftape/zftape-buffers.h" #include "../zftape/zftape_syms.h" char zft_src[] __initdata = "$Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape-init.c,v $"; char zft_rev[] __initdata = "$Revision: 1.8 $"; char zft_dat[] __initdata = "$Date: 1997/11/06 00:48:56 $"; #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,18) MODULE_AUTHOR("(c) 1996, 1997 Claus-Justus Heine " "(claus@momo.math.rwth-aachen.de)"); MODULE_DESCRIPTION(ZFTAPE_VERSION " - " "VFS interface for the Linux floppy tape driver. " "Support for QIC-113 compatible volume table " "and builtin compression (lzrw3 algorithm)"); MODULE_SUPPORTED_DEVICE("char-major-27"); #endif /* Global vars. */ struct zft_cmpr_ops *zft_cmpr_ops = NULL; const ftape_info *zft_status; /* Local vars. */ static int busy_flag = 0; static int orig_sigmask; /* the interface to the kernel vfs layer */ /* Note about llseek(): * * st.c and tpqic.c update fp->f_pos but don't implment llseek() and * initialize the llseek component of the file_ops struct with NULL. * This means that the user will get the default seek, but the tape * device will not respect the new position, but happily read from the * old position. Think a zftape specific llseek() function would be * better, returning -ESPIPE. TODO. */ static int zft_open (struct inode *ino, struct file *filep); #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,31) static int zft_close(struct inode *ino, struct file *filep); #else static void zft_close(struct inode *ino, struct file *filep); #endif static int zft_ioctl(struct inode *ino, struct file *filep, unsigned int command, unsigned long arg); #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,56) static int zft_mmap(struct file *filep, struct vm_area_struct *vma); #else static int zft_mmap(struct inode *ino, struct file *filep, struct vm_area_struct *vma); #endif #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,60) static ssize_t zft_read (struct file *fp, char *buff, size_t req_len, loff_t *ppos); static ssize_t zft_write(struct file *fp, const char *buff, size_t req_len, loff_t *ppos); #elif LINUX_VERSION_CODE >= KERNEL_VER(2,1,0) static long zft_read (struct inode *ino, struct file *fp, char *buff, unsigned long req_len); static long zft_write(struct inode *ino, struct file *fp, const char *buff, unsigned long req_len); #else static int zft_read (struct inode *ino, struct file *fp, char *buff, int req_len); #if LINUX_VERSION_CODE >= KERNEL_VER(1,3,0) static int zft_write(struct inode *ino, struct file *fp, const char *buff, int req_len); #else static int zft_write(struct inode *ino, struct file *fp, char *buff, int req_len); #endif #endif static struct file_operations zft_cdev = { NULL, /* llseek */ zft_read, /* read */ zft_write, /* write */ NULL, /* readdir */ NULL, /* select */ zft_ioctl, /* ioctl */ zft_mmap, /* mmap */ zft_open, /* open */ zft_close, /* release */ NULL, /* fsync */ }; /* Open floppy tape device */ static int zft_open(struct inode *ino, struct file *filep) { int result; TRACE_FUN(ft_t_flow); #if LINUX_VERSION_CODE < KERNEL_VER(2,1,18) if (!MOD_IN_USE) { MOD_INC_USE_COUNT; /* lock module in memory */ } #else MOD_INC_USE_COUNT; /* sets MOD_VISITED and MOD_USED_ONCE, * locking is done with can_unload() */ #endif TRACE(ft_t_flow, "called for minor %d", MINOR(ino->i_rdev)); if (busy_flag) { TRACE_ABORT(-EBUSY, ft_t_warn, "failed: already busy"); } busy_flag = 1; if ((MINOR(ino->i_rdev) & ~(ZFT_MINOR_OP_MASK | FTAPE_NO_REWIND)) > FTAPE_SEL_D) { busy_flag = 0; #if defined(MODULE) && LINUX_VERSION_CODE < KERNEL_VER(2,1,18) if (!zft_dirty()) { MOD_DEC_USE_COUNT; /* unlock module in memory */ } #endif TRACE_ABORT(-ENXIO, ft_t_err, "failed: illegal unit nr"); } orig_sigmask = current->blocked; current->blocked = _BLOCK_ALL; result = _zft_open(MINOR(ino->i_rdev), filep->f_flags & O_ACCMODE); if (result < 0) { current->blocked = orig_sigmask; /* restore mask */ busy_flag = 0; #if defined(MODULE) && LINUX_VERSION_CODE < KERNEL_VER(2,1,18) if (!zft_dirty()) { MOD_DEC_USE_COUNT; /* unlock module in memory */ } #endif TRACE_ABORT(result, ft_t_err, "_ftape_open failed"); } else { /* Mask signals that will disturb proper operation of the * program that is calling. */ current->blocked = orig_sigmask | _DO_BLOCK; TRACE_EXIT 0; } } /* Close floppy tape device */ #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,31) static int zft_close(struct inode *ino, struct file *filep) #else static void zft_close(struct inode *ino, struct file *filep) #endif { int result; TRACE_FUN(ft_t_flow); if (!busy_flag || MINOR(ino->i_rdev) != zft_unit) { TRACE(ft_t_err, "failed: not busy or wrong unit"); #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,31) TRACE_EXIT 0; #else TRACE_EXIT; /* keep busy_flag !(?) */ #endif } current->blocked = _BLOCK_ALL; result = _zft_close(); if (result < 0) { TRACE(ft_t_err, "_zft_close failed"); } current->blocked = orig_sigmask; /* restore before open state */ busy_flag = 0; #if defined(MODULE) && LINUX_VERSION_CODE < KERNEL_VER(2,1,18) if (!zft_dirty()) { MOD_DEC_USE_COUNT; /* unlock module in memory */ } #endif #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,31) TRACE_EXIT 0; #else TRACE_EXIT; #endif } /* Ioctl for floppy tape device */ static int zft_ioctl(struct inode *ino, struct file *filep, unsigned int command, unsigned long arg) { int result = -EIO; int old_sigmask; TRACE_FUN(ft_t_flow); if (!busy_flag || MINOR(ino->i_rdev) != zft_unit || ft_failure) { TRACE_ABORT(-EIO, ft_t_err, "failed: not busy, failure or wrong unit"); } old_sigmask = current->blocked; /* save mask */ current->blocked = _BLOCK_ALL; /* This will work as long as sizeof(void *) == sizeof(long) */ result = _zft_ioctl(command, (void *) arg); current->blocked = old_sigmask; /* restore mask */ TRACE_EXIT result; } /* Ioctl for floppy tape device */ #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,56) static int zft_mmap(struct file *filep, struct vm_area_struct *vma) #else static int zft_mmap(struct inode *ino, struct file *filep, struct vm_area_struct *vma) #endif { int result = -EIO; int old_sigmask; TRACE_FUN(ft_t_flow); if (!busy_flag || #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,56) MINOR(filep->f_dentry->d_inode->i_rdev) != zft_unit || #else MINOR(ino->i_rdev) != zft_unit || #endif ft_failure) { TRACE_ABORT(-EIO, ft_t_err, "failed: not busy, failure or wrong unit"); } old_sigmask = current->blocked; /* save mask */ current->blocked = _BLOCK_ALL; if ((result = ftape_mmap(vma)) >= 0) { #ifndef MSYNC_BUG_WAS_FIXED static struct vm_operations_struct dummy = { NULL, }; vma->vm_ops = &dummy; #endif #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,45) vma->vm_dentry = dget(filep->f_dentry); #else vma_set_inode (vma, ino); inode_inc_count (ino); #endif } current->blocked = old_sigmask; /* restore mask */ TRACE_EXIT result; } /* Read from floppy tape device */ #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,60) static ssize_t zft_read(struct file *fp, char *buff, size_t req_len, loff_t *ppos) #elif LINUX_VERSION_CODE >= KERNEL_VER(2,1,0) static long zft_read(struct inode *ino, struct file *fp, char *buff, unsigned long req_len) #else static int zft_read(struct inode *ino, struct file *fp, char *buff, int req_len) #endif { int result = -EIO; int old_sigmask; #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,60) struct inode *ino = fp->f_dentry->d_inode; #endif TRACE_FUN(ft_t_flow); TRACE(ft_t_data_flow, "called with count: %ld", (unsigned long)req_len); if (!busy_flag || MINOR(ino->i_rdev) != zft_unit || ft_failure) { TRACE_ABORT(-EIO, ft_t_err, "failed: not busy, failure or wrong unit"); } old_sigmask = current->blocked; /* save mask */ current->blocked = _BLOCK_ALL; result = _zft_read(buff, req_len); current->blocked = old_sigmask; /* restore mask */ TRACE(ft_t_data_flow, "return with count: %d", result); TRACE_EXIT result; } /* Write to tape device */ #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,60) static ssize_t zft_write(struct file *fp, const char *buff, size_t req_len, loff_t *ppos) #elif LINUX_VERSION_CODE >= KERNEL_VER(2,1,0) static long zft_write(struct inode *ino, struct file *fp, const char *buff, unsigned long req_len) #elif LINUX_VERSION_CODE >= KERNEL_VER(1,3,0) static int zft_write(struct inode *ino, struct file *fp, const char *buff, int req_len) #else static int zft_write(struct inode *ino, struct file *fp, char *buff, int req_len) #endif { int result = -EIO; int old_sigmask; #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,60) struct inode *ino = fp->f_dentry->d_inode; #endif TRACE_FUN(ft_t_flow); TRACE(ft_t_flow, "called with count: %ld", (unsigned long)req_len); if (!busy_flag || MINOR(ino->i_rdev) != zft_unit || ft_failure) { TRACE_ABORT(-EIO, ft_t_err, "failed: not busy, failure or wrong unit"); } old_sigmask = current->blocked; /* save mask */ current->blocked = _BLOCK_ALL; result = _zft_write(buff, req_len); current->blocked = old_sigmask; /* restore mask */ TRACE(ft_t_data_flow, "return with count: %d", result); TRACE_EXIT result; } /* END OF VFS INTERFACE * *****************************************************************************/ /* driver/module initialization */ /* the compression module has to call this function to hook into the zftape * code */ int zft_cmpr_register(struct zft_cmpr_ops *new_ops) { TRACE_FUN(ft_t_flow); if (zft_cmpr_ops != NULL) { TRACE_EXIT -EBUSY; } else { zft_cmpr_ops = new_ops; TRACE_EXIT 0; } } struct zft_cmpr_ops *zft_cmpr_unregister(void) { struct zft_cmpr_ops *old_ops = zft_cmpr_ops; TRACE_FUN(ft_t_flow); zft_cmpr_ops = NULL; TRACE_EXIT old_ops; } /* lock the zft-compressor() module. */ int zft_cmpr_lock(int try_to_load) { if (zft_cmpr_ops == NULL) { #ifdef CONFIG_KERNELD if (try_to_load) { request_module("zft-compressor"); if (zft_cmpr_ops == NULL) { return -ENOSYS; } } else { return -ENOSYS; } #else return -ENOSYS; #endif } (*zft_cmpr_ops->lock)(); return 0; } #ifdef CONFIG_ZFT_COMPRESSOR extern int zft_compressor_init(void); #endif /* Called by modules package when installing the driver or by kernel * during the initialization phase */ __initfunc(int zft_init(void)) { TRACE_FUN(ft_t_flow); #ifdef MODULE printk(KERN_INFO ZFTAPE_VERSION "\n"); if (TRACE_LEVEL >= ft_t_info) { printk( KERN_INFO "(c) 1996, 1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n" KERN_INFO "vfs interface for ftape floppy tape driver.\n" KERN_INFO "Support for QIC-113 compatible volume table, dynamic memory allocation\n" KERN_INFO "and builtin compression (lzrw3 algorithm).\n" KERN_INFO "Compiled for Linux version %s" #ifdef MODVERSIONS " with versioned symbols" #endif "\n", UTS_RELEASE); } #else /* !MODULE */ /* print a short no-nonsense boot message */ printk(KERN_INFO ZFTAPE_VERSION " for Linux " UTS_RELEASE "\n"); #endif /* MODULE */ TRACE(ft_t_info, "zft_init @ 0x%p", zft_init); TRACE(ft_t_info, "installing zftape VFS interface for ftape driver ..."); TRACE_CATCH(register_chrdev(QIC117_TAPE_MAJOR, "zft", &zft_cdev),); #if LINUX_VERSION_CODE >= KERNEL_VER(1,2,0) # if LINUX_VERSION_CODE < KERNEL_VER(2,1,18) register_symtab(&zft_symbol_table); /* add global zftape symbols */ # endif #endif #ifdef CONFIG_ZFT_COMPRESSOR (void)zft_compressor_init(); #endif zft_status = ftape_get_status(); /* fetch global data of ftape * hardware driver */ TRACE_EXIT 0; } #ifdef MODULE #if LINUX_VERSION_CODE <= KERNEL_VER(1,2,13) && defined(MODULE) char kernel_version[] = UTS_RELEASE; #endif #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,18) /* Called by modules package before trying to unload the module */ static int can_unload(void) { return (zft_dirty() || busy_flag) ? -EBUSY : 0; } #endif /* Called by modules package when installing the driver */ int init_module(void) { #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,18) if (!mod_member_present(&__this_module, can_unload)) { return -EBUSY; } __this_module.can_unload = can_unload; #endif return zft_init(); } /* Called by modules package when removing the driver */ void cleanup_module(void) { TRACE_FUN(ft_t_flow); if (unregister_chrdev(QIC117_TAPE_MAJOR, "zft") != 0) { TRACE(ft_t_warn, "failed"); } else { TRACE(ft_t_info, "successful"); } zft_uninit_mem(); /* release remaining memory, if any */ printk(KERN_INFO "zftape successfully unloaded.\n"); TRACE_EXIT; } #endif /* MODULE */ |