-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
61 lines (36 loc) · 1.76 KB
/
README
File metadata and controls
61 lines (36 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
libdothosts.so
==============
The dothosts library is a LD_PRELOAD based library which allows you to
have a user based hosts file.
The library will catch all calls to gethostbyname(3), gethostbyname2(3),
getaddrinfo(3),gethostbyname_r(3) and gethostbyname2_r(3) and perform
a search of the requested host in a local (i.e. a file into home user
directory) to resolve the hostname. If not found in this file, then proceed
with the regular resolv mechanism.
---- Install ---------------------------------------------------------------
make && make test && make install
If you want to use the 'dothosts' helper, just copy the script to your path.
The make install proccess will not copy helper script.
---- Usage -----------------------------------------------------------------
To use dothosts just type:
export LD_PRELOAD=path/to/libdothosts.so
And then new applications will use ~/.hosts file as /etc/hosts (the original
/etc/hosts will be also used if host does not match in ~/.hosts).
Aditionally, environment variable DOTHOSTS will use to change the path of
local .hosts file, for exaple:
export DOTHOSTS=~/.config/hosts
You can use the dothost utility to run an application with library loaded,
in the form:
dothosts wget http://test
---- Limitations ----------------------------------------------------------
- Only works for programs that use glibc calls to resolve hostnames.
- No working for SUID programs for security reasons.
---- Development ----------------------------------------------------------
The main repo is hosted in sourcehut:
https://git.sr.ht/~ajdiaz/dothosts
I've a mirror also in github:
https://github.com/ajdiaz/dothosts
For bug report please send email to the list:
~ajdiaz/[email protected]
Any patch is also welcome.
Happy Hacking!