2014-03-04 00:18:14 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you 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
|
2014-03-04 00:18:14 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-03-04 00:18:14 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* 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.
|
2014-03-04 00:18:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _GUAC_RDP_STREAM_H
|
|
|
|
#define _GUAC_RDP_STREAM_H
|
|
|
|
|
|
|
|
#include "config.h"
|
2015-07-06 06:14:18 +00:00
|
|
|
#include "guac_json.h"
|
2014-03-04 00:18:14 +00:00
|
|
|
#include "rdp_svc.h"
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
#include <guacamole/user.h>
|
2014-06-11 01:45:14 +00:00
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
#include <guacamole/stream.h>
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The transfer status of a file being downloaded.
|
|
|
|
*/
|
|
|
|
typedef struct guac_rdp_download_status {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The file ID of the file being downloaded.
|
|
|
|
*/
|
|
|
|
int file_id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current position within the file.
|
|
|
|
*/
|
|
|
|
uint64_t offset;
|
|
|
|
|
|
|
|
} guac_rdp_download_status;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure which represents the current state of an upload.
|
|
|
|
*/
|
|
|
|
typedef struct guac_rdp_upload_status {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The overall offset within the file that the next write should
|
|
|
|
* occur at.
|
|
|
|
*/
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the file being written to.
|
|
|
|
*/
|
|
|
|
int file_id;
|
|
|
|
|
|
|
|
} guac_rdp_upload_status;
|
|
|
|
|
2015-07-06 06:14:18 +00:00
|
|
|
/**
|
|
|
|
* The current state of a directory listing operation.
|
|
|
|
*/
|
|
|
|
typedef struct guac_rdp_ls_status {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The filesystem associated with the directory being listed.
|
|
|
|
*/
|
|
|
|
guac_rdp_fs* fs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The file ID of the directory being listed.
|
|
|
|
*/
|
|
|
|
int file_id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The absolute path of the directory being listed.
|
|
|
|
*/
|
|
|
|
char directory_name[GUAC_RDP_FS_MAX_PATH];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current state of the JSON directory object being written.
|
|
|
|
*/
|
|
|
|
guac_common_json_state json_state;
|
|
|
|
|
|
|
|
} guac_rdp_ls_status;
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* All available stream types.
|
|
|
|
*/
|
|
|
|
typedef enum guac_rdp_stream_type {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An in-progress file upload.
|
|
|
|
*/
|
|
|
|
GUAC_RDP_UPLOAD_STREAM,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An in-progress file download.
|
|
|
|
*/
|
|
|
|
GUAC_RDP_DOWNLOAD_STREAM,
|
|
|
|
|
2015-07-06 06:14:18 +00:00
|
|
|
/**
|
|
|
|
* An in-progress stream of a directory listing.
|
|
|
|
*/
|
|
|
|
GUAC_RDP_LS_STREAM,
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* The inbound half of a static virtual channel.
|
|
|
|
*/
|
2014-04-08 02:22:53 +00:00
|
|
|
GUAC_RDP_INBOUND_SVC_STREAM,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An inbound stream of clipboard data.
|
|
|
|
*/
|
|
|
|
GUAC_RDP_INBOUND_CLIPBOARD_STREAM
|
2014-03-04 00:18:14 +00:00
|
|
|
|
|
|
|
} guac_rdp_stream_type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variable-typed stream data.
|
|
|
|
*/
|
|
|
|
typedef struct guac_rdp_stream {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of this stream.
|
|
|
|
*/
|
|
|
|
guac_rdp_stream_type type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The file upload status. Only valid for GUAC_RDP_UPLOAD_STREAM.
|
|
|
|
*/
|
|
|
|
guac_rdp_upload_status upload_status;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The file upload status. Only valid for GUAC_RDP_DOWNLOAD_STREAM.
|
|
|
|
*/
|
|
|
|
guac_rdp_download_status download_status;
|
|
|
|
|
2015-07-06 06:14:18 +00:00
|
|
|
/**
|
|
|
|
* The directory list status. Only valid for GUAC_RDP_LS_STREAM.
|
|
|
|
*/
|
|
|
|
guac_rdp_ls_status ls_status;
|
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* Associated SVC instance. Only valid for GUAC_RDP_INBOUND_SVC_STREAM.
|
|
|
|
*/
|
|
|
|
guac_rdp_svc* svc;
|
|
|
|
|
|
|
|
} guac_rdp_stream;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for inbound files related to file uploads.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_file_handler guac_rdp_upload_file_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for inbound pipes related to static virtual channels.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_pipe_handler guac_rdp_svc_pipe_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for inbound clipboard data.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_clipboard_handler guac_rdp_clipboard_handler;
|
2014-04-08 02:22:53 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* Handler for stream data related to file uploads.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_blob_handler guac_rdp_upload_blob_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for stream data related to static virtual channels.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_blob_handler guac_rdp_svc_blob_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for stream data related to clipboard.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_blob_handler guac_rdp_clipboard_blob_handler;
|
2014-04-08 02:22:53 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* Handler for end-of-stream related to file uploads.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_end_handler guac_rdp_upload_end_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
2014-04-08 02:22:53 +00:00
|
|
|
/**
|
|
|
|
* Handler for end-of-stream related to clipboard.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_end_handler guac_rdp_clipboard_end_handler;
|
2014-04-08 02:22:53 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
/**
|
|
|
|
* Handler for acknowledgements of receipt of data related to file downloads.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_ack_handler guac_rdp_download_ack_handler;
|
2014-03-04 00:18:14 +00:00
|
|
|
|
2015-07-06 06:14:18 +00:00
|
|
|
/**
|
|
|
|
* Handler for ack messages received due to receipt of a "body" or "blob"
|
|
|
|
* instruction associated with a directory list operation.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_ack_handler guac_rdp_ls_ack_handler;
|
2015-07-06 06:14:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for get messages. In context of downloads and the filesystem exposed
|
|
|
|
* via the Guacamole protocol, get messages request the body of a file within
|
|
|
|
* the filesystem.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_get_handler guac_rdp_download_get_handler;
|
2015-07-06 06:14:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for put messages. In context of uploads and the filesystem exposed
|
|
|
|
* via the Guacamole protocol, put messages request write access to a file
|
|
|
|
* within the filesystem.
|
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_user_put_handler guac_rdp_upload_put_handler;
|
2015-07-06 06:14:18 +00:00
|
|
|
|
2014-03-04 00:18:14 +00:00
|
|
|
#endif
|
|
|
|
|