Squid Web Cache master
Loading...
Searching...
No Matches
FtpServer.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2026 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 33 Transfer protocol servers */
10
11#include "squid.h"
12#include "acl/FilledChecklist.h"
13#include "base/CharacterSet.h"
14#include "base/Raw.h"
15#include "base/RefCount.h"
16#include "base/Subscription.h"
17#include "client_side_reply.h"
18#include "client_side_request.h"
19#include "clientStream.h"
20#include "comm/ConnOpener.h"
21#include "comm/Read.h"
22#include "comm/TcpAcceptor.h"
23#include "comm/Write.h"
24#include "errorpage.h"
25#include "fd.h"
26#include "ftp/Elements.h"
27#include "ftp/Parsing.h"
28#include "globals.h"
30#include "http/Stream.h"
31#include "HttpHdrCc.h"
32#include "ip/tools.h"
33#include "ipc/FdNotes.h"
34#include "parser/Tokenizer.h"
35#include "servers/forward.h"
36#include "servers/FtpServer.h"
37#include "SquidConfig.h"
38#include "StatCounters.h"
39#include "tools.h"
40
41#include <set>
42#include <map>
43
45
46namespace Ftp
47{
48static void PrintReply(MemBuf &mb, const HttpReply *reply, const char *const prefix = "");
49static bool SupportedCommand(const SBuf &name);
50static bool CommandHasPathParameter(const SBuf &cmd);
51};
52
54 AsyncJob("Ftp::Server"),
55 ConnStateData(xact),
56 master(new MasterState),
57 uri(),
58 host(),
59 gotEpsvAll(false),
60 onDataAcceptCall(),
61 dataListenConn(),
62 dataConn(),
63 uploadAvailSize(0),
64 listener(),
65 dataConnWait(),
66 reader(),
67 waitingForOrigin(false),
68 originDataDownloadAbortedOnError(false)
69{
70 flags.readMore = false; // we need to announce ourselves first
71 *uploadBuf = 0;
72}
73
75{
76 closeDataConnection();
77}
78
79int
81{
82 return 0; // no support for concurrent FTP requests
83}
84
85time_t
90
91void
93{
95
96 if (transparent()) {
97 char buf[MAX_IPSTRLEN];
98 clientConnection->local.toUrl(buf, MAX_IPSTRLEN);
99 host = buf;
100 calcUri(nullptr);
101 debugs(33, 5, "FTP transparent URL: " << uri);
102 }
103
104 writeEarlyReply(220, "Service ready");
105}
106
108void
110{
111 if (reader != nullptr)
112 return;
113
114 const size_t availSpace = sizeof(uploadBuf) - uploadAvailSize;
115 if (availSpace <= 0)
116 return;
117
118 debugs(33, 4, dataConn << ": reading FTP data...");
119
121 reader = JobCallback(33, 5, Dialer, this, Ftp::Server::readUploadData);
122 comm_read(dataConn, uploadBuf + uploadAvailSize, availSpace,
123 reader);
124}
125
127void
129{
130 // zero pipelinePrefetchMax() ensures that there is only parsed request
131 Must(pipeline.count() == 1);
132 Http::StreamPointer context = pipeline.front();
133 Must(context != nullptr);
134
135 ClientHttpRequest *const http = context->http;
136 assert(http != nullptr);
137
138 HttpRequest *const request = http->request;
139 Must(http->storeEntry() || request);
140 const bool mayForward = !http->storeEntry() && handleRequest(request);
141
142 if (http->storeEntry() != nullptr) {
143 debugs(33, 4, "got an immediate response");
145 context->pullData();
146 } else if (mayForward) {
147 debugs(33, 4, "forwarding request to server side");
148 assert(http->storeEntry() == nullptr);
150 } else {
151 debugs(33, 4, "will resume processing later");
152 }
153}
154
155void
157{
158 Must(pipeline.count() == 1);
159
160 // Process FTP request asynchronously to make sure FTP
161 // data connection accept callback is fired first.
162 CallJobHere(33, 4, CbcPointer<Server>(this),
163 Ftp::Server, doProcessRequest);
164}
165
167void
169{
170 debugs(33, 5, io.conn << " size " << io.size);
171 Must(reader != nullptr);
172 reader = nullptr;
173
174 assert(Comm::IsConnOpen(dataConn));
175 assert(io.conn->fd == dataConn->fd);
176
177 if (io.flag == Comm::OK && bodyPipe != nullptr) {
178 if (io.size > 0) {
180
181 char *const current_buf = uploadBuf + uploadAvailSize;
182 if (io.buf != current_buf)
183 memmove(current_buf, io.buf, io.size);
184 uploadAvailSize += io.size;
185 shovelUploadData();
186 } else if (io.size == 0) {
187 debugs(33, 5, io.conn << " closed");
188 closeDataConnection();
189 if (uploadAvailSize <= 0)
190 finishDechunkingRequest(true);
191 }
192 } else { // not Comm::Flags::OK or unexpected read
193 debugs(33, 5, io.conn << " closed");
194 closeDataConnection();
195 finishDechunkingRequest(false);
196 }
197
198}
199
201void
203{
204 assert(bodyPipe != nullptr);
205
206 debugs(33, 5, "handling FTP request data for " << clientConnection);
207 const size_t putSize = bodyPipe->putMoreData(uploadBuf,
208 uploadAvailSize);
209 if (putSize > 0) {
210 uploadAvailSize -= putSize;
211 if (uploadAvailSize > 0)
212 memmove(uploadBuf, uploadBuf + putSize, uploadAvailSize);
213 }
214
215 if (Comm::IsConnOpen(dataConn))
216 maybeReadUploadData();
217 else if (uploadAvailSize <= 0)
218 finishDechunkingRequest(true);
219}
220
221void
223{
224 if (!isOpen()) // if we are closing, nothing to do
225 return;
226
227 shovelUploadData();
228}
229
230void
232{
233 if (!isOpen()) // if we are closing, nothing to do
234 return;
235
237 closeDataConnection();
238}
239
241void
243{
244 Assure(params.port);
245
246 // NP: it is possible the port was reconfigured when the call or accept() was queued.
247
248 if (params.flag != Comm::OK) {
249 // Its possible the call was still queued when the client disconnected
250 debugs(33, 2, params.port->listenConn << ": FTP accept failure: " << xstrerr(params.xerrno));
251 return;
252 }
253
254 debugs(33, 4, params.conn << ": accepted");
255 fd_note(params.conn->fd, "client ftp connect");
256
257 const auto xact = MasterXaction::MakePortful(params.port);
258 xact->tcpClient = params.conn;
259
260 AsyncJob::Start(new Server(xact));
261 // XXX: do not abandon the MasterXaction object
262}
263
264void
266{
267 const auto savedContext = CodeContext::Current();
268 for (AnyP::PortCfgPointer s = FtpPortList; s != nullptr; s = s->next) {
271 debugs(1, DBG_IMPORTANT, "Ignoring ftp_port lines exceeding the" <<
272 " limit of " << MAXTCPLISTENPORTS << " ports.");
273 break;
274 }
275
276 // direct new connections accepted by listenConn to Accept()
277 typedef CommCbFunPtrCallT<CommAcceptCbPtrFun> AcceptCall;
278 RefCount<AcceptCall> subCall = commCbCall(5, 5, "Ftp::Server::AcceptCtrlConnection",
280 CommAcceptCbParams(nullptr)));
282 }
283 CodeContext::Reset(savedContext);
284}
285
286void
288{
289 const auto savedContext = CodeContext::Current();
290 for (AnyP::PortCfgPointer s = FtpPortList; s != nullptr; s = s->next) {
292 if (s->listenConn != nullptr) {
293 debugs(1, DBG_IMPORTANT, "Closing FTP port " << s->listenConn->local);
294 s->listenConn->close();
295 s->listenConn = nullptr;
296 }
297 }
298 CodeContext::Reset(savedContext);
299}
300
301void
303{
304 // find request
305 Http::StreamPointer context = pipeline.front();
306 Must(context != nullptr);
307 ClientHttpRequest *const http = context->http;
308 Must(http != nullptr);
309 HttpRequest *const request = http->request;
310 Must(request != nullptr);
311 // make FTP peer connection exclusive to our request
312 pinBusyConnection(conn, request);
313}
314
315void
317{
319
320 // TODO: Keep the control connection open after fixing the reset
321 // problem below
322 if (Comm::IsConnOpen(clientConnection))
323 clientConnection->close();
324
325 // TODO: If the server control connection is gone, reset state to login
326 // again. Resetting login alone is not enough: FtpRelay::sendCommand() will
327 // not re-login because FtpRelay::serverState() is not going to be
328 // fssConnected. Calling resetLogin() alone is also harmful because
329 // it does not reset correctly the client-to-squid control connection (eg
330 // respond if required with an error code, in all cases)
331 // resetLogin("control connection closure");
332}
333
335void
336Ftp::Server::resetLogin(const char *reason)
337{
338 debugs(33, 5, "will need to re-login due to " << reason);
339 master->clientReadGreeting = false;
340 changeState(fssBegin, reason);
341}
342
344void
346{
347 // TODO: fill a class AnyP::Uri instead of string
348 uri = "ftp://";
349 uri.append(host);
350 if (port->ftp_track_dirs && master->workingDir.length()) {
351 if (master->workingDir[0] != '/')
352 uri.append("/", 1);
353 uri.append(master->workingDir);
354 }
355
356 if (uri[uri.length() - 1] != '/')
357 uri.append("/", 1);
358
359 if (port->ftp_track_dirs && file) {
360 static const CharacterSet Slash("/", "/");
361 Parser::Tokenizer tok(*file);
362 tok.skipAll(Slash);
363 uri.append(tok.remaining());
364 }
365}
366
369unsigned int
371{
372 closeDataConnection();
373
375 conn->flags = COMM_NONBLOCKING;
376 conn->local = transparent() ? port->s : clientConnection->local;
377 conn->local.port(0);
378 const char *const note = uri.c_str();
379 comm_open_listener(SOCK_STREAM, IPPROTO_TCP, conn, note);
380 if (!Comm::IsConnOpen(conn)) {
381 debugs(5, DBG_CRITICAL, "ERROR: comm_open_listener failed for FTP data: " <<
382 conn->local << " error: " << errno);
383 writeCustomReply(451, "Internal error");
384 return 0;
385 }
386
388 typedef AsyncCallT<AcceptDialer> AcceptCall;
389 const auto call = JobCallback(5, 5, AcceptDialer, this, Ftp::Server::acceptDataConnection);
391 listener = call.getRaw();
392 dataListenConn = conn;
393 AsyncJob::Start(new Comm::TcpAcceptor(conn, note, sub));
394
395 const unsigned int listeningPort = comm_local_port(conn->fd);
396 conn->local.port(listeningPort);
397 return listeningPort;
398}
399
400void
402{
403 if (params.flag != Comm::OK) {
404 // Its possible the call was still queued when the client disconnected
405 debugs(33, 2, dataListenConn << ": accept "
406 "failure: " << xstrerr(params.xerrno));
407 return;
408 }
409
410 debugs(33, 4, "accepted " << params.conn);
411 fd_note(params.conn->fd, "passive client ftp data");
412
413 if (!clientConnection) {
414 debugs(33, 5, "late data connection?");
415 closeDataConnection(); // in case we are still listening
416 params.conn->close();
417 } else if (params.conn->remote != clientConnection->remote) {
418 debugs(33, 2, "rogue data conn? ctrl: " << clientConnection->remote);
419 params.conn->close();
420 // Some FTP servers close control connection here, but it may make
421 // things worse from DoS p.o.v. and no better from data stealing p.o.v.
422 } else {
423 closeDataConnection();
424 dataConn = params.conn;
425 dataConn->leaveOrphanage();
426 uploadAvailSize = 0;
427 debugs(33, 7, "ready for data");
428 if (onDataAcceptCall != nullptr) {
429 AsyncCall::Pointer call = onDataAcceptCall;
430 onDataAcceptCall = nullptr;
431 // If we got an upload request, start reading data from the client.
432 if (master->serverState == fssHandleUploadRequest)
433 maybeReadUploadData();
434 else
435 Must(master->serverState == fssHandleDataRequest);
436 MemBuf mb;
437 mb.init();
438 mb.appendf("150 Data connection opened.\r\n");
439 Comm::Write(clientConnection, &mb, call);
440 }
441 }
442}
443
444void
446{
447 if (listener != nullptr) {
448 listener->cancel("no longer needed");
449 listener = nullptr;
450 }
451
452 if (Comm::IsConnOpen(dataListenConn)) {
453 debugs(33, 5, "FTP closing client data listen socket: " <<
454 *dataListenConn);
455 dataListenConn->close();
456 }
457 dataListenConn = nullptr;
458
459 if (reader != nullptr) {
460 // Comm::ReadCancel can deal with negative FDs
461 Comm::ReadCancel(dataConn->fd, reader);
462 reader = nullptr;
463 }
464
465 if (Comm::IsConnOpen(dataConn)) {
466 debugs(33, 5, "FTP closing client data connection: " <<
467 *dataConn);
468 dataConn->close();
469 }
470 dataConn = nullptr;
471}
472
475void
476Ftp::Server::writeEarlyReply(const int code, const char *msg)
477{
478 debugs(33, 7, code << ' ' << msg);
479 assert(99 < code && code < 1000);
480
481 MemBuf mb;
482 mb.init();
483 mb.appendf("%i %s\r\n", code, msg);
484
487 Comm::Write(clientConnection, &mb, call);
488
489 flags.readMore = false;
490
491 // TODO: Create master transaction. Log it in wroteEarlyReply().
492}
493
494void
496{
497 debugs(9, 2, "FTP Client " << clientConnection);
498 debugs(9, 2, "FTP Client REPLY:\n---------\n" << mb.buf <<
499 "\n----------");
500
502 AsyncCall::Pointer call = JobCallback(33, 5, Dialer, this, Ftp::Server::wroteReply);
503 Comm::Write(clientConnection, &mb, call);
504}
505
506void
507Ftp::Server::writeCustomReply(const int code, const char *msg, const HttpReply *reply)
508{
509 debugs(33, 7, code << ' ' << msg);
510 assert(99 < code && code < 1000);
511
512 const bool sendDetails = reply != nullptr &&
514
515 MemBuf mb;
516 mb.init();
517 if (sendDetails) {
518 mb.appendf("%i-%s\r\n", code, msg);
519 mb.appendf(" Server reply:\r\n");
520 Ftp::PrintReply(mb, reply, " ");
521 mb.appendf("%i \r\n", code);
522 } else
523 mb.appendf("%i %s\r\n", code, msg);
524
525 writeReply(mb);
526}
527
528void
529Ftp::Server::changeState(const ServerState newState, const char *reason)
530{
531 if (master->serverState == newState) {
532 debugs(33, 3, "client state unchanged at " << master->serverState <<
533 " because " << reason);
534 master->serverState = newState;
535 } else {
536 debugs(33, 3, "client state was " << master->serverState <<
537 ", now " << newState << " because " << reason);
538 master->serverState = newState;
539 }
540}
541
543static bool
545{
546 static std::set<SBuf> PathedCommands;
547 if (!PathedCommands.size()) {
548 PathedCommands.insert(cmdMlst());
549 PathedCommands.insert(cmdMlsd());
550 PathedCommands.insert(cmdStat());
551 PathedCommands.insert(cmdNlst());
552 PathedCommands.insert(cmdList());
553 PathedCommands.insert(cmdMkd());
554 PathedCommands.insert(cmdRmd());
555 PathedCommands.insert(cmdDele());
556 PathedCommands.insert(cmdRnto());
557 PathedCommands.insert(cmdRnfr());
558 PathedCommands.insert(cmdAppe());
559 PathedCommands.insert(cmdStor());
560 PathedCommands.insert(cmdRetr());
561 PathedCommands.insert(cmdSmnt());
562 PathedCommands.insert(cmdCwd());
563 }
564
565 return PathedCommands.find(cmd) != PathedCommands.end();
566}
567
571{
572 /* Default values, to be updated by the switch statement below */
573 int scode = 421;
574 const char *reason = "Internal error";
575 const char *errUri = "error:ftp-internal-early-error";
576
577 switch (eek) {
578 case EarlyErrorKind::HugeRequest:
579 scode = 421;
580 reason = "Huge request";
581 errUri = "error:ftp-huge-request";
582 break;
583
584 case EarlyErrorKind::MissingLogin:
585 scode = 530;
586 reason = "Must login first";
587 errUri = "error:ftp-must-login-first";
588 break;
589
590 case EarlyErrorKind::MissingUsername:
591 scode = 501;
592 reason = "Missing username";
593 errUri = "error:ftp-missing-username";
594 break;
595
596 case EarlyErrorKind::MissingHost:
597 scode = 501;
598 reason = "Missing host";
599 errUri = "error:ftp-missing-host";
600 break;
601
602 case EarlyErrorKind::UnsupportedCommand:
603 scode = 502;
604 reason = "Unknown or unsupported command";
605 errUri = "error:ftp-unsupported-command";
606 break;
607
608 case EarlyErrorKind::InvalidUri:
609 scode = 501;
610 reason = "Invalid URI";
611 errUri = "error:ftp-invalid-uri";
612 break;
613
614 case EarlyErrorKind::MalformedCommand:
615 scode = 421;
616 reason = "Malformed command";
617 errUri = "error:ftp-malformed-command";
618 break;
619
620 // no default so that a compiler can check that we have covered all cases
621 }
622
623 Http::Stream *context = abortRequestParsing(errUri);
625 Must(node);
626 clientReplyContext *repContext = dynamic_cast<clientReplyContext *>(node->data.getRaw());
627 Must(repContext);
628
629 // We cannot relay FTP scode/reason via HTTP-specific ErrorState.
630 // TODO: When/if ErrorState can handle native FTP errors, use it instead.
631 HttpReply *reply = Ftp::HttpReplyWrapper(scode, reason, Http::scBadRequest, -1);
632 repContext->setReplyToReply(reply);
633 return context;
634}
635
641{
642 flags.readMore = false; // common for all but one case below
643
644 // FTP command syntax is specified in RFC 959 Section 5.3. We generalize
645 // that grammar to parse all commands using the same code. We also relax the
646 // rules a little in hope to accommodate more real world use cases:
647 // * We allow ASCII HT, VT, and NP characters in various delimiters (in addition to SP).
648 // * We allow zero or more CR characters in command terminator (instead of exactly one).
649 // * We allow space characters before any command.
650 //
651 // command = BWS code [ RWS parameter ] OWS *CR LF
652 // code = 1*code_char
653 // parameter = 1*parameter_char ; without leading and trailing inner_space_chars
654 // code_char = ; any ASCII character other than space_char
655 // parameter_char = ; any ASCII character other than CR or LF
656 // BWS = 0*space_char ; optional "bad" space before the command code
657 // RWS = 1*inner_space_char ; required space before the command parameter
658 // OWS = 0*inner_space_char ; optional space after the command parameter
659 // inner_space_char = SP / HT / VT / NP ; space_char without CR and LF
660 // space_char = SP / HT / VT / NP / CR / LF; any isspace(3) character in "C" locale
661
662 static const auto InlineSpaceChars = " \f\t\v";
663 static const CharacterSet InlineSpace = CharacterSet("Ftp::Inline", InlineSpaceChars);
664 static const CharacterSet CrLfChars = (CharacterSet::CR + CharacterSet::LF).rename("CRLF");
665 static const CharacterSet FullWhiteSpace = (InlineSpace + CrLfChars).rename("Ftp::FWS");
666 static const CharacterSet CommandChars = FullWhiteSpace.complement("Ftp::Command");
667 // RFC 959 Section 5.3.2 excludes both CR and LF from <char> and <pr-char> definitions
668 static const CharacterSet TailChars = CrLfChars.complement("Ftp::Tail");
669
670 // This set is used to ignore empty commands without allowing an attacker
671 // to keep us endlessly busy by feeding us whitespace or empty commands.
672 static const CharacterSet &LeadingSpace = FullWhiteSpace;
673
674 SBuf cmd;
675 SBuf params;
676
677 Parser::Tokenizer tok(inBuf);
678
679 (void)tok.skipAll(LeadingSpace); // leading OWS and empty commands
680 const bool parsed = tok.prefix(cmd, CommandChars); // required command
681
682 // note that the condition below eats leading RWS and trailing OWS, if any
683 if (parsed && tok.skipAll(InlineSpace) && tok.prefix(params, TailChars)) {
684 // now params may include trailing OWS
685 // TODO: Support right-trimming using CharacterSet in Tokenizer instead
686 static const SBuf bufWhiteSpace(InlineSpaceChars);
687 params.trim(bufWhiteSpace, false, true);
688 }
689
690 const auto tokenMax = min(
693 if (cmd.length() > tokenMax || params.length() > tokenMax) {
694 changeState(fssError, "huge req token");
695 quitAfterError(nullptr);
696 return earlyError(EarlyErrorKind::HugeRequest);
697 }
698
699 if (parsed)
700 (void)tok.skipAll(CharacterSet::CR);
701
702 // technically, we may skip multiple NLs below, but that is OK
703 if (!parsed || !tok.skipAll(CharacterSet::LF)) { // did not find terminating LF yet
704
705 if (!tok.remaining().isEmpty()) {
706 // We always consume all valid input, so any leftovers imply that we
707 // found something that we cannot parse now and will never parse if
708 // more input becomes available later (e.g., `PWD\rQUIT\n`).
709 changeState(fssError, "bad FTP command syntax");
710 quitAfterError(nullptr);
711 return earlyError(EarlyErrorKind::MalformedCommand);
712 }
713
714 // we need more data, but can we buffer more?
715 if (inBuf.length() >= Config.maxRequestHeaderSize) {
716 changeState(fssError, "huge req");
717 quitAfterError(nullptr);
718 return earlyError(EarlyErrorKind::HugeRequest);
719 } else {
720 flags.readMore = true;
721 debugs(33, 5, "Waiting for more, up to " <<
722 (Config.maxRequestHeaderSize - inBuf.length()));
723 return nullptr;
724 }
725 }
726
727 Must(parsed && cmd.length());
728 consumeInput(tok.parsedSize()); // TODO: Would delaying optimize copying?
729
730 debugs(33, 2, ">>ftp " << cmd << (params.isEmpty() ? "" : " ") << params);
731
732 cmd.toUpper(); // this should speed up and simplify future comparisons
733
734 // interception cases do not need USER to calculate the uri
735 if (!transparent()) {
736 if (!master->clientReadGreeting) {
737 // the first command must be USER
738 if (!pinning.pinned && cmd != cmdUser())
739 return earlyError(EarlyErrorKind::MissingLogin);
740 }
741
742 // process USER request now because it sets FTP peer host name
743 if (cmd == cmdUser()) {
744 if (Http::Stream *errCtx = handleUserRequest(cmd, params))
745 return errCtx;
746 }
747 }
748
749 if (!Ftp::SupportedCommand(cmd))
750 return earlyError(EarlyErrorKind::UnsupportedCommand);
751
752 const HttpRequestMethod method =
753 cmd == cmdAppe() || cmd == cmdStor() || cmd == cmdStou() ?
755
756 const SBuf *path = (params.length() && CommandHasPathParameter(cmd)) ?
757 &params : nullptr;
758 calcUri(path);
759 const auto mx = MasterXaction::MakePortful(port);
760 mx->tcpClient = clientConnection;
761 auto * const request = HttpRequest::FromUrl(uri, mx, method);
762 if (!request) {
763 debugs(33, 5, "Invalid FTP URL: " << uri);
764 uri.clear();
765 return earlyError(EarlyErrorKind::InvalidUri);
766 }
767 char *newUri = xstrdup(uri.c_str());
768
769 request->flags.ftpNative = true;
770 request->http_ver = Http::ProtocolVersion(Ftp::ProtocolVersion().major, Ftp::ProtocolVersion().minor);
771
772 // Our fake Request-URIs are not distinctive enough for caching to work
773 request->flags.disableCacheUse("FTP command wrapper");
774
775 request->header.putStr(Http::HdrType::FTP_COMMAND, cmd.c_str());
776 request->header.putStr(Http::HdrType::FTP_ARGUMENTS, params.c_str()); // may be ""
777 if (method == Http::METHOD_PUT) {
778 request->header.putStr(Http::HdrType::EXPECT, "100-continue");
779 request->header.putStr(Http::HdrType::TRANSFER_ENCODING, "chunked");
780 }
781
782 ClientHttpRequest *const http = new ClientHttpRequest(this);
783 http->req_sz = tok.parsedSize();
784 http->uri = newUri;
785 http->initRequest(request);
786
787 Http::Stream *const result =
788 new Http::Stream(clientConnection, http);
789
790 StoreIOBuffer tempBuffer;
791 tempBuffer.data = result->reqbuf;
792 tempBuffer.length = HTTP_REQBUF_SZ;
793
794 ClientStreamData newServer = new clientReplyContext(http);
795 ClientStreamData newClient = result;
798 clientSocketDetach, newClient, tempBuffer);
799
800 result->flags.parsed_ok = 1;
801 return result;
802}
803
804void
806{
807 // the caller guarantees that we are dealing with the current context only
808 Http::StreamPointer context = pipeline.front();
809 assert(context != nullptr);
810
811 static ReplyHandler handlers[] = {
812 nullptr, // fssBegin
813 nullptr, // fssConnected
814 &Ftp::Server::handleFeatReply, // fssHandleFeat
815 &Ftp::Server::handlePasvReply, // fssHandlePasv
816 &Ftp::Server::handlePortReply, // fssHandlePort
817 &Ftp::Server::handleDataReply, // fssHandleDataRequest
818 &Ftp::Server::handleUploadReply, // fssHandleUploadRequest
819 &Ftp::Server::handleEprtReply,// fssHandleEprt
820 &Ftp::Server::handleEpsvReply,// fssHandleEpsv
821 nullptr, // fssHandleCwd
822 nullptr, // fssHandlePass
823 nullptr, // fssHandleCdup
825 };
826 try {
827 const Server &server = dynamic_cast<const Ftp::Server&>(*context->getConn());
828 if (const ReplyHandler handler = handlers[server.master->serverState])
829 (this->*handler)(reply, data);
830 else
831 writeForwardedReply(reply);
832 } catch (const std::exception &e) {
833 callException(e);
834 throw TexcHere(e.what());
835 }
836}
837
838void
840{
841 if (pipeline.front()->http->request->error) {
842 writeCustomReply(502, "Server does not support FEAT", reply);
843 return;
844 }
845
846 Must(reply);
848 HttpHeader const &serverReplyHeader = reply->header;
849
851 bool hasEPRT = false;
852 bool hasEPSV = false;
853 int prependSpaces = 1;
854
855 featReply->header.putStr(Http::HdrType::FTP_PRE, "\"211-Features:\"");
856 const int scode = serverReplyHeader.getInt(Http::HdrType::FTP_STATUS);
857 if (scode == 211) {
858 while (const HttpHeaderEntry *e = serverReplyHeader.getEntry(&pos)) {
859 if (e->id == Http::HdrType::FTP_PRE) {
860 // assume RFC 2389 FEAT response format, quoted by Squid:
861 // <"> SP NAME [SP PARAMS] <">
862 // but accommodate MS servers sending four SPs before NAME
863
864 // command name ends with (SP parameter) or quote
865 static const CharacterSet AfterFeatNameChars("AfterFeatName", " \"");
866 static const CharacterSet FeatNameChars = AfterFeatNameChars.complement("FeatName");
867
868 Parser::Tokenizer tok(SBuf(e->value.termedBuf()));
869 if (!tok.skip('"') || !tok.skip(' '))
870 continue;
871
872 // optional spaces; remember their number to accommodate MS servers
873 prependSpaces = 1 + tok.skipAll(CharacterSet::SP);
874
875 SBuf cmd;
876 if (!tok.prefix(cmd, FeatNameChars))
877 continue;
878 cmd.toUpper();
879
880 if (Ftp::SupportedCommand(cmd)) {
881 featReply->header.addEntry(e->clone());
882 }
883
884 if (cmd == cmdEprt())
885 hasEPRT = true;
886 else if (cmd == cmdEpsv())
887 hasEPSV = true;
888 }
889 }
890 } // else we got a FEAT error and will only report Squid-supported features
891
892 char buf[256];
893 if (!hasEPRT) {
894 snprintf(buf, sizeof(buf), "\"%*s\"", prependSpaces + 4, "EPRT");
895 featReply->header.putStr(Http::HdrType::FTP_PRE, buf);
896 }
897 if (!hasEPSV) {
898 snprintf(buf, sizeof(buf), "\"%*s\"", prependSpaces + 4, "EPSV");
899 featReply->header.putStr(Http::HdrType::FTP_PRE, buf);
900 }
901
902 featReply->header.refreshMask();
903
904 writeForwardedReply(featReply.getRaw());
905}
906
907void
909{
910 const Http::StreamPointer context(pipeline.front());
911 assert(context != nullptr);
912
913 if (context->http->request->error) {
914 writeCustomReply(502, "Server does not support PASV", reply);
915 return;
916 }
917
918 const unsigned short localPort = listenForDataConnection();
919 if (!localPort)
920 return;
921
922 char addr[MAX_IPSTRLEN];
923 // remote server in interception setups and local address otherwise
924 const Ip::Address &server = transparent() ?
925 clientConnection->local : dataListenConn->local;
926 server.toStr(addr, MAX_IPSTRLEN, AF_INET);
927 addr[MAX_IPSTRLEN - 1] = '\0';
928 for (char *c = addr; *c != '\0'; ++c) {
929 if (*c == '.')
930 *c = ',';
931 }
932
933 // In interception setups, we combine remote server address with a
934 // local port number and hope that traffic will be redirected to us.
935 // Do not use "227 =a,b,c,d,p1,p2" format or omit parens: some nf_ct_ftp
936 // versions block responses that use those alternative syntax rules!
937 MemBuf mb;
938 mb.init();
939 mb.appendf("227 Entering Passive Mode (%s,%i,%i).\r\n",
940 addr,
941 static_cast<int>(localPort / 256),
942 static_cast<int>(localPort % 256));
943 debugs(9, 3, Raw("writing", mb.buf, mb.size));
944 writeReply(mb);
945}
946
947void
949{
950 if (pipeline.front()->http->request->error) {
951 writeCustomReply(502, "Server does not support PASV (converted from PORT)", reply);
952 return;
953 }
954
955 writeCustomReply(200, "PORT successfully converted to PASV.");
956
957 // and wait for RETR
958}
959
960void
962{
963 if (!pinning.pinned) // we failed to connect to server
964 uri.clear();
965 // 421: we will close due to fssError
966 writeErrorReply(reply, 421);
967}
968
969void
971{
972 if (reply != nullptr && reply->sline.status() != Http::scOkay) {
973 writeForwardedReply(reply);
974 if (Comm::IsConnOpen(dataConn)) {
975 debugs(33, 3, "closing " << dataConn << " on KO reply");
976 closeDataConnection();
977 }
978 return;
979 }
980
981 if (!dataConn) {
982 // We got STREAM_COMPLETE (or error) and closed the client data conn.
983 debugs(33, 3, "ignoring FTP srv data response after clt data closure");
984 return;
985 }
986
987 if (!checkDataConnPost()) {
988 writeCustomReply(425, "Data connection is not established.");
989 closeDataConnection();
990 return;
991 }
992
993 debugs(33, 7, data.length);
994
995 if (data.length <= 0) {
996 replyDataWritingCheckpoint(); // skip the actual write call
997 return;
998 }
999
1000 MemBuf mb;
1001 mb.init(data.length + 1, data.length + 1);
1002 mb.append(data.data, data.length);
1003
1005 AsyncCall::Pointer call = JobCallback(33, 5, Dialer, this, Ftp::Server::wroteReplyData);
1006 Comm::Write(dataConn, &mb, call);
1007
1008 pipeline.front()->noteSentBodyBytes(data.length);
1009}
1010
1012void
1014{
1015 if (io.flag == Comm::ERR_CLOSING)
1016 return;
1017
1018 if (io.flag != Comm::OK) {
1019 debugs(33, 3, "FTP reply data writing failed: " << xstrerr(io.xerrno));
1020 userDataCompletionCheckpoint(426);
1021 return;
1022 }
1023
1024 assert(pipeline.front()->http);
1025 pipeline.front()->http->out.size += io.size;
1026 replyDataWritingCheckpoint();
1027}
1028
1030void
1032{
1033 switch (pipeline.front()->socketState()) {
1034 case STREAM_NONE:
1035 debugs(33, 3, "Keep going");
1036 pipeline.front()->pullData();
1037 return;
1038 case STREAM_COMPLETE:
1039 debugs(33, 3, "FTP reply data transfer successfully complete");
1040 userDataCompletionCheckpoint(226);
1041 break;
1043 debugs(33, 3, "FTP reply data transfer failed: STREAM_UNPLANNED_COMPLETE");
1044 userDataCompletionCheckpoint(451);
1045 break;
1046 case STREAM_FAILED:
1047 userDataCompletionCheckpoint(451);
1048 debugs(33, 3, "FTP reply data transfer failed: STREAM_FAILED");
1049 break;
1050 default:
1051 fatal("unreachable code");
1052 }
1053}
1054
1055void
1057{
1058 writeForwardedReply(reply);
1059 // note that the client data connection may already be closed by now
1060}
1061
1062void
1064{
1065 Must(reply);
1066
1067 if (waitingForOrigin) {
1068 Must(delayedReply == nullptr);
1069 delayedReply = reply;
1070 return;
1071 }
1072
1073 const HttpHeader &header = reply->header;
1074 // adaptation and forwarding errors lack Http::HdrType::FTP_STATUS
1075 if (!header.has(Http::HdrType::FTP_STATUS)) {
1076 writeForwardedForeign(reply); // will get to Ftp::Server::wroteReply
1077 return;
1078 }
1079
1081 AsyncCall::Pointer call = JobCallback(33, 5, Dialer, this, Ftp::Server::wroteReply);
1082 writeForwardedReplyAndCall(reply, call);
1083}
1084
1085void
1087{
1088 if (pipeline.front()->http->request->error) {
1089 writeCustomReply(502, "Server does not support PASV (converted from EPRT)", reply);
1090 return;
1091 }
1092
1093 writeCustomReply(200, "EPRT successfully converted to PASV.");
1094
1095 // and wait for RETR
1096}
1097
1098void
1100{
1101 if (pipeline.front()->http->request->error) {
1102 writeCustomReply(502, "Cannot connect to server", reply);
1103 return;
1104 }
1105
1106 const unsigned short localPort = listenForDataConnection();
1107 if (!localPort)
1108 return;
1109
1110 // In interception setups, we use a local port number and hope that data
1111 // traffic will be redirected to us.
1112 MemBuf mb;
1113 mb.init();
1114 mb.appendf("229 Entering Extended Passive Mode (|||%u|)\r\n", localPort);
1115
1116 debugs(9, 3, Raw("writing", mb.buf, mb.size));
1117 writeReply(mb);
1118}
1119
1121void
1122Ftp::Server::writeErrorReply(const HttpReply *reply, const int scode)
1123{
1124 const HttpRequest *request = pipeline.front()->http->request;
1125 assert(request);
1126
1127 MemBuf mb;
1128 mb.init();
1129
1130 if (request->error)
1131 mb.appendf("%i-%s\r\n", scode, errorPageName(request->error.category));
1132
1133 for (const auto &detail: request->error.details) {
1134 mb.appendf("%i-Error-Detail-Brief: " SQUIDSBUFPH "\r\n", scode, SQUIDSBUFPRINT(detail->brief()));
1135 mb.appendf("%i-Error-Detail-Verbose: " SQUIDSBUFPH "\r\n", scode, SQUIDSBUFPRINT(detail->verbose(request)));
1136 }
1137
1138#if USE_ADAPTATION
1139 // XXX: Remove hard coded names. Use an error page template instead.
1140 const Adaptation::History::Pointer ah = request->adaptHistory();
1141 if (ah != nullptr) { // XXX: add adapt::<all_h but use lastMeta here
1142 const String info = ah->allMeta.getByName("X-Response-Info");
1143 const String desc = ah->allMeta.getByName("X-Response-Desc");
1144 if (info.size())
1145 mb.appendf("%i-Information: %s\r\n", scode, info.termedBuf());
1146 if (desc.size())
1147 mb.appendf("%i-Description: %s\r\n", scode, desc.termedBuf());
1148 }
1149#endif
1150
1151 const char *reason = "Lost Error";
1152 if (reply) {
1153 reason = reply->header.has(Http::HdrType::FTP_REASON) ?
1155 reply->sline.reason();
1156 }
1157
1158 mb.appendf("%i %s\r\n", scode, reason); // error terminating line
1159
1160 // TODO: errorpage.cc should detect FTP client and use
1161 // configurable FTP-friendly error templates which we should
1162 // write to the client "as is" instead of hiding most of the info
1163
1164 writeReply(mb);
1165}
1166
1169void
1171{
1172 changeState(fssConnected, "foreign reply");
1173 closeDataConnection();
1174 // 451: We intend to keep the control connection open.
1175 writeErrorReply(reply, 451);
1176}
1177
1178bool
1180{
1181 // the caller guarantees that we are dealing with the current context only
1182 // the caller should also make sure reply->header.has(Http::HdrType::FTP_STATUS)
1183 writeForwardedReplyAndCall(reply, call);
1184 return true;
1185}
1186
1187void
1189{
1190 assert(reply != nullptr);
1191 const HttpHeader &header = reply->header;
1192
1193 // without status, the caller must use the writeForwardedForeign() path
1196 const int scode = header.getInt(Http::HdrType::FTP_STATUS);
1197 debugs(33, 7, "scode: " << scode);
1198
1199 // Status 125 or 150 implies upload or data request, but we still check
1200 // the state in case the server is buggy.
1201 if ((scode == 125 || scode == 150) &&
1202 (master->serverState == fssHandleUploadRequest ||
1203 master->serverState == fssHandleDataRequest)) {
1204 if (checkDataConnPost()) {
1205 // If the data connection is ready, start reading data (here)
1206 // and forward the response to client (further below).
1207 debugs(33, 7, "data connection established, start data transfer");
1208 if (master->serverState == fssHandleUploadRequest)
1209 maybeReadUploadData();
1210 } else {
1211 // If we are waiting to accept the data connection, keep waiting.
1212 if (Comm::IsConnOpen(dataListenConn)) {
1213 debugs(33, 7, "wait for the client to establish a data connection");
1214 onDataAcceptCall = call;
1215 // TODO: Add connect timeout for passive connections listener?
1216 // TODO: Remember server response so that we can forward it?
1217 } else {
1218 // Either the connection was established and closed after the
1219 // data was transferred OR we failed to establish an active
1220 // data connection and already sent the error to the client.
1221 // In either case, there is nothing more to do.
1222 debugs(33, 7, "done with data OR active connection failed");
1223 }
1224 return;
1225 }
1226 }
1227
1228 MemBuf mb;
1229 mb.init();
1230 Ftp::PrintReply(mb, reply);
1231
1232 debugs(9, 2, "FTP Client " << clientConnection);
1233 debugs(9, 2, "FTP Client REPLY:\n---------\n" << mb.buf <<
1234 "\n----------");
1235
1236 Comm::Write(clientConnection, &mb, call);
1237}
1238
1239static void
1240Ftp::PrintReply(MemBuf &mb, const HttpReply *reply, const char *const)
1241{
1242 const HttpHeader &header = reply->header;
1243
1245 while (const HttpHeaderEntry *e = header.getEntry(&pos)) {
1246 if (e->id == Http::HdrType::FTP_PRE) {
1247 String raw;
1248 if (httpHeaderParseQuotedString(e->value.rawBuf(), e->value.size(), &raw))
1249 mb.appendf("%s\r\n", raw.termedBuf());
1250 }
1251 }
1252
1253 if (header.has(Http::HdrType::FTP_STATUS)) {
1254 const char *reason = header.getStr(Http::HdrType::FTP_REASON);
1255 mb.appendf("%i %s\r\n", header.getInt(Http::HdrType::FTP_STATUS),
1256 (reason ? reason : ""));
1257 }
1258}
1259
1260void
1262{
1263 if (io.flag == Comm::ERR_CLOSING)
1264 return;
1265
1266 if (io.flag != Comm::OK) {
1267 debugs(33, 3, "FTP reply writing failed: " << xstrerr(io.xerrno));
1268 io.conn->close();
1269 return;
1270 }
1271
1272 Http::StreamPointer context = pipeline.front();
1273 if (context != nullptr && context->http) {
1274 context->http->out.size += io.size;
1275 context->http->out.headers_sz += io.size;
1276 }
1277
1278 flags.readMore = true;
1279 readSomeData();
1280}
1281
1282void
1284{
1285 if (io.flag == Comm::ERR_CLOSING)
1286 return;
1287
1288 if (io.flag != Comm::OK) {
1289 debugs(33, 3, "FTP reply writing failed: " << xstrerr(io.xerrno));
1290 io.conn->close();
1291 return;
1292 }
1293
1294 Http::StreamPointer context = pipeline.front();
1295 assert(context->http);
1296 context->http->out.size += io.size;
1297 context->http->out.headers_sz += io.size;
1298
1299 if (master->serverState == fssError) {
1300 debugs(33, 5, "closing on FTP server error");
1301 io.conn->close();
1302 return;
1303 }
1304
1305 const clientStream_status_t socketState = context->socketState();
1306 debugs(33, 5, "FTP client stream state " << socketState);
1307 switch (socketState) {
1309 case STREAM_FAILED:
1310 io.conn->close();
1311 return;
1312
1313 case STREAM_NONE:
1314 case STREAM_COMPLETE:
1315 flags.readMore = true;
1316 changeState(fssConnected, "Ftp::Server::wroteReply");
1317 if (bodyParser)
1318 finishDechunkingRequest(false);
1319 context->finished();
1320 kick();
1321 return;
1322 }
1323}
1324
1325bool
1327{
1328 debugs(33, 9, request);
1329 Must(request);
1330
1331 HttpHeader &header = request->header;
1336
1337 if (Debug::Enabled(9, 2)) {
1338 MemBuf mb;
1339 mb.init();
1340 request->pack(&mb);
1341
1342 debugs(9, 2, "FTP Client " << clientConnection);
1343 debugs(9, 2, "FTP Client REQUEST:\n---------\n" << mb.buf <<
1344 "\n----------");
1345 }
1346
1347 // TODO: When HttpHeader uses SBuf, change keys to SBuf
1348 typedef std::map<const std::string, RequestHandler> RequestHandlers;
1349 static RequestHandlers handlers;
1350 if (!handlers.size()) {
1351 handlers["LIST"] = &Ftp::Server::handleDataRequest;
1352 handlers["NLST"] = &Ftp::Server::handleDataRequest;
1353 handlers["MLSD"] = &Ftp::Server::handleDataRequest;
1354 handlers["FEAT"] = &Ftp::Server::handleFeatRequest;
1355 handlers["PASV"] = &Ftp::Server::handlePasvRequest;
1356 handlers["PORT"] = &Ftp::Server::handlePortRequest;
1357 handlers["RETR"] = &Ftp::Server::handleDataRequest;
1358 handlers["EPRT"] = &Ftp::Server::handleEprtRequest;
1359 handlers["EPSV"] = &Ftp::Server::handleEpsvRequest;
1360 handlers["CWD"] = &Ftp::Server::handleCwdRequest;
1361 handlers["PASS"] = &Ftp::Server::handlePassRequest;
1362 handlers["CDUP"] = &Ftp::Server::handleCdupRequest;
1363 }
1364
1365 RequestHandler handler = nullptr;
1366 if (request->method == Http::METHOD_PUT)
1368 else {
1369 const RequestHandlers::const_iterator hi = handlers.find(cmd.termedBuf());
1370 if (hi != handlers.end())
1371 handler = hi->second;
1372 }
1373
1374 if (!handler) {
1375 debugs(9, 7, "forwarding " << cmd << " as is, no post-processing");
1376 return true;
1377 }
1378
1379 return (this->*handler)(cmd, params);
1380}
1381
1386{
1387 if (params.isEmpty())
1388 return earlyError(EarlyErrorKind::MissingUsername);
1389
1390 // find the [end of] user name
1391 const SBuf::size_type eou = params.rfind('@');
1392 if (eou == SBuf::npos || eou + 1 >= params.length())
1393 return earlyError(EarlyErrorKind::MissingHost);
1394
1395 // Determine the intended destination.
1396 host = params.substr(eou + 1, params.length());
1397 // If we can parse it as raw IPv6 address, then surround with "[]".
1398 // Otherwise (domain, IPv4, [bracketed] IPv6, garbage, etc), use as is.
1399 if (host.find(':') != SBuf::npos) {
1400 const Ip::Address ipa(host.c_str());
1401 if (!ipa.isAnyAddr()) {
1402 char ipBuf[MAX_IPSTRLEN];
1403 ipa.toHostStr(ipBuf, MAX_IPSTRLEN);
1404 host = ipBuf;
1405 }
1406 }
1407
1408 // const SBuf login = params.substr(0, eou);
1409 params.chop(0, eou); // leave just the login part for the peer
1410
1411 SBuf oldUri;
1412 if (master->clientReadGreeting)
1413 oldUri = uri;
1414
1415 master->workingDir.clear();
1416 calcUri(nullptr);
1417
1418 if (!master->clientReadGreeting) {
1419 debugs(9, 3, "set URI to " << uri);
1420 } else if (oldUri.caseCmp(uri) == 0) {
1421 debugs(9, 5, "kept URI as " << oldUri);
1422 } else {
1423 debugs(9, 3, "reset URI from " << oldUri << " to " << uri);
1424 closeDataConnection();
1425 unpinConnection(true); // close control connection to peer
1426 resetLogin("URI reset");
1427 }
1428
1429 return nullptr; // no early errors
1430}
1431
1432bool
1434{
1435 changeState(fssHandleFeat, "handleFeatRequest");
1436 return true;
1437}
1438
1439bool
1441{
1442 if (gotEpsvAll) {
1443 setReply(500, "Bad PASV command");
1444 return false;
1445 }
1446
1447 if (params.size() > 0) {
1448 setReply(501, "Unexpected parameter");
1449 return false;
1450 }
1451
1452 changeState(fssHandlePasv, "handlePasvRequest");
1453 // no need to fake PASV request via setDataCommand() in true PASV case
1454 return true;
1455}
1456
1458bool
1460{
1461 assert(clientConnection != nullptr);
1462 assert(!clientConnection->remote.isAnyAddr());
1463
1464 if (cltAddr != clientConnection->remote) {
1465 debugs(33, 2, "rogue PORT " << cltAddr << " request? ctrl: " << clientConnection->remote);
1466 // Closing the control connection would not help with attacks because
1467 // the client is evidently able to connect to us. Besides, closing
1468 // makes retrials easier for the client and more damaging to us.
1469 setReply(501, "Prohibited parameter value");
1470 return false;
1471 }
1472
1473 closeDataConnection();
1474
1476 conn->flags |= COMM_DOBIND;
1477
1478 if (clientConnection->flags & COMM_INTERCEPTION) {
1479 // In the case of NAT interception conn->local value is not set
1480 // because the TCP stack will automatically pick correct source
1481 // address for the data connection. We must only ensure that IP
1482 // version matches client's address.
1483 conn->local.setAnyAddr();
1484
1485 if (cltAddr.isIPv4())
1486 conn->local.setIPv4();
1487
1488 conn->remote = cltAddr;
1489 } else {
1490 // In the case of explicit-proxy the local IP of the control connection
1491 // is the Squid IP the client is knowingly talking to.
1492 //
1493 // In the case of TPROXY the IP address of the control connection is
1494 // server IP the client is connecting to, it can be spoofed by Squid.
1495 //
1496 // In both cases some clients may refuse to accept data connections if
1497 // these control connection local-IP's are not used.
1498 conn->setAddrs(clientConnection->local, cltAddr);
1499
1500 // Using non-local addresses in TPROXY mode requires appropriate socket option.
1501 if (clientConnection->flags & COMM_TRANSPARENT)
1502 conn->flags |= COMM_TRANSPARENT;
1503 }
1504
1505 // RFC 959 requires active FTP connections to originate from port 20
1506 // but that would preclude us from supporting concurrent transfers! (XXX?)
1507 conn->local.port(0);
1508
1509 debugs(9, 3, "will actively connect from " << conn->local << " to " <<
1510 conn->remote);
1511
1512 dataConn = conn;
1513 uploadAvailSize = 0;
1514 return true;
1515}
1516
1517bool
1519{
1520 // TODO: Should PORT errors trigger closeDataConnection() cleanup?
1521
1522 if (gotEpsvAll) {
1523 setReply(500, "Rejecting PORT after EPSV ALL");
1524 return false;
1525 }
1526
1527 if (!params.size()) {
1528 setReply(501, "Missing parameter");
1529 return false;
1530 }
1531
1532 Ip::Address cltAddr;
1533 if (!Ftp::ParseIpPort(params.termedBuf(), nullptr, cltAddr)) {
1534 setReply(501, "Invalid parameter");
1535 return false;
1536 }
1537
1538 if (!createDataConnection(cltAddr))
1539 return false;
1540
1541 changeState(fssHandlePort, "handlePortRequest");
1542 setDataCommand();
1543 return true; // forward our fake PASV request
1544}
1545
1546bool
1548{
1549 if (!checkDataConnPre())
1550 return false;
1551
1552 master->userDataDone = 0;
1553 originDataDownloadAbortedOnError = false;
1554
1555 changeState(fssHandleDataRequest, "handleDataRequest");
1556
1557 return true;
1558}
1559
1560bool
1562{
1563 if (!checkDataConnPre())
1564 return false;
1565
1567 ClientHttpRequest *http = pipeline.front()->http;
1568 HttpRequest *request = http->request;
1569 ACLFilledChecklist bodyContinuationCheck(Config.accessList.forceRequestBodyContinuation, request);
1570 bodyContinuationCheck.al = http->al;
1571 bodyContinuationCheck.syncAle(request, http->log_uri);
1572 if (bodyContinuationCheck.fastCheck().allowed()) {
1573 request->forcedBodyContinuation = true;
1574 if (checkDataConnPost()) {
1575 // Write control Msg
1576 writeEarlyReply(150, "Data connection opened");
1577 maybeReadUploadData();
1578 } else {
1579 // wait for acceptDataConnection but tell it to call wroteEarlyReply
1580 // after writing "150 Data connection opened"
1582 AsyncCall::Pointer call = JobCallback(33, 5, Dialer, this, Ftp::Server::wroteEarlyReply);
1583 onDataAcceptCall = call;
1584 }
1585 }
1586 }
1587
1588 changeState(fssHandleUploadRequest, "handleDataRequest");
1589
1590 return true;
1591}
1592
1593bool
1595{
1596 debugs(9, 3, "Process an EPRT " << params);
1597
1598 if (gotEpsvAll) {
1599 setReply(500, "Rejecting EPRT after EPSV ALL");
1600 return false;
1601 }
1602
1603 if (!params.size()) {
1604 setReply(501, "Missing parameter");
1605 return false;
1606 }
1607
1608 Ip::Address cltAddr;
1609 if (!Ftp::ParseProtoIpPort(params.termedBuf(), cltAddr)) {
1610 setReply(501, "Invalid parameter");
1611 return false;
1612 }
1613
1614 if (!createDataConnection(cltAddr))
1615 return false;
1616
1617 changeState(fssHandleEprt, "handleEprtRequest");
1618 setDataCommand();
1619 return true; // forward our fake PASV request
1620}
1621
1622bool
1624{
1625 debugs(9, 3, "Process an EPSV command with params: " << params);
1626 if (params.size() <= 0) {
1627 // treat parameterless EPSV as "use the protocol of the ctrl conn"
1628 } else if (params.caseCmp("ALL") == 0) {
1629 setReply(200, "EPSV ALL ok");
1630 gotEpsvAll = true;
1631 return false;
1632 } else if (params.cmp("2") == 0) {
1633 if (!Ip::EnableIpv6) {
1634 setReply(522, "Network protocol not supported, use (1)");
1635 return false;
1636 }
1637 } else if (params.cmp("1") != 0) {
1638 setReply(501, "Unsupported EPSV parameter");
1639 return false;
1640 }
1641
1642 changeState(fssHandleEpsv, "handleEpsvRequest");
1643 setDataCommand();
1644 return true; // forward our fake PASV request
1645}
1646
1647bool
1649{
1650 changeState(fssHandleCwd, "handleCwdRequest");
1651 return true;
1652}
1653
1654bool
1656{
1657 changeState(fssHandlePass, "handlePassRequest");
1658 return true;
1659}
1660
1661bool
1663{
1664 changeState(fssHandleCdup, "handleCdupRequest");
1665 return true;
1666}
1667
1668// Convert user PORT, EPRT, PASV, or EPSV data command to Squid PASV command.
1669// Squid FTP client decides what data command to use with peers.
1670void
1672{
1673 ClientHttpRequest *const http = pipeline.front()->http;
1674 assert(http != nullptr);
1675 HttpRequest *const request = http->request;
1676 assert(request != nullptr);
1677 HttpHeader &header = request->header;
1678 static const SBuf pasvValue("PASV");
1679 header.updateOrAddStr(Http::HdrType::FTP_COMMAND, pasvValue);
1680 static const SBuf emptyValue("");
1681 header.updateOrAddStr(Http::HdrType::FTP_ARGUMENTS, emptyValue);
1682 debugs(9, 5, "client data command converted to fake PASV");
1683}
1684
1687bool
1689{
1690 if (Comm::IsConnOpen(dataConn))
1691 return true;
1692
1693 if (Comm::IsConnOpen(dataListenConn)) {
1694 // We are still waiting for a client to connect to us after PASV.
1695 // Perhaps client's data conn handshake has not reached us yet.
1696 // After we talk to the server, checkDataConnPost() will recheck.
1697 debugs(33, 3, "expecting clt data conn " << dataListenConn);
1698 return true;
1699 }
1700
1701 if (!dataConn || dataConn->remote.isAnyAddr()) {
1702 debugs(33, 5, "missing " << dataConn);
1703 // TODO: use client address and default port instead.
1704 setReply(425, "Use PORT or PASV first");
1705 return false;
1706 }
1707
1708 // active transfer: open a data connection from Squid to client
1710 AsyncCall::Pointer callback = JobCallback(17, 3, Dialer, this, Ftp::Server::connectedForData);
1711 const auto cs = new Comm::ConnOpener(dataConn->cloneProfile(), callback,
1713 dataConnWait.start(cs, callback);
1714 return false;
1715}
1716
1718bool
1720{
1721 if (!Comm::IsConnOpen(dataConn)) {
1722 debugs(33, 3, "missing client data conn: " << dataConn);
1723 return false;
1724 }
1725 return true;
1726}
1727
1729void
1731{
1732 dataConnWait.finish();
1733
1734 if (params.flag != Comm::OK) {
1735 setReply(425, "Cannot open data connection.");
1736 Http::StreamPointer context = pipeline.front();
1737 Must(context->http);
1738 Must(context->http->storeEntry() != nullptr);
1739 // TODO: call closeDataConnection() to reset data conn processing?
1740 } else {
1741 // Finalize the details and start owning the supplied connection.
1742 assert(params.conn);
1743 assert(dataConn);
1744 assert(!dataConn->isOpen());
1745 dataConn = params.conn;
1746 // XXX: Missing comm_add_close_handler() to track external closures.
1747
1748 Must(Comm::IsConnOpen(params.conn));
1749 fd_note(params.conn->fd, "active client ftp data");
1750 }
1751
1752 doProcessRequest();
1753}
1754
1755void
1756Ftp::Server::setReply(const int code, const char *msg)
1757{
1758 Http::StreamPointer context = pipeline.front();
1759 ClientHttpRequest *const http = context->http;
1760 assert(http != nullptr);
1761 assert(http->storeEntry() == nullptr);
1762
1763 HttpReply *const reply = Ftp::HttpReplyWrapper(code, msg, Http::scNoContent, 0);
1764
1765 clientStreamNode *const node = context->getClientReplyContext();
1766 clientReplyContext *const repContext =
1767 dynamic_cast<clientReplyContext *>(node->data.getRaw());
1768 assert(repContext != nullptr);
1769
1770 RequestFlags reqFlags;
1771 reqFlags.disableCacheUse("FTP response wrapper");
1772 repContext->createStoreEntry(http->request->method, reqFlags);
1773 http->storeEntry()->replaceHttpReply(reply);
1774}
1775
1776void
1777Ftp::Server::callException(const std::exception &e)
1778{
1779 debugs(33, 2, "FTP::Server job caught: " << e.what());
1780 closeDataConnection();
1781 unpinConnection(true);
1782 if (Comm::IsConnOpen(clientConnection))
1783 clientConnection->close();
1785}
1786
1787void
1789{
1790 if (!isOpen()) // if we are closing, nothing to do
1791 return;
1792
1793 debugs(33, 5, "waiting for Ftp::Client data transfer to end");
1794 waitingForOrigin = true;
1795}
1796
1797void
1799{
1800 Must(waitingForOrigin);
1801 waitingForOrigin = false;
1802
1803 if (!isOpen()) // if we are closing, nothing to do
1804 return;
1805
1806 // if we have already decided how to respond, respond now
1807 if (delayedReply) {
1808 HttpReply::Pointer reply = delayedReply;
1809 delayedReply = nullptr;
1810 writeForwardedReply(reply.getRaw());
1811 return; // do not completeDataDownload() after an earlier response
1812 }
1813
1814 if (master->serverState != fssHandleDataRequest)
1815 return;
1816
1817 // completeDataDownload() could be waitingForOrigin in fssHandleDataRequest
1818 // Depending on which side has finished downloading first, either trust
1819 // master->userDataDone status or set originDataDownloadAbortedOnError:
1820 if (master->userDataDone) {
1821 // We finished downloading before Ftp::Client. Most likely, the
1822 // adaptation shortened the origin response or we hit an error.
1823 // Our status (stored in master->userDataDone) is more informative.
1824 // Use master->userDataDone; avoid originDataDownloadAbortedOnError.
1825 completeDataDownload();
1826 } else {
1827 debugs(33, 5, "too early to write the response");
1828 // Ftp::Client naturally finished downloading before us. Set
1829 // originDataDownloadAbortedOnError to overwrite future
1830 // master->userDataDone and relay Ftp::Client error, if there was
1831 // any, to the user.
1832 originDataDownloadAbortedOnError = (originStatus >= 400);
1833 }
1834}
1835
1837{
1838 Must(!master->userDataDone);
1839 master->userDataDone = finalStatusCode;
1840
1841 if (bodyParser)
1842 finishDechunkingRequest(false);
1843
1844 if (waitingForOrigin) {
1845 // The completeDataDownload() is not called here unconditionally
1846 // because we want to signal the FTP user that we are not fully
1847 // done processing its data stream, even though all data bytes
1848 // have been sent or received already.
1849 debugs(33, 5, "Transferring from FTP server is not complete");
1850 return;
1851 }
1852
1853 // Adjust our reply if the server aborted with an error before we are done.
1854 if (master->userDataDone == 226 && originDataDownloadAbortedOnError) {
1855 debugs(33, 5, "Transferring from FTP server terminated with an error, adjust status code");
1856 master->userDataDone = 451;
1857 }
1858 completeDataDownload();
1859}
1860
1862{
1863 writeCustomReply(master->userDataDone, master->userDataDone == 226 ? "Transfer complete" : "Server error; transfer aborted");
1864 closeDataConnection();
1865}
1866
1868static bool
1870{
1871 static std::set<SBuf> BlockList;
1872 if (BlockList.empty()) {
1873 /* Add FTP commands that Squid cannot relay correctly. */
1874
1875 // We probably do not support AUTH TLS.* and AUTH SSL,
1876 // but let's disclaim all AUTH support to KISS, for now.
1877 BlockList.insert(cmdAuth());
1878 }
1879
1880 // we claim support for all commands that we do not know about
1881 return BlockList.find(name) == BlockList.end();
1882}
1883
#define Assure(condition)
Definition Assure.h:35
#define JobCallback(dbgSection, dbgLevel, Dialer, job, method)
Convenience macro to create a Dialer-based job callback.
#define CallJobHere(debugSection, debugLevel, job, Class, method)
CommCbFunPtrCallT< Dialer > * commCbCall(int debugSection, int debugLevel, const char *callName, const Dialer &dialer)
Definition CommCalls.h:312
#define COMM_TRANSPARENT
Definition Connection.h:50
#define COMM_INTERCEPTION
Definition Connection.h:51
#define COMM_DOBIND
Definition Connection.h:49
#define COMM_NONBLOCKING
Definition Connection.h:46
int httpHeaderParseQuotedString(const char *start, const int len, String *val)
ssize_t HttpHeaderPos
Definition HttpHeader.h:45
#define HttpHeaderInitPos
Definition HttpHeader.h:48
int NHttpSockets
Definition PortCfg.cc:25
AnyP::PortCfgPointer FtpPortList
list of Squid ftp_port configured
Definition PortCfg.cc:23
#define MAXTCPLISTENPORTS
Definition PortCfg.h:86
void comm_read(const Comm::ConnectionPointer &conn, char *buf, int len, AsyncCall::Pointer &callback)
Definition Read.h:59
#define SQUIDSBUFPH
Definition SBuf.h:31
#define SQUIDSBUFPRINT(s)
Definition SBuf.h:32
class SquidConfig Config
StatCounters statCounter
#define TexcHere(msg)
legacy convenience macro; it is not difficult to type Here() now
#define Must(condition)
#define assert(EX)
Definition assert.h:17
static char server[MAXLINE]
#define CBDATA_NAMESPACED_CLASS_INIT(namespace, type)
Definition cbdata.h:333
Acl::Answer const & fastCheck()
Definition Checklist.cc:298
AccessLogEntry::Pointer al
info for the future access.log, and external ACL
void syncAle(HttpRequest *adaptedRequest, const char *logUri) const override
assigns uninitialized adapted_request and url ALE components
bool allowed() const
Definition Acl.h:82
HttpHeader allMeta
All REQMOD and RESPMOD meta headers merged. Last field wins conflicts.
Definition History.h:63
static void Start(const Pointer &job)
Definition AsyncJob.cc:37
virtual void callException(const std::exception &e)
called when the job throws during an async call
Definition AsyncJob.cc:143
optimized set of C chars, with quick membership test and merge support
CharacterSet complement(const char *complementLabel=nullptr) const
static const CharacterSet SP
static const CharacterSet LF
static const CharacterSet CR
HttpRequest *const request
void initRequest(HttpRequest *)
size_t req_sz
raw request size on input, not current request size
StoreEntry * storeEntry() const
const AccessLogEntry::Pointer al
access.log entry
static const Pointer & Current()
static void Reset()
forgets the current context, setting it to nil/unknown
AnyP::PortCfgPointer port
the configuration listening port this call relates to (may be nil)
Definition CommCalls.h:100
int xerrno
The last errno to occur. non-zero if flag is Comm::COMM_ERROR.
Definition CommCalls.h:83
Comm::Flag flag
comm layer result status.
Definition CommCalls.h:82
Comm::ConnectionPointer conn
Definition CommCalls.h:80
Ip::Address remote
Definition Connection.h:152
void setAddrs(const Ip::Address &aLocal, const Ip::Address &aRemote)
Definition Connection.h:106
void leaveOrphanage()
resume relying on owner(s) to initiate an explicit connection closure
Definition Connection.h:92
Ip::Address local
Definition Connection.h:149
virtual void clientPinnedConnectionClosed(const CommCloseCbParams &io)
Our close handler called by Comm when the pinned connection is closed.
void start() override
called by AsyncStart; do not call directly
struct ConnStateData::@28 flags
bool readMore
needs comm_read (for this request or new requests)
void noteBodyConsumerAborted(BodyPipe::Pointer) override=0
static bool Enabled(const int section, const int level)
whether debugging the given section and the given level produces output
Definition Stream.h:75
ErrorDetails details
Definition Error.h:60
err_type category
primary error classification (or ERR_NONE)
Definition Error.h:55
Transaction information shared among our FTP client and server jobs.
Definition FtpServer.h:43
Manages a control connection from an FTP client.
Definition FtpServer.h:59
void writeCustomReply(const int code, const char *msg, const HttpReply *reply=nullptr)
Definition FtpServer.cc:507
void handleDataReply(const HttpReply *header, StoreIOBuffer receivedData)
Definition FtpServer.cc:970
void calcUri(const SBuf *file)
computes uri member from host and, if tracked, working dir with file name
Definition FtpServer.cc:345
bool handlePasvRequest(String &cmd, String &params)
bool handleDataRequest(String &cmd, String &params)
void setDataCommand()
bool handleUploadRequest(String &cmd, String &params)
void writeForwardedReply(const HttpReply *reply)
void userDataCompletionCheckpoint(int finalStatusCode)
void connectedForData(const CommConnectCbParams &params)
Done establishing a data connection to the user.
bool handleCdupRequest(String &cmd, String &params)
void writeForwardedForeign(const HttpReply *reply)
static void AcceptCtrlConnection(const CommAcceptCbParams &params)
accept a new FTP control connection and hand it to a dedicated Server
Definition FtpServer.cc:242
void maybeReadUploadData()
schedules another data connection read if needed
Definition FtpServer.cc:109
void handleEprtReply(const HttpReply *header, StoreIOBuffer receivedData)
void changeState(const Ftp::ServerState newState, const char *reason)
Definition FtpServer.cc:529
void wroteReply(const CommIoCbParams &io)
void handlePasvReply(const HttpReply *header, StoreIOBuffer receivedData)
Definition FtpServer.cc:908
Http::Stream * earlyError(const EarlyErrorKind eek)
creates a context filled with an error message for a given early error
Definition FtpServer.cc:570
void callException(const std::exception &e) override
called when the job throws during an async call
void completeDataDownload()
void handleFeatReply(const HttpReply *header, StoreIOBuffer receivedData)
Definition FtpServer.cc:839
bool handlePortRequest(String &cmd, String &params)
void acceptDataConnection(const CommAcceptCbParams &params)
Definition FtpServer.cc:401
bool handleFeatRequest(String &cmd, String &params)
void writeErrorReply(const HttpReply *reply, const int status)
writes FTP error response with given status and reply-derived error details
void startWaitingForOrigin()
bool checkDataConnPre()
void writeReply(MemBuf &mb)
Definition FtpServer.cc:495
void resetLogin(const char *reason)
clear client and server login-related state after the old login is gone
Definition FtpServer.cc:336
void processParsedRequest(Http::StreamPointer &context) override
start processing a freshly parsed request
Definition FtpServer.cc:156
void noteBodyConsumerAborted(BodyPipe::Pointer ptr) override
Definition FtpServer.cc:231
void wroteReplyData(const CommIoCbParams &io)
called when we are done writing a chunk of the response data
time_t idleTimeout() const override
timeout to use when waiting for the next request
Definition FtpServer.cc:86
void clientPinnedConnectionClosed(const CommCloseCbParams &io) override
Our close handler called by Comm when the pinned connection is closed.
Definition FtpServer.cc:316
Server(const MasterXaction::Pointer &xact)
Definition FtpServer.cc:53
bool writeControlMsgAndCall(HttpReply *rep, AsyncCall::Pointer &call) override
handle a control message received by context from a peer and call back
void start() override
called by AsyncStart; do not call directly
Definition FtpServer.cc:92
void handlePortReply(const HttpReply *header, StoreIOBuffer receivedData)
Definition FtpServer.cc:948
void handleErrorReply(const HttpReply *header, StoreIOBuffer receivedData)
Definition FtpServer.cc:961
void notePeerConnection(Comm::ConnectionPointer conn) override
called just before a FwdState-dispatched job starts using connection
Definition FtpServer.cc:302
Http::Stream * parseOneRequest() override
Definition FtpServer.cc:640
char uploadBuf[CLIENT_REQ_BUF_SZ]
data connection input buffer
Definition FtpServer.h:190
void handleReply(HttpReply *header, StoreIOBuffer receivedData) override
Definition FtpServer.cc:805
bool createDataConnection(Ip::Address cltAddr)
[Re]initializes dataConn for active data transfers. Does not connect.
bool handleEpsvRequest(String &cmd, String &params)
void setReply(const int code, const char *msg)
void replyDataWritingCheckpoint()
ClientStream checks after (actual or skipped) reply data writing.
bool handlePassRequest(String &cmd, String &params)
void handleEpsvReply(const HttpReply *header, StoreIOBuffer receivedData)
void wroteEarlyReply(const CommIoCbParams &io)
Http::Stream * handleUserRequest(const SBuf &cmd, SBuf &params)
void handleUploadReply(const HttpReply *header, StoreIOBuffer receivedData)
bool handleRequest(HttpRequest *)
void noteMoreBodySpaceAvailable(BodyPipe::Pointer) override
Definition FtpServer.cc:222
void stopWaitingForOrigin(int status)
void shovelUploadData()
shovel upload data from the internal buffer to the body pipe if possible
Definition FtpServer.cc:202
unsigned int listenForDataConnection()
Definition FtpServer.cc:370
void writeForwardedReplyAndCall(const HttpReply *reply, AsyncCall::Pointer &call)
int pipelinePrefetchMax() const override
returning N allows a pipeline of 1+N requests (see pipeline_prefetch)
Definition FtpServer.cc:80
bool checkDataConnPost() const
Check that client data connection is ready for immediate I/O.
void doProcessRequest()
react to the freshly parsed request
Definition FtpServer.cc:128
void readUploadData(const CommIoCbParams &io)
imports more upload data from the data connection
Definition FtpServer.cc:168
bool handleCwdRequest(String &cmd, String &params)
bool handleEprtRequest(String &cmd, String &params)
void writeEarlyReply(const int code, const char *msg)
Definition FtpServer.cc:476
~Server() override
Definition FtpServer.cc:74
void closeDataConnection()
Definition FtpServer.cc:445
void putStr(Http::HdrType id, const char *str)
void refreshMask()
HttpHeaderEntry * getEntry(HttpHeaderPos *pos) const
const char * getStr(Http::HdrType id) const
void addEntry(HttpHeaderEntry *e)
String getByName(const SBuf &name) const
int has(Http::HdrType id) const
int getInt(Http::HdrType id) const
HttpHeaderEntry * findEntry(Http::HdrType id) const
void updateOrAddStr(Http::HdrType, const SBuf &)
Http::StatusLine sline
Definition HttpReply.h:56
Adaptation::History::Pointer adaptHistory(bool createIfNone=false) const
Returns possibly nil history, creating it if requested.
HttpRequestMethod method
void pack(Packable *p, bool maskSensitiveInfo=false) const
bool forcedBodyContinuation
whether we have responded with HTTP 100 or FTP 150 already
static HttpRequest * FromUrl(const SBuf &url, const MasterXaction::Pointer &, const HttpRequestMethod &method=Http::METHOD_GET)
Error error
the first transaction problem encountered (or falsy)
HttpHeader header
Definition Message.h:74
const char * reason() const
retrieve the reason string for this status line
Definition StatusLine.cc:44
Http::StatusCode status() const
retrieve the status code for this status line
Definition StatusLine.h:45
unsigned parsed_ok
Was this parsed correctly?
Definition Stream.h:140
struct Http::Stream::@58 flags
char reqbuf[HTTP_REQBUF_SZ]
Definition Stream.h:137
clientStreamNode * getClientReplyContext() const
Definition Stream.cc:511
char * toStr(char *buf, const unsigned int blen, int force=AF_UNSPEC) const
Definition Address.cc:804
bool setIPv4()
Definition Address.cc:244
unsigned int toHostStr(char *buf, const unsigned int len) const
Definition Address.cc:854
bool isIPv4() const
Definition Address.cc:178
bool isAnyAddr() const
Definition Address.cc:190
void setAnyAddr()
NOTE: Does NOT clear the Port stored. Only the Address and Type.
Definition Address.cc:197
unsigned short port() const
Definition Address.cc:790
static Pointer MakePortful(const AnyP::PortCfgPointer &aPort)
void append(const char *c, int sz) override
Definition MemBuf.cc:209
void init(mb_size_t szInit, mb_size_t szMax)
Definition MemBuf.cc:93
mb_size_t size
Definition MemBuf.h:135
char * buf
Definition MemBuf.h:134
void appendf(const char *fmt,...) PRINTF_FORMAT_ARG2
Append operation with printf-style arguments.
Definition Packable.h:61
Definition Raw.h:21
C * getRaw() const
Definition RefCount.h:89
void disableCacheUse(const char *reason)
Definition SBuf.h:94
void toUpper()
converts all characters to upper case;
Definition SBuf.cc:824
int caseCmp(const SBuf &S, const size_type n) const
shorthand version for case-insensitive compare()
Definition SBuf.h:287
static const size_type npos
Definition SBuf.h:100
const char * c_str()
Definition SBuf.cc:516
SBuf & chop(size_type pos, size_type n=npos)
Definition SBuf.cc:530
size_type length() const
Returns the number of bytes stored in SBuf.
Definition SBuf.h:419
size_type rfind(char c, size_type endPos=npos) const
Definition SBuf.cc:692
SBuf & trim(const SBuf &toRemove, bool atBeginning=true, bool atEnd=true)
Definition SBuf.cc:551
bool isEmpty() const
Definition SBuf.h:435
void clear()
Definition SBuf.cc:175
SBuf substr(size_type pos, size_type n=npos) const
Definition SBuf.cc:576
MemBlob::size_type size_type
Definition SBuf.h:96
time_t ftpClientIdle
struct SquidConfig::@77 Timeout
size_t maxRequestHeaderSize
time_t connect
struct SquidConfig::@91 accessList
acl_access * forceRequestBodyContinuation
ByteCounter kbytes_in
struct StatCounters::@104 client_http
void replaceHttpReply(const HttpReplyPointer &, const bool andStartWriting=true)
Definition store.cc:1705
int cmp(char const *) const
Definition String.cc:243
static size_type RawSizeMaxXXX()
Definition SquidString.h:76
char const * termedBuf() const
Definition SquidString.h:97
int caseCmp(char const *) const
Definition String.cc:273
size_type size() const
Definition SquidString.h:78
void setReplyToReply(HttpReply *reply)
creates a store entry for the reply and appends error reply to it
void createStoreEntry(const HttpRequestMethod &m, RequestFlags flags)
void clientProcessRequest(ConnStateData *conn, const Http1::RequestParserPointer &hp, Http::Stream *context)
void clientSetKeepaliveFlag(ClientHttpRequest *http)
decide whether to expect multiple requests on the corresponding connection
void clientStartListeningOn(AnyP::PortCfgPointer &port, const RefCount< CommCbFunPtrCallT< CommAcceptCbPtrFun > > &subCall, const Ipc::FdNoteId fdNote)
accept requests to a given port and inform subCall about them
CSD clientSocketDetach
CSS clientReplyStatus
CSCB clientSocketRecipient
CSD clientReplyDetach
CSR clientGetMoreData
unsigned short comm_local_port(int fd)
Definition comm.cc:167
void comm_open_listener(int sock_type, int proto, Comm::ConnectionPointer &conn, const char *note)
Definition comm.cc:259
bool isOpen(const int fd)
Definition comm.cc:91
A const & min(A const &lhs, A const &rhs)
#define DBG_IMPORTANT
Definition Stream.h:38
#define debugs(SECTION, LEVEL, CONTENT)
Definition Stream.h:192
#define DBG_CRITICAL
Definition Stream.h:37
static int port
clientStream_status_t
Definition enums.h:120
@ STREAM_COMPLETE
Definition enums.h:122
@ STREAM_UNPLANNED_COMPLETE
Definition enums.h:127
@ STREAM_NONE
Definition enums.h:121
@ STREAM_FAILED
Definition enums.h:132
void fatal(const char *message)
Definition fatal.cc:28
void fd_note(int fd, const char *s)
Definition fd.cc:211
void clientStreamInit(dlink_list *list, CSR *func, CSD *rdetach, CSS *readstatus, const ClientStreamData &readdata, CSCB *callback, CSD *cdetach, const ClientStreamData &callbackdata, StoreIOBuffer tailBuffer)
const char * errorPageName(int pageId)
error ID to string
Definition errorpage.cc:669
#define HTTP_REQBUF_SZ
Definition forward.h:14
#define MAX_IPSTRLEN
Length of buffer that needs to be allocated to old a null-terminated IP-string.
Definition forward.h:25
void ReadCancel(int fd, AsyncCall::Pointer &callback)
Cancel the read pending on FD. No action if none pending.
Definition Read.cc:219
bool IsConnOpen(const Comm::ConnectionPointer &conn)
Definition Connection.cc:27
void Write(const Comm::ConnectionPointer &conn, const char *buf, int size, AsyncCall::Pointer &callback, FREE *free_func)
Definition Write.cc:33
@ OK
Definition Flag.h:16
@ ERR_CLOSING
Definition Flag.h:24
Definition forward.h:24
static bool SupportedCommand(const SBuf &name)
Whether Squid FTP Relay supports a named feature (e.g., a command).
const SBuf & cmdAppe()
Definition Elements.cc:56
AnyP::ProtocolVersion ProtocolVersion()
Protocol version to use in Http::Message structures wrapping FTP messages.
Definition Elements.cc:24
bool ParseProtoIpPort(const char *buf, Ip::Address &addr)
Definition Parsing.cc:52
const SBuf & cmdDele()
Definition Elements.cc:77
const SBuf & cmdEpsv()
Definition Elements.cc:91
const SBuf & cmdSmnt()
Definition Elements.cc:161
const SBuf & cmdStou()
Definition Elements.cc:182
ServerState
Definition FtpServer.h:23
@ fssError
Definition FtpServer.h:36
@ fssHandlePort
Definition FtpServer.h:28
@ fssHandleCdup
Definition FtpServer.h:35
@ fssHandleFeat
Definition FtpServer.h:26
@ fssHandlePasv
Definition FtpServer.h:27
@ fssConnected
Definition FtpServer.h:25
@ fssHandleEprt
Definition FtpServer.h:31
@ fssHandleCwd
Definition FtpServer.h:33
@ fssHandlePass
Definition FtpServer.h:34
@ fssHandleUploadRequest
Definition FtpServer.h:30
@ fssBegin
Definition FtpServer.h:24
@ fssHandleEpsv
Definition FtpServer.h:32
@ fssHandleDataRequest
Definition FtpServer.h:29
const SBuf & cmdStor()
Definition Elements.cc:175
const SBuf & cmdMlsd()
Definition Elements.cc:112
const SBuf & cmdList()
Definition Elements.cc:98
const SBuf & cmdRetr()
Definition Elements.cc:133
const SBuf & cmdNlst()
Definition Elements.cc:126
const SBuf & cmdMlst()
Definition Elements.cc:119
const SBuf & cmdStat()
Definition Elements.cc:168
const SBuf & cmdAuth()
Definition Elements.cc:63
static bool CommandHasPathParameter(const SBuf &cmd)
whether the given FTP command has a pathname parameter
Definition FtpServer.cc:544
const SBuf & cmdCwd()
Definition Elements.cc:70
bool ParseIpPort(const char *buf, const char *forceIp, Ip::Address &addr)
parses and validates "A1,A2,A3,A4,P1,P2" IP,port sequence
Definition Parsing.cc:18
const SBuf & cmdEprt()
Definition Elements.cc:84
const SBuf & cmdRnto()
Definition Elements.cc:154
const SBuf & cmdMkd()
Definition Elements.cc:105
const SBuf & cmdUser()
Definition Elements.cc:189
HttpReply * HttpReplyWrapper(const int ftpStatus, const char *ftpReason, const Http::StatusCode httpStatus, const int64_t clen)
Create an internal HttpReply structure to house FTP control response info.
Definition Elements.cc:30
const SBuf & cmdRnfr()
Definition Elements.cc:147
void StopListening()
reject new connections to any configured ftp_port
Definition FtpServer.cc:287
void StartListening()
accept connections on all configured ftp_ports
Definition FtpServer.cc:265
const SBuf & cmdRmd()
Definition Elements.cc:140
static void PrintReply(MemBuf &mb, const HttpReply *reply, const char *const prefix="")
@ scBadRequest
Definition StatusCode.h:45
@ scOkay
Definition StatusCode.h:27
@ scNoContent
Definition StatusCode.h:31
@ METHOD_PUT
Definition MethodType.h:27
@ METHOD_GET
Definition MethodType.h:25
AnyP::ProtocolVersion ProtocolVersion()
@ TRANSFER_ENCODING
@ fdnFtpSocket
Definition FdNotes.h:20
#define xstrdup
Definition parse.c:104
Definition parse.c:160
const char * xstrerr(int error)
Definition xstrerror.cc:83