-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathChangeLog
23553 lines (15400 loc) · 740 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2025-01-21 Albert Chu <[email protected]>
* README.build: Add notes on building with systemd.
2024-12-13 Albert Chu <[email protected]>
* ipmi-raw: removed unused variable
2024-04-12 Albert Chu <[email protected]>
* man/ipmipower.8.pre.in: Add help about "ipmiping" workaround and
document it is needed on Intel M50FCP.
2024-04-05 Albert Chu <[email protected]>
* libfreeipmi/api/ipmi-api.c (ipmi_cmd): Remove duplicate
parameter check.
2024-04-02 Albert Chu <[email protected]>
* ipmiconsole/ipmiconsole-argp.c, man/ipmiconsole.8.pre.in:
--debugfile only available in debug mode.
2024-03-22 Albert Chu <[email protected]>
* libfreeipmi/sel/ipmi-sel-string-supermicro-common.h: Add missing
function prototype.
2024-03-22 Alex Owen
* ipmi-oem/ipmi-oem-dell.c
(ipmi_oem_dell_get_power_consumption_data): Increase output
precision in cumalative energy output.
2024-02-21 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c
(ipv6_dynamic_address_source_type_checkout): Fix incorrect output
of IPv6_Dynamic_Address_Source_Type.
2024-01-27 Albert Chu <[email protected]>
* configure.ac: Remove duplicate inb/outb declaration check. Could
lead to broken builds on non-x86 systems.
2024-01-26 Albert Chu <[email protected]>
* ipmi-sensors: support new "altbridging" workaround for Lenovo
SR650 v3 motherboards.
2024-01-26 Albert Chu <[email protected]>
* Globally replace use of MAXHOSTNAMELEN with internal
FREEIPMI_MAXHOSTNAMELEN which is set to 256 bytes (vs the typical
64 bytes that MAXHOSTNAMELEN). This allows hostnames of > 64
characters in length to be specified.
2024-01-25 Anonymous
* configure.ac: check for inb and outb declarations in header
files.
2023-12-17 Albert Chu <[email protected]>
* libfreeipmi/interpret: Support intepretation of physical
intrusion + state sensors.
2023-09-29 Albert Chu <[email protected]>
* README: add rpm build notes
2023-09-28 Albert Chu <[email protected]>
* configure.ac: temporarily set version to 1.7.0 for user to
experiment with installed build.
* README: add some build notes / help.
2023-09-05 Felip Moll <[email protected]>
* libfreeipmi/driver/ipmi-openipmi-driver.c (_openipmi_read):
Convert from select() to poll() to avoid issues with high number
of open file descriptors when next fd > 1024. (GNU bug #64721).
2023-09-05 Albert Chu <[email protected]>
* Globally fix various typos.
2023-09-05 MIYAZAKI Yasushi (on Savannah)
* configure.ac: Add define definitions for `exp10', `exp2', `log2'
to config.h.in.
* configure.ac: Add define definition for `cbrt' in math library
to config.h.in
* configure.ac: 'inb' and `outb' may be defined as inline
functions (ex. glibc 2.28 on debian buster (amd64)), so check with
AC_CHECK_DECL instead of AC_CHECK_FUNCS . Due to `Fix build issue
when inb/outb are not available on some systems' in 1.6.9 release,
the previously working kcs driver was causing errors.
2023-09-05 Albert Chu <[email protected]>
* man/ipmi-oem.8.pre.in: Document support on Supermicro X9DRD.
2023-09-04 Albert Chu <[email protected]>
* ipmi-oem/ipmi-oem-supermicro.c
(ipmi_oem_supermicro_get_power_supply_status2): Fix comment typo.
2023-09-02 Albert Chu <[email protected]>
* man/Makefile.am: Fix make distcheck.
2023-09-02 Albert Chu <[email protected]>
* man/ipmi-config.8.pre.in: Add pointer to ipmi-config.conf(5)
manpage so users know to look there.
2023-08-29 Albert Chu <[email protected]>
* common/miscutil/fi_hostlist.c: Fix compiler warnings.
2023-08-28 Albert Chu <[email protected]>
* common/miscutil/hostlist.[ch]: Update to version from pdsh to
eliminate compiler warnings.
* common/miscutil/fi_hostlist.c: Fix some compiler warnings,
copying style fix from hostlist.c.
2023-08-27 Albert Chu <[email protected]>
* configure.ac: fix warning by moving AC_USE_SYSTEM_EXTENSIONS
earlier in the file before some checks are done.
2023-07-18 Albert Chu <[email protected]>
* common/portability/freeipmi-portability.h: Fix portability of
cbrt() redefinition. cube root is x^(1/3) not x^-3.
2023-06-22 Albert Chu <[email protected]>
* doc/freeipmi-bugs-and-workarounds.txt: Document issue with
Vadatech VT811.
2023-06-07 Albert Chu <[email protected]>
* libfreeipmi/include: Add missing xilinx header to dist.
2023-06-06 Albert Chu <[email protected]>
* common/toolcommon/tool-cmdline-common.h,
common/toolcommon/tool-cmdline-common.c: Remove legacy SDR options
-f and -q. Update users accordingly.
* ipmi-config/ipmi-config.h: Remove legacy / unused macro.
* ipmi-config: Remove legacy -f command line option.
* ipmi-oem: Remove intelnm legacy commands
get-node-manager-alert-thresholds and
set-node-manager-alert-thresholds.
* ipmi-oem: Remove legacy support of "inlet" as input for
"get-node-manager-capabilities policytrigger" and
"set-node-manager-policy policytrigger".
2023-06-05 Albert Chu <[email protected]>
* libipmimonitoring/ipmi_monitoring_sensor_reading.c
(_get_sensor_units): Handle special case when sensor has units
"RPM" and the units rate is "per minute".
2023-06-05 Albert Chu <[email protected]>
* libfreeipmi/spec: Update enterprise numbers scripts
* libfreeipmi/spec: Update enterprise numbers. Hand remove few
instances where vendor decided to put their URL in their company
name.
2023-06-05 Albert Chu <[email protected]>
* ipmi-oem: Remove legacy Dell get-system-info "slot-number" key.
Users should use "blade-slot-info".
* bmc-watchdog: remove legacy --logfile option and config
file support.
* libfreeipmi: remove legacy Dell macro from reverse engineering attempt.
2023-06-02 Albert Chu <[email protected]>
* libfreeipmi: Fix typo.
2023-05-15 Albert Chu <[email protected]>
* libfreeipmi, libipmimonitoring: Fix various function and macro
typos
2023-05-15 Albert Chu <[email protected]>
* doc, man: fix a number of typos
* bmc-device, ipmi-fru, ipmi-oem: Fix several output typos
* global: Fix various comment / doc typos.
* contrib/pet/petalert.pl: Change output error message typo.
* libfreeipmi/include/freeipmi/sel/ipmi-sel.h: Fix typo in
function prototype parameter.
* libfreeipmi/include/freeipmi/spec/ipmi-rmcpplus-status-spec.h:
Fix typo in error message string.
* libfreeipmi/sel/ipmi-sel-string-intel-windmill.c
(sel_string_output_intel_windmill_event_data1_class_sensor_specific_discrete),
libfreeipmi/util/ipmi-sensor-and-event-code-tables-util.c
(ipmi_get_oem_sensor_type_message): Fix output typos.
2023-05-12 Albert Chu <[email protected]>
* ipmiseld/ipmiseld-ipmi-communication.c (ipmiseld_ipmi_setup),
ipmiseld/ipmiseld-cache.c (ipmiseld_sdr_cache_create_and_load):
Set initialized pointers to NULL to avoid double free when
_ipmiseld_poll() exits.
2023-03-29 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-rmcpplus-conf-privilege-section.c:
support config Maximum_Privilege_Cipher_Suite_Id_16
2022-11-08 Christian Kohn <[email protected]>
* libfreeipmi, ipmi-fru: Support xilinx OEM fru records.
2022-11-08 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/spec/ipmi-iana-enterprise-numbers-spec.h:
Fix comment typo.
2022-11-04 Sam James <[email protected]>
* configure.ac: Fix various portability to clang.
2022-11-02 Fabrice Fontaine <[email protected]>
* configure.ac: support --disable-doc.
2022-10-27 Albert Chu <[email protected]>
* doc/freeipmi-bugs-and-workarounds.txt: Document issue with
Intel M50CYP.
* doc/ipmi-second-gen-interface-spec-v2-rev1-1.pdf: Store copy of
IPMI spec with final revisions. Since there will be no future
updates.
2022-10-26 Mert Kirpici <[email protected]>
* ipmi-sel: accept ISO 8601 for date range options.
2022-10-06 Albert Chu <[email protected]>
* doc/freeipmi-bugs-and-workarounds.txt: fix typo
2022-09-19 Albert Chu <[email protected]>
* configure.ac: Add extra build help.
2022-09-06 Albert Chu <[email protected]>
* common/portability/freeipmi-argp-fmtstream.h: Do not optimize under
cygwin, fixes portability issues.
2022-08-31 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/sel/: Remove no longer relevant
comments.
2022-08-30 Albert Chu <[email protected]>
* ipmi-raw: Remove legacy options --channel-number
(--target-channel-number since 1.2.1), --slave-address
(--target-slave-address since 1.2.1).
* ipmipower: Remove no longer relevant comment.
* ipmidetectd: Remove legacy --config_file support (--config-file
since 1.2.1)
* ipmidetect: Remove legacy -o short option (-h since 1.2.1)
* ipmi-sel: Remove legacy option --assume-system-event-records
(use -W assumesystemevent since 1.2.1)
* ipmi-fru: Remove legacy option --skip-checks(use -W skipchecks
since 1.2.1)
* ipmi-sensors: Remove "ipmi-sensors-sensor-config-file" config
file support (use "ipmi-sensors-sensor-state-config-file" since
1.0.0). Remove "ipmi-sensors-groups" and
"ipmi-sensors-exclude-groups" config file options (use
"ipmi-sensors-sensor-types" and
"ipmi-sensor-exclude-sensor-types" since 0.8.1).
* ipmi-sensors: Remove all "ipmimonitoring" legacy config file
options. Use "ipmi-sensors" ones instead (since 0.8.1).
2022-02-17 Albert Chu <[email protected]>
* man/ipmiconsole.8.pre.in, man/libipmiconsole.3.pre.in,
libipmiconsole.conf.5.pre.in: Fix typo in copyright header.
* Globally update a number of URLs in documentation / comments.
2022-02-17 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-sections.c
(ipmi_config_core_sections_create): Support IPV6 config in
Lan6_Conf section.
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c:
Correct checkout of IPv6 dynamic addresses.
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c: Do
not output all IPv6 addresses by default, only output them all in
verbose mode.
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c
(ipv6_static_router_mac_address_checkout): Fix output corner case
due to error handling bug.
* libfreeipmi/cmds/ipmi-lan-cmds.c
(fill_cmd_set_lan_configuration_parameters_ipv6_static_addresses):
Fix invalid template check error.
2022-02-14 Albert Chu <[email protected]>
* man/ipmi-config.8.pre.in: Document additional board that
requires the `veryslowcommit` workaround.
2022-01-25 Albert Chu <[email protected]>
* man/ipmidetect.8.pre.in, man/ipmidetectd.8.pre.in: Correct out
of date command line options.
2022-01-25 Albert Chu <[email protected]>
* Remove legacy support for the /etc/freeipmi.conf,
/etc/ipmidetect.conf, /etc/ipmidetectd.conf, and
/etc/ipmi_monitoring_sensors.conf config files.
* ipmi-oem: Remove legacy retrieval key 'product-name' from
'get-system-info' command. Users should use
'platform-model-name'.
2022-01-19 Albert Chu <[email protected]>
* libfreeipmi/libcommon/ipmi-md2.h,
libfreeipmi/libcommon/ipmi-md2.c,
libfreeipmi/libcommon/ipmi-md5.h,
libfreeipmi/libcommon/ipmi-md5.c: Static compilation with
libfreeipmi can lead to problems if other software has similarly
named md2/md5 functions (such as md5_init()). Prefix all macros
and functions with 'ipmi_' as needed. Update all callers
accordingly.
2022-01-18 Fabrice Fontaine <[email protected]>
* configure.ac: use pkg-config to find gcrypt
2022-01-04 Fabrice Fontaine <[email protected]>
* configure.ac, libfreeipmi/driver/ipmi-kcs-driver.c: Check for
inb and outb before using them.
2022-01-04 Fabien Wernli
* doc/freeipmi-faq.texi: Add conserver setup information.
2021-11-01 Fabrice Fontaine <[email protected]>
* libfreeipmi/driver/ipmi-sunbmc-driver.c: musl doesn't provide
getmsg or putmsg even if stropts.h is available. Do not compile
respective sections if get/putmsg are not available.
2021-08-11 Robin Lee Powell <[email protected]>
* libipmiconsole: Document getty/agetty issue with serial
keepalive
2021-05-28 Albert Chu <[email protected]>
* configure.ac: Support --with-systemconfigdir option.
2021-05-29 Heather Lemon <[email protected]>
* libfreeipmi/sensor-read/ipmi-sensor-read.c: (LP#1926299)
Incorrect sensor reading reported.
BMC's that use a non-zero 'LUN' number (00b-10b)
will display an incorrect sensor temperature reading unless
otherwise specified via the ipmiV2.0 spec and must be accessed via LUN 00b.
2021-03-27 Albert Chu <[email protected]>
* etc: Generate many files via configure to ensure proper paths
are set.
* man/bmc-watchdog.8.pre.in: Remove legacy documentation.
2021-02-10 Albert Chu <[email protected]>
* libfreeipmi/fru: Remove unused function parameter 'standby' in
ipmi_fru_multirecord_dc_load().
2021-02-10 Albert Chu <[email protected]>
* libfreeipmi/fru/ipmi-fru-data.c: Fix invalid parsing of record
in ipmi_fru_multirecord_dc_load() and
ipmi_fru_multirecord_extended_dc_load().
2021-02-10 Albert Chu <[email protected]>
* Globally fix minor compiler warnings. A number are related to
the removal of legacy support.
2021-02-07 Albert Chu <[email protected]>
* libfreeipmi/fru/ipmi-fru.c: Do not require ipmi_ctx to be set if
loading data via buffer in ipmi_fru_open_device_id_with_buffer().
* ipmi-fru: Do not require opening of an IPMI session if using
--fru-file option.
2021-02-07 Albert Chu <[email protected]>
* etc/: Update conf file permissions.
* Globally fix a number of typos.
2021-02-06 Fabio Fantoni <[email protected]>
* etc/: Update systemd service files permissions.
2020-09-30 Albert Chu <[email protected]>
* man/manpage-common-workaround-extra-text.man: Document that
Supermicro boards don't work with IPMI 1.5.
2020-09-21 Albert Chu <[email protected]>
* man/ipmi-sel.8.pre.in: Fix typo
2020-09-03 Christian Ehrhardt <[email protected]>
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c
(_ipmi_acpi_get_table_dev_mem): Fix segfault
2020-07-28 Albert Chu <[email protected]>
* man/freeipmi.conf.5.pre.in: Fix typo
2020-01-31 Albert Chu <[email protected]>
* ipmi-sensors: Remove legacy output support.
* ipmi-sensors, ipmi-sel: Remove legacy output support.
* man/ipmi-sensors.8.pre.in, man/ipmi-sel.8.pre.in,
man/freeipmi.conf.5.pre.in: Remove legacy options.
* man/manpage-common-legacy-output.man: Remove now unnecessary
file.
* ipmipower: Remove legacy options --ipmi-version (--driver-type
since 0.7.1), --retry-wait-timeout (--retransmission-wait-timeout
since 0.5.1), --retry-backoff-count
(--retransmission-backoff-count since 0.5.1).
* libfreeipmi/sel: Remove support of IPMI_SEL_STRING_FLAGS_LEGACY.
The macro IPMI_SEL_STRING_FLAGS_LEGACY is no longer legal.
* common/toolcommon/tool-cmdline-common.h,
common/toolcommon/tool-cmdline-common.c: Remove many legacy
command line options (--no-probing, --reg-space, --timeout,
--retry-timeout, --auth-type, --privilege, --priv-level,
--config).
* ipmi-sensors: Remove legacy options (--sensors, --group,
--groups, --sensor-type, --exclude-groups, --list-groups,
--sensor-config-file).
* ipmi-chassis: Remove legacy options (--get-capabilities,
--get-status, --set-power-restore-policy, --set-power-cycle-interval,
--set-boot-flags, --boot-type, --lock-out-reset-button, --blank-screen,
--boot-device, --lock-keyboard, --clear-cmos, --console-redirection,
--user-password-bypass, --force-progress-event-traps, --firmware-bios-verbosity,
--get-boot-flags).
* ipmi-sel: Remove legacy option --delete-all.
* ipmiconsole: Remove support of legacy /etc/ipmiconsole.conf file.
* configure.ac: Remove legacy /etc/ipmiconsole.conf file support.
* common/toolcommon/tool-config-file-common.c: Remove legacy ipmiconsole config file support.
* config/ac_ipmiconsole_config_file.m4: Removed file.
* ipmipower: Remove support of legacy /etc/ipmipower.conf file.
* configure.ac: Remove legacy /etc/ipmipower.conf file support.
* common/toolcommon/tool-config-file-common.c: Remove legacy ipmipower config file support.
* config/ac_ipmipower_config_file.m4: Removed file.
* common/toolcommon/tool-config-file-common.c: Remove legacy config file options.
* ipmi-oem: Remove legacy OEM Dell commands.
* etc/freeipmi.conf: Remove legacy output options.
* ipmipower: Remove legacy prompt options.
* ipmi-oem: Remove legacy OEM Inventec commands.
* ipmi-config: Remove ancient backwards compatibility config field names.
* common/parsecommon/parse-common.c: Don't support "plain" as an authentication type.
2020-01-28 Albert Chu <[email protected]>
* man/ipmi-oem.8.pre.in: Fix formatting typo that led to line not
appearing in manpage.
2020-01-28 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-common-spec.h,
libfreeipmi/sel/ipmi-sel-string-intel-xeon-common.c,
libfreeipmi/sel/ipmi-sel-string-intel-xeon-broadwell-common.c:
Move mirroring redundancy and some memory error macros / oem
extensions from xeon to xeon broadwell common. They do not belong
in s2600bpb support.
* libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600bpb-spec.h,
libfreeipmi/sel/ipmi-sel-string-intel-xeon-broadwell-common.c: add
S2600BPB dimm OEM specific extensions.
2020-01-16 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/spec/ipmi-product-id-spec.h: Add
Intel S2600BPB product id.
* ipmi-oem/ipmi-oem-intel.c (_get_smtp_configuration_data)
(_set_smtp_configuration_data),
libfreeipmi/include/freeipmi/spec/oem/ipmi-netfn-oem-intel-spec.h:
Update missing comments on motherboard support.
* libfreeipmi/include/freeipmi/spec/oem/ipmi-sensor-types-oem-intel-spec.h:
Remove accidental Dell sensor types included in header.
* libfreeipmi/include/freeipmi/spec/oem: Remove unnecessary
includes of stdint.h.
Begin Intel OEM extensions refactoring.
* libfreeipmi/include/freeipmi/spec/oem/ipmi-comp-code-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-event-reading-type-code-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-netfn-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-sensor-and-event-code-tables-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-sensor-number-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-sensor-types-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-slave-address-oem-intel-spec.h,
libfreeipmi/include/freeipmi/spec/oem/ipmi-cmd-oem-intel-spec.h:
Splice out motherboard specific extensions into new files and
rename a number of macros & variables accordingly. In some cases,
merge different named macros into common named macros.
* libfreeipmi/spec/ipmi-sensor-and-event-code-tables-oem-intel-spec.c:
Removed file.
* libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-comp-code-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-quanta-qssc-s4r-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600wp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-windmill-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600kp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600wtt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600gz-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-quanta-qssc-s4r-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600wp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-windmill-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600kp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600wtt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600gz-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-quanta-qssc-s4r-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-s2600wp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-number-oem-intel-windmill-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600kp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600wtt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600gz-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-quanta-qssc-s4r-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600wp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600kp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600wtt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600gz-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-cmd-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-cmd-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-cmd-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-cmd-oem-intel-s2600wt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-netfn-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-netfn-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-netfn-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-netfn-oem-intel-s2600wt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-oem-intel-s2600jf-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-common-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s5500wb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-sr1625-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-quanta-qssc-s4r-spec.h
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s5000pal-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-windmill-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600kp-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600wt2-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600wtt-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600gz-spec.h,
libfreeipmi/spec/ipmi-sensor-and-event-code-tables-oem-intel-common-spec.c,
libfreeipmi/spec/ipmi-sensor-and-event-code-tables-oem-intel-s5500wb-spec.c,
libfreeipmi/spec/ipmi-sensor-and-event-code-tables-oem-intel-quanta-qssc-s4r-spec.c:
New file(s).
* libfreeipmi/sel, libfreeipmi/util, ipmi-oem: Update for macro /
variable change changes accordingly.
Prepare for S2600BPB support
* libfreeipmi/include/freeipmi/spec/oem/intel, libfreeipmi/spec:
Document S2600BPB support at appropriate locations, rename macros
that are not Broadwell specific.
* libfreeipmi/sel, libfreeipmi/util: Update code for macro name changes.
* libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-slave-address-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600bpb-spec.h:
New file(s).
* libfreeipmi/sel/ipmi-sel-string-intel-e52600v3-common.[ch]:
Rename to ipmi-sel-string-intel-xeon-common.[ch]. Adjust
functions, headers, and callers appropriately. Make some private
functions public. Add S2600BPB assert checks.
* libfreeipmi/sel/ipmi-sel-string-intel-xeon-common.[ch]: Split
out firmware post specifics to
ipmi-sel-string-intel-xeon-broadwell-common.[ch]. Update callers
accordingly.
* libfreeipmi/util/ipmi-sensor-and-event-code-tables-util.c
(ipmi_get_oem_specific_message): Add S2600BPB support.
* libfreeipmi/sel/ipmi-sel-string-intel-s2600bpb.c: New file.
* libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-event-reading-type-code-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-and-event-code-tables-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-numbers-oem-intel-s2600bpb-spec.h,
libfreeipmi/include/freeipmi/spec/oem/intel/ipmi-sensor-types-oem-intel-s2600bpb-spec.h:
Add S2600BPB specifics.
2020-01-08 Albert Chu <[email protected]>
* bmc-device/bmc-device.c (write_fru): Fix invalid type in
pstdout_printf().
* libfreeipmi/sel/ipmi-sel-string-intel-e52600v3-common.c
(sel_string_output_intel_e52600v3_event_data3_discrete_oem,
(sel_string_output_intel_e52600v3_event_data3_discrete_oem):
Rename local variable that masked outside scope variable name.
2020-01-07 Albert Chu <[email protected]>
Mountains of minor fixes found by lgtm.com
* bmc-device/bmc-device.c (write_fru): Fix invalid number of args
to pstdout_printf.
* ipmi-dcmi/ipmi-dcmi.c (_mandatory_platform_attributes): Fix
argument type passed pstdout_printf().
* ipmi-dcmi/ipmi-dcmi.c (get_asset_tag): Fix lgtm.com warning by
casting unsigned char * to wchar_t *.
* ipmi-fru/ipmi-fru.c (run_cmd_args): Fix lgtm.com warning correct
output type in pstdout_printf().
* ipmi-oem/ipmi-oem-dell.c (ipmi_oem_dell_get_system_info): Fix
invalid output with invalid variable passed to pstdout_printf().
* ipmi-oem/ipmi-oem-intel.c (ipmi_oem_intel_get_smtp_config): Fix
invalid call to pstdout_printf(), forgot output parameters.
* ipmi-oem/ipmi-oem-intelnm.c
(_ipmi_oem_intelnm_get_node_manager_policy_suspend_periods_common):
Fix invalid call to pstdout_printf(), forgot output parameter.
* ipmi-oem/ipmi-oem-quanta.c
(ipmi_oem_quanta_get_processor_information): Fix invalid call to
pstdout_printf(), forgot output parameters.
* ipmi-sensors/ipmi-sensors-detailed-output.c
(_detailed_output_accuracy): Escape % character for clarity.
* ipmi-sensors/ipmi-sensors-oem-intel-quanta-qssc-s4r.c
(ipmi_sensors_oem_intel_quanta_qssc_s4r_output_oem_record): Fix
output type in call to pstdout_printf().
* libipmiconsole/ipmiconsole_processing
(_serial_keepalive_timeout): Fix bad debug trace without parameter
for output.
* libfreeipmi/sel/ipmi-sel-string-intel-e52600v3-common.c
(sel_string_output_intel_e52600v3_event_data2_discrete_oem)
(sel_string_output_intel_e52600v3_event_data2_class_oem): Rename
local variable that masked outside scope variable name.
* libipmidetect/ipmidetect.c (_get_data): Rename local variable
that masked outside scope variable name.
* common/miscutil/hostlist.c (_get_bracketed_list): Remove
unnecessary comparison.
* common/toolcommon/pstdout.c (pstdout_set_debug_flags): Fix typo
&& instead of &.
* ipmi-config/ipmi-config/ipmi-config-category-core-lan6-conf-section.c:
Return int instead of uint8_t when a negative value can be
returned. Cast to uint8_t when appropriate.
* ipmi-config/ipmi-config-category-dcmi-dcmi-conf-section.c
(asset_tag_checkout): Fix potential issue with comparing char to
values > 127. Cast uint8_t array to char * when appropriate.
* ipmi-sensors/ipmi-sensors-oem-intel-quanta-qssc-s4r.h,
ipmi-sensors/ipmi-sensors/ipmi-sensors-oem-intel-s2600jf.h,
ipmi-sensors/ipmi-sensors-oem-intel-s5500wb.h: Fix header guard.
* libfreeipmi/api/ipmi-messaging-support-cmds-api.c
(ipmi_cmd_set_user_password): Remove unnecessary parameter checks.
* libfreeipmi/util/ipmi-channel-util.c
(_get_channel_number_special): Remove superfluous if check.
* libipmiconsole/ipmiconsole_defs.h: Move header guard macros to
top of file.
Fix compiler warnings
* libfreeipmi/api/ipmi-lan-session-common.c
(_ipmi_check_ipmb_out_of_order): Remove unused variable
* libfreeipmi/sel/ipmi-sel-string-supermicro-common.h: Add missing
functions.
* ipmi-sensors/ipmi-sensors-oem-intel.c: Add missing header.
2019-11-27 Albert Chu <[email protected]>
* libfreeipmi/sdr/ipmi-sdr-parse-util.c
(ipmi_sdr_parse_sensor_name, ipmi_sdr_parse_entity_sensor_name):
Fix invalid parameter check to fix compiler warning.
2019-11-18 Albert Chu <[email protected]>
* libfreeipmi/fru/ipmi-fru.c: Workaround unexpected completion
code indicating no FRU data available.
2019-08-16 Albert Chu <[email protected]>
* libfreeipmi/sdr/ipmi-sdr-cache-create.c: Workaround Dell
Poweredge FC830 issue, where the last SDR entry returns errors
when being read. Since it's the last entry, we assume there is a
bug in the motherboard's implementation. Just forget about the
last entry and move on.
2019-08-15 Albert Chu <[email protected]>
* common/toolcommon/tool-sensor-common.c: Workaround QuantaPlex
T42D-2U issue, where an event only record states that it is a
threshold sensor and a "other units based sensor", but does not
provide any units.
2019-04-09 Albert Chu <[email protected]>
* libfreeipmi/api: Fix invalid error code return.
2019-02-08 Albert Chu <[email protected]>
* libfreeipmi/interpret: Support interpretation of power unit +
transition severity sensors / events, power unit + state sensors /
events.
* libfreeipmi/interpret: Support intepretation of system firmware
progress + device present sensors / events, system firmware
progress + state sensors / events.
* libfreeipmi/interpret: Support intepretation of management subsystem
health + transition severity sensors / events, management subsystem
health + device present sensors / events.
* libfreeipmi/interpret: Support intepretation of system event +
transition severity sensors / events
2019-02-07 Albert Chu <[email protected]>
* libfreeipmi/interpret: Support interpretation of drive slot +
transition severity sensors / events.
2019-01-31 Albert Chu <[email protected]>
* libfreeipmi/api: Fix workaround for out of order packets with
lan / rmcpplus ipmb to handle raw packets and packets with errors.
2019-01-23 Albert Chu <[email protected]>
* Document that "opensesspriv" workaround works on Dell C5220.
2019-01-17 Albert Chu <[email protected]>
* libfreeipmi/api: Add workaround for out of order packets with
lan / rmcpplus ipmb.
2018-09-14 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/spec/ipmi-product-id-spec.h: Add
Intel S2600WP product id.
* libfreeipmi/sel: Support Intel S2600WP motherboard OEM sel
events.
* ipmi-sensors: Support Intel S2600WP OEM sensors.
2018-12-13 Albert Chu <[email protected]>
* libipmimonitoring: Fix discrete reading working.
* contrib: Fix corner case libipmimonitoring-sensors example.
2018-10-24 Albert Chu <[email protected]>
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c: Fix compiler
warnings.
2018-07-30 Albert Chu <[email protected]>
* Support Intel S2600GZ OEM sensors and SEL events.
2018-08-01 dann frazier <[email protected]>
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c: Don't try to
split the header off of the ACPI table, as it will be consumed
by the SPMI table template.
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c: Add support for
parsing SPMI tables exposed via sysfs.
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c: Allow sysfs SPMI
parsing on ARM platforms.
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c: Correct order of
bytes in specification_revision field of ACPI SPMI table.
2018-07-31 Albert Chu <[email protected]>
* libfreeipmi/locate/ipmi-locate-acpi-spmi.c
(_ipmi_acpi_get_spmi_table): Fix corner case, break out of loop
once data found.
2018-05-11 Albert Chu <[email protected]>
* libfreeipmi/include/freeipmi/spec/ipmi-product-id-spec.h: Add
Gigabyte MG20-OP0-ZB product id and derived motherboards.
* libfreeipmi/sel: Support Gigabyte MG20-OP0-ZB motherboard OEM
sel events.
2018-05-11 Albert Chu <[email protected]>
* libipmiconsole/ipmiconsole.h.in: Update number of comments for
clarity.
* libipmimonitoring/ipmi_monitoring.h.in: Correct invalid comments
return code from ipmi_monitoring_sel_iterator_next.
2018-05-03 Albert Chu <[email protected]> and Anonymous
* libfreeipmi/include/spec/ipmi-channel-spec.h,
libfreeipmi/util/ipmi-channel-util.c: Update channel max from 0x7
to 0xB per ipmi errata #409.
2018-03-08 Sevag Hanssian <[email protected]>
* ipmiseld/ipmiseld.c,
ipmidetectd/ipmidetectd.c,
bmc-watchdog/bmc-watchdog.c: Strip path from argv[0] in syslog
2018-02-20 Jo Fahlke <[email protected]>
* ipmi-config/: Simplify legacy command scripts to not mangle
shell parameters.
2018-02-16 GIRARD, MARC <[email protected]>
* libfreeipmi/api/ipmi-kcs-driver-api.c,
libfreeipmi/api/ipmi-lan-session-common.c,
libfreeipmi/api/ipmi-ssif-driver-api.c: When bridging, target the
BMC LUN not the SMS LUN.
2018-01-18 Albert Chu <[email protected]>
* common/toolcommon/tool-common.c (ipmi_open): Fix error output
corner case. Newline necessary to allow pstdout library to output
buffer on error.
* common/toolcommon/pstdout.c (_pstdout_print): Fix debug build
corner case.
2017-11-08 Michel Ferland <[email protected]>
* ipmipower/ipmipower_arg.c: Fix invalid parsing of
--wait-until-on and --wait-until-off options.
2017-10-31 Bernd Zeimetz <[email protected]>
* configure.ac: Fix cross compilation (bug #52290)
2017-09-22 Bernhard M. Wiedemann <[email protected]>
* configure.ac: Use ChangeLog date instead of build date.
2017-08-13 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c: Add
configuration support for static router ips.
2017-08-12 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c:
Support checkout of all static & dynamic address info (source,
enable, status, prefix_length)
2017-08-11 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c:
Support configuring IPv6/ipv4 addressing. Fix error message
outputs.
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c:
Re-work output of IPv6 addresses, a separate key is not generated
for each possible address output.
2017-08-09 Albert Chu <[email protected]>
* ipmi-config/ipmi-config-category-core-lan6-conf-section.c: Check
malloc for errors.
* Fix compiler warnings.
* libfreeipmi/cmds/ipmi-lan-cmds.c: Fix incorrect LS vs. MS comment.
* ipmi-config/: Minor code cleanup.
* libfreeipmi/: Support IPv6 configuration templates and commands.
2017-07-18 Albert Chu <[email protected]>
* libipmimonitoring/ipmi_monitoring_sensor_reading.c
(_store_sensor_reading): Fix several mem-leak corner cases.