offPasswd := uint16(data.Len())
data.Write([]byte(g.Passwd))
data.WriteByte(0)
- // Padding to align the following uint16
- if data.Len()%2 != 0 {
- data.WriteByte(0)
- }
+ alignBufferTo(&data, 2) // align the following uint16
offMemOff := uint16(data.Len())
// Offsets for group members
offMem := offMemOff + 2*uint16(len(mems_off))
res.Write(data.Bytes())
// We must pad each entry so that all uint64 at the beginning of the
// struct are 8 byte aligned
- l := res.Len()
- if l%8 != 0 {
- for i := 0; i < 8-l%8; i++ {
- res.WriteByte(0)
- }
- }
+ alignBufferTo(&res, 8)
return res.Bytes()
}
--- /dev/null
+// Miscellaneous functions
+
+// Copyright (C) 2019 Simon Ruderich
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero 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 Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+package main
+
+import (
+ "bytes"
+ "fmt"
+)
+
+func alignBufferTo(b *bytes.Buffer, align int) {
+ if align <= 0 {
+ panic(fmt.Sprintf("invalid alignment %v", align))
+ }
+
+ l := b.Len()
+ if l%align == 0 {
+ return
+ }
+ for i := 0; i < align-l%align; i++ {
+ b.WriteByte(0)
+ }
+}
res.Write(data.Bytes())
// We must pad each entry so that all uint64 at the beginning of the
// struct are 8 byte aligned
- l := res.Len()
- if l%8 != 0 {
- for i := 0; i < 8-l%8; i++ {
- res.WriteByte(0)
- }
- }
+ alignBufferTo(&res, 8)
return res.Bytes()
}