Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * (C) 2001 Clemson University and The University of Chicago
  4 * Copyright 2018 Omnibond Systems, L.L.C.
  5 *
  6 * See COPYING in top-level directory.
  7 */
  8
  9/*
 10 *  Linux VFS file operations.
 11 */
 12
 13#include "protocol.h"
 14#include "orangefs-kernel.h"
 15#include "orangefs-bufmap.h"
 16#include <linux/fs.h>
 17#include <linux/filelock.h>
 18#include <linux/pagemap.h>
 19
 20static int flush_racache(struct inode *inode)
 
 
 
 
 
 
 
 
 
 21{
 22	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
 23	struct orangefs_kernel_op_s *new_op;
 24	int ret;
 25
 26	gossip_debug(GOSSIP_UTILS_DEBUG,
 27	    "%s: %pU: Handle is %pU | fs_id %d\n", __func__,
 28	    get_khandle_from_ino(inode), &orangefs_inode->refn.khandle,
 29	    orangefs_inode->refn.fs_id);
 30
 31	new_op = op_alloc(ORANGEFS_VFS_OP_RA_FLUSH);
 32	if (!new_op)
 33		return -ENOMEM;
 34	new_op->upcall.req.ra_cache_flush.refn = orangefs_inode->refn;
 35
 36	ret = service_operation(new_op, "orangefs_flush_racache",
 37	    get_interruptible_flag(inode));
 
 
 
 
 
 
 
 38
 39	gossip_debug(GOSSIP_UTILS_DEBUG, "%s: got return value of %d\n",
 40	    __func__, ret);
 
 
 
 
 41
 42	op_release(new_op);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 43	return ret;
 44}
 45
 46/*
 47 * Post and wait for the I/O upcall to finish
 48 */
 49ssize_t wait_for_direct_io(enum ORANGEFS_io_type type, struct inode *inode,
 50	loff_t *offset, struct iov_iter *iter, size_t total_size,
 51	loff_t readahead_size, struct orangefs_write_range *wr,
 52	int *index_return, struct file *file)
 53{
 54	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
 55	struct orangefs_khandle *handle = &orangefs_inode->refn.khandle;
 56	struct orangefs_kernel_op_s *new_op = NULL;
 57	int buffer_index;
 
 58	ssize_t ret;
 59	size_t copy_amount;
 60	int open_for_read;
 61	int open_for_write;
 62
 63	new_op = op_alloc(ORANGEFS_VFS_OP_FILE_IO);
 64	if (!new_op)
 65		return -ENOMEM;
 66
 67	/* synchronous I/O */
 68	new_op->upcall.req.io.readahead_size = readahead_size;
 69	new_op->upcall.req.io.io_type = type;
 70	new_op->upcall.req.io.refn = orangefs_inode->refn;
 71
 72populate_shared_memory:
 73	/* get a shared buffer index */
 74	buffer_index = orangefs_bufmap_get();
 75	if (buffer_index < 0) {
 76		ret = buffer_index;
 77		gossip_debug(GOSSIP_FILE_DEBUG,
 78			     "%s: orangefs_bufmap_get failure (%zd)\n",
 79			     __func__, ret);
 80		goto out;
 81	}
 82	gossip_debug(GOSSIP_FILE_DEBUG,
 83		     "%s(%pU): GET op %p -> buffer_index %d\n",
 84		     __func__,
 85		     handle,
 86		     new_op,
 87		     buffer_index);
 88
 89	new_op->uses_shared_memory = 1;
 90	new_op->upcall.req.io.buf_index = buffer_index;
 91	new_op->upcall.req.io.count = total_size;
 92	new_op->upcall.req.io.offset = *offset;
 93	if (type == ORANGEFS_IO_WRITE && wr) {
 94		new_op->upcall.uid = from_kuid(&init_user_ns, wr->uid);
 95		new_op->upcall.gid = from_kgid(&init_user_ns, wr->gid);
 96	}
 97	/*
 98	 * Orangefs has no open, and orangefs checks file permissions
 99	 * on each file access. Posix requires that file permissions
100	 * be checked on open and nowhere else. Orangefs-through-the-kernel
101	 * needs to seem posix compliant.
102	 *
103	 * The VFS opens files, even if the filesystem provides no
104	 * method. We can see if a file was successfully opened for
105	 * read and or for write by looking at file->f_mode.
106	 *
107	 * When writes are flowing from the page cache, file is no
108	 * longer available. We can trust the VFS to have checked
109	 * file->f_mode before writing to the page cache.
110	 *
111	 * The mode of a file might change between when it is opened
112	 * and IO commences, or it might be created with an arbitrary mode.
113	 *
114	 * We'll make sure we don't hit EACCES during the IO stage by
115	 * using UID 0. Some of the time we have access without changing
116	 * to UID 0 - how to check?
117	 */
118	if (file) {
119		open_for_write = file->f_mode & FMODE_WRITE;
120		open_for_read = file->f_mode & FMODE_READ;
121	} else {
122		open_for_write = 1;
123		open_for_read = 0; /* not relevant? */
124	}
125	if ((type == ORANGEFS_IO_WRITE) && open_for_write)
126		new_op->upcall.uid = 0;
127	if ((type == ORANGEFS_IO_READ) && open_for_read)
128		new_op->upcall.uid = 0;
129
130	gossip_debug(GOSSIP_FILE_DEBUG,
131		     "%s(%pU): offset: %llu total_size: %zd\n",
132		     __func__,
133		     handle,
134		     llu(*offset),
135		     total_size);
136	/*
137	 * Stage 1: copy the buffers into client-core's address space
 
138	 */
139	if (type == ORANGEFS_IO_WRITE && total_size) {
140		ret = orangefs_bufmap_copy_from_iovec(iter, buffer_index,
141		    total_size);
142		if (ret < 0) {
143			gossip_err("%s: Failed to copy-in buffers. Please make sure that the pvfs2-client is running. %ld\n",
144			    __func__, (long)ret);
145			goto out;
146		}
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,
157				type == ORANGEFS_IO_WRITE ?
158					"file_write" :
159					"file_read",
160				get_interruptible_flag(inode));
161
162	/*
163	 * If service_operation() returns -EAGAIN #and# the operation was
164	 * purged from orangefs_request_list or htable_ops_in_progress, then
165	 * 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)) {
172		orangefs_bufmap_put(buffer_index);
 
173		if (type == ORANGEFS_IO_WRITE)
174			iov_iter_revert(iter, total_size);
175		gossip_debug(GOSSIP_FILE_DEBUG,
176			     "%s:going to repopulate_shared_memory.\n",
177			     __func__);
178		goto populate_shared_memory;
179	}
180
181	if (ret < 0) {
182		if (ret == -EINTR) {
183			/*
184			 * We can't return EINTR if any data was written,
185			 * it's not POSIX. It is minimally acceptable
186			 * to give a partial write, the way NFS does.
187			 *
188			 * It would be optimal to return all or nothing,
189			 * but if a userspace write is bigger than
190			 * an IO buffer, and the interrupt occurs
191			 * between buffer writes, that would not be
192			 * possible.
193			 */
194			switch (new_op->op_state - OP_VFS_STATE_GIVEN_UP) {
195			/*
196			 * If the op was waiting when the interrupt
197			 * occurred, then the client-core did not
198			 * trigger the write.
199			 */
200			case OP_VFS_STATE_WAITING:
201				if (*offset == 0)
202					ret = -EINTR;
203				else
204					ret = 0;
205				break;
206			/*
207			 * If the op was in progress when the interrupt
208			 * occurred, then the client-core was able to
209			 * trigger the write.
210			 */
211			case OP_VFS_STATE_INPROGR:
212				if (type == ORANGEFS_IO_READ)
213					ret = -EINTR;
214				else
215					ret = total_size;
216				break;
217			default:
218				gossip_err("%s: unexpected op state :%d:.\n",
219					   __func__,
220					   new_op->op_state);
221				ret = 0;
222				break;
223			}
224			gossip_debug(GOSSIP_FILE_DEBUG,
225				     "%s: got EINTR, state:%d: %p\n",
226				     __func__,
227				     new_op->op_state,
228				     new_op);
229		} else {
230			gossip_err("%s: error in %s handle %pU, returning %zd\n",
231				__func__,
232				type == ORANGEFS_IO_READ ?
233					"read from" : "write to",
234				handle, ret);
235		}
236		if (orangefs_cancel_op_in_progress(new_op))
237			return ret;
238
239		goto out;
240	}
241
242	/*
243	 * Stage 3: Post copy buffers from client-core's address space
 
244	 */
245	if (type == ORANGEFS_IO_READ && new_op->downcall.resp.io.amt_complete) {
246		/*
247		 * NOTE: the iovector can either contain addresses which
248		 *       can futher be kernel-space or user-space addresses.
249		 *       or it can pointers to struct page's
250		 */
251
252		copy_amount = new_op->downcall.resp.io.amt_complete;
253
254		ret = orangefs_bufmap_copy_to_iovec(iter, buffer_index,
255			copy_amount);
256		if (ret < 0) {
257			gossip_err("%s: Failed to copy-out buffers. Please make sure that the pvfs2-client is running (%ld)\n",
258			    __func__, (long)ret);
259			goto out;
260		}
261	}
262	gossip_debug(GOSSIP_FILE_DEBUG,
263	    "%s(%pU): Amount %s, returned by the sys-io call:%d\n",
264	    __func__,
265	    handle,
266	    type == ORANGEFS_IO_READ ?  "read" : "written",
267	    (int)new_op->downcall.resp.io.amt_complete);
268
269	ret = new_op->downcall.resp.io.amt_complete;
270
271out:
272	if (buffer_index >= 0) {
273		orangefs_bufmap_put(buffer_index);
274		gossip_debug(GOSSIP_FILE_DEBUG,
275			"%s(%pU): PUT buffer_index %d\n",
276			__func__, handle, buffer_index);
 
277	}
278	op_release(new_op);
279	return ret;
280}
281
282int orangefs_revalidate_mapping(struct inode *inode)
 
 
 
 
 
 
 
 
283{
 
284	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
285	struct address_space *mapping = inode->i_mapping;
286	unsigned long *bitlock = &orangefs_inode->bitlock;
287	int ret;
288
289	while (1) {
290		ret = wait_on_bit(bitlock, 1, TASK_KILLABLE);
291		if (ret)
292			return ret;
293		spin_lock(&inode->i_lock);
294		if (test_bit(1, bitlock)) {
295			spin_unlock(&inode->i_lock);
296			continue;
297		}
298		if (!time_before(jiffies, orangefs_inode->mapping_time))
299			break;
300		spin_unlock(&inode->i_lock);
301		return 0;
 
 
 
 
 
 
 
302	}
303
304	set_bit(1, bitlock);
305	smp_wmb();
306	spin_unlock(&inode->i_lock);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
308	unmap_mapping_range(mapping, 0, 0, 0);
309	ret = filemap_write_and_wait(mapping);
310	if (!ret)
311		ret = invalidate_inode_pages2(mapping);
312
313	orangefs_inode->mapping_time = jiffies +
314	    orangefs_cache_timeout_msecs*HZ/1000;
 
315
316	clear_bit(1, bitlock);
317	smp_mb__after_atomic();
318	wake_up_bit(bitlock, 1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
320	return ret;
321}
322
323static ssize_t orangefs_file_read_iter(struct kiocb *iocb,
324    struct iov_iter *iter)
 
 
 
 
 
 
325{
326	int ret;
327	orangefs_stats.reads++;
 
 
328
329	down_read(&file_inode(iocb->ki_filp)->i_rwsem);
330	ret = orangefs_revalidate_mapping(file_inode(iocb->ki_filp));
331	if (ret)
332		goto out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
334	ret = generic_file_read_iter(iocb, iter);
335out:
336	up_read(&file_inode(iocb->ki_filp)->i_rwsem);
337	return ret;
338}
339
340static ssize_t orangefs_file_splice_read(struct file *in, loff_t *ppos,
341					 struct pipe_inode_info *pipe,
342					 size_t len, unsigned int flags)
343{
344	struct inode *inode = file_inode(in);
345	ssize_t ret;
 
 
 
 
 
346
347	orangefs_stats.reads++;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
349	down_read(&inode->i_rwsem);
350	ret = orangefs_revalidate_mapping(inode);
351	if (ret)
 
 
 
 
352		goto out;
 
 
 
 
353
354	ret = filemap_splice_read(in, ppos, pipe, len, flags);
355out:
356	up_read(&inode->i_rwsem);
357	return ret;
 
358}
359
360static ssize_t orangefs_file_write_iter(struct kiocb *iocb,
361    struct iov_iter *iter)
 
 
362{
363	int ret;
364	orangefs_stats.writes++;
 
 
 
 
 
365
366	if (iocb->ki_pos > i_size_read(file_inode(iocb->ki_filp))) {
367		ret = orangefs_revalidate_mapping(file_inode(iocb->ki_filp));
368		if (ret)
 
 
 
 
 
 
 
 
369			return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370	}
371
372	ret = generic_file_write_iter(iocb, iter);
373	return ret;
374}
375
376static vm_fault_t orangefs_fault(struct vm_fault *vmf)
377{
378	struct file *file = vmf->vma->vm_file;
379	int ret;
380	ret = orangefs_inode_getattr(file->f_mapping->host,
381	    ORANGEFS_GETATTR_SIZE);
382	if (ret == -ESTALE)
383		ret = -EIO;
384	if (ret) {
385		gossip_err("%s: orangefs_inode_getattr failed, "
386		    "ret:%d:.\n", __func__, ret);
387		return VM_FAULT_SIGBUS;
388	}
389	return filemap_fault(vmf);
390}
391
392static const struct vm_operations_struct orangefs_file_vm_ops = {
393	.fault = orangefs_fault,
394	.map_pages = filemap_map_pages,
395	.page_mkwrite = orangefs_page_mkwrite,
396};
397
398/*
399 * Memory map a region of a file.
400 */
401static int orangefs_file_mmap(struct file *file, struct vm_area_struct *vma)
402{
403	int ret;
404
405	ret = orangefs_revalidate_mapping(file_inode(file));
406	if (ret)
407		return ret;
408
409	gossip_debug(GOSSIP_FILE_DEBUG,
410		     "orangefs_file_mmap: called on %pD\n", file);
 
 
 
411
412	/* set the sequential readahead hint */
413	vm_flags_mod(vma, VM_SEQ_READ, VM_RAND_READ);
 
414
415	file_accessed(file);
416	vma->vm_ops = &orangefs_file_vm_ops;
417	return 0;
418}
419
420#define mapping_nrpages(idata) ((idata)->nrpages)
421
422/*
423 * Called to notify the module that there are no more references to
424 * this file (i.e. no processes have it open).
425 *
426 * \note Not called when each file is closed.
427 */
428static int orangefs_file_release(struct inode *inode, struct file *file)
429{
430	gossip_debug(GOSSIP_FILE_DEBUG,
431		     "orangefs_file_release: called on %pD\n",
432		     file);
 
 
433
434	/*
435	 * remove all associated inode pages from the page cache and
436	 * readahead cache (if any); this forces an expensive refresh of
437	 * data for the next caller of mmap (or 'get_block' accesses)
438	 */
439	if (mapping_nrpages(file->f_mapping)) {
440		if (orangefs_features & ORANGEFS_FEATURE_READAHEAD) {
441			gossip_debug(GOSSIP_INODE_DEBUG,
442			    "calling flush_racache on %pU\n",
443			    get_khandle_from_ino(inode));
444			flush_racache(inode);
445			gossip_debug(GOSSIP_INODE_DEBUG,
446			    "flush_racache finished\n");
447		}
448
449	}
450	return 0;
451}
452
453/*
454 * Push all data for a specific file onto permanent storage.
455 */
456static int orangefs_fsync(struct file *file,
457		       loff_t start,
458		       loff_t end,
459		       int datasync)
460{
461	int ret;
462	struct orangefs_inode_s *orangefs_inode =
463		ORANGEFS_I(file_inode(file));
464	struct orangefs_kernel_op_s *new_op = NULL;
465
466	ret = filemap_write_and_wait_range(file_inode(file)->i_mapping,
467	    start, end);
468	if (ret < 0)
469		return ret;
470
471	new_op = op_alloc(ORANGEFS_VFS_OP_FSYNC);
472	if (!new_op)
473		return -ENOMEM;
474	new_op->upcall.req.fsync.refn = orangefs_inode->refn;
475
476	ret = service_operation(new_op,
477			"orangefs_fsync",
478			get_interruptible_flag(file_inode(file)));
479
480	gossip_debug(GOSSIP_FILE_DEBUG,
481		     "orangefs_fsync got return value of %d\n",
482		     ret);
483
484	op_release(new_op);
 
 
485	return ret;
486}
487
488/*
489 * Change the file pointer position for an instance of an open file.
490 *
491 * \note If .llseek is overriden, we must acquire lock as described in
492 *       Documentation/filesystems/locking.rst.
493 *
494 * Future upgrade could support SEEK_DATA and SEEK_HOLE but would
495 * require much changes to the FS
496 */
497static loff_t orangefs_file_llseek(struct file *file, loff_t offset, int origin)
498{
499	int ret = -EINVAL;
500	struct inode *inode = file_inode(file);
501
502	if (origin == SEEK_END) {
503		/*
504		 * revalidate the inode's file size.
505		 * NOTE: We are only interested in file size here,
506		 * so we set mask accordingly.
507		 */
508		ret = orangefs_inode_getattr(file->f_mapping->host,
509		    ORANGEFS_GETATTR_SIZE);
510		if (ret == -ESTALE)
511			ret = -EIO;
512		if (ret) {
513			gossip_debug(GOSSIP_FILE_DEBUG,
514				     "%s:%s:%d calling make bad inode\n",
515				     __FILE__,
516				     __func__,
517				     __LINE__);
518			return ret;
519		}
520	}
521
522	gossip_debug(GOSSIP_FILE_DEBUG,
523		     "orangefs_file_llseek: offset is %ld | origin is %d"
524		     " | inode size is %lu\n",
525		     (long)offset,
526		     origin,
527		     (unsigned long)i_size_read(inode));
528
529	return generic_file_llseek(file, offset, origin);
530}
531
532/*
533 * Support local locks (locks that only this kernel knows about)
534 * if Orangefs was mounted -o local_lock.
535 */
536static int orangefs_lock(struct file *filp, int cmd, struct file_lock *fl)
537{
538	int rc = -EINVAL;
539
540	if (ORANGEFS_SB(file_inode(filp)->i_sb)->flags & ORANGEFS_OPT_LOCAL_LOCK) {
541		if (cmd == F_GETLK) {
542			rc = 0;
543			posix_test_lock(filp, fl);
544		} else {
545			rc = posix_lock_file(filp, fl, NULL);
546		}
547	}
548
549	return rc;
550}
551
552static int orangefs_flush(struct file *file, fl_owner_t id)
553{
554	/*
555	 * This is vfs_fsync_range(file, 0, LLONG_MAX, 0) without the
556	 * service_operation in orangefs_fsync.
557	 *
558	 * Do not send fsync to OrangeFS server on a close.  Do send fsync
559	 * on an explicit fsync call.  This duplicates historical OrangeFS
560	 * behavior.
561	 */
562	int r;
563
564	r = filemap_write_and_wait_range(file->f_mapping, 0, LLONG_MAX);
565	if (r > 0)
566		return 0;
567	else
568		return r;
569}
570
571/** ORANGEFS implementation of VFS file operations */
572const struct file_operations orangefs_file_operations = {
573	.llseek		= orangefs_file_llseek,
574	.read_iter	= orangefs_file_read_iter,
575	.write_iter	= orangefs_file_write_iter,
576	.lock		= orangefs_lock,
 
577	.mmap		= orangefs_file_mmap,
578	.open		= generic_file_open,
579	.splice_read    = orangefs_file_splice_read,
580	.splice_write   = iter_file_splice_write,
581	.flush		= orangefs_flush,
582	.release	= orangefs_file_release,
583	.fsync		= orangefs_fsync,
584};
v4.6
 
  1/*
  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"
 12#include "orangefs-kernel.h"
 13#include "orangefs-bufmap.h"
 14#include <linux/fs.h>
 
 15#include <linux/pagemap.h>
 16
 17/*
 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 */
 24static int precopy_buffers(int buffer_index,
 25			   struct iov_iter *iter,
 26			   size_t total_size)
 27{
 28	int ret = 0;
 29	/*
 30	 * copy data from application/kernel by pulling it out
 31	 * of the iovec.
 32	 */
 
 
 
 33
 
 
 
 
 34
 35	if (total_size) {
 36		ret = orangefs_bufmap_copy_from_iovec(iter,
 37						      buffer_index,
 38						      total_size);
 39		if (ret < 0)
 40		gossip_err("%s: Failed to copy-in buffers. Please make sure that the pvfs2-client is running. %ld\n",
 41			   __func__,
 42			   (long)ret);
 43	}
 44
 45	if (ret < 0)
 46		gossip_err("%s: Failed to copy-in buffers. Please make sure that the pvfs2-client is running. %ld\n",
 47			__func__,
 48			(long)ret);
 49	return ret;
 50}
 51
 52/*
 53 * Copy from client-core's address space to the buffers specified
 54 * by the iovec upto total_size bytes.
 55 * NOTE: the iovector can either contain addresses which
 56 *       can futher be kernel-space or user-space addresses.
 57 *       or it can pointers to struct page's
 58 */
 59static int postcopy_buffers(int buffer_index,
 60			    struct iov_iter *iter,
 61			    size_t total_size)
 62{
 63	int ret = 0;
 64	/*
 65	 * copy data to application/kernel by pushing it out to
 66	 * the iovec. NOTE; target buffers can be addresses or
 67	 * struct page pointers.
 68	 */
 69	if (total_size) {
 70		ret = orangefs_bufmap_copy_to_iovec(iter,
 71						    buffer_index,
 72						    total_size);
 73		if (ret < 0)
 74			gossip_err("%s: Failed to copy-out buffers. Please make sure that the pvfs2-client is running (%ld)\n",
 75				__func__,
 76				(long)ret);
 77	}
 78	return ret;
 79}
 80
 81/*
 82 * Post and wait for the I/O upcall to finish
 83 */
 84static ssize_t wait_for_direct_io(enum ORANGEFS_io_type type, struct inode *inode,
 85		loff_t *offset, struct iov_iter *iter,
 86		size_t total_size, loff_t readahead_size)
 
 87{
 88	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
 89	struct orangefs_khandle *handle = &orangefs_inode->refn.khandle;
 90	struct orangefs_kernel_op_s *new_op = NULL;
 91	struct iov_iter saved = *iter;
 92	int buffer_index = -1;
 93	ssize_t ret;
 
 
 
 94
 95	new_op = op_alloc(ORANGEFS_VFS_OP_FILE_IO);
 96	if (!new_op)
 97		return -ENOMEM;
 98
 99	/* synchronous I/O */
100	new_op->upcall.req.io.readahead_size = readahead_size;
101	new_op->upcall.req.io.io_type = type;
102	new_op->upcall.req.io.refn = orangefs_inode->refn;
103
104populate_shared_memory:
105	/* get a shared buffer index */
106	buffer_index = orangefs_bufmap_get();
107	if (buffer_index < 0) {
108		ret = buffer_index;
109		gossip_debug(GOSSIP_FILE_DEBUG,
110			     "%s: orangefs_bufmap_get failure (%zd)\n",
111			     __func__, ret);
112		goto out;
113	}
114	gossip_debug(GOSSIP_FILE_DEBUG,
115		     "%s(%pU): GET op %p -> buffer_index %d\n",
116		     __func__,
117		     handle,
118		     new_op,
119		     buffer_index);
120
121	new_op->uses_shared_memory = 1;
122	new_op->upcall.req.io.buf_index = buffer_index;
123	new_op->upcall.req.io.count = total_size;
124	new_op->upcall.req.io.offset = *offset;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
126	gossip_debug(GOSSIP_FILE_DEBUG,
127		     "%s(%pU): offset: %llu total_size: %zd\n",
128		     __func__,
129		     handle,
130		     llu(*offset),
131		     total_size);
132	/*
133	 * Stage 1: copy the buffers into client-core's address space
134	 * precopy_buffers only pertains to writes.
135	 */
136	if (type == ORANGEFS_IO_WRITE) {
137		ret = precopy_buffers(buffer_index,
138				      iter,
139				      total_size);
140		if (ret < 0)
 
141			goto out;
 
142	}
143
144	gossip_debug(GOSSIP_FILE_DEBUG,
145		     "%s(%pU): Calling post_io_request with tag (%llu)\n",
146		     __func__,
147		     handle,
148		     llu(new_op->tag));
149
150	/* Stage 2: Service the I/O operation */
151	ret = service_operation(new_op,
152				type == ORANGEFS_IO_WRITE ?
153					"file_write" :
154					"file_read",
155				get_interruptible_flag(inode));
156
157	/*
158	 * If service_operation() returns -EAGAIN #and# the operation was
159	 * purged from orangefs_request_list or htable_ops_in_progress, then
160	 * we know that the client was restarted, causing the shared memory
161	 * area to be wiped clean.  To restart a  write operation in this
162	 * case, we must re-copy the data from the user's iovec to a NEW
163	 * shared memory location. To restart a read operation, we must get
164	 * a new shared memory location.
165	 */
166	if (ret == -EAGAIN && op_state_purged(new_op)) {
167		orangefs_bufmap_put(buffer_index);
168		buffer_index = -1;
169		if (type == ORANGEFS_IO_WRITE)
170			*iter = saved;
171		gossip_debug(GOSSIP_FILE_DEBUG,
172			     "%s:going to repopulate_shared_memory.\n",
173			     __func__);
174		goto populate_shared_memory;
175	}
176
177	if (ret < 0) {
178		if (ret == -EINTR) {
179			/*
180			 * We can't return EINTR if any data was written,
181			 * it's not POSIX. It is minimally acceptable
182			 * to give a partial write, the way NFS does.
183			 *
184			 * It would be optimal to return all or nothing,
185			 * but if a userspace write is bigger than
186			 * an IO buffer, and the interrupt occurs
187			 * between buffer writes, that would not be
188			 * possible.
189			 */
190			switch (new_op->op_state - OP_VFS_STATE_GIVEN_UP) {
191			/*
192			 * If the op was waiting when the interrupt
193			 * occurred, then the client-core did not
194			 * trigger the write.
195			 */
196			case OP_VFS_STATE_WAITING:
197				if (*offset == 0)
198					ret = -EINTR;
199				else
200					ret = 0;
201				break;
202			/* 
203			 * If the op was in progress when the interrupt
204			 * occurred, then the client-core was able to
205			 * trigger the write.
206			 */
207			case OP_VFS_STATE_INPROGR:
208				ret = total_size;
 
 
 
209				break;
210			default:
211				gossip_err("%s: unexpected op state :%d:.\n",
212					   __func__,
213					   new_op->op_state);
214				ret = 0;
215				break;
216			}
217			gossip_debug(GOSSIP_FILE_DEBUG,
218				     "%s: got EINTR, state:%d: %p\n",
219				     __func__,
220				     new_op->op_state,
221				     new_op);
222		} else {
223			gossip_err("%s: error in %s handle %pU, returning %zd\n",
224				__func__,
225				type == ORANGEFS_IO_READ ?
226					"read from" : "write to",
227				handle, ret);
228		}
229		if (orangefs_cancel_op_in_progress(new_op))
230			return ret;
231
232		goto out;
233	}
234
235	/*
236	 * Stage 3: Post copy buffers from client-core's address space
237	 * postcopy_buffers only pertains to reads.
238	 */
239	if (type == ORANGEFS_IO_READ) {
240		ret = postcopy_buffers(buffer_index,
241				       iter,
242				       new_op->downcall.resp.io.amt_complete);
243		if (ret < 0)
 
 
 
 
 
 
 
 
 
244			goto out;
 
245	}
246	gossip_debug(GOSSIP_FILE_DEBUG,
247	    "%s(%pU): Amount %s, returned by the sys-io call:%d\n",
248	    __func__,
249	    handle,
250	    type == ORANGEFS_IO_READ ?  "read" : "written",
251	    (int)new_op->downcall.resp.io.amt_complete);
252
253	ret = new_op->downcall.resp.io.amt_complete;
254
255out:
256	if (buffer_index >= 0) {
257		orangefs_bufmap_put(buffer_index);
258		gossip_debug(GOSSIP_FILE_DEBUG,
259			     "%s(%pU): PUT buffer_index %d\n",
260			     __func__, handle, buffer_index);
261		buffer_index = -1;
262	}
263	op_release(new_op);
264	return ret;
265}
266
267/*
268 * Common entry point for read/write/readv/writev
269 * This function will dispatch it to either the direct I/O
270 * or buffered I/O path depending on the mount options and/or
271 * augmented/extended metadata attached to the file.
272 * Note: File extended attributes override any mount options.
273 */
274static ssize_t do_readv_writev(enum ORANGEFS_io_type type, struct file *file,
275		loff_t *offset, struct iov_iter *iter)
276{
277	struct inode *inode = file->f_mapping->host;
278	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
279	struct orangefs_khandle *handle = &orangefs_inode->refn.khandle;
280	size_t count = iov_iter_count(iter);
281	ssize_t total_count = 0;
282	ssize_t ret = -EINVAL;
283
284	gossip_debug(GOSSIP_FILE_DEBUG,
285		"%s-BEGIN(%pU): count(%d) after estimate_max_iovecs.\n",
286		__func__,
287		handle,
288		(int)count);
289
290	if (type == ORANGEFS_IO_WRITE) {
291		gossip_debug(GOSSIP_FILE_DEBUG,
292			     "%s(%pU): proceeding with offset : %llu, "
293			     "size %d\n",
294			     __func__,
295			     handle,
296			     llu(*offset),
297			     (int)count);
298	}
299
300	if (count == 0) {
301		ret = 0;
302		goto out;
303	}
304
305	while (iov_iter_count(iter)) {
306		size_t each_count = iov_iter_count(iter);
307		size_t amt_complete;
308
309		/* how much to transfer in this loop iteration */
310		if (each_count > orangefs_bufmap_size_query())
311			each_count = orangefs_bufmap_size_query();
312
313		gossip_debug(GOSSIP_FILE_DEBUG,
314			     "%s(%pU): size of each_count(%d)\n",
315			     __func__,
316			     handle,
317			     (int)each_count);
318		gossip_debug(GOSSIP_FILE_DEBUG,
319			     "%s(%pU): BEFORE wait_for_io: offset is %d\n",
320			     __func__,
321			     handle,
322			     (int)*offset);
323
324		ret = wait_for_direct_io(type, inode, offset, iter,
325				each_count, 0);
326		gossip_debug(GOSSIP_FILE_DEBUG,
327			     "%s(%pU): return from wait_for_io:%d\n",
328			     __func__,
329			     handle,
330			     (int)ret);
331
332		if (ret < 0)
333			goto out;
 
 
334
335		*offset += ret;
336		total_count += ret;
337		amt_complete = ret;
338
339		gossip_debug(GOSSIP_FILE_DEBUG,
340			     "%s(%pU): AFTER wait_for_io: offset is %d\n",
341			     __func__,
342			     handle,
343			     (int)*offset);
344
345		/*
346		 * if we got a short I/O operations,
347		 * fall out and return what we got so far
348		 */
349		if (amt_complete < each_count)
350			break;
351	} /*end while */
352
353out:
354	if (total_count > 0)
355		ret = total_count;
356	if (ret > 0) {
357		if (type == ORANGEFS_IO_READ) {
358			file_accessed(file);
359		} else {
360			SetMtimeFlag(orangefs_inode);
361			inode->i_mtime = CURRENT_TIME;
362			mark_inode_dirty_sync(inode);
363		}
364	}
365
366	gossip_debug(GOSSIP_FILE_DEBUG,
367		     "%s(%pU): Value(%d) returned.\n",
368		     __func__,
369		     handle,
370		     (int)ret);
371
372	return ret;
373}
374
375/*
376 * Read data from a specified offset in a file (referenced by inode).
377 * Data may be placed either in a user or kernel buffer.
378 */
379ssize_t orangefs_inode_read(struct inode *inode,
380			    struct iov_iter *iter,
381			    loff_t *offset,
382			    loff_t readahead_size)
383{
384	struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
385	size_t count = iov_iter_count(iter);
386	size_t bufmap_size;
387	ssize_t ret = -EINVAL;
388
389	g_orangefs_stats.reads++;
390
391	bufmap_size = orangefs_bufmap_size_query();
392	if (count > bufmap_size) {
393		gossip_debug(GOSSIP_FILE_DEBUG,
394			     "%s: count is too large (%zd/%zd)!\n",
395			     __func__, count, bufmap_size);
396		return -EINVAL;
397	}
398
399	gossip_debug(GOSSIP_FILE_DEBUG,
400		     "%s(%pU) %zd@%llu\n",
401		     __func__,
402		     &orangefs_inode->refn.khandle,
403		     count,
404		     llu(*offset));
405
406	ret = wait_for_direct_io(ORANGEFS_IO_READ, inode, offset, iter,
407			count, readahead_size);
408	if (ret > 0)
409		*offset += ret;
410
411	gossip_debug(GOSSIP_FILE_DEBUG,
412		     "%s(%pU): Value(%zd) returned.\n",
413		     __func__,
414		     &orangefs_inode->refn.khandle,
415		     ret);
416
 
 
 
417	return ret;
418}
419
420static ssize_t orangefs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
 
 
421{
422	struct file *file = iocb->ki_filp;
423	loff_t pos = *(&iocb->ki_pos);
424	ssize_t rc = 0;
425
426	BUG_ON(iocb->private);
427
428	gossip_debug(GOSSIP_FILE_DEBUG, "orangefs_file_read_iter\n");
429
430	g_orangefs_stats.reads++;
431
432	rc = do_readv_writev(ORANGEFS_IO_READ, file, &pos, iter);
433	iocb->ki_pos = pos;
434
435	return rc;
436}
437
438static ssize_t orangefs_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
439{
440	struct file *file = iocb->ki_filp;
441	loff_t pos;
442	ssize_t rc;
443
444	BUG_ON(iocb->private);
445
446	gossip_debug(GOSSIP_FILE_DEBUG, "orangefs_file_write_iter\n");
447
448	mutex_lock(&file->f_mapping->host->i_mutex);
449
450	/* Make sure generic_write_checks sees an up to date inode size. */
451	if (file->f_flags & O_APPEND) {
452		rc = orangefs_inode_getattr(file->f_mapping->host, 0, 1);
453		if (rc == -ESTALE)
454			rc = -EIO;
455		if (rc) {
456			gossip_err("%s: orangefs_inode_getattr failed, "
457			    "rc:%zd:.\n", __func__, rc);
458			goto out;
459		}
460	}
461
462	if (file->f_pos > i_size_read(file->f_mapping->host))
463		orangefs_i_size_write(file->f_mapping->host, file->f_pos);
464
465	rc = generic_write_checks(iocb, iter);
466
467	if (rc <= 0) {
468		gossip_err("%s: generic_write_checks failed, rc:%zd:.\n",
469			   __func__, rc);
470		goto out;
471	}
472
473	/*
474	 * if we are appending, generic_write_checks would have updated
475	 * pos to the end of the file, so we will wait till now to set
476	 * pos...
477	 */
478	pos = *(&iocb->ki_pos);
479
480	rc = do_readv_writev(ORANGEFS_IO_WRITE,
481			     file,
482			     &pos,
483			     iter);
484	if (rc < 0) {
485		gossip_err("%s: do_readv_writev failed, rc:%zd:.\n",
486			   __func__, rc);
487		goto out;
488	}
489
490	iocb->ki_pos = pos;
491	g_orangefs_stats.writes++;
492
 
493out:
494
495	mutex_unlock(&file->f_mapping->host->i_mutex);
496	return rc;
497}
498
499/*
500 * Perform a miscellaneous operation on a file.
501 */
502static long orangefs_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
503{
504	int ret = -ENOTTY;
505	__u64 val = 0;
506	unsigned long uval;
507
508	gossip_debug(GOSSIP_FILE_DEBUG,
509		     "orangefs_ioctl: called with cmd %d\n",
510		     cmd);
511
512	/*
513	 * we understand some general ioctls on files, such as the immutable
514	 * and append flags
515	 */
516	if (cmd == FS_IOC_GETFLAGS) {
517		val = 0;
518		ret = orangefs_inode_getxattr(file_inode(file),
519					      ORANGEFS_XATTR_NAME_DEFAULT_PREFIX,
520					      "user.pvfs2.meta_hint",
521					      &val, sizeof(val));
522		if (ret < 0 && ret != -ENODATA)
523			return ret;
524		else if (ret == -ENODATA)
525			val = 0;
526		uval = val;
527		gossip_debug(GOSSIP_FILE_DEBUG,
528			     "orangefs_ioctl: FS_IOC_GETFLAGS: %llu\n",
529			     (unsigned long long)uval);
530		return put_user(uval, (int __user *)arg);
531	} else if (cmd == FS_IOC_SETFLAGS) {
532		ret = 0;
533		if (get_user(uval, (int __user *)arg))
534			return -EFAULT;
535		/*
536		 * ORANGEFS_MIRROR_FL is set internally when the mirroring mode
537		 * is turned on for a file. The user is not allowed to turn
538		 * on this bit, but the bit is present if the user first gets
539		 * the flags and then updates the flags with some new
540		 * settings. So, we ignore it in the following edit. bligon.
541		 */
542		if ((uval & ~ORANGEFS_MIRROR_FL) &
543		    (~(FS_IMMUTABLE_FL | FS_APPEND_FL | FS_NOATIME_FL))) {
544			gossip_err("orangefs_ioctl: the FS_IOC_SETFLAGS only supports setting one of FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NOATIME_FL\n");
545			return -EINVAL;
546		}
547		val = uval;
548		gossip_debug(GOSSIP_FILE_DEBUG,
549			     "orangefs_ioctl: FS_IOC_SETFLAGS: %llu\n",
550			     (unsigned long long)val);
551		ret = orangefs_inode_setxattr(file_inode(file),
552					      ORANGEFS_XATTR_NAME_DEFAULT_PREFIX,
553					      "user.pvfs2.meta_hint",
554					      &val, sizeof(val), 0);
555	}
556
 
557	return ret;
558}
559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
560/*
561 * Memory map a region of a file.
562 */
563static int orangefs_file_mmap(struct file *file, struct vm_area_struct *vma)
564{
 
 
 
 
 
 
565	gossip_debug(GOSSIP_FILE_DEBUG,
566		     "orangefs_file_mmap: called on %s\n",
567		     (file ?
568			(char *)file->f_path.dentry->d_name.name :
569			(char *)"Unknown"));
570
571	/* set the sequential readahead hint */
572	vma->vm_flags |= VM_SEQ_READ;
573	vma->vm_flags &= ~VM_RAND_READ;
574
575	/* Use readonly mmap since we cannot support writable maps. */
576	return generic_file_readonly_mmap(file, vma);
 
577}
578
579#define mapping_nrpages(idata) ((idata)->nrpages)
580
581/*
582 * Called to notify the module that there are no more references to
583 * this file (i.e. no processes have it open).
584 *
585 * \note Not called when each file is closed.
586 */
587static int orangefs_file_release(struct inode *inode, struct file *file)
588{
589	gossip_debug(GOSSIP_FILE_DEBUG,
590		     "orangefs_file_release: called on %s\n",
591		     file->f_path.dentry->d_name.name);
592
593	orangefs_flush_inode(inode);
594
595	/*
596	 * remove all associated inode pages from the page cache and mmap
597	 * readahead cache (if any); this forces an expensive refresh of
598	 * data for the next caller of mmap (or 'get_block' accesses)
599	 */
600	if (file->f_path.dentry->d_inode &&
601	    file->f_path.dentry->d_inode->i_mapping &&
602	    mapping_nrpages(&file->f_path.dentry->d_inode->i_data))
603		truncate_inode_pages(file->f_path.dentry->d_inode->i_mapping,
604				     0);
 
 
 
 
 
 
605	return 0;
606}
607
608/*
609 * Push all data for a specific file onto permanent storage.
610 */
611static int orangefs_fsync(struct file *file,
612		       loff_t start,
613		       loff_t end,
614		       int datasync)
615{
616	int ret = -EINVAL;
617	struct orangefs_inode_s *orangefs_inode =
618		ORANGEFS_I(file->f_path.dentry->d_inode);
619	struct orangefs_kernel_op_s *new_op = NULL;
620
621	/* required call */
622	filemap_write_and_wait_range(file->f_mapping, start, end);
 
 
623
624	new_op = op_alloc(ORANGEFS_VFS_OP_FSYNC);
625	if (!new_op)
626		return -ENOMEM;
627	new_op->upcall.req.fsync.refn = orangefs_inode->refn;
628
629	ret = service_operation(new_op,
630			"orangefs_fsync",
631			get_interruptible_flag(file->f_path.dentry->d_inode));
632
633	gossip_debug(GOSSIP_FILE_DEBUG,
634		     "orangefs_fsync got return value of %d\n",
635		     ret);
636
637	op_release(new_op);
638
639	orangefs_flush_inode(file->f_path.dentry->d_inode);
640	return ret;
641}
642
643/*
644 * Change the file pointer position for an instance of an open file.
645 *
646 * \note If .llseek is overriden, we must acquire lock as described in
647 *       Documentation/filesystems/Locking.
648 *
649 * Future upgrade could support SEEK_DATA and SEEK_HOLE but would
650 * require much changes to the FS
651 */
652static loff_t orangefs_file_llseek(struct file *file, loff_t offset, int origin)
653{
654	int ret = -EINVAL;
655	struct inode *inode = file_inode(file);
656
657	if (origin == SEEK_END) {
658		/*
659		 * revalidate the inode's file size.
660		 * NOTE: We are only interested in file size here,
661		 * so we set mask accordingly.
662		 */
663		ret = orangefs_inode_getattr(file->f_mapping->host, 0, 1);
 
664		if (ret == -ESTALE)
665			ret = -EIO;
666		if (ret) {
667			gossip_debug(GOSSIP_FILE_DEBUG,
668				     "%s:%s:%d calling make bad inode\n",
669				     __FILE__,
670				     __func__,
671				     __LINE__);
672			return ret;
673		}
674	}
675
676	gossip_debug(GOSSIP_FILE_DEBUG,
677		     "orangefs_file_llseek: offset is %ld | origin is %d"
678		     " | inode size is %lu\n",
679		     (long)offset,
680		     origin,
681		     (unsigned long)i_size_read(inode));
682
683	return generic_file_llseek(file, offset, origin);
684}
685
686/*
687 * Support local locks (locks that only this kernel knows about)
688 * if Orangefs was mounted -o local_lock.
689 */
690static int orangefs_lock(struct file *filp, int cmd, struct file_lock *fl)
691{
692	int rc = -EINVAL;
693
694	if (ORANGEFS_SB(filp->f_inode->i_sb)->flags & ORANGEFS_OPT_LOCAL_LOCK) {
695		if (cmd == F_GETLK) {
696			rc = 0;
697			posix_test_lock(filp, fl);
698		} else {
699			rc = posix_lock_file(filp, fl, NULL);
700		}
701	}
702
703	return rc;
704}
705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706/** ORANGEFS implementation of VFS file operations */
707const struct file_operations orangefs_file_operations = {
708	.llseek		= orangefs_file_llseek,
709	.read_iter	= orangefs_file_read_iter,
710	.write_iter	= orangefs_file_write_iter,
711	.lock		= orangefs_lock,
712	.unlocked_ioctl	= orangefs_ioctl,
713	.mmap		= orangefs_file_mmap,
714	.open		= generic_file_open,
 
 
 
715	.release	= orangefs_file_release,
716	.fsync		= orangefs_fsync,
717};