xref: /freebsd/sys/fs/smbfs/smbfs.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
1d167cf6fSWarner Losh /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3d63027b6SPedro F. Giffuni  *
4d122d784SJoel Dahl  * Copyright (c) 2000-2001 Boris Popov
5681a5bbeSBoris Popov  * All rights reserved.
6681a5bbeSBoris Popov  *
7681a5bbeSBoris Popov  * Redistribution and use in source and binary forms, with or without
8681a5bbeSBoris Popov  * modification, are permitted provided that the following conditions
9681a5bbeSBoris Popov  * are met:
10681a5bbeSBoris Popov  * 1. Redistributions of source code must retain the above copyright
11681a5bbeSBoris Popov  *    notice, this list of conditions and the following disclaimer.
12681a5bbeSBoris Popov  * 2. Redistributions in binary form must reproduce the above copyright
13681a5bbeSBoris Popov  *    notice, this list of conditions and the following disclaimer in the
14681a5bbeSBoris Popov  *    documentation and/or other materials provided with the distribution.
15681a5bbeSBoris Popov  *
16681a5bbeSBoris Popov  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17681a5bbeSBoris Popov  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18681a5bbeSBoris Popov  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19681a5bbeSBoris Popov  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20681a5bbeSBoris Popov  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21681a5bbeSBoris Popov  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22681a5bbeSBoris Popov  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23681a5bbeSBoris Popov  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24681a5bbeSBoris Popov  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25681a5bbeSBoris Popov  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26681a5bbeSBoris Popov  * SUCH DAMAGE.
27681a5bbeSBoris Popov  */
28681a5bbeSBoris Popov #ifndef _SMBFS_SMBFS_H_
29681a5bbeSBoris Popov #define _SMBFS_SMBFS_H_
30681a5bbeSBoris Popov 
31681a5bbeSBoris Popov #define SMBFS_VERMAJ	1
32681a5bbeSBoris Popov #define SMBFS_VERMIN	1012
33681a5bbeSBoris Popov #define SMBFS_VERSION	(SMBFS_VERMAJ*100000 + SMBFS_VERMIN)
34681a5bbeSBoris Popov #define	SMBFS_VFSNAME	"smbfs"
35681a5bbeSBoris Popov 
36681a5bbeSBoris Popov /* Values for flags */
37681a5bbeSBoris Popov #define SMBFS_MOUNT_SOFT	0x0001
38681a5bbeSBoris Popov #define SMBFS_MOUNT_INTR	0x0002
39681a5bbeSBoris Popov #define SMBFS_MOUNT_STRONG	0x0004
40681a5bbeSBoris Popov #define	SMBFS_MOUNT_HAVE_NLS	0x0008
41681a5bbeSBoris Popov #define	SMBFS_MOUNT_NO_LONG	0x0010
42681a5bbeSBoris Popov 
43681a5bbeSBoris Popov #define	SMBFS_MAXPATHCOMP	256	/* maximum number of path components */
44681a5bbeSBoris Popov 
453c2f5c3cSBoris Popov /* Layout of the mount control block for an smb file system. */
46681a5bbeSBoris Popov struct smbfs_args {
47681a5bbeSBoris Popov 	int		version;
48681a5bbeSBoris Popov 	int		dev;
49681a5bbeSBoris Popov 	u_int		flags;
50681a5bbeSBoris Popov 	char		mount_point[MAXPATHLEN];
51681a5bbeSBoris Popov 	u_char		root_path[512+1];
52681a5bbeSBoris Popov 	uid_t		uid;
53681a5bbeSBoris Popov 	gid_t 		gid;
54681a5bbeSBoris Popov 	mode_t 		file_mode;
55681a5bbeSBoris Popov 	mode_t 		dir_mode;
56681a5bbeSBoris Popov 	int		caseopt;
57681a5bbeSBoris Popov };
58681a5bbeSBoris Popov 
59681a5bbeSBoris Popov #ifdef _KERNEL
60681a5bbeSBoris Popov 
617947229fSRobert Watson #include <sys/_sx.h>
627947229fSRobert Watson 
63681a5bbeSBoris Popov struct smbnode;
64681a5bbeSBoris Popov struct smb_share;
65681a5bbeSBoris Popov struct u_cred;
668e67c454STim J. Robbins struct vop_ioctl_args;
67681a5bbeSBoris Popov struct buf;
68681a5bbeSBoris Popov 
69681a5bbeSBoris Popov struct smbmount {
70d14c8441SPoul-Henning Kamp 	/* struct smbfs_args	sm_args; */
71d14c8441SPoul-Henning Kamp 	uid_t			sm_uid;
72d14c8441SPoul-Henning Kamp 	gid_t 			sm_gid;
73d14c8441SPoul-Henning Kamp 	mode_t 			sm_file_mode;
74d14c8441SPoul-Henning Kamp 	mode_t 			sm_dir_mode;
75681a5bbeSBoris Popov 	struct mount * 		sm_mp;
76681a5bbeSBoris Popov 	struct smbnode *	sm_root;
7792a4d9bcSDavide Italiano 	struct smb_dev *	sm_dev;
78681a5bbeSBoris Popov 	struct ucred *		sm_owner;
796beb3bb4SKirk McKusick 	uint64_t		sm_flags;
80681a5bbeSBoris Popov 	long			sm_nextino;
81681a5bbeSBoris Popov 	struct smb_share * 	sm_share;
82681a5bbeSBoris Popov 	struct smbnode *	sm_npstack[SMBFS_MAXPATHCOMP];
83681a5bbeSBoris Popov 	int			sm_caseopt;
84578dcf0cSTim J. Robbins 	int			sm_didrele;
85681a5bbeSBoris Popov };
86681a5bbeSBoris Popov 
87681a5bbeSBoris Popov #define VFSTOSMBFS(mp)		((struct smbmount *)((mp)->mnt_data))
88681a5bbeSBoris Popov #define SMBFSTOVFS(smp)		((struct mount *)((smp)->sm_mp))
89681a5bbeSBoris Popov #define VTOVFS(vp)		((vp)->v_mount)
90681a5bbeSBoris Popov #define	VTOSMBFS(vp)		(VFSTOSMBFS(VTOVFS(vp)))
91681a5bbeSBoris Popov 
928e67c454STim J. Robbins int smbfs_ioctl(struct vop_ioctl_args *ap);
93066a8feaSPoul-Henning Kamp int smbfs_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td);
94e50508dfSPoul-Henning Kamp int smbfs_vinvalbuf(struct vnode *vp, struct thread *td);
95681a5bbeSBoris Popov #endif	/* KERNEL */
96681a5bbeSBoris Popov 
97681a5bbeSBoris Popov #endif /* _SMBFS_SMBFS_H_ */
98