sftp.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /*
  2. * sftp.h: definitions for SFTP and the sftp.c routines.
  3. */
  4. #include "int64.h"
  5. #define SSH_FXP_INIT 1 /* 0x1 */
  6. #define SSH_FXP_VERSION 2 /* 0x2 */
  7. #define SSH_FXP_OPEN 3 /* 0x3 */
  8. #define SSH_FXP_CLOSE 4 /* 0x4 */
  9. #define SSH_FXP_READ 5 /* 0x5 */
  10. #define SSH_FXP_WRITE 6 /* 0x6 */
  11. #define SSH_FXP_LSTAT 7 /* 0x7 */
  12. #define SSH_FXP_FSTAT 8 /* 0x8 */
  13. #define SSH_FXP_SETSTAT 9 /* 0x9 */
  14. #define SSH_FXP_FSETSTAT 10 /* 0xa */
  15. #define SSH_FXP_OPENDIR 11 /* 0xb */
  16. #define SSH_FXP_READDIR 12 /* 0xc */
  17. #define SSH_FXP_REMOVE 13 /* 0xd */
  18. #define SSH_FXP_MKDIR 14 /* 0xe */
  19. #define SSH_FXP_RMDIR 15 /* 0xf */
  20. #define SSH_FXP_REALPATH 16 /* 0x10 */
  21. #define SSH_FXP_STAT 17 /* 0x11 */
  22. #define SSH_FXP_RENAME 18 /* 0x12 */
  23. #define SSH_FXP_STATUS 101 /* 0x65 */
  24. #define SSH_FXP_HANDLE 102 /* 0x66 */
  25. #define SSH_FXP_DATA 103 /* 0x67 */
  26. #define SSH_FXP_NAME 104 /* 0x68 */
  27. #define SSH_FXP_ATTRS 105 /* 0x69 */
  28. #define SSH_FXP_EXTENDED 200 /* 0xc8 */
  29. #define SSH_FXP_EXTENDED_REPLY 201 /* 0xc9 */
  30. #define SSH_FX_OK 0
  31. #define SSH_FX_EOF 1
  32. #define SSH_FX_NO_SUCH_FILE 2
  33. #define SSH_FX_PERMISSION_DENIED 3
  34. #define SSH_FX_FAILURE 4
  35. #define SSH_FX_BAD_MESSAGE 5
  36. #define SSH_FX_NO_CONNECTION 6
  37. #define SSH_FX_CONNECTION_LOST 7
  38. #define SSH_FX_OP_UNSUPPORTED 8
  39. #define SSH_FILEXFER_ATTR_SIZE 0x00000001
  40. #define SSH_FILEXFER_ATTR_UIDGID 0x00000002
  41. #define SSH_FILEXFER_ATTR_PERMISSIONS 0x00000004
  42. #define SSH_FILEXFER_ATTR_ACMODTIME 0x00000008
  43. #define SSH_FILEXFER_ATTR_EXTENDED 0x80000000
  44. #define SSH_FXF_READ 0x00000001
  45. #define SSH_FXF_WRITE 0x00000002
  46. #define SSH_FXF_APPEND 0x00000004
  47. #define SSH_FXF_CREAT 0x00000008
  48. #define SSH_FXF_TRUNC 0x00000010
  49. #define SSH_FXF_EXCL 0x00000020
  50. #define SFTP_PROTO_VERSION 3
  51. /*
  52. * External references. The sftp client module sftp.c expects to be
  53. * able to get at these functions.
  54. *
  55. * sftp_recvdata must never return less than len. It either blocks
  56. * until len is available, or it returns failure.
  57. *
  58. * Both functions return 1 on success, 0 on failure.
  59. *
  60. * sftp_sendbuffer returns the size of the backlog of data in the
  61. * transmit queue.
  62. */
  63. int sftp_senddata(char *data, int len);
  64. int sftp_sendbuffer(void);
  65. int sftp_recvdata(char *data, int len);
  66. /*
  67. * Free sftp_requests
  68. */
  69. void sftp_cleanup_request(void);
  70. struct fxp_attrs {
  71. unsigned long flags;
  72. uint64 size;
  73. unsigned long uid;
  74. unsigned long gid;
  75. unsigned long permissions;
  76. unsigned long atime;
  77. unsigned long mtime;
  78. };
  79. /*
  80. * Copy between the possibly-unused permissions field in an fxp_attrs
  81. * and a possibly-negative integer containing the same permissions.
  82. */
  83. #define PUT_PERMISSIONS(attrs, perms) \
  84. ((perms) >= 0 ? \
  85. ((attrs).flags |= SSH_FILEXFER_ATTR_PERMISSIONS, \
  86. (attrs).permissions = (perms)) : \
  87. ((attrs).flags &= ~SSH_FILEXFER_ATTR_PERMISSIONS))
  88. #define GET_PERMISSIONS(attrs) \
  89. ((attrs).flags & SSH_FILEXFER_ATTR_PERMISSIONS ? \
  90. (attrs).permissions : -1)
  91. struct fxp_handle {
  92. char *hstring;
  93. int hlen;
  94. };
  95. struct fxp_name {
  96. char *filename, *longname;
  97. struct fxp_attrs attrs;
  98. };
  99. struct fxp_names {
  100. int nnames;
  101. struct fxp_name *names;
  102. };
  103. struct sftp_request;
  104. struct sftp_packet;
  105. const char *fxp_error(void);
  106. int fxp_error_type(void);
  107. /*
  108. * Perform exchange of init/version packets. Return 0 on failure.
  109. */
  110. int fxp_init(void);
  111. /*
  112. * Canonify a pathname. Concatenate the two given path elements
  113. * with a separating slash, unless the second is NULL.
  114. */
  115. struct sftp_request *fxp_realpath_send(const char *path);
  116. char *fxp_realpath_recv(struct sftp_packet *pktin, struct sftp_request *req);
  117. /*
  118. * Open a file. 'attrs' contains attributes to be applied to the file
  119. * if it's being created.
  120. */
  121. struct sftp_request *fxp_open_send(const char *path, int type,
  122. struct fxp_attrs *attrs);
  123. struct fxp_handle *fxp_open_recv(struct sftp_packet *pktin,
  124. struct sftp_request *req);
  125. /*
  126. * Open a directory.
  127. */
  128. struct sftp_request *fxp_opendir_send(const char *path);
  129. struct fxp_handle *fxp_opendir_recv(struct sftp_packet *pktin,
  130. struct sftp_request *req);
  131. /*
  132. * Close a file/dir.
  133. */
  134. struct sftp_request *fxp_close_send(struct fxp_handle *handle);
  135. void fxp_close_recv(struct sftp_packet *pktin, struct sftp_request *req);
  136. /*
  137. * Make a directory.
  138. */
  139. struct sftp_request *fxp_mkdir_send(const char *path);
  140. int fxp_mkdir_recv(struct sftp_packet *pktin, struct sftp_request *req);
  141. /*
  142. * Remove a directory.
  143. */
  144. struct sftp_request *fxp_rmdir_send(const char *path);
  145. int fxp_rmdir_recv(struct sftp_packet *pktin, struct sftp_request *req);
  146. /*
  147. * Remove a file.
  148. */
  149. struct sftp_request *fxp_remove_send(const char *fname);
  150. int fxp_remove_recv(struct sftp_packet *pktin, struct sftp_request *req);
  151. /*
  152. * Rename a file.
  153. */
  154. struct sftp_request *fxp_rename_send(const char *srcfname,
  155. const char *dstfname);
  156. int fxp_rename_recv(struct sftp_packet *pktin, struct sftp_request *req);
  157. /*
  158. * Return file attributes.
  159. */
  160. struct sftp_request *fxp_stat_send(const char *fname);
  161. int fxp_stat_recv(struct sftp_packet *pktin, struct sftp_request *req,
  162. struct fxp_attrs *attrs);
  163. struct sftp_request *fxp_fstat_send(struct fxp_handle *handle);
  164. int fxp_fstat_recv(struct sftp_packet *pktin, struct sftp_request *req,
  165. struct fxp_attrs *attrs);
  166. /*
  167. * Set file attributes.
  168. */
  169. struct sftp_request *fxp_setstat_send(const char *fname,
  170. struct fxp_attrs attrs);
  171. int fxp_setstat_recv(struct sftp_packet *pktin, struct sftp_request *req);
  172. struct sftp_request *fxp_fsetstat_send(struct fxp_handle *handle,
  173. struct fxp_attrs attrs);
  174. int fxp_fsetstat_recv(struct sftp_packet *pktin, struct sftp_request *req);
  175. /*
  176. * Read from a file.
  177. */
  178. struct sftp_request *fxp_read_send(struct fxp_handle *handle,
  179. uint64 offset, int len);
  180. int fxp_read_recv(struct sftp_packet *pktin, struct sftp_request *req,
  181. char *buffer, int len);
  182. /*
  183. * Write to a file. Returns 0 on error, 1 on OK.
  184. */
  185. struct sftp_request *fxp_write_send(struct fxp_handle *handle,
  186. char *buffer, uint64 offset, int len);
  187. int fxp_write_recv(struct sftp_packet *pktin, struct sftp_request *req);
  188. /*
  189. * Read from a directory.
  190. */
  191. struct sftp_request *fxp_readdir_send(struct fxp_handle *handle);
  192. struct fxp_names *fxp_readdir_recv(struct sftp_packet *pktin,
  193. struct sftp_request *req);
  194. /*
  195. * Free up an fxp_names structure.
  196. */
  197. void fxp_free_names(struct fxp_names *names);
  198. /*
  199. * Duplicate and free fxp_name structures.
  200. */
  201. struct fxp_name *fxp_dup_name(struct fxp_name *name);
  202. void fxp_free_name(struct fxp_name *name);
  203. /*
  204. * Store user data in an sftp_request structure.
  205. */
  206. void *fxp_get_userdata(struct sftp_request *req);
  207. void fxp_set_userdata(struct sftp_request *req, void *data);
  208. /*
  209. * These functions might well be temporary placeholders to be
  210. * replaced with more useful similar functions later. They form the
  211. * main dispatch loop for processing incoming SFTP responses.
  212. */
  213. void sftp_register(struct sftp_request *req);
  214. struct sftp_request *sftp_find_request(struct sftp_packet *pktin);
  215. struct sftp_packet *sftp_recv(void);
  216. /*
  217. * A wrapper to go round fxp_read_* and fxp_write_*, which manages
  218. * the queueing of multiple read/write requests.
  219. */
  220. struct fxp_xfer;
  221. struct fxp_xfer *xfer_download_init(struct fxp_handle *fh, uint64 offset);
  222. void xfer_download_queue(struct fxp_xfer *xfer);
  223. int xfer_download_gotpkt(struct fxp_xfer *xfer, struct sftp_packet *pktin);
  224. int xfer_download_data(struct fxp_xfer *xfer, void **buf, int *len);
  225. struct fxp_xfer *xfer_upload_init(struct fxp_handle *fh, uint64 offset);
  226. int xfer_upload_ready(struct fxp_xfer *xfer);
  227. void xfer_upload_data(struct fxp_xfer *xfer, char *buffer, int len);
  228. int xfer_upload_gotpkt(struct fxp_xfer *xfer, struct sftp_packet *pktin);
  229. int xfer_done(struct fxp_xfer *xfer);
  230. void xfer_set_error(struct fxp_xfer *xfer);
  231. void xfer_cleanup(struct fxp_xfer *xfer);