forked from box/opentsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Attempt at Authentication Plugin
Not actually authenticating, will just log some debug messages so far. Fixes OpenTSDB#501 Fixes OpenTSDB#667
- Loading branch information
1 parent
cdf1a11
commit 2c17fb0
Showing
7 changed files
with
221 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package net.opentsdb.auth; | ||
// This file is part of OpenTSDB. | ||
// Copyright (C) 2010-2012 The OpenTSDB Authors. | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 2.1 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 Lesser | ||
// General Public License for more details. You should have received a copy | ||
// of the GNU Lesser General Public License along with this program. If not, | ||
// see <http://www.gnu.org/licenses/>. | ||
|
||
import net.opentsdb.core.TSDB; | ||
import org.jboss.netty.channel.ChannelHandlerContext; | ||
import org.jboss.netty.channel.MessageEvent; | ||
import org.jboss.netty.channel.SimpleChannelUpstreamHandler; | ||
|
||
|
||
/** | ||
* @since 2.3 | ||
*/ | ||
public class AuthenticationChannelHandler extends SimpleChannelUpstreamHandler { | ||
private AuthenticationPlugin authentication = null; | ||
public AuthenticationChannelHandler(String type, TSDB tsdb) { | ||
this.authentication = tsdb.getAuth(); | ||
} | ||
@Override | ||
public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) throws Exception { | ||
if (authentication.authenticate(e)) { | ||
ctx.getPipeline().remove(this); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// This file is part of OpenTSDB. | ||
// Copyright (C) 2013 The OpenTSDB Authors. | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 2.1 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 Lesser | ||
// General Public License for more details. You should have received a copy | ||
// of the GNU Lesser General Public License along with this program. If not, | ||
// see <http://www.gnu.org/licenses/>. | ||
package net.opentsdb.auth; | ||
|
||
import net.opentsdb.core.TSDB; | ||
import net.opentsdb.meta.Annotation; | ||
import net.opentsdb.meta.TSMeta; | ||
import net.opentsdb.meta.UIDMeta; | ||
import net.opentsdb.stats.StatsCollector; | ||
|
||
import com.stumbleupon.async.Deferred; | ||
import org.jboss.netty.channel.MessageEvent; | ||
|
||
/** | ||
* @since 2.3 | ||
*/ | ||
public abstract class AuthenticationPlugin { | ||
|
||
/** | ||
* Called by TSDB to initialize the plugin | ||
* Implementations are responsible for setting up any IO they need as well | ||
* as starting any required background threads. | ||
* <b>Note:</b> Implementations should throw exceptions if they can't start | ||
* up properly. The TSD will then shutdown so the operator can fix the | ||
* problem. Please use IllegalArgumentException for configuration issues. | ||
* @param tsdb The parent TSDB object | ||
* @throws IllegalArgumentException if required configuration parameters are | ||
* missing | ||
* @throws Exception if something else goes wrong | ||
*/ | ||
public abstract void initialize(final TSDB tsdb); | ||
|
||
/** | ||
* Called to gracefully shutdown the plugin. Implementations should close | ||
* any IO they have open | ||
* @return A deferred object that indicates the completion of the request. | ||
* The {@link Object} has not special meaning and can be {@code null} | ||
* (think of it as {@code Deferred<Void>}). | ||
*/ | ||
public abstract Deferred<Object> shutdown(); | ||
|
||
/** | ||
* Should return the version of this plugin in the format: | ||
* MAJOR.MINOR.MAINT, e.g. 2.0.1. The MAJOR version should match the major | ||
* version of OpenTSDB the plugin is meant to work with. | ||
* @return A version string used to log the loaded version | ||
*/ | ||
public abstract String version(); | ||
|
||
/** | ||
* Called by the TSD when a request for statistics collection has come in. The | ||
* implementation may provide one or more statistics. If no statistics are | ||
* available for the implementation, simply stub the method. | ||
* @param collector The collector used for emitting statistics | ||
*/ | ||
public abstract void collectStats(final StatsCollector collector); | ||
|
||
public abstract Boolean authenticate(MessageEvent e); | ||
public abstract Boolean authenticate(String digest); | ||
public abstract Boolean authenticate(String username, String password); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package net.opentsdb.auth; | ||
// This file is part of OpenTSDB. | ||
// Copyright (C) 2010-2012 The OpenTSDB Authors. | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 2.1 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 Lesser | ||
// General Public License for more details. You should have received a copy | ||
// of the GNU Lesser General Public License along with this program. If not, | ||
// see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
import com.stumbleupon.async.Deferred; | ||
import net.opentsdb.core.TSDB; | ||
import net.opentsdb.stats.StatsCollector; | ||
import org.jboss.netty.channel.MessageEvent; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @since 2.3 | ||
*/ | ||
public class EmbeddedAuthenticationPlugin extends AuthenticationPlugin { | ||
private static final Logger LOG = LoggerFactory.getLogger(EmbeddedAuthenticationPlugin.class); | ||
private TSDB tsdb = null; | ||
|
||
@Override | ||
public void initialize(TSDB tsdb) { | ||
LOG.debug("initialized authentication plugin"); | ||
this.tsdb = tsdb; | ||
} | ||
|
||
@Override | ||
public Deferred<Object> shutdown() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String version() { | ||
return "2.3.0"; | ||
} | ||
|
||
@Override | ||
public void collectStats(StatsCollector collector) { | ||
|
||
} | ||
|
||
@Override | ||
public Boolean authenticate(MessageEvent e) { | ||
String username = tsdb.getConfig().getString("tsd.authentication.username"); | ||
String secret = tsdb.getConfig().getString("tsd.authentication.secret"); | ||
LOG.debug(e.getMessage().toString()); | ||
LOG.debug(username + ":" + secret); | ||
return authenticate(username, secret); | ||
} | ||
|
||
@Override | ||
public Boolean authenticate(String digest) { | ||
return true; | ||
} | ||
|
||
@Override | ||
public Boolean authenticate(String providedUsername, String providedSecret) { | ||
String correctUsername = tsdb.getConfig().getString("tsd.authentication.username"); | ||
String correctSecret = tsdb.getConfig().getString("tsd.authentication.secret"); | ||
return (correctUsername == providedUsername && correctSecret == providedSecret); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters