/* * This file is part of caronte (https://github.com/eciavatta/caronte). * Copyright (c) 2020 Emiliano Ciavatta. * * 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, version 3. * * 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 . */ import React, {Component} from 'react'; import './ConnectionsPane.scss'; import Connection from "../objects/Connection"; import Table from 'react-bootstrap/Table'; import {Redirect} from 'react-router'; import {withRouter} from "react-router-dom"; import backend from "../../backend"; import ConnectionMatchedRules from "../objects/ConnectionMatchedRules"; import log from "../../log"; import ButtonField from "../fields/ButtonField"; import dispatcher from "../../dispatcher"; class ConnectionsPane extends Component { state = { loading: false, connections: [], firstConnection: null, lastConnection: null, }; constructor(props) { super(props); this.scrollTopThreashold = 0.00001; this.scrollBottomThreashold = 0.99999; this.maxConnections = 200; this.queryLimit = 50; this.connectionsListRef = React.createRef(); this.lastScrollPosition = 0; } componentDidMount() { const initialParams = {limit: this.queryLimit}; const match = this.props.location.pathname.match(/^\/connections\/([a-f0-9]{24})$/); if (match != null) { const id = match[1]; initialParams.from = id; backend.get(`/api/connections/${id}`) .then(res => this.connectionSelected(res.json, false)) .catch(error => log.error("Error loading initial connection", error)); } this.loadConnections(initialParams, true).then(() => log.debug("Connections loaded")); dispatcher.register("timeline_updates", payload => { this.connectionsListRef.current.scrollTop = 0; this.loadConnections({ started_after: Math.round(payload.from.getTime() / 1000), started_before: Math.round(payload.to.getTime() / 1000), limit: this.maxConnections }).then(() => log.info(`Loading connections between ${payload.from} and ${payload.to}`)); }); dispatcher.register("notifications", payload => { if (payload.event === "rules.new" || payload.event === "rules.edit") { this.loadRules().then(() => log.debug("Loaded connection rules after notification update")); } }); dispatcher.register("notifications", payload => { if (payload.event === "services.edit") { this.loadServices().then(() => log.debug("Services reloaded after notification update")); } }); } connectionSelected = (c, doRedirect = true) => { this.doSelectedConnectionRedirect = doRedirect; this.setState({selected: c.id}); this.props.onSelected(c); log.debug(`Connection ${c.id} selected`); }; componentDidUpdate(prevProps, prevState, snapshot) { if (prevProps.location.search !== this.props.location.search) { this.loadConnections({limit: this.queryLimit}) .then(() => log.info("ConnectionsPane reloaded after query string update")); } } handleScroll = (e) => { if (this.disableScrollHandler) { this.lastScrollPosition = e.currentTarget.scrollTop; return; } let relativeScroll = e.currentTarget.scrollTop / (e.currentTarget.scrollHeight - e.currentTarget.clientHeight); if (!this.state.loading && relativeScroll > this.scrollBottomThreashold) { this.loadConnections({from: this.state.lastConnection.id, limit: this.queryLimit,}) .then(() => log.info("Following connections loaded")); } if (!this.state.loading && relativeScroll < this.scrollTopThreashold) { this.loadConnections({to: this.state.firstConnection.id, limit: this.queryLimit,}) .then(() => log.info("Previous connections loaded")); if (this.state.showMoreRecentButton) { this.setState({showMoreRecentButton: false}); } } else { if (this.lastScrollPosition > e.currentTarget.scrollTop) { if (!this.state.showMoreRecentButton) { this.setState({showMoreRecentButton: true}); } } else { if (this.state.showMoreRecentButton) { this.setState({showMoreRecentButton: false}); } } } this.lastScrollPosition = e.currentTarget.scrollTop; }; addServicePortFilter = (port) => { const urlParams = new URLSearchParams(this.props.location.search); urlParams.set("service_port", port); this.doQueryStringRedirect = true; this.setState({queryString: urlParams}); }; addMatchedRulesFilter = (matchedRule) => { const urlParams = new URLSearchParams(this.props.location.search); const oldMatchedRules = urlParams.getAll("matched_rules") || []; if (!oldMatchedRules.includes(matchedRule)) { urlParams.append("matched_rules", matchedRule); this.doQueryStringRedirect = true; this.setState({queryString: urlParams}); } }; async loadConnections(params, isInitial = false) { const urlParams = new URLSearchParams(this.props.location.search); for (const [name, value] of Object.entries(params)) { urlParams.set(name, value); } this.setState({loading: true}); if (!this.state.rules) { await this.loadRules(); } if (!this.state.services) { await this.loadServices(); } let res = (await backend.get(`/api/connections?${urlParams}`)).json; let connections = this.state.connections; let firstConnection = this.state.firstConnection; let lastConnection = this.state.lastConnection; if (params !== undefined && params.from !== undefined && params.to === undefined) { if (res.length > 0) { if (!isInitial) { res = res.slice(1); } connections = this.state.connections.concat(res); lastConnection = connections[connections.length - 1]; if (isInitial) { firstConnection = connections[0]; } if (connections.length > this.maxConnections) { connections = connections.slice(connections.length - this.maxConnections, connections.length - 1); firstConnection = connections[0]; } } } else if (params !== undefined && params.to !== undefined && params.from === undefined) { if (res.length > 0) { connections = res.slice(0, res.length - 1).concat(this.state.connections); firstConnection = connections[0]; if (connections.length > this.maxConnections) { connections = connections.slice(0, this.maxConnections); lastConnection = connections[this.maxConnections - 1]; } } } else { if (res.length > 0) { connections = res; firstConnection = connections[0]; lastConnection = connections[connections.length - 1]; } else { connections = []; firstConnection = null; lastConnection = null; } } this.setState({ loading: false, connections: connections, firstConnection: firstConnection, lastConnection: lastConnection }); if (firstConnection != null && lastConnection != null) { dispatcher.dispatch("connection_updates", { from: new Date(lastConnection["started_at"]), to: new Date(firstConnection["started_at"]) }); } } loadRules = async () => { return backend.get("/api/rules").then(res => this.setState({rules: res.json})); }; loadServices = async () => { return backend.get("/api/services").then(res => this.setState({services: res.json})); }; render() { let redirect; if (this.doSelectedConnectionRedirect) { redirect = ; this.doSelectedConnectionRedirect = false; } else if (this.doQueryStringRedirect) { redirect = ; this.doQueryStringRedirect = false; } let loading = null; if (this.state.loading) { loading = Loading... ; } return (
{this.state.showMoreRecentButton &&
{ this.disableScrollHandler = true; this.connectionsListRef.current.scrollTop = 0; this.loadConnections({limit: this.queryLimit}) .then(() => { this.disableScrollHandler = false; log.info("Most recent connections loaded"); }); }}/>
}
{ this.state.connections.flatMap(c => { return [ this.connectionSelected(c)} selected={this.state.selected === c.id} onMarked={marked => c.marked = marked} onEnabled={enabled => c.hidden = !enabled} addServicePortFilter={this.addServicePortFilter} services={this.state.services}/>, c.matched_rules.length > 0 && ]; }) } {loading}
service srcip srcport dstip dstport started_at duration up down actions
{redirect}
); } } export default withRouter(ConnectionsPane);