]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/ecryptfs/inode.c
[WATCHDOG] Revert "Stop looking for device as soon as one is found"
[linux-2.6-omap-h63xx.git] / fs / ecryptfs / inode.c
index a29dc31965fadf2a2853cb29f122e89195ad69c9..5a719180983cb36ebf3e264dc45c1559ebc209c0 100644 (file)
@@ -120,22 +120,9 @@ ecryptfs_do_create(struct inode *directory_inode,
        rc = ecryptfs_create_underlying_file(lower_dir_dentry->d_inode,
                                             ecryptfs_dentry, mode, nd);
        if (rc) {
-               struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
-               struct ecryptfs_inode_info *inode_info =
-                       ecryptfs_inode_to_private(ecryptfs_inode);
-
-               printk(KERN_WARNING "%s: Error creating underlying file; "
-                      "rc = [%d]; checking for existing\n", __FUNCTION__, rc);
-               if (inode_info) {
-                       mutex_lock(&inode_info->lower_file_mutex);
-                       if (!inode_info->lower_file) {
-                               mutex_unlock(&inode_info->lower_file_mutex);
-                               printk(KERN_ERR "%s: Failure to set underlying "
-                                      "file; rc = [%d]\n", __FUNCTION__, rc);
-                               goto out_lock;
-                       }
-                       mutex_unlock(&inode_info->lower_file_mutex);
-               }
+               printk(KERN_ERR "%s: Failure to create dentry in lower fs; "
+                      "rc = [%d]\n", __FUNCTION__, rc);
+               goto out_lock;
        }
        rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry,
                                directory_inode->i_sb, 0);
@@ -451,6 +438,7 @@ static int ecryptfs_unlink(struct inode *dir, struct dentry *dentry)
        dentry->d_inode->i_nlink =
                ecryptfs_inode_to_lower(dentry->d_inode)->i_nlink;
        dentry->d_inode->i_ctime = dir->i_ctime;
+       d_drop(dentry);
 out_unlock:
        unlock_parent(lower_dentry);
        return rc;
@@ -739,8 +727,7 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
        int rc = 0;
        struct inode *inode = dentry->d_inode;
        struct dentry *lower_dentry;
-       struct vfsmount *lower_mnt;
-       struct file fake_ecryptfs_file, *lower_file = NULL;
+       struct file fake_ecryptfs_file;
        struct ecryptfs_crypt_stat *crypt_stat;
        loff_t i_size = i_size_read(inode);
        loff_t lower_size_before_truncate;
@@ -763,51 +750,43 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
                goto out;
        }
        lower_dentry = ecryptfs_dentry_to_lower(dentry);
-       /* This dget & mntget is released through fput at out_fput: */
-       lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
-       rc = ecryptfs_open_lower_file(&lower_file, lower_dentry, lower_mnt,
-                                     O_RDWR);
-       if (rc) {
-               ecryptfs_printk(KERN_ERR,
-                               "Error opening dentry; rc = [%i]\n", rc);
-               goto out_free;
-       }
-       ecryptfs_set_file_lower(&fake_ecryptfs_file, lower_file);
+       ecryptfs_set_file_lower(
+               &fake_ecryptfs_file,
+               ecryptfs_inode_to_private(dentry->d_inode)->lower_file);
        /* Switch on growing or shrinking file */
        if (new_length > i_size) {
-               rc = ecryptfs_fill_zeros(&fake_ecryptfs_file, new_length);
-               if (rc) {
-                       ecryptfs_printk(KERN_ERR,
-                                       "Problem with fill_zeros\n");
-                       goto out_fput;
-               }
-               i_size_write(inode, new_length);
-               rc = ecryptfs_write_inode_size_to_metadata(inode);
-               if (rc) {
-                       printk(KERN_ERR "Problem with "
-                              "ecryptfs_write_inode_size_to_metadata; "
-                              "rc = [%d]\n", rc);
-                       goto out_fput;
-               }
+               char zero[] = { 0x00 };
+
+               /* Write a single 0 at the last position of the file;
+                * this triggers code that will fill in 0's throughout
+                * the intermediate portion of the previous end of the
+                * file and the new and of the file */
+               rc = ecryptfs_write(&fake_ecryptfs_file, zero,
+                                   (new_length - 1), 1);
        } else { /* new_length < i_size_read(inode) */
-               pgoff_t index = 0;
-               int end_pos_in_page = -1;
-
-               if (new_length != 0) {
-                       index = ((new_length - 1) >> PAGE_CACHE_SHIFT);
-                       end_pos_in_page = ((new_length - 1) & ~PAGE_CACHE_MASK);
-               }
-               if (end_pos_in_page != (PAGE_CACHE_SIZE - 1)) {
-                       rc = ecryptfs_write_zeros(&fake_ecryptfs_file,
-                                                 index,
-                                                 (end_pos_in_page + 1),
-                                                 ((PAGE_CACHE_SIZE - 1)
-                                                  - end_pos_in_page));
+               /* We're chopping off all the pages down do the page
+                * in which new_length is located. Fill in the end of
+                * that page from (new_length & ~PAGE_CACHE_MASK) to
+                * PAGE_CACHE_SIZE with zeros. */
+               size_t num_zeros = (PAGE_CACHE_SIZE
+                                   - (new_length & ~PAGE_CACHE_MASK));
+
+               if (num_zeros) {
+                       char *zeros_virt;
+
+                       zeros_virt = kzalloc(num_zeros, GFP_KERNEL);
+                       if (!zeros_virt) {
+                               rc = -ENOMEM;
+                               goto out_free;
+                       }
+                       rc = ecryptfs_write(&fake_ecryptfs_file, zeros_virt,
+                                           new_length, num_zeros);
+                       kfree(zeros_virt);
                        if (rc) {
                                printk(KERN_ERR "Error attempting to zero out "
                                       "the remainder of the end page on "
                                       "reducing truncate; rc = [%d]\n", rc);
-                               goto out_fput;
+                               goto out_free;
                        }
                }
                vmtruncate(inode, new_length);
@@ -816,7 +795,7 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
                        printk(KERN_ERR "Problem with "
                               "ecryptfs_write_inode_size_to_metadata; "
                               "rc = [%d]\n", rc);
-                       goto out_fput;
+                       goto out_free;
                }
                /* We are reducing the size of the ecryptfs file, and need to
                 * know if we need to reduce the size of the lower file. */
@@ -828,14 +807,6 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
                        vmtruncate(lower_dentry->d_inode,
                                   lower_size_after_truncate);
        }
