1 #! /usr/local/bin/wish8.0 -f
3 # Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 # Display a window to request a users CHAP secret, accepting the relevant
31 # values from ppp (``set authkey !thisprogram'') and passing the entered
32 # ``authname'' and ``authkey'' back to ppp.
35 set pwidth 12; # Prompt field width
36 set vwidth 20; # Value field width
37 set fxpad 7; # Value field width
38 set fypad 3; # Value field width
40 wm title . "PPP Authentication";
42 # We expect three lines of input from ppp
43 set hostname [gets stdin];
44 set challenge [gets stdin];
45 set authname [gets stdin];
47 proc mkhalfframe { n prompt } {
51 text .$n.prompt -width $pwidth -height 1 -relief flat;
52 .$n.prompt insert 1.0 $prompt;
53 pack .$n.prompt -side left;
54 .$n.prompt configure -state disabled;
57 proc mkframe { n prompt value entry } {
58 global vwidth fxpad fypad;
60 mkhalfframe $n $prompt;
61 text .$n.value -width $vwidth -height 1;
62 .$n.value insert 1.0 $value;
63 pack .$n.value -side right;
65 # Allow entry, but don't encourage it
66 .$n.value configure -state normal -takefocus 0;
67 bind .$n.value <Return> {done};
69 .$n.value configure -state disabled;
71 pack .$n -side top -padx $fxpad -pady $fypad;
74 # Dump our fields to stdout and exit
76 puts [.n.value get 1.0 {end - 1 char}];
81 mkframe h "Hostname:" $hostname 0;
82 mkframe c "Challenge:" $challenge 0;
83 mkframe n "Authname:" $authname 1;
85 mkhalfframe k "Authkey:";
86 entry .k.value -show "*" -width $vwidth;
87 pack .k.value -side right;
88 bind .k.value <Return> {done};
90 pack .k -side top -padx $fxpad -pady $fypad;
93 button .b.ok -default active -text "Ok" -command {done};
94 pack .b.ok -side left;
95 button .b.cancel -default normal -text "Cancel" -command {exit 1};
96 pack .b.cancel -side right;
97 pack .b -side top -padx $fxpad -pady $fypad;