summaryrefslogtreecommitdiffstats
path: root/src/appl/popper/pop_get_command.c
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1993-06-03 19:29:40 +0000
committerTheodore Tso <tytso@mit.edu>1993-06-03 19:29:40 +0000
commit746386f12e01102acbe5637aac6f1259c74bb552 (patch)
tree715df6527f739854dc978c588047607e1907e9e9 /src/appl/popper/pop_get_command.c
parentacbed92e113f54d33789d427e697a23a0f07ab64 (diff)
downloadkrb5-746386f12e01102acbe5637aac6f1259c74bb552.tar.gz
krb5-746386f12e01102acbe5637aac6f1259c74bb552.tar.xz
krb5-746386f12e01102acbe5637aac6f1259c74bb552.zip
Initial revision
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2611 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/popper/pop_get_command.c')
-rw-r--r--src/appl/popper/pop_get_command.c96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/appl/popper/pop_get_command.c b/src/appl/popper/pop_get_command.c
new file mode 100644
index 0000000000..fe5d22e87e
--- /dev/null
+++ b/src/appl/popper/pop_get_command.c
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 1989 Regents of the University of California.
+ * All rights reserved. The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+static char copyright[] = "Copyright (c) 1990 Regents of the University of California.\nAll rights reserved.\n";
+static char SccsId[] = "@(#)pop_get_command.c 1.9 8/16/90";
+#endif not lint
+
+#include <stdio.h>
+#include <sys/types.h>
+#include <strings.h>
+#include "popper.h"
+
+/*
+ * get_command: Extract the command from an input line form a POP client
+ */
+
+static state_table states[] = {
+ auth1, "user", 1, 1, pop_user, {auth1, auth2},
+ auth2, "pass", 1, 1, pop_pass, {auth1, trans},
+#ifdef RPOP
+ auth2, "rpop", 1, 1, pop_rpop, {auth1, trans},
+#endif RPOP
+ auth1, "quit", 0, 0, pop_quit, {halt, halt},
+ auth2, "quit", 0, 0, pop_quit, {halt, halt},
+ trans, "stat", 0, 0, pop_stat, {trans, trans},
+ trans, "list", 0, 1, pop_list, {trans, trans},
+ trans, "retr", 1, 1, pop_send, {trans, trans},
+ trans, "dele", 1, 1, pop_dele, {trans, trans},
+ trans, "noop", 0, 0, NULL, {trans, trans},
+ trans, "rset", 0, 0, pop_rset, {trans, trans},
+ trans, "top", 2, 2, pop_send, {trans, trans},
+ trans, "last", 0, 0, pop_last, {trans, trans},
+ trans, "xtnd", 1, 99, pop_xtnd, {trans, trans},
+ trans, "quit", 0, 0, pop_updt, {halt, halt},
+ (state) 0, NULL, 0, 0, NULL, {halt, halt},
+};
+
+state_table *pop_get_command(p,mp)
+POP * p;
+register char * mp; /* Pointer to unparsed line
+ received from the client */
+{
+ state_table * s;
+ char buf[MAXMSGLINELEN];
+
+ /* Save a copy of the original client line */
+#ifdef DEBUG
+ if(p->debug) strcpy (buf,mp);
+#endif DEBUG
+
+ /* Parse the message into the parameter array */
+ if ((p->parm_count = pop_parse(p,mp)) < 0) return(NULL);
+
+ /* Do not log cleartext passwords */
+#ifdef DEBUG
+ if(p->debug){
+ if(strcmp(p->pop_command,"pass") == 0)
+ pop_log(p,POP_DEBUG,"Received: \"%s xxxxxxxxx\"",p->pop_command);
+ else {
+ /* Remove trailing <LF> */
+ buf[strlen(buf)-2] = '\0';
+ pop_log(p,POP_DEBUG,"Received: \"%s\"",buf);
+ }
+ }
+#endif DEBUG
+
+ /* Search for the POP command in the command/state table */
+ for (s = states; s->command; s++) {
+
+ /* Is this a valid command for the current operating state? */
+ if (strcmp(s->command,p->pop_command) == 0
+ && s->ValidCurrentState == p->CurrentState) {
+
+ /* Were too few parameters passed to the command? */
+ if (p->parm_count < s->min_parms)
+ return((state_table *)pop_msg(p,POP_FAILURE,
+ "Too few arguments for the %s command.",p->pop_command));
+
+ /* Were too many parameters passed to the command? */
+ if (p->parm_count > s->max_parms)
+ return((state_table *)pop_msg(p,POP_FAILURE,
+ "Too many arguments for the %s command.",p->pop_command));
+
+ /* Return a pointer to the entry for this command in
+ the command/state table */
+ return (s);
+ }
+ }
+ /* The client command was not located in the command/state table */
+ return((state_table *)pop_msg(p,POP_FAILURE,
+ "Unknown command: \"%s\".",p->pop_command));
+}