123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.loginserver;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.io.LineNumberReader;
- import java.net.InetAddress;
- import java.net.UnknownHostException;
- import java.security.GeneralSecurityException;
- import java.sql.SQLException;
- import java.util.logging.Level;
- import java.util.logging.LogManager;
- import java.util.logging.Logger;
- import org.mmocore.network.SelectorConfig;
- import org.mmocore.network.SelectorThread;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.Server;
- import com.l2jserver.status.Status;
- /**
- *
- * @author KenM
- */
- public class L2LoginServer
- {
- public static final int PROTOCOL_REV = 0x0104;
-
- private static L2LoginServer _instance;
- private Logger _log = Logger.getLogger(L2LoginServer.class.getName());
- private GameServerListener _gameServerListener;
- private SelectorThread<L2LoginClient> _selectorThread;
- private Status _statusServer;
-
- public static void main(String[] args)
- {
- _instance = new L2LoginServer();
- }
-
- public static L2LoginServer getInstance()
- {
- return _instance;
- }
-
- public L2LoginServer()
- {
- Server.serverMode = Server.MODE_LOGINSERVER;
- // Local Constants
- final String LOG_FOLDER = "log"; // Name of folder for log file
- final String LOG_NAME = "./log.cfg"; // Name of log file
-
- /*** Main ***/
- // Create log folder
- File logFolder = new File(Config.DATAPACK_ROOT, LOG_FOLDER);
- logFolder.mkdir();
-
- // Create input stream for log file -- or store file data into memory
- InputStream is = null;
- try
- {
- is = new FileInputStream(new File(LOG_NAME));
- LogManager.getLogManager().readConfiguration(is);
- is.close();
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- finally
- {
- try
- {
- if (is != null)
- {
- is.close();
- }
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- }
-
- // Load Config
- Config.load();
-
- // Prepare Database
- try
- {
- L2DatabaseFactory.getInstance();
- }
- catch (SQLException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed initializing database. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
-
- try
- {
- LoginController.load();
- }
- catch (GeneralSecurityException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed initializing LoginController. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
-
- try
- {
- GameServerTable.load();
- }
- catch (GeneralSecurityException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed to load GameServerTable. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
- catch (SQLException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed to load GameServerTable. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
-
- loadBanFile();
-
- InetAddress bindAddress = null;
- if (!Config.LOGIN_BIND_ADDRESS.equals("*"))
- {
- try
- {
- bindAddress = InetAddress.getByName(Config.LOGIN_BIND_ADDRESS);
- }
- catch (UnknownHostException e)
- {
- _log.log(Level.WARNING, "WARNING: The LoginServer bind address is invalid, using all avaliable IPs. Reason: " + e.getMessage(), e);
- }
- }
-
- final SelectorConfig sc = new SelectorConfig();
- sc.MAX_READ_PER_PASS = Config.MMO_MAX_READ_PER_PASS;
- sc.MAX_SEND_PER_PASS = Config.MMO_MAX_SEND_PER_PASS;
- sc.SLEEP_TIME = Config.MMO_SELECTOR_SLEEP_TIME;
- sc.HELPER_BUFFER_COUNT = Config.MMO_HELPER_BUFFER_COUNT;
-
- final L2LoginPacketHandler lph = new L2LoginPacketHandler();
- final SelectorHelper sh = new SelectorHelper();
- try
- {
- _selectorThread = new SelectorThread<L2LoginClient>(sc, sh, lph, sh, sh);
- }
- catch (IOException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed to open Selector. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
-
- try
- {
- _gameServerListener = new GameServerListener();
- _gameServerListener.start();
- _log.info("Listening for GameServers on " + Config.GAME_SERVER_LOGIN_HOST + ":" + Config.GAME_SERVER_LOGIN_PORT);
- }
- catch (IOException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed to start the Game Server Listener. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
-
- if (Config.IS_TELNET_ENABLED)
- {
- try
- {
- _statusServer = new Status(Server.serverMode);
- _statusServer.start();
- }
- catch (IOException e)
- {
- _log.log(Level.WARNING, "Failed to start the Telnet Server. Reason: " + e.getMessage(), e);
- }
- }
- else
- {
- _log.info("Telnet server is currently disabled.");
- }
-
- try
- {
- _selectorThread.openServerSocket(bindAddress, Config.PORT_LOGIN);
- }
- catch (IOException e)
- {
- _log.log(Level.SEVERE, "FATAL: Failed to open server socket. Reason: " + e.getMessage(), e);
- System.exit(1);
- }
- _selectorThread.start();
- _log.info("Login Server ready on " + (bindAddress == null ? "*" : bindAddress.getHostAddress()) + ":" + Config.PORT_LOGIN);
- }
-
- public Status getStatusServer()
- {
- return _statusServer;
- }
-
- public GameServerListener getGameServerListener()
- {
- return _gameServerListener;
- }
-
- private void loadBanFile()
- {
- File bannedFile = new File("./banned_ip.cfg");
- if (bannedFile.exists() && bannedFile.isFile())
- {
- FileInputStream fis = null;
- try
- {
- fis = new FileInputStream(bannedFile);
- }
- catch (FileNotFoundException e)
- {
- _log.log(Level.WARNING, "Failed to load banned IPs file (" + bannedFile.getName() + ") for reading. Reason: " + e.getMessage(), e);
- return;
- }
-
- LineNumberReader reader = null;
- String line;
- String[] parts;
- try
- {
- reader = new LineNumberReader(new InputStreamReader(fis));
-
- while ((line = reader.readLine()) != null)
- {
- line = line.trim();
- // check if this line isnt a comment line
- if (line.length() > 0 && line.charAt(0) != '#')
- {
- // split comments if any
- parts = line.split("#", 2);
-
- // discard comments in the line, if any
- line = parts[0];
-
- parts = line.split(" ");
-
- String address = parts[0];
-
- long duration = 0;
-
- if (parts.length > 1)
- {
- try
- {
- duration = Long.parseLong(parts[1]);
- }
- catch (NumberFormatException e)
- {
- _log.warning("Skipped: Incorrect ban duration (" + parts[1] + ") on (" + bannedFile.getName() + "). Line: " + reader.getLineNumber());
- continue;
- }
- }
-
- try
- {
- LoginController.getInstance().addBanForAddress(address, duration);
- }
- catch (UnknownHostException e)
- {
- _log.warning("Skipped: Invalid address (" + parts[0] + ") on (" + bannedFile.getName() + "). Line: " + reader.getLineNumber());
- }
- }
- }
- }
- catch (IOException e)
- {
- _log.log(Level.WARNING, "Error while reading the bans file (" + bannedFile.getName() + "). Details: " + e.getMessage(), e);
- }
- finally
- {
- try
- {
- reader.close();
- }
- catch (Exception e)
- {
- }
-
- try
- {
- fis.close();
- }
- catch (Exception e)
- {
- }
- }
- _log.info("Loaded " + LoginController.getInstance().getBannedIps().size() + " IP Bans.");
- }
- else
- {
- _log.warning("IP Bans file (" + bannedFile.getName() + ") is missing or is a directory, skipped.");
- }
- }
-
- public void shutdown(boolean restart)
- {
- Runtime.getRuntime().exit(restart ? 2 : 0);
- }
- }
|