2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								/*
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * V9FS VFS extensions.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  This program is free software; you can redistribute it and/or modify
							 | 
						
					
						
							
								
									
										
										
										
											2006-03-25 03:07:28 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								 *  it under the terms of the GNU General Public License version 2
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  as published by the Free Software Foundation.
							 | 
						
					
						
							
								
									
										
										
										
											2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  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; if not, write to:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  Free Software Foundation
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  51 Franklin Street, Fifth Floor
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *  Boston, MA  02111-1301  USA
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 *
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 */
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:09 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#ifndef FS_9P_V9FS_VFS_H
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#define FS_9P_V9FS_VFS_H
							 | 
						
					
						
							
								
									
										
										
										
											2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								/* plan9 semantics are that created files are implicitly opened.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * But linux semantics are that you call create, then open.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * the plan9 approach is superior as it provides an atomic
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * open.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * we track the create fid here. When the file is opened, if fidopen is
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * non-zero, we use the fid and can skip some steps.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * there may be a better way to do this, but I don't know it.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * one BAD way is to clunk the fid on create, then open it again:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * you lose the atomicity of file open
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 */
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								/* special case:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * unlink calls remove, which is an implicit clunk. So we have to track
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 * that kind of thing so that we don't try to clunk a dead fid.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								 */
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:09 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#define P9_LOCK_TIMEOUT (30*HZ)
							 | 
						
					
						
							
								
									
										
										
										
											2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								extern struct file_system_type v9fs_fs_type;
							 | 
						
					
						
							
								
									
										
										
										
											2006-06-28 04:26:44 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct address_space_operations v9fs_addr_operations;
							 | 
						
					
						
							
								
									
										
										
										
											2006-03-28 01:56:42 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_file_operations;
							 | 
						
					
						
							
								
									
										
										
										
											2010-03-25 12:41:54 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_file_operations_dotl;
							 | 
						
					
						
							
								
									
										
										
										
											2006-03-28 01:56:42 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_dir_operations;
							 | 
						
					
						
							
								
									
										
										
										
											2010-03-25 12:41:54 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_dir_operations_dotl;
							 | 
						
					
						
							
								
									
										
										
										
											2009-02-20 05:55:46 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct dentry_operations v9fs_dentry_operations;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								extern const struct dentry_operations v9fs_cached_dentry_operations;
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:03:54 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_cached_file_operations;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								extern const struct file_operations v9fs_cached_file_operations_dotl;
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:02 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								extern struct kmem_cache *v9fs_inode_cache;
							 | 
						
					
						
							
								
									
										
										
										
											2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2009-09-23 13:00:27 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								struct inode *v9fs_alloc_inode(struct super_block *sb);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								void v9fs_destroy_inode(struct inode *inode);
							 | 
						
					
						
							
								
									
										
										
										
											2011-07-26 02:53:22 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t);
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:01 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								int v9fs_init_inode(struct v9fs_session_info *v9ses,
							 | 
						
					
						
							
								
									
										
										
										
											2011-07-26 02:53:22 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
										    struct inode *inode, umode_t mode, dev_t);
							 | 
						
					
						
							
								
									
										
										
										
											2010-06-07 14:34:48 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								void v9fs_evict_inode(struct inode *inode);
							 | 
						
					
						
							
								
									
										
										
										
											2007-07-10 17:57:28 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								ino_t v9fs_qid2ino(struct p9_qid *qid);
							 | 
						
					
						
							
								
									
										
										
										
											2008-10-16 08:30:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								void v9fs_stat2inode(struct p9_wstat *, struct inode *, struct super_block *);
							 | 
						
					
						
							
								
									
										
											 
										 
										
											
												9p: getattr client implementation for 9P2000.L protocol.
        SYNOPSIS
              size[4] Tgetattr tag[2] fid[4] request_mask[8]
              size[4] Rgetattr tag[2] lstat[n]
           DESCRIPTION
              The getattr transaction inquires about the file identified by fid.
              request_mask is a bit mask that specifies which fields of the
              stat structure is the client interested in.
              The reply will contain a machine-independent directory entry,
              laid out as follows:
                 st_result_mask[8]
                    Bit mask that indicates which fields in the stat structure
                    have been populated by the server
                 qid.type[1]
                    the type of the file (directory, etc.), represented as a bit
                    vector corresponding to the high 8 bits of the file's mode
                    word.
                 qid.vers[4]
                    version number for given path
                 qid.path[8]
                    the file server's unique identification for the file
                 st_mode[4]
                    Permission and flags
                 st_uid[4]
                    User id of owner
                 st_gid[4]
                    Group ID of owner
                 st_nlink[8]
                    Number of hard links
                 st_rdev[8]
                    Device ID (if special file)
                 st_size[8]
                    Size, in bytes
                 st_blksize[8]
                    Block size for file system IO
                 st_blocks[8]
                    Number of file system blocks allocated
                 st_atime_sec[8]
                    Time of last access, seconds
                 st_atime_nsec[8]
                    Time of last access, nanoseconds
                 st_mtime_sec[8]
                    Time of last modification, seconds
                 st_mtime_nsec[8]
                    Time of last modification, nanoseconds
                 st_ctime_sec[8]
                    Time of last status change, seconds
                 st_ctime_nsec[8]
                    Time of last status change, nanoseconds
                 st_btime_sec[8]
                    Time of creation (birth) of file, seconds
                 st_btime_nsec[8]
                    Time of creation (birth) of file, nanoseconds
                 st_gen[8]
                    Inode generation
                 st_data_version[8]
                    Data version number
              request_mask and result_mask bit masks contain the following bits
                 #define P9_STATS_MODE          0x00000001ULL
                 #define P9_STATS_NLINK         0x00000002ULL
                 #define P9_STATS_UID           0x00000004ULL
                 #define P9_STATS_GID           0x00000008ULL
                 #define P9_STATS_RDEV          0x00000010ULL
                 #define P9_STATS_ATIME         0x00000020ULL
                 #define P9_STATS_MTIME         0x00000040ULL
                 #define P9_STATS_CTIME         0x00000080ULL
                 #define P9_STATS_INO           0x00000100ULL
                 #define P9_STATS_SIZE          0x00000200ULL
                 #define P9_STATS_BLOCKS        0x00000400ULL
                 #define P9_STATS_BTIME         0x00000800ULL
                 #define P9_STATS_GEN           0x00001000ULL
                 #define P9_STATS_DATA_VERSION  0x00002000ULL
                 #define P9_STATS_BASIC         0x000007ffULL
                 #define P9_STATS_ALL           0x00003fffULL
        This patch implements the client side of getattr implementation for
        9P2000.L. It introduces a new structure p9_stat_dotl for getting
        Linux stat information along with QID. The data layout is similar to
        stat structure in Linux user space with the following major
        differences:
        inode (st_ino) is not part of data. Instead qid is.
        device (st_dev) is not part of data because this doesn't make sense
        on the client.
        All time variables are 64 bit wide on the wire. The kernel seems to use
        32 bit variables for these variables. However, some of the architectures
        have used 64 bit variables and glibc exposes 64 bit variables to user
        space on some architectures. Hence to be on the safer side we have made
        these 64 bit in the protocol. Refer to the comments in
        include/asm-generic/stat.h
        There are some additional fields: st_btime_sec, st_btime_nsec, st_gen,
        st_data_version apart from the bitmask, st_result_mask. The bit mask
        is filled by the server to indicate which stat fields have been
        populated by the server. Currently there is no clean way for the
        server to obtain these additional fields, so it sends back just the
        basic fields.
Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com>
Signed-off-by: Eric Van Hensbegren <ericvh@gmail.com>
											
										 
										
											2010-07-12 20:07:23 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								void v9fs_stat2inode_dotl(struct p9_stat_dotl *, struct inode *);
							 | 
						
					
						
							
								
									
										
										
										
											2005-09-09 13:04:20 -07:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								int v9fs_dir_release(struct inode *inode, struct file *filp);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								int v9fs_file_open(struct inode *inode, struct file *file);
							 | 
						
					
						
							
								
									
										
										
										
											2008-10-16 08:30:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								void v9fs_inode2stat(struct inode *inode, struct p9_wstat *stat);
							 | 
						
					
						
							
								
									
										
										
										
											2008-06-24 17:39:39 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								int v9fs_uflags2omode(int uflags, int extended);
							 | 
						
					
						
							
								
									
										
										
										
											2008-10-13 20:36:16 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								ssize_t v9fs_file_readn(struct file *, char *, char __user *, u32, u64);
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:03:56 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								ssize_t v9fs_fid_readn(struct p9_fid *, char *, char __user *, u32, u64);
							 | 
						
					
						
							
								
									
										
										
										
											2010-02-08 15:36:48 -06:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								void v9fs_blank_wstat(struct p9_wstat *wstat);
							 | 
						
					
						
							
								
									
										
										
										
											2010-09-28 00:27:40 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								int v9fs_vfs_setattr_dotl(struct dentry *, struct iattr *);
							 | 
						
					
						
							
								
									
										
										
										
											2011-07-16 20:44:56 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								int v9fs_file_fsync_dotl(struct file *filp, loff_t start, loff_t end,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
											 int datasync);
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:03:56 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								ssize_t v9fs_file_write_internal(struct inode *, struct p9_fid *,
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
												 const char __user *, size_t, loff_t *, int);
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:06 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								static inline void v9fs_invalidate_inode_attr(struct inode *inode)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								{
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									struct v9fs_inode *v9inode;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									v9inode = V9FS_I(inode);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									v9inode->cache_validity |= V9FS_INO_INVALID_ATTR;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
									return;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							
								
									
										
										
										
											2011-08-03 19:55:32 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								int v9fs_open_to_dotl_flags(int flags);
							 | 
						
					
						
							
								
									
										
										
										
											2011-02-28 17:04:09 +05:30
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#endif
							 |