Skip to content

Commit 3ebf150

Browse files
committed
Implement TCP server mode.
This new mode works by first loading the model then listening for TCP connections on a port. When a connection is received, arguments will be parsed using a simple protocol: - First the number of arguments will be read followed by a newline character. - Then each argument will be read, separated by the 0 byte. - With this we build an argument vector, similar to what is passed to the program entry point. We pass this to gpt_params_parse. Finally `llama_main` will be executed with the input/output streams connected to the socket. Signed-off-by: Thiago Padilha <thiago@padilha.cc>
1 parent 7996454 commit 3ebf150

9 files changed

+332
-2
lines changed

CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ add_executable(llama
112112
llama.cpp
113113
utils.h)
114114

115+
if(NOT WIN32)
116+
target_sources(llama PRIVATE tcp_server.cpp)
117+
endif()
118+
115119
add_executable(quantize
116120
quantize.cpp
117121
utils.cpp

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,14 @@ utils.o: utils.cpp utils.h
191191
llama.o: llama.cpp llama.h
192192
$(CXX) $(CXXFLAGS) -c llama.cpp -o llama.o
193193

194+
tcp_server.o: tcp_server.cpp tcp_server.h
195+
$(CXX) $(CXXFLAGS) -c tcp_server.cpp -o tcp_server.o
196+
194197
clean:
195198
rm -f *.o main quantize
196199

197-
main: main.cpp ggml.o utils.o llama.o
198-
$(CXX) $(CXXFLAGS) main.cpp ggml.o utils.o llama.o -o main $(LDFLAGS)
200+
main: main.cpp ggml.o utils.o llama.o tcp_server.o
201+
$(CXX) $(CXXFLAGS) main.cpp ggml.o utils.o llama.o tcp_server.o -o main $(LDFLAGS)
199202
./main -h
200203

201204
quantize: quantize.cpp ggml.o utils.o

chat_tcp_client.sh

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/usr/bin/env bash
2+
3+
PORT=${PORT:-8080}
4+
PROMPT="${PROMPT:-"Transcript of a dialog, where the User interacts with an Assistant named Bob. Bob is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision.
5+
6+
User: Hello, Bob.
7+
Bob: Hello. How may I help you today?
8+
User: Please tell me the largest city in Europe.
9+
Bob: Sure. The largest city in Europe is Moscow, the capital of Russia.
10+
User:"}"
11+
RPROMPT="${RPROMPT:-"User:"}"
12+
N_PREDICT="${N_PREDICT:-"4096"}"
13+
REPEAT_PENALTY="${REPEAT_PENALTY:-"1.0"}"
14+
15+
# Open connection to the chat server
16+
exec 3<>/dev/tcp/127.0.0.1/${PORT}
17+
18+
# Pass the arguments. The protocol is really simple:
19+
# 1. Pass the number of arguments followed by a linefeed
20+
# 2. Pass the arguments, with each being followed by "0"
21+
(
22+
echo -en "10\n"
23+
echo -en "-n\x00"
24+
echo -en "$N_PREDICT\x00"
25+
echo -en "--repeat_penalty\x00"
26+
echo -en "$REPEAT_PENALTY\x00"
27+
echo -en "--color\x00"
28+
echo -en "-i\x00"
29+
echo -en "-r\x00"
30+
echo -en "$RPROMPT\x00"
31+
echo -en "-p\x00"
32+
echo -en "$PROMPT\x00"
33+
) >&3
34+
35+
trap exit TERM
36+
37+
# When we have passed the arguments, start printing socket data to the screen.
38+
# This is done in a background job because we also want to send data when
39+
# running in interactive mode.
40+
cat <&3 && echo "(disconnected, press \"enter\" twice to exit)" &
41+
cat >&3
42+
wait

chat_tcp_server.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
PORT=${PORT:-8080}
4+
MODEL=${MODEL:-models/7B/ggml-model-q4_0.bin}
5+
6+
./main -l ${PORT} -m $MODEL

main.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "ggml.h"
22
#include "utils.h"
33
#include "llama.h"
4+
#include "tcp_server.h"
45

56
#include <iostream>
67

@@ -65,5 +66,11 @@ int main(int argc, char ** argv) {
6566
params.n_threads, std::thread::hardware_concurrency(), llama_print_system_info());
6667
}
6768

69+
#ifndef _WIN32
70+
if (params.listen_port != "") {
71+
return listen_tcp(params, vocab, model, t_main_start_us, t_load_us);
72+
}
73+
#endif
74+
6875
return llama_main(params, vocab, model, t_main_start_us, t_load_us, std::cin, stdout, stderr);
6976
}

tcp_server.cpp

