2 * Copyright (c) 2000 - 2001 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "kadmin_locl.h"
36 #define WORDS_FILENAME "/usr/share/dict/words"
40 #define WORDBUF_SIZE 65535
43 read_words (const char *filename
, char ***ret_w
)
49 char *wbuf
= NULL
, *wptr
= NULL
, *wend
= NULL
;
51 f
= fopen (filename
, "r");
53 err (1, "cannot open %s", filename
);
55 while (fgets (buf
, sizeof(buf
), f
) != NULL
) {
58 buf
[strcspn(buf
, "\r\n")] = '\0';
60 alloc
= max(alloc
+ 16, alloc
* 2);
61 w
= erealloc (w
, alloc
* sizeof(char **));
64 if (wptr
+ len
+ 1 >= wend
) {
65 wptr
= wbuf
= emalloc (WORDBUF_SIZE
);
66 wend
= wbuf
+ WORDBUF_SIZE
;
68 memmove (wptr
, buf
, len
+ 1);
73 errx(1, "%s is an empty file, no words to try", filename
);
80 add_user (krb5_context ctx
, void *hndl
, unsigned nwords
, char **words
)
82 kadm5_principal_ent_rec princ
;
91 snprintf (name
, sizeof(name
), "%s%d", words
[r1
% nwords
], r2
% 1000);
93 mask
= KADM5_PRINCIPAL
;
95 memset(&princ
, 0, sizeof(princ
));
96 ret
= krb5_parse_name(ctx
, name
, &princ
.principal
);
98 krb5_err(ctx
, 1, ret
, "krb5_parse_name");
100 ret
= kadm5_create_principal (hndl
, &princ
, mask
, name
);
102 krb5_err (ctx
, 1, ret
, "kadm5_create_principal");
103 kadm5_free_principal_ent(hndl
, &princ
);
104 printf ("%s\n", name
);
108 add_users (const char *filename
, unsigned n
)
117 ret
= krb5_init_context(&ctx
);
119 errx (1, "krb5_init_context failed: %d", ret
);
120 ret
= kadm5_s_init_with_password_ctx(ctx
,
127 krb5_err(ctx
, 1, ret
, "kadm5_init_with_password");
129 nwords
= read_words (filename
, &words
);
131 for (i
= 0; i
< n
; ++i
)
132 add_user (ctx
, hndl
, nwords
, words
);
134 krb5_free_context(ctx
);
137 static int version_flag
= 0;
138 static int help_flag
= 0;
140 static struct getargs args
[] = {
141 { "version", 0, arg_flag
, &version_flag
, NULL
, NULL
},
142 { "help", 0, arg_flag
, &help_flag
, NULL
, NULL
}
148 arg_printusage (args
,
149 sizeof(args
)/sizeof(*args
),
156 main(int argc
, char **argv
)
160 const char *filename
= WORDS_FILENAME
;
162 setprogname(argv
[0]);
163 if(getarg(args
, sizeof(args
) / sizeof(args
[0]), argc
, argv
, &optidx
))
181 add_users (filename
, n
);