aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/FTMsgWriter.cxx
blob: a8fd6e1357c40c36215cc95c7a86f274bb4d9298 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
 *    
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this software; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 * USA.
 *
 * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
 *
 */

// -=- FTMsgWriter.cxx

#include <vncviewer/FTMsgWriter.h>

using namespace rfb;
using namespace rfb::win32;

FTMsgWriter::FTMsgWriter(rdr::OutStream *pOS)
{
  m_pOutStream = pOS;
}

FTMsgWriter::~FTMsgWriter()
{
}

bool 
FTMsgWriter::writeFileListRqst(unsigned short dirnameLen, char *pDirName, 
                               bool bDirOnly)
{
  if (dirnameLen >= FT_FILENAME_SIZE) return false;

  char dirName[FT_FILENAME_SIZE];
  strcpy(dirName, pDirName);
  int len = convertToUnixPath(dirName);
  if (len <= 0) return false;

  unsigned char flags = 0;
  if (bDirOnly) flags = 0x10;

  m_pOutStream->writeU8(msgTypeFileListRequest);
  m_pOutStream->writeU8(flags);
  m_pOutStream->writeU16(len);
  m_pOutStream->writeBytes((void *)dirName, len);
  m_pOutStream->flush();

  return true;
}


bool 
FTMsgWriter::writeFileDownloadCancel(unsigned short reasonLen, char *pReason)
{
  m_pOutStream->writeU8(msgTypeFileDownloadCancel);
  return writeU8U16StringMsg(reasonLen, pReason);
}

bool 
FTMsgWriter::writeFileDownloadRqst(unsigned short filenameLen, char *pFilename, 
                                   unsigned int position)
{
  if (filenameLen >= FT_FILENAME_SIZE) return false;

  char filename[FT_FILENAME_SIZE];
  strcpy(filename, pFilename);
  unsigned short len = (unsigned short) convertToUnixPath(filename);
  if (len <= 0) return false;

  m_pOutStream->writeU8(msgTypeFileDownloadRequest);
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(len);
  m_pOutStream->writeU32(position);
  m_pOutStream->writeBytes(filename, len);
  m_pOutStream->flush();

  return true;
}

bool 
FTMsgWriter::writeFileUploadData(unsigned short dataSize, char *pData)
{
  m_pOutStream->writeU8(msgTypeFileUploadData);
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(dataSize);
  m_pOutStream->writeU16(dataSize);
  m_pOutStream->writeBytes(pData, dataSize);
  m_pOutStream->flush();

  return true;
}

bool 
FTMsgWriter::writeFileUploadData(unsigned int modTime)
{
  m_pOutStream->writeU8(msgTypeFileUploadData);
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(0);
  m_pOutStream->writeU16(0);
  m_pOutStream->writeU32(modTime);
  m_pOutStream->flush();

  return true;
}

bool 
FTMsgWriter::writeFileUploadFailed(unsigned short reasonLen, char *pReason)
{
  m_pOutStream->writeU8(msgTypeFileUploadFailed);
  return writeU8U16StringMsg(reasonLen, pReason);
}

bool 
FTMsgWriter::writeFileUploadRqst(unsigned short filenameLen, char *pFilename, 
                                 unsigned int position)
{
  if (filenameLen >= FT_FILENAME_SIZE) return false;

  char filename[FT_FILENAME_SIZE];
  strcpy(filename, pFilename);
  unsigned short len = (unsigned short) convertToUnixPath(filename);
  if (len <= 0) return false;

  m_pOutStream->writeU8(msgTypeFileUploadRequest);
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(len);
  m_pOutStream->writeU32(position);
  m_pOutStream->writeBytes(filename, len);
  m_pOutStream->flush();

  return true;
}

bool 
FTMsgWriter::writeFileCreateDirRqst(unsigned short dirNameLen, char *pDirName)
{
  if (dirNameLen >= FT_FILENAME_SIZE) return false;

  char path[FT_FILENAME_SIZE];
  strcpy(path, pDirName);
  int nameLen = convertToUnixPath(path);

  m_pOutStream->writeU8(msgTypeFileCreateDirRequest);
  return writeU8U16StringMsg(nameLen, path);
}

bool 
FTMsgWriter::writeFileDirSizeRqst(unsigned short dirNameLen, char *pDirName)
{
  if (dirNameLen >= FT_FILENAME_SIZE) return false;

  char path[FT_FILENAME_SIZE];
  strcpy(path, pDirName);
  int nameLen = convertToUnixPath(path);

  m_pOutStream->writeU8(msgTypeFileDirSizeRequest);
  return writeU8U16StringMsg(nameLen, path);
}

bool 
FTMsgWriter::writeFileRenameRqst(unsigned short oldNameLen, unsigned short newNameLen,
                                 char *pOldName, char *pNewName)
{
  if ((oldNameLen >= FT_FILENAME_SIZE) || (newNameLen >= FT_FILENAME_SIZE)) return false;

  char oldName[FT_FILENAME_SIZE];
  char newName[FT_FILENAME_SIZE];

  strcpy(oldName, pOldName);
  strcpy(newName, pNewName);

  int _oldNameLen = convertToUnixPath(oldName);
  int _newNameLen = convertToUnixPath(newName);

  m_pOutStream->writeU8(msgTypeFileRenameRequest);
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(_oldNameLen);
  m_pOutStream->writeU16(_newNameLen);
  m_pOutStream->writeBytes(oldName, _oldNameLen);
  m_pOutStream->writeBytes(newName, _newNameLen);
  m_pOutStream->flush();
  
  return true;
}

bool 
FTMsgWriter::writeFileDeleteRqst(unsigned short nameLen, char *pName)
{
  if (nameLen >= FT_FILENAME_SIZE) return false;

  char path[FT_FILENAME_SIZE];
  strcpy(path, pName);
  int _nameLen = convertToUnixPath(path);

  m_pOutStream->writeU8(msgTypeFileDeleteRequest);
  return writeU8U16StringMsg(_nameLen, path);
}

bool 
FTMsgWriter::writeU8U16StringMsg(unsigned short strLength, char *pString)
{
  m_pOutStream->writeU8(0);
  m_pOutStream->writeU16(strLength);
  m_pOutStream->writeBytes(pString, strLength);
  m_pOutStream->flush();
  return true;
}

int
FTMsgWriter::convertToUnixPath(char *path)
{
  int len = strlen(path);
  if (len >= FT_FILENAME_SIZE) return -1;
  if (len == 0) {strcpy(path, "/"); return 1;}
  for (int i = (len - 1); i >= 0; i--) {
    if (path[i] == '\\') path[i] = '/';
    path[i+1] = path[i];
  }
  path[len + 1] = '\0';
  path[0] = '/';
  return strlen(path);
}