bind
システムで任意の使用可能なポートを取得するには、ポートパラメータ0を使用するバイナリを実行する必要があります。カーネルが選択できるポート範囲を制限する方法はありますか?
答え1
Linuxでは、次のことを行います。
sudo sysctl -w net.ipv4.ip_local_port_range="60000 61000"
たとえば、他の unice の一時ポート範囲を変更する方法については、次のようにします。http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html
答え2
bind()
ソースコードにアクセスせずにバイナリの実行方法を変更したい場合は、時々shimを使用できます。これは、例で提供された関数を呼び出して実際の関数への呼び出しを置き換えるコードの断片です。古いデータを操作できます。で確認LD_PRELOAD
済みman ld.so
これを正確に実行する一部のCプログラムshim_bind.cは、ポートを7777で上書きし、AF_INETソケットを想定しています。コンパイルして命令の前に貼り付けて使用してくださいgcc -Wall -O2 -fpic -shared -ldl -o shim_bind.so shim_bind.c
。LD_PRELOAD=shim_bind.so
/*
* capture calls to a routine and replace with your code
* http://unix.stackexchange.com/a/305336/119298
* gcc -Wall -O2 -fpic -shared -ldl -o shim_bind.so shim_bind.c
* LD_PRELOAD=/path/to/shim_bind.so ./test
*/
#define _GNU_SOURCE /* needed to get RTLD_NEXT defined in dlfcn.h */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <dlfcn.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen){
static int (*real_bind)(int sockfd, const struct sockaddr *addr,
socklen_t addrlen) = NULL;
int port = 7777;
struct sockaddr_in theaddr;
if (!real_bind) {
real_bind = dlsym(RTLD_NEXT, "bind");
char *error = dlerror();
if (error != NULL) {
fprintf(stderr, "%s\n", error);
exit(1);
}
}
fprintf(stderr, "binding: port %d\n", port);
memcpy(&theaddr, addr, sizeof(theaddr));
theaddr.sin_port = htons((unsigned short)port);
return real_bind(sockfd, (struct sockaddr*)&theaddr, addrlen);
}