summaryrefslogtreecommitdiff
path: root/icqj_s7_sss_mod/icq_filerequests.c
blob: b8656ffcac5eb0e753c9f0467b8547aba9710c61 (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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// ---------------------------------------------------------------------------80
//                ICQ plugin for Miranda Instant Messenger
//                ________________________________________
// 
// Copyright  2000,2001 Richard Hughes, Roland Rabien, Tristan Van de Vreede
// Copyright  2001,2002 Jon Keating, Richard Hughes
// Copyright  2002,2003,2004 Martin berg, Sam Kothari, Robert Rainwater
// Copyright  2004,2005,2006,2007 Joe Kucera
// Copyright  2006,2007 [sss], chaos.persei, [sin], Faith Healer, Theif, nullbie
// 
// This program 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 program 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 program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
// -----------------------------------------------------------------------------
//
// File name      : $Source$
// Revision       : $Revision: 36 $
// Last change on : $Date: 2007-08-05 03:45:10 +0300 (Вс, 05 авг 2007) $
// Last change by : $Author: sss123next $
//
// DESCRIPTION:
//
//  Describe me here please...
//
// -----------------------------------------------------------------------------

#include "icqoscar.h"



extern WORD wListenPort;

void handleFileAck(PBYTE buf, WORD wLen, DWORD dwUin, DWORD dwCookie, WORD wStatus, char* pszText)
{
  char* pszFileName = NULL;
  DWORD dwFileSize;
  HANDLE hCookieContact;
  WORD wPort;
  WORD wFilenameLength;
  filetransfer* ft;

  
  // Find the filetransfer that belongs to this response
  if (!FindCookie(dwCookie, &hCookieContact, &ft))
  {
    NetLog_Direct("Error: Received unexpected file transfer request response");
    return;
  }

  FreeCookie(dwCookie);
  
  if (hCookieContact != HContactFromUIN(dwUin, NULL))
  {
    NetLog_Direct("Error: UINs do not match in file transfer request response");
    return;
  }

  // If status != 0, a request has been denied
  if (wStatus != 0)
  {
    NetLog_Direct("File transfer denied by %u.", dwUin);
    ICQBroadcastAck(ft->hContact, ACKTYPE_FILE, ACKRESULT_DENIED, (HANDLE)ft, 0);

    FreeCookie(dwCookie);

    return;
  }

  if (wLen < 6) 
  { // sanity check
    NetLog_Direct("Ignoring malformed file transfer request response");
    return;
  }

  // Port to connect to
  unpackWord(&buf, &wPort);
  ft->dwRemotePort = wPort;
  wLen -= 2;
  
  // Unknown
  buf += 2;
  wLen -= 2;
  
  // Filename
  unpackLEWord(&buf, &wFilenameLength);
  if (wFilenameLength > 0)
  {
    if (wFilenameLength > wLen - 2)
      wFilenameLength = wLen - 2;
    pszFileName = _alloca(wFilenameLength+1);
    unpackString(&buf, pszFileName, wFilenameLength);
    pszFileName[wFilenameLength] = '\0';
  }
  wLen = wLen - 2 - wFilenameLength;
  
  if (wLen >= 4)
  { // Total filesize
    unpackLEDWord(&buf, &dwFileSize);
    wLen -= 4;
  }
  else
    dwFileSize = 0;
  
  NetLog_Direct("File transfer ack from %u, port %u, name %s, size %u", dwUin, ft->dwRemotePort, pszFileName, dwFileSize);

  ICQBroadcastAck(ft->hContact, ACKTYPE_FILE, ACKRESULT_CONNECTING, (HANDLE)ft, 0);

  OpenDirectConnection(ft->hContact, DIRECTCONN_FILE, ft);
}



filetransfer *CreateFileTransfer(HANDLE hContact, DWORD dwUin, int nVersion)
{
  filetransfer *ft = CreateIcqFileTransfer();

  ft->dwUin = dwUin;
  ft->hContact = hContact;
  ft->nVersion = nVersion;
  ft->pMessage.bMessageType = MTYPE_FILEREQ;
  InitMessageCookie(&ft->pMessage);

  return ft;
}

// pszDescription points to a string with the reason
// buf points to the first data after the string
void handleFileRequest(PBYTE buf, WORD wLen, DWORD dwUin, DWORD dwCookie, DWORD dwID1, DWORD dwID2, char* pszDescription, int nVersion, BOOL bDC)
{
  char* pszFileName = NULL;
  DWORD dwFileSize;
  WORD wFilenameLength;
  BOOL bEmptyDesc = FALSE;


  if (strlennull(pszDescription) == 0)
  {
    pszDescription = ICQTranslate("No description given");
    bEmptyDesc = TRUE;
  }
  
  // Empty port+pad
  buf += 4;
  wLen -= 4;

  
  // Filename
  unpackLEWord(&buf, &wFilenameLength);
  if (wFilenameLength > 0)
  {
    pszFileName = _alloca(wFilenameLength + 1);
    unpackString(&buf, pszFileName, wFilenameLength);
    pszFileName[wFilenameLength] = '\0';
  }
  else
  {
    NetLog_Direct("Ignoring malformed file send request");
    return;
  }

  wLen = wLen - 2 - wFilenameLength;

  // Total filesize
  unpackLEDWord(&buf, &dwFileSize);
  wLen -= 4;

  {
    CCSDATA ccs;
    PROTORECVEVENT pre;
    char* szBlob;
    filetransfer* ft;
    int bAdded;
    HANDLE hContact = HContactFromUIN(dwUin, &bAdded);
    
    // Initialize a filetransfer struct
    ft = CreateFileTransfer(hContact, dwUin, nVersion);
    ft->dwCookie = dwCookie;
    ft->szFilename = null_strdup(pszFileName);
    ft->szDescription = null_strdup(pszDescription);
    ft->fileId = -1;
    ft->dwTotalSize = dwFileSize;
    ft->pMessage.dwMsgID1 = dwID1;
    ft->pMessage.dwMsgID2 = dwID2;
    ft->bDC = bDC;
    ft->bEmptyDesc = bEmptyDesc;
    
    
    // Send chain event
    szBlob = (char*)_alloca(sizeof(DWORD) + strlennull(pszFileName) + strlennull(pszDescription) + 2);
    *(PDWORD)szBlob = (DWORD)ft;
    strcpy(szBlob + sizeof(DWORD), pszFileName);
    strcpy(szBlob + sizeof(DWORD) + strlennull(pszFileName) + 1, pszDescription);
    ccs.szProtoService = PSR_FILE;
    ccs.hContact = hContact;
    ccs.wParam = 0;
    ccs.lParam = (LPARAM)&pre;
    pre.flags = 0;
    pre.timestamp = time(NULL);
    pre.szMessage = szBlob;
    pre.lParam = 0;

    CallService(MS_PROTO_CHAINRECV, 0, (LPARAM)&ccs);
  }
}



void handleDirectCancel(directconnect *dc, PBYTE buf, WORD wLen, WORD wCommand, DWORD dwCookie, WORD wMessageType, WORD wStatus, WORD wFlags, char* pszText)
{
  NetLog_Direct("handleDirectCancel: Unhandled cancel");
}



// *******************************************************************************



void icq_CancelFileTransfer(HANDLE hContact, filetransfer* ft)
{
  DWORD dwCookie;

  if (FindCookieByData(ft, &dwCookie, NULL))
    FreeCookie(dwCookie);      /* this bit stops a send that's waiting for acceptance */

  if (IsValidFileTransfer(ft))
  { // Transfer still out there, end it
    NetLib_CloseConnection(&ft->hConnection, FALSE);

    ICQBroadcastAck(ft->hContact, ACKTYPE_FILE, ACKRESULT_FAILED, ft, 0);

    if (!FindFileTransferDC(ft))
    { // Release orphan structure only
      SafeReleaseFileTransfer(&ft);
    }
  }
}