Click here to Skip to main content
Click here to Skip to main content

A Complete FTP Server

By , 30 May 2005
 

Sample Image

Description

This article presents a fully functional implementation of a FTP server. It can handle multiple connections at the same time (multi threaded) and has most of the features you would find in other commercial/shareware FTP servers. The server handles all basic FTP commands and offers easy user account management.

This article describes the most important classes of the application:

CFTPServer

This class is in fact the FTP server, and controls all other classes needed for the server to work. Although CFTPServer is part of a dialog based application, it does not rely on a User Interface and can easily be implemented in a service or console application as well.

  • BOOL Start()

    Activates the FTP server. It opens a listening socket (port 21) to accept connections.

  • void Stop()

    Deactivates the server and disconnects all connected clients by terminating the running threads.

  • BOOL IsActive()

    Is FTP server active?

  • void SetMaxUsers(int nValue)

    Set maximum number of users.

  • void SetPort(int nValue)

    Set listening port for new connections.

  • void SetTimeout(int nValue)

    Set connection timeout (in ms). When a client does not send any commands for nValue ms, the server will close the connection.

  • void SetWelcomeMessage(LPCTSTR lpszText)

    Set the text that will be displayed when the client logs on.

  • void Initialize(CFTPEventSink *pEventSink)

    Set the event sink. The event sink will be the window (or any class) that receives the events generated by the FTP server. See CFTPEventSink description for more info.

CFTPEventSink

To be able to 'send' events from the CFTPServer class to the main application, I used multiple inheritance and virtual functions. The CFTPEventSink is just a helper class that contains nothing else than virtual functions, when you derive your class from CFTPEventSink these virtual functions become a kind of events. The class CFTPServer has a reference to this class and calls the virtual functions when it needs to notify the application.

The following 'events' are available:

  • void OnFTPUserConnected(DWORD nThreadID, LPCTSTR lpszUser, LPCSTR lpszAddress);

    A client has successfully connected.

  • void OnFTPUserDisconnected(DWORD nThreadID, LPCTSTR lpszUser);

    A client has disconnected.

  • void OnFTPStatusChange(int nType, LPCTSTR lpszText);

    FTP server status has changed (file downloaded/uploaded).

  • void OnFTPReceivedBytesChange(int nBytes);

    The number of received bytes has changed.

  • void OnFTPSentBytesChange(int nBytes);

    The number of sent bytes received has changed.

  • void OnFTPStatisticChange(int nType, int nValue);

    A statistic has changed, for example the number of downloaded or uploaded files.

Other helper classes:

CUserManager

The class CUserManager handles all user and file related stuff. It checks the connected users for their access rights and converts remote to local paths. CUserManager uses serializing for storing and loading the user settings.

CListenSocket

This socket is part of CFTPServer and accepts incoming connections. When a clients connects to the server, CListenSocket accepts the connection and creates a new thread (CConnectThread) that will take care of all further communication between the client and the server. After the thread has been created, CListenSocket will return to its waiting state.

CConnectThread

This thread will handle all communication between the client and the server using CConnectSocket.

CConnectSocket

This socket class will process all incoming FTP commands and send back the response to the client.

CDataSocket

When data needs to be send or received, a CDataSocket will be created by CConnectSocket. The CDataSocket class will transfer this data (such as directory listings and files) on a separate port.

All the other classes are just UI related and are only included to make it look a little bit fancier.

CFTPServer Usage:

To use the class in your application, you need to do the following:

  1. Add the class to your application.
  2. Derive your main class from CFTPEventSink.
  3. Override the virtual functions of CFTPEventSink; these are the events that come from the server.
  4. Initialize the eventsink.
  5. Start the server.
class CMyDlg : public CDialog, CFTPEventSink
{
    ...

    CFTPServer m_FTPSERVER;
    
    virtual void OnFTPUserConnected(DWORD nThreadID, 
                 LPCTSTR lpszUser, LPCSTR lpszAddress);
    virtual void OnFTPUserDisconnected(DWORD nThreadID, LPCTSTR lpszUser);
    virtual void OnFTPStatusChange(int nType, LPCTSTR lpszText);
    virtual void OnFTPReceivedBytesChange(int nBytes);
    virtual void OnFTPSentBytesChange(int nBytes);
    virtual void OnFTPStatisticChange(int nType, int nValue);

    ...
}


BOOL CMyDlg::OnInitDialog()
{
    CDialog::OnInitDialog();
    
    ...

    // initialize event sink
    m_FTPSERVER.Initialize(this);
    // set maximum users to 10
    m_FTPSERVER.SetMaxUsers(10);
    // accept new connections on port 21
    m_FTPSERVER.SetPort(21);
    // activate server
    m_FTPSERVER.Start();

    return TRUE;
}

Contacting the Author

For any updates to this article, check my site.

Credits

