chiark / gitweb /
cfa6b4ccbd5ee6008aca3dee1a99003a6046c403
[secnet.git] / util.c
1 /*
2  * util.c
3  * - output and logging support
4  * - program lifetime support
5  * - IP address and subnet munging routines
6  * - MPI convenience functions
7  */
8 /*
9  *  This file is
10  *    Copyright (C) 1995--2001 Stephen Early <steve@greenend.org.uk>
11  *
12  *  It is part of secnet, which is
13  *    Copyright (C) 1995--2001 Stephen Early <steve@greenend.org.uk>
14  *    Copyright (C) 1998 Ross Anderson, Eli Biham, Lars Knudsen
15  *  
16  *  This program is free software; you can redistribute it and/or modify
17  *  it under the terms of the GNU General Public License as published by
18  *  the Free Software Foundation; either version 2, or (at your option)
19  *  any later version.
20  *  
21  *  This program is distributed in the hope that it will be useful,
22  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
23  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  *  GNU General Public License for more details.
25  *  
26  *  You should have received a copy of the GNU General Public License
27  *  along with this program; if not, write to the Free Software Foundation,
28  *  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
29  */
30
31 #include "secnet.h"
32 #include <stdio.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <unistd.h>
36 #include <limits.h>
37 #include <assert.h>
38 #include <sys/wait.h>
39 #include "util.h"
40 #include "unaligned.h"
41 #include "magic.h"
42
43 #define MIN_BUFFER_SIZE 64
44 #define DEFAULT_BUFFER_SIZE 4096
45 #define MAX_BUFFER_SIZE 131072
46
47 static const char *hexdigits="0123456789abcdef";
48
49 uint32_t current_phase=0;
50
51 struct phase_hook {
52     hook_fn *fn;
53     void *state;
54     struct phase_hook *next;
55 };
56
57 static struct phase_hook *hooks[NR_PHASES]={NULL,};
58
59 char *safe_strdup(const char *s, const char *message)
60 {
61     char *d;
62     d=strdup(s);
63     if (!d) {
64         fatal_perror("%s",message);
65     }
66     return d;
67 }
68
69 void *safe_malloc(size_t size, const char *message)
70 {
71     void *r;
72     r=malloc(size);
73     if (!r) {
74         fatal_perror("%s",message);
75     }
76     return r;
77 }
78 void *safe_malloc_ary(size_t size, size_t count, const char *message) {
79     if (count >= INT_MAX/size) {
80         fatal("array allocation overflow: %s", message);
81     }
82     return safe_malloc(size*count, message);
83 }
84
85 /* Convert a buffer into its MP_INT representation */
86 void read_mpbin(MP_INT *a, uint8_t *bin, int binsize)
87 {
88     char *buff;
89     int i;
90
91     buff=safe_malloc(binsize*2 + 1,"read_mpbin");
92
93     for (i=0; i<binsize; i++) {
94         buff[i*2]=hexdigits[(bin[i] & 0xf0) >> 4];
95         buff[i*2+1]=hexdigits[(bin[i] & 0xf)];
96     }
97     buff[binsize*2]=0;
98
99     mpz_set_str(a, buff, 16);
100     free(buff);
101 }
102
103 /* Convert a MP_INT into a hex string */
104 char *write_mpstring(MP_INT *a)
105 {
106     char *buff;
107
108     buff=safe_malloc(mpz_sizeinbase(a,16)+2,"write_mpstring");
109     mpz_get_str(buff, 16, a);
110     return buff;
111 }
112
113 static uint8_t hexval(uint8_t c)
114 {
115     switch (c) {
116     case '0': return 0;
117     case '1': return 1;
118     case '2': return 2;
119     case '3': return 3;
120     case '4': return 4;
121     case '5': return 5;
122     case '6': return 6;
123     case '7': return 7;
124     case '8': return 8;
125     case '9': return 9;
126     case 'a': return 10;
127     case 'A': return 10;
128     case 'b': return 11;
129     case 'B': return 11;
130     case 'c': return 12;
131     case 'C': return 12;
132     case 'd': return 13;
133     case 'D': return 13;
134     case 'e': return 14;
135     case 'E': return 14;
136     case 'f': return 15;
137     case 'F': return 15;
138     }
139     return -1;
140 }
141
142 /* Convert a MP_INT into a buffer; return length; truncate if necessary */
143 int32_t write_mpbin(MP_INT *a, uint8_t *buffer, int32_t buflen)
144 {
145     char *hb;
146     int i,j,l;
147     
148     if (buflen==0) return 0;
149     hb=write_mpstring(a);
150     
151     l=strlen(hb);
152     i=0; j=0;
153     if (l&1) {
154         /* The number starts with a half-byte */
155         buffer[i++]=hexval(hb[j++]);
156     }
157     for (; hb[j] && i<buflen; i++) {
158         buffer[i]=(hexval(hb[j])<<4)|hexval(hb[j+1]);
159         j+=2;
160     }
161     free(hb);
162     return i;
163 }
164
165 void setcloexec(int fd) {
166     int r=fcntl(fd, F_GETFD);
167     if (r<0) fatal_perror("fcntl(,F_GETFD) failed");
168     r |= FD_CLOEXEC;
169     r=fcntl(fd, F_SETFD, r|FD_CLOEXEC);
170     if (r<0) fatal_perror("fcntl(,F_SETFD,|FD_CLOEXEC) failed");
171 }
172
173 static const char *phases[NR_PHASES]={
174     "PHASE_INIT",
175     "PHASE_GETOPTS",
176     "PHASE_READCONFIG",
177     "PHASE_SETUP",
178     "PHASE_DAEMONIZE",
179     "PHASE_GETRESOURCES",
180     "PHASE_DROPPRIV",
181     "PHASE_RUN",
182     "PHASE_SHUTDOWN"
183 };
184
185 void enter_phase(uint32_t new_phase)
186 {
187     struct phase_hook *i;
188
189     if (hooks[new_phase])
190         Message(M_DEBUG_PHASE,"Running hooks for %s...\n", phases[new_phase]);
191     current_phase=new_phase;
192
193     for (i=hooks[new_phase]; i; i=i->next)
194         i->fn(i->state, new_phase);
195     Message(M_DEBUG_PHASE,"Now in %s\n",phases[new_phase]);
196 }
197
198 bool_t add_hook(uint32_t phase, hook_fn *fn, void *state)
199 {
200     struct phase_hook *h;
201
202     h=safe_malloc(sizeof(*h),"add_hook");
203     h->fn=fn;
204     h->state=state;
205     h->next=hooks[phase];
206     hooks[phase]=h;
207     return True;
208 }
209
210 bool_t remove_hook(uint32_t phase, hook_fn *fn, void *state)
211 {
212     fatal("remove_hook: not implemented");
213
214     return False;
215 }
216
217 void vslilog(struct log_if *lf, int priority, const char *message, va_list ap)
218 {
219     lf->vlogfn(lf->st,priority,message,ap);
220 }
221
222 void slilog(struct log_if *lf, int priority, const char *message, ...)
223 {
224     va_list ap;
225     
226     va_start(ap,message);
227     vslilog(lf,priority,message,ap);
228     va_end(ap);
229 }
230
231 struct buffer {
232     closure_t cl;
233     struct buffer_if ops;
234 };
235
236 void buffer_assert_free(struct buffer_if *buffer, cstring_t file,
237                         int line)
238 {
239     if (!buffer->free) {
240         fprintf(stderr,"secnet: BUF_ASSERT_FREE, %s line %d, owned by %s",
241                 file,line,buffer->owner);
242         assert(!"buffer_assert_free failure");
243     }
244 }
245
246 void buffer_assert_used(struct buffer_if *buffer, cstring_t file,
247                         int line)
248 {
249     if (buffer->free) {
250         fprintf(stderr,"secnet: BUF_ASSERT_USED, %s line %d, last owned by %s",
251                 file,line,buffer->owner);
252         assert(!"buffer_assert_used failure");
253     }
254 }
255
256 void buffer_init(struct buffer_if *buffer, int32_t max_start_pad)
257 {
258     assert(max_start_pad<=buffer->alloclen);
259     buffer->start=buffer->base+max_start_pad;
260     buffer->size=0;
261 }
262
263 void *buf_append(struct buffer_if *buf, int32_t amount) {
264     void *p;
265     assert(amount <= buf_remaining_space(buf));
266     p=buf->start + buf->size;
267     buf->size+=amount;
268     return p;
269 }
270
271 void *buf_prepend(struct buffer_if *buf, int32_t amount) {
272     assert(amount <= buf->start - buf->base);
273     buf->size+=amount;
274     return buf->start-=amount;
275 }
276
277 void *buf_unappend(struct buffer_if *buf, int32_t amount) {
278     if (buf->size < amount) return 0;
279     return buf->start+(buf->size-=amount);
280 }
281
282 void *buf_unprepend(struct buffer_if *buf, int32_t amount) {
283     void *p;
284     if (buf->size < amount) return 0;
285     p=buf->start;
286     buf->start+=amount;
287     buf->size-=amount;
288     return p;
289 }
290
291 /* Append a two-byte length and the string to the buffer. Length is in
292    network byte order. */
293 void buf_append_string(struct buffer_if *buf, cstring_t s)
294 {
295     size_t len;
296
297     len=strlen(s);
298     /* fixme: if string is longer than 65535, result is a corrupted packet */
299     buf_append_uint16(buf,len);
300     memcpy(buf_append(buf,len),s,len);
301 }
302
303 void buffer_new(struct buffer_if *buf, int32_t len)
304 {
305     buf->free=True;
306     buf->owner=NULL;
307     buf->flags=0;
308     buf->loc.file=NULL;
309     buf->loc.line=0;
310     buf->size=0;
311     buf->alloclen=len;
312     buf->start=NULL;
313     buf->base=safe_malloc(len,"buffer_new");
314 }
315
316 void buffer_readonly_view(struct buffer_if *buf, const void *data, int32_t len)
317 {
318     buf->free=False;
319     buf->owner="READONLY";
320     buf->flags=0;
321     buf->loc.file=NULL;
322     buf->loc.line=0;
323     buf->size=buf->alloclen=len;
324     buf->base=buf->start=(uint8_t*)data;
325 }
326
327 void buffer_readonly_clone(struct buffer_if *out, const struct buffer_if *in)
328 {
329     buffer_readonly_view(out,in->start,in->size);
330 }
331
332 void buffer_copy(struct buffer_if *dst, const struct buffer_if *src)
333 {
334     if (dst->alloclen < src->alloclen) {
335         dst->base=realloc(dst->base,src->alloclen);
336         if (!dst->base) fatal_perror("buffer_copy");
337         dst->alloclen = src->alloclen;
338     }
339     dst->start = dst->base + (src->start - src->base);
340     dst->size = src->size;
341     memcpy(dst->start, src->start, dst->size);
342 }
343
344 static list_t *buffer_apply(closure_t *self, struct cloc loc, dict_t *context,
345                             list_t *args)
346 {
347     struct buffer *st;
348     item_t *item;
349     dict_t *dict;
350     bool_t lockdown=False;
351     uint32_t len=DEFAULT_BUFFER_SIZE;
352     
353     st=safe_malloc(sizeof(*st),"buffer_apply");
354     st->cl.description="buffer";
355     st->cl.type=CL_BUFFER;
356     st->cl.apply=NULL;
357     st->cl.interface=&st->ops;
358
359     /* First argument, if present, is buffer length */
360     item=list_elem(args,0);
361     if (item) {
362         if (item->type!=t_number) {
363             cfgfatal(st->ops.loc,"buffer","first parameter must be a "
364                      "number (buffer size)\n");
365         }
366         len=item->data.number;
367         if (len<MIN_BUFFER_SIZE) {
368             cfgfatal(st->ops.loc,"buffer","ludicrously small buffer size\n");
369         }
370         if (len>MAX_BUFFER_SIZE) {
371             cfgfatal(st->ops.loc,"buffer","ludicrously large buffer size\n");
372         }
373     }
374     /* Second argument, if present, is a dictionary */
375     item=list_elem(args,1);
376     if (item) {
377         if (item->type!=t_dict) {
378             cfgfatal(st->ops.loc,"buffer","second parameter must be a "
379                      "dictionary\n");
380         }
381         dict=item->data.dict;
382         lockdown=dict_read_bool(dict,"lockdown",False,"buffer",st->ops.loc,
383                                 False);
384     }
385
386     buffer_new(&st->ops,len);
387     if (lockdown) {
388         /* XXX mlock the buffer if possible */
389     }
390     
391     return new_closure(&st->cl);
392 }
393
394 void send_nak(const struct comm_addr *dest, uint32_t our_index,
395               uint32_t their_index, uint32_t msgtype,
396               struct buffer_if *buf, const char *logwhy)
397 {
398     buffer_init(buf,calculate_max_start_pad());
399     buf_append_uint32(buf,their_index);
400     buf_append_uint32(buf,our_index);
401     buf_append_uint32(buf,LABEL_NAK);
402     if (logwhy)
403         Message(M_INFO,"%s: %08"PRIx32"<-%08"PRIx32": %08"PRIx32":"
404                 " %s; sending NAK\n",
405                 comm_addr_to_string(dest),
406                 our_index, their_index, msgtype, logwhy);
407     dest->comm->sendmsg(dest->comm->st, buf, dest);
408 }
409
410 int consttime_memeq(const void *s1in, const void *s2in, size_t n)
411 {
412     const uint8_t *s1=s1in, *s2=s2in;
413     register volatile uint8_t accumulator=0;
414
415     while (n-- > 0) {
416         accumulator |= (*s1++ ^ *s2++);
417     }
418     accumulator |= accumulator >> 4; /* constant-time             */
419     accumulator |= accumulator >> 2; /*  boolean canonicalisation */
420     accumulator |= accumulator >> 1;
421     accumulator &= 1;
422     accumulator ^= 1;
423     return accumulator;
424 }
425
426 void util_module(dict_t *dict)
427 {
428     add_closure(dict,"sysbuffer",buffer_apply);
429 }
430
431 void update_max_start_pad(int32_t *our_module_global, int32_t our_instance)
432 {
433     if (*our_module_global < our_instance)
434         *our_module_global=our_instance;
435 }
436
437 int32_t transform_max_start_pad, comm_max_start_pad;
438
439 int32_t calculate_max_start_pad(void)
440 {
441     return
442         site_max_start_pad +
443         transform_max_start_pad +
444         comm_max_start_pad;
445 }
446
447 void vslilog_part(struct log_if *lf, int priority, const char *message, va_list ap)
448 {
449     char *buff=lf->buff;
450     size_t bp;
451     char *nlp;
452
453     bp=strlen(buff);
454     assert(bp < LOG_MESSAGE_BUFLEN);
455     vsnprintf(buff+bp,LOG_MESSAGE_BUFLEN-bp,message,ap);
456     buff[LOG_MESSAGE_BUFLEN-1] = '\n';
457     buff[LOG_MESSAGE_BUFLEN] = '\0';
458     /* Each line is sent separately */
459     while ((nlp=strchr(buff,'\n'))) {
460         *nlp=0;
461         slilog(lf,priority,"%s",buff);
462         memmove(buff,nlp+1,strlen(nlp+1)+1);
463     }
464 }
465
466 extern void slilog_part(struct log_if *lf, int priority, const char *message, ...)
467 {
468     va_list ap;
469     va_start(ap,message);
470     vslilog_part(lf,priority,message,ap);
471     va_end(ap);
472 }