Pass "new_mode" to set_acl() and change its return values.
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
1/*
2 * Routines common to more than one of the rsync processes.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2009 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
20 */
21
22#include "rsync.h"
23#include "ifuncs.h"
24#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
25#include <libcharset.h>
26#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
27#include <langinfo.h>
28#endif
29
30extern int dry_run;
31extern int preserve_acls;
32extern int preserve_xattrs;
33extern int preserve_perms;
34extern int preserve_executability;
35extern int preserve_times;
36extern int am_root;
37extern int am_server;
38extern int am_sender;
39extern int am_generator;
40extern int am_starting_up;
41extern int allow_8bit_chars;
42extern int protocol_version;
43extern int uid_ndx;
44extern int gid_ndx;
45extern int inc_recurse;
46extern int inplace;
47extern int flist_eof;
48extern int file_old_total;
49extern int msgs2stderr;
50extern int keep_dirlinks;
51extern int make_backups;
52extern struct file_list *cur_flist, *first_flist, *dir_flist;
53extern struct chmod_mode_struct *daemon_chmod_modes;
54#ifdef ICONV_OPTION
55extern char *iconv_opt;
56#endif
57
58#ifdef ICONV_CONST
59iconv_t ic_chck = (iconv_t)-1;
60# ifdef ICONV_OPTION
61iconv_t ic_send = (iconv_t)-1, ic_recv = (iconv_t)-1;
62# endif
63
64static const char *default_charset(void)
65{
66# if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
67 return locale_charset();
68# elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
69 return nl_langinfo(CODESET);
70# else
71 return ""; /* Works with (at the very least) gnu iconv... */
72# endif
73}
74
75void setup_iconv(void)
76{
77 const char *defset = default_charset();
78# ifdef ICONV_OPTION
79 const char *charset;
80 char *cp;
81# endif
82
83 if (!am_server && !allow_8bit_chars) {
84 /* It's OK if this fails... */
85 ic_chck = iconv_open(defset, defset);
86
87 if (DEBUG_GTE(ICONV, 2)) {
88 if (ic_chck == (iconv_t)-1) {
89 rprintf(FINFO,
90 "msg checking via isprint()"
91 " (iconv_open(\"%s\", \"%s\") errno: %d)\n",
92 defset, defset, errno);
93 } else {
94 rprintf(FINFO,
95 "msg checking charset: %s\n",
96 defset);
97 }
98 }
99 } else
100 ic_chck = (iconv_t)-1;
101
102# ifdef ICONV_OPTION
103 if (!iconv_opt)
104 return;
105
106 if ((cp = strchr(iconv_opt, ',')) != NULL) {
107 if (am_server) /* A local transfer needs this. */
108 iconv_opt = cp + 1;
109 else
110 *cp = '\0';
111 }
112
113 if (!*iconv_opt || (*iconv_opt == '.' && iconv_opt[1] == '\0'))
114 charset = defset;
115 else
116 charset = iconv_opt;
117
118 if ((ic_send = iconv_open(UTF8_CHARSET, charset)) == (iconv_t)-1) {
119 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
120 UTF8_CHARSET, charset);
121 exit_cleanup(RERR_UNSUPPORTED);
122 }
123
124 if ((ic_recv = iconv_open(charset, UTF8_CHARSET)) == (iconv_t)-1) {
125 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
126 charset, UTF8_CHARSET);
127 exit_cleanup(RERR_UNSUPPORTED);
128 }
129
130 if (DEBUG_GTE(ICONV, 1)) {
131 rprintf(FINFO, "[%s] charset: %s\n",
132 who_am_i(), *charset ? charset : "[LOCALE]");
133 }
134# endif
135}
136
137/* This function converts the characters in the "in" xbuf into characters
138 * in the "out" xbuf. The "len" of the "in" xbuf is used starting from its
139 * "pos". The "size" of the "out" xbuf restricts how many characters can be
140 * stored, starting at its "pos+len" position. Note that the last byte of
141 * the buffer is never used, which reserves space for a terminating '\0'.
142 * We return a 0 on success or a -1 on error. An error also sets errno to
143 * E2BIG, EILSEQ, or EINVAL (see below); otherwise errno will be set to 0.
144 * The "in" xbuf is altered to update "pos" and "len". The "out" xbuf has
145 * data appended, and its "len" incremented. If ICB_EXPAND_OUT is set in
146 * "flags", the "out" xbuf will also be allocated if empty, and expanded if
147 * too small (so E2BIG will not be returned). If ICB_INCLUDE_BAD is set in
148 * "flags", any badly-encoded chars are included verbatim in the "out" xbuf,
149 * so EILSEQ will not be returned. Likewise for ICB_INCLUDE_INCOMPLETE with
150 * respect to an incomplete multi-byte char at the end, which ensures that
151 * EINVAL is not returned. Anytime "in.pos" is 0 we will reset the iconv()
152 * state prior to processing the characters. */
153int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags)
154{
155 ICONV_CONST char *ibuf;
156 size_t icnt, ocnt;
157 char *obuf;
158
159 if (!out->size && flags & ICB_EXPAND_OUT)
160 alloc_xbuf(out, 1024);
161
162 if (!in->pos)
163 iconv(ic, NULL, 0, NULL, 0);
164
165 ibuf = in->buf + in->pos;
166 icnt = in->len;
167
168 obuf = out->buf + (out->pos + out->len);
169 ocnt = out->size - (out->pos + out->len) - 1;
170
171 while (icnt) {
172 while (iconv(ic, &ibuf, &icnt, &obuf, &ocnt) == (size_t)-1) {
173 if (errno == EINTR)
174 continue;
175 if (errno == EINVAL) {
176 if (!(flags & ICB_INCLUDE_INCOMPLETE))
177 goto finish;
178 } else if (errno == EILSEQ) {
179 if (!(flags & ICB_INCLUDE_BAD))
180 goto finish;
181 } else {
182 size_t opos = obuf - out->buf;
183 if (!(flags & ICB_EXPAND_OUT)) {
184 errno = E2BIG;
185 goto finish;
186 }
187 realloc_xbuf(out, out->size + 1024);
188 obuf = out->buf + opos;
189 ocnt += 1024;
190 continue;
191 }
192 *obuf++ = *ibuf++;
193 ocnt--, icnt--;
194 }
195 }
196
197 errno = 0;
198
199 finish:
200 in->len = icnt;
201 in->pos = ibuf - in->buf;
202 out->len = obuf - out->buf - out->pos;
203
204 return errno ? -1 : 0;
205}
206#endif
207
208void send_protected_args(int fd, char *args[])
209{
210 int i;
211#ifdef ICONV_OPTION
212 int convert = ic_send != (iconv_t)-1;
213 xbuf outbuf, inbuf;
214
215 if (convert)
216 alloc_xbuf(&outbuf, 1024);
217#endif
218
219 for (i = 0; args[i]; i++) {} /* find first NULL */
220 args[i] = "rsync"; /* set a new arg0 */
221 if (DEBUG_GTE(CMD, 1))
222 print_child_argv("protected args:", args + i + 1);
223 do {
224 if (!args[i][0])
225 write_buf(fd, ".", 2);
226#ifdef ICONV_OPTION
227 else if (convert) {
228 INIT_XBUF_STRLEN(inbuf, args[i]);
229 iconvbufs(ic_send, &inbuf, &outbuf,
230 ICB_EXPAND_OUT | ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE);
231 outbuf.buf[outbuf.len] = '\0';
232 write_buf(fd, outbuf.buf, outbuf.len + 1);
233 outbuf.len = 0;
234 }
235#endif
236 else
237 write_buf(fd, args[i], strlen(args[i]) + 1);
238 } while (args[++i]);
239 write_byte(fd, 0);
240
241#ifdef ICONV_OPTION
242 if (convert)
243 free(outbuf.buf);
244#endif
245}
246
247int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
248 char *buf, int *len_ptr)
249{
250 int len, iflags = 0;
251 struct file_list *flist;
252 uchar fnamecmp_type = FNAMECMP_FNAME;
253 int ndx;
254
255 read_loop:
256 while (1) {
257 ndx = read_ndx(f_in);
258
259 if (ndx >= 0)
260 break;
261 if (ndx == NDX_DONE)
262 return ndx;
263 if (!inc_recurse || am_sender) {
264 int last;
265 if (first_flist)
266 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
267 else
268 last = -1;
269 rprintf(FERROR,
270 "Invalid file index: %d (%d - %d) [%s]\n",
271 ndx, NDX_DONE, last, who_am_i());
272 exit_cleanup(RERR_PROTOCOL);
273 }
274 if (ndx == NDX_FLIST_EOF) {
275 flist_eof = 1;
276 send_msg(MSG_FLIST_EOF, "", 0, 0);
277 continue;
278 }
279 ndx = NDX_FLIST_OFFSET - ndx;
280 if (ndx < 0 || ndx >= dir_flist->used) {
281 ndx = NDX_FLIST_OFFSET - ndx;
282 rprintf(FERROR,
283 "Invalid dir index: %d (%d - %d) [%s]\n",
284 ndx, NDX_FLIST_OFFSET,
285 NDX_FLIST_OFFSET - dir_flist->used + 1,
286 who_am_i());
287 exit_cleanup(RERR_PROTOCOL);
288 }
289
290 /* Send everything read from f_in to msg_fd_out. */
291 if (DEBUG_GTE(FLIST, 2)) {
292 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
293 who_am_i(), ndx);
294 }
295 if (!msgs2stderr)
296 negate_output_levels(); /* turn off all info/debug output */
297 send_msg_int(MSG_FLIST, ndx);
298 start_flist_forward(f_in);
299 flist = recv_file_list(f_in);
300 flist->parent_ndx = ndx;
301 stop_flist_forward();
302 if (!msgs2stderr)
303 negate_output_levels(); /* restore info/debug output */
304 }
305
306 iflags = protocol_version >= 29 ? read_shortint(f_in)
307 : ITEM_TRANSFER | ITEM_MISSING_DATA;
308
309 /* Honor the old-style keep-alive indicator. */
310 if (protocol_version < 30
311 && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
312 if (am_sender)
313 maybe_send_keepalive();
314 goto read_loop;
315 }
316
317 flist = flist_for_ndx(ndx, "read_ndx_and_attrs");
318 if (flist != cur_flist) {
319 cur_flist = flist;
320 if (am_sender) {
321 file_old_total = cur_flist->used;
322 for (flist = first_flist; flist != cur_flist; flist = flist->next)
323 file_old_total += flist->used;
324 }
325 }
326
327 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
328 fnamecmp_type = read_byte(f_in);
329 *type_ptr = fnamecmp_type;
330
331 if (iflags & ITEM_XNAME_FOLLOWS) {
332 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
333 exit_cleanup(RERR_PROTOCOL);
334 } else {
335 *buf = '\0';
336 len = -1;
337 }
338 *len_ptr = len;
339
340 if (iflags & ITEM_TRANSFER) {
341 int i = ndx - cur_flist->ndx_start;
342 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
343 rprintf(FERROR,
344 "received request to transfer non-regular file: %d [%s]\n",
345 ndx, who_am_i());
346 exit_cleanup(RERR_PROTOCOL);
347 }
348 }
349
350 *iflag_ptr = iflags;
351 return ndx;
352}
353
354/*
355 free a sums struct
356 */
357void free_sums(struct sum_struct *s)
358{
359 if (s->sums) free(s->sums);
360 free(s);
361}
362
363/* This is only called when we aren't preserving permissions. Figure out what
364 * the permissions should be and return them merged back into the mode. */
365mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
366 int exists)
367{
368 int new_mode;
369 /* If the file already exists, we'll return the local permissions,
370 * possibly tweaked by the --executability option. */
371 if (exists) {
372 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
373 if (preserve_executability && S_ISREG(flist_mode)) {
374 /* If the source file is executable, grant execute
375 * rights to everyone who can read, but ONLY if the
376 * file isn't already executable. */
377 if (!(flist_mode & 0111))
378 new_mode &= ~0111;
379 else if (!(stat_mode & 0111))
380 new_mode |= (new_mode & 0444) >> 2;
381 }
382 } else {
383 /* Apply destination default permissions and turn
384 * off special permissions. */
385 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
386 }
387 return new_mode;
388}
389
390int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
391 const char *fnamecmp, int flags)
392{
393 int updated = 0;
394 stat_x sx2;
395 int change_uid, change_gid;
396 mode_t new_mode = file->mode;
397 int inherit;
398
399 if (!sxp) {
400 if (dry_run)
401 return 1;
402 if (link_stat(fname, &sx2.st, 0) < 0) {
403 rsyserr(FERROR_XFER, errno, "stat %s failed",
404 full_fname(fname));
405 return 0;
406 }
407 init_stat_x(&sx2);
408 sxp = &sx2;
409 inherit = !preserve_perms;
410 } else
411 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
412
413 if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
414 /* We just created this directory and its setgid
415 * bit is on, so make sure it stays on. */
416 new_mode |= S_ISGID;
417 }
418
419 if (daemon_chmod_modes && !S_ISLNK(new_mode))
420 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
421
422#ifdef SUPPORT_ACLS
423 if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
424 get_acl(fname, sxp);
425#endif
426
427#ifdef SUPPORT_XATTRS
428 if (am_root < 0)
429 set_stat_xattr(fname, file, new_mode);
430 if (preserve_xattrs && fnamecmp)
431 set_xattr(fname, file, fnamecmp, sxp);
432#endif
433
434 if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
435 flags |= ATTRS_SKIP_MTIME;
436 if (!(flags & ATTRS_SKIP_MTIME)
437 && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
438 int ret = set_modtime(fname, file->modtime, F_MOD_NSEC(file), sxp->st.st_mode);
439 if (ret < 0) {
440 rsyserr(FERROR_XFER, errno, "failed to set times on %s",
441 full_fname(fname));
442 goto cleanup;
443 }
444 if (ret == 0) /* ret == 1 if symlink could not be set */
445 updated = 1;
446 else
447 file->flags |= FLAG_TIME_FAILED;
448 }
449
450 change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
451 change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
452 && sxp->st.st_gid != (gid_t)F_GROUP(file);
453#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
454 if (S_ISLNK(sxp->st.st_mode)) {
455 ;
456 } else
457#endif
458 if (change_uid || change_gid) {
459 if (DEBUG_GTE(OWN, 1)) {
460 if (change_uid) {
461 rprintf(FINFO,
462 "set uid of %s from %u to %u\n",
463 fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
464 }
465 if (change_gid) {
466 rprintf(FINFO,
467 "set gid of %s from %u to %u\n",
468 fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
469 }
470 }
471 if (am_root >= 0) {
472 if (do_lchown(fname,
473 change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
474 change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
475 /* We shouldn't have attempted to change uid
476 * or gid unless have the privilege. */
477 rsyserr(FERROR_XFER, errno, "%s %s failed",
478 change_uid ? "chown" : "chgrp",
479 full_fname(fname));
480 goto cleanup;
481 }
482 /* A lchown had been done, so we need to re-stat if
483 * the destination had the setuid or setgid bits set
484 * (due to the side effect of the chown call). */
485 if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
486 link_stat(fname, &sxp->st,
487 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
488 }
489 }
490 updated = 1;
491 }
492
493#ifdef SUPPORT_ACLS
494 /* It's OK to call set_acl() now, even for a dir, as the generator
495 * will enable owner-writability using chmod, if necessary.
496 *
497 * If set_acl() changes permission bits in the process of setting
498 * an access ACL, it changes sxp->st.st_mode so we know whether we
499 * need to chmod(). */
500 if (preserve_acls && !S_ISLNK(new_mode)) {
501 if (set_acl(fname, file, sxp, new_mode) > 0)
502 updated = 1;
503 }
504#endif
505
506#ifdef HAVE_CHMOD
507 if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
508 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
509 if (ret < 0) {
510 rsyserr(FERROR_XFER, errno,
511 "failed to set permissions on %s",
512 full_fname(fname));
513 goto cleanup;
514 }
515 if (ret == 0) /* ret == 1 if symlink could not be set */
516 updated = 1;
517 }
518#endif
519
520 if (INFO_GTE(NAME, 2) && flags & ATTRS_REPORT) {
521 if (updated)
522 rprintf(FCLIENT, "%s\n", fname);
523 else
524 rprintf(FCLIENT, "%s is uptodate\n", fname);
525 }
526 cleanup:
527 if (sxp == &sx2) {
528#ifdef SUPPORT_ACLS
529 if (preserve_acls)
530 free_acl(&sx2);
531#endif
532#ifdef SUPPORT_XATTRS
533 if (preserve_xattrs)
534 free_xattr(&sx2);
535#endif
536 }
537 return updated;
538}
539
540RETSIGTYPE sig_int(UNUSED(int val))
541{
542 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
543 * for a password, then our cleanup's sending of a SIGUSR1
544 * signal to all our children may kill ssh before it has a
545 * chance to restore the tty settings (i.e. turn echo back
546 * on). By sleeping for a short time, ssh gets a bigger
547 * chance to do the right thing. If child processes are
548 * not ssh waiting for a password, then this tiny delay
549 * shouldn't hurt anything. */
550 msleep(400);
551 exit_cleanup(RERR_SIGNAL);
552}
553
554/* Finish off a file transfer: renaming the file and setting the file's
555 * attributes (e.g. permissions, ownership, etc.). If the robust_rename()
556 * call is forced to copy the temp file and partialptr is both non-NULL and
557 * not an absolute path, we stage the file into the partial-dir and then
558 * rename it into place. This returns 1 on succcess or 0 on failure. */
559int finish_transfer(const char *fname, const char *fnametmp,
560 const char *fnamecmp, const char *partialptr,
561 struct file_struct *file, int ok_to_set_time,
562 int overwriting_basis)
563{
564 int ret;
565 const char *temp_copy_name = partialptr && *partialptr != '/' ? partialptr : NULL;
566
567 if (inplace) {
568 if (DEBUG_GTE(RECV, 1))
569 rprintf(FINFO, "finishing %s\n", fname);
570 fnametmp = fname;
571 goto do_set_file_attrs;
572 }
573
574 if (make_backups > 0 && overwriting_basis) {
575 int ok = make_backup(fname, False);
576 if (!ok)
577 return 1;
578 if (ok == 1 && fnamecmp == fname)
579 fnamecmp = get_backup_name(fname);
580 }
581
582 /* Change permissions before putting the file into place. */
583 set_file_attrs(fnametmp, file, NULL, fnamecmp,
584 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
585
586 /* move tmp file over real file */
587 if (DEBUG_GTE(RECV, 1))
588 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
589 ret = robust_rename(fnametmp, fname, temp_copy_name,
590 file->mode & INITACCESSPERMS);
591 if (ret < 0) {
592 rsyserr(FERROR_XFER, errno, "%s %s -> \"%s\"",
593 ret == -2 ? "copy" : "rename",
594 full_fname(fnametmp), fname);
595 if (!partialptr || (ret == -2 && temp_copy_name)
596 || robust_rename(fnametmp, partialptr, NULL,
597 file->mode & INITACCESSPERMS) < 0)
598 do_unlink(fnametmp);
599 return 0;
600 }
601 if (ret == 0) {
602 /* The file was moved into place (not copied), so it's done. */
603 return 1;
604 }
605 /* The file was copied, so tweak the perms of the copied file. If it
606 * was copied to partialptr, move it into its final destination. */
607 fnametmp = temp_copy_name ? temp_copy_name : fname;
608
609 do_set_file_attrs:
610 set_file_attrs(fnametmp, file, NULL, fnamecmp,
611 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
612
613 if (temp_copy_name) {
614 if (do_rename(fnametmp, fname) < 0) {
615 rsyserr(FERROR_XFER, errno, "rename %s -> \"%s\"",
616 full_fname(fnametmp), fname);
617 return 0;
618 }
619 handle_partial_dir(temp_copy_name, PDIR_DELETE);
620 }
621 return 1;
622}
623
624struct file_list *flist_for_ndx(int ndx, const char *fatal_error_loc)
625{
626 struct file_list *flist = cur_flist;
627
628 if (!flist && !(flist = first_flist))
629 goto not_found;
630
631 while (ndx < flist->ndx_start-1) {
632 if (flist == first_flist)
633 goto not_found;
634 flist = flist->prev;
635 }
636 while (ndx >= flist->ndx_start + flist->used) {
637 if (!(flist = flist->next))
638 goto not_found;
639 }
640 return flist;
641
642 not_found:
643 if (fatal_error_loc) {
644 int first, last;
645 if (first_flist) {
646 first = first_flist->ndx_start - 1;
647 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
648 } else {
649 first = 0;
650 last = -1;
651 }
652 rprintf(FERROR,
653 "File-list index %d not in %d - %d (%s) [%s]\n",
654 ndx, first, last, fatal_error_loc, who_am_i());
655 exit_cleanup(RERR_PROTOCOL);
656 }
657 return NULL;
658}
659
660const char *who_am_i(void)
661{
662 if (am_starting_up)
663 return am_server ? "server" : "client";
664 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
665}