summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/chansrv_fuse.h
blob: 912a0b22749230bd40340f21332171f543730db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
 * xrdp: A Remote Desktop Protocol server.
 *
 * Copyright (C) Laxmikant Rashinkar 2013 LK.Rashinkar@gmail.com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef _CHANSRV_FUSE_H
#define _CHANSRV_FUSE_H

/* a file or dir entry in the xrdp file system */
struct xrdp_inode
{
    tui32           parent_inode;      /* Parent serial number.             */
    tui32           inode;             /* File serial number.               */
    tui32           mode;              /* File mode.                        */
    tui32           nlink;             /* symbolic link count.              */
    tui32           nentries;          /* number of entries in a dir        */
    tui32           nopen;             /* number of simultaneous opens      */
    tui32           uid;               /* User ID of the file's owner.      */
    tui32           gid;               /* Group ID of the file's group.     */
    size_t          size;              /* Size of file, in bytes.           */
    time_t          atime;             /* Time of last access.              */
    time_t          mtime;             /* Time of last modification.        */
    time_t          ctime;             /* Time of last status change.       */
    char            name[256];         /* Dir or filename                   */
    tui32           device_id;         /* for file system redirection       */
    char            is_synced;         /* dir struct has been read from     */
                                       /* remote device, done just once     */
    int             lindex;            /* used in clipboard operations      */
    int             is_loc_resource;   /* this is not a redirected resource */
    int             close_in_progress; /* close cmd sent to client          */
};
typedef struct xrdp_inode XRDP_INODE; // LK_TODO use this instead of using struct xrdp_inode

int xfuse_init();
int xfuse_deinit();
int xfuse_check_wait_objs(void);
int xfuse_get_wait_objs(tbus *objs, int *count, int *timeout);
int xfuse_create_share(tui32 share_id, char *dirname);

int xfuse_clear_clip_dir(void);
int xfuse_file_contents_range(int stream_id, char *data, int data_bytes);
int xfuse_file_contents_size(int stream_id, int file_size);
int xfuse_add_clip_dir_item(char *filename, int flags, int size, int lindex);

/* functions that are invoked from devredir */
void xfuse_devredir_cb_enum_dir(void *vp, struct xrdp_inode *xinode);
void xfuse_devredir_cb_enum_dir_done(void *vp, tui32 IoStatus);
void xfuse_devredir_cb_open_file(void *vp, tui32 DeviceId, tui32 FileId);
void xfuse_devredir_cb_read_file(void *vp, char *buf, size_t length);
void xfuse_devredir_cb_rmdir_or_file(void *vp, tui32 IoStatus);
void xfuse_devredir_cb_rename_file(void *vp, tui32 IoStatus);
void xfuse_devredir_cb_file_close(void *vp);

#endif