forked from Castaglia/MacOSX-authbind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibauthbind.c.orig
207 lines (181 loc) · 5.85 KB
/
libauthbind.c.orig
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* libauthbind.c - bind(2)-redirector library for authbind
*
* authbind is Copyright (C) 1998 Ian Jackson
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include <dlfcn.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <netinet/in.h>
static const char *rcsid="$Id: libauthbind.c,v 1.8 2004-04-02 18:54:27 ian Exp $";
#include "authbind.h"
typedef void anyfn_type(void);
typedef int bindfn_type(int fd, const struct sockaddr *addr, socklen_t addrlen);
#define STDERRSTR_CONST(m) write(2,m,sizeof(m)-1)
#define STDERRSTR_STRING(m) write(2,m,strlen(m))
static anyfn_type *find_any(const char *name) {
static const char *dlerr;
anyfn_type *kv;
kv= dlsym(RTLD_NEXT,name); if (kv) return kv;
dlerr= dlerror(); if (!dlerr) dlerr= "dlsym() failed for no reason";
STDERRSTR_CONST("libauthbind: error finding original version of ");
STDERRSTR_STRING(name);
STDERRSTR_CONST(": ");
STDERRSTR_STRING(dlerr);
STDERRSTR_STRING("\n");
errno= ENOSYS;
return 0;
}
static bindfn_type find_bind, *old_bind= find_bind;
int find_bind(int fd, const struct sockaddr *addr, socklen_t addrlen) {
anyfn_type *anyfn;
anyfn= find_any("bind"); if (!anyfn) return -1;
old_bind= (bindfn_type*)anyfn;
return old_bind(fd,addr,addrlen);
}
static int exiterrno(int e) {
_exit(e>0 && e<128 ? e : -1);
}
static void removepreload(void) {
const char *myself, *found;
char *newval, *preload;
int lpreload, lmyself, before, after;
preload= getenv(PRELOAD_VAR);
myself= getenv(AUTHBINDLIB_VAR);
if (!myself || !preload) return;
lpreload= strlen(preload);
lmyself= strlen(myself);
if (lmyself < 1 || lpreload<lmyself) return;
if (lpreload==lmyself) {
if (!strcmp(preload,myself)) unsetenv(PRELOAD_VAR);
return;
}
if (!memcmp(preload,myself,lmyself) && preload[lmyself]==':') {
before= 0; after= lpreload-(lmyself+1);
} else if (!memcmp(preload+lpreload-lmyself,myself,lmyself) &&
preload[lpreload-(lmyself+1)]==':') {
before= lpreload-(lmyself+1); after= 0;
} else {
if (lpreload<lmyself+2) return;
found= preload+1;
for (;;) {
found= strstr(found,myself); if (!found) return;
if (found > preload+lpreload-(lmyself+1)) return;
if (found[-1]==':' && found[lmyself]==':') break;
found++;
}
before= found-preload;
after= lpreload-(before+lmyself+1);
}
newval= malloc(before+after+1);
if (newval) {
memcpy(newval,preload,before);
strcpy(newval+before,preload+lpreload-after);
if (setenv(PRELOAD_VAR,newval,1)) return;
free(newval);
}
strcpy(preload+before,preload+lpreload-after);
return;
}
int _init(void);
int _init(void) {
char *levels;
int levelno;
/* If AUTHBIND_LEVELS is
* unset => always strip from preload
* set and starts with `y' => never strip from preload, keep AUTHBIND_LEVELS
* set to integer > 1 => do not strip now, subtract one from AUTHBIND_LEVELS
* set to integer 1 => do not strip now, unset AUTHBIND_LEVELS
* set to empty string or 0 => strip now, unset AUTHBIND_LEVELS
*/
levels= getenv(AUTHBIND_LEVELS_VAR);
if (levels) {
if (levels[0]=='y') return 0;
levelno= atoi(levels);
if (levelno > 0) {
levelno--;
if (levelno > 0) sprintf(levels,"%d",levelno);
else unsetenv(AUTHBIND_LEVELS_VAR);
return 0;
}
unsetenv(AUTHBIND_LEVELS_VAR);
}
removepreload();
return 0;
}
static const int evilsignals[]= { SIGFPE, SIGILL, SIGSEGV, SIGBUS, 0 };
int bind(int fd, const struct sockaddr *addr, socklen_t addrlen) {
pid_t child, rchild;
char portarg[5], addrarg[9];
int r, status;
const int *evilsignal;
sigset_t block, saved;
if (addr->sa_family != AF_INET || addrlen != sizeof(struct sockaddr_in) ||
!geteuid() || ((struct sockaddr_in*)addr)->sin_port == 0 ||
ntohs(((struct sockaddr_in*)addr)->sin_port) >= IPPORT_RESERVED/2)
return old_bind(fd,addr,addrlen);
sigfillset(&block);
for (evilsignal=evilsignals;
*evilsignal;
evilsignal++)
sigdelset(&block,*evilsignal);
if (sigprocmask(SIG_BLOCK,&block,&saved)) return -1;
sprintf(addrarg,"%08lx",
((unsigned long)(((struct sockaddr_in*)addr)->sin_addr.s_addr))&0x0ffffffffUL);
sprintf(portarg,"%04x",
((unsigned int)(((struct sockaddr_in*)addr)->sin_port))&0x0ffff);
child= fork(); if (child==-1) goto x_err;
if (!child) {
if (dup2(fd,0)) exiterrno(errno);
removepreload();
execl(HELPER,HELPER,addrarg,portarg,(char*)0);
status= errno > 0 && errno < 127 ? errno : 127;
STDERRSTR_CONST("libauthbind: possible installation problem - "
"could not invoke " HELPER " (");
STDERRSTR_STRING(rcsid);
STDERRSTR_CONST(")\n");
exiterrno(status);
}
rchild= waitpid(child,&status,0);
if (rchild==-1) goto x_err;
if (rchild!=child) { errno= ECHILD; goto x_err; }
if (WIFEXITED(status)) {
if (WEXITSTATUS(status)) {
errno= WEXITSTATUS(status);
if (errno >= 127) errno= ENXIO;
goto x_err;
}
r= 0;
goto x;
} else {
errno= ENOSYS;
goto x_err;
}
x_err:
r= -1;
x:
if (sigprocmask(SIG_SETMASK,&saved,0)) abort();
return r;
}