ksmbd: fix same UniqueId for dot and dotdot entries
[linux-block.git] / fs / ksmbd / vfs.h
CommitLineData
f4415848
NJ
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2016 Namjae Jeon <linkinjeon@kernel.org>
4 * Copyright (C) 2018 Samsung Electronics Co., Ltd.
5 */
6
7#ifndef __KSMBD_VFS_H__
8#define __KSMBD_VFS_H__
9
10#include <linux/file.h>
11#include <linux/fs.h>
12#include <linux/namei.h>
13#include <uapi/linux/xattr.h>
14#include <linux/posix_acl.h>
15
16#include "smbacl.h"
8b758859 17#include "xattr.h"
f4415848 18
ee2033e9
NJ
19/*
20 * Enumeration for stream type.
21 */
22enum {
23 DATA_STREAM = 1, /* type $DATA */
24 DIR_STREAM /* type $INDEX_ALLOCATION */
25};
26
f4415848 27/* CreateOptions */
f4415848 28#define CREATE_TREE_CONNECTION cpu_to_le32(0x00000080)
f4415848 29#define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000)
f4415848 30
f4415848
NJ
31#define CREATE_OPTION_READONLY 0x10000000
32/* system. NB not sent over wire */
33#define CREATE_OPTION_SPECIAL 0x20000000
34
35struct ksmbd_work;
36struct ksmbd_file;
37struct ksmbd_conn;
38
39struct ksmbd_dir_info {
40 const char *name;
41 char *wptr;
42 char *rptr;
43 int name_len;
44 int out_buf_len;
45 int num_entry;
46 int data_count;
47 int last_entry_offset;
48 bool hide_dot_file;
49 int flags;
50};
51
52struct ksmbd_readdir_data {
53 struct dir_context ctx;
54 union {
55 void *private;
56 char *dirent;
57 };
58
59 unsigned int used;
60 unsigned int dirent_count;
61 unsigned int file_attr;
62};
63
64/* ksmbd kstat wrapper to get valid create time when reading dir entry */
65struct ksmbd_kstat {
66 struct kstat *kstat;
67 unsigned long long create_time;
68 __le32 file_attributes;
69};
70
da1e7ada
CB
71int ksmbd_vfs_lock_parent(struct user_namespace *user_ns, struct dentry *parent,
72 struct dentry *child);
af34983e
HL
73int ksmbd_vfs_may_delete(struct user_namespace *user_ns, struct dentry *dentry);
74int ksmbd_vfs_query_maximal_access(struct user_namespace *user_ns,
75 struct dentry *dentry, __le32 *daccess);
f4415848
NJ
76int ksmbd_vfs_create(struct ksmbd_work *work, const char *name, umode_t mode);
77int ksmbd_vfs_mkdir(struct ksmbd_work *work, const char *name, umode_t mode);
78int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp,
070fb21e 79 size_t count, loff_t *pos);
f4415848 80int ksmbd_vfs_write(struct ksmbd_work *work, struct ksmbd_file *fp,
070fb21e
NJ
81 char *buf, size_t count, loff_t *pos, bool sync,
82 ssize_t *written);
64b39f4a 83int ksmbd_vfs_fsync(struct ksmbd_work *work, u64 fid, u64 p_id);
f4415848
NJ
84int ksmbd_vfs_remove_file(struct ksmbd_work *work, char *name);
85int ksmbd_vfs_link(struct ksmbd_work *work,
070fb21e 86 const char *oldname, const char *newname);
f4415848 87int ksmbd_vfs_getattr(struct path *path, struct kstat *stat);
f4415848 88int ksmbd_vfs_fp_rename(struct ksmbd_work *work, struct ksmbd_file *fp,
070fb21e 89 char *newname);
265fd199 90int ksmbd_vfs_truncate(struct ksmbd_work *work,
070fb21e 91 struct ksmbd_file *fp, loff_t size);
f4415848
NJ
92struct srv_copychunk;
93int ksmbd_vfs_copy_file_ranges(struct ksmbd_work *work,
070fb21e
NJ
94 struct ksmbd_file *src_fp,
95 struct ksmbd_file *dst_fp,
96 struct srv_copychunk *chunks,
97 unsigned int chunk_count,
98 unsigned int *chunk_count_written,
99 unsigned int *chunk_size_written,
100 loff_t *total_size_written);
f4415848 101ssize_t ksmbd_vfs_listxattr(struct dentry *dentry, char **list);
af34983e
HL
102ssize_t ksmbd_vfs_getxattr(struct user_namespace *user_ns,
103 struct dentry *dentry,
104 char *xattr_name,
070fb21e 105 char **xattr_buf);
af34983e
HL
106ssize_t ksmbd_vfs_casexattr_len(struct user_namespace *user_ns,
107 struct dentry *dentry, char *attr_name,
070fb21e 108 int attr_name_len);
af34983e
HL
109int ksmbd_vfs_setxattr(struct user_namespace *user_ns,
110 struct dentry *dentry, const char *attr_name,
070fb21e 111 const void *attr_value, size_t attr_size, int flags);
64b39f4a 112int ksmbd_vfs_xattr_stream_name(char *stream_name, char **xattr_stream_name,
070fb21e 113 size_t *xattr_stream_name_size, int s_type);
af34983e
HL
114int ksmbd_vfs_remove_xattr(struct user_namespace *user_ns,
115 struct dentry *dentry, char *attr_name);
265fd199
HL
116int ksmbd_vfs_kern_path(struct ksmbd_work *work,
117 char *name, unsigned int flags, struct path *path,
070fb21e 118 bool caseless);
265fd199
HL
119struct dentry *ksmbd_vfs_kern_path_create(struct ksmbd_work *work,
120 const char *name,
121 unsigned int flags,
122 struct path *path);
f4415848
NJ
123int ksmbd_vfs_empty_dir(struct ksmbd_file *fp);
124void ksmbd_vfs_set_fadvise(struct file *filp, __le32 option);
64b39f4a 125int ksmbd_vfs_zero_data(struct ksmbd_work *work, struct ksmbd_file *fp,
070fb21e 126 loff_t off, loff_t len);
f4415848
NJ
127struct file_allocated_range_buffer;
128int ksmbd_vfs_fqar_lseek(struct ksmbd_file *fp, loff_t start, loff_t length,
070fb21e 129 struct file_allocated_range_buffer *ranges,
f7db8fd0 130 unsigned int in_count, unsigned int *out_count);
af34983e
HL
131int ksmbd_vfs_unlink(struct user_namespace *user_ns,
132 struct dentry *dir, struct dentry *dentry);
f4415848 133void *ksmbd_vfs_init_kstat(char **p, struct ksmbd_kstat *ksmbd_kstat);
af34983e
HL
134int ksmbd_vfs_fill_dentry_attrs(struct ksmbd_work *work,
135 struct user_namespace *user_ns,
136 struct dentry *dentry,
070fb21e 137 struct ksmbd_kstat *ksmbd_kstat);
45a64e8b 138void ksmbd_vfs_posix_lock_wait(struct file_lock *flock);
f4415848
NJ
139int ksmbd_vfs_posix_lock_wait_timeout(struct file_lock *flock, long timeout);
140void ksmbd_vfs_posix_lock_unblock(struct file_lock *flock);
af34983e
HL
141int ksmbd_vfs_remove_acl_xattrs(struct user_namespace *user_ns,
142 struct dentry *dentry);
143int ksmbd_vfs_remove_sd_xattrs(struct user_namespace *user_ns,
144 struct dentry *dentry);
145int ksmbd_vfs_set_sd_xattr(struct ksmbd_conn *conn,
146 struct user_namespace *user_ns,
147 struct dentry *dentry,
070fb21e 148 struct smb_ntsd *pntsd, int len);
af34983e
HL
149int ksmbd_vfs_get_sd_xattr(struct ksmbd_conn *conn,
150 struct user_namespace *user_ns,
151 struct dentry *dentry,
070fb21e 152 struct smb_ntsd **pntsd);
af34983e
HL
153int ksmbd_vfs_set_dos_attrib_xattr(struct user_namespace *user_ns,
154 struct dentry *dentry,
070fb21e 155 struct xattr_dos_attrib *da);
af34983e
HL
156int ksmbd_vfs_get_dos_attrib_xattr(struct user_namespace *user_ns,
157 struct dentry *dentry,
070fb21e 158 struct xattr_dos_attrib *da);
af34983e
HL
159int ksmbd_vfs_set_init_posix_acl(struct user_namespace *user_ns,
160 struct inode *inode);
161int ksmbd_vfs_inherit_posix_acl(struct user_namespace *user_ns,
162 struct inode *inode,
070fb21e 163 struct inode *parent_inode);
f4415848 164#endif /* __KSMBD_VFS_H__ */