2017-04-19 03:09:52 -05:00
package mysql
import (
2019-09-24 13:50:49 -05:00
"errors"
2017-04-19 03:09:52 -05:00
"fmt"
"regexp"
2017-10-27 04:26:25 -05:00
"strings"
2017-04-19 03:09:52 -05:00
2019-05-30 02:58:29 -05:00
"github.com/grafana/grafana/pkg/components/gtime"
2019-09-24 13:50:49 -05:00
"github.com/grafana/grafana/pkg/infra/log"
2017-04-19 03:09:52 -05:00
"github.com/grafana/grafana/pkg/tsdb"
2019-09-10 14:50:04 -05:00
"github.com/grafana/grafana/pkg/tsdb/sqleng"
2017-04-19 03:09:52 -05:00
)
const rsIdentifier = ` ([_a-zA-Z0-9]+) `
2017-04-20 04:59:11 -05:00
const sExpr = ` \$ ` + rsIdentifier + ` \(([^\)]*)\) `
2017-04-19 03:09:52 -05:00
2019-09-24 13:50:49 -05:00
var restrictedRegExp = regexp . MustCompile ( ` (?im)([\s]*show[\s]+grants|[\s,]session_user\([^\)]*\)|[\s,]current_user(\([^\)]*\))?|[\s,]system_user\([^\)]*\)|[\s,]user\([^\)]*\))([\s,;]|$) ` )
2018-07-26 11:10:45 -05:00
type mySqlMacroEngine struct {
2019-09-10 14:50:04 -05:00
* sqleng . SqlMacroEngineBase
2018-07-26 11:10:45 -05:00
timeRange * tsdb . TimeRange
query * tsdb . Query
2019-09-24 13:50:49 -05:00
logger log . Logger
2017-04-19 03:09:52 -05:00
}
2019-09-24 13:50:49 -05:00
func newMysqlMacroEngine ( logger log . Logger ) sqleng . SqlMacroEngine {
return & mySqlMacroEngine { SqlMacroEngineBase : sqleng . NewSqlMacroEngineBase ( ) , logger : logger }
2017-04-19 03:09:52 -05:00
}
2018-07-26 11:10:45 -05:00
func ( m * mySqlMacroEngine ) Interpolate ( query * tsdb . Query , timeRange * tsdb . TimeRange , sql string ) ( string , error ) {
m . timeRange = timeRange
m . query = query
2019-09-24 13:50:49 -05:00
matches := restrictedRegExp . FindAllStringSubmatch ( sql , 1 )
if len ( matches ) > 0 {
m . logger . Error ( "show grants, session_user(), current_user(), system_user() or user() not allowed in query" )
return "" , errors . New ( "Invalid query. Inspect Grafana server log for details" )
}
2017-04-19 03:09:52 -05:00
rExp , _ := regexp . Compile ( sExpr )
var macroError error
2018-09-13 09:51:00 -05:00
sql = m . ReplaceAllStringSubmatchFunc ( rExp , sql , func ( groups [ ] string ) string {
2018-03-02 12:24:15 -06:00
args := strings . Split ( groups [ 2 ] , "," )
for i , arg := range args {
args [ i ] = strings . Trim ( arg , " " )
}
res , err := m . evaluateMacro ( groups [ 1 ] , args )
2017-04-19 10:26:29 -05:00
if err != nil && macroError == nil {
2017-04-19 03:09:52 -05:00
macroError = err
return "macro_error()"
}
return res
} )
if macroError != nil {
return "" , macroError
}
return sql , nil
}
2018-07-26 11:10:45 -05:00
func ( m * mySqlMacroEngine ) evaluateMacro ( name string , args [ ] string ) ( string , error ) {
2017-04-19 03:09:52 -05:00
switch name {
2018-03-22 09:40:46 -05:00
case "__timeEpoch" , "__time" :
2017-04-19 03:09:52 -05:00
if len ( args ) == 0 {
return "" , fmt . Errorf ( "missing time column argument for macro %v" , name )
}
2017-04-19 10:26:29 -05:00
return fmt . Sprintf ( "UNIX_TIMESTAMP(%s) as time_sec" , args [ 0 ] ) , nil
case "__timeFilter" :
if len ( args ) == 0 {
return "" , fmt . Errorf ( "missing time column argument for macro %v" , name )
}
2018-06-25 15:11:58 -05:00
2018-10-25 03:29:40 -05:00
return fmt . Sprintf ( "%s BETWEEN FROM_UNIXTIME(%d) AND FROM_UNIXTIME(%d)" , args [ 0 ] , m . timeRange . GetFromAsSecondsEpoch ( ) , m . timeRange . GetToAsSecondsEpoch ( ) ) , nil
2018-11-30 07:18:33 -06:00
case "__timeFrom" :
return fmt . Sprintf ( "FROM_UNIXTIME(%d)" , m . timeRange . GetFromAsSecondsEpoch ( ) ) , nil
case "__timeTo" :
return fmt . Sprintf ( "FROM_UNIXTIME(%d)" , m . timeRange . GetToAsSecondsEpoch ( ) ) , nil
2017-10-27 04:26:25 -05:00
case "__timeGroup" :
2017-12-10 12:50:01 -06:00
if len ( args ) < 2 {
2017-10-27 04:26:25 -05:00
return "" , fmt . Errorf ( "macro %v needs time column and interval" , name )
}
2019-05-30 02:58:29 -05:00
interval , err := gtime . ParseInterval ( strings . Trim ( args [ 1 ] , ` '" ` ) )
2017-10-27 04:26:25 -05:00
if err != nil {
return "" , fmt . Errorf ( "error parsing interval %v" , args [ 1 ] )
}
2017-12-10 12:50:01 -06:00
if len ( args ) == 3 {
2019-09-10 14:50:04 -05:00
err := sqleng . SetupFillmode ( m . query , interval , args [ 2 ] )
2018-08-12 03:51:58 -05:00
if err != nil {
return "" , err
2017-12-10 12:50:01 -06:00
}
}
2018-07-01 08:59:05 -05:00
return fmt . Sprintf ( "UNIX_TIMESTAMP(%s) DIV %.0f * %.0f" , args [ 0 ] , interval . Seconds ( ) , interval . Seconds ( ) ) , nil
2018-08-01 13:58:51 -05:00
case "__timeGroupAlias" :
tg , err := m . evaluateMacro ( "__timeGroup" , args )
if err == nil {
return tg + " AS \"time\"" , err
}
return "" , err
2017-06-08 16:36:05 -05:00
case "__unixEpochFilter" :
if len ( args ) == 0 {
return "" , fmt . Errorf ( "missing time column argument for macro %v" , name )
}
2018-07-26 11:10:45 -05:00
return fmt . Sprintf ( "%s >= %d AND %s <= %d" , args [ 0 ] , m . timeRange . GetFromAsSecondsEpoch ( ) , args [ 0 ] , m . timeRange . GetToAsSecondsEpoch ( ) ) , nil
2019-01-03 15:29:57 -06:00
case "__unixEpochNanoFilter" :
if len ( args ) == 0 {
return "" , fmt . Errorf ( "missing time column argument for macro %v" , name )
}
return fmt . Sprintf ( "%s >= %d AND %s <= %d" , args [ 0 ] , m . timeRange . GetFromAsTimeUTC ( ) . UnixNano ( ) , args [ 0 ] , m . timeRange . GetToAsTimeUTC ( ) . UnixNano ( ) ) , nil
case "__unixEpochNanoFrom" :
return fmt . Sprintf ( "%d" , m . timeRange . GetFromAsTimeUTC ( ) . UnixNano ( ) ) , nil
case "__unixEpochNanoTo" :
return fmt . Sprintf ( "%d" , m . timeRange . GetToAsTimeUTC ( ) . UnixNano ( ) ) , nil
2018-08-13 05:17:05 -05:00
case "__unixEpochGroup" :
if len ( args ) < 2 {
return "" , fmt . Errorf ( "macro %v needs time column and interval and optional fill value" , name )
}
2019-05-30 02:58:29 -05:00
interval , err := gtime . ParseInterval ( strings . Trim ( args [ 1 ] , ` ' ` ) )
2018-08-13 05:17:05 -05:00
if err != nil {
return "" , fmt . Errorf ( "error parsing interval %v" , args [ 1 ] )
}
if len ( args ) == 3 {
2019-09-10 14:50:04 -05:00
err := sqleng . SetupFillmode ( m . query , interval , args [ 2 ] )
2018-08-13 05:17:05 -05:00
if err != nil {
return "" , err
}
}
return fmt . Sprintf ( "%s DIV %v * %v" , args [ 0 ] , interval . Seconds ( ) , interval . Seconds ( ) ) , nil
case "__unixEpochGroupAlias" :
tg , err := m . evaluateMacro ( "__unixEpochGroup" , args )
if err == nil {
return tg + " AS \"time\"" , err
}
return "" , err
2017-04-19 03:09:52 -05:00
default :
return "" , fmt . Errorf ( "Unknown macro %v" , name )
}
}