file.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:15k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  *  Copyright (C) 2000 Stelias Computing, Inc.
  4.  *  Copyright (C) 2000 Red Hat, Inc.
  5.  *  Copyright (C) 2000 TurboLinux, Inc.
  6.  *  Copyright (C) 2000 Los Alamos National Laboratory.
  7.  *  Copyright (C) 2000 Tacitus Systems
  8.  *  Copyright (C) 2000 Peter J. Braam
  9.  *  Copyright (C) 2001 Mountain View Data, Inc. 
  10.  *  Copyright (C) 2001 Cluster File Systems, Inc. 
  11.  *
  12.  *  This program is free software; you can redistribute it and/or
  13.  *  modify it under the terms of the GNU General Public License as
  14.  *  published by the Free Software Foundation; either version 2 of the
  15.  *  License, or (at your option) any later version.
  16.  *
  17.  */
  18. #include <stdarg.h>
  19. #include <asm/bitops.h>
  20. #include <asm/uaccess.h>
  21. #include <asm/system.h>
  22. #include <linux/errno.h>
  23. #include <linux/fs.h>
  24. #include <linux/ext2_fs.h>
  25. #include <linux/slab.h>
  26. #include <linux/vmalloc.h>
  27. #include <linux/sched.h>
  28. #include <linux/stat.h>
  29. #include <linux/string.h>
  30. #include <linux/locks.h>
  31. #include <linux/blkdev.h>
  32. #include <linux/init.h>
  33. #include <linux/smp_lock.h>
  34. #define __NO_VERSION__
  35. #include <linux/module.h>
  36. #include <linux/intermezzo_fs.h>
  37. #include <linux/intermezzo_kml.h>
  38. #include <linux/intermezzo_upcall.h>
  39. #include <linux/intermezzo_psdev.h>
  40. #include <linux/fsfilter.h>
  41. /*
  42.  * these are initialized in super.c
  43.  */
  44. extern int presto_permission(struct inode *inode, int mask);
  45. extern int presto_opendir_upcall(int minor, struct dentry *de, int async);
  46. extern int presto_prep(struct dentry *, struct presto_cache **,
  47.                        struct presto_file_set **);
  48. #if 0
  49. static int presto_open_upcall(int minor, struct dentry *de)
  50. {
  51.         int rc;
  52.         char *path, *buffer;
  53.         int pathlen;
  54.         PRESTO_ALLOC(buffer, char *, PAGE_SIZE);
  55.         if ( !buffer ) {
  56.                 printk("PRESTO: out of memory!n");
  57.                 return ENOMEM;
  58.         }
  59.         path = presto_path(de, buffer, PAGE_SIZE);
  60.         pathlen = MYPATHLEN(buffer, path);
  61.         rc = lento_open(minor, pathlen, path);
  62.         PRESTO_FREE(buffer, PAGE_SIZE);
  63.         return rc;
  64. }
  65. #endif
  66. static int presto_file_open(struct inode *inode, struct file *file)
  67. {
  68.         int rc = 0;
  69.         struct file_operations *fops;
  70.         struct presto_cache *cache;
  71.         struct presto_file_data *fdata;
  72.         int writable = (file->f_flags & (O_RDWR | O_WRONLY));
  73.         int minor;
  74.         int i;
  75.         ENTRY;
  76.         cache = presto_get_cache(inode);
  77.         if ( !cache ) {
  78.                 printk("PRESTO: BAD, BAD: cannot find cachen");
  79.                 EXIT;
  80.                 return -EBADF;
  81.         }
  82.         minor = presto_c2m(cache);
  83.         CDEBUG(D_CACHE, "presto_file_open: DATA_OK: %d, ino: %ldn",
  84.                presto_chk(file->f_dentry, PRESTO_DATA), inode->i_ino);
  85.         if ( ISLENTO(minor) )
  86.                 goto cache;
  87.         if ( file->f_flags & O_RDWR || file->f_flags & O_WRONLY) {
  88.                 CDEBUG(D_CACHE, "presto_file_open: calling presto_get_permitn");
  89.                 /* lock needed to protect permit_count manipulations -SHP */
  90.                 if ( presto_get_permit(inode) < 0 ) {
  91.                         EXIT;
  92.                         return -EROFS;
  93.                 }
  94.                 presto_put_permit(inode);
  95.         }
  96.         /* XXX name space synchronization here for data/streaming on demand?*/
  97.         /* XXX Lento can make us wait here for backfetches to complete */
  98. #if 0
  99.         if ( !presto_chk(file->f_dentry, PRESTO_DATA) ||
  100.              !presto_has_all_data(file->f_dentry->d_inode) ) {
  101.                 CDEBUG(D_CACHE, "presto_file_open: presto_open_upcalln");
  102.                 rc = presto_open_upcall(minor, file->f_dentry);
  103.         }
  104. #endif
  105.         rc = 0;
  106.  cache:
  107.         fops = filter_c2cffops(cache->cache_filter);
  108.         if ( fops->open ) {
  109.                 CDEBUG(D_CACHE, "presto_file_open: calling fs openn");
  110.                 rc = fops->open(inode, file);
  111.         }
  112.         if (rc) {
  113.             EXIT;
  114.             return rc;
  115.         }
  116.         CDEBUG(D_CACHE, "presto_file_open: setting DATA, ATTRn");
  117.         if( ISLENTO(minor) )
  118.             presto_set(file->f_dentry, PRESTO_ATTR );
  119.         else
  120.                 presto_set(file->f_dentry, PRESTO_ATTR | PRESTO_DATA);
  121.         if (writable) { 
  122.                 PRESTO_ALLOC(fdata, struct presto_file_data *, sizeof(*fdata));
  123.                 if (!fdata) {
  124.                         EXIT;
  125.                         return -ENOMEM;
  126.                 }
  127.                 /* we believe that on open the kernel lock
  128.                    assures that only one process will do this allocation */ 
  129.                 fdata->fd_do_lml = 0;
  130.                 fdata->fd_fsuid = current->fsuid;
  131.                 fdata->fd_fsgid = current->fsgid;
  132.                 fdata->fd_mode = file->f_dentry->d_inode->i_mode;
  133.                 fdata->fd_ngroups = current->ngroups;
  134.                 for (i=0 ; i<current->ngroups ; i++)
  135.                         fdata->fd_groups[i] = current->groups[i]; 
  136.                 fdata->fd_bytes_written = 0; /*when open,written data is zero*/ 
  137.                 file->private_data = fdata; 
  138.         } else {
  139.                 file->private_data = NULL;
  140.         }
  141.         return 0;
  142. }
  143. static int presto_file_release(struct inode *inode, struct file *file)
  144. {
  145.         struct rec_info rec;
  146.         int rc;
  147.         int writable = (file->f_flags & (O_RDWR | O_WRONLY));
  148.         struct file_operations *fops;
  149.         struct presto_cache *cache;
  150.         struct presto_file_set *fset;
  151.         void *handle; 
  152.         struct presto_file_data *fdata = 
  153.                 (struct presto_file_data *)file->private_data;
  154.         ENTRY;
  155.         rc = presto_prep(file->f_dentry, &cache, &fset);
  156.         if ( rc ) {
  157.                 EXIT;
  158.                 return rc;
  159.         }
  160.         fops = filter_c2cffops(cache->cache_filter);
  161.         rc = fops->release(inode, file);
  162.         CDEBUG(D_CACHE, "islento = %d (minor %d), writable = %d, rc %d, data %pn",
  163.                ISLENTO(cache->cache_psdev->uc_minor), 
  164.                cache->cache_psdev->uc_minor, 
  165.                writable, rc, fdata);
  166.         if (fdata && fdata->fd_do_lml) { 
  167.                 CDEBUG(D_CACHE, "LML at %lldn", fdata->fd_lml_offset); 
  168.         }
  169.         /* don't journal close if file couldn't have been written to */
  170.         /*    if (!ISLENTO(cache->cache_prestominor) && !rc && writable) {*/
  171.         if (fdata && fdata->fd_do_lml && 
  172.             !rc && writable && (! ISLENTO(cache->cache_psdev->uc_minor))) {
  173.                 struct presto_version new_ver;
  174.                 presto_getversion(&new_ver, inode);
  175.                 /* XXX: remove when lento gets file granularity cd */
  176.                 /* Lock needed to protect permit_count manipulations -SHP */
  177.                 if ( presto_get_permit(inode) < 0 ) {
  178.                         EXIT;
  179.                         return -EROFS;
  180.                 }
  181.                 CDEBUG(D_CACHE, "presto_file_release: writing journaln");
  182.         
  183.                 rc = presto_reserve_space(fset->fset_cache, PRESTO_REQHIGH); 
  184.                 if (rc) { 
  185.                         presto_put_permit(inode); 
  186.                         EXIT; 
  187.                         return rc;
  188.                 }
  189.                 handle = presto_trans_start(fset, file->f_dentry->d_inode, 
  190.                                             PRESTO_OP_RELEASE);
  191.                 if ( IS_ERR(handle) ) {
  192.                         printk("presto_release: no space for transactionn");
  193.                         presto_put_permit(inode);
  194.                         return -ENOSPC;
  195.                 }
  196.                 rc = presto_journal_close(&rec, fset, file, file->f_dentry, 
  197.                                           &new_ver);
  198.                 if (rc) { 
  199.                         printk("presto_close: cannot journal closen");
  200.                         /* XXX oops here to get this bug */ 
  201.                         *(int *)0 = 1;
  202.                         presto_put_permit(inode);
  203.                         return -ENOSPC;
  204.                 }
  205.                 presto_trans_commit(fset, handle); 
  206.                 /* cancel the LML record */ 
  207.                 handle = presto_trans_start
  208.                         (fset, inode, PRESTO_OP_WRITE);
  209.                 if ( IS_ERR(handle) ) {
  210.                         printk("presto_release: no space for clearn");
  211.                         presto_put_permit(inode);
  212.                         return -ENOSPC;
  213.                 }
  214.                 rc = presto_clear_lml_close(fset,
  215.                                             fdata->fd_lml_offset); 
  216.                 if (rc < 0 ) { 
  217.                         /* XXX oops here to get this bug */ 
  218.                         *(int *)0 = 1;
  219.                         presto_put_permit(inode);
  220.                         printk("presto_close: cannot journal closen");
  221.                         return -ENOSPC;
  222.                 }
  223.                 presto_trans_commit(fset, handle); 
  224.                 presto_release_space(fset->fset_cache, PRESTO_REQHIGH); 
  225.                 presto_truncate_lml(fset);
  226.                 presto_put_permit(inode);
  227.         }
  228.         if (!rc && fdata) {
  229.                 PRESTO_FREE(fdata, sizeof(*fdata));
  230.         }
  231.         file->private_data = NULL; 
  232.         
  233.         EXIT;
  234.         return rc;
  235. }
  236. static void presto_apply_write_policy(struct file *file, struct presto_file_set *fset, loff_t res)
  237. {
  238.         struct presto_file_data *fdata = (struct presto_file_data *)file->private_data;
  239.         struct presto_cache *cache = fset->fset_cache;
  240.         struct presto_version new_file_ver;
  241.         int error;
  242.         struct rec_info rec;
  243.         /* Here we do a journal close after a fixed or a specified
  244.          amount of KBytes, currently a global parameter set with
  245.          sysctl. If files are open for a long time, this gives added
  246.          protection. (XXX todo: per cache, add ioctl, handle
  247.          journaling in a thread, add more options etc.)
  248.         */ 
  249.  
  250.          if (  (fset->fset_flags & FSET_JCLOSE_ON_WRITE)
  251.                  && (!ISLENTO(cache->cache_psdev->uc_minor)))  {
  252.                  fdata->fd_bytes_written += res;
  253.  
  254.                  if (fdata->fd_bytes_written >= fset->fset_file_maxio) {
  255.                          presto_getversion(&new_file_ver, file->f_dentry->d_inode);
  256.                         /* This is really heavy weight and should be fixed
  257.                            ASAP. At most we should be recording the number
  258.                            of bytes written and not locking the kernel, 
  259.                            wait for permits, etc, on the write path. SHP
  260.                         */
  261.                         lock_kernel();
  262.                          if ( presto_get_permit(file->f_dentry->d_inode) < 0 ) {
  263.                                  EXIT;
  264.                                  /* we must be disconnected, not to worry */
  265.                                 return; 
  266.                          }
  267.                          error = presto_journal_close
  268.                                 (&rec, fset, file, file->f_dentry, &new_file_ver);
  269.                          presto_put_permit(file->f_dentry->d_inode);
  270.                         unlock_kernel();
  271.                          if ( error ) {
  272.                                  printk("presto_close: cannot journal closen");
  273.                                  /* XXX these errors are really bad */
  274.                                 /* panic(); */
  275.                                  return;
  276.                          }
  277.                              fdata->fd_bytes_written = 0;
  278.                      } 
  279.         }
  280. }
  281. static ssize_t presto_file_write(struct file *file, const char *buf, size_t size, 
  282.                           loff_t *off)
  283. {
  284.         struct rec_info rec;
  285.         int error;
  286.         struct presto_cache *cache;
  287.         struct presto_file_set *fset;
  288.         struct file_operations *fops;
  289.         ssize_t res;
  290.         int do_lml_here;
  291.         void *handle = NULL;
  292.         unsigned long blocks;
  293.         struct presto_file_data *fdata;
  294.         loff_t res_size; 
  295.         error = presto_prep(file->f_dentry, &cache, &fset);
  296.         if ( error ) {
  297.                 EXIT;
  298.                 return error;
  299.         }
  300.         blocks = (size >> file->f_dentry->d_inode->i_sb->s_blocksize_bits) + 1;
  301.         /* XXX 3 is for ext2 indirect blocks ... */ 
  302.         res_size = 2 * PRESTO_REQHIGH + ((blocks+3) 
  303.                 << file->f_dentry->d_inode->i_sb->s_blocksize_bits);
  304.         error = presto_reserve_space(fset->fset_cache, res_size); 
  305.         CDEBUG(D_INODE, "Reserved %Ld for %Zdn", res_size, size); 
  306.         if ( error ) { 
  307.                 EXIT;
  308.                 return -ENOSPC;
  309.         }
  310.         /* XXX lock something here */
  311.         CDEBUG(D_INODE, "islento %d, minor: %dn", ISLENTO(cache->cache_psdev->uc_minor),
  312.                cache->cache_psdev->uc_minor); 
  313.         read_lock(&fset->fset_lml.fd_lock); 
  314.         fdata = (struct presto_file_data *)file->private_data;
  315.         do_lml_here = (!ISLENTO(cache->cache_psdev->uc_minor)) &&
  316.                 size && (fdata->fd_do_lml == 0);
  317.         if (do_lml_here)
  318.                 fdata->fd_do_lml = 1;
  319.         read_unlock(&fset->fset_lml.fd_lock); 
  320.         /* XXX we have two choices:
  321.            - we do the transaction for the LML record BEFORE any write
  322.            transaction starts - that has the benefit that no other
  323.            short write can complete without the record being there. 
  324.            The disadvantage is that even if no write happens we get 
  325.            the LML record. 
  326.            - we bundle the transaction with this write.  In that case
  327.            we may not have an LML record is a short write goes through
  328.            before this one (can that actually happen?).
  329.         */
  330.         res = 0;
  331.         if (do_lml_here) {
  332.                 /* handle different space reqs from file system below! */
  333.                 handle = presto_trans_start(fset, file->f_dentry->d_inode, 
  334.                                             PRESTO_OP_WRITE);
  335.                 if ( IS_ERR(handle) ) {
  336.                         presto_release_space(fset->fset_cache, res_size); 
  337.                         printk("presto_write: no space for transactionn");
  338.                         return -ENOSPC;
  339.                 }
  340.                 res = presto_journal_write(&rec, fset, file);
  341.                 fdata->fd_lml_offset = rec.offset;
  342.                 if ( res ) {
  343.                         /* XXX oops here to get this bug */ 
  344.                         /* *(int *)0 = 1; */
  345.                         EXIT;
  346.                         goto exit_write;
  347.                 }
  348.                 
  349.                 presto_trans_commit(fset, handle);
  350.         }
  351.         fops = filter_c2cffops(cache->cache_filter);
  352.         res = fops->write(file, buf, size, off);
  353.         if ( res != size ) {
  354.                 CDEBUG(D_FILE, "file write returns short write: size %Zd, res %Zdn", size, res); 
  355.         }
  356.         if ( (res > 0) && fdata ) 
  357.                  presto_apply_write_policy(file, fset, res);
  358.   
  359.  exit_write:
  360.         presto_release_space(fset->fset_cache, res_size); 
  361.         return res;
  362. }
  363. struct file_operations presto_file_fops = {
  364.         write:   presto_file_write,
  365.         open:    presto_file_open,
  366.         release: presto_file_release
  367. };
  368. struct inode_operations presto_file_iops = {
  369.         permission: presto_permission,
  370. setattr: presto_setattr,
  371. #ifdef CONFIG_FS_EXT_ATTR
  372. set_ext_attr: presto_set_ext_attr,
  373. #endif
  374. };