6 #include "run-command.h"
11 #include "transport.h"
12 #include "string-list.h"
14 static const char receive_pack_usage
[] = "git receive-pack <git-dir>";
25 static int deny_deletes
;
26 static int deny_non_fast_forwards
;
27 static enum deny_action deny_current_branch
= DENY_UNCONFIGURED
;
28 static enum deny_action deny_delete_current
= DENY_UNCONFIGURED
;
29 static int receive_fsck_objects
;
30 static int receive_unpack_limit
= -1;
31 static int transfer_unpack_limit
= -1;
32 static int unpack_limit
= 100;
33 static int report_status
;
34 static int use_sideband
;
35 static int prefer_ofs_delta
= 1;
36 static int auto_update_server_info
;
37 static int auto_gc
= 1;
38 static const char *head_name
;
39 static int sent_capabilities
;
41 static enum deny_action
parse_deny_action(const char *var
, const char *value
)
44 if (!strcasecmp(value
, "ignore"))
46 if (!strcasecmp(value
, "warn"))
48 if (!strcasecmp(value
, "refuse"))
51 if (git_config_bool(var
, value
))
56 static int receive_pack_config(const char *var
, const char *value
, void *cb
)
58 if (strcmp(var
, "receive.denydeletes") == 0) {
59 deny_deletes
= git_config_bool(var
, value
);
63 if (strcmp(var
, "receive.denynonfastforwards") == 0) {
64 deny_non_fast_forwards
= git_config_bool(var
, value
);
68 if (strcmp(var
, "receive.unpacklimit") == 0) {
69 receive_unpack_limit
= git_config_int(var
, value
);
73 if (strcmp(var
, "transfer.unpacklimit") == 0) {
74 transfer_unpack_limit
= git_config_int(var
, value
);
78 if (strcmp(var
, "receive.fsckobjects") == 0) {
79 receive_fsck_objects
= git_config_bool(var
, value
);
83 if (!strcmp(var
, "receive.denycurrentbranch")) {
84 if (value
&& !strcasecmp(value
, "updateinstead"))
85 deny_current_branch
= DENY_UPDATE_INSTEAD
;
86 else if (value
&& !strcasecmp(value
, "detachinstead"))
87 deny_current_branch
= DENY_DETACH_INSTEAD
;
89 deny_current_branch
= parse_deny_action(var
, value
);
93 if (strcmp(var
, "receive.denydeletecurrent") == 0) {
94 deny_delete_current
= parse_deny_action(var
, value
);
98 if (strcmp(var
, "repack.usedeltabaseoffset") == 0) {
99 prefer_ofs_delta
= git_config_bool(var
, value
);
103 if (strcmp(var
, "receive.updateserverinfo") == 0) {
104 auto_update_server_info
= git_config_bool(var
, value
);
108 if (strcmp(var
, "receive.autogc") == 0) {
109 auto_gc
= git_config_bool(var
, value
);
113 return git_default_config(var
, value
, cb
);
116 static int show_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
118 if (sent_capabilities
)
119 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), path
);
121 packet_write(1, "%s %s%c%s%s\n",
122 sha1_to_hex(sha1
), path
, 0,
123 " report-status delete-refs side-band-64k",
124 prefer_ofs_delta
? " ofs-delta" : "");
125 sent_capabilities
= 1;
129 static void write_head_info(void)
131 for_each_ref(show_ref
, NULL
);
132 if (!sent_capabilities
)
133 show_ref("capabilities^{}", null_sha1
, 0, NULL
);
138 struct command
*next
;
139 const char *error_string
;
140 unsigned int skip_update
;
141 unsigned char old_sha1
[20];
142 unsigned char new_sha1
[20];
143 char ref_name
[FLEX_ARRAY
]; /* more */
146 static const char pre_receive_hook
[] = "hooks/pre-receive";
147 static const char post_receive_hook
[] = "hooks/post-receive";
149 static void rp_error(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
150 static void rp_warning(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
152 static void report_message(const char *prefix
, const char *err
, va_list params
)
154 int sz
= strlen(prefix
);
157 strncpy(msg
, prefix
, sz
);
158 sz
+= vsnprintf(msg
+ sz
, sizeof(msg
) - sz
, err
, params
);
159 if (sz
> (sizeof(msg
) - 1))
160 sz
= sizeof(msg
) - 1;
164 send_sideband(1, 2, msg
, sz
, use_sideband
);
169 static void rp_warning(const char *err
, ...)
172 va_start(params
, err
);
173 report_message("warning: ", err
, params
);
177 static void rp_error(const char *err
, ...)
180 va_start(params
, err
);
181 report_message("error: ", err
, params
);
185 static int copy_to_sideband(int in
, int out
, void *arg
)
189 ssize_t sz
= xread(in
, data
, sizeof(data
));
192 send_sideband(1, 2, data
, sz
, use_sideband
);
198 static int run_receive_hook(struct command
*commands
, const char *hook_name
)
200 static char buf
[sizeof(commands
->old_sha1
) * 2 + PATH_MAX
+ 4];
202 struct child_process proc
;
205 int have_input
= 0, code
;
207 for (cmd
= commands
; !have_input
&& cmd
; cmd
= cmd
->next
) {
208 if (!cmd
->error_string
)
212 if (!have_input
|| access(hook_name
, X_OK
) < 0)
218 memset(&proc
, 0, sizeof(proc
));
221 proc
.stdout_to_stderr
= 1;
224 memset(&muxer
, 0, sizeof(muxer
));
225 muxer
.proc
= copy_to_sideband
;
227 code
= start_async(&muxer
);
233 code
= start_command(&proc
);
236 finish_async(&muxer
);
240 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
241 if (!cmd
->error_string
) {
242 size_t n
= snprintf(buf
, sizeof(buf
), "%s %s %s\n",
243 sha1_to_hex(cmd
->old_sha1
),
244 sha1_to_hex(cmd
->new_sha1
),
246 if (write_in_full(proc
.in
, buf
, n
) != n
)
252 finish_async(&muxer
);
253 return finish_command(&proc
);
256 static int run_update_hook(struct command
*cmd
)
258 static const char update_hook
[] = "hooks/update";
260 struct child_process proc
;
263 if (access(update_hook
, X_OK
) < 0)
266 argv
[0] = update_hook
;
267 argv
[1] = cmd
->ref_name
;
268 argv
[2] = sha1_to_hex(cmd
->old_sha1
);
269 argv
[3] = sha1_to_hex(cmd
->new_sha1
);
272 memset(&proc
, 0, sizeof(proc
));
274 proc
.stdout_to_stderr
= 1;
275 proc
.err
= use_sideband
? -1 : 0;
278 code
= start_command(&proc
);
282 copy_to_sideband(proc
.err
, -1, NULL
);
283 return finish_command(&proc
);
286 static int is_ref_checked_out(const char *ref
)
288 if (is_bare_repository())
293 return !strcmp(head_name
, ref
);
296 static char *refuse_unconfigured_deny_msg
[] = {
297 "By default, updating the current branch in a non-bare repository",
298 "is denied, because it will make the index and work tree inconsistent",
299 "with what you pushed, and will require 'git reset --hard' to match",
300 "the work tree to HEAD.",
302 "You can set 'receive.denyCurrentBranch' configuration variable to",
303 "'ignore' or 'warn' in the remote repository to allow pushing into",
304 "its current branch; however, this is not recommended unless you",
305 "arranged to update its work tree to match what you pushed in some",
308 "To squelch this message and still keep the default behaviour, set",
309 "'receive.denyCurrentBranch' configuration variable to 'refuse'."
312 static void refuse_unconfigured_deny(void)
315 for (i
= 0; i
< ARRAY_SIZE(refuse_unconfigured_deny_msg
); i
++)
316 rp_error("%s", refuse_unconfigured_deny_msg
[i
]);
319 static char *refuse_unconfigured_deny_delete_current_msg
[] = {
320 "By default, deleting the current branch is denied, because the next",
321 "'git clone' won't result in any file checked out, causing confusion.",
323 "You can set 'receive.denyDeleteCurrent' configuration variable to",
324 "'warn' or 'ignore' in the remote repository to allow deleting the",
325 "current branch, with or without a warning message.",
327 "To squelch this message, you can set it to 'refuse'."
330 static void refuse_unconfigured_deny_delete_current(void)
334 i
< ARRAY_SIZE(refuse_unconfigured_deny_delete_current_msg
);
336 rp_error("%s", refuse_unconfigured_deny_delete_current_msg
[i
]);
339 static void merge_worktree(unsigned char *sha1
)
341 const char *update_refresh
[] = {
342 "update-index", "--refresh", NULL
344 const char *read_tree
[] = {
345 "read-tree", "-u", "-m", sha1_to_hex(sha1
), NULL
347 struct child_process child
;
348 struct strbuf git_env
= STRBUF_INIT
;
351 if (is_bare_repository())
352 die ("denyCurrentBranch = updateInstead needs a worktree");
354 strbuf_addf(&git_env
, "GIT_DIR=%s", make_absolute_path(get_git_dir()));
355 env
[0] = git_env
.buf
;
358 memset(&child
, 0, sizeof(child
));
359 child
.argv
= update_refresh
;
361 child
.dir
= git_work_tree_cfg
? git_work_tree_cfg
: "..";
362 child
.stdout_to_stderr
= 1;
364 if (run_command(&child
))
365 die ("Could not refresh the index");
367 child
.argv
= read_tree
;
370 child
.stdout_to_stderr
= 0;
371 if (run_command(&child
))
372 die ("Could not merge working tree with new HEAD. Good luck.");
374 strbuf_release(&git_env
);
377 static const char *update(struct command
*cmd
)
379 const char *name
= cmd
->ref_name
;
380 unsigned char *old_sha1
= cmd
->old_sha1
;
381 unsigned char *new_sha1
= cmd
->new_sha1
;
382 struct ref_lock
*lock
;
384 /* only refs/... are allowed */
385 if (prefixcmp(name
, "refs/") || check_ref_format(name
+ 5)) {
386 rp_error("refusing to create funny ref '%s' remotely", name
);
387 return "funny refname";
390 if (is_ref_checked_out(name
)) {
391 switch (deny_current_branch
) {
395 rp_warning("updating the current branch");
398 case DENY_UNCONFIGURED
:
399 rp_error("refusing to update checked out branch: %s", name
);
400 if (deny_current_branch
== DENY_UNCONFIGURED
)
401 refuse_unconfigured_deny();
402 return "branch is currently checked out";
403 case DENY_UPDATE_INSTEAD
:
404 merge_worktree(new_sha1
);
406 case DENY_DETACH_INSTEAD
:
407 update_ref("push into current branch (detach)", "HEAD",
408 old_sha1
, NULL
, REF_NODEREF
, DIE_ON_ERR
);
413 if (!is_null_sha1(new_sha1
) && !has_sha1_file(new_sha1
)) {
414 error("unpack should have generated %s, "
415 "but I can't find it!", sha1_to_hex(new_sha1
));
419 if (!is_null_sha1(old_sha1
) && is_null_sha1(new_sha1
)) {
420 if (deny_deletes
&& !prefixcmp(name
, "refs/heads/")) {
421 rp_error("denying ref deletion for %s", name
);
422 return "deletion prohibited";
425 if (!strcmp(name
, head_name
)) {
426 switch (deny_delete_current
) {
430 rp_warning("deleting the current branch");
433 case DENY_UNCONFIGURED
:
434 if (deny_delete_current
== DENY_UNCONFIGURED
)
435 refuse_unconfigured_deny_delete_current();
436 rp_error("refusing to delete the current branch: %s", name
);
437 return "deletion of the current branch prohibited";
439 die ("Invalid denyDeleteCurrent setting");
444 if (deny_non_fast_forwards
&& !is_null_sha1(new_sha1
) &&
445 !is_null_sha1(old_sha1
) &&
446 !prefixcmp(name
, "refs/heads/")) {
447 struct object
*old_object
, *new_object
;
448 struct commit
*old_commit
, *new_commit
;
449 struct commit_list
*bases
, *ent
;
451 old_object
= parse_object(old_sha1
);
452 new_object
= parse_object(new_sha1
);
454 if (!old_object
|| !new_object
||
455 old_object
->type
!= OBJ_COMMIT
||
456 new_object
->type
!= OBJ_COMMIT
) {
457 error("bad sha1 objects for %s", name
);
460 old_commit
= (struct commit
*)old_object
;
461 new_commit
= (struct commit
*)new_object
;
462 bases
= get_merge_bases(old_commit
, new_commit
, 1);
463 for (ent
= bases
; ent
; ent
= ent
->next
)
464 if (!hashcmp(old_sha1
, ent
->item
->object
.sha1
))
466 free_commit_list(bases
);
468 rp_error("denying non-fast-forward %s"
469 " (you should pull first)", name
);
470 return "non-fast-forward";
473 if (run_update_hook(cmd
)) {
474 rp_error("hook declined to update %s", name
);
475 return "hook declined";
478 if (is_null_sha1(new_sha1
)) {
479 if (!parse_object(old_sha1
)) {
480 rp_warning("Allowing deletion of corrupt ref.");
483 if (delete_ref(name
, old_sha1
, 0)) {
484 rp_error("failed to delete %s", name
);
485 return "failed to delete";
487 return NULL
; /* good */
490 lock
= lock_any_ref_for_update(name
, old_sha1
, 0);
492 rp_error("failed to lock %s", name
);
493 return "failed to lock";
495 if (write_ref_sha1(lock
, new_sha1
, "push")) {
496 return "failed to write"; /* error() already called */
498 return NULL
; /* good */
502 static char update_post_hook
[] = "hooks/post-update";
504 static void run_update_post_hook(struct command
*commands
)
509 struct child_process proc
;
511 for (argc
= 0, cmd
= commands
; cmd
; cmd
= cmd
->next
) {
512 if (cmd
->error_string
)
516 if (!argc
|| access(update_post_hook
, X_OK
) < 0)
518 argv
= xmalloc(sizeof(*argv
) * (2 + argc
));
519 argv
[0] = update_post_hook
;
521 for (argc
= 1, cmd
= commands
; cmd
; cmd
= cmd
->next
) {
523 if (cmd
->error_string
)
525 p
= xmalloc(strlen(cmd
->ref_name
) + 1);
526 strcpy(p
, cmd
->ref_name
);
532 memset(&proc
, 0, sizeof(proc
));
534 proc
.stdout_to_stderr
= 1;
535 proc
.err
= use_sideband
? -1 : 0;
538 if (!start_command(&proc
)) {
540 copy_to_sideband(proc
.err
, -1, NULL
);
541 finish_command(&proc
);
545 static void check_aliased_update(struct command
*cmd
, struct string_list
*list
)
547 struct string_list_item
*item
;
548 struct command
*dst_cmd
;
549 unsigned char sha1
[20];
550 char cmd_oldh
[41], cmd_newh
[41], dst_oldh
[41], dst_newh
[41];
553 const char *dst_name
= resolve_ref(cmd
->ref_name
, sha1
, 0, &flag
);
555 if (!(flag
& REF_ISSYMREF
))
558 if ((item
= string_list_lookup(dst_name
, list
)) == NULL
)
561 cmd
->skip_update
= 1;
563 dst_cmd
= (struct command
*) item
->util
;
565 if (!hashcmp(cmd
->old_sha1
, dst_cmd
->old_sha1
) &&
566 !hashcmp(cmd
->new_sha1
, dst_cmd
->new_sha1
))
569 dst_cmd
->skip_update
= 1;
571 strcpy(cmd_oldh
, find_unique_abbrev(cmd
->old_sha1
, DEFAULT_ABBREV
));
572 strcat(cmd_newh
, find_unique_abbrev(cmd
->new_sha1
, DEFAULT_ABBREV
));
573 strcpy(dst_oldh
, find_unique_abbrev(dst_cmd
->old_sha1
, DEFAULT_ABBREV
));
574 strcat(dst_newh
, find_unique_abbrev(dst_cmd
->new_sha1
, DEFAULT_ABBREV
));
575 rp_error("refusing inconsistent update between symref '%s' (%s..%s) and"
576 " its target '%s' (%s..%s)",
577 cmd
->ref_name
, cmd_oldh
, cmd_newh
,
578 dst_cmd
->ref_name
, dst_oldh
, dst_newh
);
580 cmd
->error_string
= dst_cmd
->error_string
=
581 "inconsistent aliased update";
584 static void check_aliased_updates(struct command
*commands
)
587 struct string_list ref_list
= { NULL
, 0, 0, 0 };
589 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
590 struct string_list_item
*item
=
591 string_list_append(cmd
->ref_name
, &ref_list
);
592 item
->util
= (void *)cmd
;
594 sort_string_list(&ref_list
);
596 for (cmd
= commands
; cmd
; cmd
= cmd
->next
)
597 check_aliased_update(cmd
, &ref_list
);
599 string_list_clear(&ref_list
, 0);
602 static void execute_commands(struct command
*commands
, const char *unpacker_error
)
605 unsigned char sha1
[20];
607 if (unpacker_error
) {
608 for (cmd
= commands
; cmd
; cmd
= cmd
->next
)
609 cmd
->error_string
= "n/a (unpacker error)";
613 if (run_receive_hook(commands
, pre_receive_hook
)) {
614 for (cmd
= commands
; cmd
; cmd
= cmd
->next
)
615 cmd
->error_string
= "pre-receive hook declined";
619 check_aliased_updates(commands
);
621 head_name
= resolve_ref("HEAD", sha1
, 0, NULL
);
623 for (cmd
= commands
; cmd
; cmd
= cmd
->next
)
624 if (!cmd
->skip_update
)
625 cmd
->error_string
= update(cmd
);
628 static struct command
*read_head_info(void)
630 struct command
*commands
= NULL
;
631 struct command
**p
= &commands
;
633 static char line
[1000];
634 unsigned char old_sha1
[20], new_sha1
[20];
639 len
= packet_read_line(0, line
, sizeof(line
));
642 if (line
[len
-1] == '\n')
647 get_sha1_hex(line
, old_sha1
) ||
648 get_sha1_hex(line
+ 41, new_sha1
))
649 die("protocol error: expected old/new/ref, got '%s'",
653 reflen
= strlen(refname
);
654 if (reflen
+ 82 < len
) {
655 if (strstr(refname
+ reflen
+ 1, "report-status"))
657 if (strstr(refname
+ reflen
+ 1, "side-band-64k"))
658 use_sideband
= LARGE_PACKET_MAX
;
660 cmd
= xcalloc(1, sizeof(struct command
) + len
- 80);
661 hashcpy(cmd
->old_sha1
, old_sha1
);
662 hashcpy(cmd
->new_sha1
, new_sha1
);
663 memcpy(cmd
->ref_name
, line
+ 82, len
- 81);
670 static const char *parse_pack_header(struct pack_header
*hdr
)
672 switch (read_pack_header(0, hdr
)) {
674 return "eof before pack header was fully read";
676 case PH_ERROR_PACK_SIGNATURE
:
677 return "protocol error (pack signature mismatch detected)";
679 case PH_ERROR_PROTOCOL
:
680 return "protocol error (pack version unsupported)";
683 return "unknown error in parse_pack_header";
690 static const char *pack_lockfile
;
692 static const char *unpack(void)
694 struct pack_header hdr
;
698 hdr_err
= parse_pack_header(&hdr
);
701 snprintf(hdr_arg
, sizeof(hdr_arg
),
702 "--pack_header=%"PRIu32
",%"PRIu32
,
703 ntohl(hdr
.hdr_version
), ntohl(hdr
.hdr_entries
));
705 if (ntohl(hdr
.hdr_entries
) < unpack_limit
) {
707 const char *unpacker
[4];
708 unpacker
[i
++] = "unpack-objects";
709 if (receive_fsck_objects
)
710 unpacker
[i
++] = "--strict";
711 unpacker
[i
++] = hdr_arg
;
712 unpacker
[i
++] = NULL
;
713 code
= run_command_v_opt(unpacker
, RUN_GIT_CMD
);
716 return "unpack-objects abnormal exit";
718 const char *keeper
[7];
719 int s
, status
, i
= 0;
721 struct child_process ip
;
723 s
= sprintf(keep_arg
, "--keep=receive-pack %"PRIuMAX
" on ", (uintmax_t) getpid());
724 if (gethostname(keep_arg
+ s
, sizeof(keep_arg
) - s
))
725 strcpy(keep_arg
+ s
, "localhost");
727 keeper
[i
++] = "index-pack";
728 keeper
[i
++] = "--stdin";
729 if (receive_fsck_objects
)
730 keeper
[i
++] = "--strict";
731 keeper
[i
++] = "--fix-thin";
732 keeper
[i
++] = hdr_arg
;
733 keeper
[i
++] = keep_arg
;
735 memset(&ip
, 0, sizeof(ip
));
739 status
= start_command(&ip
);
741 return "index-pack fork failed";
743 pack_lockfile
= index_pack_lockfile(ip
.out
);
745 status
= finish_command(&ip
);
747 reprepare_packed_git();
750 return "index-pack abnormal exit";
754 static void report(struct command
*commands
, const char *unpack_status
)
757 struct strbuf buf
= STRBUF_INIT
;
759 packet_buf_write(&buf
, "unpack %s\n",
760 unpack_status
? unpack_status
: "ok");
761 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
762 if (!cmd
->error_string
)
763 packet_buf_write(&buf
, "ok %s\n",
766 packet_buf_write(&buf
, "ng %s %s\n",
767 cmd
->ref_name
, cmd
->error_string
);
769 packet_buf_flush(&buf
);
772 send_sideband(1, 1, buf
.buf
, buf
.len
, use_sideband
);
774 safe_write(1, buf
.buf
, buf
.len
);
775 strbuf_release(&buf
);
778 static int delete_only(struct command
*commands
)
781 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
782 if (!is_null_sha1(cmd
->new_sha1
))
788 static int add_refs_from_alternate(struct alternate_object_database
*e
, void *unused
)
792 struct remote
*remote
;
793 struct transport
*transport
;
794 const struct ref
*extra
;
797 other
= xstrdup(make_absolute_path(e
->base
));
801 while (other
[len
-1] == '/')
803 if (len
< 8 || memcmp(other
+ len
- 8, "/objects", 8))
805 /* Is this a git repository with refs? */
806 memcpy(other
+ len
- 8, "/refs", 6);
807 if (!is_directory(other
))
809 other
[len
- 8] = '\0';
810 remote
= remote_get(other
);
811 transport
= transport_get(remote
, other
);
812 for (extra
= transport_get_remote_refs(transport
);
814 extra
= extra
->next
) {
815 add_extra_ref(".have", extra
->old_sha1
, 0);
817 transport_disconnect(transport
);
822 static void add_alternate_refs(void)
824 foreach_alt_odb(add_refs_from_alternate
, NULL
);
827 int cmd_receive_pack(int argc
, const char **argv
, const char *prefix
)
829 int advertise_refs
= 0;
830 int stateless_rpc
= 0;
833 struct command
*commands
;
836 for (i
= 1; i
< argc
; i
++) {
837 const char *arg
= *argv
++;
840 if (!strcmp(arg
, "--advertise-refs")) {
844 if (!strcmp(arg
, "--stateless-rpc")) {
849 usage(receive_pack_usage
);
852 usage(receive_pack_usage
);
856 usage(receive_pack_usage
);
860 if (!enter_repo(dir
, 0))
861 die("'%s' does not appear to be a git repository", dir
);
863 if (is_repository_shallow())
864 die("attempt to push into a shallow repository");
866 git_config(receive_pack_config
, NULL
);
868 if (0 <= transfer_unpack_limit
)
869 unpack_limit
= transfer_unpack_limit
;
870 else if (0 <= receive_unpack_limit
)
871 unpack_limit
= receive_unpack_limit
;
873 if (advertise_refs
|| !stateless_rpc
) {
874 add_alternate_refs();
884 if ((commands
= read_head_info()) != NULL
) {
885 const char *unpack_status
= NULL
;
887 if (!delete_only(commands
))
888 unpack_status
= unpack();
889 execute_commands(commands
, unpack_status
);
891 unlink_or_warn(pack_lockfile
);
893 report(commands
, unpack_status
);
894 run_receive_hook(commands
, post_receive_hook
);
895 run_update_post_hook(commands
);
897 const char *argv_gc_auto
[] = {
898 "gc", "--auto", "--quiet", NULL
,
900 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
902 if (auto_update_server_info
)
903 update_server_info(0);