+245
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
#include "tcp_server.h"
2+
3+
#include <iostream>
4+
5+
#include <stdarg.h>
6+
#include <stdio.h>
7+
#include <stdlib.h>
8+
#include <stdbool.h>
9+
#include <string.h>
10+
#include <errno.h>
11+
12+
#include <signal.h>
13+
#include <unistd.h>
14+
#include <sys/wait.h>
15+
16+
#include <sys/types.h>
17+
#include <sys/socket.h>
18+
#include <netdb.h>
19+
20+
class PosixStream : public std::istream {
21+
public:
22+
PosixStream(int fd) : std::istream(&buf), buf(fd) {}
23+
~PosixStream() { close(buf.get_fd()); }
24+
25+
private:
26+
class PosixStreamBuf : public std::streambuf {
27+
public:
28+
PosixStreamBuf(int fd) : fd(fd) {}
29+
int get_fd() const { return fd; }
30+
31+
protected:
32+
virtual int_type underflow() {
33+
if (gptr() < egptr()) {
34+
return traits_type::to_int_type(*gptr());
35+
}
36+
37+
ssize_t num_read = ::read(fd, buffer, BUFFER_SIZE);
38+
if (num_read <= 0) {
39+
return traits_type::eof();
40+
}
41+
42+
setg(buffer, buffer, buffer + num_read);
43+
return traits_type::to_int_type(*gptr());
44+
}
45+
46+
private:
47+
static const int BUFFER_SIZE = 1024;
48+
int fd;
49+
char buffer[BUFFER_SIZE];
50+
};
51+
52+
PosixStreamBuf buf;
53+
};
54+
55+
void die(const char *msg, ...)
56+
{
57+
va_list ap;
58+
59+
va_start(ap, msg);
60+
vfprintf(stderr, msg, ap);
61+
va_end(ap);
62+
fputc('\n', stderr);
63+
exit(1);
64+
}
65+
66+
static char *read_argument(uint8_t **param_buf, size_t *param_buf_size, FILE *instream) {
67+
bool done = false;
68+
uint8_t *buf = *param_buf;
69+
size_t bufsize = *param_buf_size;
70+
size_t bufpos = 0;
71+
while (!done) {
72+
if (bufpos == bufsize) {
73+
bufsize += 1024;
74+
buf = (uint8_t *)realloc(buf, bufsize);
75+
if (!buf) {
76+
die("failed to allocate memory");
77+
}
78+
}
79+
80+
int c = fgetc(instream);
81+
if (c == EOF) {
82+
die("unexpected EOF client socket");
83+
}
84+
buf[bufpos++] = (uint8_t)c;
85+
if (c == 0) {
86+
// done reading argument
87+
break;
88+
}
89+
}
90+
*param_buf = buf;
91+
*param_buf_size = bufsize;
92+
return strdup((char *)buf);
93+
}
94+
95+
static int read_arguments(int argc, char **argv, FILE *instream) {
96+
int i = 1;
97+
size_t param_buf_size = 0;
98+
uint8_t *param_buf = nullptr;
99+
100+
for (i = 1; i < argc; i++) {
101+
argv[i] = read_argument(&param_buf, &param_buf_size, instream);
102+
}
103+
104+
free(param_buf);
105+
return i;
106+
}
107+
108+
static int serve_model(
109+
gpt_params params,
110+
gpt_vocab vocab,
111+
llama_model model,
112+
int64_t t_load_us,
113+
int64_t t_main_start_us,
114+
int sock_fd)
115+
{
116+
char *response_data;
117+
int argc;
118+
char **argv;
119+
FILE *instream = fdopen(sock_fd, "r");
120+
FILE *outstream = fdopen(sock_fd, "w");
121+
setvbuf(instream, NULL, _IONBF, 0);
122+
123+
// start by reading the parameter count
124+
if (fscanf(instream, "%d\n", &argc) != 1) {
125+
fprintf(outstream, "Error: First line must be character count\n");
126+
fflush(outstream);
127+
return 1;
128+
}
129+
130+
argc += 1; // add one extra argument to emulate the program command line
131+
argv = (char **)malloc(argc * sizeof *argv);
132+
argv[0] = nullptr;
133+
if (read_arguments(argc, argv, instream) != argc) {
134+
fprintf(outstream, "Error: Failed to read arguments\n");
135+
fflush(outstream);
136+
}
137+
138+
if (gpt_params_parse(argc, argv, params) == false) {
139+
fprintf(outstream, "Error: Failed to parse parameters\n");
140+
fflush(outstream);
141+
return 1;
142+
}
143+
144+
for (int i = 1; i < argc; i++) {
145+
free(argv[i]);
146+
}
147+
free(argv);
148+
149+
PosixStream tcp_is(sock_fd);
150+
151+
return llama_main(params, vocab, model, t_load_us, t_main_start_us, tcp_is, outstream, outstream);
152+
}
153+
154+
int listen_tcp(
155+
gpt_params params,
156+
gpt_vocab vocab,
157+
llama_model model,
158+
int64_t t_main_start_us,
159+
int64_t t_load_us) {
160+
int listen_fd;
161+
int status;
162+
pid_t child;
163+
struct addrinfo hints;
164+
struct addrinfo *servinfo, *p;
165+
int yes = 1;
166+
167+
memset(&hints, 0, sizeof hints);
168+
hints.ai_family = AF_INET;
169+
hints.ai_socktype = SOCK_STREAM;
170+
hints.ai_flags = AI_PASSIVE;
171+
172+
// This should only ever listen on a loopback address. Access from outside
173+
// should be proxied via nginx or similar software
174+
status = getaddrinfo("127.0.0.1", params.listen_port.c_str(), &hints, &servinfo);
175+
if (status) {
176+
die("getaddrinfo error: %s", gai_strerror(status));
177+
}
178+
179+
// bind to the first addrinfo we can from the getaddrinfo results
180+
for (p = servinfo; p != NULL; p = p->ai_next) {
181+
listen_fd = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
182+
if (listen_fd == -1) {
183+
perror("server: socket");
184+
continue;
185+
}
186+
187+
if (setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof yes)) {
188+
die("setsockopt error: %s", params.listen_port.c_str(), strerror(errno));
189+
}
190+
191+
if (bind(listen_fd, p->ai_addr, p->ai_addrlen) == 0) {
192+
break;
193+
}
194+
195+
close(listen_fd);
196+
perror("server: bind");
197+
}
198+
199+
freeaddrinfo(servinfo);
200+
201+
if (p == NULL) {
202+
die("failed to bind: %s", strerror(errno));
203+
}
204+
205+
if (listen(listen_fd, 20)) {
206+
die("listen error: %s", strerror(errno));
207+
}
208+
// Don't track child processes, so ignore SIGCHLD to prevent zombies
209+
signal(SIGCHLD, SIG_IGN);
210+
211+
for (;;) {
212+
struct sockaddr_in client_addr = {0};
213+
socklen_t client_addr_len = 0;
214+
215+
int sock_fd = accept(listen_fd,
216+
(struct sockaddr *)&client_addr,
217+
&client_addr_len);
218+
if (sock_fd < 0) {
219+
fprintf(stderr, "accept error: %s\n", strerror(errno));
220+
break;
221+
}
222+
223+
child = fork();
224+
if (child == 0) {
225+
// close the listen_fd since we won't use it in the child
226+
close(listen_fd);
227+
int ret = serve_model(params, vocab, model, t_main_start_us, t_load_us, sock_fd);
228+
close(sock_fd);
229+
return ret;
230+
} else {
231+
// close the client since we won't use it in the server
232+
close(sock_fd);
233+
sock_fd = 0;
234+
}
235+
}
236+
close(listen_fd);
237+
238+
// ignore SIGTERM since we'll send it to the group
239+
signal(SIGTERM, SIG_IGN);
240+
// tell children to exit
241+
kill(0, SIGTERM);
242+
// wait for children to terminate
243+
wait(&status);
244+
return 0;
245+
}