-       /* Update the access times */
-       lower_dentry->d_inode->i_mtime = lower_dentry->d_inode->i_ctime
-               = CURRENT_TIME;
-       mark_inode_dirty_sync(inode);
-out_fput:
-       rc = ecryptfs_close_lower_file(lower_file);
-       if (rc)
-               printk(KERN_ERR "Error closing lower_file\n");
 out_free:
        if (ecryptfs_file_to_private(&fake_ecryptfs_file))
                kmem_cache_free(ecryptfs_file_info_cache,
@@ -895,21 +866,8 @@ static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia)
        else if (S_ISREG(dentry->d_inode->i_mode)
                 && (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
                     || !(crypt_stat->flags & ECRYPTFS_KEY_VALID))) {
-               struct vfsmount *lower_mnt;
-               struct file *lower_file = NULL;
                struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
-               int lower_flags;
 
-               lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
-               lower_flags = O_RDONLY;
-               rc = ecryptfs_open_lower_file(&lower_file, lower_dentry,
-                                             lower_mnt, lower_flags);
-               if (rc) {
-                       printk(KERN_ERR
-                              "Error opening lower file; rc = [%d]\n", rc);
-                       mutex_unlock(&crypt_stat->cs_mutex);
-                       goto out;
-               }
                mount_crypt_stat = &ecryptfs_superblock_to_private(
                        dentry->d_sb)->mount_crypt_stat;
                rc = ecryptfs_read_metadata(dentry);
@@ -923,16 +881,13 @@ static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia)
                                       "enabled; returning -EIO\n");
 
                                mutex_unlock(&crypt_stat->cs_mutex);
-                               fput(lower_file);
                                goto out;
                        }
                        rc = 0;
                        crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
                        mutex_unlock(&crypt_stat->cs_mutex);
-                       fput(lower_file);
                        goto out;
                }
-               fput(lower_file);
        }
        mutex_unlock(&crypt_stat->cs_mutex);
        if (ia->ia_valid & ATTR_SIZE) {
@@ -947,6 +902,14 @@ static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia)
                if (rc < 0)
                        goto out;
        }
+
+       /*
+        * mode change is for clearing setuid/setgid bits. Allow lower fs
+        * to interpret this in its own way.
+        */
+       if (ia->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID))
+               ia->ia_valid &= ~ATTR_MODE;
+
        rc = notify_change(lower_dentry, ia);
 out:
        fsstack_copy_attr_all(inode, lower_inode, NULL);
@@ -995,20 +958,8 @@ ssize_t
 ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value,
                  size_t size)
 {
-       int rc = 0;
-       struct dentry *lower_dentry;
-
-       lower_dentry = ecryptfs_dentry_to_lower(dentry);
-       if (!lower_dentry->d_inode->i_op->getxattr) {
-               rc = -ENOSYS;
-               goto out;
-       }
-       mutex_lock(&lower_dentry->d_inode->i_mutex);
-       rc = lower_dentry->d_inode->i_op->getxattr(lower_dentry, name, value,
-                                                  size);
-       mutex_unlock(&lower_dentry->d_inode->i_mutex);
-out:
-       return rc;
+       return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry), name,
+                                      value, size);
 }
 
 static ssize_t