File: reader.c

package info (click to toggle)
mairix 0.17-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 652 kB
  • ctags: 935
  • sloc: ansic: 9,265; sh: 265; makefile: 143; yacc: 134; lex: 77
file content (210 lines) | stat: -rwxr-xr-x 5,903 bytes parent folder | download
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
208
209
210
/*
  mairix - message index builder and finder for maildir folders.

 **********************************************************************
 * Copyright (C) Richard P. Curnow  2002,2003,2004,2005
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 * 
 * 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
 * 
 **********************************************************************
 */

/* Database reader */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <assert.h>
#include <sys/mman.h>

#include "reader.h"
#include "memmac.h"
#include "mairix.h"

int read_increment(unsigned char **encpos) {/*{{{*/
  unsigned char *j = *encpos;
  int result;
  unsigned char x0, x1, x2, x3;
  
  x0 = *j++;
  if ((x0 & 0xc0) == 0xc0) {
    /* 4 byte encoding */
    x1 = *j++;
    x2 = *j++;
    x3 = *j++;
    result = ((x0 & 0x3f) << 24) + (x1 << 16) + (x2 << 8) + x3;
  } else if (x0 & 0x80) {
    /* 2 byte encoding */
    x1 = *j++;
    result = ((x0 & 0x7f) << 8) + x1;
  } else {
    /* Single byte encoding */
    result = x0;
  }

  *encpos = j;
  return result;
}
/*}}}*/
static void read_toktable_db(char *data, struct toktable_db *toktable, int start, unsigned int *uidata)/*{{{*/
{
  int n;
  n = toktable->n = uidata[start];
  toktable->tok_offsets = uidata + uidata[start+1];
  toktable->enc_offsets = uidata + uidata[start+2];
  return;
}
/*}}}*/
static void read_toktable2_db(char *data, struct toktable2_db *toktable, int start, unsigned int *uidata)/*{{{*/
{
  int n;
  n = toktable->n = uidata[start];
  toktable->tok_offsets = uidata + uidata[start+1];
  toktable->enc0_offsets = uidata + uidata[start+2];
  toktable->enc1_offsets = uidata + uidata[start+3];
  return;
}
/*}}}*/
struct read_db *open_db(char *filename)/*{{{*/
{
  int fd, len;
  char *data;
  struct stat sb;
  struct read_db *result;
  unsigned int *uidata;
  unsigned char *ucdata;

  fd = open(filename, O_RDONLY);
  if (fd < 0) {
    perror("open");
    unlock_and_exit (2);
  }

  if (fstat(fd, &sb) < 0) {
    perror("stat");
    unlock_and_exit(2);
  }

  len = sb.st_size;

  data = (char *) mmap(0, len, PROT_READ, MAP_SHARED, fd, 0);
  if (data == MAP_FAILED) {
    perror("reader:mmap");
    unlock_and_exit(2);
  }

  if (!data) {
    /* Empty file opened => database corrupt for sure */
    if (close(fd) < 0) {
      perror("close");
      unlock_and_exit(2);
    }
    return NULL;
  }
  
  if (close(fd) < 0) {
    perror("close");
    unlock_and_exit(2);
  }

  result = new(struct read_db);
  uidata = (unsigned int *) data; /* alignment is assured */
  ucdata = (unsigned char *) data;
  result->len = len;
  result->data = data;

  /*{{{ Magic number check */
  if (ucdata[0] == HEADER_MAGIC0 ||
      ucdata[1] == HEADER_MAGIC1 ||
      ucdata[2] == HEADER_MAGIC2) {
    if (ucdata[3] != HEADER_MAGIC3) {
      fprintf(stderr, "Another version of this program produced the existing database!  Please rebuild.\n");
      unlock_and_exit(2);
    }
  } else {
    fprintf(stderr, "The existing database wasn't produced by this program!  Please rebuild.\n");
    unlock_and_exit(2);
  }
  /*}}}*/
  /* {{{ Endianness check */
  if (uidata[UI_ENDIAN] == 0x11223344) {
    fprintf(stderr, "The endianness of the database is reversed for this machine\n");
    unlock_and_exit(2);
  } else if (uidata[UI_ENDIAN] != 0x44332211) {
    fprintf(stderr, "The endianness of this machine is strange (or database is corrupt)\n");
    unlock_and_exit(2);
  }
  /* }}} */

  /* Now build tables of where things are in the file */
  result->n_msgs = uidata[UI_N_MSGS];
  result->msg_type    = ucdata + uidata[UI_MSG_TYPE];
  result->path_offsets = uidata + uidata[UI_MSG_CDATA];
  result->mtime_table = uidata + uidata[UI_MSG_MTIME];
  result->size_table = uidata + uidata[UI_MSG_SIZE];
  result->date_table = uidata + uidata[UI_MSG_DATE];
  result->tid_table  = uidata + uidata[UI_MSG_TID];

  result->n_mboxen            = uidata[UI_MBOX_N];
  result->mbox_paths_table    = uidata + uidata[UI_MBOX_PATHS];
  result->mbox_entries_table  = uidata + uidata[UI_MBOX_ENTRIES];
  result->mbox_mtime_table    = uidata + uidata[UI_MBOX_MTIME];
  result->mbox_size_table     = uidata + uidata[UI_MBOX_SIZE];
  result->mbox_checksum_table = uidata + uidata[UI_MBOX_CKSUM];

  result->hash_key = uidata[UI_HASH_KEY];
  
  read_toktable_db(data, &result->to, UI_TO_BASE, uidata);
  read_toktable_db(data, &result->cc, UI_CC_BASE, uidata);
  read_toktable_db(data, &result->from, UI_FROM_BASE, uidata);
  read_toktable_db(data, &result->subject, UI_SUBJECT_BASE, uidata);
  read_toktable_db(data, &result->body, UI_BODY_BASE, uidata);
  read_toktable2_db(data, &result->msg_ids, UI_MSGID_BASE, uidata);

  return result;
}
/*}}}*/
static void free_toktable_db(struct toktable_db *x)/*{{{*/
{
  /* Nothing to do */
}
/*}}}*/
static void free_toktable2_db(struct toktable2_db *x)/*{{{*/
{
  /* Nothing to do */
}
/*}}}*/
void close_db(struct read_db *x)/*{{{*/
{
  free_toktable_db(&x->to);
  free_toktable_db(&x->cc);
  free_toktable_db(&x->from);
  free_toktable_db(&x->subject);
  free_toktable_db(&x->body);
  free_toktable2_db(&x->msg_ids);

  if (munmap(x->data, x->len) < 0) {
    perror("munmap");
    unlock_and_exit(2);
  }
  free(x);
  return;
}
/*}}}*/