Tuesday, December 18, 2012

Dumpy - A Simple PCAP Spool File Frontend

Sometimes the best way to try out a new framework or language is to apply it to a domain you already know very well, even if it does happen to reinvent the wheel.  Tornado and Twitter Bootstrap are two such frameworks I've been meaning to play with for a while now. The result is Dumpy, a web front-end to pcap spool files as created by tcpdump, daemonlogger, or netsniff-ng with a very simple configuration and user interface:



Requirements are minimal, Python 2.6 (so it will run on CentOS 6 with little hassle), Tornado and py-bcrypt which are both trivially installed with pip. It provides its own http server with SSL support, and does not require a database.

Usage is also simple.  Simply enter a pcap filter, or paste in a Snort or Suricata event in "fast" format, choose  start and end times (or simply offsets) and hit download.

If interested, start a pcap spool (ie: sudo tcpdump -i eth0 -C 1000 -W10 -G 3600 -w /tmp/eth0.log.%Y%m%d.) then check out Dumpy over here https://bitbucket.org/ish/dumpy.

Thursday, December 13, 2012

SpringMVC with Embedded Jetty and Thymeleaf

As mentioned in my previous post on using embedded Jetty with SpringMVC, I was going to look at simplifying the application by using Thymeleaf instead of JSPs as a view technology.

Well, it turns out that it is much more straightforward.

First we can remove the JSPC plugin from our pom.xml. Second we can completely remove the web.xml file.

Bootstrapping Jetty is much simpler now. We do not have to hook into the Jetty startup process with a lifecycle listener, instead we can directly create the dispatcher servlet and add it to a ServletContextHandler like we would any other servlet:

From JettyConfiguration.java:
@Bean
public ServletHolder dispatcherServlet() {
    AnnotationConfigWebApplicationContext ctx = 
        new AnnotationConfigWebApplicationContext();
    ctx.setParent(applicationContext);
    ctx.register(MvcConfiguration.class);
    DispatcherServlet servlet = new DispatcherServlet(ctx);
    ServletHolder holder = new ServletHolder("dispatcher-servlet", servlet);
    holder.setInitOrder(1);
    return holder;
}

@Bean
public ServletContextHandler servletContext() throws IOException {
    ServletContextHandler handler = new ServletContextHandler();
    handler.setContextPath("/");
    handler.setResourceBase(
        new ClassPathResource("webapp").getURI().toString());
    handler.addServlet(AdminServlet.class, "/metrics/*");
    handler.addServlet(dispatcherServlet(), "/");
    return handler;
}

@Bean(initMethod = "start", destroyMethod = "stop")
public Server jettyServer() throws IOException {
    Server server = new Server();
    server.setHandler(servletContext());
    server.setConnectors(jettyConnectors());
    return server;
}

This is much more straightforward, everything wired up with Spring without any lifecycle callback hooks.

The setup for Spring to render the Thymeleaf views, is a little more complex, but not fussy. What we do is replace:

@Bean
public InternalResourceViewResolver configureInternalResourceViewResolver() {
    InternalResourceViewResolver resolver = 
        new InternalResourceViewResolver();
    resolver.setPrefix("/WEB-INF/views/");
    resolver.setSuffix(".jsp");
    return resolver;
}

with

@Bean
public ServletContextTemplateResolver thymeleafTemplateResolver() {
    ServletContextTemplateResolver resolver = 
        new ServletContextTemplateResolver();
    resolver.setPrefix("/WEB-INF/thymeleaf/");
    resolver.setSuffix(".html");
    resolver.setTemplateMode("HTML5");
    resolver.setCacheable(true);
    return resolver;
}

@Bean
public SpringTemplateEngine thymeleafTemplateEngine() {
    SpringTemplateEngine engine = new SpringTemplateEngine();
    engine.setTemplateResolver(thymeleafTemplateResolver());
    return engine;
}

@Bean
public ThymeleafViewResolver thymeleafViewResolver() {
    ThymeleafViewResolver resolver = new ThymeleafViewResolver();
    resolver.setTemplateEngine(thymeleafTemplateEngine());
    return resolver;
}

in MvcConfiguration.java.

Our templates now look a lot more like plain HTML, and will render better when loaded directly in a browser:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Home</title>
</head>
<body>
<h1>Hello World!</h1>

