123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- /****************************************************************/
- /* */
- /* LYFZIPReceive.cpp */
- /* */
- /* Implementation of the CLYFZIPReceive class. */
- /* This class is a part of the FTP Server Application */
- /* */
- /* Programmed by LYFZ van der Meer */
- /* Copyright LYFZ Software Solutions 2002 */
- /* http://www.LYFZvandermeer.nl */
- /* */
- /* Last updated: 10 july 2002 */
- /* */
- /****************************************************************/
- #include "stdafx.h"
- #include "LYFZIPReceive.h"
- extern int g_port;
- CLYFZIPReceive *g_pWndServer=NULL;
- CLYFZIPReceive::CLYFZIPReceive()
- {
- m_nPort = g_port;
- m_nMaxUsers = 500;
- m_strWelcomeMessage = "Welcome to LYFZ FTP Server";
- m_strGoodbyeMessage = "Bye";
- m_nTimeout = 10;
- m_bRunning = FALSE;
- m_hWnd = NULL;
- m_nConnectionCount = 0;
- // intialize statistics
- m_dwTotalSentBytes = 0;
- m_dwTotalReceivedBytes = 0;
- m_nTotalConnections = 0;
- m_nFilesDownloaded = 0;
- m_nFilesUploaded = 0;
- m_nFailedDownloads = 0;
- m_nFailedUploads = 0;
- m_nSecurityMode = 0;
- m_nStatisticsInterval = 0;
- // load users
- m_UserManager.Serialize(FALSE);
- // load security
- m_SecurityManager.Serialize(FALSE);
- }
- CLYFZIPReceive::~CLYFZIPReceive()
- {
- Stop();
- }
- BEGIN_MESSAGE_MAP(CLYFZIPReceive, CWnd)
- //{{AFX_MSG_MAP(CLYFZIPReceive)
- ON_WM_TIMER()
- //}}AFX_MSG_MAP
- ON_MESSAGE(WM_THREADSTART, OnThreadStart)
- ON_MESSAGE(WM_THREADCLOSE, OnThreadClose)
- ON_MESSAGE(WM_THREADMSG, OnThreadMessage)
- END_MESSAGE_MAP()
- /********************************************************************/
- /* */
- /* Function name : Start */
- /* Description : Start listining on port 21 and accept new */
- /* connections. */
- /* */
- /********************************************************************/
- //在21号端口启动侦听并准备接受新的连接
- BOOL CLYFZIPReceive::Start()
- {
- if (m_bRunning)
- return FALSE;
- // 为消息发送创建一个新的窗口
- if (!CWnd::CreateEx(0, AfxRegisterWndClass(0), "FTP Server Notification Sink", WS_POPUP, 0,0,0,0, NULL, 0))
- {
- AddTraceLine(0, "Failed to create notification window.");
- return FALSE;
- }
- // 创建一个新的套接字
- if (m_ListenSocket.Create(g_port))
- {
- // 启动侦听
- if (m_ListenSocket.Listen())
- {
-
- g_pWndServer=this;
- // m_ListenSocket.m_pWndServer = this;
- m_bRunning = TRUE;
-
- SetTimer(1, m_nStatisticsInterval, NULL);
- AddTraceLine(0, "FTP Server started on port %d.", g_port);
- return TRUE;
- }
- }
- AddTraceLine(0, "FTP Server failed to listen on port %d.", g_port);
- // 销毁通知窗口
- if (IsWindow(m_hWnd))
- DestroyWindow();
- m_hWnd = NULL;
- return FALSE;
- }
- /********************************************************************/
- /* */
- /* Function name : Stop */
- /* Description : Stop FTP server. */
- /* */
- /********************************************************************/
- //停止FTP服务器
- void CLYFZIPReceive::Stop()
- {
- if (!m_bRunning)
- return;
- // 停止统计计时器
- KillTimer(1);
- m_bRunning = FALSE;
- m_ListenSocket.Close();
- CConnectThread* pThread = NULL;
- //关闭所有线程
- do
- {
- m_CriticalSection.Lock();
- POSITION pos = m_ThreadList.GetHeadPosition();
- if (pos != NULL)
- {
- pThread = (CConnectThread *)m_ThreadList.GetAt(pos);
-
- m_CriticalSection.Unlock();
- // 保存线程
- int nThreadID = pThread->m_nThreadID;
- HANDLE hThread = pThread->m_hThread;
- AddTraceLine(0, "[%d] Shutting down thread...", nThreadID);
- // 通知线程停止
- pThread->SetThreadPriority(THREAD_PRIORITY_HIGHEST);
- pThread->PostThreadMessage(WM_QUIT,0,0);
- //等待线程终止
- if (WaitWithMessageLoop(hThread, 5000) == FALSE)
- {
- // 线程不能终止
- AddTraceLine(0, "[%d] Problem while killing thread.", nThreadID);
- //清除线程
- m_CriticalSection.Lock();
- POSITION rmPos = m_ThreadList.Find(pThread);
- if (rmPos != NULL)
- m_ThreadList.RemoveAt(rmPos);
- m_CriticalSection.Unlock();
- }
- else
- {
- AddTraceLine(0, "[%d] Thread successfully stopped.", nThreadID);
- }
- }
- else
- {
- m_CriticalSection.Unlock();
- pThread = NULL;
- }
- }
- while (pThread != NULL);
- //更新服务器状态
- AddTraceLine(0, "FTP Server stopped.");
- if (IsWindow(m_hWnd))
- DestroyWindow();
- m_hWnd = NULL;
- }
- /********************************************************************/
- /* */
- /* Function name : IsActive */
- /* Description : Is FTP server active? */
- /* */
- /********************************************************************/
- BOOL CLYFZIPReceive::IsActive()
- {
- return m_bRunning;
- }
- /********************************************************************/
- /* */
- /* Function name : SetMaxUsers */
- /* Description : Set maximum number of users */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetMaxUsers(int nValue)
- {
- m_nMaxUsers = nValue;
- }
- /********************************************************************/
- /* */
- /* Function name : SetPort */
- /* Description : Set listening port for new connections */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetPort(int nValue)
- {
- m_nPort = nValue;
- }
- /********************************************************************/
- /* */
- /* Function name : SetTimeout */
- /* Description : Set connection timeout */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetTimeout(int nValue)
- {
- m_nTimeout = nValue;
- }
- /********************************************************************/
- /* */
- /* Function name : SetTimeout */
- /* Description : Set connection timeout */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetStatisticsInterval(int nValue)
- {
- m_nStatisticsInterval = nValue;
- if (m_nStatisticsInterval != 0)
- {
- KillTimer(1);
- SetTimer(1, nValue, NULL);
- }
- else
- {
- KillTimer(1);
- }
- }
- /********************************************************************/
- /* */
- /* Function name : SetWelcomeMessage */
- /* Description : Set welcome message */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetWelcomeMessage(LPCTSTR lpszText)
- {
- m_strWelcomeMessage = lpszText;
- }
- /********************************************************************/
- /* */
- /* Function name : SetGoodbyeMessage */
- /* Description : Set goodbye message */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetGoodbyeMessage(LPCTSTR lpszText)
- {
- m_strGoodbyeMessage = lpszText;
- }
- /********************************************************************/
- /* */
- /* Function name : Initialize */
- /* Description : Initialize event sink. */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::Initialize(CFTPEventSink *pEventSink)
- {
- m_pEventSink = pEventSink;
- }
- /********************************************************************/
- /* */
- /* Function name : AddTraceLine */
- /* Description : FTP status change. */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::AddTraceLine(int nType, LPCTSTR pstrFormat, ...)
- {
- CString str;
- // format and write the data we were given
- va_list args;
- va_start(args, pstrFormat);
- str.FormatV(pstrFormat, args);
- m_pEventSink->OnFTPStatusChange(nType, str);
- }
- /********************************************************************/
- /* */
- /* Function name : OnThreadStart */
- /* Description : Called when a new thread has started. */
- /* */
- /********************************************************************/
- LRESULT CLYFZIPReceive::OnThreadStart(WPARAM wParam, LPARAM)
- {
- m_nConnectionCount++;
- m_nTotalConnections++;
- CConnectThread *pThread = (CConnectThread *)wParam;
-
- // pThread->m_ConnectSocket.GetPeerName(pThread->m_strRemoteHost, port);
- AddTraceLine(0, "[%d] Client connected from %s.", pThread->m_nThreadID, pThread->m_strRemoteHost);
- AfxGetMainWnd()->KillTimer (1);
- AfxGetMainWnd()->SetTimer(1, 5*60*1000, NULL);
- return TRUE;
- }
- /********************************************************************/
- /* */
- /* Function name : OnThreadClose */
- /* Description : Called when a thread is about to stop. */
- /* */
- /********************************************************************/
- LRESULT CLYFZIPReceive::OnThreadClose(WPARAM wParam, LPARAM lParam)
- {
- m_nConnectionCount--;
- CConnectThread *pThread = (CConnectThread *)wParam;
- AddTraceLine(0, "[%d] Client disconnected from %s.", pThread->m_nThreadID, pThread->m_strRemoteHost);
-
- m_pEventSink->OnFTPUserDisconnected(pThread->m_nThreadID, pThread->m_ConnectSocket.m_strUserName);
- return TRUE;
- }
- /********************************************************************/
- /* */
- /* Function name : OnThreadMessage */
- /* Description : Message sent from connect connection. */
- /* */
- /********************************************************************/
- LRESULT CLYFZIPReceive::OnThreadMessage(WPARAM wParam, LPARAM lParam)
- {
- switch(wParam)
- {
- case 0:
- m_dwTotalSentBytes += (int)lParam;
- break;
- case 1:
- m_dwTotalReceivedBytes += (int)lParam;
- break;
- case 2:
- switch(lParam)
- {
- case FTPSTAT_DOWNLOADSUCCEEDED:
- m_nFilesDownloaded++;
- break;
- case FTPSTAT_UPLOADSUCCEEDED:
- m_nFilesUploaded++;
- break;
- case FTPSTAT_DOWNLOADFAILED:
- m_nFailedDownloads++;
- break;
- case FTPSTAT_UPLOADFAILED:
- m_nFailedUploads++;
- break;
- }
- break;
- default:
-
- break;
- }
- return TRUE;
- }
- /********************************************************************/
- /* */
- /* Function name : CheckMaxUsers */
- /* Description : Reached maximum number of connections? */
- /* */
- /********************************************************************/
- BOOL CLYFZIPReceive::CheckMaxUsers()
- {
- if (m_nConnectionCount > 100)
- return TRUE;
- else
- return FALSE;
- }
- /********************************************************************/
- /* */
- /* Function name : OnTimer */
- /* Description : Update statictics. */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::OnTimer(UINT nIDEvent)
- {
- // update statictics ?
- if (nIDEvent == 1)
- {
- m_pEventSink->OnFTPSentBytesChange(m_dwTotalSentBytes);
- m_pEventSink->OnFTPReceivedBytesChange(m_dwTotalReceivedBytes);
- m_pEventSink->OnFTPStatisticChange(0, m_nTotalConnections);
- m_pEventSink->OnFTPStatisticChange(1, m_nConnectionCount);
- m_pEventSink->OnFTPStatisticChange(2, m_nFilesDownloaded);
- m_pEventSink->OnFTPStatisticChange(3, m_nFilesUploaded);
- m_pEventSink->OnFTPStatisticChange(4, m_nFailedDownloads);
- m_pEventSink->OnFTPStatisticChange(5, m_nFailedUploads);
- }
- CWnd::OnTimer(nIDEvent);
- }
- /********************************************************************/
- /* */
- /* Function name : SetSecurityMode */
- /* Description : Set security mode. */
- /* */
- /********************************************************************/
- void CLYFZIPReceive::SetSecurityMode(BOOL bBlockSpecific)
- {
- m_nSecurityMode = bBlockSpecific ? 0 : 1;
- }
- /********************************************************************/
- /* */
- /* Function name : IsIPAddressAllowed */
- /* Description : Check (based on blockmode) if IP is allowed. */
- /* */
- /********************************************************************/
- BOOL CLYFZIPReceive::IsIPAddressAllowed(LPCTSTR lpszIPAddress)
- {
- if (m_nSecurityMode == 0)
- {
- return !m_SecurityManager.IsIPAddressBlocked(lpszIPAddress);
- }
- else
- {
- return m_SecurityManager.IsIPAddressNonBlocked(lpszIPAddress);
- }
- }
|