2019-01-04 20:25:15 +00:00
|
|
|
# Copyright (C) 2017-2019 Fredrik Öhrström
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-08-09 10:00:11 +00:00
|
|
|
|
|
|
|
# To compile for Raspberry PI ARM:
|
|
|
|
# make HOST=arm
|
|
|
|
#
|
|
|
|
# To build with debug information:
|
|
|
|
# make DEBUG=true
|
|
|
|
# make DEBUG=true HOST=arm
|
|
|
|
|
2019-04-15 19:00:53 +00:00
|
|
|
ifeq "$(HOST)" "arm"
|
|
|
|
CXX=arm-linux-gnueabihf-g++
|
|
|
|
STRIP=arm-linux-gnueabihf-strip
|
|
|
|
BUILD=build_arm
|
|
|
|
DEBARCH=armhf
|
|
|
|
else
|
|
|
|
CXX=g++
|
|
|
|
STRIP=strip
|
|
|
|
#--strip-unneeded --remove-section=.comment --remove-section=.note
|
|
|
|
BUILD=build
|
|
|
|
DEBARCH=amd64
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq "$(DEBUG)" "true"
|
|
|
|
DEBUG_FLAGS=-O0 -ggdb -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
STRIP_BINARY=
|
|
|
|
BUILD:=$(BUILD)_debug
|
|
|
|
DEBUG_LDFLAGS=-lasan
|
|
|
|
else
|
|
|
|
DEBUG_FLAGS=-Os
|
|
|
|
STRIP_BINARY=$(STRIP) $(BUILD)/wmbusmeters
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(shell mkdir -p $(BUILD))
|
|
|
|
|
2019-04-13 20:58:40 +00:00
|
|
|
COMMIT_HASH:=$(shell git log --pretty=format:'%H' -n 1)
|
|
|
|
TAG:=$(shell git describe --tags)
|
|
|
|
CHANGES:=$(shell git status -s | grep -v '?? ')
|
|
|
|
TAG_COMMIT_HASH:=$(shell git show-ref --tags | grep $(TAG) | cut -f 1 -d ' ')
|
|
|
|
|
|
|
|
ifeq ($(COMMIT),$(TAG_COMMIT))
|
|
|
|
# Exactly on the tagged commit. The version is the tag!
|
|
|
|
VERSION:=$(TAG)
|
|
|
|
DEBVERSION:=$(TAG)
|
|
|
|
else
|
|
|
|
VERSION:=$(TAG)++
|
|
|
|
DEBVERSION:=$(TAG)++
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(CHANGES)),)
|
|
|
|
# There are changes, signify that with a +changes
|
|
|
|
VERSION:=$(VERSION) with local changes
|
2019-04-15 19:00:53 +00:00
|
|
|
COMMIT_HASH:=$(COMMIT_HASH) with local changes
|
2019-04-13 20:58:40 +00:00
|
|
|
DEBVERSION:=$(DEBVERSION)l
|
|
|
|
endif
|
|
|
|
|
2019-04-15 19:00:53 +00:00
|
|
|
$(shell echo "#define VERSION \"$(VERSION)\"" > $(BUILD)/version.h.tmp)
|
|
|
|
$(shell echo "#define COMMIT \"$(COMMIT_HASH)\"" >> $(BUILD)/version.h.tmp)
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-04-15 19:00:53 +00:00
|
|
|
PREV_VERSION=$(shell cat -n $(BUILD)/version.h 2> /dev/null)
|
|
|
|
CURR_VERSION=$(shell cat -n $(BUILD)/version.h.tmp 2>/dev/null)
|
|
|
|
ifneq ($(PREV_VERSION),$(CURR_VERSION))
|
|
|
|
$(shell mv $(BUILD)/version.h.tmp $(BUILD)/version.h)
|
2017-08-09 10:00:11 +00:00
|
|
|
else
|
2019-04-15 19:00:53 +00:00
|
|
|
$(shell rm $(BUILD)/version.h.tmp)
|
2017-08-09 10:00:11 +00:00
|
|
|
endif
|
|
|
|
|
2019-04-15 19:00:53 +00:00
|
|
|
$(info Building $(VERSION))
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-04-15 19:17:15 +00:00
|
|
|
CXXFLAGS := $(DEBUG_FLAGS) -fPIC -fmessage-length=0 -std=c++11 -Wall -Wno-unused-function -I$(BUILD)
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-02-23 12:53:52 +00:00
|
|
|
$(BUILD)/%.o: src/%.cc $(wildcard src/%.h)
|
2019-10-24 19:06:33 +00:00
|
|
|
@#$(CXX) $(CXXFLAGS) $< -c -E > $@.src
|
2019-03-15 12:59:26 +00:00
|
|
|
$(CXX) $(CXXFLAGS) $< -MMD -c -o $@
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-03-15 12:59:26 +00:00
|
|
|
METER_OBJS:=\
|
2017-08-09 10:00:11 +00:00
|
|
|
$(BUILD)/aes.o \
|
2017-08-31 08:58:39 +00:00
|
|
|
$(BUILD)/cmdline.o \
|
2019-02-23 12:41:17 +00:00
|
|
|
$(BUILD)/config.o \
|
2018-04-01 06:53:37 +00:00
|
|
|
$(BUILD)/dvparser.o \
|
2017-08-31 08:58:39 +00:00
|
|
|
$(BUILD)/meters.o \
|
|
|
|
$(BUILD)/meter_multical21.o \
|
2018-03-05 10:29:25 +00:00
|
|
|
$(BUILD)/meter_multical302.o \
|
2018-03-16 10:48:04 +00:00
|
|
|
$(BUILD)/meter_omnipower.o \
|
2018-11-01 16:17:23 +00:00
|
|
|
$(BUILD)/meter_supercom587.o \
|
2018-11-23 08:04:31 +00:00
|
|
|
$(BUILD)/meter_iperl.o \
|
2019-05-21 13:18:06 +00:00
|
|
|
$(BUILD)/meter_eurisii.o \
|
2019-02-17 20:47:23 +00:00
|
|
|
$(BUILD)/meter_qcaloric.o \
|
2019-03-15 12:05:54 +00:00
|
|
|
$(BUILD)/meter_apator162.o \
|
2019-03-19 19:53:44 +00:00
|
|
|
$(BUILD)/meter_amiplus.o \
|
2019-04-27 11:31:13 +00:00
|
|
|
$(BUILD)/meter_mkradio3.o \
|
2019-05-01 15:17:21 +00:00
|
|
|
$(BUILD)/meter_vario451.o \
|
2019-10-14 14:53:02 +00:00
|
|
|
$(BUILD)/meter_lansenth.o \
|
2019-10-14 18:26:31 +00:00
|
|
|
$(BUILD)/meter_rfmamb.o \
|
2017-09-02 21:26:57 +00:00
|
|
|
$(BUILD)/printer.o \
|
2017-08-09 10:00:11 +00:00
|
|
|
$(BUILD)/serial.o \
|
2018-11-02 12:50:12 +00:00
|
|
|
$(BUILD)/shell.o \
|
2017-08-31 08:58:39 +00:00
|
|
|
$(BUILD)/util.o \
|
2019-05-04 06:52:25 +00:00
|
|
|
$(BUILD)/units.o \
|
2017-08-09 10:00:11 +00:00
|
|
|
$(BUILD)/wmbus.o \
|
2018-02-28 21:14:16 +00:00
|
|
|
$(BUILD)/wmbus_amb8465.o \
|
2017-08-09 10:00:11 +00:00
|
|
|
$(BUILD)/wmbus_im871a.o \
|
2019-02-25 21:03:20 +00:00
|
|
|
$(BUILD)/wmbus_rtlwmbus.o \
|
2018-03-05 10:29:25 +00:00
|
|
|
$(BUILD)/wmbus_simulator.o \
|
2019-10-15 12:32:32 +00:00
|
|
|
$(BUILD)/wmbus_rawtty.o \
|
2018-03-05 10:29:25 +00:00
|
|
|
$(BUILD)/wmbus_utils.o
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2018-04-20 09:42:46 +00:00
|
|
|
all: $(BUILD)/wmbusmeters $(BUILD)/testinternals
|
2019-01-04 20:25:15 +00:00
|
|
|
@$(STRIP_BINARY)
|
2019-03-12 19:57:13 +00:00
|
|
|
@cp $(BUILD)/wmbusmeters $(BUILD)/wmbusmetersd
|
2019-01-04 20:25:15 +00:00
|
|
|
|
2019-04-13 20:58:40 +00:00
|
|
|
dist: wmbusmeters_$(DEBVERSION)_$(DEBARCH).deb
|
2019-02-23 17:30:16 +00:00
|
|
|
|
|
|
|
install: $(BUILD)/wmbusmeters
|
2019-02-23 18:49:30 +00:00
|
|
|
@./install.sh $(BUILD)/wmbusmeters /
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
@./uninstall.sh /
|
2019-01-04 20:25:15 +00:00
|
|
|
|
2019-04-13 20:58:40 +00:00
|
|
|
wmbusmeters_$(DEBVERSION)_$(DEBARCH).deb:
|
2019-02-23 17:30:16 +00:00
|
|
|
@rm -rf $(BUILD)/debian/wmbusmeters
|
2019-01-04 20:25:15 +00:00
|
|
|
@mkdir -p $(BUILD)/debian/wmbusmeters/DEBIAN
|
2019-02-23 18:49:30 +00:00
|
|
|
@./install.sh --no-adduser $(BUILD)/wmbusmeters $(BUILD)/debian/wmbusmeters
|
2019-01-04 20:25:15 +00:00
|
|
|
@rm -f $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
|
|
|
@echo "Package: wmbusmeters" >> $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
2019-04-13 20:58:40 +00:00
|
|
|
@echo "Version: $(DEBVERSION)" >> $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
2019-01-04 20:25:15 +00:00
|
|
|
@echo "Maintainer: Fredrik Öhrström" >> $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
|
|
|
@echo "Architecture: $(DEBARCH)" >> $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
|
|
|
@echo "Description: A tool to read wireless mbus telegrams from utility meters." >> $(BUILD)/debian/wmbusmeters/DEBIAN/control
|
|
|
|
@(cd $(BUILD)/debian; dpkg-deb --build wmbusmeters .)
|
2019-04-13 20:58:40 +00:00
|
|
|
@mv $(BUILD)/debian/wmbusmeters_$(DEBVERSION)_$(DEBARCH).deb .
|
2019-01-04 20:25:15 +00:00
|
|
|
@echo Built package $@
|
2019-04-13 20:58:40 +00:00
|
|
|
@echo But the deb package is not yet working correctly! Work in progress.
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-10-24 19:06:33 +00:00
|
|
|
$(BUILD)/main.o: $(BUILD)/short_manual.h
|
|
|
|
|
|
|
|
$(BUILD)/wmbusmeters: $(METER_OBJS) $(BUILD)/main.o $(BUILD)/short_manual.h
|
2019-03-15 12:59:26 +00:00
|
|
|
$(CXX) -o $(BUILD)/wmbusmeters $(METER_OBJS) $(BUILD)/main.o $(DEBUG_LDFLAGS) -lpthread
|
2018-12-28 17:35:32 +00:00
|
|
|
|
2019-10-24 19:06:33 +00:00
|
|
|
$(BUILD)/short_manual.h: README.md
|
|
|
|
echo 'R"MANUAL(' > $(BUILD)/short_manual.h
|
|
|
|
sed -n '/wmbusmeters version/,/```/p' README.md \
|
|
|
|
| grep -v 'wmbusmeters version' \
|
|
|
|
| grep -v '```' >> $(BUILD)/short_manual.h
|
|
|
|
echo ')MANUAL";' >> $(BUILD)/short_manual.h
|
|
|
|
|
2019-03-15 12:59:26 +00:00
|
|
|
$(BUILD)/testinternals: $(METER_OBJS) $(BUILD)/testinternals.o
|
|
|
|
$(CXX) -o $(BUILD)/testinternals $(METER_OBJS) $(BUILD)/testinternals.o $(DEBUG_LDFLAGS) -lpthread
|
2017-08-09 10:00:11 +00:00
|
|
|
|
2019-03-15 20:49:18 +00:00
|
|
|
$(BUILD)/fuzz: $(METER_OBJS) $(BUILD)/fuzz.o
|
|
|
|
$(CXX) -o $(BUILD)/fuzz $(METER_OBJS) $(BUILD)/fuzz.o $(DEBUG_LDFLAGS) -lpthread
|
|
|
|
|
2017-08-09 10:00:11 +00:00
|
|
|
clean:
|
2019-01-04 21:27:51 +00:00
|
|
|
rm -rf build/* build_arm/* build_debug/* build_arm_debug/* *~
|
2017-09-02 21:26:57 +00:00
|
|
|
|
2018-01-05 16:46:10 +00:00
|
|
|
test:
|
2018-03-05 10:29:25 +00:00
|
|
|
./test.sh build/wmbusmeters
|
2018-01-05 16:46:10 +00:00
|
|
|
|
2019-03-05 17:38:54 +00:00
|
|
|
testd:
|
|
|
|
./test.sh build_debug/wmbusmeters
|
|
|
|
|
2017-09-02 21:26:57 +00:00
|
|
|
update_manufacturers:
|
2019-04-01 21:22:09 +00:00
|
|
|
iconv -f utf-8 -t ascii//TRANSLIT -c DLMS_Flagids.csv -o tmp.flags
|
|
|
|
cat tmp.flags | grep -v ^# | cut -f 1 > list.flags
|
|
|
|
cat tmp.flags | grep -v ^# | cut -f 2 > names.flags
|
|
|
|
cat tmp.flags | grep -v ^# | cut -f 3 > countries.flags
|
|
|
|
cat countries.flags | sort -u | grep -v '^$$' > uniquec.flags
|
|
|
|
cat names.flags | tr -d "'" | tr -c 'a-zA-Z0-9\n' ' ' | tr -s ' ' | sed 's/^ //g' | sed 's/ $$//g' > ansi.flags
|
|
|
|
cat ansi.flags | sed 's/\(^.......[^0123456789]*\)[0123456789]\+.*/\1/g' > cleaned.flags
|
|
|
|
cat cleaned.flags | sed -e "$$(sed 's:.*:s/&//Ig:' uniquec.flags)" > cleanedc.flags
|
|
|
|
cat cleanedc.flags | sed \
|
|
|
|
-e 's/ ab\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ ag\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ a \?s\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ co\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ b \?v\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ bvba\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ corp\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ d \?o \?o\( \|$$\)/ /g' \
|
|
|
|
-e 's/ d \?d\( \|$$\)/ /g' \
|
|
|
|
-e 's/ gmbh//Ig' \
|
|
|
|
-e 's/ gbr//Ig' \
|
|
|
|
-e 's/ inc\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ kg\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ llc/ /Ig' \
|
|
|
|
-e 's/ ltd//Ig' \
|
|
|
|
-e 's/ limited//Ig' \
|
|
|
|
-e 's/ nv\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ oy//Ig' \
|
|
|
|
-e 's/ ood\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ooo\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ pvt\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ pte\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ pty\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ plc\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ private\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ s \?a\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ sarl\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ sagl\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ s c ul//Ig' \
|
|
|
|
-e 's/ s \?l\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ s \?p \?a\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ sp j\( \|$$\)/ /Ig' \
|
|
|
|
-e 's/ sp z o o//Ig' \
|
|
|
|
-e 's/ s r o//Ig' \
|
|
|
|
-e 's/ s \?r \?l//Ig' \
|
|
|
|
-e 's/ ug\( \|$$\)/ /Ig' \
|
|
|
|
> trimmed.flags
|
|
|
|
cat trimmed.flags | tr -s ' ' | sed 's/^ //g' | sed 's/ $$//g' > done.flags
|
|
|
|
paste -d '|,' list.flags done.flags countries.flags | sed 's/,/, /g' | sed 's/ |/|/g' > manufacturers.txt
|
|
|
|
echo '#ifndef MANUFACTURERS_H' > m.h
|
2018-01-05 16:46:10 +00:00
|
|
|
echo '#define MANUFACTURERS_H' >> m.h
|
2017-09-02 21:26:57 +00:00
|
|
|
echo '#define MANFCODE(a,b,c) ((a-64)*1024+(b-64)*32+(c-64))' >> m.h
|
2019-04-01 21:22:09 +00:00
|
|
|
echo "#define LIST_OF_MANUFACTURERS \\" >> m.h
|
2019-04-27 11:31:13 +00:00
|
|
|
cat manufacturers.txt | sed -e "s/\(.\)\(.\)\(.\).\(.*\)/X(\1\2\3,MANFCODE('\1','\2','\3'),\"\4\")\\\\/g" | sed 's/, ")/")/' >> m.h
|
2017-09-02 21:26:57 +00:00
|
|
|
echo >> m.h
|
2019-04-01 21:22:09 +00:00
|
|
|
cat manufacturers.txt | sed -e "s/\(.\)\(.\)\(.\).*/#define MANUFACTURER_\1\2\3 MANFCODE('\1','\2','\3')/g" >> m.h
|
2017-09-02 21:26:57 +00:00
|
|
|
echo >> m.h
|
|
|
|
echo '#endif' >> m.h
|
2019-03-15 12:05:54 +00:00
|
|
|
mv m.h src/manufacturers.h
|
2019-03-15 12:59:26 +00:00
|
|
|
|
2019-03-15 20:49:18 +00:00
|
|
|
build_fuzz:
|
|
|
|
@if [ "${AFLHOME}" = "" ]; then echo 'You must supply aflhome "make build_fuzz AFLHOME=/home/afl"'; exit 1; fi
|
|
|
|
$(MAKE) AFL_HARDEN=1 CXX=$(AFLHOME)/afl-g++ $(BUILD)/fuzz
|
|
|
|
|
|
|
|
run_fuzz:
|
|
|
|
@if [ "${AFLHOME}" = "" ]; then echo 'You must supply aflhome "make run_fuzz AFLHOME=/home/afl"'; exit 1; fi
|
|
|
|
${AFLHOME}/afl-fuzz -i fuzz_testcases/ -o fuzz_findings/ build/fuzz
|
2019-03-15 12:59:26 +00:00
|
|
|
|
|
|
|
# Include dependency information generated by gcc in a previous compile.
|
|
|
|
include $(wildcard $(patsubst %.o,%.d,$(METER_OBJS)))
|