summaryrefslogtreecommitdiff
path: root/notesearch.c
blob: e85800d7125c5113d907cea752580c9980615fd6 (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
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
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include "hacking.h"

#define FILENAME "/var/notes"

int print_notes(int, int, char*);
int find_user_note(int, int);
int search_note(char *, char *);
void fatal(char *);

int main(int argc, const char *argv[])
{
  int userid, printing=1, fd;
  char searchstring[100];

  if(argc > 1)
    strcpy(searchstring, argv[1]);
  else
    searchstring[0] = 0;

  userid = getuid();
  fd = open(FILENAME, O_RDONLY);
  if (fd == -1)
    fatal("in main() while opening file for reading");

  while(printing)
    printing = print_notes(fd, userid, searchstring);
  printf("--------[ end of note data ]-------\n");
  close(fd);
  return 0;
}

int print_notes(int fd, int uid, char *searchstring)
{
  int note_length;
  char byte = 0, note_buffer[100];

  note_length = find_user_note(fd, uid);
  if (note_length == -1)
    return 0;

  read(fd, note_buffer, note_length);
  note_buffer[note_length] = 0;

  if (search_note(note_buffer, searchstring))
    printf("%s", note_buffer);

  return 1;
}

int find_user_note(int fd, int user_uid)
{
  int note_uid=1;
  unsigned char byte;
  int length;

  while (note_uid != user_uid) {
    if(read(fd, &note_uid, 4) != 4)
      return -1;
    if(read(fd, &byte, 1) != 1)
      return -1;

    byte = length = 0;
    while (byte != '\n') {
      if (read(fd, &byte, 1) != 1)
        return -1;
      length++;
    }
  }
  lseek(fd, length * -1, SEEK_CUR);
  printf("[DEBUG] found a %d byte note for user id %d\n", length, note_uid);
  return length;
}

int search_note(char *note, char *keyword)
{
  int i, keyword_length, match=0;

  keyword_length = strlen(keyword);
  if(keyword_length == 0)
    return 1;

  for (i = 0; i < strlen(note); i++) {
    if (note[i] == keyword[match]) {
      match++;
    }
    else {
      if (note[i] == keyword[0])
        match = 1;
      else
        match = 0;
    }
    if (match == keyword_length) {
      return 1;
    }
  }
  return 0;
}