summaryrefslogtreecommitdiff
path: root/indra/llmessage/llxfer_file.cpp
blob: ad15d5969bb11f7ba5549f374976d9f45874506e (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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
/**
 * @file llxfer_file.cpp
 * @brief implementation of LLXfer_File class for a single xfer (file)
 *
 * $LicenseInfo:firstyear=2001&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include "linden_common.h"

#if !LL_WINDOWS
#include <errno.h>
#include <unistd.h>
#endif

#include "llxfer_file.h"
#include "lluuid.h"
#include "llerror.h"
#include "llmath.h"
#include "llstring.h"
#include "lldir.h"

// size of chunks read from/written to disk
const U32 LL_MAX_XFER_FILE_BUFFER = 65536;

// local function to copy a file
S32 copy_file(const std::string& from, const std::string& to);

///////////////////////////////////////////////////////////

LLXfer_File::LLXfer_File (S32 chunk_size)
: LLXfer(chunk_size)
{
    init(LLStringUtil::null, false, chunk_size);
}

LLXfer_File::LLXfer_File (const std::string& local_filename, bool delete_local_on_completion, S32 chunk_size)
: LLXfer(chunk_size)
{
    init(local_filename, delete_local_on_completion, chunk_size);
}

///////////////////////////////////////////////////////////

LLXfer_File::~LLXfer_File ()
{
    cleanup();
}

///////////////////////////////////////////////////////////

void LLXfer_File::init (const std::string& local_filename, bool delete_local_on_completion, S32 chunk_size)
{

    mFp = NULL;
    mLocalFilename.clear();
    mRemoteFilename.clear();
    mRemotePath = LL_PATH_NONE;
    mTempFilename.clear();
    mDeleteLocalOnCompletion = false;
    mDeleteRemoteOnCompletion = false;

    if (!local_filename.empty())
    {
        mLocalFilename =  local_filename.substr(0,LL_MAX_PATH-1);

        // You can only automatically delete .tmp file as a safeguard against nasty messages.
        std::string exten = mLocalFilename.substr(mLocalFilename.length()-4, 4);
        mDeleteLocalOnCompletion = (delete_local_on_completion && exten == ".tmp");
    }
}

///////////////////////////////////////////////////////////

void LLXfer_File::cleanup ()
{
    if (mFp)
    {
        fclose(mFp);
        mFp = NULL;
    }

    LLFile::remove(mTempFilename, ENOENT);

    if (mDeleteLocalOnCompletion)
    {
        LL_DEBUGS("Xfer") << "Removing file: " << mLocalFilename << LL_ENDL;
        LLFile::remove(mLocalFilename, ENOENT);
    }
    else
    {
        LL_DEBUGS("Xfer") << "Keeping local file: " << mLocalFilename << LL_ENDL;
    }

    LLXfer::cleanup();
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::initializeRequest(U64 xfer_id,
                   const std::string& local_filename,
                   const std::string& remote_filename,
                   ELLPath remote_path,
                   const LLHost& remote_host,
                   bool delete_remote_on_completion,
                   void (*callback)(void**,S32,LLExtStat),
                   void** user_data)
{
    S32 retval = 0;  // presume success

    mID = xfer_id;
    mLocalFilename = local_filename;
    mRemoteFilename = remote_filename;
    mRemotePath = remote_path;
    mRemoteHost = remote_host;
    mDeleteRemoteOnCompletion = delete_remote_on_completion;

    mTempFilename = gDirUtilp->getTempFilename();

    mCallback = callback;
    mCallbackDataHandle = user_data;
    mCallbackResult = LL_ERR_NOERR;

    LL_INFOS("Xfer") << "Requesting xfer from " << remote_host << " for file: " << mLocalFilename << LL_ENDL;

    if (mBuffer)
    {
        delete(mBuffer);
        mBuffer = NULL;
    }

    mBuffer = new char[LL_MAX_XFER_FILE_BUFFER];
    mBufferLength = 0;

    mPacketNum = 0;

    mStatus = e_LL_XFER_PENDING;
    return retval;
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::startDownload()
{
    S32 retval = 0;  // presume success
    mFp = LLFile::fopen(mTempFilename,"w+b");       /* Flawfinder : ignore */
    if (mFp)
    {
        fclose(mFp);
        mFp = NULL;

        // tbd - is it premature to send this message if the queue is backed up?
        gMessageSystem->newMessageFast(_PREHASH_RequestXfer);
        gMessageSystem->nextBlockFast(_PREHASH_XferID);
        gMessageSystem->addU64Fast(_PREHASH_ID, mID);
        gMessageSystem->addStringFast(_PREHASH_Filename, mRemoteFilename);
        gMessageSystem->addU8("FilePath", (U8) mRemotePath);
        gMessageSystem->addBOOL("DeleteOnCompletion", mDeleteRemoteOnCompletion);
        gMessageSystem->addBOOL("UseBigPackets", mChunkSize == LL_XFER_LARGE_PAYLOAD);
        gMessageSystem->addUUIDFast(_PREHASH_VFileID, LLUUID::null);
        gMessageSystem->addS16Fast(_PREHASH_VFileType, -1);

        gMessageSystem->sendReliable(mRemoteHost);
        mStatus = e_LL_XFER_IN_PROGRESS;
    }
    else
    {
        LL_WARNS("Xfer") << "Couldn't create file to be received!" << LL_ENDL;
        retval = -1;
    }

    return (retval);
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::startSend (U64 xfer_id, const LLHost &remote_host)
{
    S32 retval = LL_ERR_NOERR;  // presume success

    mRemoteHost = remote_host;
    mID = xfer_id;
    mPacketNum = -1;

//  cout << "Sending file: " << mLocalFilename << endl;

    delete [] mBuffer;
    mBuffer = new char[LL_MAX_XFER_FILE_BUFFER];

    mBufferLength = 0;
    mBufferStartOffset = 0;

    // We leave the file open, assuming we'll start reading and sending soon
    mFp = LLFile::fopen(mLocalFilename,"rb");       /* Flawfinder : ignore */
    if (mFp)
    {
        fseek(mFp,0,SEEK_END);

        S32 file_size = ftell(mFp);
        if (file_size <= 0)
        {
            return LL_ERR_FILE_EMPTY;
        }
        setXferSize(file_size);

        fseek(mFp,0,SEEK_SET);
    }
    else
    {
        LL_INFOS("Xfer") << "Warning: " << mLocalFilename << " not found." << LL_ENDL;
        return (LL_ERR_FILE_NOT_FOUND);
    }

    mStatus = e_LL_XFER_PENDING;

    return (retval);
}

///////////////////////////////////////////////////////////
void LLXfer_File::closeFileHandle()
{
    if (mFp)
    {
        fclose(mFp);
        mFp = NULL;
    }
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::reopenFileHandle()
{
    S32 retval = LL_ERR_NOERR;  // presume success

    if (mFp == NULL)
    {
        mFp = LLFile::fopen(mLocalFilename,"rb");       /* Flawfinder : ignore */
        if (mFp == NULL)
        {
            LL_INFOS("Xfer") << "Warning: " << mLocalFilename << " not found when re-opening file" << LL_ENDL;
            retval = LL_ERR_FILE_NOT_FOUND;
        }
    }

    return retval;
}


///////////////////////////////////////////////////////////

S32 LLXfer_File::getMaxBufferSize ()
{
    return(LL_MAX_XFER_FILE_BUFFER);
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::suck(S32 start_position)
{
    S32 retval = 0;

    if (mFp)
    {
        // grab a buffer from the right place in the file
        fseek (mFp,start_position,SEEK_SET);

        mBufferLength = (U32)fread(mBuffer,1,LL_MAX_XFER_FILE_BUFFER,mFp);
        mBufferStartOffset = start_position;

        if (feof(mFp))
        {
            mBufferContainsEOF = true;
        }
        else
        {
            mBufferContainsEOF = false;
        }
    }
    else
    {
        retval = -1;
    }

    return (retval);
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::flush()
{
    S32 retval = 0;
    if (mBufferLength)
    {
        if (mFp)
        {
            LL_ERRS("Xfer") << "Overwriting open file pointer!" << LL_ENDL;
        }
        mFp = LLFile::fopen(mTempFilename,"a+b");       /* Flawfinder : ignore */

        if (mFp)
        {
            S32 write_size = fwrite(mBuffer,1,mBufferLength,mFp);
            if (write_size != mBufferLength)
            {
                LL_WARNS("Xfer") << "Non-matching write size, requested " << mBufferLength
                    << " but wrote " << write_size
                    << LL_ENDL;
            }

//          LL_INFOS("Xfer") << "******* wrote " << mBufferLength << " bytes of file xfer" << LL_ENDL;
            fclose(mFp);
            mFp = NULL;

            mBufferLength = 0;
        }
        else
        {
            LL_WARNS("Xfer") << "LLXfer_File::flush() unable to open " << mTempFilename << " for writing!" << LL_ENDL;
            retval = LL_ERR_CANNOT_OPEN_FILE;
        }
    }
    return (retval);
}

///////////////////////////////////////////////////////////

S32 LLXfer_File::processEOF()
{
    S32 retval = 0;
    mStatus = e_LL_XFER_COMPLETE;

    S32 flushval = flush();

    // If we have no other errors, our error becomes the error generated by
    // flush.
    if (!mCallbackResult)
    {
        mCallbackResult = flushval;
    }

    LLFile::remove(mLocalFilename, ENOENT);

    if (!mCallbackResult)
    {
        if (LLFile::rename(mTempFilename,mLocalFilename))
        {
#if !LL_WINDOWS
            S32 error_number = errno;
            LL_INFOS("Xfer") << "Rename failure (" << error_number << ") - "
                    << mTempFilename << " to " << mLocalFilename << LL_ENDL;
            if(EXDEV == error_number)
            {
                if(copy_file(mTempFilename, mLocalFilename) == 0)
                {
                    LL_INFOS("Xfer") << "Rename across mounts; copying+unlinking the file instead." << LL_ENDL;
                    unlink(mTempFilename.c_str());
                }
                else
                {
                    LL_WARNS("Xfer") << "Copy failure - " << mTempFilename << " to "
                            << mLocalFilename << LL_ENDL;
                }
            }
            else
            {
                //LLFILE* fp = LLFile::fopen(mTempFilename, "r");
                //LL_WARNS() << "File " << mTempFilename << " does "
                //      << (!fp ? "not" : "" ) << " exit." << LL_ENDL;
                //if(fp) fclose(fp);
                //fp = LLFile::fopen(mLocalFilename, "r");
                //LL_WARNS() << "File " << mLocalFilename << " does "
                //      << (!fp ? "not" : "" ) << " exit." << LL_ENDL;
                //if(fp) fclose(fp);
                LL_WARNS("Xfer") << "Rename fatally failed, can only handle EXDEV ("
                        << EXDEV << ")" << LL_ENDL;
            }
#else
            LL_WARNS("Xfer") << "Rename failure - " << mTempFilename << " to "
                    << mLocalFilename << LL_ENDL;
#endif
        }
    }

    if (mFp)
    {
        fclose(mFp);
        mFp = NULL;
    }

    retval = LLXfer::processEOF();

    return(retval);
}

///////////////////////////////////////////////////////////

bool LLXfer_File::matchesLocalFilename(const std::string& filename)
{
    return (filename == mLocalFilename);
}

///////////////////////////////////////////////////////////

bool LLXfer_File::matchesRemoteFilename(const std::string& filename, ELLPath remote_path)
{
    return ((filename == mRemoteFilename) && (remote_path == mRemotePath));
}


///////////////////////////////////////////////////////////

std::string LLXfer_File::getFileName()
{
    return mLocalFilename;
}

///////////////////////////////////////////////////////////

// hacky - doesn't matter what this is
// as long as it's different from the other classes
U32 LLXfer_File::getXferTypeTag()
{
    return LLXfer::XFER_FILE;
}

///////////////////////////////////////////////////////////

#if !LL_WINDOWS

// This is really close to, but not quite a general purpose copy
// function. It does not really spam enough information, but is useful
// for this cpp file, because this should never be called in a
// production environment.
S32 copy_file(const std::string& from, const std::string& to)
{
    S32 rv = 0;
    LLFILE* in = LLFile::fopen(from, "rb"); /*Flawfinder: ignore*/
    LLFILE* out = LLFile::fopen(to, "wb");  /*Flawfinder: ignore*/
    if(in && out)
    {
        S32 read = 0;
        const S32 COPY_BUFFER_SIZE = 16384;
        U8 buffer[COPY_BUFFER_SIZE];
        while(((read = fread(buffer, 1, sizeof(buffer), in)) > 0)
              && (fwrite(buffer, 1, read, out) == (U32)read));      /* Flawfinder : ignore */
        if(ferror(in) || ferror(out)) rv = -2;
    }
    else
    {
        rv = -1;
    }
    if(in) fclose(in);
    if(out) fclose(out);
    return rv;
}
#endif