Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
8d23a6cc
Commit
8d23a6cc
authored
Apr 19, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7ed60ee7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
42 deletions
+88
-42
go/neo/py/neo.pytrace
go/neo/py/neo.pytrace
+54
-0
go/neo/py/pyruntraced
go/neo/py/pyruntraced
+34
-42
No files found.
go/neo/py/neo.pytrace
0 → 100644
View file @
8d23a6cc
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
# option) any later version, as published by the Free Software Foundation.
#
# You can also Link and Combine this program with other software covered by
# the terms of any of the Free Software licenses or any of the Open Source
# Initiative approved licenses and Convey the resulting work. Corresponding
# source of such a combination shall include the source code for all other
# software used.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""NEO/py tracing equivalent to one in NEO/go
This module activates tracepoints equivalent to NEO/go on NEO/py side.
Must be used with pyruntraced.
"""
from neo.lib.connection import Connection
import socket
# sk_addr converts socket address tuple for family to string
def sk_addr(addr, family):
if family == socket.AF_INET:
host, port = addr
return '%s:%s' % (host, port)
else:
raise RuntimError('sk_addr: TODO: %s' % family)
def sk_localaddr(sk):
return sk_addr( sk.getsockname(), sk.family )
def sk_remoteaddr(sk):
return sk_addr( sk.getpeername(), sk.family )
@trace_entry(Connection._addPacket, 'MsgSendPre')
def _(self, packet):
sk = self.connector.socket
pkth, data = packet.encode()
return {'src': sk_localaddr(sk),
'dst': sk_remoteaddr(sk),
# XXX pkt goes as quoted to avoid UTF-8 decode problem on json.dump
'pktq': `pkth+data`}
#'pktq': (pkth+data).encode('hex')}
go/neo/py/pyruntraced
View file @
8d23a6cc
...
...
@@ -18,10 +18,9 @@
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""pyruntraced ... - run python ... with
NEO
tracepoints attached
"""pyruntraced ... - run python ... with tracepoints attached
This program runs python code with tracepoints equivalent to NEO/go activated
on NEO/py side.
This program runs Python code with tracepoints activated.
Whenever a tracepoint is reached, attached probe sends corresponding trace event
to driving process and awaits further commands from it. Commands could be:
...
...
@@ -32,6 +31,11 @@ to driving process and awaits further commands from it. Commands could be:
Overall this allows Go driver process to test several concurrent child
subprocesses via tracetest, the same way to how it is done in pure NEO/go.
Please see documentation for next Go packages for context:
- lab.nexedi.com/kirr/go123/tracing
- lab.nexedi.com/kirr/neo/go/xcommon/xtracing/tracetest # XXX correct link
Implementation notes
--------------------
...
...
@@ -49,10 +53,15 @@ of view of traced process):
> tid E problem # tracee reports result as exception
> tid R result # tracee reports result
eventname is just regula
t
string
eventname is just regula
r
string
event, problem, result are JSON-encoded objects.
Fork is not allowed in order not to confuse the driver.
Fork is not allowed in order not to confuse the driver(*).
(*) fork could be supported by making every new process to reattach to the
driver via new file descriptor - e.g. connecting via socket.
We don't currently do that for simplicity.
"""
from
functools
import
wraps
...
...
@@ -116,7 +125,7 @@ class Tracer(object):
self
.
rxlock
.
acquire
()
rxq
=
self
.
rxtab
.
get
(
tid
)
if
rxq
is
None
:
self
.
rxtab
[
tid
]
=
rxq
=
RxQueue
()
rxq
=
self
.
rxtab
[
tid
]
=
RxQueue
()
if
len
(
rxq
.
lineq
)
>
0
:
# data was already queued for us
line
=
rxq
.
lineq
.
pop
(
0
)
...
...
@@ -128,7 +137,7 @@ class Tracer(object):
self
.
rxlock
.
release
()
rxq
.
event
.
wait
()
# woke up -> retry to dequeue data
# woke
n
up -> retry to dequeue data
# trace1 handles 1 trace event.
...
...
@@ -153,8 +162,10 @@ class Tracer(object):
return
# probe finishes - continue execution of original code
# eval python in context of probed function
# g = ...
# l = ...
try
:
r
=
eval
(
line
[
1
:],
g
,
l
)
r
=
eval
(
line
[
1
:],
g
,
l
)
# FIXME context wrong
except
Exception
as
e
:
self
.
_send
(
'E %s'
%
json
.
dumps
(
str
(
e
)))
else
:
...
...
@@ -172,7 +183,20 @@ class RxQueue(object):
gtracer
=
None
# Tracer
# trace_entry marks entry to func with tracepoint and attaches probe to run XXX
# trace_entry attaches probe to func entry.
#
# For example
#
# class MyClass:
# def meth(self, x, y):
# ...
#
# @trace_entry(MyClass.meth, 'MyEvent')
# def _(self, x, y):
# return {'x': x, 'y': y}
#
# will emit event 'MyEvent' with corresponding x/y dict on every call entry to
# MyClass.meth() .
def
trace_entry
(
func
,
eventname
):
klass
=
func
.
im_class
fname
=
func
.
im_func
.
func_name
...
...
@@ -189,38 +213,6 @@ def trace_entry(func, eventname):
return
deco
# trace events
from
neo.lib.connection
import
Connection
import
socket
# sk_addr converts socket address tuple for family to string
def
sk_addr
(
addr
,
family
):
if
family
==
socket
.
AF_INET
:
host
,
port
=
addr
return
'%s:%s'
%
(
host
,
port
)
else
:
raise
RuntimError
(
'sk_addr: TODO: %s'
%
family
)
def
sk_localaddr
(
sk
):
return
sk_addr
(
sk
.
getsockname
(),
sk
.
family
)
def
sk_remoteaddr
(
sk
):
return
sk_addr
(
sk
.
getpeername
(),
sk
.
family
)
@
trace_entry
(
Connection
.
_addPacket
,
'MsgSendPre'
)
def
_
(
self
,
packet
):
sk
=
self
.
connector
.
socket
pkth
,
data
=
packet
.
encode
()
return
{
'src'
:
sk_localaddr
(
sk
),
'dst'
:
sk_remoteaddr
(
sk
),
# XXX pkt goes as quoted to avoid UTF-8 decode problem on json.dump
'pktq'
:
`pkth+data`
}
#'pktq': (pkth+data).encode('hex')}
# ----------------------------------------
import
os
,
sys
,
code
,
runpy
...
...
@@ -238,7 +230,7 @@ def main():
ftrace
=
os
.
fdopen
(
fdtrace
,
'r+'
)
gtracer
=
Tracer
(
ftrace
)
# forbid fork
# forbid fork
(see top-level description about why)
def
nofork
():
raise
RuntimeError
(
'pyruntraced: fork forbidden'
)
os
.
fork
=
nofork
os
.
forkpty
=
nofork
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment