Skip to content

Commit a6840f2

Browse files
committed
[doc] some doc fix and upgrade
1 parent 288ee44 commit a6840f2

8 files changed

+77
-2555
lines changed

README.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Intro
88

9-
VProxy is a zero-dependency TCP Loadbalancer based on Java NIO. The project only requires Java 11 to run.
9+
VProxy is a zero-dependency loadbalancer and sdn virtual switch. The project only requires Java 21 to run.
1010

1111
Clone it, compile it, then everything is ready for running.
1212

@@ -19,6 +19,7 @@ Clone it, compile it, then everything is ready for running.
1919
5. DNS server and customizable A|AAAA records
2020
6. Kubernetes integration
2121
7. Many other standalone extended apps, such as `WebSocksProxyAgent` and `WebSocksProxyServer`
22+
8. SDN virtual switch with full TCP/IP stack support
2223

2324
## Make
2425

@@ -56,10 +57,7 @@ Run:
5657
```shell
5758
make init
5859
```
59-
to initiate submodules and some other init work.
60-
61-
A java agent is required as a patch for gradle.
62-
Copy `misc/modify-gradle-compiler-args-agent.jar` to `~/.gradle/` before compiling this project.
60+
to initiate submodules and some other init work.
6361

6462
</details>
6563

@@ -118,7 +116,7 @@ make vfdposix
118116
java -Dvfd=posix -Djava.library.path=./base/src/main/c -jar build/libs/vproxy.jar -Deploy=HelloWorld
119117
```
120118

121-
And there's a special version for windows to support Tap devices: `-Dvfd=windows`, however the normal fds and event loop are stll based on jdk selector channel.
119+
And there's a special version for windows to support Tap devices: `-Dvfd=windows`, however the normal fds and event loop are still based on jdk selector channel.
122120

123121
```
124122
make vfdwindows
@@ -199,7 +197,7 @@ Current available ui tools:
199197

200198
## Aim
201199

