Compare commits
102
Commits
7fb8e32a9b
..
0.26.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
22fa90589b | ||
|
|
ccd0e13c05 | ||
|
|
3a9ee4727a | ||
|
|
ff329a7602 | ||
|
|
5a036bb150 | ||
|
|
245f11724d | ||
|
|
4d14e01c68 | ||
|
|
df0c511487 | ||
|
|
f8dd598312 | ||
|
|
c695876504 | ||
|
|
0db3aee60f | ||
|
|
f4d89f2fb2 | ||
|
|
9ac18a21a6 | ||
|
|
537daec883 | ||
|
|
ee9c78d129 | ||
|
|
14d2f2992d | ||
|
|
78aac4f18c | ||
|
|
df5a915287 | ||
|
|
b95128f87a | ||
|
|
6d042318d5 | ||
|
|
cf7208408c | ||
|
|
aae6656a4a | ||
|
|
4297b51dca | ||
|
|
b9e68f295e | ||
|
|
c665ce0aaf | ||
|
|
2807cd61ff | ||
|
|
330da47169 | ||
|
|
1d696c0ba0 | ||
|
|
5a49ebdfe5 | ||
|
|
42246c136f | ||
|
|
d8d953b0b3 | ||
|
|
c91ca40037 | ||
|
|
81bbffb312 | ||
|
|
46dc91c446 | ||
|
|
be3fcc0b5e | ||
|
|
416c79b637 | ||
|
|
6612f8fc89 | ||
|
|
2b63aa8cd7 | ||
|
|
b14e52133d | ||
|
|
07edf66b72 | ||
|
|
8261016c7e | ||
|
|
4d48c2abe9 | ||
|
|
7f7e420b13 | ||
|
|
52b3b230b9 | ||
|
|
416795159f | ||
|
|
04f62c7725 | ||
|
|
ddf8f3f9e0 | ||
|
|
6245ad3e10 | ||
|
|
e3a1f7e52e | ||
|
|
e94fffb110 | ||
|
|
a7cda5b70f | ||
|
|
0d4a4945fe | ||
|
|
c658e03af5 | ||
|
|
57e5e00ca3 | ||
|
|
1f7d70b755 | ||
|
|
3c60f8de01 | ||
|
|
c47397c800 | ||
|
|
224115fffe | ||
|
|
875ea3505f | ||
|
|
d581b113c8 | ||
|
|
a296d43987 | ||
|
|
aa32dac10e | ||
|
|
6a1a0a6838 | ||
|
|
83ce06579c | ||
|
|
8339af8eac | ||
|
|
2477709da4 | ||
|
|
136eca95f1 | ||
|
|
030322225f | ||
|
|
92bd4cae56 | ||
|
|
1837ebd57c | ||
|
|
2eb30b7644 | ||
|
|
7733d5d663 | ||
|
|
6a2320d922 | ||
|
|
5f10b52c77 | ||
|
|
55fc94a95b | ||
|
|
1667d8a800 | ||
|
|
5eced105c8 | ||
|
|
7486b9c141 | ||
|
|
2fbe1d3e54 | ||
|
|
fa8e081584 | ||
|
|
981d4f00b3 | ||
|
|
26ecb8b64c | ||
|
|
526338f720 | ||
|
|
06f48fe1c1 | ||
|
|
4767b57ec9 | ||
|
|
8892e3f740 | ||
|
|
21eeae69cc | ||
|
|
9799f977b9 | ||
|
|
727f7cfdf3 | ||
|
|
36747d9071 | ||
|
|
9fa59cacca | ||
|
|
b66dd2156c | ||
|
|
80275d30d3 | ||
|
|
a62ae3afca | ||
|
|
a9f98cdee9 | ||
|
|
10d30223d1 | ||
|
|
c5fc6e9245 | ||
|
|
29000cfdd7 | ||
|
|
de6ef3936b | ||
|
|
8db2ee4260 | ||
|
|
25081b1bae | ||
|
|
deaa8140f5 |
@@ -0,0 +1,66 @@
|
||||
name: Altlinux build
|
||||
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
|
||||
on:
|
||||
- push
|
||||
- workflow_dispatch
|
||||
if: ${{ github.ref }} == 'refs/head/master'
|
||||
jobs:
|
||||
build-alt:
|
||||
## runs-on: alt-latest
|
||||
container:
|
||||
image: prj.zxalexis.ru/zx/alt-rpmbuild
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
steps:
|
||||
- name: Checking environment
|
||||
continue-on-error: true
|
||||
run: printenv
|
||||
- name: Installing prerequisites - update apt
|
||||
run: apt-get update
|
||||
## - name: Installing prerequisites - install nodejs for actions & git
|
||||
## run: apt-get install -y git nodejs su
|
||||
## - name: Installing build environment
|
||||
## continue-on-error: true
|
||||
## run: |
|
||||
## apt-get install -y gcc rpm-build rpmlint make python gear hasher fakeroot patch rpmdevtools
|
||||
- name: Installing needed software
|
||||
run: apt-get install -y bison tcl
|
||||
- name: Adding build user
|
||||
run: useradd -d /builder -g users -m builder
|
||||
- name: Fetching sources
|
||||
uses: actions/checkout@v4
|
||||
- name: Getting version info
|
||||
run: |
|
||||
echo "BFORCE_VER=$(cat ${{ env.GITHUB_WORKSPACE }}/source/.version)" >> $GITHUB_ENV
|
||||
- name: Compressing source to tar.gz archive
|
||||
run: |
|
||||
tar -cvzf ../bforce-${{ env.BFORCE_VER }}.tar.gz -C ${{ env.GITHUB_WORKSPACE }}/.. bforce
|
||||
cp -v ${{ env.GITHUB_WORKSPACE }}/rpm/bforce.spec /builder/
|
||||
chown builder /builder/bforce.spec
|
||||
echo '-------------------------------------------------------'
|
||||
pwd
|
||||
ls /builder
|
||||
sed -i 's/^# %setup/%setup/' /builder/bforce.spec
|
||||
- name: Building buildtree
|
||||
run: |
|
||||
su - builder -c "cd /builder && mkdir -pv rpmbuild/{RPMS,SRPMS,SOURCES,BUILD,SPECS}"
|
||||
ls /builder -l
|
||||
mkdir -pv /builder/rpmbuild/SOURCES
|
||||
mv ${{ env.GITHUB_WORKSPACE }}/../bforce-${{ env.BFORCE_VER }}.tar.gz /builder/rpmbuild/SOURCES/
|
||||
chown -R builder /builder/*
|
||||
- name: Building binary and source RPM
|
||||
run: |
|
||||
su - builder -c 'rpmbuild -bb /builder/bforce.spec --define "_topdir /builder/rpmbuild"'
|
||||
- name: Constructing artifact name and version
|
||||
run: |
|
||||
echo "BFORCE_VERLONG=$(cat ${{ env.GITHUB_WORKSPACE }}/source/.version)-$(date +%Y%m%d)" >> $GITHUB_ENV
|
||||
- name: Retrieving artifact files
|
||||
run: mkdir bforce && cp /builder/rpmbuild/RPMS/x86_64/bforce-*.rpm bforce
|
||||
- name: Try to upload artifacts bin
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bforce-${{ env.BFORCE_VERLONG }}-Alt
|
||||
path: /builder/rpmbuild/RPMS/x86_64
|
||||
- name: Echo OK
|
||||
run: echo "All OK"
|
||||
@@ -0,0 +1,79 @@
|
||||
name: Archlinux build
|
||||
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
|
||||
on:
|
||||
- push
|
||||
- workflow_dispatch
|
||||
if: ${{ github.ref }} == 'refs/head/master'
|
||||
jobs:
|
||||
build-arch:
|
||||
runs-on: arch-latest
|
||||
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
steps:
|
||||
- name: Checking environment
|
||||
continue-on-error: true
|
||||
run: printenv
|
||||
- name: Installing prerequisites - update pacman
|
||||
run: pacman -Sy
|
||||
- name: Installing prerequisites - install nodejs for actions & git
|
||||
run: pacman --disable-sandbox --noconfirm -v -S git nodejs
|
||||
- name: Adding user builder
|
||||
continue-on-error: true
|
||||
run: useradd -d /builder -g users -m builder
|
||||
- name: Downloading PKGBUILD
|
||||
run: |
|
||||
su - builder -c "curl -O http://zxprj:3001/zx/bforce/raw/branch/master/archlinux/bforce.install"
|
||||
su - builder -c "curl -o PKGBUILD http://zxprj:3001/zx/bforce/raw/branch/master/archlinux/PKGBUILD.ci"
|
||||
- name: Building archlinux package
|
||||
run: |
|
||||
su -w GITHUB_SHA,GITHUB_REF_NAME,GITHUB_REF_TYPE - builder -c makepkg
|
||||
su - builder -c "ls -la"
|
||||
- name: Constructing artifact name and version
|
||||
run: |
|
||||
echo "BFORCE_VER=$(cat /builder/src/bforce/source/.version)-$(date +%Y%m%d)" >> $GITHUB_ENV
|
||||
- name: Retrieving artifact files
|
||||
run: mkdir bforce && cp /builder/bforce-*.pkg.tar.zst bforce
|
||||
- name: Try to upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bforce-${{ env.BFORCE_VER }}-Arch
|
||||
path: bforce
|
||||
make-test:
|
||||
runs-on: arch-latest
|
||||
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
steps:
|
||||
- name: Checking environment
|
||||
continue-on-error: true
|
||||
run: printenv
|
||||
- name: Installing prerequisites - update pacman
|
||||
run: pacman -Sy
|
||||
- name: Installing prerequisites - install nodejs for actions & git
|
||||
run: pacman --disable-sandbox --noconfirm -v -S git nodejs socat
|
||||
- name: Downloading source tree
|
||||
continue-on-error: false
|
||||
uses: actions/checkout@v3
|
||||
- name: Constructing artifact name and version
|
||||
run: |
|
||||
echo "BFORCE_VER=$(cat ${{ github.workspace }}/source/.version)-$(date +%Y%m%d)" >> $GITHUB_ENV
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: bforce-${{ env.BFORCE_VER }}-Arch
|
||||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
- name: Installing archlinux package
|
||||
run: |
|
||||
ls -la
|
||||
pacman --noconfirm -v -U bforce-*.pkg.tar.zst
|
||||
cd ${{ github.workspace }}/tests
|
||||
echo '-----------------------------------------'
|
||||
ls -la
|
||||
- name: Testing package in clean environment
|
||||
run: |
|
||||
cd ${{ github.workspace }}/tests
|
||||
echo '------------>>> TESTING <<<--------------'
|
||||
BFBIN=/usr/bin/bforce ./mktests.sh
|
||||
@@ -0,0 +1,52 @@
|
||||
name: Debian build
|
||||
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
|
||||
on:
|
||||
- push
|
||||
- workflow_dispatch
|
||||
jobs:
|
||||
build-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
branches:
|
||||
- 'master'
|
||||
- 'zx'
|
||||
steps:
|
||||
- name: Checking environment
|
||||
continue-on-error: true
|
||||
run: printenv
|
||||
- name: Installing build-essentials
|
||||
continue-on-error: false
|
||||
run: |
|
||||
apt update
|
||||
apt install -y build-essential fakeroot devscripts debhelper pkg-config --no-install-recommends
|
||||
- name: Installing dependencies
|
||||
continue-on-error: false
|
||||
run: |
|
||||
echo '---- bison ----'
|
||||
apt install -y bison
|
||||
echo '---- tcl ------'
|
||||
apt install -y tcl
|
||||
- name: Cloning source
|
||||
uses: actions/checkout@v4
|
||||
- name: Getting version info
|
||||
run: |
|
||||
echo "BFORCE_VER=$(cat ${{ env.GITHUB_WORKSPACE }}/source/.version)-$(date +%Y%m%d)" >> $GITHUB_ENV
|
||||
- name: Building package
|
||||
continue-on-error: false
|
||||
run: |
|
||||
pwd
|
||||
echo '---------------------'
|
||||
cd ${GITHUB_WORKSPACE}/debian
|
||||
ls -l
|
||||
debuild -us -uc -b
|
||||
echo '---build complete---'
|
||||
ls -l ${{ env.GITHUB_WORKSPACE }}/../
|
||||
- name: Collecting artifacts
|
||||
run: |
|
||||
mkdir -pv ${{ env.GITHUB_WORKSPACE }}/artifacts
|
||||
mv -v ${{ env.GITHUB_WORKSPACE }}/../*.deb ${{ env.GITHUB_WORKSPACE }}/artifacts/
|
||||
- name: Try to upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bforce-${{ env.BFORCE_VER }}-Ubuntu
|
||||
path: ${{ env.GITHUB_WORKSPACE }}/artifacts/bforce*.deb
|
||||
- run: echo "This job's over"
|
||||
@@ -7,6 +7,3 @@ source/config.log
|
||||
source/config.status
|
||||
source/include/config.h
|
||||
bforce.geany
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -273,3 +273,16 @@ Alexey Khromov (zx@zxalexis.ru)
|
||||
|
||||
0.26
|
||||
+ Fixed incorrect binkp protocol realization in unprotected sessions.
|
||||
+ Fixed binkp override appliance in incoming handshake
|
||||
|
||||
0.26.1
|
||||
+ Fixed binkp stuck on overrides in config
|
||||
+ ReDebianized
|
||||
+ Added CI automation: builds for Archlinux and Ubuntu
|
||||
|
||||
0.26.2
|
||||
+ Added tests with socat and integrate it with CI
|
||||
+ Fixed some minor lint errors by PVS-Studio
|
||||
+ Fixed RPM spec-file to make builds for AltLinux
|
||||
+ Added fail2ban filter to contrib
|
||||
+ Fixed node/point-lists indexing and parsing for points listed
|
||||
|
||||
@@ -1,4 +1,35 @@
|
||||
Basic Installation
|
||||
Prerequisites
|
||||
====================
|
||||
|
||||
C compiler (GCC in linux and clang in BSD will work well)
|
||||
make
|
||||
yacc or it's GNU's recreation named bison
|
||||
Tcl optional for a couple of scripts
|
||||
|
||||
Installing with packages
|
||||
=
|
||||
|
||||
Debian-based systesms (Debian, *buntu, Mint, Astra)
|
||||
====================
|
||||
|
||||
Install build system for packaging:
|
||||
|
||||
apt install build-essential fakeroot devscripts debhelper pkg-config
|
||||
apt install bison tcl
|
||||
|
||||
Use debuild to make deb-s:
|
||||
|
||||
cd <SRCDIR>/debian
|
||||
debuild -us -uc -b
|
||||
|
||||
RPM-based systems (RHEL, CentOS, Altlinux, SimplyLinux, RedOS)
|
||||
=====================
|
||||
|
||||
mkdir -p ./rpmbuild/{RPMS,BUILD}
|
||||
rpmbuild -bb <SRCDIR>/rpm/bforce.spec --define "_topdir $( pwd )/rpmbuild" --define "_builddir <SRCDIR>/source"
|
||||
|
||||
|
||||
Manual Installation
|
||||
==================
|
||||
|
||||
These are generic installation instructions.
|
||||
|
||||
+29
-8
@@ -3,21 +3,42 @@
|
||||
|
||||
В данном документе приняты следующие обозначения:
|
||||
|
||||
<SRCDIR> - путь, куда вы распаковали тарболл с исходными
|
||||
текстами bforce 0.xx (далее bforce)
|
||||
<SRCDIR> - путь, куда вы распаковали тарболл с исходными текстами
|
||||
bforce 0.xx (далее bforce)
|
||||
Тарболл - файл с расширением tar.gz, или tar.bz2
|
||||
|
||||
|
||||
Требования к системе
|
||||
====================
|
||||
|
||||
Для компиляции bforce вам потребуется компилятор (для
|
||||
gnu/bsd-систем gcc), так же GNU make (make для линукс,
|
||||
gmake для bsd).
|
||||
Для компиляции bforce вам потребуется компилятор с языка С,
|
||||
так же GNU make (make для линукс, gmake для bsd) и yacc (в linux -
|
||||
bison). Опционально - tcl
|
||||
|
||||
Обратитесь к документации по вашей системе того, что бы
|
||||
узнать как установить вышеперечисленное программное обеспечение.
|
||||
Создание пакета
|
||||
=
|
||||
|
||||
Debian-based системы (Debian, *buntu, Mint, Astra)
|
||||
====================
|
||||
|
||||
Установка программ и набора скриптов для сборки пакетов:
|
||||
|
||||
apt install build-essential fakeroot devscripts debhelper pkg-config
|
||||
apt install bison tcl
|
||||
|
||||
Для создания пакета из скачанных исходников достаточно воспользоваться
|
||||
командой debuild:
|
||||
|
||||
cd <SRCDIR>/debian
|
||||
debuild -us -uc -b
|
||||
|
||||
RPM-based системы (RHEL, CentOS, Altlinux, SimplyLinux, RedOS)
|
||||
=====================
|
||||
|
||||
mkdir -p ./rpmbuild/{RPMS,BUILD}
|
||||
rpmbuild -bb <SRCDIR>/rpm/bforce.spec --define "_topdir $( pwd )/rpmbuild" --define "_builddir <SRCDIR>/source"
|
||||
|
||||
Установка вручную
|
||||
=
|
||||
|
||||
Процесс компиляции
|
||||
==================
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||

|
||||

|
||||

|
||||
|
||||
BinkleyForce FTN mailer
|
||||
-----------------------
|
||||
|
||||
@@ -43,6 +47,10 @@ New Versions
|
||||
|
||||
https://prj.zxalexis.ru/gitea/zx/bforce
|
||||
|
||||
SAST Tools
|
||||
----------
|
||||
[PVS-Studio](https://pvs-studio.com/pvs-studio/?utm_source=website&utm_medium=github&utm_campaign=open_source) - static analyzer for C, C++, C#, and Java code.
|
||||
|
||||
Older Sources
|
||||
-------------
|
||||
https://github.com/zotrix/binkleyforce/
|
||||
@@ -56,4 +64,4 @@ Copyright <br>
|
||||
> (c) 2007-2008 Sergey Babitch<br>
|
||||
> (c) 2011-2014 Sergey Dorofeev<br>
|
||||
> (c) 2014 Alexander Skovpen<br>
|
||||
> (c) 2024 Alexey Khromov<br>
|
||||
> (c) 2024-2025 Alexey Khromov<br>
|
||||
|
||||
@@ -33,6 +33,7 @@ package() {
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
mkdir -p ${pkgdir}/usr/local/bin
|
||||
mkdir -p ${pkgdir}/usr/share/doc/bforce
|
||||
mkdir -p ${pkgdir}/usr/share/man/man1
|
||||
mkdir -p ${pkgdir}/var/log/bforce
|
||||
mkdir -p ${pkgdir}/var/spool/bforce
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/bt/in
|
||||
@@ -44,6 +45,7 @@ package() {
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/bfindex ${pkgdir}/usr/bin/bfindex
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/bfstat ${pkgdir}/usr/bin/bfstat
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/nlookup ${pkgdir}/usr/bin/nlookup
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/man/*.1 ${pkgdir}/usr/share/man/man1/
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.conf ${pkgdir}/etc/bforce.conf.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.subst ${pkgdir}/etc/bforce.subst.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.passwd ${pkgdir}/etc/bforce.passwd.sample
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
pkgname=bforce
|
||||
pkgver=r235.a1c93b8
|
||||
pkgrel=1
|
||||
pkgdesc="binkleyforce FTN mailer"
|
||||
arch=('i686' 'x86_64' 'aarch64')
|
||||
url="https://prj.zxalexis.ru/gitea/zx/bforce/"
|
||||
license=('GPL2')
|
||||
source=(
|
||||
"${pkgname}::git+https://prj.zxalexis.ru/gitea/zx/bforce.git"
|
||||
)
|
||||
makedepends=('git' 'gcc' 'make' 'glibc')
|
||||
provides=('bforce')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}/source"
|
||||
./configure --prefix=/ --disable-syslog --with-owner=fido --with-group=uucp
|
||||
make
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "${pkgname}"
|
||||
git checkout "${GITHUB_SHA}"
|
||||
printf "$( pwd )\n"
|
||||
}
|
||||
|
||||
pkgver() {
|
||||
cd "$pkgname"
|
||||
if [ "${GITHUB_REF_TYPE}" = "tags" ]; then
|
||||
printf "v%s" "${GITHUB_REF_NAME}"
|
||||
else
|
||||
printf "r%s.%s.%s" "$(git rev-list --count ${GITHUB_SHA})" "$(git rev-parse --short ${GITHUB_SHA})" "${GITHUB_REF_NAME}"
|
||||
fi
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgdir}
|
||||
mkdir -p ${pkgdir}/etc
|
||||
mkdir -p ${pkgdir}/usr/bin
|
||||
mkdir -p ${pkgdir}/usr/local/bin
|
||||
mkdir -p ${pkgdir}/usr/share/doc/bforce
|
||||
mkdir -p ${pkgdir}/usr/share/man/man1
|
||||
mkdir -p ${pkgdir}/var/log/bforce
|
||||
mkdir -p ${pkgdir}/var/spool/bforce
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/bt/in
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/bt/pin
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/bt/out
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/ndl
|
||||
mkdir -p ${pkgdir}/var/spool/bforce/bforce
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/bforce ${pkgdir}/usr/bin/bforce
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/bfindex ${pkgdir}/usr/bin/bfindex
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/bfstat ${pkgdir}/usr/bin/bfstat
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/source/bin/nlookup ${pkgdir}/usr/bin/nlookup
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/man/*.1 ${pkgdir}/usr/share/man/man1/
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.conf ${pkgdir}/etc/bforce.conf.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.subst ${pkgdir}/etc/bforce.subst.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/bforce.passwd ${pkgdir}/etc/bforce.passwd.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/freq.aliases ${pkgdir}/etc/freq.aliases.sample
|
||||
/usr/bin/install -c -m 644 ${srcdir}/${pkgname}/examples/freq.dirs ${pkgdir}/etc/freq.dirs.sample
|
||||
/usr/bin/install -c ${srcdir}/${pkgname}/contrib/outman ${pkgdir}/usr/local/bin/outman
|
||||
echo "Please, edit /usr/local/bin/outman"
|
||||
cp ${srcdir}/${pkgname}/docs/* ${pkgdir}/usr/share/doc/bforce/
|
||||
}
|
||||
|
||||
sha256sums=('SKIP')
|
||||
@@ -0,0 +1,25 @@
|
||||
# Fail2Ban filter for bforce bf-log.tcpip log file
|
||||
# Detecting unauthorized access
|
||||
# Typically logged in /var/log/bforce/bf-debug
|
||||
|
||||
# Apr 10 17:34:20 [944134] TCP/IP connect from 72.138.46.4 on port 5590
|
||||
# Apr 10 17:34:21 [944134] Session ended up, rc=21, inetd=1
|
||||
# Apr 10 17:34:21 [944134] session rc = 21 ("Cannot handshake with remote")
|
||||
# Apr 10 17:34:21 [944135] Answering TCPIP call...
|
||||
# Apr 10 17:34:21 [944135] TCP/IP connect from 72.138.46.4 on port 7714
|
||||
# Apr 10 17:34:21 [944135] Session ended up, rc=21, inetd=1
|
||||
# Apr 10 17:34:21 [944135] session rc = 21 ("Cannot handshake with remote")
|
||||
|
||||
[INCLUDES]
|
||||
|
||||
# Read common prefixes. If any customizations available -- read them from
|
||||
# common.local
|
||||
before = common.conf
|
||||
|
||||
[Init]
|
||||
maxlines = 5
|
||||
|
||||
[Definition]
|
||||
prefregex = \[<F-MLFID>\d+</F-MLFID>\] TCP/IP connect from <HOST> on port \d+$
|
||||
failregex = session rc \= 21
|
||||
ignoreregex =
|
||||
@@ -0,0 +1,8 @@
|
||||
[bforce]
|
||||
enabled = true
|
||||
port = 24554,60179
|
||||
filter = bforce
|
||||
logpath = /opt/fidonms/logs/bf-log.tcpip
|
||||
maxretry = 5
|
||||
findtime = 60
|
||||
bantime = 600
|
||||
@@ -6,7 +6,7 @@ Type=forking
|
||||
PIDFile=/tmp/bforce.pid
|
||||
User=fido
|
||||
Group=fido
|
||||
ExecStart=/usr/bin/bforce -d -C /opt/fidonms/etc/bforce.conf
|
||||
ExecStart=/usr/bin/bforce -d -C /etc/bforce/bforce.conf
|
||||
ExecStop=/usr/bin/bforce -q
|
||||
|
||||
[Install]
|
||||
|
||||
@@ -9,5 +9,5 @@ service binkp
|
||||
wait = no
|
||||
user = fido
|
||||
server = /usr/bin/bforce
|
||||
server_args = -C /opt/fidonms/etc/bforce.conf -i binkp
|
||||
server_args = -C /etc/bforce/bforce.conf -i binkp
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@ service ifc
|
||||
wait = no
|
||||
user = fido
|
||||
server = /usr/bin/bforce
|
||||
server_args = -C /opt/fidonms/etc/bforce.conf -i auto
|
||||
server_args = -C /etc/bforce/bforce.conf -i auto
|
||||
}
|
||||
Vendored
-263
@@ -1,263 +0,0 @@
|
||||
# Makefile.in generated by automake 1.8.3 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = ../debian
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES)
|
||||
mkinstalldirs = $(mkdir_p)
|
||||
CONFIG_HEADER = $(top_builddir)/include/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
CC = @CC@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
DEFS = @DEFS@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GROUP = @GROUP@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
OBJEXT = @OBJEXT@
|
||||
OWNER = @OWNER@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
SHELL = @SHELL@
|
||||
YACC = @YACC@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
|
||||
# $Id$
|
||||
EXTRA_DIST = copyright changelog rules conffiles \
|
||||
control dirs init.d
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ../debian/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu ../debian/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic distclean \
|
||||
distclean-generic distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-exec \
|
||||
install-exec-am install-info install-info-am install-man \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
|
||||
uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
bforce for Debian
|
||||
-----------------
|
||||
|
||||
See CHANGES.ugenk
|
||||
|
||||
-- Evgeniy Kozhuhovskiy <e.kozhuhovskiy@gmail.com>, Thu Feb 10 23:54:48 2005
|
||||
Vendored
+19
@@ -1,3 +1,22 @@
|
||||
bforce (0.26.2) UNRELEASED; urgency=medium
|
||||
|
||||
* Added tests to CI actions
|
||||
* Fixed nodelist indexing for points handling
|
||||
|
||||
-- Alexey Khromov <zx@zxalexis.ru> Sat, 19 Apr 2025 07:43:54 +0300
|
||||
|
||||
bforce (0.26.1) UNRELEASED; urgency=medium
|
||||
|
||||
* Fixed for ubuntu/debian builds and CI actions
|
||||
|
||||
-- Alexey Khromov <zx@zxalexis.ru> Sun, 13 Apr 2025 20:06:54 +0300
|
||||
|
||||
bforce (0.26) UNRELEASED; urgency=medium
|
||||
|
||||
* Fixed for IPv6 and build on amd64 and aarch64 platforms
|
||||
|
||||
-- Alexey Khromov <zx@zxalexis.ru> Sun, 13 Apr 2025 12:53:54 +0000
|
||||
|
||||
bforce (0.22.9-3) unstable; urgency=low
|
||||
|
||||
* fixes in init.d script
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
4
|
||||
3
|
||||
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
/etc/bforce/bforce.conf
|
||||
/etc/bforce/bforce.subst
|
||||
/etc/bforce/bforce.passwd
|
||||
/etc/bforce/freq.dirs
|
||||
/etc/bforce/freq.aliases
|
||||
|
||||
Vendored
+2
-2
@@ -1,13 +1,13 @@
|
||||
Source: bforce
|
||||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: Evgeniy Kozhuhovskiy <e.kozhuhovskiy@gmail.com>
|
||||
Maintainer: Alexey Khromov <zx@zxalexis.ru>
|
||||
Build-Depends: debhelper (>> 3.0.0), bison (>> 1.0.0)
|
||||
Standards-Version: 3.5.10
|
||||
|
||||
Package: bforce
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}
|
||||
Depends: ${shlibs:Depends}, tclsh:any
|
||||
Description: Binkey Force FTN mailer
|
||||
FTN mailer is a program that transmit files (netmail and echomail)
|
||||
between your FTN node and other.
|
||||
|
||||
Vendored
+1
@@ -1,5 +1,6 @@
|
||||
usr/bin
|
||||
usr/lib/bforce
|
||||
usr/lib/systemd/system
|
||||
etc/bforce
|
||||
etc/default
|
||||
etc/default/bforce
|
||||
|
||||
Vendored
+2
-6
@@ -1,9 +1,5 @@
|
||||
README
|
||||
README.kst
|
||||
README.ugenk
|
||||
README.md
|
||||
TODO
|
||||
CHANGES
|
||||
CHANGES.kst
|
||||
CHANGES.ugenk
|
||||
INSTALL
|
||||
INSTALL.ru
|
||||
SYSLOG
|
||||
|
||||
Vendored
+9
-9
@@ -26,15 +26,15 @@ set -e
|
||||
case "$1" in
|
||||
configure)
|
||||
|
||||
if ! grep -s news /etc/group >/dev/null 2>&1; then
|
||||
addgroup --system news
|
||||
fi
|
||||
|
||||
if ! id uucp >/dev/null 2>&1; then
|
||||
adduser --system --disabled-password uucp
|
||||
chsh -s /bin/sh uucp
|
||||
adduser uucp dialout
|
||||
fi
|
||||
# if ! grep -s news /etc/group >/dev/null 2>&1; then
|
||||
# addgroup --system news
|
||||
# fi
|
||||
#
|
||||
# if ! id uucp >/dev/null 2>&1; then
|
||||
# adduser --system --disabled-password uucp
|
||||
# chsh -s /bin/sh uucp
|
||||
# adduser uucp dialout
|
||||
# fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
||||
Vendored
+6
-7
@@ -6,8 +6,7 @@
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
# This is the debhelper compatibility version to use.
|
||||
export DH_COMPAT=3
|
||||
|
||||
export DH_COMPAT=11
|
||||
|
||||
PACKAGE = bforce
|
||||
|
||||
@@ -49,7 +48,7 @@ clean:
|
||||
rm -f build-stamp configure-stamp
|
||||
|
||||
# Add here commands to clean up after the build process.
|
||||
-$(MAKE) -C source clean
|
||||
# -$(MAKE) -C source clean
|
||||
dh_clean
|
||||
rm -f source/config.cache source/include/config.h source/config.log\
|
||||
source/config.status source/Makefile
|
||||
@@ -57,7 +56,7 @@ clean:
|
||||
install: build
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_clean -k
|
||||
dh_prep
|
||||
dh_installdirs
|
||||
|
||||
# Add here commands to install the package into debian/bforce.
|
||||
@@ -74,7 +73,7 @@ install: build
|
||||
/usr/bin/install -c -m 600 -o $(USER) -g $(GROUP) examples/bforce.passwd $(CURDIR)/debian/bforce/etc/bforce/bforce.passwd
|
||||
/usr/bin/install -c -m 644 -o $(USER) -g $(GROUP) examples/freq.aliases $(CURDIR)/debian/bforce/etc/bforce/freq.aliases
|
||||
/usr/bin/install -c -m 644 -o $(USER) -g $(GROUP) examples/freq.dirs $(CURDIR)/debian/bforce/etc/bforce/freq.dirs
|
||||
|
||||
/usr/bin/install -c -m 660 contrib/systemd/bforce.service $(CURDIR)/debian/bforce/usr/lib/systemd/system/bforce.service
|
||||
/usr/bin/install $(CURDIR)/debian/bfha.def $(CURDIR)/debian/bforce/etc/default/bforce/bfha
|
||||
/usr/bin/install $(CURDIR)/contrib/bfha/bfha-debian.pl $(CURDIR)/debian/bforce/usr/lib/bforce/bfha.pl
|
||||
|
||||
@@ -92,8 +91,8 @@ binary-arch: build install
|
||||
# dh_installlogrotate
|
||||
dh_installinit
|
||||
# dh_installcron
|
||||
dh_installman $(CURDIR)/debian/bfindex.1 $(CURDIR)/debian/bforce.1 \
|
||||
$(CURDIR)/debian/bfstat.1 $(CURDIR)/debian/nlookup.1
|
||||
dh_installman $(CURDIR)/man/bfindex.1 $(CURDIR)/man/bforce.1 \
|
||||
$(CURDIR)/man/bfstat.1 $(CURDIR)/man/nlookup.1 $(CURDIR)/man/outman.1
|
||||
# dh_installinfo
|
||||
dh_installchangelogs CHANGES
|
||||
dh_link
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
.SH NAME
|
||||
bfindex \- nodelist compiler for bforce
|
||||
.SH SYNOPSYS
|
||||
\fBbfindex [-fh]\fR
|
||||
\fBbfindex [-fh] [-C\fIconfig\fB]\fR
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBbfindex\fP is a nodelist compiler for BinkleyForce FTN mailer.
|
||||
@@ -2,7 +2,7 @@
|
||||
.SH NAME
|
||||
bfstat \- binkley style outbound statistic
|
||||
.SH SYNOPSYS
|
||||
\fBbfstat [-afhprst] [-n \fInumber\fB]\fR
|
||||
\fBbfstat [-afhprst] [-n \fInumber\fB] [-C\fIconfig\fB]\fR
|
||||
.SH DESCRIPTION
|
||||
\fBbfstat\fP help you to see your outbound statistic in human readable
|
||||
form.
|
||||
@@ -2,7 +2,7 @@
|
||||
.SH NAME
|
||||
Bnlookup \- Nodelist search tool for bforce
|
||||
.SH SYNOPSYS
|
||||
\fBnlookup [-rh]\fR
|
||||
\fBnlookup [-rh] [-C\fIconfig\fB]\fR
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBnlookup\fP is a nodelist search tool for BinkleyForce FTN mailer.
|
||||
+34
-20
@@ -1,54 +1,68 @@
|
||||
Summary: Bforce, Fidonet mailer
|
||||
Name: bforce
|
||||
Version: 0.22.8
|
||||
Release: ugenk4
|
||||
Version: 0.26.2
|
||||
Release: %{_vendor}.1
|
||||
Copyright: GPL
|
||||
Group: Fidonet/mailer
|
||||
Source0: bforce-%{version}.%{release}.tar.gz
|
||||
Source0: bforce-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-root
|
||||
|
||||
%description
|
||||
BFORCE is a FTN mailer. Supports PSTN and binkp sessions.
|
||||
|
||||
%prep
|
||||
#%setup -q -n %{name}-%{version}.%{release}
|
||||
cd source
|
||||
./configure --prefix=/usr --disable-log-passwd --sysconfdir=/etc/bforce --bindir=/usr/bin --with-owner=uucp --with-group=news
|
||||
# uncomment this to build from tarball
|
||||
# %setup -q -n %{name}
|
||||
echo "------------ PREPARING RPM BUILD IN $(pwd) ------------"
|
||||
export RPM_PACKAGE_VERSION=$(cat %{_builddir}/%{name}/source/.version)
|
||||
cd %{_builddir}/%{name}/source
|
||||
%{_builddir}/%{name}/source/configure --prefix=/usr --disable-log-passwd --sysconfdir=/etc/bforce --bindir=/usr/bin --with-owner=uucp --with-group=news CFLAGS='-g1'
|
||||
|
||||
%build
|
||||
cd source
|
||||
echo "------------ BUILDING RPM IN $(pwd) ------------"
|
||||
cd %{_builddir}/%{name}/source
|
||||
make
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT/etc/bforce
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/bin
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/sbin
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/share/man/man1
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/system/
|
||||
mkdir -p $RPM_BUILD_ROOT/var/log/bforce
|
||||
mkdir -p $RPM_BUILD_ROOT/var/spool/fido/bt/pin
|
||||
mkdir -p $RPM_BUILD_ROOT/var/spool/fido/bt/in
|
||||
mkdir -p $RPM_BUILD_ROOT/var/spool/fido/ndl
|
||||
mkdir -p $RPM_BUILD_ROOT/var/spool/fido/bforce
|
||||
mkdir -p $RPM_BUILD_ROOT/$RPM_DOC_DIR/$RPM_PACKAGE_NAME-$RPM_PACKAGE_VERSION
|
||||
|
||||
|
||||
install -o uucp -g news source/bin/bforce $RPM_BUILD_ROOT/usr/bin/bforce
|
||||
install -o uucp -g news source/bin/bfindex $RPM_BUILD_ROOT/usr/bin/bfindex
|
||||
install -o uucp -g news source/bin/bfstat $RPM_BUILD_ROOT/usr/bin/bfstat
|
||||
install -o uucp -g news source/bin/nlookup $RPM_BUILD_ROOT/usr/bin/nlookup
|
||||
install -o uucp -g news examples/bforce.conf $RPM_BUILD_ROOT/etc/bforce/bforce.conf.sample
|
||||
install -o uucp -g news examples/bforce.passwd $RPM_BUILD_ROOT/etc/bforce/bforce.passwd.sample
|
||||
install -o uucp -g news examples/bforce.subst $RPM_BUILD_ROOT/etc/bforce/bforce.subst.sample
|
||||
install -o uucp -g news examples/freq.aliases $RPM_BUILD_ROOT/etc/bforce/freq.aliases.sample
|
||||
install -o uucp -g news examples/freq.dirs $RPM_BUILD_ROOT/etc/bforce/freq.dirs.sample
|
||||
install -m755 -o uucp -g news contrib/outman $RPM_BUILD_ROOT/usr/bin/outman
|
||||
|
||||
install %{_builddir}/%{name}/source/bin/bforce $RPM_BUILD_ROOT/usr/bin/bforce
|
||||
install %{_builddir}/%{name}/source/bin/bfindex $RPM_BUILD_ROOT/usr/bin/bfindex
|
||||
install %{_builddir}/%{name}/source/bin/bfstat $RPM_BUILD_ROOT/usr/bin/bfstat
|
||||
install %{_builddir}/%{name}/source/bin/nlookup $RPM_BUILD_ROOT/usr/bin/nlookup
|
||||
install %{_builddir}/%{name}/examples/bforce.conf $RPM_BUILD_ROOT/etc/bforce/bforce.conf.sample
|
||||
install %{_builddir}/%{name}/examples/bforce.passwd $RPM_BUILD_ROOT/etc/bforce/bforce.passwd.sample
|
||||
install %{_builddir}/%{name}/examples/bforce.subst $RPM_BUILD_ROOT/etc/bforce/bforce.subst.sample
|
||||
install %{_builddir}/%{name}/examples/freq.aliases $RPM_BUILD_ROOT/etc/bforce/freq.aliases.sample
|
||||
install %{_builddir}/%{name}/examples/freq.dirs $RPM_BUILD_ROOT/etc/bforce/freq.dirs.sample
|
||||
install %{_builddir}/%{name}/contrib/outman $RPM_BUILD_ROOT/usr/bin/outman
|
||||
install %{_builddir}/%{name}/contrib/systemd/bforce.service $RPM_BUILD_ROOT/usr/lib/systemd/system/bforce.service
|
||||
cp %{_builddir}/%{name}/man/*.1 $RPM_BUILD_ROOT/usr/share/man/man1/
|
||||
cp %{_builddir}/%{name}/{README.md,CHANGES,COPYING,INSTALL,INSTALL.ru,SYSLOG,TODO} $RPM_BUILD_ROOT/$RPM_DOC_DIR/$RPM_PACKAGE_NAME-$RPM_PACKAGE_VERSION/
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%doc README README.kst CHANGES CHANGES.kst CHANGES.ugenk COPYING INSTALL.ru README.ugenk SYSLOG TODO
|
||||
%{_mandir}/man1/bforce.1.xz
|
||||
%{_mandir}/man1/bfindex.1.xz
|
||||
%{_mandir}/man1/bfstat.1.xz
|
||||
%{_mandir}/man1/nlookup.1.xz
|
||||
%{_mandir}/man1/outman.1.xz
|
||||
%defattr(-, root, root)
|
||||
|
||||
%attr(550,uucp,news) /usr/bin/bforce
|
||||
@@ -56,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%attr(550,uucp,news) /usr/bin/bfstat
|
||||
%attr(550,uucp,news) /usr/bin/nlookup
|
||||
%attr(550,uucp,news) /usr/bin/outman
|
||||
%attr(644,root,root) /usr/share/doc/bforce-0.22.8/*
|
||||
%attr(644,root,root) /usr/share/doc/bforce-%{version}/*
|
||||
%dir %attr(770,uucp,news) /var/log/bforce
|
||||
%dir %attr(770,uucp,news) /var/spool/fido/ndl
|
||||
%attr(775,uucp,news) /var/spool/fido/bt
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
0.26
|
||||
0.26.2
|
||||
|
||||
+14
-2
@@ -13,13 +13,14 @@ CC = @CC@
|
||||
INCLUDES = -I./include
|
||||
CFLAGS = @CFLAGS@ -fno-builtin
|
||||
LIBS = @LIBS@ @CLOCK_LIB@
|
||||
YACC = @YACC@
|
||||
YACC = @YACC@ -l
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
SRCDIR = @srcdir@
|
||||
SRCDIRCONF = $(SRCDIR)/../examples
|
||||
CONTRIBDIR = $(SRCDIR)/../contrib
|
||||
CONTRIBMAN = $(SRCDIR)/../man
|
||||
|
||||
OWNER = @OWNER@
|
||||
GROUP = @GROUP@
|
||||
@@ -27,6 +28,8 @@ CONFDIR = @sysconfdir@
|
||||
BINDIR = @bindir@
|
||||
LOGDIR = @LOGDIR@
|
||||
SPOOLDIR = @SPOOLDIR@
|
||||
MANDIR = /usr/share/man/man1
|
||||
SYSTEMDDIR = /var/lib/systemd/system
|
||||
|
||||
DAEMON_LOGFILE = $(LOGDIR)/bf-daemon
|
||||
BFORCE_LOGFILE = $(LOGDIR)/bf-log
|
||||
@@ -175,6 +178,7 @@ installdirs:
|
||||
if [ ! -d $(SPOOLDIR)/bt/out ]; then mkdir -p $(SPOOLDIR)/bt/out; fi
|
||||
if [ ! -d $(SPOOLDIR)/ndl ]; then mkdir -p $(SPOOLDIR)/ndl; fi
|
||||
if [ ! -d $(SPOOLDIR)/bforce ]; then mkdir -p $(SPOOLDIR); fi
|
||||
if [ ! -d $(MANDIR)/man1 ]; then mkdir -p $(MANDIR)/man1; fi
|
||||
chown $(OWNER):$(GROUP) $(CONFDIR)
|
||||
chown $(OWNER):$(GROUP) $(LOGDIR)
|
||||
chown $(OWNER):$(GROUP) $(SPOOLDIR)/bt/in
|
||||
@@ -196,9 +200,17 @@ install-config:
|
||||
$(INSTALL_DATA) -o $(OWNER) -g $(GROUP) $(SRCDIRCONF)/freq.aliases $(CONFDIR)/freq.aliases.sample
|
||||
$(INSTALL_DATA) -o $(OWNER) -g $(GROUP) $(SRCDIRCONF)/freq.dirs $(CONFDIR)/freq.dirs.sample
|
||||
|
||||
install-man:
|
||||
$(INSTALL) $(CONTRIBMAN)/bforce.1 $(MANDIR)/man1/bforce.1
|
||||
$(INSTALL) $(CONTRIBMAN)/bfindex.1 $(MANDIR)/man1/bfindex.1
|
||||
$(INSTALL) $(CONTRIBMAN)/bfstat.1 $(MANDIR)/man1/bforce.1
|
||||
$(INSTALL) $(CONTRIBMAN)/nlookup.1 $(MANDIR)/man1/bforce.1
|
||||
$(INSTALL) $(CONTRIBMAN)/outman.1 $(MANDIR)/man1/bforce.1
|
||||
|
||||
install-contrib:
|
||||
$(INSTALL_PROGRAM) -o $(OWNER) -g $(GROUP) $(CONTRIBDIR)/outman $(BINDIR)/outman
|
||||
$(INSTALL_DATA) -o $(OWNER) -g $(GROUP) $(CONTRIBDIR)/systemd/bforce.service $(SYSTEMDDIR)/bforce.service
|
||||
@echo "Please, edit $(BINDIR)/outman"
|
||||
|
||||
install: install-bin install-config
|
||||
install: install-bin install-config install-man
|
||||
|
||||
|
||||
@@ -259,12 +259,16 @@ int main(int argc, char *argv[], char *envp[])
|
||||
|
||||
mainenv[0] = NULL;
|
||||
i=0;
|
||||
if ( envp[0] ) {
|
||||
while (envp[i]) {
|
||||
mainenv[i] = malloc(strlen(envp[i])+2);
|
||||
if ( mainenv[i] ) {
|
||||
strcpy(mainenv[i], envp[i]);
|
||||
mainenv[++i] = NULL;
|
||||
DEB((D_FREE, "Program ENV: %s\n", mainenv[(i-1)]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
memset(&opts, '\0', sizeof(s_bforce_opts));
|
||||
|
||||
|
||||
@@ -20,10 +20,14 @@ s_cval_entry *conf_first(bforce_config_keyword keyword)
|
||||
{
|
||||
s_cval_entry *ptrl;
|
||||
|
||||
for( ptrl = bforce_config[keyword].data; ptrl; ptrl = ptrl->next )
|
||||
if( !ptrl->expr.expr || eventexpr(&ptrl->expr) )
|
||||
return ptrl;
|
||||
DEB((D_CONFIG, "conf_first entry nr %d",(int16_t)keyword));
|
||||
|
||||
for( ptrl = bforce_config[keyword].data; ptrl; ptrl = ptrl->next )
|
||||
if( !ptrl->expr.expr || eventexpr(&ptrl->expr) ) {
|
||||
DEB((D_CONFIG, "conf_first ptrl found"));
|
||||
return ptrl;
|
||||
}
|
||||
DEB((D_CONFIG, "conf_first ptrl not found"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -32,9 +36,11 @@ s_cval_entry *conf_next(s_cval_entry *ptrl)
|
||||
ASSERT(ptrl);
|
||||
|
||||
for( ptrl = ptrl->next; ptrl; ptrl = ptrl->next )
|
||||
if( !ptrl->expr.expr || eventexpr(&ptrl->expr) )
|
||||
if( !ptrl->expr.expr || eventexpr(&ptrl->expr) ) {
|
||||
DEB((D_CONFIG, "conf_next ptrl found"));
|
||||
return ptrl;
|
||||
|
||||
}
|
||||
DEB((D_CONFIG, "conf_next ptrl not found"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -91,7 +97,7 @@ long conf_number(bforce_config_keyword keyword)
|
||||
s_override *conf_override(bforce_config_keyword keyword, s_faddr addr)
|
||||
{
|
||||
s_cval_entry *ptrl;
|
||||
|
||||
DEB((D_CONFIG, "conf_override entry"));
|
||||
for( ptrl = conf_first(keyword); ptrl; ptrl = conf_next(ptrl) )
|
||||
if( !ftn_addrcomp(ptrl->d.override.addr, addr) )
|
||||
return &ptrl->d.override;
|
||||
|
||||
@@ -662,7 +662,7 @@ static int proc_domain(s_domain *dest, char *value)
|
||||
if( p_path[strlen(p_path)-1] == DIRSEPCHR )
|
||||
dest->path = xstrcpy(p_path);
|
||||
else
|
||||
dest->path = string_concat(p_path, DIRSEPSTR, NULL);
|
||||
dest->path = string_concat(p_path, DIRSEPSTR, '\0');
|
||||
return(PROC_RC_OK);
|
||||
}
|
||||
else
|
||||
@@ -751,7 +751,7 @@ static int proc_path(s_string *dest, char *value)
|
||||
if( value[strlen(value)-1] == DIRSEPCHR )
|
||||
dest->str = xstrcpy(value);
|
||||
else
|
||||
dest->str = string_concat(value, DIRSEPSTR, NULL);
|
||||
dest->str = string_concat(value, DIRSEPSTR, '\0');
|
||||
|
||||
return(PROC_RC_OK);
|
||||
}
|
||||
@@ -1004,7 +1004,7 @@ static int proc_filebox(s_filebox *dest, char *value)
|
||||
if( p_path[strlen(p_path)-1] == DIRSEPCHR )
|
||||
dest->path = xstrcpy(p_path);
|
||||
else
|
||||
dest->path = string_concat(p_path, DIRSEPSTR, NULL);
|
||||
dest->path = string_concat(p_path, DIRSEPSTR, '\0');
|
||||
dest->flavor = flavor;
|
||||
return rc;
|
||||
}
|
||||
|
||||
@@ -810,6 +810,7 @@ int daemon_pidfile(int cmd)
|
||||
res = fscanf(pf, "%d", &hispid);
|
||||
if (res != 1) {
|
||||
log("daemon pidfile: not readable");
|
||||
fclose(pf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -854,6 +855,7 @@ int daemon_pidfile(int cmd)
|
||||
res = fscanf(pf, "%d", &hispid);
|
||||
if (res != 1) {
|
||||
log("daemon pidfile: not readable");
|
||||
fclose(pf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -883,6 +885,7 @@ int daemon_pidfile(int cmd)
|
||||
res = fscanf(pf, "%d", &hispid);
|
||||
if (res != 1) {
|
||||
log("daemon pidfile: not readable");
|
||||
fclose(pf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -1032,7 +1035,7 @@ int daemon_run(const char *confname, const char *incname, bool quit)
|
||||
/*
|
||||
* Check rescan timer
|
||||
*/
|
||||
if( !timer_running(timer_rescan) || timer_expired(timer_rescan) )
|
||||
if( timer_expired(timer_rescan) )
|
||||
{
|
||||
(void)daemon_rescan_sysqueue(&daemon_sys_queue,
|
||||
daemon_queues);
|
||||
@@ -1042,7 +1045,7 @@ int daemon_run(const char *confname, const char *incname, bool quit)
|
||||
/*
|
||||
* Check alive timer
|
||||
*/
|
||||
if( !timer_running(timer_alive) || timer_expired(timer_alive) )
|
||||
if( timer_expired(timer_alive) )
|
||||
{
|
||||
daemon_alive_message(&daemon_sys_queue);
|
||||
timer_set(&timer_alive, DAEMON_ALIVE_TIMER);
|
||||
|
||||
@@ -32,7 +32,7 @@ int daemon_line_add(const char *name, int type)
|
||||
int i;
|
||||
|
||||
for( i = 0; i < lines_num; i++ )
|
||||
if( !strcmp(lines_tab[i].name, name) )
|
||||
if( (lines_tab) && !strcmp(lines_tab[i].name, name) )
|
||||
return i;
|
||||
|
||||
log("register new line \"%s\"", name);
|
||||
@@ -90,13 +90,12 @@ bool daemon_line_isready(const char *name)
|
||||
void daemon_lines_deinit(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
if( lines_tab )
|
||||
{
|
||||
for( i = 0; i < lines_num; i++ )
|
||||
if( lines_tab[i].name )
|
||||
free(lines_tab[i].name);
|
||||
|
||||
if( lines_tab )
|
||||
{
|
||||
free(lines_tab);
|
||||
lines_tab = NULL;
|
||||
}
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
|
||||
/* First part of user prologue. */
|
||||
#line 49 "expression.y"
|
||||
|
||||
|
||||
#include "includes.h"
|
||||
#include "confread.h"
|
||||
@@ -110,7 +110,7 @@ static int yyparse(void);
|
||||
static int yyerror(const char *s);
|
||||
|
||||
|
||||
#line 114 "expression.tab.c"
|
||||
|
||||
|
||||
# ifndef YY_CAST
|
||||
# ifdef __cplusplus
|
||||
@@ -950,12 +950,12 @@ int yydebug;
|
||||
`-----------------------------------------------*/
|
||||
|
||||
static void
|
||||
yydestruct (const char *yymsg,
|
||||
yydestruct (char *yymsg,
|
||||
yysymbol_kind_t yykind, YYSTYPE *yyvaluep)
|
||||
{
|
||||
YY_USE (yyvaluep);
|
||||
if (!yymsg)
|
||||
yymsg = "Deleting";
|
||||
yymsg = "Deleting"; // cppcheck_suppress uselessAssignmentPtrArg
|
||||
YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
|
||||
|
||||
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
||||
@@ -1059,6 +1059,7 @@ yysetstate:
|
||||
/* Give user a chance to reallocate the stack. Use copies of
|
||||
these so that the &'s don't force the real ones into
|
||||
memory. */
|
||||
YYSTYPE *yyls1 = yyls;
|
||||
yy_state_t *yyss1 = yyss;
|
||||
YYSTYPE *yyvs1 = yyvs;
|
||||
|
||||
@@ -1066,10 +1067,13 @@ yysetstate:
|
||||
data in use in that stack, in bytes. This used to be a
|
||||
conditional around just the two extra args, but that might
|
||||
be undefined if yyoverflow is a macro. */
|
||||
|
||||
yyoverflow (YY_("memory exhausted"),
|
||||
&yyss1, yysize * YYSIZEOF (*yyssp),
|
||||
&yyss1, yysize * YYSIZEOF (*yyssp), // cppcheck_suppress syntaxError
|
||||
&yyvs1, yysize * YYSIZEOF (*yyvsp),
|
||||
&yyls1, yysize * YYSIZEOF (*yylsp),
|
||||
&yystacksize);
|
||||
yyls = yyls1;
|
||||
yyss = yyss1;
|
||||
yyvs = yyvs1;
|
||||
}
|
||||
@@ -1085,7 +1089,7 @@ yysetstate:
|
||||
yy_state_t *yyss1 = yyss;
|
||||
union yyalloc *yyptr =
|
||||
YY_CAST (union yyalloc *,
|
||||
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
|
||||
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize)))); // cppcheck_suppress sizeofwithnumericparameter
|
||||
if (! yyptr)
|
||||
YYNOMEM;
|
||||
YYSTACK_RELOCATE (yyss_alloc, yyss);
|
||||
@@ -1222,25 +1226,25 @@ yyreduce:
|
||||
switch (yyn)
|
||||
{
|
||||
case 2: /* fullline: expression */
|
||||
#line 94 "expression.y"
|
||||
|
||||
{
|
||||
DEB((D_EVENT, "[yacc] expression return %d", yyvsp[0]));
|
||||
expr_result = yyvsp[0];
|
||||
}
|
||||
#line 1231 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 3: /* expression: elemexp */
|
||||
#line 100 "expression.y"
|
||||
|
||||
{
|
||||
DEB((D_EVENT, "[yacc] elemexp return %d", yyvsp[0]));
|
||||
yyval = yyvsp[0];
|
||||
}
|
||||
#line 1240 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 4: /* expression: NOT expression */
|
||||
#line 105 "expression.y"
|
||||
|
||||
{
|
||||
DEB((D_EVENT, "[yacc] not exprression %d", yyvsp[0]));
|
||||
if( (yyvsp[0]) < 0 )
|
||||
@@ -1248,190 +1252,190 @@ yyreduce:
|
||||
else
|
||||
yyval = !(yyvsp[0]);
|
||||
}
|
||||
#line 1252 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 5: /* expression: expression LOGOP expression */
|
||||
#line 113 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_logic(yyvsp[-2], yyvsp[-1], yyvsp[0]);
|
||||
}
|
||||
#line 1260 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 6: /* expression: OPENB expression CLOSEB */
|
||||
#line 117 "expression.y"
|
||||
|
||||
{
|
||||
DEB((D_EVENT, "eventexp: [yacc] backeted.expr %d", yyvsp[-1]));
|
||||
yyval = yyvsp[-1];
|
||||
}
|
||||
#line 1269 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 7: /* elemexp: INCOMING */
|
||||
#line 123 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_incoming();
|
||||
}
|
||||
#line 1277 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 8: /* elemexp: OUTGOING */
|
||||
#line 127 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_outgoing();
|
||||
}
|
||||
#line 1285 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 9: /* elemexp: LISTED */
|
||||
#line 131 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_listed();
|
||||
}
|
||||
#line 1293 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 10: /* elemexp: PROTECTED */
|
||||
#line 135 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_protected();
|
||||
}
|
||||
#line 1301 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 11: /* elemexp: FLAG flagstring */
|
||||
#line 139 "expression.y"
|
||||
|
||||
{
|
||||
yyval = yyvsp[0];
|
||||
}
|
||||
#line 1309 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 12: /* elemexp: CONNSPEED AROP NUMBER */
|
||||
#line 143 "expression.y"
|
||||
|
||||
{
|
||||
if( state.valid && state.connspeed > 0 )
|
||||
yyval = expr_check_arop(state.connspeed, yyvsp[-1], yyvsp[0]);
|
||||
else
|
||||
yyval = -1;
|
||||
}
|
||||
#line 1320 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 13: /* elemexp: SPEED AROP NUMBER */
|
||||
#line 150 "expression.y"
|
||||
|
||||
{
|
||||
if( state.valid && state.node.speed > 0 )
|
||||
yyval = expr_check_arop(state.node.speed, yyvsp[-1], yyvsp[0]);
|
||||
else
|
||||
yyval = -1;
|
||||
}
|
||||
#line 1331 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 14: /* elemexp: TZ AROP NUMBER */
|
||||
#line 157 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_arop(time_gmtoffset(), yyvsp[-1], yyvsp[0]);
|
||||
}
|
||||
#line 1339 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 15: /* elemexp: PHONE TEXT */
|
||||
#line 161 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_phone(expr_p_text);
|
||||
}
|
||||
#line 1347 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 16: /* elemexp: TIME timestring */
|
||||
#line 165 "expression.y"
|
||||
|
||||
{
|
||||
yyval = yyvsp[0];
|
||||
}
|
||||
#line 1355 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 17: /* elemexp: EXEC TEXT */
|
||||
#line 169 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_exec(expr_p_text);
|
||||
}
|
||||
#line 1363 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 18: /* elemexp: EXIST TEXT */
|
||||
#line 173 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_exist(expr_p_text);
|
||||
}
|
||||
#line 1371 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 19: /* elemexp: PORT TEXT */
|
||||
#line 177 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_port(expr_p_text);
|
||||
}
|
||||
#line 1379 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 20: /* elemexp: MAILER TEXT */
|
||||
#line 181 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_mailer(expr_p_text);
|
||||
}
|
||||
#line 1387 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 21: /* elemexp: TEXT */
|
||||
#line 185 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_addr(expr_p_text);
|
||||
if( yyval == -2 )
|
||||
YYABORT;
|
||||
}
|
||||
#line 1397 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 22: /* flagstring: TEXT */
|
||||
#line 192 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_flag(expr_p_text);
|
||||
}
|
||||
#line 1405 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 23: /* flagstring: TEXT COMMA flagstring */
|
||||
#line 196 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_logic(yyvsp[-2], OR, yyvsp[0]);
|
||||
}
|
||||
#line 1413 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 24: /* timestring: TEXT */
|
||||
#line 201 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_time(expr_p_text);
|
||||
if( yyval == -2 )
|
||||
YYABORT;
|
||||
}
|
||||
#line 1423 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
case 25: /* timestring: TEXT COMMA timestring */
|
||||
#line 207 "expression.y"
|
||||
|
||||
{
|
||||
yyval = expr_check_logic(yyvsp[-2], OR, yyvsp[0]);
|
||||
}
|
||||
#line 1431 "expression.tab.c"
|
||||
|
||||
break;
|
||||
|
||||
|
||||
#line 1435 "expression.tab.c"
|
||||
|
||||
|
||||
default: break;
|
||||
}
|
||||
@@ -1624,7 +1628,7 @@ yyreturnlab:
|
||||
return yyresult;
|
||||
}
|
||||
|
||||
#line 211 "expression.y"
|
||||
|
||||
|
||||
|
||||
#include "expression_lex.c"
|
||||
@@ -1777,7 +1781,14 @@ static int expr_check_mailer(const char *str)
|
||||
|
||||
static int expr_check_addr(const char *str)
|
||||
{
|
||||
s_faddr addr;
|
||||
s_faddr addr = {
|
||||
.inetform = false,
|
||||
.zone = 0,
|
||||
.net = 0,
|
||||
.node = 0,
|
||||
.point = 0,
|
||||
.domain = '\0' };
|
||||
|
||||
#ifdef DEBUG
|
||||
char abuf1[BF_MAXADDRSTR+1];
|
||||
char abuf2[BF_MAXADDRSTR+1];
|
||||
|
||||
@@ -360,7 +360,14 @@ static int expr_check_mailer(const char *str)
|
||||
|
||||
static int expr_check_addr(const char *str)
|
||||
{
|
||||
s_faddr addr;
|
||||
s_faddr addr = {
|
||||
.inetform = false,
|
||||
.zone = 0,
|
||||
.net = 0,
|
||||
.node = 0,
|
||||
.point = 0,
|
||||
.domain = '\0' };
|
||||
|
||||
#ifdef DEBUG
|
||||
char abuf1[BF_MAXADDRSTR+1];
|
||||
char abuf2[BF_MAXADDRSTR+1];
|
||||
@@ -368,6 +375,7 @@ static int expr_check_addr(const char *str)
|
||||
DEB((D_EVENT, "[yacc] addr: \"%s\" (session with \"%s\")",
|
||||
ftn_addrstr(abuf1, addr),
|
||||
ftn_addrstr(abuf2, state.node.addr)));
|
||||
|
||||
#endif
|
||||
|
||||
if( !state.valid )
|
||||
|
||||
@@ -115,7 +115,7 @@ static void req_readfrlist(char *fname, s_frlist **frlist, int magic)
|
||||
(*ptrl) = (s_frlist*)xmalloc(sizeof(s_frlist));
|
||||
memset(*ptrl, '\0', sizeof(s_frlist));
|
||||
|
||||
if( path && *path ) (*ptrl)->path = xstrcpy(path);
|
||||
if( *path ) (*ptrl)->path = xstrcpy(path);
|
||||
if( !magic && *(path + strlen(path) - 1) != DIRSEPCHR )
|
||||
{
|
||||
/* add trailing DIRSEP ('/' or ..) to paths */
|
||||
@@ -200,9 +200,18 @@ static void req_proc_ext(s_freq *freq, char *reqname)
|
||||
char srfname[L_tmpnam+5];
|
||||
char rspname[L_tmpnam+5];
|
||||
char *comline = NULL;
|
||||
char *chunk;
|
||||
|
||||
if( tmpnam(srfname) )
|
||||
chunk = xmalloc(L_tmpnam+1);
|
||||
if ( chunk )
|
||||
{
|
||||
getrandname(chunk, L_tmpnam);
|
||||
chunk[L_tmpnam]='\0';
|
||||
strnxcpy(srfname, chunk, L_tmpnam);
|
||||
free(chunk);
|
||||
|
||||
//if( tmpnam(srfname) )
|
||||
//{
|
||||
strncpy(rspname, srfname, L_tmpnam+4);
|
||||
rspname[L_tmpnam+4] = '\0';
|
||||
strcat(srfname, ".srf");
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
#define DEFAULT_PORT 60179 /* Birthday .. mother fucker :) */
|
||||
|
||||
struct addrinfo *ai = NULL;
|
||||
struct addrinfo *paddrinfo = NULL;
|
||||
|
||||
static RETSIGTYPE tcpip_interrupt(int sig)
|
||||
{
|
||||
@@ -171,7 +171,7 @@ int tcpip_connect(const char *hostname, e_tcpmode tcpmode)
|
||||
//aihints.ai_socktype = SOCK_STREAM;
|
||||
aihints.ai_protocol = IPPROTO_TCP;
|
||||
|
||||
nameres = getaddrinfo ( host, port, &aihints, &ai );
|
||||
nameres = getaddrinfo ( host, port, &aihints, &paddrinfo );
|
||||
if ( nameres != 0 )
|
||||
{
|
||||
rc = 1;
|
||||
@@ -208,10 +208,10 @@ int tcpip_connect(const char *hostname, e_tcpmode tcpmode)
|
||||
|
||||
if( host ) { free(host); host = NULL; }
|
||||
DEB((D_INFO, "tcpip_connect: resolver got result!"));
|
||||
aisave = ai;
|
||||
aisave = paddrinfo;
|
||||
|
||||
if (rc == 0 )
|
||||
rc = tcpip_connect2(ai);
|
||||
rc = tcpip_connect2(paddrinfo);
|
||||
|
||||
freeaddrinfo( aisave );
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ static pid_t lock_read_pid(const char *lckname)
|
||||
if( len == sizeof(pid) || sscanf(buf, "%d", &pid) != 1 || pid == 0 )
|
||||
{
|
||||
/* We found binary lock file? */
|
||||
pid = *((int *)buf);
|
||||
pid = *((u_int *)buf);
|
||||
#ifndef LOCK_BINARY
|
||||
log("warning: found binary lock file %s", lckname);
|
||||
#endif
|
||||
@@ -197,12 +197,15 @@ static int lock_create(const char *lckname, const char *tmpname)
|
||||
int rc, fd;
|
||||
int tries;
|
||||
|
||||
|
||||
#ifdef LOCK_BINARY
|
||||
pid_t pid;
|
||||
#else
|
||||
char buf[32];
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
ASSERT(lckname != NULL && tmpname != NULL);
|
||||
|
||||
if( (fd = open(tmpname, O_CREAT | O_RDWR, 0644)) < 0 )
|
||||
@@ -299,7 +302,6 @@ int port_checklock(const char *lockdir, const s_modemport *modemport)
|
||||
|
||||
rc = lock_check(lckname);
|
||||
|
||||
if( lckname )
|
||||
free(lckname);
|
||||
|
||||
return rc;
|
||||
@@ -312,20 +314,24 @@ int port_lock(const char *lockdir, const s_modemport *modemport)
|
||||
{
|
||||
int rc;
|
||||
char *lckname;
|
||||
char *tmpname, *p_tmpname;
|
||||
char *tmpname, *p_tmpname, *chunk;
|
||||
|
||||
if( *lockdir )
|
||||
tmpname = xstrcpy(lockdir);
|
||||
else
|
||||
tmpname = xstrcpy(BFORCE_LOCK_DIR);
|
||||
|
||||
tmpname = xstrcat(tmpname, "bfXXXXXX");
|
||||
//tmpname = xstrcat(tmpname, "bfXXXXXX");
|
||||
|
||||
if( (p_tmpname = mktemp(tmpname)) == NULL )
|
||||
{
|
||||
logerr("can't generate unique file name from \"%s\"", tmpname);
|
||||
free(tmpname); return 1;
|
||||
}
|
||||
chunk = xmalloc(7);
|
||||
getrandname(chunk,6);
|
||||
p_tmpname = string_concat(tmpname, "bf", chunk, '\0');
|
||||
|
||||
//if( (p_tmpname = mktemp(tmpname)) == NULL )
|
||||
//{
|
||||
// logerr("can't generate unique file name from \"%s\"", tmpname);
|
||||
// free(tmpname); return 1;
|
||||
//}
|
||||
|
||||
if( (lckname = lock_getname(lockdir, modemport)) == NULL )
|
||||
{
|
||||
@@ -340,7 +346,6 @@ int port_lock(const char *lockdir, const s_modemport *modemport)
|
||||
|
||||
if( tmpname )
|
||||
free(tmpname);
|
||||
if( lckname )
|
||||
free(lckname);
|
||||
|
||||
return rc;
|
||||
|
||||
+14
-13
@@ -58,6 +58,7 @@ struct debuglevel {
|
||||
{ "Daemon", D_DAEMON },
|
||||
{ "Free", D_FREE },
|
||||
{ "24554", D_24554 },
|
||||
{ "Index", D_INDEX },
|
||||
// { "Daemon", D_DAEMON },
|
||||
{ "Full", D_FULL },
|
||||
{ NULL, 0 }
|
||||
@@ -144,7 +145,7 @@ int log_close(void)
|
||||
|
||||
ASSERT(log_fp);
|
||||
|
||||
if( log_fp )
|
||||
if( log_fp != NULL )
|
||||
{
|
||||
rc = fclose(log_fp);
|
||||
DEB((D_INFO,"Closing log file."));
|
||||
@@ -172,7 +173,7 @@ int log_reopen(const char *logname, const char *ext, const char *tty)
|
||||
}
|
||||
|
||||
|
||||
int log(const char *s, ...)
|
||||
void log(const char *s, ...)
|
||||
|
||||
{
|
||||
char timestr[40];
|
||||
@@ -212,10 +213,10 @@ int log(const char *s, ...)
|
||||
|
||||
va_end(args);
|
||||
|
||||
return 0;
|
||||
//return 0;
|
||||
}
|
||||
|
||||
int logerr(const char *s, ...)
|
||||
void logerr(const char *s, ...)
|
||||
{
|
||||
char timestr[40];
|
||||
va_list args;
|
||||
@@ -281,7 +282,7 @@ int logerr(const char *s, ...)
|
||||
|
||||
va_end(args);
|
||||
|
||||
return 0;
|
||||
//return 0;
|
||||
}
|
||||
|
||||
#endif /* USE_SYSLOG */
|
||||
@@ -308,7 +309,7 @@ int log_open(const char *logname, const char *ext, const char *tty)
|
||||
p = xstrcat(p, BF_VERSION);
|
||||
int fac = conf_number(cf_syslog_facility);
|
||||
if( tty && *tty )
|
||||
strncpy(p, tty, sizeof(p));
|
||||
strncpy(p, tty, strlen(p));
|
||||
openlog(p, LOG_PID, fac);
|
||||
slog_active = TRUE;
|
||||
return 0;
|
||||
@@ -330,7 +331,7 @@ int log_close(void)
|
||||
|
||||
}
|
||||
|
||||
int log(const char *s, ...)
|
||||
void log(const char *s, ...)
|
||||
|
||||
{
|
||||
char timestr[40];
|
||||
@@ -357,10 +358,10 @@ int log(const char *s, ...)
|
||||
|
||||
va_end(args);
|
||||
|
||||
return 0;
|
||||
//return 0;
|
||||
}
|
||||
|
||||
int logerr(const char *s, ...)
|
||||
void logerr(const char *s, ...)
|
||||
|
||||
{
|
||||
char timestr[40];
|
||||
@@ -379,7 +380,7 @@ int logerr(const char *s, ...)
|
||||
|
||||
va_end(args);
|
||||
|
||||
return 0;
|
||||
// return 0;
|
||||
}
|
||||
|
||||
#endif /* USE_SYSLOG */
|
||||
@@ -530,7 +531,7 @@ int debug_close(void)
|
||||
return rc;
|
||||
}
|
||||
|
||||
int debug(unsigned long what, const char *str, ...)
|
||||
void debug(unsigned long what, const char *str, ...)
|
||||
{
|
||||
char buf[40];
|
||||
va_list args;
|
||||
@@ -543,7 +544,7 @@ int debug(unsigned long what, const char *str, ...)
|
||||
debug_open();
|
||||
}
|
||||
|
||||
if( debug_fp )
|
||||
if( debug_fp != NULL )
|
||||
{
|
||||
fprintf(debug_fp, "%s ", time_string_log(buf, sizeof(buf), 0));
|
||||
va_start(args, str);
|
||||
@@ -554,7 +555,7 @@ int debug(unsigned long what, const char *str, ...)
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
//return 0;
|
||||
}
|
||||
|
||||
#endif /* DEBUG */
|
||||
|
||||
@@ -243,7 +243,8 @@ void netspool_acknowledge(s_netspool_state *state)
|
||||
|
||||
void netspool_end(s_netspool_state *state)
|
||||
{
|
||||
sendstr(state->socket, "END satisfied");
|
||||
int i;
|
||||
i = sendstr(state->socket, "END satisfied");
|
||||
close(state->socket);
|
||||
state->state = NS_NOTINIT;
|
||||
}
|
||||
|
||||
@@ -56,18 +56,25 @@ int nodelist_checkflag(const char *nodeflags, const char *flag)
|
||||
const char *searchbase = nodeflags;
|
||||
char *q;
|
||||
|
||||
while( p = strstr(searchbase, flag) )
|
||||
DEB((D_NODELIST, "nodelist: checking flag \"%s\" in flags \"%s\"", flag, nodeflags));
|
||||
if ( nodeflags ) {
|
||||
while( p = strcasestr(searchbase, flag) ) // p - found flag
|
||||
{
|
||||
if( p == searchbase || *(p-1) == ',' )
|
||||
if( (p == searchbase) || (p != searchbase && *(p-1) == ',') )
|
||||
{
|
||||
if( (q = strchr(p, ',')) == NULL || (q - p) == strlen(flag) )
|
||||
if( (q = strchr(p, ',')) == NULL || (q - p) == strlen(flag) ) {
|
||||
DEB((D_NODELIST, "nodelist: found flag %s", flag));
|
||||
return 0;
|
||||
if( (strchrnul(p, ':') - p) == strlen(flag) )
|
||||
}
|
||||
if( (strchrnul(p, ':') - p) == strlen(flag) ) {
|
||||
DEB((D_NODELIST, "nodelist: found flag %s", flag));
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
searchbase = p + 1; // avoid finding again the same
|
||||
}
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
@@ -191,6 +198,54 @@ int nodelist_parse_Txy(s_node *node, const char *xy)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* Pointlist string parser
|
||||
*
|
||||
* Arguments:
|
||||
* node put here all obtained information
|
||||
* str pointer to the nodelist string
|
||||
*
|
||||
* Return value:
|
||||
* zero value if string was parsed successfuly, and non-zero if wasn't
|
||||
*/
|
||||
int nodelist_parsepoint(s_node *node, char *str)
|
||||
{
|
||||
char *argv[NODELIST_POSFLAGS+1];
|
||||
char *p;
|
||||
int cnt;
|
||||
|
||||
DEB((D_NODELIST,"nodelist: parsepoint %s", str));
|
||||
|
||||
cnt = string_parse(argv, NODELIST_POSFLAGS+1, str, ',');
|
||||
if( cnt < NODELIST_POSFLAGS-1 )
|
||||
return -1;
|
||||
DEB((D_NODELIST,"nodelist: parsepoint OK: %d", cnt));
|
||||
strnxcpy(node->name, argv[NODELIST_POSNAME], sizeof(node->name));
|
||||
DEB((D_NODELIST,"nodelist: parsepoint sys: %s", node->name));
|
||||
strnxcpy(node->location, argv[NODELIST_POSLOCATION], sizeof(node->location));
|
||||
DEB((D_NODELIST,"nodelist: parsepoint loc: %s", node->location));
|
||||
strnxcpy(node->sysop, argv[NODELIST_POSSYSOP], sizeof(node->sysop));
|
||||
DEB((D_NODELIST,"nodelist: parsepoint zyz: %s", node->sysop));
|
||||
strnxcpy(node->phone, argv[NODELIST_POSPHONE], sizeof(node->phone));
|
||||
DEB((D_NODELIST,"nodelist: parsepoint pho: %s", node->phone));
|
||||
if (argv[NODELIST_POSFLAGS])
|
||||
strnxcpy(node->flags, argv[NODELIST_POSFLAGS], sizeof(node->flags));
|
||||
DEB((D_NODELIST,"nodelist: parsepoint fl: %s", node->flags));
|
||||
if (argv[NODELIST_POSSPEED])
|
||||
node->speed = atoi(argv[NODELIST_POSSPEED]);
|
||||
DEB((D_NODELIST, "nodelist: Parsed common values SYS: %s, ZYZ: %s, LOC: %s, PHONE: %s", node->name, node->sysop, node->location, node->phone));
|
||||
/*
|
||||
* Replace all '_' by space character
|
||||
*/
|
||||
string_replchar(node->name, '_', ' ');
|
||||
string_replchar(node->location, '_', ' ');
|
||||
string_replchar(node->sysop, '_', ' ');
|
||||
node->keyword = KEYWORD_POINT;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
* Nodelist string parser
|
||||
*
|
||||
@@ -205,7 +260,7 @@ int nodelist_parsestring(s_node *node, char *str)
|
||||
{
|
||||
char *argv[NODELIST_POSFLAGS+1];
|
||||
char *p;
|
||||
|
||||
DEB((D_NODELIST,"nodelist: parsestring %s", str));
|
||||
if( string_parse(argv, NODELIST_POSFLAGS+1, str, ',') != NODELIST_POSFLAGS+1 )
|
||||
return -1;
|
||||
|
||||
@@ -664,6 +719,7 @@ int nodelist_lookup_string(char *buffer, size_t buflen, s_faddr addr)
|
||||
*/
|
||||
for( ptrl = conf_first(cf_nodelist); ptrl; ptrl = conf_next(ptrl) )
|
||||
{
|
||||
DEB((D_NODELIST,"nl_lookup_string: using %s",ptrl->d.falist.what));
|
||||
if( ftn_addrcomp_mask(addr, ptrl->d.falist.addr) == 0 )
|
||||
{
|
||||
if( (nlp = nodelist_open(ndldir, ptrl->d.falist.what, NODELIST_READ)) )
|
||||
@@ -694,11 +750,25 @@ int nodelist_lookup(s_node *node, s_faddr addr)
|
||||
if( nodelist_lookup_string(buf, sizeof(buf), addr) == 0 )
|
||||
{
|
||||
node->listed = TRUE;
|
||||
if (addr.point == 0)
|
||||
{
|
||||
if( nodelist_parsestring(node, buf) == -1 )
|
||||
{
|
||||
DEB((D_NODELIST,"invalid nodelist string for address %s",
|
||||
ftn_addrstr(abuf, addr)));
|
||||
log("invalid nodelist string for address %s",
|
||||
ftn_addrstr(abuf, addr));
|
||||
}
|
||||
} else {
|
||||
if ( nodelist_parsepoint(node, buf) == -1 )
|
||||
{
|
||||
DEB((D_NODELIST,"invalid nodelist string for address %s",
|
||||
ftn_addrstr(abuf, addr)));
|
||||
log("invalid nodelist string for address %s",
|
||||
ftn_addrstr(abuf, addr));
|
||||
}
|
||||
node->addr = addr;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
+12
-4
@@ -152,10 +152,11 @@ int exec_redirect_descriptor(int desc, const char *fname, int flags)
|
||||
{
|
||||
log("exec error: cannot open \"%s\" <--> %d (got %d)",
|
||||
fname, desc, fd);
|
||||
close(fd);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
return 0; //cppcheck-suppress resourceLeak
|
||||
}
|
||||
|
||||
int exec_command(s_exec_options *eopt)
|
||||
@@ -329,6 +330,7 @@ int xsystem(const char *command, const char *p_input, const char *p_output)
|
||||
{
|
||||
pid_t pid;
|
||||
int status;
|
||||
int fd;
|
||||
|
||||
ASSERT(command != NULL);
|
||||
|
||||
@@ -342,27 +344,33 @@ int xsystem(const char *command, const char *p_input, const char *p_output)
|
||||
if( p_input )
|
||||
{
|
||||
close(0);
|
||||
if( open(p_input, O_RDONLY) != 0 )
|
||||
fd = open(p_input, O_RDONLY);
|
||||
if( fd != 0 )
|
||||
{
|
||||
logerr("can't open stdin \"%s\"", p_input);
|
||||
close(fd);
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
if( p_output )
|
||||
{
|
||||
close(1);
|
||||
if( open(p_output, O_WRONLY|O_APPEND|O_CREAT, 0600) != 1 )
|
||||
fd = open(p_output, O_WRONLY|O_APPEND|O_CREAT, 0600);
|
||||
if( fd != 1 )
|
||||
{
|
||||
logerr("can't open stdout \"%s\"", p_output);
|
||||
close(fd);
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
if( p_output )
|
||||
{
|
||||
close(2);
|
||||
if( open(p_output, O_WRONLY|O_APPEND|O_CREAT, 0600) != 2 )
|
||||
fd = open(p_output, O_WRONLY|O_APPEND|O_CREAT, 0600);
|
||||
if( fd != 2 )
|
||||
{
|
||||
logerr("can't open stderr \"%s\"", p_output);
|
||||
close(fd);
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ char *out_getname_4d(s_faddr addr)
|
||||
else
|
||||
sprintf(buf, "%04x%04x.pnt/%08x", addr.net, addr.node, addr.point);
|
||||
|
||||
dest = string_concat(p_outbound, buf, NULL);
|
||||
dest = string_concat(p_outbound, buf, '\0');
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -55,7 +55,7 @@ char *out_getname_4d(s_faddr addr)
|
||||
else
|
||||
sprintf(buf, ".%03x/%04x%04x.pnt/%08x", addr.zone, addr.net, addr.node, addr.point);
|
||||
|
||||
dest = string_concat(out_root, out_main, buf, NULL);
|
||||
dest = string_concat(out_root, out_main, buf, '\0');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ char *out_getname_domain(s_faddr addr)
|
||||
else
|
||||
sprintf(buf, "%04x%04x.pnt/%08x", addr.net, addr.node, addr.point);
|
||||
|
||||
dest = string_concat(cfptr->d.domain.path, buf, NULL);
|
||||
dest = string_concat(cfptr->d.domain.path, buf, '\0');
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -102,7 +102,7 @@ char *out_getname_amiga(s_faddr addr)
|
||||
if( p_amigaoutbound && *p_amigaoutbound )
|
||||
{
|
||||
sprintf(buf, "%d.%d.%d.%d", addr.zone, addr.net, addr.node, addr.point);
|
||||
dest = string_concat(p_amigaoutbound, buf, NULL);
|
||||
dest = string_concat(p_amigaoutbound, buf, '\0');
|
||||
}
|
||||
|
||||
return dest;
|
||||
|
||||
@@ -155,7 +155,7 @@ static int out_scan_bso_dir(s_outbound_callback_data *callback,
|
||||
|
||||
if( alst || !fa_list )
|
||||
{
|
||||
p = string_concat(path, dirent->d_name, "/", NULL);
|
||||
p = string_concat(path, dirent->d_name, "/", '\0');
|
||||
out_scan_bso_dir(callback, fa_list, addr, p, 1);
|
||||
if( p ) { free(p); p = NULL; }
|
||||
}
|
||||
@@ -178,7 +178,7 @@ static int out_scan_bso_dir(s_outbound_callback_data *callback,
|
||||
|
||||
if( alst || !fa_list )
|
||||
{
|
||||
callback->path = string_concat(path, dirent->d_name, NULL);
|
||||
callback->path = string_concat(path, dirent->d_name, '\0');
|
||||
callback->addr = *addr;
|
||||
callback->type = OUTB_TYPE_BSO;
|
||||
callback->flavor = -1;
|
||||
@@ -250,7 +250,7 @@ static int out_scan_bso(s_outbound_callback_data *callback,
|
||||
|
||||
if( alst || mailfor == NULL )
|
||||
{
|
||||
newpath = string_concat(out_root, dirent->d_name, "/", NULL);
|
||||
newpath = string_concat(out_root, dirent->d_name, "/", '\0');
|
||||
out_scan_bso_dir(callback, mailfor, &addr, newpath, 0);
|
||||
free(newpath);
|
||||
}
|
||||
@@ -296,7 +296,7 @@ static int out_scan_fbox_dir(s_outbound_callback_data *callback,
|
||||
|
||||
while( (dirent = readdir(dir)) )
|
||||
{
|
||||
callback->path = string_concat(path, dirent->d_name, NULL);
|
||||
callback->path = string_concat(path, dirent->d_name, '\0');
|
||||
if( is_regfile(callback->path) )
|
||||
{
|
||||
callback->addr = addr;
|
||||
@@ -340,7 +340,7 @@ static int out_scan_lbox(s_outbound_callback_data *callback,
|
||||
alst = alst->next );
|
||||
if( alst )
|
||||
{
|
||||
newpath = string_concat(path, dirent->d_name, "/", NULL);
|
||||
newpath = string_concat(path, dirent->d_name, "/", '\0');
|
||||
(void)out_scan_fbox_dir(callback, newpath, addr, FLAVOR_HOLD);
|
||||
free(newpath);
|
||||
}
|
||||
@@ -348,7 +348,7 @@ static int out_scan_lbox(s_outbound_callback_data *callback,
|
||||
else
|
||||
{
|
||||
/* Scan all fileboxes */
|
||||
newpath = string_concat(path, dirent->d_name, "/", NULL);
|
||||
newpath = string_concat(path, dirent->d_name, "/", '\0');
|
||||
(void)out_scan_fbox_dir(callback, newpath, addr, FLAVOR_HOLD);
|
||||
free(newpath);
|
||||
}
|
||||
@@ -424,7 +424,7 @@ static int out_scan_aso(s_outbound_callback_data *callback,
|
||||
|
||||
if( alst || !mailfor )
|
||||
{
|
||||
callback->path = string_concat(path, dirent->d_name, NULL);
|
||||
callback->path = string_concat(path, dirent->d_name, '\0');
|
||||
callback->addr = addr;
|
||||
callback->type = OUTB_TYPE_ASO;
|
||||
callback->flavor = -1;
|
||||
|
||||
+51
-32
@@ -469,8 +469,10 @@ case 2:
|
||||
|
||||
case 3: // send password on outgoing or pw confirmation on incoming
|
||||
// special empty password is sent if there is no password for the remote addr
|
||||
if (bstate->mode==bmode_incoming_handshake) {
|
||||
if (bstate->password_received) {
|
||||
if (bstate->mode==bmode_incoming_handshake)
|
||||
{
|
||||
if (bstate->password_received)
|
||||
{
|
||||
DEB((D_24554, "send OK, password verified"));
|
||||
buf[0] = BPMSG_OK;
|
||||
*block_type = BINKP_BLK_CMD;
|
||||
@@ -481,8 +483,10 @@ case 3: // send password on outgoing or pw confirmation on incoming
|
||||
DEB((D_24554, "waiting for password from remote"));
|
||||
return 0; // nothing to send
|
||||
}
|
||||
else if (bstate->mode==bmode_outgoing_handshake) {
|
||||
if (!bstate->address_established) {
|
||||
else
|
||||
{
|
||||
if (!bstate->address_established)
|
||||
{
|
||||
DEB((D_24554, "address not received still"));
|
||||
return 0;
|
||||
}
|
||||
@@ -491,52 +495,60 @@ case 3: // send password on outgoing or pw confirmation on incoming
|
||||
buf[0] = BPMSG_PWD;
|
||||
*block_type = BINKP_BLK_CMD;
|
||||
|
||||
if( bstate->local_data->passwd[0] == '\0' ) {
|
||||
if( bstate->local_data->passwd[0] == '\0' )
|
||||
{
|
||||
*block_length = 1 + sprintf(buf+1, "-");
|
||||
}
|
||||
else if( bstate->remote_data->options & BINKP_OPT_MD5 ) {
|
||||
else
|
||||
if( bstate->remote_data->options & BINKP_OPT_MD5 )
|
||||
{
|
||||
char digest_bin[16];
|
||||
char digest_hex[33];
|
||||
|
||||
if(bstate->remote_data->challenge_length==0) {
|
||||
if(bstate->remote_data->challenge_length==0)
|
||||
{
|
||||
DEB((D_24554, "waiting for challenge"));
|
||||
return 0;
|
||||
}
|
||||
md5_cram_get(bstate->local_data->passwd, bstate->remote_data->challenge,
|
||||
bstate->remote_data->challenge_length, digest_bin);
|
||||
|
||||
md5_cram_get(bstate->local_data->passwd,
|
||||
bstate->remote_data->challenge,
|
||||
bstate->remote_data->challenge_length,
|
||||
digest_bin);
|
||||
|
||||
/* Encode digest to the hex string */
|
||||
string_bin_to_hex(digest_hex, digest_bin, 16);
|
||||
|
||||
*block_length = 1 + sprintf(buf+1, "CRAM-MD5-%s", digest_hex);
|
||||
*block_length = 1 + sprintf(buf+1,
|
||||
"CRAM-MD5-%s", digest_hex);
|
||||
}
|
||||
else {
|
||||
else
|
||||
{
|
||||
*block_length = 1 + sprintf(buf+1, "%s", bstate->local_data->passwd);
|
||||
}
|
||||
bstate->phase += 1;
|
||||
return 1;
|
||||
}
|
||||
else {
|
||||
log("impossible mode");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
case 4:
|
||||
char *p;
|
||||
;
|
||||
char pbuf[32];
|
||||
int pwset = 0;
|
||||
|
||||
if (bstate->mode==bmode_incoming_handshake) {
|
||||
char * p;
|
||||
DEB((D_24554, "incoming handshake is complete"));
|
||||
bstate->complete = true;
|
||||
|
||||
for (i=0;i<state.n_remoteaddr;i++)
|
||||
if( !session_get_password(state.remoteaddrs[i].addr, pbuf, sizeof(pbuf)) ){
|
||||
pwset = 1;
|
||||
init_keys(bstate->remote_data->keys_in, pbuf?pbuf:"-");
|
||||
init_keys(bstate->remote_data->keys_in, pbuf[0]?pbuf:"-");
|
||||
init_keys(bstate->remote_data->keys_out, "-");
|
||||
for (p=pbuf?pbuf:"-"; *p; p++)
|
||||
for (p=pbuf[0]?pbuf:"-"; *p; p++)
|
||||
update_keys(bstate->remote_data->keys_out, (int)*p);
|
||||
}
|
||||
//TODO: FIX incoming options
|
||||
@@ -592,7 +604,7 @@ else if (bstate->mode == bmode_transfer) {
|
||||
case 1: //send M_FILE - M_GET forcibly sets this phase. M_GET must open needed file
|
||||
DEB((D_24554, "send M_FILE"));
|
||||
buf[0] = BPMSG_FILE;
|
||||
*block_length = 1+sprintf(buf+1, "%s %ld %ld 0", bstate->pi->send->net_name,
|
||||
*block_length = 1+sprintf(buf+1, "%s %zu %lu 0", bstate->pi->send->net_name,
|
||||
bstate->pi->send->bytes_total, bstate->pi->send->mod_time);
|
||||
DEB((D_24554, "M_FILE: %s", buf+1));
|
||||
*block_type = BINKP_BLK_CMD;
|
||||
@@ -698,12 +710,11 @@ case BPMSG_ADR: /* List of addresses */
|
||||
if (bstate->address_established) {
|
||||
PROTO_ERROR("remote tries to change address");
|
||||
}
|
||||
if( bstate->extracmd[0] != (char)-1 ) return 0; // suspend !!!
|
||||
if( bstate->extracmd[0] != (char)0xFF ) return 0; // suspend !!!
|
||||
binkp_process_ADR(buf+1);
|
||||
|
||||
if( !state.n_remoteaddr ) {
|
||||
log("error: remote did not supplied any addresses");
|
||||
if( bstate->extracmd[0] != (char)-1 ) return 0; // suspend
|
||||
bstate->extracmd[0] = BPMSG_BSY;
|
||||
strcpy(bstate->extracmd+1, "No addresses was presented");
|
||||
bstate->extraislast = true;
|
||||
@@ -717,14 +728,17 @@ case BPMSG_ADR: /* List of addresses */
|
||||
bstate->extraislast = false;
|
||||
sprintf(bstate->extracmd+1,"OPT MB CRYPT");
|
||||
s_override ovr;
|
||||
DEB((D_24554, "process adr overrides"));
|
||||
for(i = 0; i < state.n_remoteaddr; i++) {
|
||||
ovr.sFlags = "";
|
||||
override_get (&ovr, state.remoteaddrs[i].addr, 0);
|
||||
DEB((D_24554, "got adr overrides"));
|
||||
if (nodelist_checkflag (ovr.sFlags, "NR")==0) {
|
||||
strcat (bstate->extracmd+1, " NR");
|
||||
break;
|
||||
}
|
||||
}
|
||||
DEB((D_24554, "process adr overrides"));
|
||||
}
|
||||
// further use extracmd only for errors
|
||||
|
||||
@@ -779,7 +793,7 @@ case BPMSG_PWD: /* Session password */
|
||||
// lock addresses
|
||||
if( session_addrs_lock(state.remoteaddrs, state.n_remoteaddr) ) {
|
||||
log("error locking addresses of the remote");
|
||||
if( bstate->extracmd[0] != (char)-1 ) return 0; // suspend if extra is occupied
|
||||
if( bstate->extracmd[0] != (char)0xFF ) return 0; // suspend if extra is occupied
|
||||
bstate->extracmd[0] = BPMSG_BSY;
|
||||
strcpy(bstate->extracmd+1, "All addresses are busy");
|
||||
bstate->extraislast = true;
|
||||
@@ -819,7 +833,7 @@ case BPMSG_FILE: /* File information */
|
||||
DEB((D_24554, "no, skipping; TODO: accept it"));
|
||||
if( bstate->extracmd[0] != (char)-1 ) return 0;
|
||||
bstate->extracmd[0] = BPMSG_SKIP;
|
||||
sprintf(bstate->extracmd+1, "%s %ld %ld %ld", recvfi.fn, recvfi.sz, recvfi.tm, recvfi.offs);
|
||||
sprintf(bstate->extracmd+1, "%s %zu %lu %zu", recvfi.fn, recvfi.sz, recvfi.tm, recvfi.offs);
|
||||
bstate->extraislast = false;
|
||||
return 1;
|
||||
}
|
||||
@@ -866,7 +880,7 @@ case 2:
|
||||
default:
|
||||
PROTO_ERROR("p_rx_fopen_error");
|
||||
}
|
||||
PROTO_ERROR("never should get here");
|
||||
// PROTO_ERROR("never should get here");
|
||||
|
||||
case BPMSG_OK: /* Password was acknowleged (data ignored) */
|
||||
DEB((D_24554, "received M_OK len=%d", block_length));
|
||||
@@ -875,7 +889,7 @@ case BPMSG_OK: /* Password was acknowleged (data ignored) */
|
||||
}
|
||||
if (session_addrs_lock(state.remoteaddrs, state.n_remoteaddr)) {
|
||||
log("error: unable to lock");
|
||||
if (bstate->extracmd[0]!= (char)-1) return 0;
|
||||
if (bstate->extracmd[0]!= (char)0xFF) return 0;
|
||||
bstate->extracmd[0] = BPMSG_BSY;
|
||||
strcpy(bstate->extracmd+1, "All addresses are busy");
|
||||
bstate->extraislast = true;
|
||||
@@ -951,10 +965,10 @@ got_skip:
|
||||
|
||||
check_that_all_files_are_confirmed:
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < bstate->pi->n_sentfiles; i++) {
|
||||
int j;
|
||||
for (j = 0; j < bstate->pi->n_sentfiles; j++) {
|
||||
if (bstate->pi->sentfiles[i].status == FSTAT_WAITACK) {
|
||||
DEB((D_24554, "sent file %d waits for acknowlede", i));
|
||||
DEB((D_24554, "sent file %d waits for acknowlede", j));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@@ -985,7 +999,7 @@ case BPMSG_GET: /* Get a file from offset */
|
||||
}
|
||||
DEB((D_24554, "M_GET file %s size %d time %d offset %d", getfi.fn, getfi.sz, getfi.tm, getfi.offs));
|
||||
|
||||
if (bstate->extracmd[0] != (char)-1) return 0;
|
||||
if (bstate->extracmd[0] != (char)0xFF) return 0;
|
||||
|
||||
if (bstate->pi->send) if (p_compfinfo(bstate->pi->send, getfi.fn, getfi.sz, getfi.tm)==0) {
|
||||
DEB((D_24554, "M_GET for currently transmitted file"));
|
||||
@@ -1075,7 +1089,7 @@ case BINKP_BLK_DATA:
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (bstate->extracmd[0] != (char)-1) return 0;
|
||||
if (bstate->extracmd[0] != (char)0xFF) return 0;
|
||||
|
||||
long int n;
|
||||
n = p_rx_writefile(buf, block_length, bstate->pi);
|
||||
@@ -1153,7 +1167,7 @@ default:
|
||||
|
||||
void binkp_process_NUL(s_binkp_sysinfo *remote_data, char *buffer)
|
||||
{
|
||||
char *p, *q;
|
||||
|
||||
|
||||
if( strncmp(buffer, "SYS ", 4) == 0 )
|
||||
strnxcpy(remote_data->systname, buffer+4, sizeof(remote_data->systname));
|
||||
@@ -1181,9 +1195,11 @@ void binkp_process_NUL(s_binkp_sysinfo *remote_data, char *buffer)
|
||||
}
|
||||
else if( strncmp(buffer, "VER ", 4) == 0 )
|
||||
{
|
||||
char *p;
|
||||
/* <mailer> [<protocol>/<vermaj>.<vermin>] */
|
||||
if( (p = strchr(buffer+4, ' ')) )
|
||||
{
|
||||
char *q;
|
||||
strnxcpy(remote_data->progname, buffer+4,
|
||||
MIN(sizeof(remote_data->progname), p - (buffer+4) + 1));
|
||||
++p;
|
||||
@@ -1217,13 +1233,16 @@ void binkp_process_ADR(char *buffer)
|
||||
{
|
||||
s_faddr addr;
|
||||
char *p, *q;
|
||||
|
||||
DEB((D_24554, "process ADR: %s", buffer));
|
||||
for( p = string_token(buffer, &q, NULL, 0); p; p = string_token(NULL, &q, NULL, 0) )
|
||||
{
|
||||
DEB((D_24554, "binkp_process_ADR got token \"%s\" ",p ));
|
||||
if( ftn_addrparse(&addr, p, FALSE) )
|
||||
log("BinkP got unparsable address \"%s\"", string_printable(p));
|
||||
else
|
||||
else {
|
||||
session_addrs_add(&state.remoteaddrs, &state.n_remoteaddr, addr);
|
||||
DEB((D_24554, "process ADR complete"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -296,8 +296,8 @@ get_next_file:
|
||||
pi->send_left_num -= 1;
|
||||
pi->send_left_size -= ptrl->size;
|
||||
|
||||
if( pi->send_left_size < 0 )
|
||||
pi->send_left_size = 0;
|
||||
//if( pi->send_left_size < 0 )
|
||||
// pi->send_left_size = 0;
|
||||
if( pi->send_left_num < 0 )
|
||||
pi->send_left_num = 0;
|
||||
|
||||
@@ -1053,7 +1053,7 @@ int p_rx_fopen(s_protinfo *pi, char *fn, size_t sz, time_t tm, mode_t mode)
|
||||
/*
|
||||
* Check, there is enough space in our inbound
|
||||
*/
|
||||
if (openmode == "a") needed_bytes_total = minfree + pi->recv->bytes_total - pi->recv->bytes_skipped;
|
||||
if ( strcmp(openmode, "a") == 0 ) needed_bytes_total = minfree + pi->recv->bytes_total - pi->recv->bytes_skipped;
|
||||
else needed_bytes_total = minfree + pi->recv->bytes_total;
|
||||
|
||||
if( minfree > 0 && getfreespace(state.inbound) < needed_bytes_total )
|
||||
|
||||
@@ -449,8 +449,8 @@ static int sm_rx_waitseq(s_rx_emsidat *d)
|
||||
static int sm_rx_getdat(s_rx_emsidat *d)
|
||||
{
|
||||
int rc = 0;
|
||||
int pos = 0;
|
||||
int emsi_len = 0;
|
||||
u_int pos = 0;
|
||||
u_int emsi_len = 0;
|
||||
short unsigned ourcrc;
|
||||
short unsigned remcrc;
|
||||
char *emsi_dat = NULL;
|
||||
@@ -599,7 +599,7 @@ void emsi_set_sysinfo(s_emsi *emsi, s_emsi *remote_emsi, int hrc,
|
||||
s_cval_entry *hide_ptr;
|
||||
s_faddr *primary = NULL;
|
||||
char xdt[EMSI_MAXXDATETIME+1];
|
||||
time_t xtm;
|
||||
time_t xtm = 0;
|
||||
|
||||
const long options = conf_options(cf_options);
|
||||
const long speed = conf_number(cf_max_speed);
|
||||
|
||||
@@ -65,7 +65,7 @@ static char *add_str(char *source, const char *add)
|
||||
{
|
||||
len += 2;
|
||||
dest = (char *)xrealloc(dest, len);
|
||||
sprintf(&dest[pos], "\\%02hd", *(unsigned char*)add);
|
||||
sprintf(&dest[pos], "\\%02hhu", *(unsigned char*)add);
|
||||
add += 1;
|
||||
pos += 3;
|
||||
}
|
||||
@@ -200,12 +200,12 @@ char *emsi_createdat(s_emsi *emsi)
|
||||
if( emsi->compcodes.NCP ) tmp = add_str(tmp, "NCP,");
|
||||
} else {
|
||||
ord = xmalloc(4);
|
||||
if (ord)
|
||||
{
|
||||
DEB((D_HSHAKE,"Protocol order found: %s", p_order));
|
||||
ord = strncpy(ord, p_order,3);
|
||||
ord[3] = '\0';
|
||||
DEB((D_HSHAKE,"Protocol order chunk: %s", ord));
|
||||
if ( ord == NULL )
|
||||
DEB((D_HSHAKE,"EMSI create order error"));
|
||||
if ( !strcmp(ord,"HYD") )
|
||||
if ( emsi->compcodes.HYD) tmp = add_str(tmp, "HYD,");
|
||||
if ( !strcmp(ord,"JAN") )
|
||||
@@ -230,8 +230,6 @@ char *emsi_createdat(s_emsi *emsi)
|
||||
ord = strncpy(ord, p_order,3);
|
||||
ord[3] = '\0';
|
||||
DEB((D_HSHAKE,"Protocol order chunk: %s", ord));
|
||||
if ( ord == NULL )
|
||||
DEB((D_HSHAKE,"EMSI create order error"));
|
||||
if ( !strcmp(ord,"HYD") )
|
||||
if ( emsi->compcodes.HYD) tmp = add_str(tmp, "HYD,");
|
||||
if ( !strcmp(ord,"JAN") )
|
||||
@@ -255,6 +253,7 @@ char *emsi_createdat(s_emsi *emsi)
|
||||
}
|
||||
free(ord);
|
||||
}
|
||||
}
|
||||
|
||||
if( emsi->compcodes.FRQ ) tmp = add_str(tmp, "FRQ,");
|
||||
if( emsi->compcodes.NRQ ) tmp = add_str(tmp, "NRQ,");
|
||||
@@ -452,7 +451,7 @@ char *emsi_createdat(s_emsi *emsi)
|
||||
static char *get_field(char **str, char from, char to)
|
||||
{
|
||||
char *dst, *src, *dest = NULL;
|
||||
int ch;
|
||||
u_int ch;
|
||||
|
||||
src = *str;
|
||||
|
||||
@@ -555,7 +554,7 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
|
||||
/* password */
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->passwd, p, sizeof(emsi->passwd));
|
||||
if( *p ) strnxcpy(emsi->passwd, p, sizeof(emsi->passwd));
|
||||
|
||||
/* link codes */
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
@@ -670,21 +669,22 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
else if( !strcmp(p, "HFR") ) emsi->compcodes.HFR = 1;
|
||||
}
|
||||
/* Delete last comma from order list */
|
||||
if (strlen(emsi->proto_order) > 0)
|
||||
emsi->proto_order[strlen(emsi->proto_order)-1] = '\0';
|
||||
DEB((D_HSHAKE,"Ordered compcodes: %s",emsi->proto_order));
|
||||
|
||||
/* mailer information */
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->m_pid, p, sizeof(emsi->m_pid));
|
||||
if( *p ) strnxcpy(emsi->m_pid, p, sizeof(emsi->m_pid));
|
||||
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->m_name, p, sizeof(emsi->m_name));
|
||||
if( *p ) strnxcpy(emsi->m_name, p, sizeof(emsi->m_name));
|
||||
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->m_ver, p, sizeof(emsi->m_ver));
|
||||
if( *p ) strnxcpy(emsi->m_ver, p, sizeof(emsi->m_ver));
|
||||
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->m_reg, p, sizeof(emsi->m_reg));;
|
||||
if( *p ) strnxcpy(emsi->m_reg, p, sizeof(emsi->m_reg));;
|
||||
}
|
||||
else if( strcmp(tmp, "IDENT") == 0 )
|
||||
{
|
||||
@@ -692,17 +692,17 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
|
||||
if( (tmp=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->sname, p, sizeof(emsi->sname));
|
||||
if( *p ) strnxcpy(emsi->sname, p, sizeof(emsi->sname));
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->location, p, sizeof(emsi->location));
|
||||
if( *p ) strnxcpy(emsi->location, p, sizeof(emsi->location));
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->sysop, p, sizeof(emsi->sysop));
|
||||
if( *p ) strnxcpy(emsi->sysop, p, sizeof(emsi->sysop));
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->phone, p, sizeof(emsi->phone));;
|
||||
if( *p ) strnxcpy(emsi->phone, p, sizeof(emsi->phone));;
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) sscanf(p, "%d", &emsi->speed);
|
||||
if( *p ) sscanf(p, "%d", &emsi->speed);
|
||||
if( (p=get_field(&tmp, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p ) strnxcpy(emsi->flags, p, sizeof(emsi->flags));
|
||||
if( *p ) strnxcpy(emsi->flags, p, sizeof(emsi->flags));
|
||||
}
|
||||
else if( strcmp(tmp, "TRX#") == 0 )
|
||||
{
|
||||
@@ -720,9 +720,9 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
else if( strcmp(tmp, "TRAF") == 0 )
|
||||
{
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( p && *p )
|
||||
if( *p )
|
||||
{
|
||||
if( sscanf(p, "%08X %08X", &emsi->netmail_size, &emsi->arcmail_size) == 2 )
|
||||
if( sscanf(p, "%08zX %08zX", &emsi->netmail_size, &emsi->arcmail_size) == 2 )
|
||||
{
|
||||
emsi->have_traf = 1;
|
||||
}
|
||||
@@ -736,9 +736,9 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
{
|
||||
if( (p=get_field(&emsi_dat, '{', '}')) == NULL ) return(1);
|
||||
if( (p=get_field(&p, '[', ']')) == NULL ) return(1);
|
||||
if( p && *p )
|
||||
if( *p )
|
||||
{
|
||||
if( sscanf(p, "%08X", &emsi->files_size) == 1 )
|
||||
if( sscanf(p, "%08zX", &emsi->files_size) == 1 )
|
||||
{
|
||||
emsi->have_moh = 1;
|
||||
}
|
||||
@@ -781,6 +781,8 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
/* Parse EMSI TZUTC in fmt (+|-)HHMM */
|
||||
if( *p ) {
|
||||
tzc = malloc(2);
|
||||
if (tzc)
|
||||
{
|
||||
DEB((D_HSHAKE, "Got TZUTC=%s for parsing", p));
|
||||
tzn = sscanf( p, "%1c%02u%02u", tzc, &tzh, &tzm);
|
||||
tzc[1] = '\0';
|
||||
@@ -798,6 +800,7 @@ int emsi_parsedat(char *emsi_dat, s_emsi *emsi)
|
||||
free(tzc);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DEB((D_HSHAKE, "Step - no known EMSI-part - got %s", tmp));
|
||||
@@ -878,7 +881,7 @@ void emsi_logdat(s_emsi *emsi)
|
||||
if( emsi->compcodes.HFR )
|
||||
strcat(flags, "HFR,");
|
||||
|
||||
if( *flags )
|
||||
if( *flags && (strlen(flags) > 0) )
|
||||
{
|
||||
flags[strlen(flags)-1] = '\0';
|
||||
log(" Options : %s", flags);
|
||||
@@ -919,7 +922,7 @@ void emsi_logdat(s_emsi *emsi)
|
||||
if( emsi->have_emsi )
|
||||
{
|
||||
if( emsi->m_name[0] || emsi->m_pid[0]
|
||||
|| emsi->m_ver[0] || emsi->m_reg )
|
||||
|| emsi->m_ver[0] || emsi->m_reg[0] )
|
||||
{
|
||||
log(" Mailer : %s [%s] %s/%s",
|
||||
emsi->m_name[0] ? string_printable(emsi->m_name) : "?",
|
||||
|
||||
@@ -100,7 +100,8 @@ char *hydra_pkttype_names[] =
|
||||
"HPKT_EOFACK",
|
||||
"HPKT_END",
|
||||
"HPKT_IDLE",
|
||||
"HPKT_DEVDATA"
|
||||
"HPKT_DEVDATA",
|
||||
"HPKT_DEVDACK"
|
||||
};
|
||||
|
||||
char *hydra_char_names[] =
|
||||
@@ -1049,8 +1050,8 @@ static int hydra_parse_init(s_hydrainfo *hi, char *pkt, size_t pktlen)
|
||||
if( appinf && canopt && desopt && window && prefix )
|
||||
{
|
||||
char buf[256];
|
||||
long txwindow = 0L;
|
||||
long rxwindow = 0L;
|
||||
unsigned long txwindow = 0UL;
|
||||
unsigned long rxwindow = 0UL;
|
||||
|
||||
DEB((D_PROT, "hydra: revtime = \"%s\"", time_string_long(buf, sizeof(buf), revtime)));
|
||||
DEB((D_PROT, "hydra: appinf = \"%s\"", appinf));
|
||||
@@ -1548,7 +1549,9 @@ int hydra_batch(s_hydrainfo *hi, s_protinfo *pi)
|
||||
/*
|
||||
* Check current CPS, session time limits, etc.
|
||||
*/
|
||||
if( (rc = p_info(pi, 1)) ) gotoexit(rc);
|
||||
rc = p_info(pi, 1);
|
||||
|
||||
if( rc != PRC_NOERROR ) gotoexit(rc);
|
||||
|
||||
/*
|
||||
* Send/receive as much data as possible, but without delays
|
||||
@@ -1637,7 +1640,7 @@ int hydra_batch(s_hydrainfo *hi, s_protinfo *pi)
|
||||
char *p;
|
||||
|
||||
/* Get file modification time and size */
|
||||
sscanf(hi->ibuf, "%08lx%08x%*08x%*08x%*08x",
|
||||
sscanf(hi->ibuf, "%08lx%08zx%*08zx%*08zx%*08zx",
|
||||
(unsigned long *)&modtime, &filesize);
|
||||
|
||||
/* Convert local time -> UTC */
|
||||
|
||||
@@ -85,13 +85,12 @@ static void yoohoo_put_hello(char *buffer, s_yoohoo_sysinfo *myhello)
|
||||
* Add domain after the end of 'Node name'
|
||||
* TODO: check it for buffer overflows %-I
|
||||
*/
|
||||
if( state.n_localaddr > 0 && state.localaddrs[0].addr.domain
|
||||
&& *state.localaddrs[0].addr.domain )
|
||||
if( state.n_localaddr > 0 && *state.localaddrs[0].addr.domain )
|
||||
{
|
||||
char *q;
|
||||
if( strlen(myhello->system) + strlen(state.localaddrs[0].addr.domain) > 57 )
|
||||
{
|
||||
if( strlen(state.localaddrs[0].addr.domain) < 60 )
|
||||
if( strlen(state.localaddrs[0].addr.domain) < 60 ) //PVS-Suppress V547
|
||||
q = p + (60 - strlen(state.localaddrs[0].addr.domain));
|
||||
else
|
||||
q = p;
|
||||
|
||||
@@ -67,7 +67,7 @@ static const char *FrameTypes[] =
|
||||
"ZCOMMAND",
|
||||
"ZSTDERR",
|
||||
"Unused"
|
||||
#define FRTYPES 22 /* Total number of frame types in this array */
|
||||
#define FRTYPES 20 /* Total number of frame types in this array */
|
||||
/* not including psuedo negative entries */
|
||||
};
|
||||
#endif
|
||||
|
||||
@@ -548,7 +548,7 @@ static int zmodem_proc_ZFILE(s_protinfo *pi, char *blkptr, size_t blklen)
|
||||
fileiptr = blkptr + strlen(blkptr) + 1;
|
||||
|
||||
if( fileiptr >= (blkptr + blklen) ||
|
||||
sscanf(fileiptr, "%d%lo", &filesize, (unsigned long *)&filetime) < 1 )
|
||||
sscanf(fileiptr, "%zu%lo", &filesize, (unsigned long *)&filetime) < 1 )
|
||||
{
|
||||
log("zmodem: got invalid ZFILE packet");
|
||||
return 1;
|
||||
|
||||
@@ -47,14 +47,18 @@ static void zmodem_add_empty_packet(s_protinfo *pi)
|
||||
s_filelist **ptrl;
|
||||
s_packet pkt;
|
||||
char tmpname[] = "/tmp/bfXXXXXX";
|
||||
char *chunk;
|
||||
char *p_tmpname;
|
||||
|
||||
if( (p_tmpname = mktemp(tmpname)) == NULL )
|
||||
{
|
||||
logerr("cannot generate temp. file name for packet from \"%s\"", tmpname);
|
||||
chunk = xmalloc(7);
|
||||
if (!chunk) {
|
||||
logerr("cannot generate temp. file name for packet");
|
||||
return;
|
||||
}
|
||||
getrandname(chunk, 6);
|
||||
p_tmpname = string_concat("/tmp/bf", chunk, '\0');
|
||||
|
||||
free(chunk);
|
||||
memset(&pkt, '\0', sizeof(s_packet));
|
||||
|
||||
pkt.dest = state.node.addr;
|
||||
|
||||
@@ -210,7 +210,7 @@ int call_system_quiet(const char *connstr, bool inet)
|
||||
if( (exec_cmd = conf_string(cf_run_before_session)) != NULL )
|
||||
{
|
||||
exec_result = system(exec_cmd);
|
||||
if( exec_result = 0 )
|
||||
if( exec_result == 0 )
|
||||
log("external application %s executed with zero return code (%i)", exec_cmd, exec_result);
|
||||
else
|
||||
logerr("external application %s executed with non-zero return code %i", exec_cmd, exec_result);
|
||||
@@ -378,7 +378,7 @@ int call_system_modem(void)
|
||||
|
||||
log("calling with modem %s (%s, %s)",
|
||||
ftn_addrstr(abuf, state.node.addr),
|
||||
(state.node.name && *state.node.name) ? state.node.name : "<none>",
|
||||
( *state.node.name) ? state.node.name : "<none>",
|
||||
string_printable(dialstring));
|
||||
|
||||
/*
|
||||
@@ -519,15 +519,15 @@ case CALL_TCPIP_TELNET:
|
||||
state.session = SESSION_UNKNOWN;
|
||||
target = xstrcpy("ITN");
|
||||
break;
|
||||
defalt:
|
||||
default:
|
||||
log("invalid protocol for TCP/IP module");
|
||||
return BFERR_FATALERROR;
|
||||
}
|
||||
|
||||
log("calling with internet %s (%s, %s)",
|
||||
ftn_addrstr(abuf, state.node.addr),
|
||||
(state.node.name && *state.node.name ) ? state.node.name : "<none>",
|
||||
(state.node.host && *state.node.host) ? state.node.host : "<none>");
|
||||
(*state.node.name ) ? state.node.name : "<none>",
|
||||
( *state.node.host) ? state.node.host : "<none>");
|
||||
|
||||
memset(abuf, '\0', BF_MAXADDRSTR+1);
|
||||
pbuf = xmalloc(1024);
|
||||
@@ -536,7 +536,7 @@ defalt:
|
||||
if ( ! resflg )
|
||||
{
|
||||
|
||||
char *p = strcasestr(pbuf, target);
|
||||
const char *p = string_casestr(pbuf, target);
|
||||
|
||||
if ( p )
|
||||
{
|
||||
@@ -568,7 +568,7 @@ defalt:
|
||||
|
||||
|
||||
if( (rc = tcpip_connect(pbuf, state.tcpmode)) == 0
|
||||
&& (rc = tcpip_init() == 0) )
|
||||
&& ( (rc = tcpip_init()) == 0) )
|
||||
{
|
||||
TTYSTATUS(1);
|
||||
rc = session();
|
||||
@@ -862,7 +862,7 @@ int call_system(s_faddr addr, const s_bforce_opts *opts)
|
||||
}
|
||||
if( NULL != state.override.run && strlen(state.override.run) > 0 )
|
||||
{
|
||||
if ( (runrc = system(state.override.run) != 0 ))
|
||||
if ( (runrc = system(state.override.run)) != 0 )
|
||||
{
|
||||
logerr("run script \"%s\" executed with non-zero return value", state.override.run);
|
||||
}
|
||||
@@ -872,7 +872,7 @@ int call_system(s_faddr addr, const s_bforce_opts *opts)
|
||||
// try allowed methods and break if rc == 0
|
||||
rc = -1;
|
||||
|
||||
if( rc && (call_mayuse & CALL_STDIO) )
|
||||
if( call_mayuse & CALL_STDIO )
|
||||
{
|
||||
DEB((D_EVENT,"sess_call: calling stdio"));
|
||||
rc = call_system_quiet(opts->connect, opts->inetd);
|
||||
|
||||
@@ -135,15 +135,17 @@ int override_get(s_override *dest, s_faddr addr, int line)
|
||||
{
|
||||
s_override *p;
|
||||
int curline = 0;
|
||||
|
||||
p = conf_override(cf_override, addr);
|
||||
|
||||
curline = 0;
|
||||
if (line > 0)
|
||||
{
|
||||
while( p && curline < line )
|
||||
{
|
||||
p = p->hidden;
|
||||
++curline;
|
||||
}
|
||||
}
|
||||
|
||||
if( p && curline == line )
|
||||
{
|
||||
|
||||
@@ -264,7 +264,7 @@ int session_check_addr(s_faddr addr)
|
||||
int session_get_password(s_faddr addr, char *buffer, size_t buflen)
|
||||
{
|
||||
s_cval_entry *pwd_ptr;
|
||||
|
||||
buffer[0]='\0';
|
||||
for( pwd_ptr = conf_first(cf_password); pwd_ptr;
|
||||
pwd_ptr = conf_next(pwd_ptr) )
|
||||
{
|
||||
|
||||
@@ -58,11 +58,11 @@ static char *session_stat_get_stsfile(s_faddr *addr, int linenum)
|
||||
addr->zone, addr->net,
|
||||
addr->node, addr->point);
|
||||
else
|
||||
sprintf(buf, "%u.%u.%u.%u-%u.sts",
|
||||
sprintf(buf, "%u.%u.%u.%u-%d.sts",
|
||||
addr->zone, addr->net,
|
||||
addr->node, addr->point, linenum);
|
||||
|
||||
yield = string_concat(p_stsdir, buf, NULL);
|
||||
yield = string_concat(p_stsdir, buf, '\0');
|
||||
}
|
||||
|
||||
return yield;
|
||||
|
||||
+29
-3
@@ -109,6 +109,22 @@ int file_lock_wait(FILE *fp, bool exclusive)
|
||||
return -1;
|
||||
}
|
||||
|
||||
void getrandname(char * buf, u_int size)
|
||||
{
|
||||
srand((unsigned int)time(NULL));
|
||||
char c;
|
||||
int i;
|
||||
for (i = 0; i<size; i++)
|
||||
{
|
||||
c = rand();
|
||||
// Only ASCII 0..9A..Z
|
||||
while ( (c > 90) || (c < 48) || ( ( c > 57) && ( c < 65 ) ) )
|
||||
c = rand();
|
||||
buf[i] = c;
|
||||
}
|
||||
buf[size]='\0';
|
||||
}
|
||||
|
||||
bool file_name_issafe(int ch)
|
||||
{
|
||||
if( ch == '!' ) return TRUE;
|
||||
@@ -151,12 +167,22 @@ char *file_getname(char *filename)
|
||||
|
||||
char *file_gettmp(void)
|
||||
{
|
||||
char *tmp = xstrcpy("/tmp/bforce-XXXXXX");
|
||||
char *res = mktemp(tmp);
|
||||
char *chunk = xmalloc(7);
|
||||
char *res = NULL;
|
||||
if (chunk)
|
||||
{
|
||||
getrandname(chunk,6);
|
||||
chunk[6] = '\0';
|
||||
|
||||
char *tmp = xstrcpy("/tmp/bforce-");
|
||||
|
||||
res = string_concat(tmp, chunk, '\0');
|
||||
|
||||
if( chunk )
|
||||
free(chunk);
|
||||
if( !res )
|
||||
free(tmp);
|
||||
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
|
||||
+10
-10
@@ -152,7 +152,13 @@ int plock_link(const char *lockname, const char *tmpname)
|
||||
int plock_create(const char *lockname)
|
||||
{
|
||||
int rc;
|
||||
char *tmpname, *p;
|
||||
char *tmpname, *p, *chunk;
|
||||
chunk = xmalloc(7);
|
||||
if (!chunk) {
|
||||
logerr("can't generate unique file name from \"%s\"", tmpname);
|
||||
DEB((D_FREE, "plock freed"));
|
||||
return PLOCK_ERROR;
|
||||
}
|
||||
|
||||
ASSERT(lockname != NULL);
|
||||
|
||||
@@ -166,16 +172,10 @@ int plock_create(const char *lockname)
|
||||
DEB((D_FREE, "plock freed"));
|
||||
return PLOCK_ERROR;
|
||||
}
|
||||
tmpname = xstrcat(tmpname, "bforce-XXXXXX");
|
||||
tmpname = xstrcat(tmpname, "bforce-");
|
||||
|
||||
if( (p = mktemp(tmpname)) == NULL )
|
||||
{
|
||||
logerr("can't generate unique file name from \"%s\"", tmpname);
|
||||
DEB((D_FREE, "plock free"));
|
||||
free(tmpname);
|
||||
DEB((D_FREE, "plock freed"));
|
||||
return PLOCK_ERROR;
|
||||
}
|
||||
getrandname(chunk,6);
|
||||
p = string_concat(tmpname,chunk,'\0');
|
||||
|
||||
if( (rc = plock_write(p)) == PLOCK_OK )
|
||||
rc = plock_link(lockname, p);
|
||||
|
||||
@@ -598,6 +598,8 @@ int string_parse(char **dest, int items, char *str, int separator)
|
||||
{
|
||||
int count = 0;
|
||||
char *p = str;
|
||||
//if ( *((unsigned char *)p) == separator )
|
||||
// p++;
|
||||
|
||||
dest[count++] = str;
|
||||
|
||||
@@ -606,6 +608,7 @@ int string_parse(char **dest, int items, char *str, int separator)
|
||||
if( *((unsigned char *)p) == separator )
|
||||
{
|
||||
*p++ = '\0';
|
||||
// DEB((D_INDEX,"Parsed string: %s", dest[count]));
|
||||
dest[count++] = p;
|
||||
} else
|
||||
++p;
|
||||
|
||||
+45
-4
@@ -29,11 +29,12 @@ bool eventexpr(s_expr *expr)
|
||||
static void usage(void)
|
||||
{
|
||||
printf_usage("nodelist compiler",
|
||||
"usage: bfindex [-fh]\n"
|
||||
"usage: bfindex [-fh] [-C config]\n"
|
||||
"\n"
|
||||
"options:\n"
|
||||
" -f force nodelist compiling\n"
|
||||
" -h show this help message\n"
|
||||
" -C config use config\n"
|
||||
"\n"
|
||||
);
|
||||
}
|
||||
@@ -42,6 +43,7 @@ static int nodelist_makeindex(s_nodelist *nlp, s_faddr addr)
|
||||
{
|
||||
s_bni bni;
|
||||
char buf[1024];
|
||||
bool modepoint = FALSE;
|
||||
long countnodes = 0L;
|
||||
long countlines = 0L;
|
||||
enum nodelist_keyword keyword;
|
||||
@@ -52,6 +54,9 @@ static int nodelist_makeindex(s_nodelist *nlp, s_faddr addr)
|
||||
bni.node = addr.node;
|
||||
bni.point = addr.point;
|
||||
|
||||
DEB((D_INDEX, "Start create index for addr: %u:%u/%u.%u", bni.zone,
|
||||
bni.net, bni.node, bni.point));
|
||||
|
||||
if( nodelist_createheader(nlp) == -1 )
|
||||
{
|
||||
log("cannot create nodelist index header");
|
||||
@@ -80,13 +85,16 @@ static int nodelist_makeindex(s_nodelist *nlp, s_faddr addr)
|
||||
|
||||
if( (p = strchr(buf, ',')) )
|
||||
{
|
||||
//DEB((D_INDEX, "index: parse comma: %s", p ));
|
||||
*p++ = '\0';
|
||||
if( (q = strchr(p, ',')) ) *q = '\0';
|
||||
|
||||
}
|
||||
|
||||
if( p == NULL || *p == '\0' )
|
||||
{
|
||||
log("incorrect nodelist line %ld: Short line", countlines);
|
||||
DEB((D_INDEX,"incorrect nodelist line %ld: Short line", countlines));
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -94,20 +102,28 @@ static int nodelist_makeindex(s_nodelist *nlp, s_faddr addr)
|
||||
{
|
||||
log("incorrect nodelist line %d: Bad keyword \"%s\"",
|
||||
countlines, buf);
|
||||
DEB((D_INDEX,"incorrect nodelist line %d: Bad keyword \"%s\"",
|
||||
countlines, buf));
|
||||
continue;
|
||||
}
|
||||
|
||||
//DEB((D_INDEX,"index: keyword=%d", keyword));
|
||||
if( keyword == KEYWORD_BOSS )
|
||||
{
|
||||
s_faddr tmpaddr;
|
||||
|
||||
if( ftn_addrparse(&tmpaddr, p, FALSE) )
|
||||
{
|
||||
DEB((D_INDEX,"incorrect nodelist line %ld: Bad boss address \"%s\"",
|
||||
countlines, p));
|
||||
log("incorrect nodelist line %ld: Bad boss address \"%s\"",
|
||||
countlines, p);
|
||||
}
|
||||
else
|
||||
{
|
||||
DEB((D_INDEX,"index: parsing Boss %u:%u/%u.0",
|
||||
tmpaddr.zone, tmpaddr.net, tmpaddr.node));
|
||||
if (addr.point == -1 )
|
||||
modepoint = true;
|
||||
bni.zone = tmpaddr.zone;
|
||||
bni.net = tmpaddr.net;
|
||||
bni.node = tmpaddr.node;
|
||||
@@ -131,36 +147,49 @@ static int nodelist_makeindex(s_nodelist *nlp, s_faddr addr)
|
||||
bni.node = 0;
|
||||
bni.point = 0;
|
||||
bni.hub = 0;
|
||||
modepoint = false;
|
||||
break;
|
||||
case KEYWORD_REGION:
|
||||
bni.net = value;
|
||||
bni.node = 0;
|
||||
bni.point = 0;
|
||||
bni.hub = 0;
|
||||
modepoint = false;
|
||||
break;
|
||||
case KEYWORD_HOST:
|
||||
bni.net = value;
|
||||
bni.node = 0;
|
||||
bni.point = 0;
|
||||
bni.hub = 0;
|
||||
modepoint = false;
|
||||
break;
|
||||
case KEYWORD_HUB:
|
||||
bni.node = value;
|
||||
bni.point = 0;
|
||||
bni.hub = value;
|
||||
modepoint = false;
|
||||
break;
|
||||
case KEYWORD_EMPTY:
|
||||
if (modepoint)
|
||||
{
|
||||
//DEB((D_INDEX,"found empty value=%u",value ));
|
||||
bni.point = value;
|
||||
break;
|
||||
}
|
||||
case KEYWORD_PVT:
|
||||
case KEYWORD_HOLD:
|
||||
case KEYWORD_DOWN:
|
||||
bni.node = value;
|
||||
bni.point = 0;
|
||||
modepoint = false;
|
||||
break;
|
||||
case KEYWORD_POINT:
|
||||
DEB((D_INDEX,"index: kw point"));
|
||||
bni.point = value;
|
||||
break;
|
||||
default:
|
||||
ASSERT_MSG();
|
||||
DEB((D_INDEX,"index: default assert"));
|
||||
}
|
||||
|
||||
if( nodelist_putindex(nlp, &bni) == -1 )
|
||||
@@ -182,10 +211,12 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
s_cval_entry *cfptr;
|
||||
char *nodelistdir = NULL;
|
||||
char *confname = NULL;
|
||||
time_t starttime = 0L;
|
||||
bool forcecompile = FALSE;
|
||||
long countnodes = 0L;
|
||||
char c;
|
||||
int rc = 0;
|
||||
|
||||
/* Initialise random number generation */
|
||||
(void)srand((unsigned)time(0));
|
||||
@@ -193,7 +224,7 @@ int main(int argc, char *argv[])
|
||||
(void)setlocale(LC_ALL, "");
|
||||
/* Set our name (for logging only) */
|
||||
|
||||
while( (c = getopt(argc, argv, "hf")) != (char)-1 )
|
||||
while( (c = getopt(argc, argv, "hfC:")) != (char)-1 )
|
||||
{
|
||||
switch( c ) {
|
||||
case 'f':
|
||||
@@ -202,6 +233,10 @@ int main(int argc, char *argv[])
|
||||
case 'h':
|
||||
usage();
|
||||
exit(0);
|
||||
case 'C':
|
||||
if( confname || !optarg ) { usage(); exit(5); }
|
||||
confname = (char *)xstrcpy(optarg);
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
exit(5);
|
||||
@@ -209,8 +244,14 @@ int main(int argc, char *argv[])
|
||||
|
||||
}
|
||||
|
||||
if( conf_readconf(conf_getconfname(), 0, false) )
|
||||
if( confname && *confname )
|
||||
rc = conf_readconf(confname, 0, false);
|
||||
else
|
||||
rc = conf_readconf(conf_getconfname(), 0, false);
|
||||
|
||||
if( rc )
|
||||
{
|
||||
log("Can not find config");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
+18
-3
@@ -44,7 +44,7 @@ bool eventexpr(s_expr *expr)
|
||||
static void usage(void)
|
||||
{
|
||||
printf_usage("outbound viewer",
|
||||
"usage: bfstat [-afhprst] [-n<number>]\n"
|
||||
"usage: bfstat [-C config] [-afhprst] [-n<number>]\n"
|
||||
"\n"
|
||||
"options:\n"
|
||||
" -a sort by FTN address (default)\n"
|
||||
@@ -56,6 +56,7 @@ static void usage(void)
|
||||
" -r reverse order while sorting\n"
|
||||
" -s sort by total files size\n"
|
||||
" -t disable total sizes printing\n"
|
||||
" -C config use config file\n"
|
||||
"\n"
|
||||
);
|
||||
}
|
||||
@@ -248,8 +249,10 @@ int main(int argc, char *argv[])
|
||||
s_opts opts;
|
||||
s_sysqueue queue;
|
||||
s_outbound_callback_data ocb;
|
||||
char *confname = NULL;
|
||||
char c;
|
||||
int i;
|
||||
int rc = 0;
|
||||
|
||||
bfstat_opts_default(&opts);
|
||||
|
||||
@@ -288,6 +291,10 @@ int main(int argc, char *argv[])
|
||||
if( ISDEC(optarg) )
|
||||
opts.nodeslimit = atoi(optarg);
|
||||
break;
|
||||
case 'C':
|
||||
if( confname || !optarg ) { usage(); exit(BFERR_FATALERROR); }
|
||||
confname = (char *)xstrcpy(optarg);
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
exit(1);
|
||||
@@ -301,8 +308,16 @@ int main(int argc, char *argv[])
|
||||
/* Initialise current locale */
|
||||
(void)setlocale(LC_ALL, "");
|
||||
|
||||
if( conf_readconf(conf_getconfname(), 0, false) )
|
||||
exit(1);
|
||||
if( confname && *confname )
|
||||
rc = conf_readconf(confname, 0, false);
|
||||
else
|
||||
rc = conf_readconf(conf_getconfname(), 0, false);
|
||||
|
||||
if( rc )
|
||||
{
|
||||
log("Can not find config");
|
||||
exit(BFERR_FATALERROR);
|
||||
}
|
||||
|
||||
memset(&ocb, '\0', sizeof(s_outbound_callback_data));
|
||||
ocb.callback = out_handle_sysqueue;
|
||||
|
||||
+27
-4
@@ -28,12 +28,13 @@ bool eventexpr(s_expr *expr)
|
||||
static void usage(void)
|
||||
{
|
||||
printf_usage("nodelist lookup utility",
|
||||
"usage: nlookup [-rmh] <address>\n"
|
||||
"usage: nlookup [-C config] [-rmh] <address>\n"
|
||||
"\n"
|
||||
"options:\n"
|
||||
" -r show nodelist string\n"
|
||||
" -m show email address\n"
|
||||
" -h show this help message\n"
|
||||
" -C config use config file\n"
|
||||
"\n"
|
||||
);
|
||||
}
|
||||
@@ -82,7 +83,7 @@ void print_nodeinfo(const s_node *node)
|
||||
timevec_check(&node->worktime, now) ? "false" : "true");
|
||||
}
|
||||
|
||||
if( node->sysop && *node->sysop && strcmp(node->sysop, "<none>") )
|
||||
if( (node->keyword != KEYWORD_POINT) && node->sysop && *node->sysop && strcmp(node->sysop, "<none>") )
|
||||
{
|
||||
char username[BNI_MAXSYSOP+1];
|
||||
|
||||
@@ -127,6 +128,8 @@ int main(int argc, char *argv[])
|
||||
s_node node;
|
||||
s_faddr addr;
|
||||
char ch;
|
||||
int rc = 0;
|
||||
char *confname = NULL;
|
||||
bool rawstring = FALSE;
|
||||
bool emailaddr = FALSE;
|
||||
|
||||
@@ -135,7 +138,7 @@ int main(int argc, char *argv[])
|
||||
/* Initialise current locale */
|
||||
(void)setlocale(LC_ALL, "");
|
||||
|
||||
while( (ch=getopt(argc, argv, "hrm")) != (char)-1 )
|
||||
while( (ch=getopt(argc, argv, "hdrmC:")) != (char)-1 )
|
||||
{
|
||||
switch( ch ) {
|
||||
case 'h':
|
||||
@@ -147,6 +150,10 @@ int main(int argc, char *argv[])
|
||||
case 'm':
|
||||
emailaddr = TRUE;
|
||||
break;
|
||||
case 'C':
|
||||
if( confname || !optarg ) { usage(); exit(BFERR_FATALERROR); }
|
||||
confname = (char *)xstrcpy(optarg);
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
exit(BFERR_FATALERROR);
|
||||
@@ -159,8 +166,18 @@ int main(int argc, char *argv[])
|
||||
exit(BFERR_FATALERROR);
|
||||
}
|
||||
|
||||
if( conf_readconf(conf_getconfname(), 0, false) )
|
||||
if( confname && *confname )
|
||||
rc = conf_readconf(confname, 0, false);
|
||||
else
|
||||
rc = conf_readconf(conf_getconfname(), 0, false);
|
||||
|
||||
if( rc )
|
||||
{
|
||||
DEB((D_NODELIST,"nlookup: Can not find config"));
|
||||
exit(BFERR_FATALERROR);
|
||||
}
|
||||
|
||||
DEB((D_NODELIST,"Starting nlookup"));
|
||||
|
||||
if( rawstring )
|
||||
{
|
||||
@@ -171,11 +188,17 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
else if( nodelist_lookup(&node, addr) == 0 )
|
||||
{
|
||||
if (addr.point == 0) {
|
||||
if( emailaddr )
|
||||
print_nodemail(&node);
|
||||
else
|
||||
print_nodeinfo(&node);
|
||||
}
|
||||
else
|
||||
{
|
||||
print_nodeinfo(&node);
|
||||
}
|
||||
}
|
||||
|
||||
deinit_conf();
|
||||
|
||||
|
||||
Vendored
+5
-6
@@ -580,12 +580,12 @@ MAKEFLAGS=
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='bforce'
|
||||
PACKAGE_TARNAME='bforce'
|
||||
PACKAGE_VERSION='0.24.1'
|
||||
PACKAGE_STRING='bforce 0.24.1'
|
||||
PACKAGE_VERSION='0.26.2'
|
||||
PACKAGE_STRING='bforce 0.26.2'
|
||||
PACKAGE_BUGREPORT='zx@zxalexis.ru'
|
||||
PACKAGE_URL='https://prj.zxalexis.ru/gitea/zx/bforce.git'
|
||||
|
||||
ac_default_prefix=/usr/local/fido
|
||||
ac_default_prefix=/usr
|
||||
# Factoring default headers for most tests.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
@@ -1436,7 +1436,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
bforce configure 0.24
|
||||
bforce configure 0.26
|
||||
generated by GNU Autoconf 2.69
|
||||
|
||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||
@@ -5792,7 +5792,7 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
|
||||
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
|
||||
fi
|
||||
|
||||
ac_config_files="$ac_config_files ../debian/Makefile"
|
||||
ac_config_files="$ac_config_files"
|
||||
|
||||
cat >confcache <<\_ACEOF
|
||||
# This file is a shell script that caches the results of configure
|
||||
@@ -6486,7 +6486,6 @@ do
|
||||
case $ac_config_target in
|
||||
"include/config.h") CONFIG_HEADERS="$CONFIG_HEADERS include/config.h" ;;
|
||||
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||
"../debian/Makefile") CONFIG_FILES="$CONFIG_FILES ../debian/Makefile" ;;
|
||||
|
||||
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
||||
esac
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ dnl
|
||||
dnl $Id$
|
||||
dnl
|
||||
#AC_INIT(bforce/bforce.c)
|
||||
AC_INIT([bforce],[0.24.1],[zx@zxalexis.ru])
|
||||
AC_INIT([bforce],[0.26.2],[zx@zxalexis.ru])
|
||||
AC_CONFIG_HEADER(include/config.h)
|
||||
AC_CANONICAL_SYSTEM
|
||||
dnl # Minimum Autoconf version required.
|
||||
|
||||
+115
-115
@@ -159,130 +159,130 @@ typedef struct filebox {
|
||||
} s_filebox;
|
||||
|
||||
typedef enum {
|
||||
cf_address,
|
||||
cf_amiga_outbound_directory,
|
||||
cf_binkp_timeout,
|
||||
cf_daemon_circle,
|
||||
cf_daemon_circle_crash,
|
||||
cf_daemon_circle_direct,
|
||||
cf_daemon_circle_immed,
|
||||
cf_daemon_circle_modem,
|
||||
cf_daemon_circle_normal,
|
||||
cf_daemon_circle_rescan,
|
||||
cf_daemon_maxclients_modem,
|
||||
cf_daemon_maxclients_tcpip,
|
||||
cf_daemon_pid_file,
|
||||
cf_delay_files_recv,
|
||||
cf_delay_files_send,
|
||||
cf_disable_aka_matching,
|
||||
cf_domain,
|
||||
cf_emsi_FR_time,
|
||||
cf_emsi_OH_time,
|
||||
cf_emsi_slave_sends_nak,
|
||||
cf_emsi_send_tz,
|
||||
cf_emsi_send_time,
|
||||
cf_filebox,
|
||||
cf_filebox_directory,
|
||||
cf_flags,
|
||||
cf_flo_translate,
|
||||
cf_freq_alias_list,
|
||||
cf_freq_dir_list,
|
||||
cf_freq_ignore_masks,
|
||||
cf_freq_limit_number,
|
||||
cf_freq_limit_size,
|
||||
cf_freq_limit_time,
|
||||
cf_freq_min_speed,
|
||||
cf_freq_srif_command,
|
||||
cf_incnet_flag,
|
||||
cf_incarc_flag,
|
||||
cf_inctic_flag,
|
||||
cf_incfile_flag,
|
||||
cf_hide_our_aka,
|
||||
cf_history_file,
|
||||
cf_hydra_options,
|
||||
cf_hydra_mincps_recv,
|
||||
cf_hydra_mincps_send,
|
||||
cf_hydra_tx_window,
|
||||
cf_hydra_rx_window,
|
||||
cf_inbound_directory,
|
||||
cf_location,
|
||||
cf_log_file,
|
||||
cf_log_file_daemon,
|
||||
cf_max_speed,
|
||||
cf_maxtries,
|
||||
cf_maxtries_nodial,
|
||||
cf_maxtries_noansw,
|
||||
cf_maxtries_noconn,
|
||||
cf_maxtries_hshake,
|
||||
cf_maxtries_sessions,
|
||||
cf_min_cps_recv,
|
||||
cf_min_cps_send,
|
||||
cf_min_cps_time,
|
||||
cf_min_free_space,
|
||||
cf_min_speed_in,
|
||||
cf_min_speed_out,
|
||||
cf_mode_netmail,
|
||||
cf_mode_arcmail,
|
||||
cf_mode_request,
|
||||
cf_mode_ticfile,
|
||||
cf_mode_default,
|
||||
cf_modem_can_send_break,
|
||||
cf_modem_dial_prefix,
|
||||
cf_modem_dial_suffix,
|
||||
cf_modem_dial_response,
|
||||
cf_modem_hangup_command,
|
||||
cf_modem_port,
|
||||
cf_modem_reset_command,
|
||||
cf_modem_stat_command,
|
||||
cf_nodelist,
|
||||
cf_nodelist_directory,
|
||||
cf_nodial_flag,
|
||||
cf_override,
|
||||
cf_options,
|
||||
cf_outbound_directory,
|
||||
cf_password,
|
||||
cf_phone,
|
||||
cf_phone_translate,
|
||||
cf_proto_order,
|
||||
cf_recode_file_in,
|
||||
cf_recode_file_out,
|
||||
cf_recode_intro_in,
|
||||
cf_recv_buffer_size,
|
||||
cf_rescan_delay,
|
||||
cf_run_after_handshake,
|
||||
cf_run_after_session,
|
||||
cf_run_before_session,
|
||||
cf_session_limit_in,
|
||||
cf_session_limit_out,
|
||||
cf_skip_files_recv,
|
||||
cf_status_directory,
|
||||
cf_system_name,
|
||||
cf_sysop_name,
|
||||
cf_uucp_lock_directory,
|
||||
cf_wait_carrier_in,
|
||||
cf_wait_carrier_out,
|
||||
cf_zmodem_mincps_recv,
|
||||
cf_zmodem_mincps_send,
|
||||
cf_zmodem_send_dummy_pkt,
|
||||
cf_zmodem_skip_by_pos,
|
||||
cf_zmodem_start_block_size,
|
||||
cf_zmodem_tx_window,
|
||||
cf_nomail_flag,
|
||||
cf_bind_ip,
|
||||
cf_recieved_to_lower,
|
||||
cf_address, // 0
|
||||
cf_amiga_outbound_directory, // 1
|
||||
cf_binkp_timeout, // 2
|
||||
cf_daemon_circle, // 3
|
||||
cf_daemon_circle_crash, // 4
|
||||
cf_daemon_circle_direct, // 5
|
||||
cf_daemon_circle_immed, // 6
|
||||
cf_daemon_circle_modem, // 7
|
||||
cf_daemon_circle_normal, // 8
|
||||
cf_daemon_circle_rescan, // 9
|
||||
cf_daemon_maxclients_modem, // 10
|
||||
cf_daemon_maxclients_tcpip, // 11
|
||||
cf_daemon_pid_file, // 12
|
||||
cf_delay_files_recv, // 13
|
||||
cf_delay_files_send, // 14
|
||||
cf_disable_aka_matching, // 15
|
||||
cf_domain, // 16
|
||||
cf_emsi_FR_time, // 17
|
||||
cf_emsi_OH_time, // 18
|
||||
cf_emsi_slave_sends_nak, // 19
|
||||
cf_emsi_send_tz, // 20
|
||||
cf_emsi_send_time, // 21
|
||||
cf_filebox, // 22
|
||||
cf_filebox_directory, // 23
|
||||
cf_flags, // 24
|
||||
cf_flo_translate, // 25
|
||||
cf_freq_alias_list, // 26
|
||||
cf_freq_dir_list, // 27
|
||||
cf_freq_ignore_masks, // 28
|
||||
cf_freq_limit_number, // 29
|
||||
cf_freq_limit_size, // 30
|
||||
cf_freq_limit_time, // 31
|
||||
cf_freq_min_speed, // 32
|
||||
cf_freq_srif_command, // 33
|
||||
cf_incnet_flag, // 34
|
||||
cf_incarc_flag, // 35
|
||||
cf_inctic_flag, // 36
|
||||
cf_incfile_flag, // 37
|
||||
cf_hide_our_aka, // 38
|
||||
cf_history_file, // 39
|
||||
cf_hydra_options, // 40
|
||||
cf_hydra_mincps_recv, // 41
|
||||
cf_hydra_mincps_send, // 42
|
||||
cf_hydra_tx_window, // 43
|
||||
cf_hydra_rx_window, // 44
|
||||
cf_inbound_directory, // 45
|
||||
cf_location, // 46
|
||||
cf_log_file, // 47
|
||||
cf_log_file_daemon, // 48
|
||||
cf_max_speed, // 49
|
||||
cf_maxtries, // 50
|
||||
cf_maxtries_nodial, // 51
|
||||
cf_maxtries_noansw, // 52
|
||||
cf_maxtries_noconn, // 53
|
||||
cf_maxtries_hshake, // 54
|
||||
cf_maxtries_sessions, // 55
|
||||
cf_min_cps_recv, // 56
|
||||
cf_min_cps_send, // 57
|
||||
cf_min_cps_time, // 58
|
||||
cf_min_free_space, // 59
|
||||
cf_min_speed_in, // 60
|
||||
cf_min_speed_out, // 61
|
||||
cf_mode_netmail, // 62
|
||||
cf_mode_arcmail, // 63
|
||||
cf_mode_request, // 64
|
||||
cf_mode_ticfile, // 65
|
||||
cf_mode_default, // 66
|
||||
cf_modem_can_send_break, // 67
|
||||
cf_modem_dial_prefix, // 68
|
||||
cf_modem_dial_suffix, // 69
|
||||
cf_modem_dial_response, // 70
|
||||
cf_modem_hangup_command, // 71
|
||||
cf_modem_port, // 72
|
||||
cf_modem_reset_command, // 73
|
||||
cf_modem_stat_command, // 74
|
||||
cf_nodelist, // 75
|
||||
cf_nodelist_directory, // 76
|
||||
cf_nodial_flag, // 77
|
||||
cf_override, // 78
|
||||
cf_options, // 79
|
||||
cf_outbound_directory, // 80
|
||||
cf_password, // 81
|
||||
cf_phone, // 82
|
||||
cf_phone_translate, // 83
|
||||
cf_proto_order, // 84
|
||||
cf_recode_file_in, // 85
|
||||
cf_recode_file_out, // 86
|
||||
cf_recode_intro_in, // 87
|
||||
cf_recv_buffer_size, // 88
|
||||
cf_rescan_delay, // 89
|
||||
cf_run_after_handshake, // 90
|
||||
cf_run_after_session, // 91
|
||||
cf_run_before_session, // 92
|
||||
cf_session_limit_in, // 93
|
||||
cf_session_limit_out, // 94
|
||||
cf_skip_files_recv, // 95
|
||||
cf_status_directory, // 96
|
||||
cf_system_name, // 97
|
||||
cf_sysop_name, // 98
|
||||
cf_uucp_lock_directory, // 99
|
||||
cf_wait_carrier_in, // 100
|
||||
cf_wait_carrier_out, // 101
|
||||
cf_zmodem_mincps_recv, // 102
|
||||
cf_zmodem_mincps_send, // 103
|
||||
cf_zmodem_send_dummy_pkt, // 104
|
||||
cf_zmodem_skip_by_pos, // 105
|
||||
cf_zmodem_start_block_size, // 106
|
||||
cf_zmodem_tx_window, // 107
|
||||
cf_nomail_flag, // 108
|
||||
cf_bind_ip, // 109
|
||||
cf_recieved_to_lower, // 110
|
||||
#ifdef USE_SYSLOG
|
||||
cf_syslog_facility,
|
||||
#endif
|
||||
#ifdef DEBUG
|
||||
cf_debug_file,
|
||||
cf_debug_level,
|
||||
cf_debug_file, // 111
|
||||
cf_debug_level, // 112
|
||||
#endif
|
||||
cf_split_inbound,
|
||||
cf_split_inbound, // 113
|
||||
#ifdef NETSPOOL
|
||||
cf_netspool_host,
|
||||
cf_netspool_port,
|
||||
#endif
|
||||
cf_fidodnszone,
|
||||
cf_fidodnszone, // 114
|
||||
BFORCE_NUMBER_OF_KEYWORDS
|
||||
} bforce_config_keyword;
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ enum { LOG_FILE_DAEMON, LOG_FILE_SESSION, LOG_FILE_DEBUG, LOG_FILE_HISTORY };
|
||||
#define D_DAEMON 0x0001000L
|
||||
#define D_24554 0x0002000L
|
||||
#define D_FREE 0x0004000L
|
||||
#define D_INDEX 0x0008000L
|
||||
#define D_FULL 0xfffffffL
|
||||
#endif
|
||||
|
||||
@@ -65,8 +66,8 @@ void log_setident(const char *ident);
|
||||
int log_open(const char *logname, const char *ext, const char *tty);
|
||||
int log_close(void);
|
||||
int log_reopen(const char *logname, const char *ext, const char *tty);
|
||||
int log(const char *s, ...);
|
||||
int logerr(const char *s, ...);
|
||||
void log(const char *s, ...);
|
||||
void logerr(const char *s, ...);
|
||||
|
||||
#ifdef DEBUG
|
||||
//void debug_setlevel(long newlevel, bool logit);
|
||||
@@ -75,7 +76,7 @@ bool debug_isopened(void);
|
||||
//int debug_parsestring(char *str, unsigned long *deblevel);
|
||||
int debug_open();
|
||||
int debug_close();
|
||||
int debug(unsigned long what, const char *str, ...);
|
||||
void debug(unsigned long what, const char *str, ...);
|
||||
void debug_configure();
|
||||
#endif
|
||||
|
||||
|
||||
@@ -159,6 +159,7 @@ s_node;
|
||||
|
||||
int nodelist_checkflag(const char *nodeflags, const char *flag);
|
||||
int nodelist_keywordval(const char *keyword);
|
||||
int nodelist_parsepoint(s_node *node, char *str);
|
||||
int nodelist_parsestring(s_node *node, char *str);
|
||||
s_nodelist *nodelist_open(const char *dir, char *name, int mode);
|
||||
int nodelist_checkheader(s_nodelist *nlp);
|
||||
|
||||
@@ -78,7 +78,7 @@ typedef struct {
|
||||
} s_session_passwd;
|
||||
|
||||
typedef struct sendopts {
|
||||
int fnc:1, /* Convert outgoing file names to 8+3 format */
|
||||
unsigned int fnc:1, /* Convert outgoing file names to 8+3 format */
|
||||
holdreq:1, /* Hold .REQ files? (file requests) */
|
||||
holdhold:1, /* Hold files with HOLD flavor? */
|
||||
holdfiles:1, /* Hold all files except netmail + arcmail */
|
||||
|
||||
@@ -46,10 +46,10 @@ enum day
|
||||
|
||||
typedef struct faddr {
|
||||
bool inetform; /* Is address in domain form? */
|
||||
int zone; /* -1 value means any?! */
|
||||
int net;
|
||||
int node;
|
||||
int point;
|
||||
u_int zone; /* -1 value means any?! */
|
||||
u_int net;
|
||||
u_int node;
|
||||
u_int point;
|
||||
char domain[BF_MAXDOMAIN+1];
|
||||
} s_faddr;
|
||||
|
||||
@@ -83,7 +83,7 @@ typedef struct message {
|
||||
typedef struct packet {
|
||||
s_faddr orig;
|
||||
s_faddr dest;
|
||||
int baud;
|
||||
u_int baud;
|
||||
char password[8+1];
|
||||
s_message *msgs;
|
||||
int n_msgs;
|
||||
@@ -161,6 +161,7 @@ bool is_regfile(const char *filename);
|
||||
int directory_create(const char *dirname, mode_t access_mode);
|
||||
FILE *file_open(const char *path, const char *mode);
|
||||
int file_close(FILE *stream);
|
||||
void getrandname(char * buf, u_int size);
|
||||
|
||||
/* u_ftn.c */
|
||||
int ftn_addrparse(s_faddr *addr, const char *s, bool wildcard);
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#define BF_VERSION RELEASE_VERSION
|
||||
#define BF_CDATE __DATE__ __TIME__
|
||||
#define BF_REG "free software"
|
||||
#define BF_COPYRIGHT "(c) 1997-2000 by Alexander Belkin"
|
||||
#define BF_COPYRIGHT "(c) 1997-2000 by Alexander Belkin, 2004-2025 fidonet members"
|
||||
|
||||
#define BF_BANNERVER BF_NAME" "BF_VERSION"/"BF_OS
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ proto_order %PROTO%
|
||||
#domain schoolnet /var/spool/ftn/schoolnet/ 461
|
||||
log_file %TESTZONE%/logsA/bf-log
|
||||
debug_file %TESTZONE%/logsA/bf-debug
|
||||
debug_level modem hshake event freq
|
||||
debug_level info modem hshake event prot outbound override
|
||||
nodial_flag %TESTZONE%/etc/nodial
|
||||
inbound_directory (Protected) %TESTZONE%/inboundA
|
||||
inbound_directory %TESTZONE%/inbound-unsecureA
|
||||
@@ -19,6 +19,7 @@ status_directory %TESTZONE%/logsA
|
||||
history_file %TESTZONE%/logsA/history
|
||||
|
||||
password 99:1/2 testpwd1
|
||||
override 99:1/2 flags INA:localhost,IFC:59999,IBN:59999
|
||||
#min_speed_in 1200
|
||||
#min_speed_out 1200
|
||||
#session_limit_in 1800
|
||||
|
||||
@@ -6,7 +6,7 @@ proto_order %PROTO%
|
||||
#domain schoolnet /var/spool/ftn/schoolnet/ 461
|
||||
log_file %TESTZONE%/logsB/bf-log
|
||||
debug_file %TESTZONE%/logsB/bf-debug
|
||||
debug_level modem hshake event freq
|
||||
debug_level info modem hshake event prot outbound override
|
||||
nodial_flag %TESTZONE%/etc/nodial
|
||||
inbound_directory (Protected) %TESTZONE%/inboundB
|
||||
inbound_directory %TESTZONE%/inbound-unsecureB
|
||||
@@ -19,6 +19,7 @@ status_directory %TESTZONE%/logsB
|
||||
history_file %TESTZONE%/logsB/history
|
||||
|
||||
password 99:1/1 testpwd1
|
||||
override 99:1/1 flags INA:localhost,IFC:59999,IBN:59999
|
||||
#min_speed_in 1200
|
||||
#min_speed_out 1200
|
||||
#session_limit_in 1800
|
||||
|
||||
Executable → Regular
+114
-45
@@ -1,52 +1,93 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Making tests of BForce
|
||||
CURDIR=$(pwd)
|
||||
BFBIN=$(pwd)/../source/bin/bforce
|
||||
CURDIR="${CURDIR:-$(pwd)}"
|
||||
BFBIN=${BFBIN:-$(pwd)/../source/bin/bforce}
|
||||
SOCATCMD=${SOCATCMD:-$(which socat)}
|
||||
|
||||
function prepconfig() {
|
||||
echo "Preparing configs with $1 as protocol..."
|
||||
cp ${CURDIR}/configs/bforceA.conf ${CURDIR}/etc/bforceA.conf
|
||||
sed -i -e "s/%PROTO%/$1/" ${CURDIR}/etc/bforceA.conf
|
||||
sed -i -e "s#%TESTZONE%#${CURDIR}#" ${CURDIR}/etc/bforceA.conf
|
||||
if [[ ! -d "${CURDIR}/ftntest" ]] ;
|
||||
then
|
||||
echo -n "(o_O) "
|
||||
else
|
||||
echo "Dir exists!"
|
||||
rm -rf ${CURDIR}/ftntest/{etc,inboundA,inboundB,inbound-unsecureA,inbound-unsecureB,logsA,logsB,outboundA,outboundB}
|
||||
fi
|
||||
|
||||
cp ${CURDIR}/configs/bforceB.conf ${CURDIR}/etc/bforceB.conf
|
||||
sed -i -e "s/%PROTO%/$1/" ${CURDIR}/etc/bforceB.conf
|
||||
sed -i -e "s#%TESTZONE%#${CURDIR}#" ${CURDIR}/etc/bforceB.conf
|
||||
mkdir -p "${CURDIR}"/ftntest/{etc,inbound-unsecureA,inbound-unsecureB,inboundA,inboundB,logsA,logsB,outboundA,outboundB}
|
||||
|
||||
cp ${CURDIR}/configs/00010002.cut ${CURDIR}/outboundA/00010002.cut
|
||||
cp ${CURDIR}/configs/00010001.cut ${CURDIR}/outboundB/00010001.cut
|
||||
cp -f ${CURDIR}/configs/bforceA.conf ${CURDIR}/ftntest/etc/bforceA.conf
|
||||
sed -i -e "s/%PROTO%/$1/" ${CURDIR}/ftntest/etc/bforceA.conf
|
||||
sed -i -e "s#%TESTZONE%#${CURDIR}/ftntest#" ${CURDIR}/ftntest/etc/bforceA.conf
|
||||
|
||||
cp -f ${CURDIR}/configs/bforceB.conf ${CURDIR}/ftntest/etc/bforceB.conf
|
||||
sed -i -e "s/%PROTO%/$1/" ${CURDIR}/ftntest/etc/bforceB.conf
|
||||
sed -i -e "s#%TESTZONE%#${CURDIR}/ftntest#" ${CURDIR}/ftntest/etc/bforceB.conf
|
||||
|
||||
cp -f ${CURDIR}/configs/00010002.cut ${CURDIR}/ftntest/outboundA/00010002.cut
|
||||
cp -f ${CURDIR}/configs/00010001.cut ${CURDIR}/ftntest/outboundB/00010001.cut
|
||||
}
|
||||
|
||||
function testcomm() {
|
||||
rm -rf ${CURDIR}/inboundA/*
|
||||
rm -rf ${CURDIR}/inboundB/*
|
||||
rm -rf ${CURDIR}/ftntest/inboundA/*
|
||||
rm -rf ${CURDIR}/ftntest/inboundB/*
|
||||
echo " over ${1}"
|
||||
# for V1 and V2
|
||||
#mkfifo ${CURDIR}/bforceAtoB
|
||||
#mkfifo ${CURDIR}/bforceBtoA
|
||||
|
||||
mkfifo ${CURDIR}/bforceAtoB
|
||||
mkfifo ${CURDIR}/bforceBtoA
|
||||
|
||||
BFCFGA=${CURDIR}/etc/bforceA.conf
|
||||
BFCFGB=${CURDIR}/etc/bforceB.conf
|
||||
BFCFGA=${CURDIR}/ftntest/etc/bforceA.conf
|
||||
BFCFGB=${CURDIR}/ftntest/etc/bforceB.conf
|
||||
|
||||
# Works for Linux
|
||||
|
||||
BFCONFIG=${BFCFGA}
|
||||
BFCONFIG=${BFCFGA} ${BFBIN} -o 99:1/2 > ${CURDIR}/bforceAtoB < ${CURDIR}/bforceBtoA &
|
||||
# Variant 1
|
||||
#BFCONFIG=${BFCFGA}
|
||||
#BFCONFIG=${BFCFGA} ${BFBIN} -o 99:1/2 > ${CURDIR}/bforceAtoB < ${CURDIR}/bforceBtoA &
|
||||
#
|
||||
|
||||
BFCONFIG=${BFCFGB}
|
||||
BFCONFIG=${BFCFGB} ${BFBIN} -S"CONNECT 9600" auto < ${CURDIR}/bforceAtoB > ${CURDIR}/bforceBtoA
|
||||
#BFCONFIG=${BFCFGB}
|
||||
#BFCONFIG=${BFCFGB} ${BFBIN} -S"CONNECT 9600" auto < ${CURDIR}/bforceAtoB > ${CURDIR}/bforceBtoA
|
||||
|
||||
# Variant 2
|
||||
#${CURDIR}/runbfA.sh ${BFBIN} ${BFCFGA} > ${CURDIR}/bforceAtoB < ${CURDIR}/bforceBtoA &
|
||||
#${CURDIR}/runbfB.sh ${BFBIN} ${BFCFGB} < ${CURDIR}/bforceAtoB > ${CURDIR}/bforceBtoA
|
||||
|
||||
# Variant 3 works with sockets and pipes - not pty
|
||||
case ${1} in
|
||||
"PSTN")
|
||||
socat -ly -Wlock EXEC:"${CURDIR}/runbfB.sh ${BFBIN} ${BFCFGB}" EXEC:"${CURDIR}/runbfA.sh ${BFBIN} ${BFCFGA}"
|
||||
sleep 2
|
||||
;;
|
||||
"IFC")
|
||||
${CURDIR}/runbfC.sh ${BFBIN} ${BFCFGA} &
|
||||
socat -ly -Wlock TCP4-LISTEN:59999 EXEC:"${CURDIR}/runbfD.sh ${BFBIN} ${BFCFGB}"
|
||||
sleep 2
|
||||
;;
|
||||
"BKP")
|
||||
${CURDIR}/runbfE.sh ${BFBIN} ${BFCFGA} &
|
||||
socat -ly -Wlock TCP4-LISTEN:59999 EXEC:"${CURDIR}/runbfF.sh ${BFBIN} ${BFCFGB}"
|
||||
sleep 2
|
||||
;;
|
||||
esac
|
||||
# For [Free]BSD it need to be replaced - pipes are bidirectional:
|
||||
|
||||
# ./ping <&1 | ./pong >&0
|
||||
|
||||
rm ${CURDIR}/{bforceAtoB,bforceBtoA}
|
||||
# for V1 and V2
|
||||
#rm ${CURDIR}/{bforceAtoB,bforceBtoA}
|
||||
|
||||
## WE MUST CHECK THAT INBOUND ARE FULL!!! ##
|
||||
FCNTA=$( find ${CURDIR}/inboundA -name *.pkt | wc -l )
|
||||
FCNTB=$( find ${CURDIR}/inboundB -name *.pkt | wc -l )
|
||||
DIFFA=$( diff ${CURDIR}/inboundA/*.pkt ${CURDIR}/configs/00010001.cut && echo $? )
|
||||
DIFFB=$( diff ${CURDIR}/inboundB/*.pkt ${CURDIR}/configs/00010002.cut && echo $? )
|
||||
FCNTA=$( find ${CURDIR}/ftntest/inboundA -name *.pkt | wc -l )
|
||||
FCNTB=$( find ${CURDIR}/ftntest/inboundB -name *.pkt | wc -l )
|
||||
if [[ "${FCNTA}" -eq "1" ]]
|
||||
then
|
||||
DIFFA=$( diff ${CURDIR}/ftntest/inboundA/*.pkt ${CURDIR}/configs/00010001.cut && echo $? )
|
||||
fi
|
||||
if [[ "${FCNTB}" -eq "1" ]]
|
||||
then
|
||||
DIFFB=$( diff ${CURDIR}/ftntest/inboundB/*.pkt ${CURDIR}/configs/00010002.cut && echo $? )
|
||||
fi
|
||||
|
||||
if [[ "${DIFFA}" -eq "0" ]] && [[ "${FCNTA}" -eq "1" ]]
|
||||
then
|
||||
@@ -55,48 +96,76 @@ function testcomm() {
|
||||
echo "....Result: OK"
|
||||
else
|
||||
echo "....Failed DiffB"
|
||||
RES=2
|
||||
fi
|
||||
else
|
||||
echo "....Failed DiffA"
|
||||
RES=1
|
||||
fi
|
||||
|
||||
cat ${CURDIR}/logsA/bf-debug >> ${CURDIR}/debugA.log
|
||||
cat ${CURDIR}/logsB/bf-debug >> ${CURDIR}/debugB.log
|
||||
if [[ -f ${CURDIR}/ftntest/logsA/bf-debug ]]
|
||||
then
|
||||
cat ${CURDIR}/ftntest/logsA/bf-debug >> ${CURDIR}/debugA.log
|
||||
fi
|
||||
if [[ -f ${CURDIR}/ftntest/logsB/bf-debug ]]
|
||||
then
|
||||
cat ${CURDIR}/ftntest/logsB/bf-debug >> ${CURDIR}/debugB.log
|
||||
fi
|
||||
|
||||
rm -rf ${CURDIR}/ftntest
|
||||
}
|
||||
|
||||
if [[ ! -d "${CURDIR}/inboundA" ]]
|
||||
then
|
||||
echo "All clear to begin"
|
||||
else
|
||||
echo "Dir exists!"
|
||||
rm -rf {etc,inboundA,inboundB,inbound-unsecureA,inbound-unsecureB,logsA,logsB,outboundA,outboundB}
|
||||
fi
|
||||
mkdir -p "${CURDIR}"/{etc,inbound-unsecureA,inbound-unsecureB,inboundA,inboundB,logsA,logsB,outboundA,outboundB}
|
||||
|
||||
if [[ ! -f "${BFBIN}" ]]
|
||||
then
|
||||
# No executable to test!
|
||||
echo "No executable to run! Aborting..."
|
||||
exit -1
|
||||
else
|
||||
|
||||
if [[ ! -f "${SOCATCMD}" ]]
|
||||
then
|
||||
# No socat
|
||||
echo "No socat cmd! Aborting..."
|
||||
exit -1
|
||||
fi
|
||||
# All doing here
|
||||
echo "Bforce executable found"
|
||||
echo "Bforce executable found: ${BFBIN}"
|
||||
RES=0
|
||||
|
||||
prepconfig "ZMO"
|
||||
echo -n "--> Running ZMO test..."
|
||||
testcomm
|
||||
testcomm "PSTN"
|
||||
|
||||
prepconfig "ZAP"
|
||||
echo -n "--> Running ZAP test..."
|
||||
testcomm
|
||||
testcomm "PSTN"
|
||||
|
||||
prepconfig "HYD"
|
||||
echo -n "--> Running Hydra test..."
|
||||
testcomm
|
||||
testcomm "PSTN"
|
||||
|
||||
prepconfig "ZMO"
|
||||
echo -n "--> Running ZMO test..."
|
||||
testcomm "IFC"
|
||||
|
||||
prepconfig "ZAP"
|
||||
echo -n "--> Running ZAP test..."
|
||||
testcomm "IFC"
|
||||
|
||||
prepconfig "HYD"
|
||||
echo -n "--> Running HYD test..."
|
||||
testcomm "IFC"
|
||||
|
||||
prepconfig "ZMO"
|
||||
echo -n "--> Running BINKP test..."
|
||||
testcomm "BKP"
|
||||
|
||||
# TODO: make binkd test over netcat possibly
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
rm -rf {etc,inboundA,inboundB,inbound-unsecureA,inbound-unsecureB,logsA,logsB,outboundA,outboundB}
|
||||
# rm -rf ${CURDIR}/ftntest/{etc,inboundA,inboundB,inbound-unsecureA,inbound-unsecureB,logsA,logsB,outboundA,outboundB}
|
||||
rm -rf ${CURDIR}/ftntest
|
||||
# printf $RES
|
||||
exit ${RES}
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -o 99:1/2
|
||||
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -S"CONNECT 9600" -i auto
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -a 127.0.0.1:59999 -u ifcico 99:1/2
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -S"" -i auto
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -a 127.0.0.1:59999 -u binkp 99:1/2
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
BFCONFIG=${2} ${1} -C ${2} -i binkp
|
||||
Reference in New Issue
Block a user