sftp.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* $OpenBSD: sftp.h,v 1.9 2008/06/13 00:12:02 dtucker Exp $ */
  2. /*
  3. * Copyright (c) 2001 Markus Friedl. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  15. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  16. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  17. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  18. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  20. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  21. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. /*
  26. * draft-ietf-secsh-filexfer-01.txt
  27. */
  28. /* version */
  29. #define SSH2_FILEXFER_VERSION 3
  30. /* client to server */
  31. #define SSH2_FXP_INIT 1
  32. #define SSH2_FXP_OPEN 3
  33. #define SSH2_FXP_CLOSE 4
  34. #define SSH2_FXP_READ 5
  35. #define SSH2_FXP_WRITE 6
  36. #define SSH2_FXP_LSTAT 7
  37. #define SSH2_FXP_STAT_VERSION_0 7
  38. #define SSH2_FXP_FSTAT 8
  39. #define SSH2_FXP_SETSTAT 9
  40. #define SSH2_FXP_FSETSTAT 10
  41. #define SSH2_FXP_OPENDIR 11
  42. #define SSH2_FXP_READDIR 12
  43. #define SSH2_FXP_REMOVE 13
  44. #define SSH2_FXP_MKDIR 14
  45. #define SSH2_FXP_RMDIR 15
  46. #define SSH2_FXP_REALPATH 16
  47. #define SSH2_FXP_STAT 17
  48. #define SSH2_FXP_RENAME 18
  49. #define SSH2_FXP_READLINK 19
  50. #define SSH2_FXP_SYMLINK 20
  51. /* server to client */
  52. #define SSH2_FXP_VERSION 2
  53. #define SSH2_FXP_STATUS 101
  54. #define SSH2_FXP_HANDLE 102
  55. #define SSH2_FXP_DATA 103
  56. #define SSH2_FXP_NAME 104
  57. #define SSH2_FXP_ATTRS 105
  58. #define SSH2_FXP_EXTENDED 200
  59. #define SSH2_FXP_EXTENDED_REPLY 201
  60. /* attributes */
  61. #define SSH2_FILEXFER_ATTR_SIZE 0x00000001
  62. #define SSH2_FILEXFER_ATTR_UIDGID 0x00000002
  63. #define SSH2_FILEXFER_ATTR_PERMISSIONS 0x00000004
  64. #define SSH2_FILEXFER_ATTR_ACMODTIME 0x00000008
  65. #define SSH2_FILEXFER_ATTR_EXTENDED 0x80000000
  66. /* portable open modes */
  67. #define SSH2_FXF_READ 0x00000001
  68. #define SSH2_FXF_WRITE 0x00000002
  69. #define SSH2_FXF_APPEND 0x00000004
  70. #define SSH2_FXF_CREAT 0x00000008
  71. #define SSH2_FXF_TRUNC 0x00000010
  72. #define SSH2_FXF_EXCL 0x00000020
  73. /* statvfs@openssh.com f_flag flags */
  74. #define SSH2_FXE_STATVFS_ST_RDONLY 0x00000001
  75. #define SSH2_FXE_STATVFS_ST_NOSUID 0x00000002
  76. /* status messages */
  77. #define SSH2_FX_OK 0
  78. #define SSH2_FX_EOF 1
  79. #define SSH2_FX_NO_SUCH_FILE 2
  80. #define SSH2_FX_PERMISSION_DENIED 3
  81. #define SSH2_FX_FAILURE 4
  82. #define SSH2_FX_BAD_MESSAGE 5
  83. #define SSH2_FX_NO_CONNECTION 6
  84. #define SSH2_FX_CONNECTION_LOST 7
  85. #define SSH2_FX_OP_UNSUPPORTED 8
  86. #define SSH2_FX_MAX 8
  87. struct passwd;
  88. int sftp_server_main(int, char **, struct passwd *, int);
  89. void sftp_server_cleanup_exit(int) __attribute__((noreturn));