blob: 6f2e0f745c5d484868b2a65d8dbbb76526437634 [file] [log] [blame]
Mike Marshall5db11c22015-07-17 10:38:12 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7/*
8 * Linux VFS file operations.
9 */
10
11#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -050012#include "orangefs-kernel.h"
13#include "orangefs-bufmap.h"
Mike Marshall5db11c22015-07-17 10:38:12 -040014#include <linux/fs.h>
15#include <linux/pagemap.h>
16
Mike Marshall5db11c22015-07-17 10:38:12 -040017/*
18 * Copy to client-core's address space from the buffers specified
19 * by the iovec upto total_size bytes.
20 * NOTE: the iovector can either contain addresses which
21 * can futher be kernel-space or user-space addresses.
22 * or it can pointers to struct page's
23 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050024static int precopy_buffers(struct orangefs_bufmap *bufmap,
Mike Marshall5db11c22015-07-17 10:38:12 -040025 int buffer_index,
Al Viroa5c126a2015-10-08 17:54:31 -040026 struct iov_iter *iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -040027 size_t total_size)
Mike Marshall5db11c22015-07-17 10:38:12 -040028{
29 int ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -040030 /*
31 * copy data from application/kernel by pulling it out
32 * of the iovec.
33 */
Mike Marshall4d1c4402015-09-04 10:31:16 -040034
35
36 if (total_size) {
Yi Liu8bb8aef2015-11-24 15:12:14 -050037 ret = orangefs_bufmap_copy_from_iovec(bufmap,
38 iter,
39 buffer_index,
40 total_size);
Mike Marshall4d1c4402015-09-04 10:31:16 -040041 if (ret < 0)
42 gossip_err("%s: Failed to copy-in buffers. Please make sure that the pvfs2-client is running. %ld\n",
43 __func__,
44 (long)ret);
Mike Marshall4d1c4402015-09-04 10:31:16 -040045 }
46
Mike Marshall5db11c22015-07-17 10:38:12 -040047 if (ret < 0)
48 gossip_err("%s: Failed to copy-in buffers. Please make sure that the pvfs2-client is running. %ld\n",
49 __func__,
50 (long)ret);
51 return ret;
52}
53
54/*
55 * Copy from client-core's address space to the buffers specified
56 * by the iovec upto total_size bytes.
57 * NOTE: the iovector can either contain addresses which
58 * can futher be kernel-space or user-space addresses.
59 * or it can pointers to struct page's
60 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050061static int postcopy_buffers(struct orangefs_bufmap *bufmap,
Mike Marshall5db11c22015-07-17 10:38:12 -040062 int buffer_index,
Al Viro5f0e3c92015-10-08 17:52:44 -040063 struct iov_iter *iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -040064 size_t total_size)
Mike Marshall5db11c22015-07-17 10:38:12 -040065{
66 int ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -040067 /*
68 * copy data to application/kernel by pushing it out to
69 * the iovec. NOTE; target buffers can be addresses or
70 * struct page pointers.
71 */
72 if (total_size) {
Yi Liu8bb8aef2015-11-24 15:12:14 -050073 ret = orangefs_bufmap_copy_to_iovec(bufmap,
74 iter,
75 buffer_index,
76 total_size);
Mike Marshall5db11c22015-07-17 10:38:12 -040077 if (ret < 0)
Mike Marshall4d1c4402015-09-04 10:31:16 -040078 gossip_err("%s: Failed to copy-out buffers. Please make sure that the pvfs2-client is running (%ld)\n",
Mike Marshall5db11c22015-07-17 10:38:12 -040079 __func__,
80 (long)ret);
81 }
82 return ret;
83}
84
85/*
86 * Post and wait for the I/O upcall to finish
87 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050088static ssize_t wait_for_direct_io(enum ORANGEFS_io_type type, struct inode *inode,
Al Viro3c2fcfc2015-10-08 18:00:26 -040089 loff_t *offset, struct iov_iter *iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -040090 size_t total_size, loff_t readahead_size)
Mike Marshall5db11c22015-07-17 10:38:12 -040091{
Yi Liu8bb8aef2015-11-24 15:12:14 -050092 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
93 struct orangefs_khandle *handle = &orangefs_inode->refn.khandle;
94 struct orangefs_bufmap *bufmap = NULL;
95 struct orangefs_kernel_op_s *new_op = NULL;
Al Viro7b9761a2016-02-07 01:25:06 -050096 struct iov_iter saved = *iter;
Mike Marshall5db11c22015-07-17 10:38:12 -040097 int buffer_index = -1;
98 ssize_t ret;
99
Yi Liu8bb8aef2015-11-24 15:12:14 -0500100 new_op = op_alloc(ORANGEFS_VFS_OP_FILE_IO);
Al Viroed42fe02016-01-22 19:47:47 -0500101 if (!new_op)
102 return -ENOMEM;
103
Mike Marshall5db11c22015-07-17 10:38:12 -0400104 /* synchronous I/O */
Mike Marshall5db11c22015-07-17 10:38:12 -0400105 new_op->upcall.req.io.readahead_size = readahead_size;
106 new_op->upcall.req.io.io_type = type;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500107 new_op->upcall.req.io.refn = orangefs_inode->refn;
Mike Marshall5db11c22015-07-17 10:38:12 -0400108
109populate_shared_memory:
110 /* get a shared buffer index */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500111 ret = orangefs_bufmap_get(&bufmap, &buffer_index);
Mike Marshall5db11c22015-07-17 10:38:12 -0400112 if (ret < 0) {
113 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500114 "%s: orangefs_bufmap_get failure (%ld)\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400115 __func__, (long)ret);
116 goto out;
117 }
118 gossip_debug(GOSSIP_FILE_DEBUG,
119 "%s(%pU): GET op %p -> buffer_index %d\n",
120 __func__,
121 handle,
122 new_op,
123 buffer_index);
124
125 new_op->uses_shared_memory = 1;
126 new_op->upcall.req.io.buf_index = buffer_index;
127 new_op->upcall.req.io.count = total_size;
128 new_op->upcall.req.io.offset = *offset;
129
130 gossip_debug(GOSSIP_FILE_DEBUG,
Al Viro3c2fcfc2015-10-08 18:00:26 -0400131 "%s(%pU): offset: %llu total_size: %zd\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400132 __func__,
133 handle,
Mike Marshall5db11c22015-07-17 10:38:12 -0400134 llu(*offset),
135 total_size);
136 /*
137 * Stage 1: copy the buffers into client-core's address space
138 * precopy_buffers only pertains to writes.
139 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500140 if (type == ORANGEFS_IO_WRITE) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400141 ret = precopy_buffers(bufmap,
142 buffer_index,
Al Viro3c2fcfc2015-10-08 18:00:26 -0400143 iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -0400144 total_size);
Mike Marshall5db11c22015-07-17 10:38:12 -0400145 if (ret < 0)
146 goto out;
147 }
148
149 gossip_debug(GOSSIP_FILE_DEBUG,
150 "%s(%pU): Calling post_io_request with tag (%llu)\n",
151 __func__,
152 handle,
153 llu(new_op->tag));
154
155 /* Stage 2: Service the I/O operation */
156 ret = service_operation(new_op,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500157 type == ORANGEFS_IO_WRITE ?
Mike Marshall5db11c22015-07-17 10:38:12 -0400158 "file_write" :
159 "file_read",
160 get_interruptible_flag(inode));
161
162 /*
163 * If service_operation() returns -EAGAIN #and# the operation was
Yi Liu8bb8aef2015-11-24 15:12:14 -0500164 * purged from orangefs_request_list or htable_ops_in_progress, then
Mike Marshall5db11c22015-07-17 10:38:12 -0400165 * we know that the client was restarted, causing the shared memory
166 * area to be wiped clean. To restart a write operation in this
167 * case, we must re-copy the data from the user's iovec to a NEW
168 * shared memory location. To restart a read operation, we must get
169 * a new shared memory location.
170 */
171 if (ret == -EAGAIN && op_state_purged(new_op)) {
Al Viro1357d062016-02-11 21:34:52 -0500172 orangefs_bufmap_put(buffer_index);
Al Viroe17be9f2016-02-06 14:59:38 -0500173 buffer_index = -1;
Al Viro7b9761a2016-02-07 01:25:06 -0500174 if (type == ORANGEFS_IO_WRITE)
175 *iter = saved;
Mike Marshall5db11c22015-07-17 10:38:12 -0400176 gossip_debug(GOSSIP_FILE_DEBUG,
177 "%s:going to repopulate_shared_memory.\n",
178 __func__);
179 goto populate_shared_memory;
180 }
181
182 if (ret < 0) {
Al Viroc0eae8c2016-02-11 21:28:52 -0500183 /*
Mike Marshall54804942015-10-05 13:44:24 -0400184 * don't write an error to syslog on signaled operation
185 * termination unless we've got debugging turned on, as
186 * this can happen regularly (i.e. ctrl-c)
Mike Marshall5db11c22015-07-17 10:38:12 -0400187 */
188 if (ret == -EINTR)
189 gossip_debug(GOSSIP_FILE_DEBUG,
190 "%s: returning error %ld\n", __func__,
191 (long)ret);
192 else
193 gossip_err("%s: error in %s handle %pU, returning %zd\n",
194 __func__,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500195 type == ORANGEFS_IO_READ ?
Mike Marshall5db11c22015-07-17 10:38:12 -0400196 "read from" : "write to",
197 handle, ret);
Al Viro78699e22016-02-11 23:07:19 -0500198 if (orangefs_cancel_op_in_progress(new_op))
199 return ret;
200
Al Viro897c5df2016-02-13 21:06:50 -0500201 goto out;
Mike Marshall5db11c22015-07-17 10:38:12 -0400202 }
203
204 /*
205 * Stage 3: Post copy buffers from client-core's address space
206 * postcopy_buffers only pertains to reads.
207 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500208 if (type == ORANGEFS_IO_READ) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400209 ret = postcopy_buffers(bufmap,
210 buffer_index,
Al Viro3c2fcfc2015-10-08 18:00:26 -0400211 iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -0400212 new_op->downcall.resp.io.amt_complete);
Al Viroc0eae8c2016-02-11 21:28:52 -0500213 if (ret < 0)
Al Viro897c5df2016-02-13 21:06:50 -0500214 goto out;
Mike Marshall5db11c22015-07-17 10:38:12 -0400215 }
216 gossip_debug(GOSSIP_FILE_DEBUG,
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500217 "%s(%pU): Amount %s, returned by the sys-io call:%d\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400218 __func__,
219 handle,
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500220 type == ORANGEFS_IO_READ ? "read" : "written",
Mike Marshall5db11c22015-07-17 10:38:12 -0400221 (int)new_op->downcall.resp.io.amt_complete);
222
223 ret = new_op->downcall.resp.io.amt_complete;
224
Mike Marshall5db11c22015-07-17 10:38:12 -0400225out:
226 if (buffer_index >= 0) {
Al Viro1357d062016-02-11 21:34:52 -0500227 orangefs_bufmap_put(buffer_index);
Mike Marshall5db11c22015-07-17 10:38:12 -0400228 gossip_debug(GOSSIP_FILE_DEBUG,
229 "%s(%pU): PUT buffer_index %d\n",
230 __func__, handle, buffer_index);
231 buffer_index = -1;
232 }
Al Viroed42fe02016-01-22 19:47:47 -0500233 op_release(new_op);
Mike Marshall5db11c22015-07-17 10:38:12 -0400234 return ret;
235}
236
237/*
Mike Marshall5db11c22015-07-17 10:38:12 -0400238 * Common entry point for read/write/readv/writev
239 * This function will dispatch it to either the direct I/O
240 * or buffered I/O path depending on the mount options and/or
241 * augmented/extended metadata attached to the file.
242 * Note: File extended attributes override any mount options.
243 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500244static ssize_t do_readv_writev(enum ORANGEFS_io_type type, struct file *file,
Al Viro0071ed12015-10-08 18:22:08 -0400245 loff_t *offset, struct iov_iter *iter)
Mike Marshall5db11c22015-07-17 10:38:12 -0400246{
247 struct inode *inode = file->f_mapping->host;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500248 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
249 struct orangefs_khandle *handle = &orangefs_inode->refn.khandle;
Al Viro0071ed12015-10-08 18:22:08 -0400250 size_t count = iov_iter_count(iter);
Al Virodc4067f2015-10-08 18:17:26 -0400251 ssize_t total_count = 0;
252 ssize_t ret = -EINVAL;
Mike Marshall5db11c22015-07-17 10:38:12 -0400253
254 gossip_debug(GOSSIP_FILE_DEBUG,
255 "%s-BEGIN(%pU): count(%d) after estimate_max_iovecs.\n",
256 __func__,
257 handle,
258 (int)count);
259
Yi Liu8bb8aef2015-11-24 15:12:14 -0500260 if (type == ORANGEFS_IO_WRITE) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400261 gossip_debug(GOSSIP_FILE_DEBUG,
262 "%s(%pU): proceeding with offset : %llu, "
263 "size %d\n",
264 __func__,
265 handle,
266 llu(*offset),
267 (int)count);
268 }
269
270 if (count == 0) {
271 ret = 0;
272 goto out;
273 }
274
Al Viro0071ed12015-10-08 18:22:08 -0400275 while (iov_iter_count(iter)) {
276 size_t each_count = iov_iter_count(iter);
Mike Marshall5db11c22015-07-17 10:38:12 -0400277 size_t amt_complete;
278
279 /* how much to transfer in this loop iteration */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500280 if (each_count > orangefs_bufmap_size_query())
281 each_count = orangefs_bufmap_size_query();
Mike Marshall5db11c22015-07-17 10:38:12 -0400282
283 gossip_debug(GOSSIP_FILE_DEBUG,
284 "%s(%pU): size of each_count(%d)\n",
285 __func__,
286 handle,
287 (int)each_count);
288 gossip_debug(GOSSIP_FILE_DEBUG,
289 "%s(%pU): BEFORE wait_for_io: offset is %d\n",
290 __func__,
291 handle,
292 (int)*offset);
293
Al Viro0071ed12015-10-08 18:22:08 -0400294 ret = wait_for_direct_io(type, inode, offset, iter,
Al Viro3c2fcfc2015-10-08 18:00:26 -0400295 each_count, 0);
Mike Marshall5db11c22015-07-17 10:38:12 -0400296 gossip_debug(GOSSIP_FILE_DEBUG,
297 "%s(%pU): return from wait_for_io:%d\n",
298 __func__,
299 handle,
300 (int)ret);
301
302 if (ret < 0)
303 goto out;
304
Mike Marshall5db11c22015-07-17 10:38:12 -0400305 *offset += ret;
306 total_count += ret;
307 amt_complete = ret;
308
309 gossip_debug(GOSSIP_FILE_DEBUG,
310 "%s(%pU): AFTER wait_for_io: offset is %d\n",
311 __func__,
312 handle,
313 (int)*offset);
314
315 /*
316 * if we got a short I/O operations,
317 * fall out and return what we got so far
318 */
319 if (amt_complete < each_count)
320 break;
321 } /*end while */
322
323 if (total_count > 0)
324 ret = total_count;
325out:
Mike Marshall5db11c22015-07-17 10:38:12 -0400326 if (ret > 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500327 if (type == ORANGEFS_IO_READ) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400328 file_accessed(file);
329 } else {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500330 SetMtimeFlag(orangefs_inode);
Mike Marshall5db11c22015-07-17 10:38:12 -0400331 inode->i_mtime = CURRENT_TIME;
332 mark_inode_dirty_sync(inode);
333 }
334 }
335
336 gossip_debug(GOSSIP_FILE_DEBUG,
337 "%s(%pU): Value(%d) returned.\n",
338 __func__,
339 handle,
340 (int)ret);
341
342 return ret;
343}
344
345/*
346 * Read data from a specified offset in a file (referenced by inode).
347 * Data may be placed either in a user or kernel buffer.
348 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500349ssize_t orangefs_inode_read(struct inode *inode,
350 struct iov_iter *iter,
351 loff_t *offset,
352 loff_t readahead_size)
Mike Marshall5db11c22015-07-17 10:38:12 -0400353{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500354 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Al Viro74f68fc2015-10-08 18:31:05 -0400355 size_t count = iov_iter_count(iter);
Mike Marshall5db11c22015-07-17 10:38:12 -0400356 size_t bufmap_size;
Mike Marshall5db11c22015-07-17 10:38:12 -0400357 ssize_t ret = -EINVAL;
358
Yi Liu8bb8aef2015-11-24 15:12:14 -0500359 g_orangefs_stats.reads++;
Mike Marshall5db11c22015-07-17 10:38:12 -0400360
Yi Liu8bb8aef2015-11-24 15:12:14 -0500361 bufmap_size = orangefs_bufmap_size_query();
Mike Marshall5db11c22015-07-17 10:38:12 -0400362 if (count > bufmap_size) {
363 gossip_debug(GOSSIP_FILE_DEBUG,
364 "%s: count is too large (%zd/%zd)!\n",
365 __func__, count, bufmap_size);
366 return -EINVAL;
367 }
368
369 gossip_debug(GOSSIP_FILE_DEBUG,
370 "%s(%pU) %zd@%llu\n",
371 __func__,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500372 &orangefs_inode->refn.khandle,
Mike Marshall5db11c22015-07-17 10:38:12 -0400373 count,
374 llu(*offset));
375
Yi Liu8bb8aef2015-11-24 15:12:14 -0500376 ret = wait_for_direct_io(ORANGEFS_IO_READ, inode, offset, iter,
Mike Marshall4d1c4402015-09-04 10:31:16 -0400377 count, readahead_size);
Mike Marshall5db11c22015-07-17 10:38:12 -0400378 if (ret > 0)
379 *offset += ret;
380
381 gossip_debug(GOSSIP_FILE_DEBUG,
382 "%s(%pU): Value(%zd) returned.\n",
383 __func__,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500384 &orangefs_inode->refn.khandle,
Mike Marshall5db11c22015-07-17 10:38:12 -0400385 ret);
386
387 return ret;
388}
389
Yi Liu8bb8aef2015-11-24 15:12:14 -0500390static ssize_t orangefs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Mike Marshall5db11c22015-07-17 10:38:12 -0400391{
392 struct file *file = iocb->ki_filp;
393 loff_t pos = *(&iocb->ki_pos);
394 ssize_t rc = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400395
396 BUG_ON(iocb->private);
397
Yi Liu8bb8aef2015-11-24 15:12:14 -0500398 gossip_debug(GOSSIP_FILE_DEBUG, "orangefs_file_read_iter\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400399
Yi Liu8bb8aef2015-11-24 15:12:14 -0500400 g_orangefs_stats.reads++;
Mike Marshall5db11c22015-07-17 10:38:12 -0400401
Yi Liu8bb8aef2015-11-24 15:12:14 -0500402 rc = do_readv_writev(ORANGEFS_IO_READ, file, &pos, iter);
Mike Marshall5db11c22015-07-17 10:38:12 -0400403 iocb->ki_pos = pos;
404
405 return rc;
406}
407
Yi Liu8bb8aef2015-11-24 15:12:14 -0500408static ssize_t orangefs_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
Mike Marshall5db11c22015-07-17 10:38:12 -0400409{
410 struct file *file = iocb->ki_filp;
Mike Marshall3f1b6942015-11-13 13:05:11 -0500411 loff_t pos;
Mike Marshall5db11c22015-07-17 10:38:12 -0400412 ssize_t rc;
413
414 BUG_ON(iocb->private);
415
Yi Liu8bb8aef2015-11-24 15:12:14 -0500416 gossip_debug(GOSSIP_FILE_DEBUG, "orangefs_file_write_iter\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400417
418 mutex_lock(&file->f_mapping->host->i_mutex);
419
420 /* Make sure generic_write_checks sees an up to date inode size. */
421 if (file->f_flags & O_APPEND) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500422 rc = orangefs_inode_getattr(file->f_mapping->host,
Martin Brandenburg99109822016-01-28 10:19:40 -0500423 ORANGEFS_ATTR_SYS_SIZE, 0);
Mike Marshall5db11c22015-07-17 10:38:12 -0400424 if (rc) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500425 gossip_err("%s: orangefs_inode_getattr failed, rc:%zd:.\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400426 __func__, rc);
427 goto out;
428 }
429 }
430
431 if (file->f_pos > i_size_read(file->f_mapping->host))
Yi Liu8bb8aef2015-11-24 15:12:14 -0500432 orangefs_i_size_write(file->f_mapping->host, file->f_pos);
Mike Marshall5db11c22015-07-17 10:38:12 -0400433
434 rc = generic_write_checks(iocb, iter);
435
436 if (rc <= 0) {
437 gossip_err("%s: generic_write_checks failed, rc:%zd:.\n",
438 __func__, rc);
439 goto out;
440 }
441
Mike Marshall3f1b6942015-11-13 13:05:11 -0500442 /*
443 * if we are appending, generic_write_checks would have updated
444 * pos to the end of the file, so we will wait till now to set
445 * pos...
446 */
447 pos = *(&iocb->ki_pos);
448
Yi Liu8bb8aef2015-11-24 15:12:14 -0500449 rc = do_readv_writev(ORANGEFS_IO_WRITE,
Mike Marshall5db11c22015-07-17 10:38:12 -0400450 file,
451 &pos,
Al Viro0071ed12015-10-08 18:22:08 -0400452 iter);
Mike Marshall5db11c22015-07-17 10:38:12 -0400453 if (rc < 0) {
454 gossip_err("%s: do_readv_writev failed, rc:%zd:.\n",
455 __func__, rc);
456 goto out;
457 }
458
459 iocb->ki_pos = pos;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500460 g_orangefs_stats.writes++;
Mike Marshall5db11c22015-07-17 10:38:12 -0400461
462out:
463
464 mutex_unlock(&file->f_mapping->host->i_mutex);
465 return rc;
466}
467
468/*
469 * Perform a miscellaneous operation on a file.
470 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500471static long orangefs_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Mike Marshall5db11c22015-07-17 10:38:12 -0400472{
473 int ret = -ENOTTY;
474 __u64 val = 0;
475 unsigned long uval;
476
477 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500478 "orangefs_ioctl: called with cmd %d\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400479 cmd);
480
481 /*
482 * we understand some general ioctls on files, such as the immutable
483 * and append flags
484 */
485 if (cmd == FS_IOC_GETFLAGS) {
486 val = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500487 ret = orangefs_inode_getxattr(file_inode(file),
488 ORANGEFS_XATTR_NAME_DEFAULT_PREFIX,
489 "user.pvfs2.meta_hint",
490 &val, sizeof(val));
Mike Marshall5db11c22015-07-17 10:38:12 -0400491 if (ret < 0 && ret != -ENODATA)
492 return ret;
493 else if (ret == -ENODATA)
494 val = 0;
495 uval = val;
496 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500497 "orangefs_ioctl: FS_IOC_GETFLAGS: %llu\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400498 (unsigned long long)uval);
499 return put_user(uval, (int __user *)arg);
500 } else if (cmd == FS_IOC_SETFLAGS) {
501 ret = 0;
502 if (get_user(uval, (int __user *)arg))
503 return -EFAULT;
504 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500505 * ORANGEFS_MIRROR_FL is set internally when the mirroring mode
Mike Marshall5db11c22015-07-17 10:38:12 -0400506 * is turned on for a file. The user is not allowed to turn
507 * on this bit, but the bit is present if the user first gets
508 * the flags and then updates the flags with some new
509 * settings. So, we ignore it in the following edit. bligon.
510 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500511 if ((uval & ~ORANGEFS_MIRROR_FL) &
Mike Marshall5db11c22015-07-17 10:38:12 -0400512 (~(FS_IMMUTABLE_FL | FS_APPEND_FL | FS_NOATIME_FL))) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500513 gossip_err("orangefs_ioctl: the FS_IOC_SETFLAGS only supports setting one of FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NOATIME_FL\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400514 return -EINVAL;
515 }
516 val = uval;
517 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500518 "orangefs_ioctl: FS_IOC_SETFLAGS: %llu\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400519 (unsigned long long)val);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500520 ret = orangefs_inode_setxattr(file_inode(file),
521 ORANGEFS_XATTR_NAME_DEFAULT_PREFIX,
522 "user.pvfs2.meta_hint",
523 &val, sizeof(val), 0);
Mike Marshall5db11c22015-07-17 10:38:12 -0400524 }
525
526 return ret;
527}
528
529/*
530 * Memory map a region of a file.
531 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500532static int orangefs_file_mmap(struct file *file, struct vm_area_struct *vma)
Mike Marshall5db11c22015-07-17 10:38:12 -0400533{
534 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500535 "orangefs_file_mmap: called on %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400536 (file ?
537 (char *)file->f_path.dentry->d_name.name :
538 (char *)"Unknown"));
539
540 /* set the sequential readahead hint */
541 vma->vm_flags |= VM_SEQ_READ;
542 vma->vm_flags &= ~VM_RAND_READ;
Martin Brandenburg35390802015-09-30 13:11:54 -0400543
544 /* Use readonly mmap since we cannot support writable maps. */
545 return generic_file_readonly_mmap(file, vma);
Mike Marshall5db11c22015-07-17 10:38:12 -0400546}
547
548#define mapping_nrpages(idata) ((idata)->nrpages)
549
550/*
551 * Called to notify the module that there are no more references to
552 * this file (i.e. no processes have it open).
553 *
554 * \note Not called when each file is closed.
555 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500556static int orangefs_file_release(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400557{
558 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500559 "orangefs_file_release: called on %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400560 file->f_path.dentry->d_name.name);
561
Yi Liu8bb8aef2015-11-24 15:12:14 -0500562 orangefs_flush_inode(inode);
Mike Marshall5db11c22015-07-17 10:38:12 -0400563
564 /*
Mike Marshall54804942015-10-05 13:44:24 -0400565 * remove all associated inode pages from the page cache and mmap
566 * readahead cache (if any); this forces an expensive refresh of
567 * data for the next caller of mmap (or 'get_block' accesses)
Mike Marshall5db11c22015-07-17 10:38:12 -0400568 */
569 if (file->f_path.dentry->d_inode &&
570 file->f_path.dentry->d_inode->i_mapping &&
571 mapping_nrpages(&file->f_path.dentry->d_inode->i_data))
572 truncate_inode_pages(file->f_path.dentry->d_inode->i_mapping,
573 0);
574 return 0;
575}
576
577/*
578 * Push all data for a specific file onto permanent storage.
579 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500580static int orangefs_fsync(struct file *file,
Mike Marshall84d02152015-07-28 13:27:51 -0400581 loff_t start,
582 loff_t end,
583 int datasync)
Mike Marshall5db11c22015-07-17 10:38:12 -0400584{
585 int ret = -EINVAL;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500586 struct orangefs_inode_s *orangefs_inode =
587 ORANGEFS_I(file->f_path.dentry->d_inode);
588 struct orangefs_kernel_op_s *new_op = NULL;
Mike Marshall5db11c22015-07-17 10:38:12 -0400589
590 /* required call */
591 filemap_write_and_wait_range(file->f_mapping, start, end);
592
Yi Liu8bb8aef2015-11-24 15:12:14 -0500593 new_op = op_alloc(ORANGEFS_VFS_OP_FSYNC);
Mike Marshall5db11c22015-07-17 10:38:12 -0400594 if (!new_op)
595 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500596 new_op->upcall.req.fsync.refn = orangefs_inode->refn;
Mike Marshall5db11c22015-07-17 10:38:12 -0400597
598 ret = service_operation(new_op,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500599 "orangefs_fsync",
Mike Marshall5db11c22015-07-17 10:38:12 -0400600 get_interruptible_flag(file->f_path.dentry->d_inode));
601
602 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500603 "orangefs_fsync got return value of %d\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400604 ret);
605
606 op_release(new_op);
607
Yi Liu8bb8aef2015-11-24 15:12:14 -0500608 orangefs_flush_inode(file->f_path.dentry->d_inode);
Mike Marshall5db11c22015-07-17 10:38:12 -0400609 return ret;
610}
611
612/*
613 * Change the file pointer position for an instance of an open file.
614 *
615 * \note If .llseek is overriden, we must acquire lock as described in
616 * Documentation/filesystems/Locking.
617 *
618 * Future upgrade could support SEEK_DATA and SEEK_HOLE but would
619 * require much changes to the FS
620 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500621static loff_t orangefs_file_llseek(struct file *file, loff_t offset, int origin)
Mike Marshall5db11c22015-07-17 10:38:12 -0400622{
623 int ret = -EINVAL;
624 struct inode *inode = file->f_path.dentry->d_inode;
625
626 if (!inode) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500627 gossip_err("orangefs_file_llseek: invalid inode (NULL)\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400628 return ret;
629 }
630
Yi Liu8bb8aef2015-11-24 15:12:14 -0500631 if (origin == ORANGEFS_SEEK_END) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400632 /*
633 * revalidate the inode's file size.
634 * NOTE: We are only interested in file size here,
635 * so we set mask accordingly.
636 */
Martin Brandenburg99109822016-01-28 10:19:40 -0500637 ret = orangefs_inode_getattr(inode, ORANGEFS_ATTR_SYS_SIZE, 0);
Mike Marshall5db11c22015-07-17 10:38:12 -0400638 if (ret) {
639 gossip_debug(GOSSIP_FILE_DEBUG,
640 "%s:%s:%d calling make bad inode\n",
641 __FILE__,
642 __func__,
643 __LINE__);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500644 orangefs_make_bad_inode(inode);
Mike Marshall5db11c22015-07-17 10:38:12 -0400645 return ret;
646 }
647 }
648
649 gossip_debug(GOSSIP_FILE_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500650 "orangefs_file_llseek: offset is %ld | origin is %d"
Mike Marshall54804942015-10-05 13:44:24 -0400651 " | inode size is %lu\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400652 (long)offset,
653 origin,
654 (unsigned long)file->f_path.dentry->d_inode->i_size);
655
656 return generic_file_llseek(file, offset, origin);
657}
658
659/*
660 * Support local locks (locks that only this kernel knows about)
661 * if Orangefs was mounted -o local_lock.
662 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500663static int orangefs_lock(struct file *filp, int cmd, struct file_lock *fl)
Mike Marshall5db11c22015-07-17 10:38:12 -0400664{
Mike Marshallf957ae22015-09-24 12:53:05 -0400665 int rc = -EINVAL;
Mike Marshall5db11c22015-07-17 10:38:12 -0400666
Yi Liu8bb8aef2015-11-24 15:12:14 -0500667 if (ORANGEFS_SB(filp->f_inode->i_sb)->flags & ORANGEFS_OPT_LOCAL_LOCK) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400668 if (cmd == F_GETLK) {
669 rc = 0;
670 posix_test_lock(filp, fl);
671 } else {
672 rc = posix_lock_file(filp, fl, NULL);
673 }
674 }
675
676 return rc;
677}
678
Yi Liu8bb8aef2015-11-24 15:12:14 -0500679/** ORANGEFS implementation of VFS file operations */
680const struct file_operations orangefs_file_operations = {
681 .llseek = orangefs_file_llseek,
682 .read_iter = orangefs_file_read_iter,
683 .write_iter = orangefs_file_write_iter,
684 .lock = orangefs_lock,
685 .unlocked_ioctl = orangefs_ioctl,
686 .mmap = orangefs_file_mmap,
Mike Marshall5db11c22015-07-17 10:38:12 -0400687 .open = generic_file_open,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500688 .release = orangefs_file_release,
689 .fsync = orangefs_fsync,
Mike Marshall5db11c22015-07-17 10:38:12 -0400690};