-
Notifications
You must be signed in to change notification settings - Fork 18
/
pw_phonemes.c
176 lines (160 loc) · 3.8 KB
/
pw_phonemes.c
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
/*
* pw_phonemes.c --- generate secure passwords using phoneme rules
*
* Copyright (C) 2001,2002 by Theodore Ts'o
*
* This file may be distributed under the terms of the GNU Public
* License.
*/
#include <ctype.h>
#include <string.h>
#include "pwgen.h"
struct pw_element elements[] = {
{ "a", VOWEL },
{ "ae", VOWEL | DIPTHONG },
{ "ah", VOWEL | DIPTHONG },
{ "ai", VOWEL | DIPTHONG },
{ "b", CONSONANT },
{ "c", CONSONANT },
{ "ch", CONSONANT | DIPTHONG },
{ "d", CONSONANT },
{ "e", VOWEL },
{ "ee", VOWEL | DIPTHONG },
{ "ei", VOWEL | DIPTHONG },
{ "f", CONSONANT },
{ "g", CONSONANT },
{ "gh", CONSONANT | DIPTHONG | NOT_FIRST },
{ "h", CONSONANT },
{ "i", VOWEL },
{ "ie", VOWEL | DIPTHONG },
{ "j", CONSONANT },
{ "k", CONSONANT },
{ "l", CONSONANT },
{ "m", CONSONANT },
{ "n", CONSONANT },
{ "ng", CONSONANT | DIPTHONG | NOT_FIRST },
{ "o", VOWEL },
{ "oh", VOWEL | DIPTHONG },
{ "oo", VOWEL | DIPTHONG},
{ "p", CONSONANT },
{ "ph", CONSONANT | DIPTHONG },
{ "qu", CONSONANT | DIPTHONG},
{ "r", CONSONANT },
{ "s", CONSONANT },
{ "sh", CONSONANT | DIPTHONG},
{ "t", CONSONANT },
{ "th", CONSONANT | DIPTHONG},
{ "u", VOWEL },
{ "v", CONSONANT },
{ "w", CONSONANT },
{ "x", CONSONANT },
{ "y", CONSONANT },
{ "z", CONSONANT }
};
#define NUM_ELEMENTS (sizeof(elements) / sizeof (struct pw_element))
void pw_phonemes(char *buf, int size, int pw_flags, char *remove)
{
int c, i, len, flags, feature_flags;
int prev, should_be, first;
const char *str;
char ch, *cp;
try_again:
feature_flags = pw_flags;
c = 0;
prev = 0;
should_be = 0;
first = 1;
should_be = pw_number(2) ? VOWEL : CONSONANT;
while (c < size) {
i = pw_number(NUM_ELEMENTS);
str = elements[i].str;
len = strlen(str);
flags = elements[i].flags;
/* Filter on the basic type of the next element */
if ((flags & should_be) == 0)
continue;
/* Handle the NOT_FIRST flag */
if (first && (flags & NOT_FIRST))
continue;
/* Don't allow VOWEL followed a Vowel/Dipthong pair */
if ((prev & VOWEL) && (flags & VOWEL) &&
(flags & DIPTHONG))
continue;
/* Don't allow us to overflow the buffer */
if (len > size-c)
continue;
/*
* OK, we found an element which matches our criteria,
* let's do it!
*/
strcpy(buf+c, str);
/* Handle PW_UPPERS */
if (pw_flags & PW_UPPERS) {
if ((first || flags & CONSONANT) &&
(pw_number(10) < 2)) {
buf[c] = toupper(buf[c]);
feature_flags &= ~PW_UPPERS;
}
}
/* Handle the AMBIGUOUS flag */
if (pw_flags & PW_AMBIGUOUS) {
buf[c+len] = '\0'; /* To make strpbrk() happy */
cp = strpbrk(buf, pw_ambiguous);
if (cp)
goto try_again;
}
c += len;
/* Time to stop? */
if (c >= size)
break;
/*
* Handle PW_DIGITS
*/
if (pw_flags & PW_DIGITS) {
if (!first && (pw_number(10) < 3)) {
do {
ch = pw_number(10)+'0';
} while ((pw_flags & PW_AMBIGUOUS)
&& strchr(pw_ambiguous, ch));
buf[c++] = ch;
buf[c] = 0;
feature_flags &= ~PW_DIGITS;
first = 1;
prev = 0;
should_be = pw_number(2) ?
VOWEL : CONSONANT;
continue;
}
}
/* Handle PW_SYMBOLS */
if (pw_flags & PW_SYMBOLS) {
if (!first && (pw_number(10) < 2)) {
do {
ch = pw_symbols[
pw_number(strlen(pw_symbols))];
} while ((pw_flags & PW_AMBIGUOUS)
&& strchr(pw_ambiguous, ch));
buf[c++] = ch;
buf[c] = 0;
feature_flags &= ~PW_SYMBOLS;
}
}
/*
* OK, figure out what the next element should be
*/
if (should_be == CONSONANT) {
should_be = VOWEL;
} else { /* should_be == VOWEL */
if ((prev & VOWEL) ||
(flags & DIPTHONG) ||
(pw_number(10) > 3))
should_be = CONSONANT;
else
should_be = VOWEL;
}
prev = flags;
first = 0;
}
if (feature_flags & (PW_UPPERS | PW_DIGITS | PW_SYMBOLS))
goto try_again;
}