<p>Server time: <span th:text="${serverTime}"></span></p>

<p>Here are some items:</p>
<ul>
    <li th:each="item : ${someItems}" th:text="${item}"></li>
</ul>

<p>Do we have a message from the dummy service:</p>

<div th:if="${dummyService == null}">
    <p>No, dummy service is null.</p>
</div>
<div th:if="${dummyService != null}">
    <p>Yes: <span th:text="${dummyService.getMessage()}"></span></p>
</div>

<p><a href="resources/static.txt">A static file.</a></p>

<p><a href="metrics">Yammer Metrics</a></p>

</body>
</html>

With the build process being simple (no dependence on maven plugins) we can switch to a much less verbose Gradle build file:

apply plugin:'java'
apply plugin:'application'

version = '0.0.1-SNAPSHOT'

mainClassName = "ca.unx.template.Main"
applicationName = "jetty-springmvc-thymeleaf-template"

repositories {
    mavenCentral()
}

dependencies {
    compile("org.springframework:spring-webmvc:3.1.3.RELEASE") {
        // Commons-logging excluded in favour of SLF4j.
        exclude module: 'commons-logging'
    }

    compile "cglib:cglib:2.2.2"
    compile "org.thymeleaf:thymeleaf-spring3:2.0.14"
    compile "org.eclipse.jetty:jetty-webapp:8.1.8.v20121106"
    compile "com.yammer.metrics:metrics-servlet:2.2.0"

    /* Logging. */
    def slf4jVersion = "1.7.1"
    compile "ch.qos.logback:logback-classic:1.0.9"
    compile "org.slf4j:slf4j-api:$slf4jVersion"
    compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"
    compile "org.codehaus.groovy:groovy:1.8.6"
}

A complete template project can be found here. Note that this links to tag which is the state of the code at the time of this writing.

Friday, December 7, 2012

SpringMVC with Embedded Jetty

As an accidental Java developer I've never been comfortable deploying applications into a container, especially when the web interface is secondary to the primary purpose of the application. Instead I prefer to programatically create and manage the web interface rather than have it manage me. Currently SpringMVC is my Java web framework of choice (due to company convention more than anything else) and it is built around the idea of being managed by a container such as Jetty or Tomcat.

While there is no shortage of existing posts on using SpringMVC with embedded Jetty, they fail for me due to the following reasons:

  • They embed Jetty just enough to bootstrap something that looks like a classic Java web application - not what I want!
  • They don't address JSPs - the default view technology used by SpringMVC.

Compile Those JSPs

By compiling the JSPs prior to deployment we can save ourselves from the hassle of classpath issues, especially relating to tag libs.

<plugin>
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>jetty-jspc-maven-plugin</artifactId>
  <version>${jetty.version}</version>
  <executions>
    <execution>
      <phase>compile</phase>
      <id>jspc</id>
      <goals>
        <goal>jspc</goal>
      </goals>
      <configuration>
        <webAppSourceDirectory>
          ${basedir}/src/main/resources/webapp
        </webAppSourceDirectory>
        <webXml>
          ${basedir}/src/main/resources/webapp/WEB-INF/web.xml
        </webXml>
        <webXmlFragment>
          ${basedir}/target/classes/webapp/WEB-INF/web.xml-frag
        </webXmlFragment>
      </configuration>
    </execution>
  </executions>
</plugin>

This plugin will compile all the JSPs found under src/main/resources/webapp and modify the existing web.xml to direct requests for the JSPs to the pre-compiled versions. This avoids compiling them at runtime and speeds up the time it takes to respond to the first request for a JSP.

You may also notice that the JSPs are under src/main/resources/webapp instead of the more common src/main/webapp. This is to avoid extra lines in the pom.xml to pull in webapp as a resource, as we are packaging as a jar.

Bootstrapping Jetty

I use Spring annotations to configure Jetty and import its @Configuration class into my root context configuration class. In order for the SpringMVC dispatcher servlet to access beans created in the root context, this class needs to be application context aware:

@Configuration
public class JettyConfiguration implements ApplicationContextAware {
    private ApplicationContext applicationContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext)
            throws BeansException {
        this.applicationContext = applicationContext;
    }

this is used as the parent context for the new context that will be created for the SpringMVC dispatcher servlet:

