/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 33 Client-side Routines */ #ifndef SQUID_SERVERS_FTP_SERVER_H #define SQUID_SERVERS_FTP_SERVER_H #include "base/Lock.h" #include "client_side.h" namespace Ftp { typedef enum { fssBegin, fssConnected, fssHandleFeat, fssHandlePasv, fssHandlePort, fssHandleDataRequest, fssHandleUploadRequest, fssHandleEprt, fssHandleEpsv, fssHandleCwd, fssHandlePass, fssHandleCdup, fssError } ServerState; // TODO: This should become a part of MasterXaction when we start sending // master transactions to the clients/ code. /// Transaction information shared among our FTP client and server jobs. class MasterState: public RefCountable { public: typedef RefCount Pointer; MasterState(): serverState(fssBegin), clientReadGreeting(false), userDataDone(0) {} Ip::Address clientDataAddr; ///< address of our FTP client data connection SBuf workingDir; ///< estimated current working directory for URI formation ServerState serverState; ///< what our FTP server is doing bool clientReadGreeting; ///< whether our FTP client read their FTP server greeting /// Squid will send or has sent this final status code to the FTP client int userDataDone; }; /// Manages a control connection from an FTP client. class Server: public ConnStateData { public: explicit Server(const MasterXaction::Pointer &xact); virtual ~Server(); /* AsyncJob API */ virtual void callException(const std::exception &e); /// Called by Ftp::Client class when it is start receiving or /// sending data. void startWaitingForOrigin(); /// Called by Ftp::Client class when it is done receiving or /// sending data. Waits for both agents to be done before /// responding to the FTP client and closing the data connection. void stopWaitingForOrigin(int status); // This is a pointer in hope to minimize future changes when MasterState // becomes a part of MasterXaction. Guaranteed not to be nil. MasterState::Pointer master; ///< info shared among our FTP client and server jobs protected: friend void StartListening(); // errors detected before it is possible to create an HTTP request wrapper typedef enum { eekHugeRequest, eekMissingLogin, eekMissingUsername, eekMissingHost, eekUnsupportedCommand, eekInvalidUri, eekMalformedCommand } EarlyErrorKind; /* ConnStateData API */ virtual ClientSocketContext *parseOneRequest(Http::ProtocolVersion &ver); virtual void processParsedRequest(ClientSocketContext *context, const Http::ProtocolVersion &ver); virtual void notePeerConnection(Comm::ConnectionPointer conn); virtual void clientPinnedConnectionClosed(const CommCloseCbParams &io); virtual void handleReply(HttpReply *header, StoreIOBuffer receivedData); virtual int pipelinePrefetchMax() const; virtual bool writeControlMsgAndCall(ClientSocketContext *context, HttpReply *rep, AsyncCall::Pointer &call); virtual time_t idleTimeout() const; /* BodyPipe API */ virtual void noteMoreBodySpaceAvailable(BodyPipe::Pointer); virtual void noteBodyConsumerAborted(BodyPipe::Pointer ptr); /* AsyncJob API */ virtual void start(); /* Comm callbacks */ static void AcceptCtrlConnection(const CommAcceptCbParams ¶ms); void acceptDataConnection(const CommAcceptCbParams ¶ms); void readUploadData(const CommIoCbParams &io); void wroteEarlyReply(const CommIoCbParams &io); void wroteReply(const CommIoCbParams &io); void wroteReplyData(const CommIoCbParams &io); void connectedForData(const CommConnectCbParams ¶ms); unsigned int listenForDataConnection(); bool createDataConnection(Ip::Address cltAddr); void closeDataConnection(); /// Called after data trasfer on client-to-squid data connection is /// finished. void userDataCompletionCheckpoint(int finalStatusCode); /// Writes the data-transfer status reply to the FTP client and /// closes the data connection. void completeDataDownload(); void calcUri(const SBuf *file); void changeState(const Ftp::ServerState newState, const char *reason); ClientSocketContext *handleUserRequest(const SBuf &cmd, SBuf ¶ms); bool checkDataConnPost() const; void replyDataWritingCheckpoint(); void maybeReadUploadData(); void setReply(const int code, const char *msg); void writeCustomReply(const int code, const char *msg, const HttpReply *reply = NULL); void writeEarlyReply(const int code, const char *msg); void writeErrorReply(const HttpReply *reply, const int status); void writeForwardedForeign(const HttpReply *reply); void writeForwardedReply(const HttpReply *reply); void writeForwardedReplyAndCall(const HttpReply *reply, AsyncCall::Pointer &call); void writeReply(MemBuf &mb); ClientSocketContext *earlyError(const EarlyErrorKind eek); bool handleRequest(HttpRequest *); void setDataCommand(); bool checkDataConnPre(); /// a method handling an FTP command; selected by handleRequest() typedef bool (Ftp::Server::*RequestHandler)(String &cmd, String ¶ms); bool handleFeatRequest(String &cmd, String ¶ms); bool handlePasvRequest(String &cmd, String ¶ms); bool handlePortRequest(String &cmd, String ¶ms); bool handleDataRequest(String &cmd, String ¶ms); bool handleUploadRequest(String &cmd, String ¶ms); bool handleEprtRequest(String &cmd, String ¶ms); bool handleEpsvRequest(String &cmd, String ¶ms); bool handleCwdRequest(String &cmd, String ¶ms); bool handlePassRequest(String &cmd, String ¶ms); bool handleCdupRequest(String &cmd, String ¶ms); /// a method handling an FTP response; selected by handleReply() typedef void (Ftp::Server::*ReplyHandler)(const HttpReply *reply, StoreIOBuffer data); void handleFeatReply(const HttpReply *header, StoreIOBuffer receivedData); void handlePasvReply(const HttpReply *header, StoreIOBuffer receivedData); void handlePortReply(const HttpReply *header, StoreIOBuffer receivedData); void handleErrorReply(const HttpReply *header, StoreIOBuffer receivedData); void handleDataReply(const HttpReply *header, StoreIOBuffer receivedData); void handleUploadReply(const HttpReply *header, StoreIOBuffer receivedData); void handleEprtReply(const HttpReply *header, StoreIOBuffer receivedData); void handleEpsvReply(const HttpReply *header, StoreIOBuffer receivedData); private: void doProcessRequest(); void shovelUploadData(); void resetLogin(const char *reason); SBuf uri; ///< a URI reconstructed from various FTP message details SBuf host; ///< intended dest. of a transparently intercepted FTP conn bool gotEpsvAll; ///< restrict data conn setup commands to just EPSV AsyncCall::Pointer onDataAcceptCall; ///< who to call upon data conn acceptance Comm::ConnectionPointer dataListenConn; ///< data connection listening socket Comm::ConnectionPointer dataConn; ///< data connection char uploadBuf[CLIENT_REQ_BUF_SZ]; ///< data connection input buffer size_t uploadAvailSize; ///< number of yet unused uploadBuf bytes AsyncCall::Pointer listener; ///< set when we are passively listening AsyncCall::Pointer connector; ///< set when we are actively connecting AsyncCall::Pointer reader; ///< set when we are reading FTP data /// whether we wait for the origin data transfer to end bool waitingForOrigin; /// whether the origin data transfer aborted bool originDataDownloadAbortedOnError; /// a response which writing was postponed until stopWaitingForOrigin() HttpReply::Pointer delayedReply; CBDATA_CLASS2(Server); }; } // namespace Ftp #endif /* SQUID_SERVERS_FTP_SERVER_H */