]> git.proxmox.com Git - mirror_ovs.git/blame - acinclude.m4
vswitch: Avoid segfault when revalidating ARP flows.
[mirror_ovs.git] / acinclude.m4
CommitLineData
064af421
BP
1# -*- autoconf -*-
2
3# Copyright (c) 2008, 2009 Nicira Networks.
4#
5# Permission to use, copy, modify, and/or distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
17dnl Checks for --disable-userspace.
18AC_DEFUN([OVS_CHECK_USERSPACE],
19 [AC_ARG_ENABLE(
20 [userspace],
21 [AC_HELP_STRING([--disable-userspace],
22 [Disable building userspace components.])],
23 [case "${enableval}" in
24 (yes) build_userspace=true ;;
25 (no) build_userspace=false ;;
26 (*) AC_MSG_ERROR([bad value ${enableval} for --enable-userspace]) ;;
27 esac],
28 [build_userspace=true])
29 AM_CONDITIONAL([ENABLE_USERSPACE], [$build_userspace])])
30
31dnl OVS_CHECK_LINUX(OPTION, VERSION, VARIABLE, CONDITIONAL)
32dnl
33dnl Configure linux kernel source tree
34AC_DEFUN([OVS_CHECK_LINUX], [
35 AC_ARG_WITH([$1],
36 [AC_HELP_STRING([--with-$1=/path/to/linux-$2],
37 [Specify the linux $2 kernel sources])],
38 [path="$withval"], [path=])dnl
39 if test -n "$path"; then
40 path=`eval echo "$path"`
41
42 AC_MSG_CHECKING([for $path directory])
43 if test -d "$path"; then
44 AC_MSG_RESULT([yes])
45 $3=$path
46 AC_SUBST($3)
47 else
48 AC_MSG_RESULT([no])
49 AC_ERROR([source dir $path doesn't exist])
50 fi
51
52 AC_MSG_CHECKING([for $path kernel version])
53 patchlevel=`sed -n 's/^PATCHLEVEL = //p' "$path/Makefile"`
54 sublevel=`sed -n 's/^SUBLEVEL = //p' "$path/Makefile"`
55 AC_MSG_RESULT([2.$patchlevel.$sublevel])
56 if test "2.$patchlevel" != '$2'; then
57 AC_ERROR([Linux kernel source in $path is not version $2])
58 fi
59 if ! test -e "$path"/include/linux/version.h || \
60 ! test -e "$path"/include/linux/autoconf.h; then
61 AC_MSG_ERROR([Linux kernel source in $path is not configured])
62 fi
63 m4_if($2, [2.6], [OVS_CHECK_LINUX26_COMPAT])
64 fi
65 AM_CONDITIONAL($4, test -n "$path")
66])
67
68dnl OVS_GREP_IFELSE(FILE, REGEX, IF-MATCH, IF-NO-MATCH)
69dnl
70dnl Greps FILE for REGEX. If it matches, runs IF-MATCH, otherwise IF-NO-MATCH.
71AC_DEFUN([OVS_GREP_IFELSE], [
72 AC_MSG_CHECKING([whether $2 matches in $1])
73 grep '$2' $1 >/dev/null 2>&1
74 status=$?
75 case $status in
76 0)
77 AC_MSG_RESULT([yes])
78 $3
79 ;;
80 1)
81 AC_MSG_RESULT([no])
82 $4
83 ;;
84 *)
85 AC_MSG_ERROR([grep exited with status $status])
86 ;;
87 esac
88])
89
90dnl OVS_DEFINE(NAME)
91dnl
92dnl Defines NAME to 1 in kcompat.h.
93AC_DEFUN([OVS_DEFINE], [
94 echo '#define $1 1' >> datapath/linux-2.6/kcompat.h.new
95])
96
97AC_DEFUN([OVS_CHECK_VETH], [
98 AC_MSG_CHECKING([whether to build veth module])
99 if test "$sublevel" = 18; then
100 AC_MSG_RESULT([yes])
101 AC_SUBST([BUILD_VETH], 1)
102 else
103 AC_MSG_RESULT([no])
104 fi
105])
106
107AC_DEFUN([OVS_CHECK_LOG2_H], [
108 AC_MSG_CHECKING([for $KSRC26/include/linux/log2.h])
109 if test -e $KSRC26/include/linux/log2.h; then
110 AC_MSG_RESULT([yes])
111 OVS_DEFINE([HAVE_LOG2_H])
112 else
113 AC_MSG_RESULT([no])
114 fi
115])
116
117dnl OVS_CHECK_LINUX26_COMPAT
118dnl
119dnl Runs various Autoconf checks on the Linux 2.6 kernel source in
120dnl the directory in $KSRC26.
121AC_DEFUN([OVS_CHECK_LINUX26_COMPAT], [
122 rm -f datapath/linux-2.6/kcompat.h.new
123 mkdir -p datapath/linux-2.6
124 : > datapath/linux-2.6/kcompat.h.new
125 OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [skb_transport_header],
126 [OVS_DEFINE([HAVE_SKBUFF_HEADER_HELPERS])])
127 OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h], [raw],
128 [OVS_DEFINE([HAVE_MAC_RAW])])
129 OVS_GREP_IFELSE([$KSRC26/include/linux/skbuff.h],
130 [skb_copy_from_linear_data_offset],
131 [OVS_DEFINE([HAVE_SKB_COPY_FROM_LINEAR_DATA_OFFSET])])
132 OVS_GREP_IFELSE([$KSRC26/include/net/netlink.h], [NLA_NUL_STRING],
133 [OVS_DEFINE([HAVE_NLA_NUL_STRING])])
134 OVS_GREP_IFELSE([$KSRC26/include/linux/err.h], [ERR_CAST],
135 [OVS_DEFINE([HAVE_ERR_CAST])])
136 OVS_CHECK_LOG2_H
137 OVS_CHECK_VETH
138 if cmp -s datapath/linux-2.6/kcompat.h.new \
139 datapath/linux-2.6/kcompat.h >/dev/null 2>&1; then
140 rm datapath/linux-2.6/kcompat.h.new
141 else
142 mv datapath/linux-2.6/kcompat.h.new datapath/linux-2.6/kcompat.h
143 fi
144])
145
146dnl Checks for net/if_packet.h.
147AC_DEFUN([OVS_CHECK_IF_PACKET],
148 [AC_CHECK_HEADER([net/if_packet.h],
149 [HAVE_IF_PACKET=yes],
150 [HAVE_IF_PACKET=no])
151 AM_CONDITIONAL([HAVE_IF_PACKET], [test "$HAVE_IF_PACKET" = yes])
152 if test "$HAVE_IF_PACKET" = yes; then
153 AC_DEFINE([HAVE_IF_PACKET], [1],
154 [Define to 1 if net/if_packet.h is available.])
155 fi])
156
e50097d2
BP
157dnl Checks for buggy strtok_r.
158dnl
159dnl Some versions of glibc 2.7 has a bug in strtok_r when compiling
160dnl with optimization that can cause segfaults:
161dnl
162dnl http://sources.redhat.com/bugzilla/show_bug.cgi?id=5614.
163AC_DEFUN([OVS_CHECK_STRTOK_R],
164 [AC_CACHE_CHECK(
165 [whether strtok_r macro segfaults on some inputs],
166 [ovs_cv_strtok_r_bug],
167 [AC_RUN_IFELSE(
168 [AC_LANG_PROGRAM([#include <stdio.h>
169 #include <string.h>
170 ],
171 [[char string[] = ":::";
172 char *save_ptr = (char *) 0xc0ffee;
173 char *token1, *token2;
174 token1 = strtok_r(string, ":", &save_ptr);
175 token2 = strtok_r(NULL, ":", &save_ptr);
176 printf ("%s %s\n", token1, token2);
177 return 0;
178 ]])],
179 [ovs_cv_strtok_r_bug=no],
180 [ovs_cv_strtok_r_bug=yes],
181 [ovs_cv_strtok_r_bug=yes])])
182 if test $ovs_cv_strtok_r_bug = yes; then
183 AC_DEFINE([HAVE_STRTOK_R_BUG], [1],
184 [Define if strtok_r macro segfaults on some inputs])
185 fi
186])
187
064af421
BP
188dnl ----------------------------------------------------------------------
189dnl These macros are from GNU PSPP, with the following original license:
190dnl Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
191dnl This file is free software; the Free Software Foundation
192dnl gives unlimited permission to copy and/or distribute it,
193dnl with or without modifications, as long as this notice is preserved.
194
195dnl OVS_CHECK_CC_OPTION([OPTION], [ACTION-IF-ACCEPTED], [ACTION-IF-REJECTED])
196dnl Check whether the given C compiler OPTION is accepted.
197dnl If so, execute ACTION-IF-ACCEPTED, otherwise ACTION-IF-REJECTED.
198AC_DEFUN([OVS_CHECK_CC_OPTION],
199[
200 m4_define([ovs_cv_name], [ovs_cv_[]m4_translit([$1], [-], [_])])dnl
201 AC_CACHE_CHECK([whether $CC accepts $1], [ovs_cv_name],
202 [ovs_save_CFLAGS="$CFLAGS"
203 CFLAGS="$CFLAGS $1"
204 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,)], [ovs_cv_name[]=yes], [ovs_cv_name[]=no])
205 CFLAGS="$ovs_save_CFLAGS"])
206 if test $ovs_cv_name = yes; then
207 m4_if([$2], [], [;], [$2])
208 else
209 m4_if([$3], [], [:], [$3])
210 fi
211])
212
213dnl OVS_ENABLE_OPTION([OPTION])
214dnl Check whether the given C compiler OPTION is accepted.
215dnl If so, add it to CFLAGS.
216dnl Example: OVS_ENABLE_OPTION([-Wdeclaration-after-statement])
217AC_DEFUN([OVS_ENABLE_OPTION],
218 [OVS_CHECK_CC_OPTION([$1], [CFLAGS="$CFLAGS $1"])])
219dnl ----------------------------------------------------------------------