Inspired by FileZilla Server.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Pablo van der Meer
Web Developer
Netherlands Netherlands
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5 PinmemberdarvenLee25 Aug '10 - 21:57 
GeneralHave a doubt in pasv command PinmemberSabari Girishwar Rao10 Oct '09 - 7:07 
GeneralTrying to understand what the dummy window for message routing is trying to do Pinmembertom2349928 Feb '09 - 6:55 
GeneralA question about STOR command PinmemberJason( J.Zhang)10 Dec '08 - 21:13 
Questionhow to find ftp address for my server PinmemberNprabahar23 Sep '08 - 7:39 
GeneralConverting application to object Pinmembermcunha982 Jul '08 - 5:01 
QuestionBug... 1064960 bytes and then it blocks.... PinmemberG_T29 May '08 - 6:02 
GeneralC++ .NET Source Pinmemberjmanson2 May '08 - 6:16 
QuestionHow can I get c# source code? PinmemberLeSang23 Aug '07 - 15:42 
GeneralGot errors while compling the FTPSERVER in 2.0 framework Pinmembermesh21238829 Jul '07 - 16:15 
Questioncan not run in true 64 bit PinmemberMember #160677122 Feb '07 - 5:56 
QuestionFTP url tracing Pinmemberamitbk81@yahoo.com24 Jan '07 - 20:22 
GeneralFTP url tracing Pinmemberamitbk81@yahoo.com24 Jan '07 - 20:21 
General64-bit file size Pinmemberstd.denis7 Jan '07 - 2:15 
Questionhow to run with chinese file and folder name Pinmemberfnjcr7 Dec '06 - 19:40 
Generalmultithreaded download Pinmemberlathi26 May '06 - 1:36 
QuestionA Complete FTP Server source usage PinmemberViswanatha Shastry27 Apr '06 - 20:05 
GeneralMemory leak problem. PinmemberVCPP631 Oct '04 - 15:20 
GeneralBug report in DataSocket.cpp PinmemberVCPP69 Sep '04 - 8:42 
GeneralBug report in OnReceive function PinsussJim Fougeron26 Jun '04 - 10:56 
GeneralCompiling in VS.NET 2003 PinmemberShnaider29 May '04 - 15:04 
GeneralUsing scripts PinmemberHellachuckles1 Feb '04 - 8:59 
GeneralA word of caution.... Pinmembervrosu12 Jan '04 - 10:05 
QuestionHow can I capture the spying on others machine. PinmemberHimadrish Laha26 Nov '03 - 19:44 
GeneralProblem with Using MFC in a Static library Pinmemberyydlh5 Nov '03 - 14:13 
QuestionBug on CInternetSession::SetOption? Pinmembernaghicalin16 Oct '03 - 11:31 
GeneralFtp Connection not working Pinmembergirishnadig18 Sep '03 - 6:31 
QuestionHow can I turning the server into UTF8 mode ?? Pinsussgolick11 Sep '03 - 1:04 
GeneralPorting CFTPServer to PocketPC Pinmembervpitts11 Jul '03 - 13:40 
Generalcrash when uploading directory recursively using WINCMD32 Pinmembercoeus8 Jul '03 - 0:35 
GeneralCAsyncSocket::LookupHandle(...) crashing upon connection PinmemberIGx8926 Jun '03 - 5:07 
QuestionMultiple Data Connections??? PinmemberMubashar_Ahmad6 Jun '03 - 20:59 
Generalone problem Pinmemberchito2 Jun '03 - 16:33 
Generalstatic_cast error VC++ .Net PinsussAnonymous16 Sep '02 - 18:09 
GeneralRight PinmemberDavide Zaccanti8 Sep '02 - 5:19 
GeneralProblem on static library PinsussAnonymous7 Sep '02 - 21:15 
Questionbug ?? Pinsussmutex4 Sep '02 - 16:37 
GeneralSo what PinsussAnonymous2 Aug '02 - 4:13 
QuestionWhat about security?? PinsussParas Shah16 Jul '02 - 21:15 
GeneralVery good stuff PinmemberHalls15 Jul '02 - 7:51 
Generalsome tips PinsussAnonymous12 Jul '02 - 13:19 
GeneralLooks great! PinmemberMatt Newman12 Jul '02 - 5:15 
GeneralThis server uses code from FileZilla Server and violates the GPL PinmemberTim Kosse12 Jul '02 - 2:12 14 
Generalamazing PinmemberFranz Brunner11 Jul '02 - 23:11 
GeneralAnother bug PinmemberTim Kosse11 Jul '02 - 21:51 
General"In a galaxy far, far.." PinmemberVictor Vogelpoel11 Jul '02 - 21:30 
GeneralWARNING: Directory traversal vulnerability found!! PinmemberTim Kosse11 Jul '02 - 21:26 
GeneralExcellent Contribution PinmemberJason Hooper11 Jul '02 - 20:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 30 May 2005
Article Copyright 2002 by Pablo van der Meer
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid