| ... | ... | @@ -40,160 +40,163 @@ pub const Tz = struct { |
| 40 | 40 | leapseconds: []const Leapsecond, |
| 41 | 41 | footer: []const u8, |
| 42 | 42 | |
| 43 | | pub fn parse(allocator: std.mem.Allocator, data: []const u8) !Tz { |
| 44 | | const header_size = 4 + 1 + 15 + 6 * 4; |
| 45 | | if (data.len < header_size) return error.BadSize; |
| 46 | | |
| 47 | | const magic_l = data[0..4]; |
| 48 | | const version_l = data[4]; |
| 49 | | if (!std.mem.eql(u8, magic_l, "TZif")) return error.BadHeader; |
| 50 | | if (version_l != '2' and version_l != '3') return error.BadVersion; |
| 51 | | |
| 52 | | // Parse the legacy header and skip the entire thing |
| 53 | | const isutcnt_l = std.mem.readIntBig(u32, data[20..24]); |
| 54 | | const isstdcnt_l = std.mem.readIntBig(u32, data[24..28]); |
| 55 | | const leapcnt_l = std.mem.readIntBig(u32, data[28..32]); |
| 56 | | const timecnt_l = std.mem.readIntBig(u32, data[32..36]); |
| 57 | | const typecnt_l = std.mem.readIntBig(u32, data[36..40]); |
| 58 | | const charcnt_l = std.mem.readIntBig(u32, data[40..44]); |
| 59 | | const data_block_size_legacy = timecnt_l * 5 + typecnt_l * 6 + charcnt_l + leapcnt_l * 8 + isstdcnt_l + isutcnt_l; |
| 60 | | if (data.len < header_size + data_block_size_legacy) return error.BadSize; |
| 61 | | |
| 62 | | const data2 = data[header_size + data_block_size_legacy ..]; |
| 63 | | if (data2.len < header_size) return error.BadSize; |
| 64 | | |
| 65 | | const magic = data2[0..4]; |
| 66 | | const version = data2[4]; |
| 67 | | if (!std.mem.eql(u8, magic, "TZif")) return error.BadHeader; |
| 68 | | if (version != '2' and version != '3') return error.BadVersion; |
| 69 | | |
| 70 | | const isutcnt = std.mem.readIntBig(u32, data2[20..24]); |
| 71 | | const isstdcnt = std.mem.readIntBig(u32, data2[24..28]); |
| 72 | | const leapcnt = std.mem.readIntBig(u32, data2[28..32]); |
| 73 | | const timecnt = std.mem.readIntBig(u32, data2[32..36]); |
| 74 | | const typecnt = std.mem.readIntBig(u32, data2[36..40]); |
| 75 | | const charcnt = std.mem.readIntBig(u32, data2[40..44]); |
| 76 | | |
| 77 | | if (isstdcnt != 0 and isstdcnt != typecnt) return error.Malformed; // rfc8536: isstdcnt [...] MUST either be zero or equal to "typecnt" |
| 78 | | if (isutcnt != 0 and isutcnt != typecnt) return error.Malformed; // rfc8536: isutcnt [...] MUST either be zero or equal to "typecnt" |
| 79 | | if (typecnt == 0) return error.Malformed; // rfc8536: typecnt [...] MUST NOT be zero |
| 80 | | if (charcnt == 0) return error.Malformed; // rfc8536: charcnt [...] MUST NOT be zero |
| 81 | | |
| 82 | | const data_block_size = timecnt * 9 + typecnt * 6 + charcnt + leapcnt * 12 + isstdcnt + isutcnt; |
| 83 | | if (data2.len < header_size + data_block_size) return error.BadSize; |
| 84 | | |
| 85 | | var leapseconds = try allocator.alloc(Leapsecond, leapcnt); |
| 43 | pub fn parse(allocator: std.mem.Allocator, reader: anytype) !Tz { |
| 44 | _ = allocator; |
| 45 | const Header = extern struct { |
| 46 | magic: [4]u8, |
| 47 | version: u8, |
| 48 | reserved: [15]u8, |
| 49 | }; |
| 50 | |
| 51 | const Counts = extern struct { |
| 52 | isutcnt: u32, |
| 53 | isstdcnt: u32, |
| 54 | leapcnt: u32, |
| 55 | timecnt: u32, |
| 56 | typecnt: u32, |
| 57 | charcnt: u32, |
| 58 | }; |
| 59 | |
| 60 | // Parse and skip the legacy header and data |
| 61 | { |
| 62 | const header = try reader.readStruct(Header); |
| 63 | if (!std.mem.eql(u8, &header.magic, "TZif")) return error.BadHeader; |
| 64 | if (header.version == 0) return error.UnsupportedLegacyFormat; |
| 65 | if (header.version != '2' and header.version != '3') return error.BadVersion; |
| 66 | |
| 67 | var counts = try reader.readStruct(Counts); |
| 68 | if (builtin.target.cpu.arch.endian() != std.builtin.Endian.Big) { |
| 69 | std.mem.bswapAllFields(Counts, &counts); |
| 70 | } |
| 71 | |
| 72 | const skipv = counts.timecnt * 5 + counts.typecnt * 6 + counts.charcnt + counts.leapcnt * 8 + counts.isstdcnt + counts.isutcnt; |
| 73 | try reader.skipBytes(skipv, .{}); |
| 74 | } |
| 75 | |
| 76 | const header = try reader.readStruct(Header); |
| 77 | if (!std.mem.eql(u8, &header.magic, "TZif")) return error.BadHeader; |
| 78 | if (header.version != '2' and header.version != '3') return error.BadVersion; |
| 79 | |
| 80 | var counts = try reader.readStruct(Counts); |
| 81 | if (builtin.target.cpu.arch.endian() != std.builtin.Endian.Big) { |
| 82 | std.mem.bswapAllFields(Counts, &counts); |
| 83 | } |
| 84 | |
| 85 | if (counts.isstdcnt != 0 and counts.isstdcnt != counts.typecnt) return error.Malformed; // rfc8536: isstdcnt [...] MUST either be zero or equal to "typecnt" |
| 86 | if (counts.isutcnt != 0 and counts.isutcnt != counts.typecnt) return error.Malformed; // rfc8536: isutcnt [...] MUST either be zero or equal to "typecnt" |
| 87 | if (counts.typecnt == 0) return error.Malformed; // rfc8536: typecnt [...] MUST NOT be zero |
| 88 | if (counts.charcnt == 0) return error.Malformed; // rfc8536: charcnt [...] MUST NOT be zero |
| 89 | if (counts.charcnt > 256 + 6) return error.Malformed; // Not explicitly banned by rfc8536 but nonsensical |
| 90 | |
| 91 | var leapseconds = try allocator.alloc(Leapsecond, counts.leapcnt); |
| 86 | 92 | errdefer allocator.free(leapseconds); |
| 87 | | var transitions = try allocator.alloc(Transition, timecnt); |
| 93 | var transitions = try allocator.alloc(Transition, counts.timecnt); |
| 88 | 94 | errdefer allocator.free(transitions); |
| 89 | | var timetypes = try allocator.alloc(Timetype, typecnt); |
| 95 | var timetypes = try allocator.alloc(Timetype, counts.typecnt); |
| 90 | 96 | errdefer allocator.free(timetypes); |
| 91 | 97 | |
| 92 | | var p: usize = header_size; |
| 93 | | |
| 94 | | // First, parse timezone designators ahead of time so that we can reject malformed files early |
| 95 | | const designators = data2[header_size + timecnt * 9 + typecnt * 6 .. header_size + timecnt * 9 + typecnt * 6 + charcnt]; |
| 96 | | if (designators[designators.len - 1] != 0) return error.Malformed; // rfc8536: charcnt [...] includes the trailing NUL (0x00) octet |
| 97 | | |
| 98 | 98 | // Parse transition types |
| 99 | 99 | var i: usize = 0; |
| 100 | | while (i < timecnt) : (i += 1) { |
| 101 | | transitions[i].ts = std.mem.readIntSliceBig(i64, data2[p .. p + 8]); |
| 102 | | p += 8; |
| 100 | while (i < counts.timecnt) : (i += 1) { |
| 101 | transitions[i].ts = try reader.readIntBig(i64); |
| 103 | 102 | } |
| 104 | 103 | |
| 105 | 104 | i = 0; |
| 106 | | while (i < timecnt) : (i += 1) { |
| 107 | | const tt = data2[p]; |
| 105 | while (i < counts.timecnt) : (i += 1) { |
| 106 | const tt = try reader.readByte(); |
| 108 | 107 | if (tt >= timetypes.len) return error.Malformed; // rfc8536: Each type index MUST be in the range [0, "typecnt" - 1] |
| 109 | 108 | transitions[i].timetype = &timetypes[tt]; |
| 110 | | p += 1; |
| 111 | 109 | } |
| 112 | 110 | |
| 113 | 111 | // Parse time types |
| 114 | 112 | i = 0; |
| 115 | | while (i < typecnt) : (i += 1) { |
| 116 | | const offset = std.mem.readIntSliceBig(i32, data2[p .. p + 4]); |
| 113 | while (i < counts.typecnt) : (i += 1) { |
| 114 | const offset = try reader.readIntBig(i32); |
| 117 | 115 | if (offset < -2147483648) return error.Malformed; // rfc8536: utoff [...] MUST NOT be -2**31 |
| 118 | | const dst = data2[p + 4]; |
| 116 | const dst = try reader.readByte(); |
| 119 | 117 | if (dst != 0 and dst != 1) return error.Malformed; // rfc8536: (is)dst [...] The value MUST be 0 or 1. |
| 120 | | const idx = data2[p + 5]; |
| 121 | | if (idx > designators.len - 1) return error.Malformed; // rfc8536: (desig)idx [...] Each index MUST be in the range [0, "charcnt" - 1] |
| 122 | | |
| 123 | | const name = std.mem.sliceTo(designators[idx..], 0); |
| 124 | | |
| 125 | | // We are mandating the "SHOULD" 6-character limit so we can pack the struct better, and to conform to POSIX. |
| 126 | | if (name.len > 6) return error.Malformed; // rfc8536: Time zone designations SHOULD consist of at least three (3) and no more than six (6) ASCII characters. |
| 127 | | |
| 118 | const idx = try reader.readByte(); |
| 119 | if (idx > counts.charcnt - 1) return error.Malformed; // rfc8536: (desig)idx [...] Each index MUST be in the range [0, "charcnt" - 1] |
| 128 | 120 | timetypes[i] = .{ |
| 129 | 121 | .offset = offset, |
| 130 | 122 | .flags = dst, |
| 131 | 123 | .name_data = undefined, |
| 132 | 124 | }; |
| 133 | 125 | |
| 134 | | std.mem.copy(u8, timetypes[i].name_data[0..], name); |
| 135 | | timetypes[i].name_data[name.len] = 0; |
| 136 | | |
| 137 | | p += 6; |
| 126 | // Temporarily cache idx in name_data to be processed after we've read the designator names below |
| 127 | timetypes[i].name_data[0] = idx; |
| 138 | 128 | } |
| 139 | 129 | |
| 140 | | // Skip the designators we got earlier |
| 141 | | p += charcnt; |
| 130 | var designators_data: [256 + 6]u8 = undefined; |
| 131 | try reader.readNoEof(designators_data[0..counts.charcnt]); |
| 132 | const designators = designators_data[0..counts.charcnt]; |
| 133 | if (designators[designators.len - 1] != 0) return error.Malformed; // rfc8536: charcnt [...] includes the trailing NUL (0x00) octet |
| 134 | |
| 135 | // Iterate through the timetypes again, setting the designator names |
| 136 | for (timetypes) |*tt| { |
| 137 | const name = std.mem.sliceTo(designators[tt.name_data[0]..], 0); |
| 138 | // We are mandating the "SHOULD" 6-character limit so we can pack the struct better, and to conform to POSIX. |
| 139 | if (name.len > 6) return error.Malformed; // rfc8536: Time zone designations SHOULD consist of at least three (3) and no more than six (6) ASCII characters. |
| 140 | std.mem.copy(u8, tt.name_data[0..], name); |
| 141 | tt.name_data[name.len] = 0; |
| 142 | } |
| 142 | 143 | |
| 143 | 144 | // Parse leap seconds |
| 144 | 145 | i = 0; |
| 145 | | while (i < leapcnt) : (i += 1) { |
| 146 | | const occur = std.mem.readIntSliceBig(i64, data2[p .. p + 8]); |
| 146 | while (i < counts.leapcnt) : (i += 1) { |
| 147 | const occur = try reader.readIntBig(i64); |
| 147 | 148 | if (occur < 0) return error.Malformed; // rfc8536: occur [...] MUST be nonnegative |
| 148 | 149 | if (i > 0 and leapseconds[i - 1].occurrence + 2419199 > occur) return error.Malformed; // rfc8536: occur [...] each later value MUST be at least 2419199 greater than the previous value |
| 149 | 150 | if (occur > std.math.maxInt(i48)) return error.Malformed; // Unreasonably far into the future |
| 150 | 151 | |
| 151 | | const corr = std.mem.readIntSliceBig(i32, data2[p + 8 .. p + 12]); |
| 152 | const corr = try reader.readIntBig(i32); |
| 152 | 153 | if (i == 0 and corr != -1 and corr != 1) return error.Malformed; // rfc8536: The correction value in the first leap-second record, if present, MUST be either one (1) or minus one (-1) |
| 153 | | if (i > 0 and leapseconds[i - 1].correction != corr + 1 and leapseconds[i - 1].correction != corr - 1) return error.Malformed; // rfc8536: The correction values in adjacent leap- second records MUST differ by exactly one (1) |
| 154 | if (i > 0 and leapseconds[i - 1].correction != corr + 1 and leapseconds[i - 1].correction != corr - 1) return error.Malformed; // rfc8536: The correction values in adjacent leap-second records MUST differ by exactly one (1) |
| 154 | 155 | if (corr > std.math.maxInt(i16)) return error.Malformed; // Unreasonably large correction |
| 155 | 156 | |
| 156 | 157 | leapseconds[i] = .{ |
| 157 | 158 | .occurrence = @intCast(i48, occur), |
| 158 | 159 | .correction = @intCast(i16, corr), |
| 159 | 160 | }; |
| 160 | | p += 12; |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | // Parse standard/wall indicators |
| 164 | 164 | i = 0; |
| 165 | | while (i < isstdcnt) : (i += 1) { |
| 166 | | const stdtime = data2[p]; |
| 165 | while (i < counts.isstdcnt) : (i += 1) { |
| 166 | const stdtime = try reader.readByte(); |
| 167 | 167 | if (stdtime == 1) { |
| 168 | 168 | timetypes[i].flags |= 0x02; |
| 169 | 169 | } |
| 170 | | p += 1; |
| 171 | 170 | } |
| 172 | 171 | |
| 173 | 172 | // Parse UT/local indicators |
| 174 | 173 | i = 0; |
| 175 | | while (i < isutcnt) : (i += 1) { |
| 176 | | const ut = data2[p]; |
| 174 | while (i < counts.isutcnt) : (i += 1) { |
| 175 | const ut = try reader.readByte(); |
| 177 | 176 | if (ut == 1) { |
| 178 | 177 | timetypes[i].flags |= 0x04; |
| 179 | 178 | if (!timetypes[i].standardTimeIndicator()) return error.Malformed; // rfc8536: standard/wall value MUST be one (1) if the UT/local value is one (1) |
| 180 | 179 | } |
| 181 | | p += 1; |
| 182 | 180 | } |
| 183 | 181 | |
| 182 | if ((try reader.readByte()) != '\n') return error.Malformed; // An rfc8536 footer must start with a newline |
| 183 | |
| 184 | 184 | // Footer |
| 185 | | if (data2[p..].len < 2) return error.Malformed; // rfc8536 requires at least 2 newlines |
| 186 | | if (data2[p] != '\n') return error.Malformed; // Not a rfc8536 footer |
| 187 | | const footer_end = std.mem.indexOfScalar(u8, data2[p + 1 ..], '\n') orelse return error.Malformed; // No 2nd rfc8536 newline |
| 188 | | const footer = try allocator.dupe(u8, data2[p + 1 .. p + 1 + footer_end]); |
| 189 | | errdefer allocator.free(footer); |
| 185 | var footerdata_buf: [128]u8 = undefined; |
| 186 | const footer = reader.readUntilDelimiter(&footerdata_buf, '\n') catch |err| switch (err) { |
| 187 | error.StreamTooLong => return error.OverlargeFooter, // Read more than 128 bytes, much larger than any reasonable POSIX TZ string |
| 188 | else => return err, |
| 189 | }; |
| 190 | |
| 191 | const footer_dup = try allocator.dupe(u8, footer); |
| 192 | errdefer allocator.free(footer_dup); |
| 190 | 193 | |
| 191 | 194 | return Tz{ |
| 192 | 195 | .allocator = allocator, |
| 193 | 196 | .transitions = transitions, |
| 194 | 197 | .timetypes = timetypes, |
| 195 | 198 | .leapseconds = leapseconds, |
| 196 | | .footer = footer, |
| 199 | .footer = footer_dup, |
| 197 | 200 | }; |
| 198 | 201 | } |
| 199 | 202 | |
| ... | ... | @@ -205,14 +208,27 @@ pub const Tz = struct { |
| 205 | 208 | } |
| 206 | 209 | }; |
| 207 | 210 | |
| 208 | | test "parse" { |
| 209 | | // Asia/Tokyo is good for embedding, as Japan only had DST for a short while during the US occupation |
| 211 | test "slim" { |
| 210 | 212 | const data = @embedFile("tz/asia_tokyo.tzif"); |
| 211 | | var tz = try Tz.parse(std.testing.allocator, data); |
| 213 | var in_stream = std.io.fixedBufferStream(data); |
| 214 | |
| 215 | var tz = try std.Tz.parse(std.testing.allocator, in_stream.reader()); |
| 212 | 216 | defer tz.deinit(); |
| 213 | 217 | |
| 214 | 218 | try std.testing.expectEqual(tz.transitions.len, 9); |
| 215 | 219 | try std.testing.expect(std.mem.eql(u8, tz.transitions[3].timetype.name(), "JDT")); |
| 216 | | try std.testing.expectEqual(tz.transitions[5].ts, -620298000); // 1950-05-06 15:00:00 (UTC) |
| 217 | | try std.testing.expectEqual(tz.leapseconds[13].occurrence, 567993613); // 1988-01-01 00:00:13 (IAT) |
| 220 | try std.testing.expectEqual(tz.transitions[5].ts, -620298000); // 1950-05-06 15:00:00 UTC |
| 221 | try std.testing.expectEqual(tz.leapseconds[13].occurrence, 567993613); // 1988-01-01 00:00:00 UTC (+23s in TAI, and +13 in the data since it doesn't store the initial 10 second offset) |
| 222 | } |
| 223 | |
| 224 | test "fat" { |
| 225 | const data = @embedFile("tz/antarctica_davis.tzif"); |
| 226 | var in_stream = std.io.fixedBufferStream(data); |
| 227 | |
| 228 | var tz = try std.Tz.parse(std.testing.allocator, in_stream.reader()); |
| 229 | defer tz.deinit(); |
| 230 | |
| 231 | try std.testing.expectEqual(tz.transitions.len, 8); |
| 232 | try std.testing.expect(std.mem.eql(u8, tz.transitions[3].timetype.name(), "+05")); |
| 233 | try std.testing.expectEqual(tz.transitions[4].ts, 1268251224); // 2010-03-10 20:00:00 UTC |
| 218 | 234 | } |