Home | History | Annotate | Line # | Download | only in mount_psshfs
sftp_proto.h revision 1.1
      1  1.1  pooka /*	$NetBSD: sftp_proto.h,v 1.1 2006/12/29 15:35:40 pooka Exp $	*/
      2  1.1  pooka 
      3  1.1  pooka /*
      4  1.1  pooka  * Copyright (c) 2006  Antti Kantee.  All Rights Reserved.
      5  1.1  pooka  *
      6  1.1  pooka  * Redistribution and use in source and binary forms, with or without
      7  1.1  pooka  * modification, are permitted provided that the following conditions
      8  1.1  pooka  * are met:
      9  1.1  pooka  * 1. Redistributions of source code must retain the above copyright
     10  1.1  pooka  *    notice, this list of conditions and the following disclaimer.
     11  1.1  pooka  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  pooka  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  pooka  *    documentation and/or other materials provided with the distribution.
     14  1.1  pooka  * 3. The name of the company nor the name of the author may be used to
     15  1.1  pooka  *    endorse or promote products derived from this software without specific
     16  1.1  pooka  *    prior written permission.
     17  1.1  pooka  *
     18  1.1  pooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     19  1.1  pooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     20  1.1  pooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     21  1.1  pooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     22  1.1  pooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     23  1.1  pooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     24  1.1  pooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     25  1.1  pooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     26  1.1  pooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27  1.1  pooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  1.1  pooka  * SUCH DAMAGE.
     29  1.1  pooka  */
     30  1.1  pooka 
     31  1.1  pooka /*
     32  1.1  pooka  * copypaste from draft-ietf-secsh-filexfer-03.txt
     33  1.1  pooka  *
     34  1.1  pooka  * XXX: we only implement protocol version 03.  We should *definitely*
     35  1.1  pooka  * support a later version, since it maps to the vnode interface much
     36  1.1  pooka  * better.  the problem is that most sftp servers only implement v3
     37  1.1  pooka  * and I don't currently have the energy to deal with compat-fuddling
     38  1.1  pooka  * in the code.
     39  1.1  pooka  */
     40  1.1  pooka 
     41  1.1  pooka #ifndef PSSHFS_SFTPPROTO_H_
     42  1.1  pooka #define PSSHFS_SFTPPROTO_H_
     43  1.1  pooka 
     44  1.1  pooka /* 3 General Packet Format */
     45  1.1  pooka 
     46  1.1  pooka #define SSH_FXP_INIT		1
     47  1.1  pooka #define SSH_FXP_VERSION		2
     48  1.1  pooka #define SSH_FXP_OPEN		3
     49  1.1  pooka #define SSH_FXP_CLOSE		4
     50  1.1  pooka #define SSH_FXP_READ		5
     51  1.1  pooka #define SSH_FXP_WRITE		6
     52  1.1  pooka #define SSH_FXP_LSTAT		7
     53  1.1  pooka #define SSH_FXP_FSTAT		8
     54  1.1  pooka #define SSH_FXP_SETSTAT		9
     55  1.1  pooka #define SSH_FXP_FSETSTAT	10
     56  1.1  pooka #define SSH_FXP_OPENDIR		11
     57  1.1  pooka #define SSH_FXP_READDIR		12
     58  1.1  pooka #define SSH_FXP_REMOVE		13
     59  1.1  pooka #define SSH_FXP_MKDIR		14
     60  1.1  pooka #define SSH_FXP_RMDIR		15
     61  1.1  pooka #define SSH_FXP_REALPATH	16
     62  1.1  pooka #define SSH_FXP_STAT		17
     63  1.1  pooka #define SSH_FXP_RENAME		18
     64  1.1  pooka #define SSH_FXP_READLINK	19
     65  1.1  pooka #define SSH_FXP_SYMLINK		20
     66  1.1  pooka 
     67  1.1  pooka #define SSH_FXP_STATUS		101
     68  1.1  pooka #define SSH_FXP_HANDLE		102
     69  1.1  pooka #define SSH_FXP_DATA		103
     70  1.1  pooka #define SSH_FXP_NAME		104
     71  1.1  pooka #define SSH_FXP_ATTRS		105
     72  1.1  pooka 
     73  1.1  pooka #define SSH_FXP_EXTENDED	200
     74  1.1  pooka #define SSH_FXP_EXTENDED_REPLY	201
     75  1.1  pooka 
     76  1.1  pooka /* 5.1 Flags */
     77  1.1  pooka 
     78  1.1  pooka /* XXX: UIDGID is obsoleted *AND NOT VALID* for version 3 of the protocol */
     79  1.1  pooka #define SSH_FILEXFER_ATTR_SIZE		0x00000001
     80  1.1  pooka #define SSH_FILEXFER_ATTR_UIDGID	0x00000002
     81  1.1  pooka #define SSH_FILEXFER_ATTR_PERMISSIONS	0x00000004
     82  1.1  pooka #define SSH_FILEXFER_ATTR_ACCESSTIME	0x00000008
     83  1.1  pooka #define SSH_FILEXFER_ATTR_CREATETIME	0x00000010
     84  1.1  pooka #define SSH_FILEXFER_ATTR_MODIFYTIME	0x00000020
     85  1.1  pooka #define SSH_FILEXFER_ATTR_ACL		0x00000040
     86  1.1  pooka #define SSH_FILEXFER_ATTR_OWNERGROUP	0x00000080
     87  1.1  pooka #define SSH_FILEXFER_ATTR_EXTENDED	0x80000000
     88  1.1  pooka 
     89  1.1  pooka /* 5.2 Type */
     90  1.1  pooka 
     91  1.1  pooka #define SSH_FILEXFER_TYPE_REGULAR	1
     92  1.1  pooka #define SSH_FILEXFER_TYPE_DIRECTORY	2
     93  1.1  pooka #define SSH_FILEXFER_TYPE_SYMLINK	3
     94  1.1  pooka #define SSH_FILEXFER_TYPE_SPECIAL	4
     95  1.1  pooka #define SSH_FILEXFER_TYPE_UNKNOWN	5
     96  1.1  pooka 
     97  1.1  pooka 
     98  1.1  pooka /* 6.3 Opening, Creating, and Closing Files */
     99  1.1  pooka 
    100  1.1  pooka #define SSH_FXF_READ	0x00000001
    101  1.1  pooka #define SSH_FXF_WRITE	0x00000002
    102  1.1  pooka #define SSH_FXF_APPEND	0x00000004
    103  1.1  pooka #define SSH_FXF_CREAT	0x00000008
    104  1.1  pooka #define SSH_FXF_TRUNC	0x00000010
    105  1.1  pooka #define SSH_FXF_EXCL	0x00000020
    106  1.1  pooka #define SSH_FXF_TEXT	0x00000040
    107  1.1  pooka 
    108  1.1  pooka 
    109  1.1  pooka /* 7. Responses from the Server to the Client */
    110  1.1  pooka 
    111  1.1  pooka #define SSH_FX_OK			0
    112  1.1  pooka #define SSH_FX_EOF			1
    113  1.1  pooka #define SSH_FX_NO_SUCH_FILE		2
    114  1.1  pooka #define SSH_FX_PERMISSION_DENIED	3
    115  1.1  pooka #define SSH_FX_FAILURE			4
    116  1.1  pooka #define SSH_FX_BAD_MESSAGE		5
    117  1.1  pooka #define SSH_FX_NO_CONNECTION		6
    118  1.1  pooka #define SSH_FX_CONNECTION_LOST		7
    119  1.1  pooka #define SSH_FX_OP_UNSUPPORTED		8
    120  1.1  pooka #define SSH_FX_INVALID_HANDLE		9
    121  1.1  pooka #define SSH_FX_NO_SUCH_PATH		10
    122  1.1  pooka #define SSH_FX_FILE_ALREADY_EXISTS	11
    123  1.1  pooka #define SSH_FX_WRITE_PROTECT		12
    124  1.1  pooka 
    125  1.1  pooka #endif /* PSSHFS_SFTPPROTO_H_ */
    126