This file is indexed.

/usr/lib/ipsec/auto is in openswan 1:2.6.38-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#! /bin/sh
# user interface to automatic keying and Pluto in general
# Copyright (C) 1998, 1999, 2000  Henry Spencer.
# 
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.

me='ipsec auto'
usage="Usage:
	$me [--showonly] [--asynchronous] --up connectionname
	$me [--showonly] --{add|delete|replace|down} connectionname
	$me [--showonly] --{route|unroute} connectionname
	$me [--showonly] --{ready|status|rereadsecrets|rereadgroups}
        $me [--showonly] --{rereadcacerts|rereadaacerts|rereadocspcerts}
        $me [--showonly] --{rereadacerts|rereadcrls|rereadall}
        $me [--showonly] [--utc] --{listpubkeys|listcerts}
        $me [--showonly] [--utc] --checkpubkeys
        $me [--showonly] [--utc] --{listcacerts|listaacerts|listocspcerts}
        $me [--showonly] [--utc] --{listacerts|listgroups}
        $me [--showonly] [--utc] --{listcrls|listocsp|listall}
        $me [--showonly] --purgeocsp

	other options: [--config ipsecconfigfile] [--verbose] [--show]"

showonly=
config=
info=/var/run/pluto/ipsec.info
shopts=
async=
logfilter='$1 != "002"'
op=
argc=
utc=

for dummy
do
	case "$1" in
	--help)		echo "$usage" ; exit 0	;;
	--version)	echo "$me $IPSEC_VERSION" ; exit 0	;;
	--show)		shopts=-x		;;
	--showonly)	showonly=yes		;;
	--utc)		utc="$1"		;;
	--config)	config="--config $2" ; shift	;;
	--asynchronous)	async="--asynchronous"	;;
	--verbose)	logfilter='1'		;;
	--up|--down|--add|--delete|--replace|--route|--unroute)
			if test " $op" != " "
			then
				echo "$usage" >&2
				exit 2
			fi
			op="$1"
			argc=1
			;;
	--ready|--status|--rereadsecrets|--rereadgroups|\
        --rereadcacerts|--rereadaacerts|--rereadocspcerts|\
        --rereadacerts|--rereadcrls|--rereadall|\
        --listpubkeys|--listcerts|\
        --checkpubkeys|\
        --listcacerts|--listaacerts|--listocspcerts|\
        --listacerts|--listgroups|\
        --listcrls|--listocsp|--listall|\
        --purgeocsp)
			if test " $op" != " "
			then
				echo "$usage" >&2
				exit 2
			fi
			op="$1"
			argc=0
			;;
	--)		shift ; break		;;
	-*)		echo "$me: unknown option \`$1'" >&2 ; exit 2 ;;
	*)		break			;;
	esac
	shift
done

names=
case "$op$#:$1:$2" in
2:*:up|2:*:down|2:*:add|2:*:delete|2:*:replace|2:*:route|2:*:unroute)
		echo "$me: warning: obsolete command syntax used" >&2
		names="$1"
		op="--$2"
		;;
1:ready:|1:status:|1:rereadsecrets:|\
1:rereadcacerts:|1:rereadaacerts:|1:rereadocspcerts:|\
1:rereadacerts:|1:rereadcrls:|1:rereadall:\
1:listpubkeys:|1:listcerts:|\
1:listcacerts:|1:listaacerts:|1:listocspcerts:|\
1:listacerts:|1:listgroups:|\
1:listcrls:|1:listocsp:|1:listall:|1:purgeocsp:)
		echo "$me: warning: obsolete command syntax used" >&2
		op="--$1"
		;;
--*)		if test " $argc" -ne $#
		then
			echo "$usage" >&2
			exit 2
		fi
		names="$*"
		;;
*)		echo "$usage" >&2 ; exit 2	;;
esac

# before we go any further, duplicate stdin/stdout to fds 3/4
exec 3<&0
exec 4>&1

runit() {
	if test "$showonly"
	then
		cat
	else
		(
		    echo '('
		    echo 'exec <&3'     # regain stdin
		    cat
		    echo ');'
		) | sh $shopts |
			awk "/^= / { exit \$2 } $logfilter { print }"
	fi
}

case "$op" in
--ready)          echo "ipsec whack --listen"                | runit ; exit ;;
--rereadsecrets)   echo "ipsec whack --rereadsecrets"        | runit ; exit ;;
--rereadgroups)           echo "ipsec whack --listen"                | runit ; exit ;;
--rereadcacerts)   echo "ipsec whack --rereadcacerts"         | runit ; exit ;;
--rereadaacerts)   echo "ipsec whack --rereadaacerts"         | runit ; exit ;;
--rereadocspcerts) echo "ipsec whack --rereadocspcerts"       | runit ; exit ;;
--rereadacerts)    echo "ipsec whack --rereadacerts"          | runit ; exit ;;
--rereadcrls)     echo "ipsec whack --rereadcrls"            | runit ; exit ;;
--rereadall)      echo "ipsec whack --rereadall"             | runit ; exit ;;
--listpubkeys)    echo "ipsec whack $utc --listpubkeys"      | runit ; exit ;;
--checkpubkeys)   echo "ipsec whack $utc --checkpubkeys"     | runit ; exit ;;
--listcerts)      echo "ipsec whack $utc --listcerts"        | runit ; exit ;;
--listcacerts)    echo "ipsec whack $utc --listcacerts"      | runit ; exit ;;
--listaacerts)    echo "ipsec whack $utc --listaacerts"      | runit ; exit ;;
--listocspcerts)   echo "ipsec whack $utc --listocspcerts"    | runit ; exit ;;
--listacerts)     echo "ipsec whack $utc --listacerts"       | runit ; exit ;;
--listgroups)     echo "ipsec whack $utc --listgroups"       | runit ; exit ;; 
--listcrls)       echo "ipsec whack $utc --listcrls"         | runit ; exit ;; 
--listocsp)       echo "ipsec whack $utc --listocsp"         | runit ; exit ;;
--listall)        echo "ipsec whack $utc --listall"          | runit ; exit ;;
--purgeocsp)      echo "ipsec whack $utc --purgeocsp"        | runit ; exit ;;
--up)  echo "ipsec whack $async --name $names --initiate"    | runit ; exit ;;
--down)        echo "ipsec whack --name $names --terminate"          | runit ; exit ;;
--delete)         echo "ipsec whack --name $names --delete"  | runit ; exit ;; 
--route)          echo "ipsec whack --name $names --route"   | runit ; exit ;;
--unroute)        echo "ipsec whack --name $names --unroute" | runit ; exit ;; 
--status)         echo "ipsec whack --status"                | runit ; exit ;; 
esac

if test -s $info
then
	. $info
fi

# finally, handle --add|--replace
if [ -n "$defaultrouteaddr" ]
then
    options="--defaultroute $defaultrouteaddr"
fi
if [ -n "$defaultroutenexthop" ]
then
    options="$options --defaultroutenexthop $defaultroutenexthop"
fi
echo "ipsec addconn $config $options $names"             | runit
exit