优化多线程
This commit is contained in:
parent
2dc3eea220
commit
b8f20c3a09
2
Makefile
2
Makefile
@ -12,7 +12,7 @@ all:forward-tunnel reverse-tunnel
|
||||
|
||||
forward-tunnel: forward-tunnel.o
|
||||
$(CC) $(CFLAGS) -o forward-tunnel $^ $(SSH2_LIB) $(LIB)
|
||||
: $(STRIP) forward-tunnel
|
||||
$(STRIP) forward-tunnel
|
||||
|
||||
reverse-tunnel: reverse-tunnel.o
|
||||
$(CC) $(CFLAGS) -o reverse-tunnel $^ $(SSH2_LIB) $(LIB)
|
||||
|
BIN
forward-tunnel
Normal file
BIN
forward-tunnel
Normal file
Binary file not shown.
@ -147,7 +147,6 @@ void *forward_tunnel(void *p)
|
||||
goto shutdown;
|
||||
}
|
||||
|
||||
|
||||
if (rc && FD_ISSET(forwardsock, &fds)) { // 测试某一个描述符返回值: 若fd在描述符集中则返回非0,否则返回0
|
||||
len = read(forwardsock, buffer, sizeof(buffer));
|
||||
if (len < 0) {
|
||||
@ -199,10 +198,11 @@ void *forward_tunnel(void *p)
|
||||
fprintf(stderr, "The server at %s:%d disconnected!\n", remote_desthost, remote_destport);
|
||||
goto shutdown;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
shutdown:
|
||||
close(forwardsock);
|
||||
if (channel)
|
||||
@ -218,13 +218,6 @@ shutdown:
|
||||
|
||||
}
|
||||
|
||||
int nice( int increment)
|
||||
{
|
||||
int oldprio = getpriority(PRIO_PROCESS, getpid());
|
||||
printf("%d\n", oldprio);
|
||||
return setpriority(PRIO_PROCESS, getpid(), oldprio + increment);
|
||||
}
|
||||
|
||||
static char help_info(void)
|
||||
{
|
||||
static const char name[] = "STunnel";
|
||||
@ -270,6 +263,13 @@ static char help_info(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int nice( int increment)
|
||||
{
|
||||
int oldprio = getpriority(PRIO_PROCESS, getpid());
|
||||
printf("%d\n", oldprio);
|
||||
return setpriority(PRIO_PROCESS, getpid(), oldprio + increment);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[], char **env)
|
||||
{
|
||||
struct sockaddr_in sin;
|
||||
@ -277,7 +277,7 @@ int main(int argc, char *argv[], char **env)
|
||||
socklen_t server_addr_len;
|
||||
int sockopt = 1;
|
||||
int listensock = -1, forwardsock = -1;
|
||||
int daemon_is = 0;
|
||||
int daemon_ = 0;
|
||||
int opt;
|
||||
|
||||
|
||||
@ -285,7 +285,7 @@ int main(int argc, char *argv[], char **env)
|
||||
while (-1 != (opt = getopt(argc, argv, optstring))) {
|
||||
switch (opt) {
|
||||
case 'd':
|
||||
daemon_is = 1;
|
||||
daemon_ = 1;
|
||||
break;
|
||||
case 'r':
|
||||
server_ssh_ip = strdup(optarg);
|
||||
@ -346,7 +346,7 @@ int main(int argc, char *argv[], char **env)
|
||||
goto shutdown;
|
||||
}
|
||||
|
||||
if (listen(listensock, 1024) < 0) {
|
||||
if (listen(listensock, 500) < 0) {
|
||||
perror("listen");
|
||||
goto shutdown;
|
||||
}
|
||||
@ -354,7 +354,9 @@ int main(int argc, char *argv[], char **env)
|
||||
fprintf(stderr, "Waiting for TCP connection on %s:%d...\n", inet_ntoa(sin.sin_addr), ntohs(sin.sin_port));
|
||||
|
||||
|
||||
if (daemon_is == 1) {
|
||||
|
||||
|
||||
if (daemon_ == 1) {
|
||||
if (daemon(1, 1)) {
|
||||
perror("daemon");
|
||||
return -1;
|
||||
@ -368,21 +370,25 @@ int main(int argc, char *argv[], char **env)
|
||||
|
||||
pthread_t thread_id = 0;
|
||||
pthread_attr_t attr;
|
||||
pthread_attr_init(&attr);
|
||||
struct sched_param sched_param;
|
||||
struct sched_param param;
|
||||
sigset_t signal_mask;
|
||||
|
||||
sigemptyset(&signal_mask);
|
||||
sigaddset(&signal_mask, SIGPIPE); // 忽略PIPE信号
|
||||
sigaddset(&signal_mask, SIGPIPE); // 忽略PIPE信号
|
||||
if (pthread_sigmask(SIG_BLOCK, &signal_mask, NULL) != 0) {
|
||||
printf("block sigpipe error\n");
|
||||
}
|
||||
pthread_attr_setschedpolicy(&attr, SCHED_FIFO); // 先到先得(实时调度)算法.
|
||||
//pthread_attr_getschedparam(&attr, &sched_param);
|
||||
sched_param.sched_priority = 99;
|
||||
pthread_attr_setschedparam(&attr, &sched_param); // SCHED_FIFO 和 SCHED_RR 策略的静态优先级范围为 1 到 99 ,其余的优先级为 0 政策。
|
||||
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); // 系统所有线程之间争夺 CPU 资源.
|
||||
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); // 线程执行完函数后,会自行终止并释放占用的资源.
|
||||
|
||||
|
||||
|
||||
// 初始化线程属性
|
||||
pthread_attr_init(&attr);
|
||||
|
||||
// 设置线程调度策略为SCHED_FIFO
|
||||
pthread_attr_setschedpolicy(&attr, SCHED_FIFO);
|
||||
|
||||
// 设置线程优先级为50
|
||||
param.sched_priority = 50;
|
||||
pthread_attr_setschedparam(&attr, ¶m);
|
||||
|
||||
|
||||
while (1) {
|
||||
@ -392,11 +398,16 @@ int main(int argc, char *argv[], char **env)
|
||||
perror("accept");
|
||||
goto shutdown;
|
||||
}
|
||||
getsockname(forwardsock, (struct sockaddr *)&sin, &server_addr_len);
|
||||
char *ip = inet_ntoa(sin.sin_addr);
|
||||
printf("Client IP address: %s\n", ip);
|
||||
|
||||
pthread_create(&thread_id, &attr, &forward_tunnel, (void *)&forwardsock);
|
||||
|
||||
}
|
||||
|
||||
pthread_attr_destroy(&attr);
|
||||
pthread_join(thread_id, NULL);
|
||||
pthread_exit(NULL);
|
||||
|
||||
|
||||
|
@ -19,6 +19,11 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/resource.h>
|
||||
|
||||
|
||||
#include <sys/poll.h>
|
||||
|
||||
#define MAX_EVENTS 1024
|
||||
|
||||
#define BUILD(fmt...) do { fprintf(stderr,"%s %s ",__DATE__,__TIME__); fprintf(stderr, ##fmt); } while(0)
|
||||
|
||||
#ifndef INADDR_NONE
|
||||
|
BIN
forward-tunnel.o
Normal file
BIN
forward-tunnel.o
Normal file
Binary file not shown.
BIN
reverse-tunnel
Normal file
BIN
reverse-tunnel
Normal file
Binary file not shown.
BIN
reverse-tunnel.o
Normal file
BIN
reverse-tunnel.o
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user