@Bean
public ServletHolder dispatcherServlet() {
    AnnotationConfigWebApplicationContext ctx = 
        new AnnotationConfigWebApplicationContext();
    ctx.setParent(applicationContext);
    ctx.register(MvcConfiguration.class);
    DispatcherServlet servlet = new DispatcherServlet(ctx);
    ServletHolder holder = new ServletHolder("dispatcher-servlet", 
        servlet);
    holder.setInitOrder(1);
    return holder;
}

There are still a few more tricks required to get the dispatcher servlet registered without defining it in your web.xml. We must also create a Jetty web application context, this creates the JSP servlet as well as a default servlet as would be created during the instantiation of a classic war based application:

@Bean
public WebAppContext jettyWebAppContext() throws IOException {
    WebAppContext ctx = new WebAppContext();
    ctx.setContextPath("/");
    ctx.setWar(new ClassPathResource("webapp").getURI().toString());

     /* We can add the Metrics servlet right away. */
    ctx.addServlet(AdminServlet.class, "/metrics/*");

    return ctx;
}

Notice that I've added the metrics servlet, but have yet to add the dispatcher servlet. For some reason, adding the dispatcher servlet here causes JSP views to fail. One option is to fall back to defining the dispatcher servlet in your web.xml (which may be the cleanest option), or you can register the dispatcher servlet in the Jetty lifeCycleStarted callback which we'll do here:

@Bean
public LifeCycle.Listener lifeCycleStartedListener() {
    return new AbstractLifeCycle.AbstractLifeCycleListener() {
        @Override
        public void lifeCycleStarted(LifeCycle event) {
            try {
                ServletHolder dispatcherServlet = dispatcherServlet();
                jettyWebAppContext().getServletHandler()
                        .addServletWithMapping(dispatcherServlet, "/");
                dispatcherServlet.start();
            } catch (Exception e) {
                logger.error(
                        "Failed to start Spring MVC dispatcher servlet", e);
            }
        }
    };
}

@Bean(initMethod = "start", destroyMethod = "stop")
public Server jettyServer() throws IOException {
    Server server = new Server();
    server.setHandler(jettyWebAppContext());

    /* Add a life cycle listener so we can register the SpringMVC dispatcher
     * servlet after the web application context has been started. */
    server.addLifeCycleListener(lifeCycleStartedListener());

    server.setConnectors(jettyConnectors());
    return server;
}

In summary, this is just another variation of James Ward's post on Containerless Spring MVC. The complete code for this project (which I use as a template) can be at https://github.com/jasonish/jetty-springmvc-jsp-template. The code as referenced in this post can be found in the 20121207 tag.

Next - As I'm not really a fan of JSPs, or the extra hoops required to make this work right I'll probably look at updating the template with Thymeleaf support, which should greatly simplify things.

Friday, April 13, 2012

Some NSM type RPMs.

I've always maintained more or less up to date Snort RPMs for RHEL for personal use and have recently added Suricata. As they may be useful for others I have cleaned them up a little and made a YUM repository for EL6 i386 and x86_64. See the http://nsm-rpms.unx.ca/ for more info.

A few things to note:

  • These RPMs use a prefix of /opt/nsm to prevent conflict with similar RPMs you may have installed, its a little bit out of the norm for RPMs and I'm open to comments...
  • Snort and Suricata packages will never be automatically upgraded as often upgrading to a new version requires some administration work such as updating your configuration files. To facilitate this the packages have their version as part of the name and "-latest" pseudo-packages are provided which will always install the latest RPM but you will have to "snort-select" or "suricata-select" the new version to make it active. I'll probably have to add some more detailed documentation about this on the wiki.
As I'm also a regular Fedora user I'll probably add Fedora builds at some point as its little effort to me. If Fedora builds would be useful to you please let me know and I may do it sooner than later.

Tuesday, March 8, 2011

Libevent Examples

Just looked at my web stats for the first time in a long time and I see that one of the most requested resources are my libevent examples, which no longer exist here. The code however does still exist:

https://github.com/jasonish/libevent-examples

Thursday, April 22, 2010

Back to the Mac

Recent issues with Linux on a laptop has given me the desire to try working on a Mac again. Even though I have a pretty well supported laptop (Lenovo x61), its the little issues that have begun to bother me which include not great sleep/suspend support, wireless and audio issues and an almost never ending stream of updates. Yes, you Linux people may say it works fine, but if you've ever used a Mac before you'll know its not as good as a could be, by far.

