Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ai
sso
Commits
97fc9e70
Commit
97fc9e70
authored
Jun 22, 2019
by
ale
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'nonce' into 'master'
Nonce See merge request
!3
parents
4afa78f7
a65ad08e
Changes
46
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
46 changed files
with
2072 additions
and
1334 deletions
+2072
-1334
.gitignore
.gitignore
+1
-0
configure.ac
configure.ac
+5
-7
m4/ax_pkg_swig.m4
m4/ax_pkg_swig.m4
+0
-135
m4/ax_python_devel.m4
m4/ax_python_devel.m4
+46
-44
m4/ax_swig_enable_cxx.m4
m4/ax_swig_enable_cxx.m4
+0
-53
m4/ax_swig_multi_module_support.m4
m4/ax_swig_multi_module_support.m4
+0
-56
m4/ax_swig_python.m4
m4/ax_swig_python.m4
+0
-64
src/Makefile.am
src/Makefile.am
+0
-2
src/mod_sso/Makefile.am
src/mod_sso/Makefile.am
+2
-2
src/mod_sso/mod_sso.c
src/mod_sso/mod_sso.c
+259
-498
src/mod_sso/mod_sso.h
src/mod_sso/mod_sso.h
+28
-11
src/mod_sso/session.c
src/mod_sso/session.c
+200
-0
src/mod_sso/sso_utils.c
src/mod_sso/sso_utils.c
+118
-62
src/mod_sso/test/.gitignore
src/mod_sso/test/.gitignore
+1
-0
src/mod_sso/test/Makefile.am
src/mod_sso/test/Makefile.am
+4
-3
src/mod_sso/test/htdocs/other-service/index.html
src/mod_sso/test/htdocs/other-service/index.html
+1
-0
src/mod_sso/test/httpd_integration_test.py
src/mod_sso/test/httpd_integration_test.py
+213
-62
src/mod_sso/test/session_unittest.cc
src/mod_sso/test/session_unittest.cc
+67
-0
src/mod_sso/test/sso_utils_unittest.cc
src/mod_sso/test/sso_utils_unittest.cc
+21
-1
src/mod_sso/test/test-httpd-2.4-nonces.conf
src/mod_sso/test/test-httpd-2.4-nonces.conf
+51
-0
src/mod_sso/test/test-httpd-2.4-webmail.conf
src/mod_sso/test/test-httpd-2.4-webmail.conf
+31
-0
src/mod_sso/test/test-httpd-2.4.conf
src/mod_sso/test/test-httpd-2.4.conf
+2
-2
src/pam_sso/Makefile.am
src/pam_sso/Makefile.am
+11
-1
src/pam_sso/pam_sso.c
src/pam_sso/pam_sso.c
+54
-20
src/pam_sso/pam_sso.h
src/pam_sso/pam_sso.h
+3
-0
src/pam_sso/pam_sso_unittest.cc
src/pam_sso/pam_sso_unittest.cc
+152
-0
src/python/Makefile.am
src/python/Makefile.am
+3
-2
src/python/setup.py
src/python/setup.py
+26
-6
src/python/sso/.gitignore
src/python/sso/.gitignore
+1
-3
src/python/sso/__init__.py
src/python/sso/__init__.py
+47
-43
src/python/sso/py3compat.h
src/python/sso/py3compat.h
+217
-0
src/python/sso/sso.i
src/python/sso/sso.i
+0
-117
src/python/sso/sso_python.c
src/python/sso/sso_python.c
+241
-0
src/python/test/signer_test.py
src/python/test/signer_test.py
+12
-10
src/python/test/ticket_test.py
src/python/test/ticket_test.py
+9
-4
src/python/test/verifier_test.py
src/python/test/verifier_test.py
+24
-12
src/sso/base64.c
src/sso/base64.c
+30
-7
src/sso/sso.c
src/sso/sso.c
+19
-6
src/sso/sso.h
src/sso/sso.h
+11
-7
src/sso/ssotool.c
src/sso/ssotool.c
+14
-6
src/sso/test/sso_unittest.cc
src/sso/test/sso_unittest.cc
+79
-47
src/sso_server/sso_server/application.py
src/sso_server/sso_server/application.py
+5
-4
src/sso_server/sso_server/login_service.py
src/sso_server/sso_server/login_service.py
+7
-4
src/sso_server/sso_server/saml/flask_views.py
src/sso_server/sso_server/saml/flask_views.py
+1
-1
src/sso_server/sso_server/templates/login.html
src/sso_server/sso_server/templates/login.html
+1
-0
src/sso_server/sso_server/test/sso_server_test.py
src/sso_server/sso_server/test/sso_server_test.py
+55
-32
No files found.
.gitignore
View file @
97fc9e70
...
...
@@ -27,3 +27,4 @@ ltmain.sh
missing
test-driver
.*-stamp
test-out.log
configure.ac
View file @
97fc9e70
...
...
@@ -84,13 +84,11 @@ if test "$build_pam_sso" != "no" ; then
fi
AM_CONDITIONAL(ENABLE_PAM_SSO, [ test "$build_pam_sso" != "no" ])
dnl SWIG
dnl AC_PROG_SWIG(1.3.17)
AX_PKG_SWIG(1.3.17)
AX_SWIG_ENABLE_CXX
AX_SWIG_MULTI_MODULE_SUPPORT
AX_SWIG_PYTHON
AM_CONDITIONAL(SWIG, [ test -n "$SWIG" && $SWIG -version >/dev/null 2>&1 ])
dnl Python-dev (actually only used for $PYTHON)
AX_PYTHON_DEVEL
dnl nosetests
AC_PATH_PROG([NOSETESTS], [nosetests])
dnl GoogleTest (use the embedded version)
GTEST_LIBS="\$(top_builddir)/lib/gtest/libgtest.la"
...
...
m4/ax_pkg_swig.m4
deleted
100644 → 0
View file @
4afa78f7
# ===========================================================================
# http://www.gnu.org/software/autoconf-archive/ax_pkg_swig.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_PKG_SWIG([major.minor.micro], [action-if-found], [action-if-not-found])
#
# DESCRIPTION
#
# This macro searches for a SWIG installation on your system. If found,
# then SWIG is AC_SUBST'd; if not found, then $SWIG is empty. If SWIG is
# found, then SWIG_LIB is set to the SWIG library path, and AC_SUBST'd.
#
# You can use the optional first argument to check if the version of the
# available SWIG is greater than or equal to the value of the argument. It
# should have the format: N[.N[.N]] (N is a number between 0 and 999. Only
# the first N is mandatory.) If the version argument is given (e.g.
# 1.3.17), AX_PKG_SWIG checks that the swig package is this version number
# or higher.
#
# As usual, action-if-found is executed if SWIG is found, otherwise
# action-if-not-found is executed.
#
# In configure.in, use as:
#
# AX_PKG_SWIG(1.3.17, [], [ AC_MSG_ERROR([SWIG is required to build..]) ])
# AX_SWIG_ENABLE_CXX
# AX_SWIG_MULTI_MODULE_SUPPORT
# AX_SWIG_PYTHON
#
# LICENSE
#
# Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
# Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
# Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
# Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
# Copyright (c) 2011 Murray Cumming <murrayc@openismus.com>
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
# scripts that are the output of Autoconf when processing the Macro. You
# need not follow the terms of the GNU General Public License when using
# or distributing such scripts, even though portions of the text of the
# Macro appear in them. The GNU General Public License (GPL) does govern
# all other use of the material that constitutes the Autoconf Macro.
#
# This special exception to the GPL applies to versions of the Autoconf
# Macro released by the Autoconf Archive. When you make and distribute a
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial 8
AC_DEFUN([AX_PKG_SWIG],[
# Ubuntu has swig 2.0 as /usr/bin/swig2.0
AC_PATH_PROGS([SWIG],[swig swig2.0])
if test -z "$SWIG" ; then
m4_ifval([$3],[$3],[:])
elif test -n "$1" ; then
AC_MSG_CHECKING([SWIG version])
[swig_version=`$SWIG -version 2>&1 | grep 'SWIG Version' | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'`]
AC_MSG_RESULT([$swig_version])
if test -n "$swig_version" ; then
# Calculate the required version number components
[required=$1]
[required_major=`echo $required | sed 's/[^0-9].*//'`]
if test -z "$required_major" ; then
[required_major=0]
fi
[required=`echo $required | sed 's/[0-9]*[^0-9]//'`]
[required_minor=`echo $required | sed 's/[^0-9].*//'`]
if test -z "$required_minor" ; then
[required_minor=0]
fi
[required=`echo $required | sed 's/[0-9]*[^0-9]//'`]
[required_patch=`echo $required | sed 's/[^0-9].*//'`]
if test -z "$required_patch" ; then
[required_patch=0]
fi
# Calculate the available version number components
[available=$swig_version]
[available_major=`echo $available | sed 's/[^0-9].*//'`]
if test -z "$available_major" ; then
[available_major=0]
fi
[available=`echo $available | sed 's/[0-9]*[^0-9]//'`]
[available_minor=`echo $available | sed 's/[^0-9].*//'`]
if test -z "$available_minor" ; then
[available_minor=0]
fi
[available=`echo $available | sed 's/[0-9]*[^0-9]//'`]
[available_patch=`echo $available | sed 's/[^0-9].*//'`]
if test -z "$available_patch" ; then
[available_patch=0]
fi
# Convert the version tuple into a single number for easier comparison.
# Using base 100 should be safe since SWIG internally uses BCD values
# to encode its version number.
required_swig_vernum=`expr $required_major \* 10000 \
\+ $required_minor \* 100 \+ $required_patch`
available_swig_vernum=`expr $available_major \* 10000 \
\+ $available_minor \* 100 \+ $available_patch`
if test $available_swig_vernum -lt $required_swig_vernum; then
AC_MSG_WARN([SWIG version >= $1 is required. You have $swig_version.])
SWIG=''
m4_ifval([$3],[$3],[])
else
AC_MSG_CHECKING([for SWIG library])
SWIG_LIB=`$SWIG -swiglib`
AC_MSG_RESULT([$SWIG_LIB])
m4_ifval([$2],[$2],[])
fi
else
AC_MSG_WARN([cannot determine SWIG version])
SWIG=''
m4_ifval([$3],[$3],[])
fi
fi
AC_SUBST([SWIG_LIB])
])
m4/ax_python_devel.m4
View file @
97fc9e70
# ===========================================================================
#
http://www.gnu.org/software/autoconf-archive/ax_python_devel.html
# http
s
://www.gnu.org/software/autoconf-archive/ax_python_devel.html
# ===========================================================================
#
# SYNOPSIS
...
...
@@ -12,8 +12,8 @@
# in your configure.ac.
#
# This macro checks for Python and tries to get the include path to
# 'Python.h'. It provides the $(PYTHON_CPPFLAGS) and $(PYTHON_L
DFLAGS)
#
output
variables. It also exports $(PYTHON_EXTRA_LIBS) and
# 'Python.h'. It provides the $(PYTHON_CPPFLAGS) and $(PYTHON_L
IBS) output
# variables. It also exports $(PYTHON_EXTRA_LIBS) and
# $(PYTHON_EXTRA_LDFLAGS) for embedding Python in your code.
#
# You can search for some particular version of Python by passing a
...
...
@@ -34,11 +34,12 @@
# LICENSE
#
# Copyright (c) 2009 Sebastian Huber <sebastian-huber@web.de>
# Copyright (c) 2009 Alan W. Irwin
<irwin@beluga.phys.uvic.ca>
# Copyright (c) 2009 Alan W. Irwin
# Copyright (c) 2009 Rafael Laboissiere <rafael@laboissiere.net>
# Copyright (c) 2009 Andrew Collier
<colliera@ukzn.ac.za>
# Copyright (c) 2009 Andrew Collier
# Copyright (c) 2009 Matteo Settenvini <matteo@member.fsf.org>
# Copyright (c) 2009 Horst Knorr <hk_classes@knoda.org>
# Copyright (c) 2013 Daniel Mullner <muellner@math.stanford.edu>
#
# 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
...
...
@@ -51,7 +52,7 @@
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
# with this program. If not, see <http
s
://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
...
...
@@ -66,7 +67,7 @@
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial
8
#serial
21
AU_ALIAS([AC_PYTHON_DEVEL], [AX_PYTHON_DEVEL])
AC_DEFUN([AX_PYTHON_DEVEL],[
...
...
@@ -98,7 +99,7 @@ AC_DEFUN([AX_PYTHON_DEVEL],[
This version of the AC@&t@_PYTHON_DEVEL macro
doesn't work properly with versions of Python before
2.1.0. You may need to re-run configure, setting the
variables PYTHON_CPPFLAGS, PYTHON_L
DFLAG
S, PYTHON_SITE_PKG,
variables PYTHON_CPPFLAGS, PYTHON_L
IB
S, PYTHON_SITE_PKG,
PYTHON_EXTRA_LIBS and PYTHON_EXTRA_LDFLAGS by hand.
Moreover, to disable this check, set PYTHON_NOVERSIONCHECK
to something else than an empty string.
...
...
@@ -136,7 +137,7 @@ variable to configure. See ``configure --help'' for reference.
#
AC_MSG_CHECKING([for the distutils Python package])
ac_distutils_result=`$PYTHON -c "import distutils" 2>&1`
if test
-z "$ac_distutils_result"
; then
if test
$? -eq 0
; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
...
...
@@ -153,8 +154,14 @@ $ac_distutils_result])
if test -z "$PYTHON_CPPFLAGS"; then
python_path=`$PYTHON -c "import distutils.sysconfig; \
print (distutils.sysconfig.get_python_inc ());"`
plat_python_path=`$PYTHON -c "import distutils.sysconfig; \
print (distutils.sysconfig.get_python_inc (plat_specific=1));"`
if test -n "${python_path}"; then
python_path="-I$python_path"
if test "${plat_python_path}" != "${python_path}"; then
python_path="-I$python_path -I$plat_python_path"
else
python_path="-I$python_path"
fi
fi
PYTHON_CPPFLAGS=$python_path
fi
...
...
@@ -165,7 +172,7 @@ $ac_distutils_result])
# Check for Python library path
#
AC_MSG_CHECKING([for Python library path])
if test -z "$PYTHON_L
DFLAG
S"; then
if test -z "$PYTHON_L
IB
S"; then
# (makes two attempts to ensure we've got a version number
# from the interpreter)
ac_python_version=`cat<<EOD | $PYTHON -
...
...
@@ -173,11 +180,9 @@ $ac_distutils_result])
# join all versioning strings, on some systems
# major/minor numbers could be in different list elements
from distutils.sysconfig import *
ret = ''
for e in get_config_vars ('VERSION'):
if (e != None):
ret += e
print (ret)
e = get_config_var('VERSION')
if e is not None:
print(e)
EOD`
if test -z "$ac_python_version"; then
...
...
@@ -198,55 +203,49 @@ EOD`
# There should be only one
import distutils.sysconfig
for e in distutils.sysconfig.get_config_vars ('LIBDIR'):
if e != None:
print (e)
break
e = distutils.sysconfig.get_config_var('LIBDIR')
if e is not None:
print (e)
EOD`
# Before checking for libpythonX.Y, we need to know
# the extension the OS we're on uses for libraries
# (we take the first one, if there's more than one fix me!):
ac_python_soext=`$PYTHON -c \
"import distutils.sysconfig; \
print (distutils.sysconfig.get_config_vars('SO')[[0]])"`
# Now, for the library:
ac_python_soname=`$PYTHON -c \
"import distutils.sysconfig; \
print (distutils.sysconfig.get_config_vars('LDLIBRARY')[[0]])"`
ac_python_library=`cat<<EOD | $PYTHON -
# Strip away extension from the end to canonicalize its name:
ac_python_library=`echo "$ac_python_soname" | sed "s/${ac_python_soext}$//"`
import distutils.sysconfig
c = distutils.sysconfig.get_config_vars()
if 'LDVERSION' in c:
print ('python'+c[['LDVERSION']])
else:
print ('python'+c[['VERSION']])
EOD`
# This small piece shamelessly adapted from PostgreSQL python macro;
# credits goes to momjian, I think. I'd like to put the right name
# in the credits, if someone can point me in the right direction... ?
#
if test -n "$ac_python_libdir" -a -n "$ac_python_library" \
-a x"$ac_python_library" != x"$ac_python_soname"
if test -n "$ac_python_libdir" -a -n "$ac_python_library"
then
# use the official shared library
ac_python_library=`echo "$ac_python_library" | sed "s/^lib//"`
PYTHON_L
DFLAG
S="-L$ac_python_libdir -l$ac_python_library"
PYTHON_L
IB
S="-L$ac_python_libdir -l$ac_python_library"
else
# old way: use libpython from python_configdir
ac_python_libdir=`$PYTHON -c \
"from distutils.sysconfig import get_python_lib as f; \
import os; \
print (os.path.join(f(plat_specific=1, standard_lib=1), 'config'));"`
PYTHON_L
DFLAG
S="-L$ac_python_libdir -lpython$ac_python_version"
PYTHON_L
IB
S="-L$ac_python_libdir -lpython$ac_python_version"
fi
if test -z "PYTHON_L
DFLAG
S"; then
if test -z "PYTHON_L
IB
S"; then
AC_MSG_ERROR([
Cannot determine location of your Python DSO. Please check it was installed with
dynamic libraries enabled, or try setting PYTHON_L
DFLAG
S by hand.
dynamic libraries enabled, or try setting PYTHON_L
IB
S by hand.
])
fi
fi
AC_MSG_RESULT([$PYTHON_L
DFLAG
S])
AC_SUBST([PYTHON_L
DFLAG
S])
AC_MSG_RESULT([$PYTHON_L
IB
S])
AC_SUBST([PYTHON_L
IB
S])
#
# Check for site packages
...
...
@@ -266,7 +265,7 @@ EOD`
if test -z "$PYTHON_EXTRA_LIBS"; then
PYTHON_EXTRA_LIBS=`$PYTHON -c "import distutils.sysconfig; \
conf = distutils.sysconfig.get_config_var; \
print (conf('
LOCALMOD
LIBS') + ' ' + conf('LIBS'))"`
print (conf('LIBS') + ' ' + conf('
SYS
LIBS'))"`
fi
AC_MSG_RESULT([$PYTHON_EXTRA_LIBS])
AC_SUBST(PYTHON_EXTRA_LIBS)
...
...
@@ -289,8 +288,10 @@ EOD`
AC_MSG_CHECKING([consistency of all components of python development environment])
# save current global flags
ac_save_LIBS="$LIBS"
ac_save_LDFLAGS="$LDFLAGS"
ac_save_CPPFLAGS="$CPPFLAGS"
LIBS="$ac_save_LIBS $PYTHON_LDFLAGS $PYTHON_EXTRA_LDFLAGS $PYTHON_EXTRA_LIBS"
LIBS="$ac_save_LIBS $PYTHON_LIBS $PYTHON_EXTRA_LIBS $PYTHON_EXTRA_LIBS"
LDFLAGS="$ac_save_LDFLAGS $PYTHON_EXTRA_LDFLAGS"
CPPFLAGS="$ac_save_CPPFLAGS $PYTHON_CPPFLAGS"
AC_LANG_PUSH([C])
AC_LINK_IFELSE([
...
...
@@ -301,6 +302,7 @@ EOD`
# turn back to default flags
CPPFLAGS="$ac_save_CPPFLAGS"
LIBS="$ac_save_LIBS"
LDFLAGS="$ac_save_LDFLAGS"
AC_MSG_RESULT([$pythonexists])
...
...
@@ -308,8 +310,8 @@ EOD`
AC_MSG_FAILURE([
Could not link test program to Python. Maybe the main Python library has been
installed in some non-standard library path. If so, pass it to configure,
via the L
DFLAG
S environment variable.
Example: ./configure L
DFLAG
S="-L/usr/non-standard-path/python/lib"
via the L
IB
S environment variable.
Example: ./configure L
IB
S="-L/usr/non-standard-path/python/lib"
============================================================================
ERROR!
You probably have to install the development version of the Python package
...
...
m4/ax_swig_enable_cxx.m4
deleted
100644 → 0
View file @
4afa78f7
# ===========================================================================
# http://www.gnu.org/software/autoconf-archive/ax_swig_enable_cxx.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_SWIG_ENABLE_CXX
#
# DESCRIPTION
#
# Enable SWIG C++ support. This affects all invocations of $(SWIG).
#
# LICENSE
#
# Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
# Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
# Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
# Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
# scripts that are the output of Autoconf when processing the Macro. You
# need not follow the terms of the GNU General Public License when using
# or distributing such scripts, even though portions of the text of the
# Macro appear in them. The GNU General Public License (GPL) does govern
# all other use of the material that constitutes the Autoconf Macro.
#
# This special exception to the GPL applies to versions of the Autoconf
# Macro released by the Autoconf Archive. When you make and distribute a
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial 6
AU_ALIAS([SWIG_ENABLE_CXX], [AX_SWIG_ENABLE_CXX])
AC_DEFUN([AX_SWIG_ENABLE_CXX],[
AC_REQUIRE([AX_PKG_SWIG])
AC_REQUIRE([AC_PROG_CXX])
SWIG="$SWIG -c++"
])
m4/ax_swig_multi_module_support.m4
deleted
100644 → 0
View file @
4afa78f7
# ================================================================================
# http://www.gnu.org/software/autoconf-archive/ax_swig_multi_module_support.html
# ================================================================================
#
# SYNOPSIS
#
# AX_SWIG_MULTI_MODULE_SUPPORT
#
# DESCRIPTION
#
# Enable support for multiple modules. This effects all invocations of
# $(SWIG). You have to link all generated modules against the appropriate
# SWIG runtime library. If you want to build Python modules for example,
# use the AX_SWIG_PYTHON macro and link the modules against
# $(AX_SWIG_PYTHON_LIBS).
#
# LICENSE
#
# Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
# Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
# Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
# Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
# scripts that are the output of Autoconf when processing the Macro. You
# need not follow the terms of the GNU General Public License when using
# or distributing such scripts, even though portions of the text of the
# Macro appear in them. The GNU General Public License (GPL) does govern
# all other use of the material that constitutes the Autoconf Macro.
#
# This special exception to the GPL applies to versions of the Autoconf
# Macro released by the Autoconf Archive. When you make and distribute a
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial 7
AU_ALIAS([SWIG_MULTI_MODULE_SUPPORT], [AX_SWIG_MULTI_MODULE_SUPPORT])
AC_DEFUN([AX_SWIG_MULTI_MODULE_SUPPORT],[
AC_REQUIRE([AX_PKG_SWIG])
SWIG="$SWIG -noruntime"
])
m4/ax_swig_python.m4
deleted
100644 → 0
View file @
4afa78f7
# ===========================================================================
# http://www.gnu.org/software/autoconf-archive/ax_swig_python.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_SWIG_PYTHON([use-shadow-classes = {no, yes}])
#
# DESCRIPTION
#
# Checks for Python and provides the $(AX_SWIG_PYTHON_CPPFLAGS), and
# $(AX_SWIG_PYTHON_OPT) output variables.
#
# $(AX_SWIG_PYTHON_OPT) contains all necessary SWIG options to generate
# code for Python. Shadow classes are enabled unless the value of the
# optional first argument is exactly 'no'. If you need multi module
# support (provided by the AX_SWIG_MULTI_MODULE_SUPPORT macro) use
# $(AX_SWIG_PYTHON_LIBS) to link against the appropriate library. It
# contains the SWIG Python runtime library that is needed by the type
# check system for example.
#
# LICENSE
#
# Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
# Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
# Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
# Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
# scripts that are the output of Autoconf when processing the Macro. You
# need not follow the terms of the GNU General Public License when using
# or distributing such scripts, even though portions of the text of the
# Macro appear in them. The GNU General Public License (GPL) does govern
# all other use of the material that constitutes the Autoconf Macro.
#
# This special exception to the GPL applies to versions of the Autoconf
# Macro released by the Autoconf Archive. When you make and distribute a
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial 7
AU_ALIAS([SWIG_PYTHON], [AX_SWIG_PYTHON])
AC_DEFUN([AX_SWIG_PYTHON],[
AC_REQUIRE([AX_PKG_SWIG])
AC_REQUIRE([AX_PYTHON_DEVEL])
test "x$1" != "xno" || swig_shadow=" -noproxy"
AC_SUBST([AX_SWIG_PYTHON_OPT],[-python$swig_shadow])
AC_SUBST([AX_SWIG_PYTHON_CPPFLAGS],[$PYTHON_CPPFLAGS])
])
src/Makefile.am
View file @
97fc9e70
...
...
@@ -7,9 +7,7 @@ if ENABLE_PAM_SSO
PAM_SSO_SUBDIR
=
pam_sso
endif
if
SWIG
PYTHON_SUBDIR
=
python sso_server
endif
SUBDIRS
=
\
sso
\
...
...
src/mod_sso/Makefile.am
View file @
97fc9e70
...
...
@@ -7,10 +7,10 @@ noinst_DATA = mod_sso.la
SSO_LIBS
=
$(top_builddir)
/src/sso/libsso.la
libmod_sso_la_SOURCES
=
mod_sso.c mod_sso.h sso_utils.c
libmod_sso_la_SOURCES
=
mod_sso.c mod_sso.h sso_utils.c
session.c
libmod_sso_la_CPPFLAGS
=
$(APACHE_CFLAGS)
$(APR_CFLAGS)
$(AM_CPPFLAGS)
libmod_sso_la_LDFLAGS
=
-module
libmod_sso_la_LIBADD
=
$(SSO_LIBS)
libmod_sso_la_LIBADD
=
-lcrypto
$(SSO_LIBS)
install-exec-local
:
$(INSTALL)
-D
-o
0
-g
0
-m
644
$(builddir)
/.libs/mod_sso.so
\
...
...
src/mod_sso/mod_sso.c
View file @
97fc9e70
This diff is collapsed.
Click to expand it.
src/mod_sso/mod_sso.h
View file @
97fc9e70
...
...
@@ -22,9 +22,9 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <sso/sso.h>
#include "ap_config.h"
#include "apr_strings.h"
#include <sso/sso.h>
#ifdef APLOG_USE_MODULE
APLOG_USE_MODULE
(
sso
);
...
...
@@ -38,6 +38,8 @@ APLOG_USE_MODULE(sso);
#undef PACKAGE_VERSION
#include "config.h"
#define MODSSO_SESSION_KEY_SIZE 32
struct
request_rec
;
struct
modsso_params
{
...
...
@@ -47,19 +49,34 @@ struct modsso_params {
typedef
struct
modsso_params
*
modsso_params_t
;
// sso_utils.cc
void
debug
(
const
char
*
s
);
char
*
modsso_url_decode
(
apr_pool_t
*
p
,
const
char
*
str
);
char
*
modsso_url_encode
(
apr_pool_t
*
p
,
const
char
*
str
);
// sso_utils.c
const
char
*
modsso_url_decode
(
apr_pool_t
*
p
,
const
char
*
str
);
const
char
*
modsso_url_encode
(
apr_pool_t
*
p
,
const
char
*
str
);
//char *modsso_url_encode(const char *str);
int
modsso_parse_query_string
(
apr_pool_t
*
p
,
const
char
*
str
,
modsso_params_t
params
);
int
modsso_parse_query_string
(
apr_pool_t
*
p
,
const
char
*
str
,
modsso_params_t
params
);
char
*
modsso_get_cookie
(
request_rec
*
r
,
const
char
*
cookie_name
);
void
modsso_set_cookie
(
request_rec
*
r
,
const
char
*
cookie_name
,
void
modsso_set_cookie
(
request_rec
*
r
,
const
char
*
cookie_name
,
const
char
*
value
,
const
char
*
path
);
void
modsso_del_cookie
(
request_rec
*
r
,
const
char
*
cookie_name
);
void
modsso_del_cookie
(
request_rec
*
r
,
const
char
*
cookie_name
,
const
char
*
path
);
int
modsso_read_fixed_size_file
(
apr_pool_t
*
p
,
const
char
*
path
,
size_t
size
,
const
unsigned
char
**
out
);
// session.c
int
modsso_session_generate_temp_key
(
apr_pool_t
*
pool
,
unsigned
char
*
out
,
size_t
*
outsz
);
int
modsso_session_deserialize
(
apr_pool_t
*
pool
,
const
unsigned
char
*
key
,
size_t
key_len
,
const
char
*
serialized_value
,
char
**
value
,
size_t
*
value_len
);
int
modsso_session_serialize
(
apr_pool_t
*
pool
,
const
unsigned
char
*
key
,
size_t
key_len
,
const
char
*
value
,
size_t
value_len
,
char
**
output
);
int
modsso_session_read
(
request_rec
*
r
,
const
unsigned
char
*