File: tlscache.h

package info (click to toggle)
courier 0.60.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 52,288 kB
  • ctags: 12,677
  • sloc: ansic: 165,348; cpp: 24,820; sh: 16,410; perl: 6,839; makefile: 3,621; yacc: 289; sed: 16
file content (82 lines) | stat: -rw-r--r-- 2,654 bytes parent folder | download | duplicates (6)
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
/*
** Copyright 2002 Double Precision, Inc.
** See COPYING for distribution information.
*/

#ifndef tlscache_h
#define tlscache_h

#include	"config.h"

#include	<sys/types.h>
#include	<unistd.h>

static const char cache_h_rcsid[]="$Id: tlscache.h,v 1.1 2002/06/24 03:45:08 mrsam Exp $";

/*
** This module implements a cache for SSL sessions, however the interface
** is generic enough to accomodate caching of any kind of small object.
** The cache is a disk file, that contains a circular cache (when the
** end of the file is reached, we wrap around and begin adding new cached
** object to the beginning of the file, overwriting the oldest one).
**
** Well, that's the general idea, but technically it's the other way around.
** The cache begins at the end of the file, and grows towards the beginning
** of the file, then wraps around to the end of the file again.  The cache
** is searched by reading the file starting with wherever the current add
** position is, then wrapping around if necessary.  Hence, the cache file
** is searched starting with the most recently added object; which is the
** expected usage pattern.
**
** File locking is used to implement concurrency.
*/

struct CACHE {
	int fd;
	char *filename;
};

/*
** Open a cache file.  If it doesn't exist, create one with the indicated
** size (in bytes).
*/

struct CACHE *tls_cache_open(const char *filename,
			     off_t req_size);	/* In bytes */

/*
** Close and deallocate the CACHE object.
*/
void tls_cache_close(struct CACHE *p);

/*
** Cache a new object, val, vallen bytes long.
*/

int tls_cache_add(struct CACHE *p, const char *val, size_t vallen);

/*
** Read the cache file.  walk_func is a callback function that's repeatedly
** called for each cached object.  walk_func should return 0 to continue
** with the next cached object; a positive value to stop reading the cache
** (object found); a negative value to stopr eading the cache and remove it
** (if it's corrupted, for some reason).  walk_func receives 'arg', a
** transparent pointer.
**
** tls_cache_walk returns 0 when all cached objects were read, or the non-0
** return value from the callback function.  tls_cache_walk will return -1
** if it itself encounters an error.
**
** The callback function may modify rec, and set *doupdate to non-zero in
** order to update the cached record (the return code is still processed in
** the normal way).  The updated record will be saved if the callback function
** terminate with 0 or a positive return code.
*/

int tls_cache_walk(struct CACHE *p,
		   int (*walk_func)(void *rec, size_t recsize,
				    int *doupdate, void *arg),
		   void *arg);


#endif