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
|
#include <unistd.h>
#include "scan.h"
#include "env.h"
#include "open.h"
#include "stralloc.h"
#include "fd.h"
#include "logmsg.h"
#define WHO "tls_start"
#define BUFSIZE 8192
static void die_nomem() { logmsg(WHO,111,FATAL,"out of memory"); }
static void die_tlsenv() { logmsg(WHO,111,FATAL,"no UCSPITLS environment to read"); }
int starttls_init(void)
{
unsigned long fd;
char *fdstr;
if (!(fdstr = env_get("SSLCTLFD"))) return 0;
if (!scan_ulong(fdstr,&fd)) return 0;
if (write((int)fd,"Y",1) < 1) return 0;
if (!(fdstr = env_get("SSLREADFD"))) return 0;
if (!scan_ulong(fdstr,&fd)) return 0;
if (fd_move(0,(int)fd) == -1) return 0;
if (!(fdstr = env_get("SSLWRITEFD"))) return 0;
if (!scan_ulong(fdstr,&fd)) return 0;
if (fd_move(1,(int)fd) == -1) return 0;
return 1;
}
int starttls_info(void)
{
unsigned long fd;
char *fdstr;
char envbuf[BUFSIZE];
char *x;
int j;
stralloc ssl_env = {0};
stralloc ssl_parm = {0};
stralloc ssl_value = {0};
if (!(fdstr = env_get("SSLCTLFD"))) return 0;
if (!scan_ulong(fdstr,&fd)) return 0;
while ((j = read(fd,envbuf,BUFSIZE)) > 0 ) {
if (!stralloc_catb(&ssl_env,envbuf,j)) die_nomem();
if (ssl_env.len >= 2 && ssl_env.s[ssl_env.len - 2] == 0 && ssl_env.s[ssl_env.len - 1] == 0)
break;
}
if (j <= 0) { die_tlsenv(); return 0; } // nothing to read
x = ssl_env.s;
for (j = 0; j < ssl_env.len - 1; ++j) {
if ( *x != '=' ) {
if (!stralloc_catb(&ssl_parm,x,1)) die_nomem();
x++;
} else {
if (!stralloc_0(&ssl_parm)) die_nomem();
x++;
for (; j < ssl_env.len - j - 1; ++j) {
if ( *x != '\0' ) {
if (!stralloc_catb(&ssl_value,x,1)) die_nomem();
x++;
} else {
if (!stralloc_0(&ssl_value)) die_nomem();
x++;
if (!env_put(ssl_parm.s,ssl_value.s)) die_nomem();
ssl_parm.len = 0;
ssl_value.len = 0;
break;
}
}
}
}
return j;
}
|