aboutsummaryrefslogtreecommitdiffstats
path: root/key2root-rmkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'key2root-rmkey.c')
-rw-r--r--key2root-rmkey.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/key2root-rmkey.c b/key2root-rmkey.c
index 1050977..f2ab34d 100644
--- a/key2root-rmkey.c
+++ b/key2root-rmkey.c
@@ -19,6 +19,9 @@ usage(void)
int
main(int argc, char *argv[])
{
+ const char *user;
+ int i, failed = 0;
+
ARGBEGIN {
default:
usage();
@@ -27,5 +30,23 @@ main(int argc, char *argv[])
if (argc < 2)
usage();
+ user = *argv++;
+ argc--;
+
+ if (!user[0] || user[0] == '.' || strchr(user, '/') || strchr(user, '~')) {
+ fprintf(stderr, "%s: bad user name specified: %s\n", argv0, user);
+ failed = 1;
+ }
+ for (i = 0; i < argc; i++) {
+ if (argv[i][strcspn(argv[i], " \t\f\n\r\v")]) {
+ fprintf(stderr, "%s: bad key name specified: %s, includes whitespace\n", argv0, argv[i]);
+ failed = 1;
+ }
+ }
+ if (failed)
+ return 1;
+
+ /* TODO */
+
return 0;
}