123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <AK/Assertions.h>
- #include <AK/ByteBuffer.h>
- #include <AK/ScopeGuard.h>
- #include <AK/String.h>
- #include <Kernel/Net/IPv4.h>
- #include <arpa/inet.h>
- #include <netdb.h>
- #include <netinet/in.h>
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- extern "C" {
- int h_errno;
- static hostent __gethostbyname_buffer;
- static in_addr_t __gethostbyname_address;
- static in_addr_t* __gethostbyname_address_list_buffer[2];
- static hostent __gethostbyaddr_buffer;
- static in_addr_t* __gethostbyaddr_address_list_buffer[2];
- static constexpr i32 lookup_server_endpoint_magic = 9001;
- // Get service entry buffers and file information for the getservent() family of functions.
- static FILE* services_file = nullptr;
- static const char* services_path = "/etc/services";
- static bool fill_getserv_buffers(const char* line, ssize_t read);
- static servent __getserv_buffer;
- static String __getserv_name_buffer;
- static String __getserv_protocol_buffer;
- static int __getserv_port_buffer;
- static Vector<ByteBuffer> __getserv_alias_list_buffer;
- static Vector<char*> __getserv_alias_list;
- static bool keep_service_file_open = false;
- static ssize_t service_file_offset = 0;
- // Get protocol entry buffers and file information for the getprotent() family of functions.
- static FILE* protocols_file = nullptr;
- static const char* protocols_path = "/etc/protocols";
- static bool fill_getproto_buffers(const char* line, ssize_t read);
- static protoent __getproto_buffer;
- static String __getproto_name_buffer;
- static Vector<ByteBuffer> __getproto_alias_list_buffer;
- static Vector<char*> __getproto_alias_list;
- static int __getproto_protocol_buffer;
- static bool keep_protocols_file_open = false;
- static ssize_t protocol_file_offset = 0;
- static int connect_to_lookup_server()
- {
- int fd = socket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
- if (fd < 0) {
- perror("socket");
- return -1;
- }
- sockaddr_un address {
- AF_LOCAL,
- "/tmp/portal/lookup"
- };
- if (connect(fd, (const sockaddr*)&address, sizeof(address)) < 0) {
- perror("connect_to_lookup_server");
- close(fd);
- return -1;
- }
- return fd;
- }
- static String gethostbyname_name_buffer;
- hostent* gethostbyname(const char* name)
- {
- auto ipv4_address = IPv4Address::from_string(name);
- if (ipv4_address.has_value()) {
- gethostbyname_name_buffer = ipv4_address.value().to_string();
- __gethostbyname_buffer.h_name = const_cast<char*>(gethostbyname_name_buffer.characters());
- __gethostbyname_buffer.h_aliases = nullptr;
- __gethostbyname_buffer.h_addrtype = AF_INET;
- new (&__gethostbyname_address) IPv4Address(ipv4_address.value());
- __gethostbyname_address_list_buffer[0] = &__gethostbyname_address;
- __gethostbyname_address_list_buffer[1] = nullptr;
- __gethostbyname_buffer.h_addr_list = (char**)__gethostbyname_address_list_buffer;
- __gethostbyname_buffer.h_length = 4;
- return &__gethostbyname_buffer;
- }
- int fd = connect_to_lookup_server();
- if (fd < 0)
- return nullptr;
- auto close_fd_on_exit = ScopeGuard([fd] {
- close(fd);
- });
- size_t name_length = strlen(name);
- struct [[gnu::packed]] {
- u32 message_size;
- i32 endpoint_magic;
- i32 message_id;
- i32 name_length;
- } request_header = {
- sizeof(request_header) - sizeof(request_header.message_size) + name_length,
- lookup_server_endpoint_magic,
- 1,
- (i32)name_length,
- };
- int nsent = write(fd, &request_header, sizeof(request_header));
- if (nsent < 0) {
- perror("write");
- return nullptr;
- }
- ASSERT((size_t)nsent == sizeof(request_header));
- nsent = write(fd, name, name_length);
- if (nsent < 0) {
- perror("write");
- return nullptr;
- }
- ASSERT((size_t)nsent == name_length);
- struct [[gnu::packed]] {
- u32 message_size;
- i32 endpoint_magic;
- i32 message_id;
- i32 code;
- u64 addresses_count;
- } response_header;
- int nrecv = read(fd, &response_header, sizeof(response_header));
- if (nrecv < 0) {
- perror("recv");
- return nullptr;
- }
- ASSERT((size_t)nrecv == sizeof(response_header));
- if (response_header.endpoint_magic != lookup_server_endpoint_magic || response_header.message_id != 2) {
- dbgln("Received an unexpected message");
- return nullptr;
- }
- if (response_header.code != 0) {
- // TODO: return a specific error.
- return nullptr;
- }
- ASSERT(response_header.addresses_count > 0);
- i32 response_length;
- nrecv = read(fd, &response_length, sizeof(response_length));
- if (nrecv < 0) {
- perror("recv");
- return nullptr;
- }
- ASSERT((size_t)nrecv == sizeof(response_length));
- ASSERT(response_length == sizeof(__gethostbyname_address));
- nrecv = read(fd, &__gethostbyname_address, response_length);
- if (nrecv < 0) {
- perror("recv");
- return nullptr;
- }
- ASSERT(nrecv == response_length);
- gethostbyname_name_buffer = name;
- __gethostbyname_buffer.h_name = const_cast<char*>(gethostbyname_name_buffer.characters());
- __gethostbyname_buffer.h_aliases = nullptr;
- __gethostbyname_buffer.h_addrtype = AF_INET;
- __gethostbyname_address_list_buffer[0] = &__gethostbyname_address;
- __gethostbyname_address_list_buffer[1] = nullptr;
- __gethostbyname_buffer.h_addr_list = (char**)__gethostbyname_address_list_buffer;
- __gethostbyname_buffer.h_length = 4;
- return &__gethostbyname_buffer;
- }
- static String gethostbyaddr_name_buffer;
- hostent* gethostbyaddr(const void* addr, socklen_t addr_size, int type)
- {
- if (type != AF_INET) {
- errno = EAFNOSUPPORT;
- return nullptr;
- }
- if (addr_size < sizeof(in_addr)) {
- errno = EINVAL;
- return nullptr;
- }
- int fd = connect_to_lookup_server();
- if (fd < 0)
- return nullptr;
- auto close_fd_on_exit = ScopeGuard([fd] {
- close(fd);
- });
- const in_addr_t& in_addr = ((const struct in_addr*)addr)->s_addr;
- struct [[gnu::packed]] {
- u32 message_size;
- i32 endpoint_magic;
- i32 message_id;
- i32 address_length;
- } request_header = {
- sizeof(request_header) - sizeof(request_header.message_size) + sizeof(in_addr),
- lookup_server_endpoint_magic,
- 3,
- (i32)sizeof(in_addr),
- };
- int nsent = write(fd, &request_header, sizeof(request_header));
- if (nsent < 0) {
- perror("write");
- return nullptr;
- }
- ASSERT((size_t)nsent == sizeof(request_header));
- nsent = write(fd, &in_addr, sizeof(in_addr));
- if (nsent < 0) {
- perror("write");
- return nullptr;
- }
- ASSERT((size_t)nsent == sizeof(in_addr));
- struct [[gnu::packed]] {
- u32 message_size;
- i32 endpoint_magic;
- i32 message_id;
- i32 code;
- i32 name_length;
- } response_header;
- int nrecv = read(fd, &response_header, sizeof(response_header));
- if (nrecv < 0) {
- perror("recv");
- return nullptr;
- }
- ASSERT((size_t)nrecv == sizeof(response_header));
- if (response_header.endpoint_magic != lookup_server_endpoint_magic || response_header.message_id != 4) {
- dbgln("Received an unexpected message");
- return nullptr;
- }
- if (response_header.code != 0) {
- // TODO: return a specific error.
- return nullptr;
- }
- char* buffer;
- auto string_impl = StringImpl::create_uninitialized(response_header.name_length, buffer);
- nrecv = read(fd, buffer, response_header.name_length);
- if (nrecv < 0) {
- perror("recv");
- return nullptr;
- }
- ASSERT(nrecv == response_header.name_length);
- gethostbyaddr_name_buffer = move(string_impl);
- __gethostbyaddr_buffer.h_name = buffer;
- __gethostbyaddr_buffer.h_aliases = nullptr;
- __gethostbyaddr_buffer.h_addrtype = AF_INET;
- // FIXME: Should we populate the hostent's address list here with a sockaddr_in for the provided host?
- __gethostbyaddr_address_list_buffer[0] = nullptr;
- __gethostbyaddr_buffer.h_addr_list = (char**)__gethostbyaddr_address_list_buffer;
- __gethostbyaddr_buffer.h_length = 4;
- return &__gethostbyaddr_buffer;
- }
- struct servent* getservent()
- {
- //If the services file is not open, attempt to open it and return null if it fails.
- if (!services_file) {
- services_file = fopen(services_path, "r");
- if (!services_file) {
- perror("error opening services file");
- return nullptr;
- }
- }
- if (fseek(services_file, service_file_offset, SEEK_SET) != 0) {
- perror("error seeking file");
- fclose(services_file);
- return nullptr;
- }
- char* line = nullptr;
- size_t len = 0;
- ssize_t read;
- auto free_line_on_exit = ScopeGuard([line] {
- if (line) {
- free(line);
- }
- });
- // Read lines from services file until an actual service name is found.
- do {
- read = getline(&line, &len, services_file);
- service_file_offset += read;
- if (read > 0 && (line[0] >= 65 && line[0] <= 122)) {
- break;
- }
- } while (read != -1);
- if (read == -1) {
- fclose(services_file);
- services_file = nullptr;
- service_file_offset = 0;
- return nullptr;
- }
- servent* service_entry = nullptr;
- if (!fill_getserv_buffers(line, read))
- return nullptr;
- __getserv_buffer.s_name = const_cast<char*>(__getserv_name_buffer.characters());
- __getserv_buffer.s_port = __getserv_port_buffer;
- __getserv_buffer.s_proto = const_cast<char*>(__getserv_protocol_buffer.characters());
- __getserv_alias_list.clear_with_capacity();
- __getserv_alias_list.ensure_capacity(__getserv_alias_list_buffer.size() + 1);
- for (auto& alias : __getserv_alias_list_buffer)
- __getserv_alias_list.unchecked_append(reinterpret_cast<char*>(alias.data()));
- __getserv_alias_list.unchecked_append(nullptr);
- __getserv_buffer.s_aliases = __getserv_alias_list.data();
- service_entry = &__getserv_buffer;
- if (!keep_service_file_open) {
- endservent();
- }
- return service_entry;
- }
- struct servent* getservbyname(const char* name, const char* protocol)
- {
- bool previous_file_open_setting = keep_service_file_open;
- setservent(1);
- struct servent* current_service = nullptr;
- auto service_file_handler = ScopeGuard([previous_file_open_setting] {
- if (!previous_file_open_setting) {
- endservent();
- }
- });
- while (true) {
- current_service = getservent();
- if (current_service == nullptr)
- break;
- else if (!protocol && strcmp(current_service->s_name, name) == 0)
- break;
- else if (strcmp(current_service->s_name, name) == 0 && strcmp(current_service->s_proto, protocol) == 0)
- break;
- }
- return current_service;
- }
- struct servent* getservbyport(int port, const char* protocol)
- {
- bool previous_file_open_setting = keep_service_file_open;
- setservent(1);
- struct servent* current_service = nullptr;
- auto service_file_handler = ScopeGuard([previous_file_open_setting] {
- if (!previous_file_open_setting) {
- endservent();
- }
- });
- while (true) {
- current_service = getservent();
- if (current_service == nullptr)
- break;
- else if (!protocol && current_service->s_port == port)
- break;
- else if (current_service->s_port == port && (strcmp(current_service->s_proto, protocol) == 0))
- break;
- }
- return current_service;
- }
- void setservent(int stay_open)
- {
- if (!services_file) {
- services_file = fopen(services_path, "r");
- if (!services_file) {
- perror("error opening services file");
- return;
- }
- }
- rewind(services_file);
- keep_service_file_open = stay_open;
- service_file_offset = 0;
- }
- void endservent()
- {
- if (!services_file) {
- return;
- }
- fclose(services_file);
- services_file = nullptr;
- }
- // Fill the service entry buffer with the information contained
- // in the currently read line, returns true if successful,
- // false if failure occurs.
- static bool fill_getserv_buffers(const char* line, ssize_t read)
- {
- //Splitting the line by tab delimiter and filling the servent buffers name, port, and protocol members.
- String string_line = String(line, read);
- string_line.replace(" ", "\t", true);
- auto split_line = string_line.split('\t');
- // This indicates an incorrect file format.
- // Services file entries should always at least contain
- // name and port/protocol, separated by tabs.
- if (split_line.size() < 2) {
- fprintf(stderr, "getservent(): malformed services file\n");
- return false;
- }
- __getserv_name_buffer = split_line[0];
- auto port_protocol_split = String(split_line[1]).split('/');
- if (port_protocol_split.size() < 2) {
- fprintf(stderr, "getservent(): malformed services file\n");
- return false;
- }
- auto number = port_protocol_split[0].to_int();
- if (!number.has_value())
- return false;
- __getserv_port_buffer = number.value();
- // Remove any annoying whitespace at the end of the protocol.
- port_protocol_split[1].replace(" ", "", true);
- port_protocol_split[1].replace("\t", "", true);
- port_protocol_split[1].replace("\n", "", true);
- __getserv_protocol_buffer = port_protocol_split[1];
- __getserv_alias_list_buffer.clear();
- // If there are aliases for the service, we will fill the alias list buffer.
- if (split_line.size() > 2 && !split_line[2].starts_with('#')) {
- for (size_t i = 2; i < split_line.size(); i++) {
- if (split_line[i].starts_with('#')) {
- break;
- }
- auto alias = split_line[i].to_byte_buffer();
- alias.append("\0", sizeof(char));
- __getserv_alias_list_buffer.append(alias);
- }
- }
- return true;
- }
- struct protoent* getprotoent()
- {
- // If protocols file isn't open, attempt to open and return null on failure.
- if (!protocols_file) {
- protocols_file = fopen(protocols_path, "r");
- if (!protocols_file) {
- perror("error opening protocols file");
- return nullptr;
- }
- }
- if (fseek(protocols_file, protocol_file_offset, SEEK_SET) != 0) {
- perror("error seeking protocols file");
- fclose(protocols_file);
- return nullptr;
- }
- char* line = nullptr;
- size_t len = 0;
- ssize_t read;
- auto free_line_on_exit = ScopeGuard([line] {
- if (line) {
- free(line);
- }
- });
- do {
- read = getline(&line, &len, protocols_file);
- protocol_file_offset += read;
- if (read > 0 && (line[0] >= 65 && line[0] <= 122)) {
- break;
- }
- } while (read != -1);
- if (read == -1) {
- fclose(protocols_file);
- protocols_file = nullptr;
- protocol_file_offset = 0;
- return nullptr;
- }
- struct protoent* protocol_entry = nullptr;
- if (!fill_getproto_buffers(line, read))
- return nullptr;
- __getproto_buffer.p_name = const_cast<char*>(__getproto_name_buffer.characters());
- __getproto_buffer.p_proto = __getproto_protocol_buffer;
- __getproto_alias_list.clear_with_capacity();
- __getproto_alias_list.ensure_capacity(__getproto_alias_list_buffer.size() + 1);
- for (auto& alias : __getproto_alias_list_buffer)
- __getproto_alias_list.unchecked_append(reinterpret_cast<char*>(alias.data()));
- __getserv_alias_list.unchecked_append(nullptr);
- __getproto_buffer.p_aliases = __getproto_alias_list.data();
- protocol_entry = &__getproto_buffer;
- if (!keep_protocols_file_open)
- endprotoent();
- return protocol_entry;
- }
- struct protoent* getprotobyname(const char* name)
- {
- bool previous_file_open_setting = keep_protocols_file_open;
- setprotoent(1);
- struct protoent* current_protocol = nullptr;
- auto protocol_file_handler = ScopeGuard([previous_file_open_setting] {
- if (!previous_file_open_setting) {
- endprotoent();
- }
- });
- while (true) {
- current_protocol = getprotoent();
- if (current_protocol == nullptr)
- break;
- else if (strcmp(current_protocol->p_name, name) == 0)
- break;
- }
- return current_protocol;
- }
- struct protoent* getprotobynumber(int proto)
- {
- bool previous_file_open_setting = keep_protocols_file_open;
- setprotoent(1);
- struct protoent* current_protocol = nullptr;
- auto protocol_file_handler = ScopeGuard([previous_file_open_setting] {
- if (!previous_file_open_setting) {
- endprotoent();
- }
- });
- while (true) {
- current_protocol = getprotoent();
- if (current_protocol == nullptr)
- break;
- else if (current_protocol->p_proto == proto)
- break;
- }
- return current_protocol;
- }
- void setprotoent(int stay_open)
- {
- if (!protocols_file) {
- protocols_file = fopen(protocols_path, "r");
- if (!protocols_file) {
- perror("setprotoent(): error opening protocols file");
- return;
- }
- }
- rewind(protocols_file);
- keep_protocols_file_open = stay_open;
- protocol_file_offset = 0;
- }
- void endprotoent()
- {
- if (!protocols_file) {
- return;
- }
- fclose(protocols_file);
- protocols_file = nullptr;
- }
- static bool fill_getproto_buffers(const char* line, ssize_t read)
- {
- String string_line = String(line, read);
- string_line.replace(" ", "\t", true);
- auto split_line = string_line.split('\t');
- // This indicates an incorrect file format. Protocols file entries should
- // always have at least a name and a protocol.
- if (split_line.size() < 2) {
- fprintf(stderr, "getprotoent(): malformed protocols file\n");
- return false;
- }
- __getproto_name_buffer = split_line[0];
- auto number = split_line[1].to_int();
- if (!number.has_value())
- return false;
- __getproto_protocol_buffer = number.value();
- __getproto_alias_list_buffer.clear();
- // If there are aliases for the protocol, we will fill the alias list buffer.
- if (split_line.size() > 2 && !split_line[2].starts_with('#')) {
- for (size_t i = 2; i < split_line.size(); i++) {
- if (split_line[i].starts_with('#'))
- break;
- auto alias = split_line[i].to_byte_buffer();
- alias.append("\0", sizeof(char));
- __getproto_alias_list_buffer.append(alias);
- }
- }
- return true;
- }
- }
|