splice.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Function declerations and data structures related to the splice
  3. * implementation.
  4. *
  5. * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
  6. *
  7. */
  8. #ifndef SPLICE_H
  9. #define SPLICE_H
  10. #include <linux/pipe_fs_i.h>
  11. /*
  12. * splice is tied to pipes as a transport (at least for now), so we'll just
  13. * add the splice flags here.
  14. */
  15. #define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
  16. #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
  17. /* we may still block on the fd we splice */
  18. /* from/to, of course */
  19. #define SPLICE_F_MORE (0x04) /* expect more data */
  20. #define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
  21. /*
  22. * Passed to the actors
  23. */
  24. struct splice_desc {
  25. unsigned int len, total_len; /* current and remaining length */
  26. unsigned int flags; /* splice flags */
  27. /*
  28. * actor() private data
  29. */
  30. union {
  31. void __user *userptr; /* memory to write to */
  32. struct file *file; /* file to read/write */
  33. void *data; /* cookie */
  34. } u;
  35. loff_t pos; /* file position */
  36. };
  37. struct partial_page {
  38. unsigned int offset;
  39. unsigned int len;
  40. };
  41. /*
  42. * Passed to splice_to_pipe
  43. */
  44. struct splice_pipe_desc {
  45. struct page **pages; /* page map */
  46. struct partial_page *partial; /* pages[] may not be contig */
  47. int nr_pages; /* number of pages in map */
  48. unsigned int flags; /* splice flags */
  49. const struct pipe_buf_operations *ops;/* ops associated with output pipe */
  50. };
  51. typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
  52. struct splice_desc *);
  53. typedef int (splice_direct_actor)(struct pipe_inode_info *,
  54. struct splice_desc *);
  55. extern ssize_t splice_from_pipe(struct pipe_inode_info *, struct file *,
  56. loff_t *, size_t, unsigned int,
  57. splice_actor *);
  58. extern ssize_t __splice_from_pipe(struct pipe_inode_info *,
  59. struct splice_desc *, splice_actor *);
  60. extern ssize_t splice_to_pipe(struct pipe_inode_info *,
  61. struct splice_pipe_desc *);
  62. extern ssize_t splice_direct_to_actor(struct file *, struct splice_desc *,
  63. splice_direct_actor *);
  64. #endif