tcp_server.h

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#pragma once
2+
3+
#include "utils.h"
4+
#include "llama.h"
5+
6+
int listen_tcp(
7+
gpt_params params,
8+
gpt_vocab vocab,
9+
llama_model model,
10+
int64_t t_main_start_us,
11+
int64_t t_load_us);

utils.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
7373
params.antiprompt.push_back(argv[++i]);
7474
} else if (arg == "--ignore-eos") {
7575
params.ignore_eos = true;
76+
#ifndef _WIN32
77+
} else if (arg == "-l" || arg == "--listen") {
78+
params.listen_port = argv[++i];
79+
#endif
7680
} else if (arg == "-h" || arg == "--help") {
7781
gpt_print_usage(argc, argv, params);
7882
exit(0);
@@ -118,6 +122,10 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
118122
fprintf(stderr, " -b N, --batch_size N batch size for prompt processing (default: %d)\n", params.n_batch);
119123
fprintf(stderr, " -m FNAME, --model FNAME\n");
120124
fprintf(stderr, " model path (default: %s)\n", params.model.c_str());
125+
#ifndef _WIN32
126+
fprintf(stderr, " -l PORT, --listen PORT\n");
127+
fprintf(stderr, " Run in TCP mode, listening on PORT\n");
128+
#endif
121129
fprintf(stderr, "\n");
122130
}
123131

utils.h

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ struct gpt_params {
4040
std::vector<std::string> antiprompt; // string upon seeing which more user input is prompted
4141
bool instruct = false; // instruction mode (used for Alpaca models)
4242
bool ignore_eos = false; // do not stop generating after eos
43+
44+
#ifndef _WIN32
45+
std::string listen_port = ""; // TCP port for when running in server mode
46+
#endif
4347
};
4448

4549
bool gpt_params_parse(int argc, char ** argv, gpt_params & params);

0 commit comments

Comments
 (0)