v.io

module
v0.1.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 4, 2019 License: BSD-3-Clause

README

Vanadium Core

Build Status

This is a slimmed down version of Vanadium that is focused on its secure RPC system and service discovery. See the Vanadium site for more details, remembering that this repository implements RPC, security and naming; it does not provide support for mobile development.

Install steps

Assuming a single path in $GOPATH:

go get -t v.io/...
VDLPATH=$GOPATH/src go test v.io/...

Directories

Path Synopsis
jiri module
v23
Package v23 defines the runtime interface of Vanadium, and its subdirectories define the entire Vanadium public API.
Package v23 defines the runtime interface of Vanadium, and its subdirectories define the entire Vanadium public API.
context
Package context implements a mechanism to carry data across API boundaries.
Package context implements a mechanism to carry data across API boundaries.
conventions
Package conventions implements unenforced conventions for Vanadium.
Package conventions implements unenforced conventions for Vanadium.
discovery
Package discovery defines types and interfaces for discovering services.
Package discovery defines types and interfaces for discovering services.
flow
Package flow defines interfaces for the management of authenticated bidirectional byte Flows.
Package flow defines interfaces for the management of authenticated bidirectional byte Flows.
glob
Package glob defines a globbing syntax and implements matching routines.
Package glob defines a globbing syntax and implements matching routines.
i18n
Package i18n implements internationalization of formatted message strings in different languages.
Package i18n implements internationalization of formatted message strings in different languages.
logging
Package loging defines an interface for logging modeled on Google's glog.
Package loging defines an interface for logging modeled on Google's glog.
namespace
Package namespace defines an interface for resolving and managing names.
Package namespace defines an interface for resolving and managing names.
naming
Package naming defines types and utilities associated with naming.
Package naming defines types and utilities associated with naming.
options
Package options defines common options recognized by vanadium implementations.
Package options defines common options recognized by vanadium implementations.
query
The query packages implement Vanadium's query capabilities.
The query packages implement Vanadium's query capabilities.
query/engine
Package engine defines a Create function which returns an instance of datasource.QueryEngine
Package engine defines a Create function which returns an instance of datasource.QueryEngine
query/engine/datasource
Package datasource defines the interfaces a system must implement to support querying.
Package datasource defines the interfaces a system must implement to support querying.
query/engine/internal
Package internal implements Exec, executing SQL-like queries on a given database.
Package internal implements Exec, executing SQL-like queries on a given database.
query/engine/internal/query_checker
Package query_checker performs a semantic check on an AST produced by the query_parser package.
Package query_checker performs a semantic check on an AST produced by the query_parser package.
query/engine/internal/query_functions
Package query_functions describes SyncQL's built-in functions.
Package query_functions describes SyncQL's built-in functions.
query/engine/internal/query_parser
Package query_parser is a parser to parse a simplified select statement (a la SQL) for the Vanadium key value store (a.k.a., syncbase).
Package query_parser is a parser to parse a simplified select statement (a la SQL) for the Vanadium key value store (a.k.a., syncbase).
query/engine/internal/test
Package query_test contains tests for the query package.
Package query_test contains tests for the query package.
query/engine/public
Package public defines the QueryEngine interface which is returned from calling v.io/v23/query/engine.Create and PreparedStatement which is returned from the QueryEngine.PrepareStatement function.
Package public defines the QueryEngine interface which is returned from calling v.io/v23/query/engine.Create and PreparedStatement which is returned from the QueryEngine.PrepareStatement function.
query/pattern
Package pattern handles parsing and matching SQL LIKE-style glob patterns.
Package pattern handles parsing and matching SQL LIKE-style glob patterns.
query/syncql
The ResultStream interface is used to iterate over query results.
The ResultStream interface is used to iterate over query results.
rpc
Package rpc defines interfaces for communication via remote procedure call.
Package rpc defines interfaces for communication via remote procedure call.
rpc/reserved
Package reserved implements client-side support for reserved RPC methods implemented by all servers.
Package reserved implements client-side support for reserved RPC methods implemented by all servers.
rpc/version
Package version defines a mechanism for versioning the RPC protocol.
Package version defines a mechanism for versioning the RPC protocol.
security
Package security defines types and utilities associated with security.
Package security defines types and utilities associated with security.
security/access
Package access defines types and interfaces for dynamic access control.
Package access defines types and interfaces for dynamic access control.
security/access/internal
Package internal provides a VDL specification for a service used in the unittest of the access package.
Package internal provides a VDL specification for a service used in the unittest of the access package.
services/appcycle
Package appcycle defines interfaces for managing application processes.
Package appcycle defines interfaces for managing application processes.
services/application
Package application defines types for describing applications.
Package application defines types for describing applications.
services/binary
Package binary defines types for describing executable binaries.
Package binary defines types for describing executable binaries.
services/build
Package build defines interfaces for building executable binaries.
Package build defines interfaces for building executable binaries.
services/device
Package device defines interfaces for managing devices and their applications.
Package device defines interfaces for managing devices and their applications.
services/groups
Package groups defines interfaces for managing access control groups.
Package groups defines interfaces for managing access control groups.
services/http
Package HTTP defines an interface to send a http.Request from a client to a Vanadium server.
Package HTTP defines an interface to send a http.Request from a client to a Vanadium server.
services/logreader
Package logreader defines interfaces for reading log files remotely.
Package logreader defines interfaces for reading log files remotely.
services/mounttable
Package mounttable defines interfaces for managing associations between names and servers.
Package mounttable defines interfaces for managing associations between names and servers.
services/permissions
Package permissions defines an interface for managing access control permissions.
Package permissions defines an interface for managing access control permissions.
services/pprof
Package pprof defines an interface for accessing runtime profiling data in the format expected by the pprof visualization tool.
Package pprof defines an interface for accessing runtime profiling data in the format expected by the pprof visualization tool.
services/repository
Package repository defines interfaces for storing and retrieving device, application and binary management related information.
Package repository defines interfaces for storing and retrieving device, application and binary management related information.
services/stats
Package stats defines an interface to access statistical information for troubleshooting and monitoring purposes.
Package stats defines an interface to access statistical information for troubleshooting and monitoring purposes.
services/tidyable
Package tidyable defines an interface for services that can be requested to clean up transient resource use (such as logs or caches.)
Package tidyable defines an interface for services that can be requested to clean up transient resource use (such as logs or caches.)
services/vtrace
Package vtrace defines an interface to access v.io/v23/vtrace traces, to help analyze and debug distributed systems.
Package vtrace defines an interface to access v.io/v23/vtrace traces, to help analyze and debug distributed systems.
services/watch
Package watch defines interfaces for watching a sequence of changes.
Package watch defines interfaces for watching a sequence of changes.
uniqueid
Package uniqueid defines functions that are likely to generate globally unique identifiers.
Package uniqueid defines functions that are likely to generate globally unique identifiers.
vdl
Package vdl implements the Vanadium Definition Language type and value system.
Package vdl implements the Vanadium Definition Language type and value system.
vdl/vdltest
Package vdltest provides a variety of VDL types and values for testing.
Package vdltest provides a variety of VDL types and values for testing.
vdl/vdltest/internal/vdltestgen
Command vdltestgen generates types and values for the vdltest package.
Command vdltestgen generates types and values for the vdltest package.
vdlroot
Package vdlroot defines the standard VDL packages; the VDLROOT environment variable should point at this directory.
Package vdlroot defines the standard VDL packages; the VDLROOT environment variable should point at this directory.
vdlroot/signature
Package signature defines types representing interface and method signatures.
Package signature defines types representing interface and method signatures.
vdlroot/time
Package time defines standard representations of absolute and relative times.
Package time defines standard representations of absolute and relative times.
vdlroot/vdltool
Package vdltool defines types used by the vdl tool itself, including the format of vdl.config files.
Package vdltool defines types used by the vdl tool itself, including the format of vdl.config files.
verror
Package verror implements an error reporting mechanism that works across programming environments, and a set of common errors.
Package verror implements an error reporting mechanism that works across programming environments, and a set of common errors.
vom
Package vom implements the Vanadium Object Marshaling serialization format.
Package vom implements the Vanadium Object Marshaling serialization format.
vom/vomtest
Package vomtest provides protocol conformance tests for the Vanadium Object Marshaller (VOM).
Package vomtest provides protocol conformance tests for the Vanadium Object Marshaller (VOM).
vom/vomtest/internal/vomforever
Command vomforever is a tool that searches for bugs in vom.
Command vomforever is a tool that searches for bugs in vom.
vom/vomtest/internal/vomtestgen
Command vomtestgen generates test cases for the vomtest package.
Command vomtestgen generates test cases for the vomtest package.
vtrace
Package vtrace defines a system for collecting debugging information about operations that span a distributed system.
Package vtrace defines a system for collecting debugging information about operations that span a distributed system.
x
jni/impl/google/services/vango/vango
Command vango is a companion testing command-line tool for the vango android test application.
Command vango is a companion testing command-line tool for the vango android test application.
ref
Package ref defines constants used through the Vanadium reference implementation, which is implemented in its subdirectories.
Package ref defines constants used through the Vanadium reference implementation, which is implemented in its subdirectories.
ref/cmd/gclogs
Command gclogs safely deletes old log files.
Command gclogs safely deletes old log files.
ref/cmd/mounttable
Command mounttable sends commands to Vanadium mounttable services.
Command mounttable sends commands to Vanadium mounttable services.
ref/cmd/namespace
Command namespace resolves and manages names in the Vanadium namespace.
Command namespace resolves and manages names in the Vanadium namespace.
ref/cmd/principal
Command principal creates and manages Vanadium principals and blessings.
Command principal creates and manages Vanadium principals and blessings.
ref/cmd/uniqueid
Command uniqueid generates unique identifiers.
Command uniqueid generates unique identifiers.
ref/cmd/vdl
Command vdl manages Vanadium Definition Language source code.
Command vdl manages Vanadium Definition Language source code.
ref/cmd/vom
Command vom helps debug the Vanadium Object Marshaling wire protocol.
Command vom helps debug the Vanadium Object Marshaling wire protocol.
ref/cmd/vrpc
Command vrpc sends and receives Vanadium remote procedure calls.
Command vrpc sends and receives Vanadium remote procedure calls.
ref/examples/echo/echo
Command echo is a client for the Echo service.
Command echo is a client for the Echo service.
ref/examples/echo/echod
Command echo is a server for the Echo service.
Command echo is a server for the Echo service.
ref/examples/fortune
Package fortune defines the Fortune example interface.
Package fortune defines the Fortune example interface.
ref/examples/fortune/fortune
Command fortune is a client to the Fortune interface.
Command fortune is a client to the Fortune interface.
ref/examples/fortune/fortuned
Command fortuned runs a daemon that implements the Fortune interface.
Command fortuned runs a daemon that implements the Fortune interface.
ref/examples/noflags
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
ref/examples/rps
Package rps defines interfaces for playing the game Rock-Paper-Scissors.
Package rps defines interfaces for playing the game Rock-Paper-Scissors.
ref/examples/rps/internal
Package internal defines common functions used by both rock paper scissors clients and servers.
Package internal defines common functions used by both rock paper scissors clients and servers.
ref/examples/rps/rpsbot
Command rpsbot repeatedly runs automated games, implementing all three roles.
Command rpsbot repeatedly runs automated games, implementing all three roles.
ref/examples/rps/rpsplayer
Command rpsplayer implements the Player interface, which enables a human to play the game.
Command rpsplayer implements the Player interface, which enables a human to play the game.
ref/examples/rps/rpsscorekeeper
Command rpsscorekeeper implements the ScoreKeeper interface.
Command rpsscorekeeper implements the ScoreKeeper interface.
ref/examples/tunnel
Package tunnel defines an interface for creating a network tunnel from client to server.
Package tunnel defines an interface for creating a network tunnel from client to server.
ref/examples/tunnel/internal
Package internal defines common types and functions used by both tunnel clients and servers.
Package internal defines common types and functions used by both tunnel clients and servers.
ref/examples/tunnel/tunneld
Command tunneld runs the tunneld daemon, which implements the Tunnel interface.
Command tunneld runs the tunneld daemon, which implements the Tunnel interface.
ref/examples/tunnel/vsh
Command vsh runs the Vanadium shell, a Tunnel client that can be used to run shell commands or start an interactive shell on a remote tunneld server.
Command vsh runs the Vanadium shell, a Tunnel client that can be used to run shell commands or start an interactive shell on a remote tunneld server.
ref/internal/logger
Package logger provides access to an implementation of v23/logger.Logging for use within a runtime implementation.
Package logger provides access to an implementation of v23/logger.Logging for use within a runtime implementation.
ref/internal/reflectutil
Package reflectutil provides reflection-based utilities.
Package reflectutil provides reflection-based utilities.
ref/lib/apilog
Package apilog provides functions to be used in conjunction with logcop.
Package apilog provides functions to be used in conjunction with logcop.
ref/lib/discovery/global
TODO(jhahn): This is an experimental work to see its feasibility and set the long-term goal, and can be changed without notice.
TODO(jhahn): This is an experimental work to see its feasibility and set the long-term goal, and can be changed without notice.
ref/lib/discovery/plugins/loopback
Package loopback implements loopback plugin for discovery service.
Package loopback implements loopback plugin for discovery service.
ref/lib/discovery/plugins/mdns
Package mdns implements mDNS plugin for discovery service.
Package mdns implements mDNS plugin for discovery service.
ref/lib/discovery/plugins/vine
Package vine contains a discovery plugin that is using Vine protocol.
Package vine contains a discovery plugin that is using Vine protocol.
ref/lib/discovery/test
package test contains tests that rely on a fake runtime.
package test contains tests that rely on a fake runtime.
ref/lib/discovery/testutil
Package testutil defines helpers for discovery tests.
Package testutil defines helpers for discovery tests.
ref/lib/exec
Package exec implements configuration and secret-sharing between parent and child processes via anoymous pipes.
Package exec implements configuration and secret-sharing between parent and child processes via anoymous pipes.
ref/lib/flags
Package flags implements utilities to augment the standard Go flag package.
Package flags implements utilities to augment the standard Go flag package.
ref/lib/glob
Package glob defines a globbing syntax and implements matching routines.
Package glob defines a globbing syntax and implements matching routines.
ref/lib/mgmt
Package mgmt defines constants used by the management tools and daemons.
Package mgmt defines constants used by the management tools and daemons.
ref/lib/publisher
Package publisher provides a type to publish names to a mounttable.
Package publisher provides a type to publish names to a mounttable.
ref/lib/pubsub
Package pubsub defines interfaces for accessing dynamically changing process configuration information.
Package pubsub defines interfaces for accessing dynamically changing process configuration information.
ref/lib/security
Package security implements utilities for creating and using Vanadium security primitives.
Package security implements utilities for creating and using Vanadium security primitives.
ref/lib/security/audit
Package audit implements a mechanism for writing auditable events to an audit log.
Package audit implements a mechanism for writing auditable events to an audit log.
ref/lib/security/bcrypter
Package bcrypter defines the mechanisms for blessings based encryption and decryption.
Package bcrypter defines the mechanisms for blessings based encryption and decryption.
ref/lib/security/passphrase
Package passphrase contains utilities for reading a passphrase.
Package passphrase contains utilities for reading a passphrase.
ref/lib/security/securityflag
Package securityflag implements utilities for creating security objects based on flags.
Package securityflag implements utilities for creating security objects based on flags.
ref/lib/security/serialization
Package serialization implements utilities for reading and writing data with signature-based integrity checking.
Package serialization implements utilities for reading and writing data with signature-based integrity checking.
ref/lib/signals
Package signals implements utilities for managing process shutdown with support for signal-handling.
Package signals implements utilities for managing process shutdown with support for signal-handling.
ref/lib/stats
Package stats implements a global repository of stats objects.
Package stats implements a global repository of stats objects.
ref/lib/stats/counter
Package counter implements counters that keeps track of their recent values over different periods of time.
Package counter implements counters that keeps track of their recent values over different periods of time.
ref/lib/stats/histogram
Package histogram implements a basic histogram to keep track of data distribution.
Package histogram implements a basic histogram to keep track of data distribution.
ref/lib/stats/sysstats
Package sysstats implements system statistics and updates them periodically.
Package sysstats implements system statistics and updates them periodically.
ref/lib/timekeeper
Package timekeeper defines an interface to allow switching between real time and simulated time.
Package timekeeper defines an interface to allow switching between real time and simulated time.
ref/lib/v23cmd
Package v23cmd implements utilities for running v23 cmdline programs.
Package v23cmd implements utilities for running v23 cmdline programs.
ref/lib/vdl/build
Package build implements utilities to collect VDL build information and run the parser and compiler.
Package build implements utilities to collect VDL build information and run the parser and compiler.
ref/lib/vdl/codegen
Package codegen implements utilities for VDL code generators.
Package codegen implements utilities for VDL code generators.
ref/lib/vdl/codegen/golang
Package golang implements Go code generation from compiled VDL packages.
Package golang implements Go code generation from compiled VDL packages.
ref/lib/vdl/codegen/java
Package java implements Java code generation from compiled VDL packages.
Package java implements Java code generation from compiled VDL packages.
ref/lib/vdl/codegen/javascript
Package javascript implements Javascript code generation from compiled VDL packages.
Package javascript implements Javascript code generation from compiled VDL packages.
ref/lib/vdl/codegen/json
Package json implements JSON generation for VDL const values.
Package json implements JSON generation for VDL const values.
ref/lib/vdl/codegen/swift
Package swift implements Swift code generation from compiled VDL packages.
Package swift implements Swift code generation from compiled VDL packages.
ref/lib/vdl/codegen/vdlgen
Package vdlgen implements VDL code generation from compiled VDL packages.
Package vdlgen implements VDL code generation from compiled VDL packages.
ref/lib/vdl/compile
Package compile implements the VDL compiler, converting a parse tree into compiled results.
Package compile implements the VDL compiler, converting a parse tree into compiled results.
ref/lib/vdl/internal/vdltestutil
Package vdltestutil provides testing utilities for v.io/x/ref/lib/vdl/...
Package vdltestutil provides testing utilities for v.io/x/ref/lib/vdl/...
ref/lib/vdl/opconst
Package opconst defines the representation and operations for VDL constants.
Package opconst defines the representation and operations for VDL constants.
ref/lib/vdl/parse
Package parse implements the VDL parser, converting source files into a parse tree.
Package parse implements the VDL parser, converting source files into a parse tree.
ref/lib/vdl/vdlutil
Package vdlutil implements utilities used by many VDL components.
Package vdlutil implements utilities used by many VDL components.
ref/runtime
Package runtime and its subdirectories provide implementations of the Vanadium runtime for different runtime environments.
Package runtime and its subdirectories provide implementations of the Vanadium runtime for different runtime environments.
ref/runtime/factories/fake
Package fake implements a fake RuntimeFactory, useful in tests for mocking out certain components.
Package fake implements a fake RuntimeFactory, useful in tests for mocking out certain components.
ref/runtime/factories/generic
Package generic implements a RuntimeFactory that is useful in tests.
Package generic implements a RuntimeFactory that is useful in tests.
ref/runtime/factories/library
Package library implements a RuntimeFactory suitable for building a Vanadium library that is linked into other applications.
Package library implements a RuntimeFactory suitable for building a Vanadium library that is linked into other applications.
ref/runtime/factories/library/internal/noflags
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
ref/runtime/factories/library/internal/notpreparsed
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
ref/runtime/factories/library/internal/preparsed
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
ref/runtime/factories/library/internal/withflags
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
An example using the 'library' factory which is configured via exported variables rather than by command line flags.
ref/runtime/factories/roaming
Package roaming implements a RuntimeFactory suitable for a variety of network configurations, including 1-1 NATs, dhcp auto-configuration, Amazon Web Services and Google Compute Engine.
Package roaming implements a RuntimeFactory suitable for a variety of network configurations, including 1-1 NATs, dhcp auto-configuration, Amazon Web Services and Google Compute Engine.
ref/runtime/factories/static
Package static implements a RuntimeFactory suitable for a variety of network configurations, including 1-1 NATs, Amazon Web Services and Google Compute Engine but hosted on a static IP address with no support for adapting to dhcp changes.
Package static implements a RuntimeFactory suitable for a variety of network configurations, including 1-1 NATs, Amazon Web Services and Google Compute Engine but hosted on a static IP address with no support for adapting to dhcp changes.
ref/runtime/internal/cloudvm
Package cloudvm provides functions to test whether the current process is running on Google Compute Engine or Amazon Web Services, and to extract settings from this environment.
Package cloudvm provides functions to test whether the current process is running on Google Compute Engine or Amazon Web Services, and to extract settings from this environment.
ref/runtime/internal/lib/bqueue
Package bqueue implements several kinds of buffer queues, as a N-writer, 1-reader queue.
Package bqueue implements several kinds of buffer queues, as a N-writer, 1-reader queue.
ref/runtime/internal/lib/bqueue/drrqueue
Package drrqueue implements a deficit round-robin buffer queue.
Package drrqueue implements a deficit round-robin buffer queue.
ref/runtime/internal/lib/dependency
Package dependency keeps track of a dependency graph.
Package dependency keeps track of a dependency graph.
ref/runtime/internal/lib/deque
Package deque implements a deque using a circular array.
Package deque implements a deque using a circular array.
ref/runtime/internal/lib/iobuf
Package iobuf performs explicit memory management for data buffers used to perform network IO.
Package iobuf performs explicit memory management for data buffers used to perform network IO.
ref/runtime/internal/lib/pcqueue
A producer/consumer queue is a concurrent bounded buffer supporting multiple concurrent producers and consumers, with timeouts.
A producer/consumer queue is a concurrent bounded buffer supporting multiple concurrent producers and consumers, with timeouts.
ref/runtime/internal/lib/sync
Package sync provides synchronization primitives.
Package sync provides synchronization primitives.
ref/runtime/internal/lib/upcqueue
Package upcqueue implements an unbounded producer/consumer queue.
Package upcqueue implements an unbounded producer/consumer queue.
ref/runtime/internal/naming
Package naming provides an implementation of the interfaces in v.io/v23/naming.
Package naming provides an implementation of the interfaces in v.io/v23/naming.
ref/runtime/internal/rpc/benchmark
package benchmark provides simple tools to measure the performance of the IPC system.
package benchmark provides simple tools to measure the performance of the IPC system.
ref/runtime/internal/rpc/benchmark/benchmark
Command benchmark runs the benchmark client.
Command benchmark runs the benchmark client.
ref/runtime/internal/rpc/benchmark/benchmarkd
Command benchmarkd runs the benchmark server.
Command benchmarkd runs the benchmark server.
ref/runtime/internal/rpc/stress/mtstress
Usage: mtstress [flags] <command> The mtstress commands are: mount Measure latency of the Mount RPC at a fixed request rate resolve Measure latency of the Resolve RPC at a fixed request rate help Display help for commands or topics The global flags are: -duration=10s Duration for sending test traffic and measuring latency -rate=1 Rate, in RPCs per second, to send to the test server -reauthenticate=false If true, establish a new authenticated connection for each RPC, simulating load from a distinct process -alsologtostderr=true log to standard error as well as files -log_backtrace_at=:0 when logging hits line file:N, emit a stack trace -log_dir= if non-empty, write log files to this directory -logtostderr=false log to standard error instead of files -max_stack_buf_size=4292608 max size in bytes of the buffer to use for logging stack traces -metadata=<just specify -metadata to activate> Displays metadata for the program and exits.
Usage: mtstress [flags] <command> The mtstress commands are: mount Measure latency of the Mount RPC at a fixed request rate resolve Measure latency of the Resolve RPC at a fixed request rate help Display help for commands or topics The global flags are: -duration=10s Duration for sending test traffic and measuring latency -rate=1 Rate, in RPCs per second, to send to the test server -reauthenticate=false If true, establish a new authenticated connection for each RPC, simulating load from a distinct process -alsologtostderr=true log to standard error as well as files -log_backtrace_at=:0 when logging hits line file:N, emit a stack trace -log_dir= if non-empty, write log files to this directory -logtostderr=false log to standard error instead of files -max_stack_buf_size=4292608 max size in bytes of the buffer to use for logging stack traces -metadata=<just specify -metadata to activate> Displays metadata for the program and exits.
ref/runtime/internal/rpc/stress/stress
Command stress is a tool to stress/load test RPC by issuing randomly generated requests.
Command stress is a tool to stress/load test RPC by issuing randomly generated requests.
ref/runtime/internal/rpc/stress/stressd
Command stressd runs the stress-test server.
Command stressd runs the stress-test server.
ref/runtime/internal/rpc/test
package test contains test for rpc code that do not rely on unexposed rpc declarations.
package test contains test for rpc code that do not rely on unexposed rpc declarations.
ref/runtime/internal/vtrace
Package vtrace implements the Trace and Span interfaces in v.io/v23/vtrace.
Package vtrace implements the Trace and Span interfaces in v.io/v23/vtrace.
ref/runtime/protocols/lib/tcputil
package tcputil contains functions commonly used to manipulate TCP connections.
package tcputil contains functions commonly used to manipulate TCP connections.
ref/runtime/protocols/vine
Package vine contains Vanadium's Implementation of Network Emulation (VINE).
Package vine contains Vanadium's Implementation of Network Emulation (VINE).
ref/runtime/protocols/wsh
Package wsh registers the websocket 'hybrid' protocol.
Package wsh registers the websocket 'hybrid' protocol.
ref/runtime/protocols/wsh_nacl
Package wsh_nacl registers the websocket 'hybrid' protocol for nacl architectures.
Package wsh_nacl registers the websocket 'hybrid' protocol for nacl architectures.
ref/services/agent
Package agent defines an interface to keep a private key in memory, and for clients to have access to the private key.
Package agent defines an interface to keep a private key in memory, and for clients to have access to the private key.
ref/services/agent/agentlib
Package agentlib provides ways to create Principals that are backed by the security agent.
Package agentlib provides ways to create Principals that are backed by the security agent.
ref/services/agent/gcreds
Command gcreds runs a command with Google Cloud Blessings.
Command gcreds runs a command with Google Cloud Blessings.
ref/services/agent/internal/constants
Package constants holds constants shared by client and server.
Package constants holds constants shared by client and server.
ref/services/agent/internal/ipc
Package ipc implements a simple IPC system based on VOM.
Package ipc implements a simple IPC system based on VOM.
ref/services/agent/internal/launcher
Package launcher contains utilities to launch v23agentd.
Package launcher contains utilities to launch v23agentd.
ref/services/agent/internal/lock
Package lock provides a lock object to synchronize access to a directory among multiple processes.
Package lock provides a lock object to synchronize access to a directory among multiple processes.
ref/services/agent/internal/lockfile
Package lockfile provides methods to associate process ids (PIDs) with a file.
Package lockfile provides methods to associate process ids (PIDs) with a file.
ref/services/agent/internal/lockutil
Package lockutil contains utilities for building file locks.
Package lockutil contains utilities for building file locks.
ref/services/agent/internal/lru
Package lru implements a Least-Recently-Used (LRU) cache of objects keyed by a string.
Package lru implements a Least-Recently-Used (LRU) cache of objects keyed by a string.
ref/services/agent/internal/pingpong
Command pingpong runs a pingpong client or server.
Command pingpong runs a pingpong client or server.
ref/services/agent/internal/test_principal
Command test_principal runs tests against a principal.
Command test_principal runs tests against a principal.
ref/services/agent/internal/version
Package version provides versioning for the agent.
Package version provides versioning for the agent.
ref/services/agent/server
Package server contains utilities for serving a principal using a socket-based IPC system.
Package server contains utilities for serving a principal using a socket-based IPC system.
ref/services/agent/v23agentd
Command v23agentd manages the security agent daemon, which holds the private key, blessings and recognized roots of a principal in memory and makes the principal available to other processes.
Command v23agentd manages the security agent daemon, which holds the private key, blessings and recognized roots of a principal in memory and makes the principal available to other processes.
ref/services/agent/vbecome
Command vbecome executes commands with a derived Vanadium principal.
Command vbecome executes commands with a derived Vanadium principal.
ref/services/application/application
Command application manages the Vanadium application repository.
Command application manages the Vanadium application repository.
ref/services/application/applicationd
Command applicationd runs the application daemon, which implements the v.io/x/ref/services/repository.Application interface.
Command applicationd runs the application daemon, which implements the v.io/x/ref/services/repository.Application interface.
ref/services/ben
Package ben defines datastructures to archive microbenchmark results.
Package ben defines datastructures to archive microbenchmark results.
ref/services/ben/archive
Package archive defines the RPC interface for archiving benchmark results.
Package archive defines the RPC interface for archiving benchmark results.
ref/services/ben/benarchd
Command benarchd implements a benchmark archival daemon.
Command benarchd implements a benchmark archival daemon.
ref/services/binary/binary
Command binary manages the Vanadium binary repository.
Command binary manages the Vanadium binary repository.
ref/services/binary/binaryd
Command binaryd runs the binary daemon, which implements the v.io/v23/services/repository.Binary interface.
Command binaryd runs the binary daemon, which implements the v.io/v23/services/repository.Binary interface.
ref/services/binary/tidy
Tidy tidies the Vanadium repository by removing unused envelopes and binaries.
Tidy tidies the Vanadium repository by removing unused envelopes and binaries.
ref/services/debug/debug
Command debug supports debugging Vanadium servers.
Command debug supports debugging Vanadium servers.
ref/services/debug/debug/browseserver
Package browseserver provides a web interface that can be used to interact with the vanadium debug interface.
Package browseserver provides a web interface that can be used to interact with the vanadium debug interface.
ref/services/debug/debuglib
Package debuglib implements debug server support.
Package debuglib implements debug server support.
ref/services/device/claimable
Claimable is a server that implements the Claimable interface from v.io/v23/services/device.
Claimable is a server that implements the Claimable interface from v.io/v23/services/device.
ref/services/device/device
Command device facilitates interaction with the Vanadium device manager.
Command device facilitates interaction with the Vanadium device manager.
ref/services/device/deviced
Command deviced is used to launch, configure and manage the deviced daemon, which implements the v.io/v23/services/device interfaces.
Command deviced is used to launch, configure and manage the deviced daemon, which implements the v.io/v23/services/device interfaces.
ref/services/device/deviced/internal/installer
Package installer contains logic responsible for managing the device manager server, including setting it up / tearing it down, and starting / stopping it.
Package installer contains logic responsible for managing the device manager server, including setting it up / tearing it down, and starting / stopping it.
ref/services/device/deviced/internal/starter
Package starter provides a single function that starts up servers for a mounttable and a device manager that is mounted on it.
Package starter provides a single function that starts up servers for a mounttable and a device manager that is mounted on it.
ref/services/device/deviced/internal/versioning
Package versioning handles device manager versioning.
Package versioning handles device manager versioning.
ref/services/device/inithelper
Command inithelper manages services for a variety of platforms and init systems, such as upstart, systemd etc.
Command inithelper manages services for a variety of platforms and init systems, such as upstart, systemd etc.
ref/services/device/internal/config
Package config handles configuration state passed across instances of the device manager.
Package config handles configuration state passed across instances of the device manager.
ref/services/device/internal/errors
Package errors defines the error ids that are shared between server and client-side.
Package errors defines the error ids that are shared between server and client-side.
ref/services/device/internal/sysinit
Package sysinit provides config generation for a variety of platforms and "init" systems such as upstart, systemd etc.
Package sysinit provides config generation for a variety of platforms and "init" systems such as upstart, systemd etc.
ref/services/device/restarter
Command restarter runs a child command and optionally restarts it depending on the setting of the --restart-exit-code flag.
Command restarter runs a child command and optionally restarts it depending on the setting of the --restart-exit-code flag.
ref/services/device/suidhelper
Command suidhelper runs the provided command as the specified user identity.
Command suidhelper runs the provided command as the specified user identity.
ref/services/discharger
Package discharger defines an interface for obtaining discharges for third-party caveats.
Package discharger defines an interface for obtaining discharges for third-party caveats.
ref/services/groups/groups
Command groups creates and manages Vanadium groups of blessing patterns.
Command groups creates and manages Vanadium groups of blessing patterns.
ref/services/groups/groupsd
Daemon groupsd implements the v.io/v23/services/groups interfaces for managing access control groups.
Daemon groupsd implements the v.io/v23/services/groups interfaces for managing access control groups.
ref/services/groups/internal/server
Package server provides an implementation of the groups.Group RPC interface.
Package server provides an implementation of the groups.Group RPC interface.
ref/services/groups/internal/store/leveldb
Package leveldb provides an implementation of the groups server Store interface that uses the levelDB-based syncbase storage layer.
Package leveldb provides an implementation of the groups server Store interface that uses the levelDB-based syncbase storage layer.
ref/services/groups/internal/store/mem
Package mem provides a simple, in-memory implementation of server.Store.
Package mem provides a simple, in-memory implementation of server.Store.
ref/services/identity
Package identity defines interfaces for Vanadium identity providers.
Package identity defines interfaces for Vanadium identity providers.
ref/services/identity/identityd
Command identityd runs a daemon HTTP server that uses OAuth to create security.Blessings objects.
Command identityd runs a daemon HTTP server that uses OAuth to create security.Blessings objects.
ref/services/identity/identitylib
Package identitylib implements a test identityd service registered using the v.io/x/lib/gosh library.
Package identitylib implements a test identityd service registered using the v.io/x/lib/gosh library.
ref/services/identity/internal/identityd_test
Command identityd_test runs a daemon HTTP server that uses OAuth to create security.Blessings objects.
Command identityd_test runs a daemon HTTP server that uses OAuth to create security.Blessings objects.
ref/services/identity/internal/revocation
Package revocation provides tools to create and manage revocation caveats.
Package revocation provides tools to create and manage revocation caveats.
ref/services/identity/internal/server
HTTP server that uses OAuth to create security.Blessings objects.
HTTP server that uses OAuth to create security.Blessings objects.
ref/services/identity/internal/util
Package util implements miscellaneous utility functions needed by the identity HTTP server.
Package util implements miscellaneous utility functions needed by the identity HTTP server.
ref/services/internal/binarylib
The implementation of the binary repository interface stores objects identified by object name suffixes using the local file system.
The implementation of the binary repository interface stores objects identified by object name suffixes using the local file system.
ref/services/internal/dirprinter
Package dirprinter contains utilities for dumping the contents and structure of a directory tree.
Package dirprinter contains utilities for dumping the contents and structure of a directory tree.
ref/services/internal/fs
Implements a map-based store substitute that implements the legacy store API.
Implements a map-based store substitute that implements the legacy store API.
ref/services/internal/logreaderlib
Package logreaderlib implements the LogFile interface from v.io/v23/services/logreader, which can be used to allow remote access to log files, and the ChildrenGlobber interface from v.io/v23/rpc to find the files in a logs directory.
Package logreaderlib implements the LogFile interface from v.io/v23/services/logreader, which can be used to allow remote access to log files, and the ChildrenGlobber interface from v.io/v23/rpc to find the files in a logs directory.
ref/services/internal/multipart
Package multipart implements an http.File that acts as one logical file backed by several physical files (the 'parts').
Package multipart implements an http.File that acts as one logical file backed by several physical files (the 'parts').
ref/services/internal/packages
Package packages provides functionality to install ZIP and TAR packages.
Package packages provides functionality to install ZIP and TAR packages.
ref/services/internal/pathperms
Package pathperms provides a library to assist servers implementing GetPermissions/SetPermissions functions and authorizers where there are path-specific Permissions stored individually in files.
Package pathperms provides a library to assist servers implementing GetPermissions/SetPermissions functions and authorizers where there are path-specific Permissions stored individually in files.
ref/services/internal/pproflib
Package pproflib defines a client-side proxy and server-side implementation of the v.io/v23/services/pprof interface.
Package pproflib defines a client-side proxy and server-side implementation of the v.io/v23/services/pprof interface.
ref/services/internal/restsigner/signer/v1
Package signer provides access to the .
Package signer provides access to the .
ref/services/internal/servicetest
Package servicetest provides functionality to help write tests for the Vanadium services.
Package servicetest provides functionality to help write tests for the Vanadium services.
ref/services/internal/statslib
Package statslib implements the Stats interface from v.io/v23/services/stats.
Package statslib implements the Stats interface from v.io/v23/services/stats.
ref/services/mounttable/mounttabled
Command mounttabled runs the mount table daemon, which implements the v.io/v23/services/mounttable interfaces.
Command mounttabled runs the mount table daemon, which implements the v.io/v23/services/mounttable interfaces.
ref/services/mounttable/mounttablelib
Package mounttablelib implements utilities for mounttable implementations.
Package mounttablelib implements utilities for mounttable implementations.
ref/services/profile
Package profile defines types for the implementation of Vanadium profiles.
Package profile defines types for the implementation of Vanadium profiles.
ref/services/repository
Package repository augments the v.io/v23/services/repository interfaces with implementation-specific configuration methods.
Package repository augments the v.io/v23/services/repository interfaces with implementation-specific configuration methods.
ref/services/role
Package role defines an interface for requesting blessings from a role account server.
Package role defines an interface for requesting blessings from a role account server.
ref/services/role/roled
Command roled runs the Role interface daemon.
Command roled runs the Role interface daemon.
ref/services/role/roled/internal
Package internal implements the role service defined in v.io/x/ref/services/role
Package internal implements the role service defined in v.io/x/ref/services/role
ref/services/stats
Packages stats defines the non-native types exported by the stats service.
Packages stats defines the non-native types exported by the stats service.
ref/services/xproxy
Package xproxy enables services to export (proxy) themselves across networks (behind NATs for example).
Package xproxy enables services to export (proxy) themselves across networks (behind NATs for example).
ref/services/xproxy/xproxy
Package xproxy contains the implementation of the proxy service.
Package xproxy contains the implementation of the proxy service.
ref/services/xproxy/xproxyd
Command proxyd is a daemon that listens for connections from Vanadium services (typically behind NATs) and proxies these services to the outside world.
Command proxyd is a daemon that listens for connections from Vanadium services (typically behind NATs) and proxies these services to the outside world.
ref/test/basics
Package basics implements some benchmarks for important basic operations in go.
Package basics implements some benchmarks for important basic operations in go.
ref/test/benchmark
Package benchmark implements utilities to augment the standard Go testing.Benchmark functionality.
Package benchmark implements utilities to augment the standard Go testing.Benchmark functionality.
ref/test/expect
Package expect implements support for checking expectations against a buffered input stream.
Package expect implements support for checking expectations against a buffered input stream.
ref/test/hello
Package hello defines a simple client and server and uses them in a series of regression tests.
Package hello defines a simple client and server and uses them in a series of regression tests.
ref/test/hello/helloclient
Command helloclient is a simple client mainly used in regression tests.
Command helloclient is a simple client mainly used in regression tests.
ref/test/hello/helloserver
Command helloserver is a simple server mainly used in regression tests.
Command helloserver is a simple server mainly used in regression tests.
ref/test/testutil
Package testutil implements utilities for unit and integration tests.
Package testutil implements utilities for unit and integration tests.
ref/test/timekeeper
Package timekeeper implements simulated time against the v.io/x/ref/lib/timekeeper.TimeKeeper interface.
Package timekeeper implements simulated time against the v.io/x/ref/lib/timekeeper.TimeKeeper interface.
ref/test/v23test
Package v23test defines Shell, a wrapper around gosh.Shell that provides Vanadium-specific functionality such as credentials management, StartRootMountTable, and StartSyncbase.
Package v23test defines Shell, a wrapper around gosh.Shell that provides Vanadium-specific functionality such as credentials management, StartRootMountTable, and StartSyncbase.
lib Module
ref/aws Module
ref/examples Module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL