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