I've also found that its really nice to have the real Microsoft Office handy when you swap documents with other non-Linux using people (yeah, OpenOffice doesn't quite cut it when taking turns editing documents) which meant often having a Windows VM running.

The other factor that helps the Mac be a viable option is the majority of the software I develop already builds and installs on a Mac, or can do so with very minor modifications. The stuff that doesn't is so tied to a specific environment that it really requires a virtual machine even when running Linux as the host operating system. This really makes the Mac sound like an ideal system.

So yesterday while heading out just before dinner to grab some hamburger buns I walked by the local Mac retailer (hey, its about 20 steps from Safeway) and grabbed a high-res 15" MacBook with the Core i5 2.53ghz processor. They weren't able to upgrade the ram to 8GB on the spot but I decided I couldn't wait.

Aesthetically its a beautiful machine. The display is about the best computer display I've ever seen. The 3 primary pieces of software I work on compile out of the box. Its also nice to have Microsoft Office running natively. The thing that drove me away from the Mac before was some of the UI behaviours, like Cmd-Tab switching applications, not just windows of applications. But I'm going to give this a true go and may update this blog now and then with issues that I run into as a developer, developing network-level apps primarily for Linux, making the shift to Mac as a development platform.

Wednesday, October 7, 2009

FVWM: Moving a Window to Another Screen

Probably the most lacking feature in most multi-screen setups is the ability to move a window from one screen to another with a keyboard shortcut. I do this to bring the window I'm currently working on into my centre monitor so its directly in front of me. There are 2 ways to go about this. The first is moving a window to a specific display and the second is to move (shift) the window to the left or right display (which would just be back and forth in a dual monitor setup).

For the first case you could define the following function:

# This function will move a window to the X screen provided in the
# first argument. If the window is in the maximized it will be taken
# out of the maximized state before moving. If we don't do this it
# will be moved back to the original screen when the maximized state
# is toggled.
#
# If you do not want the pointer to be moved to the windows new
# location then comment out the line containing WarpToWindow.
DestroyFunc MoveWindowToScreen
AddToFunc MoveWindowToScreen
+ I Current (Maximized) Maximize
+ I SetEnv PWX $[pointer.wx]
+ I Setenv PWY $[pointer.wy]
+ I MoveToScreen $[0]
+ I WindowId $[w.id] WarpToWindow $[PWX]p $[PWY]p


And then add the following to your window operations menu:

+ "&1 Move to Screen 1" MoveWindowToScreen 2
+ "&2 Move to Screen 2" MoveWindowToScreen 0
+ "&3 Move to Screen 3" MoveWindowToScreen 1


Note that the argument you provide to the MoveWindowToScreen function takes the X display number which may not directly map to the order of the screens on your desk.

The second method is to move the screen to the left or the right. Or in the case of a dual monitor setup you could just continually move right to have the window flip/flop between your 2 screens.

First download the following file and save it to ~/.fvwm/ShiftToScreen.py: ShiftToScreen.py
You will also need to update variables screenWidth and screens in ShiftToScreen.py as they are currently setup for my configuration of 3 screens with a width of 1920 pixels each.

Then define the following function:

# This function will move a window to the left or right screen
# depending on the first argument which should be on of "left" or
# "right". It depends on the auxiliary python script
# ShiftToScreen.py.
DestroyFunc ShiftToScreen
AddToFunc ShiftToScreen
+ I Current (Maximized) Maximize
+ I SetEnv PWX $[pointer.wx]
+ I Setenv PWY $[pointer.wy]
+ I PipeRead "python $./ShiftToScreen.py $[0] $[w.x]"
+ I WindowId $[w.id] WarpToWindow $[PWX]p $[PWY]p


You could then add the following to your windows operations menu:

+ "&Left Screen" ShiftToScreen left
+ "&Right Screen" ShiftToScreen right

or define some keyboard shortcuts. For example I have bound Shift-Alt-Left and Shift-Alt-Right to shift the window to the left or right screen:

Key Left WTSF12468 SM ShiftToScreen left
Key Right WTSF12468 SM ShiftToScreen right

If you are only working with 2 screens you will only need to define one shortcut to get flip/flop like behaviour as shifting left beyond the leftmost screen will wrap the window around to the right most screen.

Enjoy.