Add GPLv3, since automake installs GPLv2.
[shishi.git] / examples / client-safe.c
blobc7b313b5c7a0cb25b8bc2a202b1c59f3f4fc001e
1 /* client-safe.c --- Sample Shishi authenticated client with integrity
2 * protected application data exchange.
3 * Copyright (C) 2003, 2004, 2007 Simon Josefsson
5 * This file is part of Shishi.
7 * Shishi is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * Shishi is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Shishi; if not, see http://www.gnu.org/licenses or write
19 * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
20 * Floor, Boston, MA 02110-1301, USA
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
28 #include <shishi.h>
30 #define SERVICE "sample"
32 /* XXX remove this */
33 const char *program_name = "client";
35 static int
36 doit (Shishi * handle, Shishi_ap * ap, int verbose)
38 char line[BUFSIZ];
39 int res;
41 printf ("Application exchange start. Press ^D to finish.\n");
43 while (fgets (line, sizeof (line), stdin))
45 Shishi_safe *safe;
47 line[strlen(line)-1] = '\0';
48 printf ("read: %s\n", line);
50 res = shishi_safe (handle, &safe);
51 if (res != SHISHI_OK)
53 printf ("Could not build SAFE: %s\n", shishi_strerror (res));
54 return res;
57 res = shishi_safe_set_user_data (handle, shishi_safe_safe (safe),
58 line, strlen (line));
59 if (res != SHISHI_OK)
61 printf ("Could not set application data in SAFE: %s\n",
62 shishi_strerror (res));
63 return res;
66 res = shishi_safe_build (safe, shishi_ap_key (ap));
67 if (res != SHISHI_OK)
69 printf ("Could not build SAFE: %s\n", shishi_strerror (res));
70 return res;
73 res = shishi_safe_print (handle, stdout, shishi_safe_safe (safe));
74 if (res != SHISHI_OK)
76 printf ("Could not print SAFE: %s\n", shishi_strerror (res));
77 return res;
81 if (ferror (stdin))
83 printf ("error reading stdin\n");
84 return 1;
87 return 0;
90 static Shishi_ap *
91 auth (Shishi * h, int verbose, const char *cname, const char *sname)
93 Shishi_ap *ap;
94 Shishi_tkt *tkt;
95 Shishi_tkts_hint hint;
96 int rc;
98 printf ("Client: %s\n", cname);
99 printf ("Server: %s\n", sname);
101 /* Get a ticket for the server. */
103 memset (&hint, 0, sizeof (hint));
104 hint.client = (char *) cname;
105 hint.server = (char *) sname;
106 tkt = shishi_tkts_get (shishi_tkts_default (h), &hint);
107 if (!tkt)
109 printf ("cannot find ticket for \"%s\"\n", sname);
110 return NULL;
113 if (verbose)
114 shishi_tkt_pretty_print (tkt, stderr);
116 /* Create Authentication context */
118 rc = shishi_ap_tktoptions (h, &ap, tkt, SHISHI_APOPTIONS_MUTUAL_REQUIRED);
119 if (rc != SHISHI_OK)
121 printf ("cannot create authentication context\n");
122 return NULL;
125 /* Build Authentication request */
127 rc = shishi_ap_req_build (ap);
128 if (rc != SHISHI_OK)
130 printf ("cannot build authentication request: %s\n",
131 shishi_strerror (rc));
132 return NULL;
135 if (verbose)
136 shishi_authenticator_print (h, stderr, shishi_ap_authenticator (ap));
138 /* Authentication ourself to server */
140 shishi_apreq_print (h, stdout, shishi_ap_req (ap));
141 /* Note: to get the binary blob to send, use:
143 * char *out; int outlen;
144 * ...
145 * rc = shishi_ap_req_der (ap, &out, &outlen);
146 * ...
147 * write(fd, out, outlen);
150 /* For mutual authentication, wait for server reply. */
152 if (shishi_apreq_mutual_required_p (h, shishi_ap_req (ap)))
154 Shishi_asn1 aprep;
156 printf ("Waiting for server to authenticate itself...\n");
158 rc = shishi_aprep_parse (h, stdin, &aprep);
159 if (rc != SHISHI_OK)
161 printf ("Cannot parse AP-REP from server: %s\n",
162 shishi_strerror (rc));
163 return NULL;
166 rc = shishi_ap_rep_verify_asn1 (ap, aprep);
167 if (rc == SHISHI_OK)
168 printf ("AP-REP verification OK...\n");
169 else
171 if (rc == SHISHI_APREP_VERIFY_FAILED)
172 printf ("AP-REP verification failed...\n");
173 else
174 printf ("AP-REP verification error: %s\n", shishi_strerror (rc));
175 return NULL;
178 /* The server is authenticated. */
179 printf ("Server authenticated.\n");
182 /* We are now authenticated. */
183 printf ("User authenticated.\n");
185 return ap;
189 main (int argc, char *argv[])
191 Shishi *h;
192 Shishi_ap *ap;
193 char *sname;
194 int rc;
196 printf ("sample-client (shishi " SHISHI_VERSION ")\n");
198 if (!shishi_check_version (SHISHI_VERSION))
200 printf ("shishi_check_version() failed:\n"
201 "Header file incompatible with shared library.\n");
202 return 1;
205 rc = shishi_init (&h);
206 if (rc != SHISHI_OK)
208 printf ("error initializing shishi: %s\n", shishi_strerror (rc));
209 return 1;
212 if (argc > 1)
213 sname = argv[1];
214 else
215 sname = shishi_server_for_local_service (h, SERVICE);
217 ap = auth (h, 1, shishi_principal_default (h), sname);
219 if (ap)
220 rc = doit (h, ap, 1);
221 else
222 rc = 1;
224 shishi_done (h);
226 return rc;