From patchwork Tue Dec 14 11:10:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Shilovsky X-Patchwork-Id: 409581 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBEBBUSM020648 for ; Tue, 14 Dec 2010 11:11:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757819Ab0LNLLa (ORCPT ); Tue, 14 Dec 2010 06:11:30 -0500 Received: from mail-ew0-f45.google.com ([209.85.215.45]:57474 "EHLO mail-ew0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757844Ab0LNLL3 (ORCPT ); Tue, 14 Dec 2010 06:11:29 -0500 Received: by mail-ew0-f45.google.com with SMTP id 10so252664ewy.4 for ; Tue, 14 Dec 2010 03:11:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :message-id:x-mailer:in-reply-to:references; bh=IAyof+ZGoglYOnFIUr2k6kLLxvNAIok15ed/WvdohKY=; b=wyvR1IL1hM4mnVHJr7JfwZkJxgivzgM4iuD7QxAvZc9eMbkrjCzcLz03JQKmsD/FTZ TbHnlth4A2j3dUJKFJXR3xeyjRPA6FInez5xjMTPX/9Rzj2f8H/XCGZo+9RpNzskSYFJ xk3U2PiIAmLkZ6sKXmsvflPhCmB7wIvvIzqO4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references; b=umnpqxy8vhVNKrmVftD08DPG9CW72NKGaalqrsZDghOjwt6YRUs0CY2wBguiEd8Rvf eQBDhXNDZqbB/OgyoD7J97vGSN5EY9/kK9KaKedVQYrEBnC58wNpdsJJlTBPt3rGSPGQ +wyk1VRiqJ94rUIOfyncUe9Z9AB2zc6GRdB8o= Received: by 10.213.114.18 with SMTP id c18mr3475669ebq.66.1292325088570; Tue, 14 Dec 2010 03:11:28 -0800 (PST) Received: from localhost.localdomain (PPPoE-78-29-112-8.san.ru [78.29.112.8]) by mx.google.com with ESMTPS id t5sm887776eeh.8.2010.12.14.03.11.26 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 14 Dec 2010 03:11:27 -0800 (PST) From: Pavel Shilovsky To: linux-cifs@vger.kernel.org Subject: [PATCH 4/6] CIFS: Implement cifs_strict_write Date: Tue, 14 Dec 2010 14:10:58 +0300 Message-Id: <1292325060-8828-4-git-send-email-piastryyy@gmail.com> X-Mailer: git-send-email 1.7.3.2 In-Reply-To: <1292325060-8828-1-git-send-email-piastryyy@gmail.com> References: <1292325060-8828-1-git-send-email-piastryyy@gmail.com> Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 14 Dec 2010 11:11:31 +0000 (UTC) diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index a218afe..5df0503 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -572,15 +572,81 @@ cifs_do_mount(struct file_system_type *fs_type, return dget(sb->s_root); } +static ssize_t cifs_strict_write(struct kiocb *iocb, const struct iovec *iov, + unsigned long nr_segs, loff_t pos) +{ + struct inode *inode; + struct cifs_sb_info *cifs_sb; + ssize_t written = 0; + unsigned long i, len = 0; + char *buf, *offset; + + inode = iocb->ki_filp->f_path.dentry->d_inode; + + if (CIFS_I(inode)->clientCanCacheAll) + return generic_file_aio_write(iocb, iov, nr_segs, pos); + + cifs_sb = CIFS_SB(iocb->ki_filp->f_path.dentry->d_sb); + + /* + * In strict cache mode we need to write the data to the server exactly + * from the pos to pos+len-1 rather than flush all affected pages + * because it may cause a error with mandatory locks on these pages but + * not on the region from pos to ppos+len-1. + */ + + for (i = 0; i < nr_segs; i++) + len += iov[i].iov_len; + + /* + * BB - optimize the way when signing is disabled. We can drop this + * extra memory-to-memory copying and use iovec buffers for constructing + * write request. + */ + + buf = kmalloc(len, GFP_KERNEL); + + for (i = 0, offset = buf; i < nr_segs; i++) { + if (copy_from_user(offset, iov[i].iov_base, iov[i].iov_len)) { + kfree(buf); + return -EFAULT; + } + + offset += iov[i].iov_len; + } + + written = cifs_write((struct cifsFileInfo *)iocb->ki_filp->private_data, + buf, len, &pos); + if (written < 0) { + kfree(buf); + return written; + } + + iocb->ki_pos = pos; + + if (written > 0) + CIFS_I(inode)->invalid_mapping = true; + + kfree(buf); + return written; +} + static ssize_t cifs_file_aio_write(struct kiocb *iocb, const struct iovec *iov, unsigned long nr_segs, loff_t pos) { struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode; ssize_t written; + int rc; written = generic_file_aio_write(iocb, iov, nr_segs, pos); - if (!CIFS_I(inode)->clientCanCacheAll) - filemap_fdatawrite(inode->i_mapping); + + if (CIFS_I(inode)->clientCanCacheAll) + return written; + + rc = filemap_fdatawrite(inode->i_mapping); + if (rc) + cFYI(1, "cifs_file_aio_write: %d rc on %p inode", rc, inode); + return written; } @@ -714,7 +780,7 @@ const struct file_operations cifs_file_strict_ops = { .read = do_sync_read, .write = do_sync_write, .aio_read = generic_file_aio_read, - .aio_write = cifs_file_aio_write, + .aio_write = cifs_strict_write, .open = cifs_open, .release = cifs_close, .lock = cifs_lock, @@ -770,7 +836,7 @@ const struct file_operations cifs_file_strict_nobrl_ops = { .read = do_sync_read, .write = do_sync_write, .aio_read = generic_file_aio_read, - .aio_write = cifs_file_aio_write, + .aio_write = cifs_strict_write, .open = cifs_open, .release = cifs_close, .fsync = cifs_strict_fsync, diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index e6d1481..3a337a9 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h @@ -79,6 +79,9 @@ extern int checkSMB(struct smb_hdr *smb, __u16 mid, unsigned int length); extern bool is_valid_oplock_break(struct smb_hdr *smb, struct TCP_Server_Info *); extern bool is_size_safe_to_change(struct cifsInodeInfo *, __u64 eof); +extern ssize_t cifs_write(struct cifsFileInfo *open_file, + const char *write_data, size_t write_size, + loff_t *poffset); extern struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *, bool); extern struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *, bool); extern unsigned int smbCalcSize(struct smb_hdr *ptr); diff --git a/fs/cifs/file.c b/fs/cifs/file.c index dd1e59a..2c848ef 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -1026,9 +1026,8 @@ ssize_t cifs_user_write(struct file *file, const char __user *write_data, return total_written; } -static ssize_t cifs_write(struct cifsFileInfo *open_file, - const char *write_data, size_t write_size, - loff_t *poffset) +ssize_t cifs_write(struct cifsFileInfo *open_file, const char *write_data, + size_t write_size, loff_t *poffset) { int rc = 0; unsigned int bytes_written = 0;