sftp.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. int sftp_senddata(char *data, int len);
  61. int sftp_recvdata(char *data, int len);
  62. /*
  63. * Free sftp_requests
  64. */
  65. void sftp_cleanup_request(void);
  66. struct fxp_attrs {
  67. unsigned long flags;
  68. uint64 size;
  69. unsigned long uid;
  70. unsigned long gid;
  71. unsigned long permissions;
  72. unsigned long atime;
  73. unsigned long mtime;
  74. };
  75. struct fxp_handle {
  76. char *hstring;
  77. int hlen;
  78. };
  79. struct fxp_name {
  80. char *filename, *longname;
  81. struct fxp_attrs attrs;
  82. };
  83. struct fxp_names {
  84. int nnames;
  85. struct fxp_name *names;
  86. };
  87. struct sftp_request;
  88. struct sftp_packet;
  89. const char *fxp_error(void);
  90. int fxp_error_type(void);
  91. /*
  92. * Perform exchange of init/version packets. Return 0 on failure.
  93. */
  94. int fxp_init(void);
  95. /*
  96. * Canonify a pathname. Concatenate the two given path elements
  97. * with a separating slash, unless the second is NULL.
  98. */
  99. struct sftp_request *fxp_realpath_send(char *path);
  100. char *fxp_realpath_recv(struct sftp_packet *pktin, struct sftp_request *req);
  101. /*
  102. * Open a file.
  103. */
  104. struct sftp_request *fxp_open_send(char *path, int type);
  105. struct fxp_handle *fxp_open_recv(struct sftp_packet *pktin,
  106. struct sftp_request *req);
  107. /*
  108. * Open a directory.
  109. */
  110. struct sftp_request *fxp_opendir_send(char *path);
  111. struct fxp_handle *fxp_opendir_recv(struct sftp_packet *pktin,
  112. struct sftp_request *req);
  113. /*
  114. * Close a file/dir.
  115. */
  116. struct sftp_request *fxp_close_send(struct fxp_handle *handle);
  117. void fxp_close_recv(struct sftp_packet *pktin, struct sftp_request *req);
  118. /*
  119. * Make a directory.
  120. */
  121. struct sftp_request *fxp_mkdir_send(char *path);
  122. int fxp_mkdir_recv(struct sftp_packet *pktin, struct sftp_request *req);
  123. /*
  124. * Remove a directory.
  125. */
  126. struct sftp_request *fxp_rmdir_send(char *path);
  127. int fxp_rmdir_recv(struct sftp_packet *pktin, struct sftp_request *req);
  128. /*
  129. * Remove a file.
  130. */
  131. struct sftp_request *fxp_remove_send(char *fname);
  132. int fxp_remove_recv(struct sftp_packet *pktin, struct sftp_request *req);
  133. /*
  134. * Rename a file.
  135. */
  136. struct sftp_request *fxp_rename_send(char *srcfname, char *dstfname);
  137. int fxp_rename_recv(struct sftp_packet *pktin, struct sftp_request *req);
  138. /*
  139. * Return file attributes.
  140. */
  141. struct sftp_request *fxp_stat_send(char *fname);
  142. int fxp_stat_recv(struct sftp_packet *pktin, struct sftp_request *req,
  143. struct fxp_attrs *attrs);
  144. struct sftp_request *fxp_fstat_send(struct fxp_handle *handle);
  145. int fxp_fstat_recv(struct sftp_packet *pktin, struct sftp_request *req,
  146. struct fxp_attrs *attrs);
  147. /*
  148. * Set file attributes.
  149. */
  150. struct sftp_request *fxp_setstat_send(char *fname, struct fxp_attrs attrs);
  151. int fxp_setstat_recv(struct sftp_packet *pktin, struct sftp_request *req);
  152. struct sftp_request *fxp_fsetstat_send(struct fxp_handle *handle,
  153. struct fxp_attrs attrs);
  154. int fxp_fsetstat_recv(struct sftp_packet *pktin, struct sftp_request *req);
  155. /*
  156. * Read from a file.
  157. */
  158. struct sftp_request *fxp_read_send(struct fxp_handle *handle,
  159. uint64 offset, int len);
  160. int fxp_read_recv(struct sftp_packet *pktin, struct sftp_request *req,
  161. char *buffer, int len);
  162. /*
  163. * Write to a file. Returns 0 on error, 1 on OK.
  164. */
  165. struct sftp_request *fxp_write_send(struct fxp_handle *handle,
  166. char *buffer, uint64 offset, int len);
  167. int fxp_write_recv(struct sftp_packet *pktin, struct sftp_request *req);
  168. /*
  169. * Read from a directory.
  170. */
  171. struct sftp_request *fxp_readdir_send(struct fxp_handle *handle);
  172. struct fxp_names *fxp_readdir_recv(struct sftp_packet *pktin,
  173. struct sftp_request *req);
  174. /*
  175. * Free up an fxp_names structure.
  176. */
  177. void fxp_free_names(struct fxp_names *names);
  178. /*
  179. * Duplicate and free fxp_name structures.
  180. */
  181. struct fxp_name *fxp_dup_name(struct fxp_name *name);
  182. void fxp_free_name(struct fxp_name *name);
  183. /*
  184. * Store user data in an sftp_request structure.
  185. */
  186. void *fxp_get_userdata(struct sftp_request *req);
  187. void fxp_set_userdata(struct sftp_request *req, void *data);
  188. /*
  189. * These functions might well be temporary placeholders to be
  190. * replaced with more useful similar functions later. They form the
  191. * main dispatch loop for processing incoming SFTP responses.
  192. */
  193. void sftp_register(struct sftp_request *req);
  194. struct sftp_request *sftp_find_request(struct sftp_packet *pktin);
  195. struct sftp_packet *sftp_recv(void);
  196. /*
  197. * A wrapper to go round fxp_read_* and fxp_write_*, which manages
  198. * the queueing of multiple read/write requests.
  199. */
  200. struct fxp_xfer;
  201. struct fxp_xfer *xfer_download_init(struct fxp_handle *fh, uint64 offset);
  202. void xfer_download_queue(struct fxp_xfer *xfer);
  203. int xfer_download_gotpkt(struct fxp_xfer *xfer, struct sftp_packet *pktin);
  204. int xfer_download_data(struct fxp_xfer *xfer, void **buf, int *len);
  205. struct fxp_xfer *xfer_upload_init(struct fxp_handle *fh, uint64 offset);
  206. int xfer_upload_ready(struct fxp_xfer *xfer);
  207. void xfer_upload_data(struct fxp_xfer *xfer, char *buffer, int len);
  208. int xfer_upload_gotpkt(struct fxp_xfer *xfer, struct sftp_packet *pktin);
  209. int xfer_done(struct fxp_xfer *xfer);
  210. void xfer_set_error(struct fxp_xfer *xfer);
  211. void xfer_cleanup(struct fxp_xfer *xfer);