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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
|
/*
*--------------------------------------------------------------------
* XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX:
*
* - XXX: Deferred work:
* - handling of Upstart-in-initramfs - for this to work, it would be
* necessary to serialise ConfSources (done) along with the following:
*
* (1) inode number of source->path
* (2) inode number of '/'
* (3) the FS device details (stat /|grep ^Device)
*
* (1)-(3) would allow the deserialisation logic to discriminate
* between two job configuration files with the same name, but
* different contents (one from the initramfs, one from the root
* filesystem).
*
* XXX: Further, to support Upstart-in-initramfs would require
* changes to the 'restart' logic since currently, no initial event
* will be emitted when Upstart is re-exec'd.
*
* Since this isn't implemented, there is a restriction currently
* (that can only be handled procedurally!) of not supporting
* Upstart-in-initramfs or more precisely not supporting a job with
* the same name in two different filesystem contexts.
*
* Note too that (2)+(3) are the only reliable method for Upstart to
* detect that is *has* changed filesystem context.
*
* - parent/child timeout handling: we won't support down-grading initially.
*
* - dbus-connections: only be re-exec'ing post-boot so bridges won't
* suffer too much. Bridges could be modified to auto-reconnect on
* disconnect.
*
* XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX: * XXX:XXX:
*--------------------------------------------------------------------
*/
/*
*--------------------------------------------------------------------
* = Design =
*
* == Serialisation ==
*
* - Each object provides a <object_>_serialise() function which
* converts a single object into a JSON-representation.
*
* - Each object provides a <object_>_serialise_all() function which
* converts all objects from their appropriate list/hash/tree into a
* JSON array representation.
*
* == Deserialisation ==
*
* - Each object provides a <object_>_deserialise() function which
* converts a single JSON-representation of an object back into an
* internal object.
*
* - Each object provides a <object_>_deserialise_all() function which
* converts all objects either back into a list/hash/tree (by
* calling <object>_new() as appropriate), or back into some object
* type that can then be attached to another object (for example
* process_deserialise_all() converts a JSON array of processes back
* into an array of Process objects which are then hooked onto a
* JobClass object).
*
* == Error Handling ==
*
* If stateful re-exec fails, Upstart must perform a stateless reexec:
* this obviously is not ideal since it results in all state being
* discarded, but atleast init continues to run.
*
* === Serialisation ===
*
* Upstart will serialise all internal objects in as rich a
* serialisation format as possible. Note however, that the strategy is
* to only serialise objects (and elements of objects) that *need* to be
* deserialised.
*
* For example, if a JobClass has a 'start on' condition, it is
* serialised, but if not, we simply do not encode a value (not even a
* "null" one.
*
* Another example is the log_unflushed_files list. This is ignored
* entirely since it would only need to be serialised if Upstart were
* upgraded before the log disk became writeable. This is currently an
* impossible situation, but if Upstart were to run in the initramfs,
* we would need to serialise this data.
*
* The error handling strategy for serialisation is easy: if any of the
* serialisation steps fail, error immediately.
*
* === Deserialisation ===
*
* This is the more difficult aspect: deserialisation must contend
* with possible partial errors and handle them intelligently:
*
* - missing keys and/or values in the JSON:
*
* - indicates either a bug or a change in the JSON serialisation data
* format of the higher-numbered versioned of Upstart.
*
* - deserialise as 0 or NULL as appropriate if possible.
*
* - unexpected JSON entries:
*
* - ignored as this indicates a downgrade (and it's clearly
* unreasonable to expect a lower-numbered version of Upstart to
* understand the syntax from a higher-numbered version of Upstart).
*
* - invalid JSON entries:
*
* - only strategy is to error immediately.
*
* Note that the deserialisation process does NOT read and validate every
* part of the JSON - it merely looks for, validates and consumes expected data.
* This makes for a more flexible design that could accommondate downgrade
* scenarios for example.
*
* Note that the ordering of handling internal objects is important:
*
* 1) Session objects
* 2) Event objects
* 3) Log objects
* 4) JobClass objects
* 5) Job objects
*
* Sessions are handled first since they do not reference any other
* objects so are discrete.
*
* Log objects are handled next to ensure they are known before the
* Jobs are handled.
*
* Event, JobClass and Job objects are more difficult since:
*
* a) Events can reference Jobs via event->blocked
* (list of Blocked objects).
* b) Jobs can reference Events via the job->blocker Event
* and the job->blocking list.
* c) JobClasses reference Jobs via class->instances hash
* of Job instances.
* d) Jobs reference JobClasses via job->class.
*
* Circular dependencies are broken by referencing index numbers rather
* than actual objects in the JSON. This allows the objects to be
* serialised into a JSON array after their index numbers have been
* referenced.
*
* For example, if an event is blocking a job (that is to say
* "a job is blocked on the event"), internal to Upstart...
*
* - event->blocking will contain a Blocked object pointing to the job.
* - job->blocker will point to the event.
*
* However, in the JSON...
*
* - event->blocking will be represented as a "blocking" object (within
* the "event" object) that references the job being blocked
* indirectly by its parent class name and instance name.
* - job->blocker will be represented as a "blocker" object (within
* the "job" object) that references the event the job is blocked on
* by event index number.
*
* See:
* - state_serialise_blocked()
* - state_deserialise_resolve_deps()
*
* == Macros ==
*
* Some of the macros defind here may appear needlessly trivial.
* However, their value lies in their ability to avoid having to
* duplicate element names (where it would be easy to forget to
* update some part of an expresion and end up corrupting/duplicating
* data elements). Safety first! :)
*
* == Data Types ==
*
* Care has to be taken to ensure no data loss in handling typedef'ed
* values as they are nominally opaque and may have unusually large
* representations on some systems.
*
* Although RFC 4627, the JSON "memo" (not a spec!) alludes to
* JSON being a subset of ECMA-262, it does not specify the size of
* integer types! However, ECMA-262 specifies them as 64-bit.
*
* JSON-C up to version 0.9 encoded all integers as a native 'int'
* type (which may have been 32-bit or 64-bit) but with version 0.10 it
* now provides a 32-bit and 64-bit integer interface (although all
* integers are actually stored as 64-bit internally).
*
* As such, we have to check the size of all typedef'd types and
* encode/decode them using either the 32-bit or 64-bit JSON-C integer
* interfaces (note that technically it is only the decoding that can
* cause data loss due to JSON-C storing all integer values as 64-bit
* internally).
*
* An example of a problematic platform is Linux on AMD64 where:
*
* - sizeof(int) == 4 bytes
* - sizeof(time_t) == 8 bytes
*
* For platforms such as this, using JSON-C 0.90 it would be necessary
* to encode all opaque types whose size is greater than sizeof(int)
* as strings to avoid data loss. However, this makes for ugly
* and error-prone code.
*
* == Enum Handling ==
*
* Handling enums is problematic since is we JSON-encode the enum _value_
* as an integer, and if the newer version of Upstart has either:
*
* (a) changed the _order_ of the enum entries, or
* (b) removed the encoded value entirely...
*
* We cannot proceed with stateful re-exec as undefined behaviour would
* result since not only would the deserialised enum value be incorrect,
* but the two scenarios above cannot even be detected at runtime.
*
* The only safe solution is to encode all enum values as strings,
* requiring two new functions per enum type: one to map an enum value
* to a string and another to convert a string representation back into
* an enum value.
*
* With this strategy, both scenarios above are handled: if either
* function fails to find the provided value, the error scenario
* can be handled (by reverting to stateless re-exec. Keeping the two
* extra functions per enum updated to match changes in
* the actual enum provides an extra maintenance burden but this problem
* is vastly more preferable than having to deal with insiduous data
* corruption caused by an incorrect program. The burden is minimized by
* using the following two macros...
*
* state_get_json_enum_var ()
* state_set_json_enum_var ()
*
* ... coupled with the typedefs EnumSerialiser and EnumDeserialiser
* along with the two extra functions per enum.
*
* === Alternative Approach ===
*
* An alternative approach would be to create a meta header in the JSON which
* encodes a "version" number for each enum type. If the encoded version
* number differs from the currently running enum version number, it
* would be necessary to call a function to convert the old value to the
* new enum value. Something like:
*
* <enum_value> <object>_remap_<enum_name> (int old_value);
*
* For example,
*
* JobGoal job_remap_jobgoal (int old_value);
*
* Note that old_value must be an 'int' since it may no longer be a
* legitimate enum value.
*
* However, this strategy is more burdensome since any change to any
* enum must also be coupled with a version bump and that is easy to
* forget. With the approach adopted, this is never a problem since
* forgetting to update one of the two functions per enum is guaranteed
* to result in an error condition. Whereas, if the enum-specific version
* number is not bumped, silent corruption could occur as no error
* scenario could be detected.
*
* == Circular Dependencies ==
*
* Events can refer to Jobs via event->blocking and Jobs can refer to
* Events via job->blocker and job->blocking, hence a circular
* dependency may exist.
*
* === Serialisation ===
*
* Serialisation is handled "in a single pass" by iterating the events
* list and encoding any blocking objects found, then iterating the
* JobClasses instances list to encoding any blocking objects found for
* each Job. A single pass works in this case since we're just encoding
* the names of Jobs and Events. Some of these might not yet have been
* encoded, but we know they _will_ eventually be encoded.
*
* === Deserialisation ===
*
* Deserialisation is more difficult. The process is as follows:
*
* - Convert all JSON-encoded events back into real Events.
* Note that event->blocking and event->blockers will _NOT_ be
* set at this stage.
* - Convert all JSON-encoded jobs back into real Jobs.
* Note that job->blocker and job->blocking will _NOT_ be
* set at this stage.
* - Re-iterate over all Jobs and...
* - set job->blocker if encoded in the JSON.
* - create any job->blocking links to other jobs.
* - create any job->blocking links to any events.
* - create any job->blocking links to any D-Bus messages.
* - Re-iterate over all Events and...
* - create any event->blocking links to any jobs.
* - create any event->blocking links to any D-Bus messages.
*
* == Ptrace handling ==
*
* Fortuitously, it transpires that if a process is ptrace(2)-ing one
* or more other processes and that parent "debugger" process _itself_
* execs, post-exec, it still continues to be a debugger. What this
* means is that NO special handling needs to be performed for jobs
* which are being ptraced prior to the re-exec.
*--------------------------------------------------------------------
*/
/* upstart
*
* Copyright © 2012 Canonical Ltd.
* Author: James Hunt <james.hunt@canonical.com>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef INIT_STATE_H
#define INIT_STATE_H
#include <stdio.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <nih/macros.h>
#include <nih/alloc.h>
#include <nih/list.h>
#include <json.h>
/**
* STATE_WAIT_SECS:
*
* Time to wait in seconds for the re-exec state file descriptor to be
* ready for reading/writing. If this timeout is reached, the new PID 1
* instance must either have got into trouble or not support stateful
* re-exec.
**/
#define STATE_WAIT_SECS 3
/**
* STATE_WAIT_SECS_ENV:
*
* Name of environment variable that if set to an integer value will
* take preference over STATE_WAIT_SECS. Special cases:
*
* If 0, do not wait.
* If -1, wait forever.
**/
#define STATE_WAIT_SECS_ENV "UPSTART_STATE_WAIT_SECS"
/**
* STATE_FILE:
*
* Name of file that is written below the job log directory if the
* newly re-exec'ed init instance failed to understand the JSON sent to
* it by the old instance (or if requested by STATE_FILE_ENV).
*
* This could happen for example if the old instance generated invalid
* JSON, or JSON in an unexected format.
**/
#define STATE_FILE "upstart.state"
/**
* state_get_timeout:
*
* @var: name of long integer var to set to timeout value.
*
* Set @var to timeout.
*/
#define state_get_timeout(var) \
{ \
char *timeout_env_var; \
timeout_env_var = getenv (STATE_WAIT_SECS_ENV); \
\
var = timeout_env_var ? atol (timeout_env_var) : STATE_WAIT_SECS; \
}
/**
* state_enum_to_str:
*
* Helper macro for EnumSerialiser functions.
**/
#define state_enum_to_str(enum_value, num) \
if (enum_value == num) \
return #enum_value
/**
* state_str_to_enum:
*
* Helper macro for EnumDeserialiser functions.
**/
#define state_str_to_enum(enum_value, str) \
if (! strcmp (#enum_value, str)) \
return enum_value
/**
* state_check_json_type:
*
* @object: JSON object,
* @type: type of JSON primitive (without prefix).
*
* Compare type of @object with @type.
*
* Note: This could be achieved entirely as a macro but for
* the fact that JSON-C does not define a 64-bit integer type
* (and yet allows integers to be handled either as 32-bit
* or 64-bit).
*
* Returns: TRUE if type of @object is @type, else FALSE.
**/
#define state_check_json_type(object, type) \
((json_object_get_type (object) == state_get_json_type (#type)) || \
(state_get_json_type (#type) == json_type_string && \
json_object_is_type (object, json_type_null)))
/**
* state_new_json_int:
*
* @value: value to encode
*
* Encode @value as a JSON integer.
*
* Returns: json_object that encodes @value.
*/
#define state_new_json_int(value) \
(sizeof (value) > sizeof (int) \
? json_object_new_int64 (value) \
: json_object_new_int (value))
/*
* state_get_json_var_full:
*
* @json: json_object pointer,
* @name: string name to search for in @json,
* @json_type: type of JSON primitive (without prefix),
* @json_var: name of json_object variable that will store value.
*
* Query @json, setting @json_var to be the JSON value of @name where
* @json_var is of type @type.
*
* XXX: Although you may use this macro, it is unlikely you will need to
* as there are more specific macros available.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_var_full(json, name, type, json_var) \
((json_object_object_get_ex (json, name, &(json_var))) && \
state_check_json_type (json_var, type))
/**
* _state_get_json_num_var:
*
* @json: json_object pointer,
* @name: string name to search for in @json,
* @type_json: type of @var (without prefix),
* @var: variable of type @type to set to value encoded in @json.
*
* Specialisation of state_get_json_var_full() that works for JSON
* types int, boolean, and double.
*
* Note that a distinct macro is required for non-string types since
* unlike strings they can legitimately have the value of zero.
*
* Query @json, setting @var to value of @name.
*
* XXX: Do not call directly (to avoid hard-coding assumptions about
* XXX: integer sizes) - use state_get_json_int* macros instead.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define _state_get_json_num_var(json, name, type_json, var) \
({json_object *_json_var = NULL; \
int _ret = state_get_json_var_full (json, name, type_json, _json_var); \
errno = 0; \
if (_json_var) \
var = json_object_get_ ## type_json (_json_var); \
_json_var && _ret && errno != EINVAL;})
/**
* state_get_json_int32_var:
*
* @json: json_object pointer,
* @name: string name of 32-bit numeric element within
* @json to be deserialised,
* @var: variable to set to value encoded in @json.
*
* Query @json, setting @var to 32-bit integer value of @name.
*
* XXX: May be called directly, but preferable to call
* XXX: state_get_json_int_var() to ensure portability.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int32_var(json, name, var) \
(_state_get_json_num_var (json, name, int, var))
/**
* state_get_json_int64_var:
*
* @json: json_object pointer,
* @name: string name of 64-bit numeric element within
* @json to be deserialised,
* @var: variable to set to value encoded in @json.
*
* Query @json, setting @var to 64-bit integer value of @name.
*
* XXX: May be called directly, but preferable to call
* XXX: state_get_json_int_var() to ensure portability.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int64_var(json, name, var) \
(_state_get_json_num_var (json, name, int64, var))
/**
* state_get_json_int_var:
*
* @json: json_object pointer,
* @name: string name of numeric element within
* @json to be deserialised,
* @var: variable to set to value encoded in @json.
*
* Query @json, setting @var to integer value of @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int_var(json, name, var) \
(sizeof (var) == (size_t)4 \
? state_get_json_int32_var (json, name, var) \
: state_get_json_int64_var (json, name, var))
/**
* _state_get_json_num_var_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of numeric element within @object to be deserialised,
* @type_json: type of @name in @json (without prefix).
*
* Extract stringified @name from @json and set numeric element named
* @name in @object to its value.
*
* XXX: Do not call directly (to avoid hard-coding assumptions about
* XXX: integer sizes) - use state_get_json_int* macros instead.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define _state_get_json_num_var_to_obj(json, object, name, type_json) \
(_state_get_json_num_var (json, #name, type_json, ((object)->name)))
/**
* state_get_json_int32_var_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of 32-bit numeric element within @object to be deserialised.
*
* Extract stringified @name from @json and set 32-bit integer element
* named @name in @object to its value.
*
* XXX: May be called directly, but preferable to call
* XXX: state_get_json_int_var_to_obj() to ensure portability.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int32_var_to_obj(json, object, name) \
(_state_get_json_num_var_to_obj (json, object, name, int))
/**
* state_get_json_int64_var_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of 64-bit numeric element within @object to be deserialised.
*
* Extract stringified @name from @json and set 64-bit integer element
* named @name in @object to its value.
*
* XXX: May be called directly, but preferable to call
* XXX: state_get_json_int_var_to_obj() to ensure portability.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int64_var_to_obj(json, object, name) \
(_state_get_json_num_var_to_obj (json, object, name, int64))
/**
* state_get_json_int_var_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of numeric element within @object to be deserialised.
*
* Extract stringified @name from @json and set integer element named
* @name in @object to its value.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_int_var_to_obj(json, object, name) \
(sizeof (object->name) == (size_t)4 \
? state_get_json_int32_var_to_obj (json, object, name) \
: state_get_json_int64_var_to_obj (json, object, name))
/**
* state_get_json_string_var:
*
* @json: json_object pointer,
* @name: string name to search for in @json,
* @parent: parent of @var,
* @var: string variable to set to value of @name in @json.
*
* Specialisation of state_get_json_var_full() that works for
* the JSON string type.
*
* Query @json, setting @var to be a newly allocated string copy of
* value of @name (or NULL if value is JSON 'null').
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_string_var(json, name, parent, var) \
({int _ret; \
json_object *_json_var; \
_ret = state_get_json_var_full (json, name, string, _json_var); \
if (_ret) { \
if (json_object_is_type (_json_var, json_type_null)) { \
var = NULL; \
} else { \
const char *value = NULL; \
_ret = ((value = json_object_get_string (_json_var)) \
&& (var = nih_strdup (parent, value))); \
} \
} \
_ret ;})
/**
* state_get_json_string_var_strict:
*
* @json: json_object pointer,
* @name: string name to search for in @json,
* @parent: parent of @var,
* @var: string variable to set to value of @name in @json.
*
* Specialisation of state_get_json_string_var() where @var value
* must not be NULL.
*
* Query @json, setting @var to be a newly allocated string copy of
* value of @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_string_var_strict(json, name, parent, var) \
(state_get_json_string_var (json, name, parent, var) && var != NULL)
/**
* state_get_json_string_var_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of element within @object to be deserialised,
*
* Extract stringified @name from @json and set string element named
* @name in @object to a newly allocated string copy or NULL if
* JSON-encoded value was of type 'null'.
*
* @name will have a parent of @object.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_string_var_to_obj(json, object, name) \
state_get_json_string_var (json, #name, object, (object->name))
/**
* state_get_json_string_var_to_obj_strict:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of element within @object to be deserialised,
*
* Specialisation of state_get_json_string_var_to_obj() where value
* of @name must not be NULL.
*
* Extract stringified @name from @json and set string element named
* @name in @object to a newly allocated string copy.
*
* @name will have a parent of @object.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_string_var_to_obj_strict(json, object, name) \
state_get_json_string_var_strict (json, #name, object, (object->name))
/**
* _state_get_json_str_array_generic:
*
* @parent: parent object for new array (may be NULL),
* @json: json_object pointer,
* @array: array to hold output,
* @len: length of @array,
* @env: TRUE if @json represents an array of environment variables,
* else FALSE,
* @clean: TRUE to have the array assigned to NULL on error and if @len is zero,
* else FALSE.
*
* Convenience wrapper around _state_deserialise_str_array().
*
* Returns: TRUE on success, or FALSE on error.
**/
#define _state_get_json_str_array_generic(parent, json, array, len, env, clean) \
({int _ret = 0; \
_ret = _state_deserialise_str_array (parent, json, \
array, len, env); \
if (clean) { \
if (_ret < 0 || ! *len) \
*(array) = NULL; \
} \
_ret == 0;})
/**
* state_deserialise_str_array:
*
* @parent: parent object for new array (may be NULL),
* @json: JSON array object representing a string array,
* @array: string array.
*
* Specialisation of state_deserialise_str_array().
*
* Convert JSON array object @json into a string array. If the array is
* empty, return NULL.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_deserialise_str_array(parent, json, array) \
({size_t len; \
int _ret = 0; \
_ret = _state_get_json_str_array_generic (parent, json, \
array, &len, FALSE, TRUE); \
_ret;})
/**
* state_deserialise_env_array:
*
* @parent: parent object for new array (may be NULL),
* @json: JSON array object representing a string array,
* @array: string array.
*
* Convert JSON array object @json into a string array. If the array is
* empty, return NULL.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_deserialise_env_array(parent, json, array) \
({size_t len; \
int _ret = 0; \
_ret = _state_get_json_str_array_generic (parent, json, \
array, &len, TRUE, TRUE); \
_ret;})
/**
* _state_get_json_str_array_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of element within @object to be deserialised,
* @is_env: TRUE if @name is an environment array,
* @len: length of array.
*
* Deserialise stringified @name from @json into an array of strings and
* assign to @name within @object.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_str_array_to_obj(json, object, name) \
({json_object *json_var = NULL; \
size_t len; \
int _ret = 0; \
int _ret2 = 0; \
_ret = state_get_json_var_full (json, #name, array, json_var); \
if (_ret) { \
_ret2 = _state_get_json_str_array_generic (object, \
json_var, &object->name, &len, FALSE, TRUE); \
if (_ret2 && ! len) \
object->name = NULL; \
} \
_ret && _ret2;})
/**
* state_get_json_env_array_to_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be deserialised,
* @name: name of element within @object to be deserialised,
*
* Deserialise stringified @name from @json into an array of environment
* variable strings and assign to @name within @object.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_env_array_to_obj(json, object, name) \
({json_object *json_var = NULL; \
size_t len; \
int _ret = 0; \
int _ret2 = 0; \
_ret = state_get_json_var_full (json, #name, array, json_var); \
if (_ret) { \
_ret2 = _state_get_json_str_array_generic (object, \
json_var, &object->name, &len, TRUE, TRUE); \
if (_ret2 && ! len) \
object->name = NULL; \
} \
_ret && _ret2;})
/**
* state_get_json_enum_var:
*
* @json: json_object pointer,
* @func: function to convert string value of enum to a real enum,
* @name: name of enum value within @json to deserialise,
* @var: name of enum variable to assign value extracted from JSON to.
*
* Extract the string value of an enum of type @name from JSON and
* assign value to @var.
*
* @func must accept a stringified enum value name and return an integer
* enum value.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_get_json_enum_var(json, func, name, var) \
({int tmp = -1; \
nih_local char *_value = NULL; \
EnumDeserialiser f = (EnumDeserialiser)func; \
int _ret; \
_ret = state_get_json_string_var_strict (json, name, NULL, _value); \
if (_ret) { \
tmp = f (_value); \
if (tmp != -1) \
var = tmp; \
} _ret && tmp != -1; })
/**
* state_set_json_enum_var:
*
* @json: json_object pointer,
* @func: function to convert enum value into a string representation,
* @name: name to associate with enum value in @json,
* @value: enum value to add.
*
* Add enum with value @value to @json with string name @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_enum_var(json, func, name, value) \
({const char *enum_value; \
EnumSerialiser f = (EnumSerialiser)func; \
enum_value = f (value); \
enum_value && \
state_set_json_string_var (json, name, enum_value);})
/**
* state_set_json_var_full:
*
* @json: json_object pointer,
* @name: string name to add as key in @json,
* @value: value corresponding to @name,
* @type_json: JSON type (without prefix) representing type of @value.
*
* Add @value to @json with name @name and type @type.
*
* XXX: Although you may use this macro, it is unlikely you will need to
* as there are more specific macros available.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_var_full(json, name, value, type_json) \
({json_object *_json_var; \
_json_var = json_object_new_ ## type_json (value); \
if (_json_var) json_object_object_add (json, name, _json_var); \
_json_var;})
/**
* state_set_json_num_var_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of element within @object to be serialised,
* @type_json: JSON type (without prefix) for field to be added,
* @type: native type of object represented by @name.
*
* Add value of numeric entity @name in object @object to
* @json with stringified @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_num_var_from_obj(json, object, name, type_json, type) \
({json_object *_json_var = \
json_object_new_ ## type_json ((type)(object ? (object)->name : 0)); \
if (_json_var) json_object_object_add (json, #name, _json_var); \
_json_var;})
/**
* state_set_json_int32_var_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of 32-bit integer element within @object to be serialised,
*
* Add value of 32-bit integer entity @name in object @object to
* @json with stringified @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int32_var_from_obj(json, object, name) \
(state_set_json_num_var_from_obj (json, object, name, int, int32_t))
/**
* state_set_json_int64_var_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of 64-bit integer element within @object to be serialised,
*
* Add value of 64-bit integer entity @name in object @object to
* @json with stringified @name.
*
* Note: The @type pased to state_set_json_num_var_from_obj() looks
* wrong, but remember that there is only a single 'json_type_int'
* value (which encompasses both 32-bit and 64-bit values).
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int64_var_from_obj(json, object, name) \
(state_set_json_num_var_from_obj (json, object, name, int64, int64_t))
/**
* state_set_json_int32_var:
*
* @json: json_object pointer,
* @name: name to give @var in @json,
* @var: 32-bit integer variable to be serialised.
*
* Add value of 32-bit integer entity @var to @json with name @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int32_var(json, name, var) \
(state_set_json_var_full (json, name, var, int))
/**
* state_set_json_int64_var:
*
* @json: json_object pointer,
* @name: name to give @var in @json,
* @var: 64-bit integer variable to be serialised.
*
* Add value of 64-bit integer entity @var to @json with name @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int64_var(json, name, var) \
(state_set_json_var_full (json, name, var, int64))
/**
* state_set_json_int_var:
*
* @json: json_object pointer,
* @name: name to give @var in @json,
* @var: integer variable to be serialised.
*
* Add value of integer entity @var to @json with name @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int_var(json, name, var) \
(sizeof (var) == (size_t)4 \
? state_set_json_int32_var (json, name, var) \
: state_set_json_int64_var (json, name, var))
/**
* state_set_json_int_var_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of integer element within @object to be serialised,
*
* Add value of integer entity @name in object @object to
* @json with stringified @name.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_int_var_from_obj(json, object, name) \
(sizeof (object->name) == (size_t)4 \
? state_set_json_int32_var_from_obj (json, object, name) \
: state_set_json_int64_var_from_obj (json, object, name))
/**
* state_set_json_string_var:
*
* @json: json_object pointer,
* @name: string name of element to add to @json,
* @value: value to assign @name in @json.
*
* Add @name to @json with value @value. If @value is NULL, it will be
* encoded as a JSON null.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_string_var(json, name, value) \
({json_object *_json_var = NULL; \
if (value != NULL) _json_var = json_object_new_string (value); \
if (_json_var || value == NULL) json_object_object_add (json, name, _json_var); \
value ? _json_var != NULL : TRUE;})
/**
* state_set_json_string_var_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of element within @object to be serialised,
* @type: JSON type (without prefix) for field to be added.
*
* Add @name (which will be stringified) to @json taking the value
* from the @object element of name @name.
*
* String specialisation that can also handle NULL strings (by encoding
* them with a nul string value).
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_string_var_from_obj(json, object, name) \
state_set_json_string_var (json, #name, (object->name))
/**
* state_set_json_str_array_from_obj:
*
* @json: json_object pointer,
* @object: pointer to internal object that is to be serialised,
* @name: name of element within @object to be serialised.
*
* Copy string array @name from @object to @json.
*
* Returns: TRUE on success, or FALSE on error.
**/
#define state_set_json_str_array_from_obj(json, object, name) \
({json_object *_json_var; \
_json_var = object->name \
? state_serialise_str_array (object->name) \
: json_object_new_array (); \
if (_json_var) json_object_object_add (json, #name, _json_var); \
_json_var;})
/**
* state_serialise_int_array:
*
* @type: native type of elements within @array,
* @array: array to serialise
* @len: length of @array.
*
* Returns: JSON-serialised @array, or NULL on error.
**/
#define state_serialise_int_array(type, array, len) \
(sizeof (type) == (size_t)4 \
? state_serialise_int32_array ((int32_t *)array, len) \
: state_serialise_int64_array ((int64_t *)array, len))
/**
* state_deserialise_int_array:
*
* @parent: parent object for new array,
* @json: JSON array object representing an integer array,
* @type: native type of elements within @array,
* @array: array of integers,
* @len: length of @array.
*
* Convert JSON array object @json into an array of integers whose size
* is the same as the size of @type.
*
* Returns: 0 on success, -1 on ERROR.
**/
#define state_deserialise_int_array(parent, json, type, array, len) \
(sizeof (type) == (size_t)4 \
? state_deserialise_int32_array (parent, json, (int32_t **)array, len) \
: state_deserialise_int64_array (parent, json, (int64_t **)array, len))
NIH_BEGIN_EXTERN
/**
* EnumSerialiser:
*
* @value: enum value.
*
* Convert @value to a string value.
*
* Returns: string value of @value, or NULL if @value is unknown.
**/
typedef const char *(*EnumSerialiser) (int value);
/**
* EnumDeserialiser:
*
* @name: string representation of an enum value.
*
* Convert @name to an enum value.
*
* Returns: enum value of @name, or -1 if @name is unknown.
**/
typedef int (*EnumDeserialiser) (const char *name);
int state_read (int fd)
__attribute__ ((warn_unused_result));
int state_write (int fd, const char *state_data, size_t len)
__attribute__ ((warn_unused_result));
int state_read_objects (int fd)
__attribute__ ((warn_unused_result));
int state_write_objects (int fd, const char *state_data, size_t len)
__attribute__ ((warn_unused_result));
int state_to_string (char **json_string, size_t *len)
__attribute__ ((warn_unused_result));
int state_from_string (const char *state)
__attribute__ ((warn_unused_result));
int state_toggle_cloexec (int fd, int set);
json_object *
state_serialise_str_array (char ** const array)
__attribute__ ((warn_unused_result));
json_object *
state_serialise_int32_array (int32_t *array, int count)
__attribute__ ((warn_unused_result));
json_object *
state_serialise_int64_array (int64_t *array, int count)
__attribute__ ((warn_unused_result));
int
_state_deserialise_str_array (void *parent, json_object *json,
char ***array, size_t *len, int env)
__attribute__ ((warn_unused_result));
int
state_deserialise_int32_array (void *parent, json_object *json,
int32_t **array, size_t *len)
__attribute__ ((warn_unused_result));
int
state_deserialise_int64_array (void *parent, json_object *json,
int64_t **array, size_t *len)
__attribute__ ((warn_unused_result));
json_object *
state_rlimit_serialise_all (struct rlimit * const *rlimits)
__attribute__ ((warn_unused_result));
int
state_rlimit_deserialise_all (json_object *json, const void *parent,
struct rlimit *(*rlimits)[])
__attribute__ ((warn_unused_result));
char *state_collapse_env (const char **env)
__attribute__ ((warn_unused_result));
enum json_type
state_get_json_type (const char *short_type)
__attribute__ ((warn_unused_result));
int
state_deserialise_resolve_deps (json_object *json)
__attribute__ ((warn_unused_result));
json_object *
state_serialise_blocking (const NihList *blocking)
__attribute__ ((warn_unused_result));
int
state_deserialise_blocking (void *parent, NihList *list,
json_object *json)
__attribute__ ((warn_unused_result));
int state_fd_valid (int fd)
__attribute__ ((warn_unused_result));
char * state_data_to_hex (void *parent, const void *data,
size_t len)
__attribute__ ((warn_unused_result));
int state_hex_to_data (void *parent, const void *hex_data,
size_t hex_len, char **data,
size_t *data_len)
__attribute__ ((warn_unused_result));
json_object *state_rlimit_serialise (const struct rlimit *rlimit)
__attribute__ ((warn_unused_result));
struct rlimit *state_rlimit_deserialise (json_object *json)
__attribute__ ((warn_unused_result));
int state_get_version (void)
__attribute__ ((warn_unused_result));
extern char **args_copy;
extern int restart;
void perform_reexec (void);
void stateful_reexec (void);
void clean_args (char ***argsp);
NIH_END_EXTERN
#endif /* INIT_STATE_H */
|