Edit

IABSD.fr/src/sys/tmpfs/tmpfs.h

Branch :

  • Show log

    Commit

  • Author : anton
    Date : 2019-01-21 18:09:21
    Hash : 6bd4f7ca
    Message : Introduce a dedicated entry point data structure for file locks. This new data structure allows for better tracking of pending lock operations which is essential in order to prevent a use-after-free once the underlying vnode is gone. Inspired by the lockf implementation in FreeBSD. ok visa@ Reported-by: syzbot+d5540a236382f50f1dac@syzkaller.appspotmail.com

  • sys/tmpfs/tmpfs.h
  • /*	$OpenBSD: tmpfs.h,v 1.9 2019/01/21 18:09:21 anton Exp $	*/
    /*	$NetBSD: tmpfs.h,v 1.45 2011/09/27 01:10:43 christos Exp $	*/
    
    /*
     * Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
     * All rights reserved.
     *
     * This code is derived from software contributed to The NetBSD Foundation
     * by Julio M. Merino Vidal, developed as part of Google's Summer of Code
     * 2005 program.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     * 2. Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the distribution.
     *
     * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     * POSSIBILITY OF SUCH DAMAGE.
     */
    
    #ifndef _TMPFS_TMPFS_H_
    #define _TMPFS_TMPFS_H_
    
    #if !defined(_KERNEL) && !defined(_KMEMUSER)
    #error "not supposed to be exposed to userland"
    #endif
    
    #include <sys/dirent.h>
    #include <sys/mount.h>
    #include <sys/pool.h>
    #include <sys/queue.h>
    #include <sys/stdint.h>
    #include <sys/rwlock.h>
    #include <sys/lock.h>
    
    #include <uvm/uvm_extern.h>
    
    /*
     * Internal representation of a tmpfs directory entry.
     *
     * All fields are protected by vnode lock.
     */
    typedef struct tmpfs_dirent {
    	TAILQ_ENTRY(tmpfs_dirent)	td_entries;
    
    	/* Pointer to the inode this entry refers to. */
    	struct tmpfs_node *		td_node;
    
    	/* Sequence number, see tmpfs_dir_getseq(). */
    	uint64_t			td_seq;
    
    	/* Name and its length. */
    	char *				td_name;
    	uint16_t			td_namelen;
    } tmpfs_dirent_t;
    
    TAILQ_HEAD(tmpfs_dir, tmpfs_dirent);
    
    /*
     * Internal representation of a tmpfs file system node -- inode.
     *
     * This structure is split in two parts: one holds attributes common
     * to all file types and the other holds data that is only applicable to
     * a particular type.
     *
     * All fields are protected by vnode lock.  The vnode association itself
     * is protected by tmpfs_node_t::tn_nlock.
     */
    typedef struct tmpfs_node {
    	LIST_ENTRY(tmpfs_node)	tn_entries;
    
    	/*
    	 * Each inode has a corresponding vnode.  It is a bi-directional
    	 * association.  Whenever vnode is allocated, its v_data field is
    	 * set to the inode it reference, and tmpfs_node_t::tn_vnode is
    	 * set to point to the said vnode.
    	 *
    	 * Further attempts to allocate a vnode for this same node will
    	 * result in returning a new reference to the value stored in
    	 * tn_vnode.  It may be NULL when the node is unused (that is,
    	 * no vnode has been allocated or it has been reclaimed).
    	 */
    	struct rwlock		tn_nlock;	/* node lock */
    	struct rrwlock		tn_vlock;	/* vnode lock */
    	struct vnode *		tn_vnode;
    
    	/* Directory entry.  Only a hint, since hard link can have multiple. */
    	tmpfs_dirent_t *	tn_dirent_hint;
    
    	/* The inode type: VBLK, VCHR, VDIR, VFIFO, VLNK, VREG or VSOCK. */
    	enum vtype		tn_type;
    
    	/* Inode identifier and generation number. */
    	ino_t			tn_id;
    	unsigned long		tn_gen;
    
    	/* The inode size. */
    	off_t			tn_size;
    
    	/* Generic node attributes. */
    	uid_t			tn_uid;
    	gid_t			tn_gid;
    	mode_t			tn_mode;
    	int			tn_flags;
    	nlink_t			tn_links;
    	struct timespec		tn_atime;
    	struct timespec		tn_mtime;
    	struct timespec		tn_ctime;
    	struct timespec		tn_birthtime;
    
    	/* Head of byte-level lock list (used by tmpfs_advlock). */
    	struct lockf_state *	tn_lockf;
    
    	union {
    		/* Type case: VBLK or VCHR. */
    		struct {
    			dev_t			tn_rdev;
    		} tn_dev;
    
    		/* Type case: VDIR. */
    		struct {
    			/* Parent directory (root inode points to itself). */
    			struct tmpfs_node *	tn_parent;
    
    			/* List of directory entries. */
    			struct tmpfs_dir	tn_dir;
    
    			/* Last given sequence number. */
    			uint64_t		tn_next_seq;
    
    			/*
    			 * Pointer of the last directory entry returned
    			 * by the readdir(3) operation.
    			 */
    			struct tmpfs_dirent *	tn_readdir_lastp;
    		} tn_dir;
    
    		/* Type case: VLNK. */
    		struct tn_lnk {
    			/* The link's target. */
    			char *			tn_link;
    		} tn_lnk;
    
    		/* Type case: VREG. */
    		struct tn_reg {
    			/* Underlying UVM object to store contents. */
    			struct uvm_object *	tn_aobj;
    			size_t			tn_aobj_pages;
    			vaddr_t			tn_aobj_pgptr;
    			voff_t			tn_aobj_pgnum;
    		} tn_reg;
    	} tn_spec;
    
    #define	tn_uobj		tn_spec.tn_reg.tn_aobj
    #define	tn_pgptr	tn_spec.tn_reg.tn_aobj_pgptr
    #define	tn_pgnum	tn_spec.tn_reg.tn_aobj_pgnum
    
    } tmpfs_node_t;
    
    #if defined(_KERNEL)
    
    LIST_HEAD(tmpfs_node_list, tmpfs_node);
    
    
    #define  TMPFS_MAXNAMLEN    255
    /* Validate maximum td_namelen length. */
    /* CTASSERT(TMPFS_MAXNAMLEN < UINT16_MAX); */
    
    /*
     * Reserved values for the virtual entries (the first must be 0) and EOF.
     * The start/end of the incremental range, see tmpfs_dir_getseq().
     */
    #define  TMPFS_DIRSEQ_DOT  0
    #define  TMPFS_DIRSEQ_DOTDOT  1
    #define  TMPFS_DIRSEQ_EOF  2
    
    #define  TMPFS_DIRSEQ_START  3    /* inclusive */
    #define  TMPFS_DIRSEQ_END  UINT64_MAX    /* exclusive */
    
    /* Mark to indicate that the number is not set. */
    #define  TMPFS_DIRSEQ_NONE  UINT64_MAX
    
    /* Can we still append entries to a directory? */
    #define  TMPFS_DIRSEQ_FULL(dnode)  \
        ((dnode)->tn_spec.tn_dir.tn_next_seq == TMPFS_DIRSEQ_END)
    
    /* Status flags. */
    #define	TMPFS_NODE_ACCESSED	0x01
    #define	TMPFS_NODE_MODIFIED	0x02
    #define	TMPFS_NODE_CHANGED	0x04
    
    #define	TMPFS_NODE_STATUSALL	\
        (TMPFS_NODE_ACCESSED | TMPFS_NODE_MODIFIED | TMPFS_NODE_CHANGED)
    
    /*
     * Bit indicating vnode reclamation.
     * We abuse tmpfs_node_t::tn_gen for that.
     */
    #define	TMPFS_NODE_GEN_MASK	(~0UL >> 1)
    #define	TMPFS_RECLAIMING_BIT	(~TMPFS_NODE_GEN_MASK)
    
    #define	TMPFS_NODE_RECLAIMING(node) \
        (((node)->tn_gen & TMPFS_RECLAIMING_BIT) != 0)
    
    #define	TMPFS_NODE_GEN(node) \
        ((node)->tn_gen & TMPFS_NODE_GEN_MASK)
    
    /*
     * Internal representation of a tmpfs mount point.
     */
    typedef struct tmpfs_mount {
    	/* Limit and number of bytes in use by the file system. */
    	uint64_t		tm_mem_limit;
    	uint64_t		tm_bytes_used;
    	/* Highest allocated inode number. */
    	uint64_t		tm_highest_inode;
    	struct rwlock		tm_acc_lock;
    
    	/* Pointer to the root inode. */
    	tmpfs_node_t *		tm_root;
    
    	/* Maximum number of possible nodes for this file system. */
    	unsigned int		tm_nodes_max;
    
    	/* Number of nodes currently allocated. */
    	unsigned int		tm_nodes_cnt;
    
    	/* List of inodes and the lock protecting it. */
    	struct rwlock		tm_lock;
    	struct tmpfs_node_list	tm_nodes;
    } tmpfs_mount_t;
    
    /*
     * This structure maps a file identifier to a tmpfs node.  Used by the
     * NFS code.
     */
    typedef struct tmpfs_fid {
    	uint16_t		tf_len;
    	uint16_t		tf_pad;
    	uint32_t		tf_gen;
    	ino_t			tf_id;
    } tmpfs_fid_t;
    
    /*
     * Prototypes for tmpfs_subr.c.
     */
    
    int		tmpfs_alloc_node(tmpfs_mount_t *, enum vtype, uid_t, gid_t,
    		    mode_t, char *, dev_t, tmpfs_node_t **);
    void		tmpfs_free_node(tmpfs_mount_t *, tmpfs_node_t *);
    
    int		tmpfs_alloc_file(struct vnode *, struct vnode **, struct vattr *,
    		    struct componentname *, char *);
    
    int		tmpfs_vnode_get(struct mount *, tmpfs_node_t *, struct vnode **);
    
    int		tmpfs_alloc_dirent(tmpfs_mount_t *, const char *, uint16_t,
    		    tmpfs_dirent_t **);
    void		tmpfs_free_dirent(tmpfs_mount_t *, tmpfs_dirent_t *);
    void		tmpfs_dir_attach(tmpfs_node_t *, tmpfs_dirent_t *,
    		    tmpfs_node_t *);
    void		tmpfs_dir_detach(tmpfs_node_t *, tmpfs_dirent_t *);
    
    tmpfs_dirent_t *tmpfs_dir_lookup(tmpfs_node_t *, struct componentname *);
    tmpfs_dirent_t *tmpfs_dir_cached(tmpfs_node_t *);
    
    uint64_t	tmpfs_dir_getseq(tmpfs_node_t *, tmpfs_dirent_t *);
    tmpfs_dirent_t *tmpfs_dir_lookupbyseq(tmpfs_node_t *, off_t);
    int		tmpfs_dir_getdents(tmpfs_node_t *, struct uio *);
    
    int		tmpfs_reg_resize(struct vnode *, off_t);
    int		tmpfs_truncate(struct vnode *, off_t);
    
    int		tmpfs_chflags(struct vnode *, int, struct ucred *, struct proc *);
    int		tmpfs_chmod(struct vnode *, mode_t, struct ucred *, struct proc *);
    int		tmpfs_chown(struct vnode *, uid_t, gid_t, struct ucred *, struct proc *);
    int		tmpfs_chsize(struct vnode *, u_quad_t, struct ucred *, struct proc *);
    int		tmpfs_chtimes(struct vnode *, const struct timespec *,
    		    const struct timespec *, int, struct ucred *,
    		    struct proc *);
    void		tmpfs_update(tmpfs_node_t *, int);
    int		tmpfs_zeropg(tmpfs_node_t *, voff_t, vaddr_t);
    int		tmpfs_uio_cached(tmpfs_node_t *);
    int		tmpfs_uiomove(tmpfs_node_t *, struct uio *, vsize_t);
    void		tmpfs_uio_uncache(tmpfs_node_t *);
    void		tmpfs_uio_cache(tmpfs_node_t *, voff_t, vaddr_t);
    vaddr_t		tmpfs_uio_lookup(tmpfs_node_t *, voff_t);
    
    /*
     * Prototypes for tmpfs_mem.c.
     */
    
    void		tmpfs_mntmem_init(tmpfs_mount_t *, uint64_t);
    void		tmpfs_mntmem_destroy(tmpfs_mount_t *);
    
    size_t		tmpfs_mem_info(int);
    uint64_t	tmpfs_bytes_max(tmpfs_mount_t *);
    uint64_t	tmpfs_pages_avail(tmpfs_mount_t *);
    int		tmpfs_mem_incr(tmpfs_mount_t *, size_t);
    void		tmpfs_mem_decr(tmpfs_mount_t *, size_t);
    
    tmpfs_dirent_t *tmpfs_dirent_get(tmpfs_mount_t *);
    void		tmpfs_dirent_put(tmpfs_mount_t *, tmpfs_dirent_t *);
    
    tmpfs_node_t *	tmpfs_node_get(tmpfs_mount_t *);
    void		tmpfs_node_put(tmpfs_mount_t *, tmpfs_node_t *);
    
    char *		tmpfs_strname_alloc(tmpfs_mount_t *, size_t);
    void		tmpfs_strname_free(tmpfs_mount_t *, char *, size_t);
    int		tmpfs_strname_neqlen(struct componentname *, struct componentname *);
    
    /*
     * Ensures that the node pointed by 'node' is a directory and that its
     * contents are consistent with respect to directories.
     */
    #define	TMPFS_VALIDATE_DIR(node) \
        KASSERT((node)->tn_vnode == NULL || VOP_ISLOCKED((node)->tn_vnode)); \
        KASSERT((node)->tn_type == VDIR); \
        KASSERT((node)->tn_size % sizeof(tmpfs_dirent_t) == 0);
    
    /*
     * Memory management stuff.
     */
    
    /* Amount of memory pages to reserve for the system. */
    #define	TMPFS_PAGES_RESERVED	(4 * 1024 * 1024 / PAGE_SIZE)
    
    /*
     * Routines to convert VFS structures to tmpfs internal ones.
     */
    
    static inline tmpfs_mount_t *
    VFS_TO_TMPFS(struct mount *mp)
    {
    	tmpfs_mount_t *tmp = mp->mnt_data;
    
    	KASSERT(tmp != NULL);
    	return tmp;
    }
    
    static inline tmpfs_node_t *
    VP_TO_TMPFS_DIR(struct vnode *vp)
    {
    	tmpfs_node_t *node = vp->v_data;
    
    	KASSERT(node != NULL);
    	TMPFS_VALIDATE_DIR(node);
    	return node;
    }
    
    #endif /* defined(_KERNEL) */
    
    static __inline tmpfs_node_t *
    VP_TO_TMPFS_NODE(struct vnode *vp)
    {
    	tmpfs_node_t *node = vp->v_data;
    #ifdef KASSERT
    	KASSERT(node != NULL);
    #endif
    	return node;
    }
    
    #endif /* _TMPFS_TMPFS_H_ */