blob: d5f669026fedc8d19a40a9a9b538c5c8257793db (
plain)
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
|
int
do_bind(stab, arglast)
STAB *stab;
int *arglast;
{
register STR **st = stack->ary_array;
register int sp = arglast[1];
register STIO *stio;
char *addr;
if (!stab)
goto nuts;
stio = stab_io(stab);
if (!stio || !stio->ifp)
goto nuts;
addr = str_get(st[++sp]);
#ifdef TAINT
taintproper("Insecure dependency in bind");
#endif
return bind(fileno(stio->ifp), addr, st[sp]->str_cur) >= 0;
nuts:
if (dowarn)
warn("bind() on closed fd");
errno = EBADF;
return FALSE;
}
|