202-
* Zero dependency: no dependency other than java and kotlin standard library.
200+
* Zero dependency: all dependencies are implemented in vproxy subprojects.
203201
* Simple: keep code simple and clear.
204202
* Modifiable when running: no need to reload for configuration update.
205203
* Fast: performance is one of our main priorities.
@@ -329,9 +327,7 @@ See [command.md](https://github.com/wkgcass/vproxy/blob/master/doc/command.md) a
329327

330328
* [how-to-use.md](https://github.com/wkgcass/vproxy/blob/master/doc/how-to-use.md): How to use config file and controllers.
331329
* [api.yaml](https://github.com/wkgcass/vproxy/blob/dev/doc/api.yaml): api doc for http-controller in swagger format.
332-
* [command.md](https://github.com/wkgcass/vproxy/blob/master/doc/command.md): Detailed command document.
333330
* [lb-example.md](https://github.com/wkgcass/vproxy/blob/master/doc/lb-example.md): An example about running a loadbalancer.
334-
* [docker-example.md](https://github.com/wkgcass/vproxy/blob/master/doc/docker-example.md): An example about building and running vproxy in docker.
335331
* [architecture.md](https://github.com/wkgcass/vproxy/blob/master/doc/architecture.md): Something about the architecture.
336332
* [extended-app.md](https://github.com/wkgcass/vproxy/blob/master/doc/extended-app.md): The usage of extended applications.
337333
* [websocks.md](https://github.com/wkgcass/vproxy/blob/master/doc/websocks.md): The WebSocks Protocol.

README_ZH.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## 简介
66

7-
VProxy是一个零依赖的基于NIO的TCP负载均衡器。本项目仅需要Java 11即可运行
7+
VProxy是一个零依赖的负载均衡器和SDN虚拟交换机。本项目仅需要Java 21即可运行
88

99
1) clone,2) 编译,3) 运行!
1010

@@ -17,6 +17,7 @@ VProxy是一个零依赖的基于NIO的TCP负载均衡器。本项目仅需要Ja
1717
5. DNS服务,支持A|AAAA记录
1818
6. 与Kubernetes整合
1919
7. 封装好的针对特定场景的应用,例如`WebSocksProxyAgent``WebSocksProxyServer`
20+
8. 支持完整TCP/IP协议栈的SDN虚拟交换机
2021

2122
## 构建
2223

@@ -50,8 +51,10 @@ Java运行时可以从[这里](https://adoptium.net/releases.html?variant=openjd
5051

5152
<details><summary>打包前置需求</summary>
5253

53-
需要一个java-agent,用作gradle的一个patch。
54-
在编译前,复制`misc/modify-gradle-compiler-args-agent.jar``~/.gradle/`目录即可。
54+
运行如下命令初始化submodules以及运行一些其他的初始化工作:
55+
```shell
56+
make init
57+
```
5558

5659
</details>
5760

@@ -191,7 +194,7 @@ java -cp ./ui/build/libs/vproxy-ui.jar $mainClassName
191194

192195
## 目标
193196

194-
* 零依赖: 除了java和kotlin标准库外不加任何依赖
197+
* 零依赖: 所有依赖均来自vproxy子项目
195198
* 简单:代码简单易懂。
196199
* 运行时可修改:更新配置不需要重启。
197200
* 高效:性能是首要目标之一。
@@ -319,9 +322,7 @@ java -Deploy=Simple -jar vproxy.jar \
319322

320323
* [how-to-use.md(中文)](https://github.com/wkgcass/vproxy/blob/master/doc_zh/how-to-use.md): 如何使用配置文件和controller。
321324
* [api.yaml](https://github.com/wkgcass/vproxy/blob/dev/doc/api.yaml): http-controller的api文档(swagger格式)。
322-
* [command.md](https://github.com/wkgcass/vproxy/blob/master/doc/command.md): 详细的命令文档。
323325
* [lb-example.md(中文)](https://github.com/wkgcass/vproxy/blob/master/doc_zh/lb-example.md): 关于TCP负载均衡的一个使用例子。
324-
* [docker-example.md(中文)](https://github.com/wkgcass/vproxy/blob/master/doc_zh/docker-example.md): 关于构建镜像以及在docker中运行vproxy的一个例子。
325326
* [architecture.md](https://github.com/wkgcass/vproxy/blob/master/doc/architecture.md): 架构相关。
326327
* [extended-app.md(中文)](https://github.com/wkgcass/vproxy/blob/master/doc_zh/extended-app.md): 扩展应用的使用方式。
327328
* [websocks.md](https://github.com/wkgcass/vproxy/blob/master/doc/websocks.md): The WebSocks Protocol.

doc/architecture.md

+51-13
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,39 @@ Everything is based on `FD` and `Selector`.
1010

1111
#### FD
1212

13-
FD is an abstraction for jdk channel or os fds. With the help of FDs, we can easily change the whole network stack without touching the upper level code. For example you can use (almost) all functionalities when you switch to the `F-Stack` fd implementation.
13+
FD is an abstraction for jdk channel or os fds. With the help of FDs, we can easily change the whole network stack without touching the upper level code. For example you can use all functionalities when you switch to the `vfdposix` fd implementation.
1414

1515
Also it makes it easy to write ARQ protocols based on UDP, and wrap them into `TCP-like` API, and plug into the vproxy system. For example you can use the KCP FDs impl just like using a normal TCP channel.
1616

17+
#### FDSelector
18+
19+
A wrapper for selector, epoll, kqueue etc. It encapsulates core functionality related to the low level API.
20+
Also provides a general `virtual` fd implementation, the upper level code don't have to care whether it's a real fd or virtual fd.
21+
1722
#### SelectorEventLoop
1823

19-
We first built the `SelectorEventLoop`. It provides a common callback handler wrapper for `Channel` events. Also the loop can handle time events, which is based on `selector.select(timeout)`.
24+
It provides a common callback handler wrapper for `Channel` events. Also the loop can handle time events, which is based on `selector.select(timeout)`.
2025
You may consider it in the same position as libae in redis.
2126

2227
#### NetEventLoop
2328

24-
Then we built `NetEventLoop` based on `SelectorEventLoop`, and provided a few wrappers for `SocketChannel`s, as you can see from the architecture figure. This makes network related coding easy and simple.
29+
The `NetEventLoop` is based on `SelectorEventLoop`, and provided a few wrappers for `SocketChannel`s, as you can see from the architecture figure. This makes network related coding easy and simple.
2530
Also, vproxy provides a `RingBuffer` (in util package, used in almost every component), which can write and read at the same time. The network handling is simple: you write into output buffer, then the lib writes that data to channel; when reading is possible, the lib calls your readable callback and you can read data from the input buffer.
2631

27-
We start to build the lb part after having these two event loops.
32+
We start to build the lb part after having these event loops.
2833

2934
#### Proxy
3035

3136
The `Proxy` can accept connections, dispatch the connections on different loops, create connections to some remote endpoints, and then proxy the network data.
32-
The accept eventloop, handle eventloop (for handling connections), which backend to use, are all configurable and can be changed when running.
37+
The acceptor eventloop, worker eventloop (for handling connections), which backend to use, are all configurable and can be changed when running.
3338

3439
#### EventLoopWrapper
3540

3641
`EventLoopWrapper` is nothing more than a wrapper for NetEventLoop. It keeps registered channel data for statistics and management. Also it can bind resources, which will be alerted on removal or when event loop ends.
3742

3843
#### EventLoopGroup
3944

40-
`EventLoopGroup` contains multiple `EventLoopWrapper`. Also it can bind resources, just like `EventLoopWrapper`. It provides a `next()` method to retrive the next running event loop. The method of selecting event loop is always RR.
45+
`EventLoopGroup` contains multiple `EventLoopWrapper`. Also it can bind resources, just like `EventLoopWrapper`. It provides a `next()` method to retrieve the next running event loop. The method of selecting event loop is always RR.
4146

4247
#### ConnectClient
4348

@@ -61,6 +66,42 @@ These are the main functionalities that vproxy main program provides.
6166

6267
`TcpLB` listens on a port and does loadbalancing for TCP based protocols (e.g. HTTP). You can create multiple `TcpLB`s if you want to listen on multiple ports. `Socks5Server` is almost the same as `TcpLB` but it runs socks5 protocol and proxies netflow to client specified backend.
6368

69+
#### DNSServer
70+
71+
It provides basic DNS server functionalities: resolving `A|AAAA|SRV` records, based on information recorded in the `upstream`, or recursively request other DNS servers if configured.
72+
73+
### SDN
74+
75+
The project provides a SDN virtual switch with a complete TCP/IP stack. It allows you to forward, route, nat and handle packets.
76+
77+
#### Switch
78+
79+
The SDN virtual switch is provided with the `switch` resource.
80+
81+
#### VirtualNetwork
82+
83+
A virtual network inside the switch. The name of the VPC is a number which usually represents the VLan or VNI of the network.
84+
85+
Inside the network, you can configure ips, route tables. You can also handle packets programmatically or with the flow generator.
86+
87+
#### IFace
88+
89+
The network interface encapsulation. The base class makes it very easy to implement new netif for the switch.
90+
There are a bunch of `IFace` implementations, e.g. `tap, tun, xdp, vxlan, vlan, ...`
91+
92+
The `iface` belongs to `switch`, but should be attached to a virtual network.
93+
94+
#### Node
95+
96+
The concept comes from VPP. Each node is one step inside the network stack, and each node decides which node should the packet be sent to.
97+
A inspecting command is provided to observe the packet traveling routine, in case of debugging.
98+
99+
#### PacketFilter
100+
101+
A packet filter hook on `iface` ingress/egress. It can pass, drop, modify packets, and can even re-inject the packet to a specific node.
102+
103+
The flow generator is implemented with `PacketFilter`.
104+
64105
### Control Plane
65106

66107
VProxy will create a event loop named `ControlEventLoop` for controlling operations. All quick operations will be operated on this event loop, some operations that might take a very long time will be operated on new threads.
@@ -79,15 +120,12 @@ VProxy provides you with multiple ways of configuring the vproxy instance.
79120

80121
`HTTPController` creates an HTTP server that exposes RESTful json api to manage the vproxy instance.
81122

82-
### Service Mesh
83-
84-
VProxy provides the ability of service discovery and can act as a sidecar.
85-
You may use the combination of `TcpLB`, `Socks5Server`, `SmartGroupDelegate` and `SmartNodeDelegate` to build any role inside a mesh.
86-
87123
### Library
88124

89-
With all above functionalities, vproxy wraps some of them and provides libraries with light weight API.
125+
With all above functionalities, vproxy wraps some of them and provides libraries with lightweight API.
126+
127+
A netty and vertx eventloop and socket implementation is provided, makes it much easier to reuse netty features.
90128

91129
### Application
92130

93-
Besides acting as a loadbalancer, vproxy provides some other network related tools, for example you may use the WebSocksProxyAgent/Server to build a tunnel through fireware.
131+
Besides core functionalities, vproxy provides some other network related tools, for example you may use the WebSocksProxyAgent/Server to build a tunnel through firewalls.

0 commit comments

Comments
 (0)