xattrs.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. /* Support for extended attributes.
  2. Copyright (C) 2006-2023 Free Software Foundation, Inc.
  3. This file is part of GNU tar.
  4. GNU tar is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. GNU tar is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. Written by James Antill, on 2006-07-27. */
  15. #include <config.h>
  16. #include <system.h>
  17. #include <fnmatch.h>
  18. #include <quotearg.h>
  19. #include "common.h"
  20. #include "xattr-at.h"
  21. #include "selinux-at.h"
  22. #define XATTRS_PREFIX "SCHILY.xattr."
  23. #define XATTRS_PREFIX_LEN (sizeof XATTRS_PREFIX - 1)
  24. void
  25. xheader_xattr_init (struct tar_stat_info *st)
  26. {
  27. xattr_map_init (&st->xattr_map);
  28. st->acls_a_ptr = NULL;
  29. st->acls_a_len = 0;
  30. st->acls_d_ptr = NULL;
  31. st->acls_d_len = 0;
  32. st->cntx_name = NULL;
  33. }
  34. void
  35. xattr_map_init (struct xattr_map *map)
  36. {
  37. memset (map, 0, sizeof *map);
  38. }
  39. void
  40. xattr_map_free (struct xattr_map *xattr_map)
  41. {
  42. size_t i;
  43. for (i = 0; i < xattr_map->xm_size; i++)
  44. {
  45. free (xattr_map->xm_map[i].xkey);
  46. free (xattr_map->xm_map[i].xval_ptr);
  47. }
  48. free (xattr_map->xm_map);
  49. }
  50. void
  51. xattr_map_add (struct xattr_map *map,
  52. const char *key, const char *val, size_t len)
  53. {
  54. struct xattr_array *p;
  55. if (map->xm_size == map->xm_max)
  56. map->xm_map = x2nrealloc (map->xm_map, &map->xm_max,
  57. sizeof (map->xm_map[0]));
  58. p = &map->xm_map[map->xm_size];
  59. p->xkey = xstrdup (key);
  60. p->xval_ptr = xmemdup (val, len + 1);
  61. p->xval_len = len;
  62. map->xm_size++;
  63. }
  64. void
  65. xheader_xattr_add (struct tar_stat_info *st,
  66. const char *key, const char *val, size_t len)
  67. {
  68. size_t klen = strlen (key);
  69. char *xkey = xmalloc (XATTRS_PREFIX_LEN + klen + 1);
  70. char *tmp = xkey;
  71. tmp = stpcpy (tmp, XATTRS_PREFIX);
  72. stpcpy (tmp, key);
  73. xattr_map_add (&st->xattr_map, xkey, val, len);
  74. free (xkey);
  75. }
  76. void
  77. xattr_map_copy (struct xattr_map *dst, const struct xattr_map *src)
  78. {
  79. size_t i;
  80. for (i = 0; i < src->xm_size; i++)
  81. xattr_map_add (dst, src->xm_map[i].xkey,
  82. src->xm_map[i].xval_ptr,
  83. src->xm_map[i].xval_len);
  84. }
  85. struct xattrs_mask_map
  86. {
  87. const char **masks;
  88. size_t size;
  89. size_t used;
  90. };
  91. /* list of fnmatch patterns */
  92. static struct
  93. {
  94. /* lists of fnmatch patterns */
  95. struct xattrs_mask_map incl;
  96. struct xattrs_mask_map excl;
  97. } xattrs_setup;
  98. /* disable posix acls when problem found in gnulib script m4/acl.m4 */
  99. #if ! USE_ACL
  100. # undef HAVE_POSIX_ACLS
  101. #endif
  102. #ifdef HAVE_POSIX_ACLS
  103. # include "acl.h"
  104. # include <sys/acl.h>
  105. # ifdef HAVE_ACL_LIBACL_H
  106. # /* needed for numeric-owner support */
  107. # include <acl/libacl.h>
  108. # endif
  109. #endif
  110. #ifdef HAVE_POSIX_ACLS
  111. /* acl-at wrappers, TODO: move to gnulib in future? */
  112. static acl_t acl_get_file_at (int, const char *, acl_type_t);
  113. static int acl_set_file_at (int, const char *, acl_type_t, acl_t);
  114. static int file_has_acl_at (int, char const *, struct stat const *);
  115. static int acl_delete_def_file_at (int, char const *);
  116. /* acl_get_file_at */
  117. #define AT_FUNC_NAME acl_get_file_at
  118. #define AT_FUNC_RESULT acl_t
  119. #define AT_FUNC_FAIL (acl_t)NULL
  120. #define AT_FUNC_F1 acl_get_file
  121. #define AT_FUNC_POST_FILE_PARAM_DECLS , acl_type_t type
  122. #define AT_FUNC_POST_FILE_ARGS , type
  123. #include "at-func.c"
  124. #undef AT_FUNC_NAME
  125. #undef AT_FUNC_F1
  126. #undef AT_FUNC_RESULT
  127. #undef AT_FUNC_FAIL
  128. #undef AT_FUNC_POST_FILE_PARAM_DECLS
  129. #undef AT_FUNC_POST_FILE_ARGS
  130. /* acl_set_file_at */
  131. #define AT_FUNC_NAME acl_set_file_at
  132. #define AT_FUNC_F1 acl_set_file
  133. #define AT_FUNC_POST_FILE_PARAM_DECLS , acl_type_t type, acl_t acl
  134. #define AT_FUNC_POST_FILE_ARGS , type, acl
  135. #include "at-func.c"
  136. #undef AT_FUNC_NAME
  137. #undef AT_FUNC_F1
  138. #undef AT_FUNC_POST_FILE_PARAM_DECLS
  139. #undef AT_FUNC_POST_FILE_ARGS
  140. /* acl_delete_def_file_at */
  141. #define AT_FUNC_NAME acl_delete_def_file_at
  142. #define AT_FUNC_F1 acl_delete_def_file
  143. #define AT_FUNC_POST_FILE_PARAM_DECLS
  144. #define AT_FUNC_POST_FILE_ARGS
  145. #include "at-func.c"
  146. #undef AT_FUNC_NAME
  147. #undef AT_FUNC_F1
  148. #undef AT_FUNC_POST_FILE_PARAM_DECLS
  149. #undef AT_FUNC_POST_FILE_ARGS
  150. /* gnulib file_has_acl_at */
  151. #define AT_FUNC_NAME file_has_acl_at
  152. #define AT_FUNC_F1 file_has_acl
  153. #define AT_FUNC_POST_FILE_PARAM_DECLS , struct stat const *st
  154. #define AT_FUNC_POST_FILE_ARGS , st
  155. #include "at-func.c"
  156. #undef AT_FUNC_NAME
  157. #undef AT_FUNC_F1
  158. #undef AT_FUNC_POST_FILE_PARAM_DECLS
  159. #undef AT_FUNC_POST_FILE_ARGS
  160. /* convert unix permissions into an ACL ... needed due to "default" ACLs */
  161. static acl_t
  162. perms2acl (int perms)
  163. {
  164. char val[] = "user::---,group::---,other::---";
  165. /* 0123456789 123456789 123456789 123456789 */
  166. /* user */
  167. if (perms & 0400)
  168. val[6] = 'r';
  169. if (perms & 0200)
  170. val[7] = 'w';
  171. if (perms & 0100)
  172. val[8] = 'x';
  173. /* group */
  174. if (perms & 0040)
  175. val[17] = 'r';
  176. if (perms & 0020)
  177. val[18] = 'w';
  178. if (perms & 0010)
  179. val[19] = 'x';
  180. /* other */
  181. if (perms & 0004)
  182. val[28] = 'r';
  183. if (perms & 0002)
  184. val[29] = 'w';
  185. if (perms & 0001)
  186. val[30] = 'x';
  187. return acl_from_text (val);
  188. }
  189. static char *
  190. skip_to_ext_fields (char *ptr)
  191. {
  192. /* skip tag name (user/group/default/mask) */
  193. ptr += strcspn (ptr, ":,\n");
  194. if (*ptr != ':')
  195. return ptr;
  196. ++ptr;
  197. ptr += strcspn (ptr, ":,\n"); /* skip user/group name */
  198. if (*ptr != ':')
  199. return ptr;
  200. ++ptr;
  201. ptr += strcspn (ptr, ":,\n"); /* skip perms */
  202. return ptr;
  203. }
  204. /* The POSIX draft allows extra fields after the three main ones. Star
  205. uses this to add a fourth field for user/group which is the numeric ID.
  206. This function removes such extra fields by overwriting them with the
  207. characters that follow. */
  208. static char *
  209. fixup_extra_acl_fields (char *ptr)
  210. {
  211. char *src = ptr;
  212. char *dst = ptr;
  213. while (*src)
  214. {
  215. const char *old = src;
  216. size_t len = 0;
  217. src = skip_to_ext_fields (src);
  218. len = src - old;
  219. if (old != dst)
  220. memmove (dst, old, len);
  221. dst += len;
  222. if (*src == ':') /* We have extra fields, skip them all */
  223. src += strcspn (src, "\n,");
  224. if ((*src == '\n') || (*src == ','))
  225. *dst++ = *src++; /* also done when dst == src, but that's ok */
  226. }
  227. if (src != dst)
  228. *dst = 0;
  229. return ptr;
  230. }
  231. /* Set the "system.posix_acl_access/system.posix_acl_default" extended
  232. attribute. Called only when acls_option > 0. */
  233. static void
  234. xattrs__acls_set (struct tar_stat_info const *st,
  235. char const *file_name, int type,
  236. char *ptr, bool def)
  237. {
  238. acl_t acl;
  239. if (ptr)
  240. {
  241. ptr = fixup_extra_acl_fields (ptr);
  242. acl = acl_from_text (ptr);
  243. }
  244. else if (def)
  245. {
  246. /* No "default" IEEE 1003.1e ACL set for directory. At this moment,
  247. FILE_NAME may already have inherited default acls from parent
  248. directory; clean them up. */
  249. if (acl_delete_def_file_at (chdir_fd, file_name))
  250. WARNOPT (WARN_XATTR_WRITE,
  251. (0, errno,
  252. _("acl_delete_def_file_at: Cannot drop default POSIX ACLs "
  253. "for file '%s'"),
  254. file_name));
  255. return;
  256. }
  257. else
  258. acl = perms2acl (st->stat.st_mode);
  259. if (!acl)
  260. {
  261. call_arg_warn ("acl_from_text", file_name);
  262. return;
  263. }
  264. if (acl_set_file_at (chdir_fd, file_name, type, acl) == -1)
  265. /* warn even if filesystem does not support acls */
  266. WARNOPT (WARN_XATTR_WRITE,
  267. (0, errno,
  268. _ ("acl_set_file_at: Cannot set POSIX ACLs for file '%s'"),
  269. file_name));
  270. acl_free (acl);
  271. }
  272. /* Cleanup textual representation of the ACL in VAL by eliminating tab
  273. characters and comments */
  274. static void
  275. xattrs_acls_cleanup (char *val, size_t *plen)
  276. {
  277. char *p, *q;
  278. p = q = val + strcspn (val, "#\t");
  279. while (*q)
  280. {
  281. if (*q == '\t')
  282. q++;
  283. else if (*q == '#')
  284. {
  285. while (*q != '\n')
  286. q++;
  287. }
  288. else
  289. *p++ = *q++;
  290. }
  291. *plen = p - val;
  292. *p++ = 0;
  293. }
  294. static void
  295. acls_get_text (int parentfd, const char *file_name, acl_type_t type,
  296. char **ret_ptr, size_t * ret_len)
  297. {
  298. char *val = NULL;
  299. acl_t acl;
  300. if (!(acl = acl_get_file_at (parentfd, file_name, type)))
  301. {
  302. if (errno != ENOTSUP)
  303. call_arg_warn ("acl_get_file_at", file_name);
  304. return;
  305. }
  306. if (numeric_owner_option)
  307. {
  308. #ifdef HAVE_ACL_LIBACL_H
  309. val = acl_to_any_text (acl, NULL, '\n',
  310. TEXT_SOME_EFFECTIVE | TEXT_NUMERIC_IDS);
  311. #else
  312. static int warned;
  313. if (!warned)
  314. {
  315. WARN ((0, 0, _("--numeric-owner is ignored for ACLs: libacl is not available")));
  316. warned = 1;
  317. }
  318. #endif
  319. }
  320. else
  321. val = acl_to_text (acl, NULL);
  322. acl_free (acl);
  323. if (!val)
  324. {
  325. call_arg_warn ("acl_to_text", file_name);
  326. return;
  327. }
  328. *ret_ptr = xstrdup (val);
  329. xattrs_acls_cleanup (*ret_ptr, ret_len);
  330. acl_free (val);
  331. }
  332. static void
  333. xattrs__acls_get_a (int parentfd, const char *file_name,
  334. char **ret_ptr, size_t *ret_len)
  335. {
  336. acls_get_text (parentfd, file_name, ACL_TYPE_ACCESS, ret_ptr, ret_len);
  337. }
  338. /* "system.posix_acl_default" */
  339. static void
  340. xattrs__acls_get_d (int parentfd, char const *file_name,
  341. char **ret_ptr, size_t * ret_len)
  342. {
  343. acls_get_text (parentfd, file_name, ACL_TYPE_DEFAULT, ret_ptr, ret_len);
  344. }
  345. #endif /* HAVE_POSIX_ACLS */
  346. static void
  347. acls_one_line (const char *prefix, char delim,
  348. const char *aclstring, size_t len)
  349. {
  350. /* support both long and short text representation of posix acls */
  351. struct obstack stk;
  352. int pref_len = strlen (prefix);
  353. const char *oldstring = aclstring;
  354. int pos = 0;
  355. if (!aclstring || !len)
  356. return;
  357. obstack_init (&stk);
  358. while (pos <= len)
  359. {
  360. int move = strcspn (aclstring, ",\n");
  361. if (!move)
  362. break;
  363. if (oldstring != aclstring)
  364. obstack_1grow (&stk, delim);
  365. obstack_grow (&stk, prefix, pref_len);
  366. obstack_grow (&stk, aclstring, move);
  367. pos += move + 1;
  368. aclstring += move + 1;
  369. }
  370. obstack_1grow (&stk, '\0');
  371. fprintf (stdlis, "%s", (char *) obstack_finish (&stk));
  372. obstack_free (&stk, NULL);
  373. }
  374. void
  375. xattrs_acls_get (int parentfd, char const *file_name,
  376. struct tar_stat_info *st, int xisfile)
  377. {
  378. if (acls_option > 0)
  379. {
  380. #ifndef HAVE_POSIX_ACLS
  381. static int done = 0;
  382. if (!done)
  383. WARN ((0, 0, _("POSIX ACL support is not available")));
  384. done = 1;
  385. #else
  386. int err = file_has_acl_at (parentfd, file_name, &st->stat);
  387. if (err == 0)
  388. return;
  389. if (err == -1)
  390. {
  391. call_arg_warn ("file_has_acl_at", file_name);
  392. return;
  393. }
  394. xattrs__acls_get_a (parentfd, file_name,
  395. &st->acls_a_ptr, &st->acls_a_len);
  396. if (!xisfile)
  397. xattrs__acls_get_d (parentfd, file_name,
  398. &st->acls_d_ptr, &st->acls_d_len);
  399. #endif
  400. }
  401. }
  402. void
  403. xattrs_acls_set (struct tar_stat_info const *st,
  404. char const *file_name, char typeflag)
  405. {
  406. if (acls_option > 0 && typeflag != SYMTYPE)
  407. {
  408. #ifndef HAVE_POSIX_ACLS
  409. static int done = 0;
  410. if (!done)
  411. WARN ((0, 0, _("POSIX ACL support is not available")));
  412. done = 1;
  413. #else
  414. xattrs__acls_set (st, file_name, ACL_TYPE_ACCESS,
  415. st->acls_a_ptr, false);
  416. if (typeflag == DIRTYPE || typeflag == GNUTYPE_DUMPDIR)
  417. xattrs__acls_set (st, file_name, ACL_TYPE_DEFAULT,
  418. st->acls_d_ptr, true);
  419. #endif
  420. }
  421. }
  422. static void
  423. mask_map_realloc (struct xattrs_mask_map *map)
  424. {
  425. if (map->used == map->size)
  426. {
  427. if (map->size == 0)
  428. map->size = 4;
  429. map->masks = x2nrealloc (map->masks, &map->size, sizeof (map->masks[0]));
  430. }
  431. }
  432. void
  433. xattrs_mask_add (const char *mask, bool incl)
  434. {
  435. struct xattrs_mask_map *mask_map =
  436. incl ? &xattrs_setup.incl : &xattrs_setup.excl;
  437. /* ensure there is enough space */
  438. mask_map_realloc (mask_map);
  439. /* just assign pointers -- we silently expect that pointer "mask" is valid
  440. through the whole program (pointer to argv array) */
  441. mask_map->masks[mask_map->used++] = mask;
  442. }
  443. static void
  444. clear_mask_map (struct xattrs_mask_map *mask_map)
  445. {
  446. if (mask_map->size)
  447. free (mask_map->masks);
  448. }
  449. void
  450. xattrs_clear_setup (void)
  451. {
  452. clear_mask_map (&xattrs_setup.incl);
  453. clear_mask_map (&xattrs_setup.excl);
  454. }
  455. static bool xattrs_masked_out (const char *kw, bool archiving);
  456. /* get xattrs from file given by FILE_NAME or FD (when non-zero)
  457. xattrs are checked against the user supplied include/exclude mask
  458. if no mask is given this includes all the user.*, security.*, system.*,
  459. etc. available domains */
  460. void
  461. xattrs_xattrs_get (int parentfd, char const *file_name,
  462. struct tar_stat_info *st, int fd)
  463. {
  464. if (xattrs_option > 0)
  465. {
  466. #ifndef HAVE_XATTRS
  467. static int done = 0;
  468. if (!done)
  469. WARN ((0, 0, _("XATTR support is not available")));
  470. done = 1;
  471. #else
  472. static size_t xsz = 1024;
  473. static char *xatrs = NULL;
  474. ssize_t xret = -1;
  475. if (!xatrs)
  476. xatrs = x2nrealloc (xatrs, &xsz, 1);
  477. while (((fd == 0) ?
  478. ((xret =
  479. llistxattrat (parentfd, file_name, xatrs, xsz)) == -1) :
  480. ((xret = flistxattr (fd, xatrs, xsz)) == -1))
  481. && (errno == ERANGE))
  482. {
  483. xatrs = x2nrealloc (xatrs, &xsz, 1);
  484. }
  485. if (xret == -1)
  486. call_arg_warn ((fd == 0) ? "llistxattrat" : "flistxattr", file_name);
  487. else
  488. {
  489. const char *attr = xatrs;
  490. static size_t asz = 1024;
  491. static char *val = NULL;
  492. if (!val)
  493. val = x2nrealloc (val, &asz, 1);
  494. while (xret > 0)
  495. {
  496. size_t len = strlen (attr);
  497. ssize_t aret = 0;
  498. while (((fd == 0)
  499. ? ((aret = lgetxattrat (parentfd, file_name, attr,
  500. val, asz)) == -1)
  501. : ((aret = fgetxattr (fd, attr, val, asz)) == -1))
  502. && (errno == ERANGE))
  503. {
  504. val = x2nrealloc (val, &asz, 1);
  505. }
  506. if (aret != -1)
  507. {
  508. if (!xattrs_masked_out (attr, true))
  509. xheader_xattr_add (st, attr, val, aret);
  510. }
  511. else if (errno != ENOATTR)
  512. call_arg_warn ((fd == 0) ? "lgetxattrat"
  513. : "fgetxattr", file_name);
  514. attr += len + 1;
  515. xret -= len + 1;
  516. }
  517. }
  518. #endif
  519. }
  520. }
  521. #ifdef HAVE_XATTRS
  522. static void
  523. xattrs__fd_set (char const *file_name, char typeflag,
  524. const char *attr, const char *ptr, size_t len)
  525. {
  526. if (ptr)
  527. {
  528. const char *sysname = "setxattrat";
  529. int ret = -1;
  530. if (typeflag != SYMTYPE)
  531. ret = setxattrat (chdir_fd, file_name, attr, ptr, len, 0);
  532. else
  533. {
  534. sysname = "lsetxattr";
  535. ret = lsetxattrat (chdir_fd, file_name, attr, ptr, len, 0);
  536. }
  537. if (ret == -1)
  538. WARNOPT (WARN_XATTR_WRITE,
  539. (0, errno,
  540. _("%s: Cannot set '%s' extended attribute for file '%s'"),
  541. sysname, attr, file_name));
  542. }
  543. }
  544. #endif
  545. /* lgetfileconat is called against FILE_NAME iff the FD parameter is set to
  546. zero, otherwise the fgetfileconat is used against correct file descriptor */
  547. void
  548. xattrs_selinux_get (int parentfd, char const *file_name,
  549. struct tar_stat_info *st, int fd)
  550. {
  551. if (selinux_context_option > 0)
  552. {
  553. #if HAVE_SELINUX_SELINUX_H != 1
  554. static int done = 0;
  555. if (!done)
  556. WARN ((0, 0, _("SELinux support is not available")));
  557. done = 1;
  558. #else
  559. int result = fd ?
  560. fgetfilecon (fd, &st->cntx_name)
  561. : lgetfileconat (parentfd, file_name, &st->cntx_name);
  562. if (result == -1 && errno != ENODATA && errno != ENOTSUP)
  563. call_arg_warn (fd ? "fgetfilecon" : "lgetfileconat", file_name);
  564. #endif
  565. }
  566. }
  567. void
  568. xattrs_selinux_set (struct tar_stat_info const *st,
  569. char const *file_name, char typeflag)
  570. {
  571. if (selinux_context_option > 0)
  572. {
  573. #if HAVE_SELINUX_SELINUX_H != 1
  574. static int done = 0;
  575. if (!done)
  576. WARN ((0, 0, _("SELinux support is not available")));
  577. done = 1;
  578. #else
  579. const char *sysname = "setfilecon";
  580. int ret;
  581. if (!st->cntx_name)
  582. return;
  583. if (typeflag != SYMTYPE)
  584. {
  585. ret = setfileconat (chdir_fd, file_name, st->cntx_name);
  586. sysname = "setfileconat";
  587. }
  588. else
  589. {
  590. ret = lsetfileconat (chdir_fd, file_name, st->cntx_name);
  591. sysname = "lsetfileconat";
  592. }
  593. if (ret == -1)
  594. WARNOPT (WARN_XATTR_WRITE,
  595. (0, errno,
  596. _("%s: Cannot set SELinux context for file '%s'"),
  597. sysname, file_name));
  598. #endif
  599. }
  600. }
  601. static bool
  602. xattrs_matches_mask (const char *kw, struct xattrs_mask_map *mm)
  603. {
  604. int i;
  605. if (!mm->size)
  606. return false;
  607. for (i = 0; i < mm->used; i++)
  608. if (fnmatch (mm->masks[i], kw, 0) == 0)
  609. return true;
  610. return false;
  611. }
  612. #define USER_DOT_PFX "user."
  613. static bool
  614. xattrs_kw_included (const char *kw, bool archiving)
  615. {
  616. if (xattrs_setup.incl.size)
  617. return xattrs_matches_mask (kw, &xattrs_setup.incl);
  618. else if (archiving)
  619. return true;
  620. else
  621. return strncmp (kw, USER_DOT_PFX, sizeof (USER_DOT_PFX) - 1) == 0;
  622. }
  623. static bool
  624. xattrs_kw_excluded (const char *kw)
  625. {
  626. return xattrs_setup.excl.size ?
  627. xattrs_matches_mask (kw, &xattrs_setup.excl) : false;
  628. }
  629. /* Check whether the xattr with keyword KW should be discarded from list of
  630. attributes that are going to be archived/excluded (set ARCHIVING=true for
  631. archiving, false for excluding) */
  632. static bool
  633. xattrs_masked_out (const char *kw, bool archiving)
  634. {
  635. return xattrs_kw_included (kw, archiving) ? xattrs_kw_excluded (kw) : true;
  636. }
  637. void
  638. xattrs_xattrs_set (struct tar_stat_info const *st,
  639. char const *file_name, char typeflag, int later_run)
  640. {
  641. if (xattrs_option > 0)
  642. {
  643. #ifndef HAVE_XATTRS
  644. static int done = 0;
  645. if (!done)
  646. WARN ((0, 0, _("XATTR support is not available")));
  647. done = 1;
  648. #else
  649. size_t i;
  650. if (!st->xattr_map.xm_size)
  651. return;
  652. for (i = 0; i < st->xattr_map.xm_size; i++)
  653. {
  654. char *keyword = st->xattr_map.xm_map[i].xkey + XATTRS_PREFIX_LEN;
  655. /* TODO: this 'later_run' workaround is temporary solution -> once
  656. capabilities should become fully supported by it's API and there
  657. should exist something like xattrs_capabilities_set() call.
  658. For a regular files: all extended attributes are restored during
  659. the first run except 'security.capability' which is restored in
  660. 'later_run == 1'. */
  661. if (typeflag == REGTYPE
  662. && later_run == !!strcmp (keyword, "security.capability"))
  663. continue;
  664. if (xattrs_masked_out (keyword, false /* extracting */ ))
  665. /* we don't want to restore this keyword */
  666. continue;
  667. xattrs__fd_set (file_name, typeflag, keyword,
  668. st->xattr_map.xm_map[i].xval_ptr,
  669. st->xattr_map.xm_map[i].xval_len);
  670. }
  671. #endif
  672. }
  673. }
  674. void
  675. xattrs_print_char (struct tar_stat_info const *st, char *output)
  676. {
  677. int i;
  678. if (verbose_option < 2)
  679. {
  680. *output = 0;
  681. return;
  682. }
  683. if (xattrs_option > 0 || selinux_context_option > 0 || acls_option > 0)
  684. {
  685. /* placeholders */
  686. *output = ' ';
  687. output[1] = 0;
  688. }
  689. if (xattrs_option > 0 && st->xattr_map.xm_size)
  690. for (i = 0; i < st->xattr_map.xm_size; ++i)
  691. {
  692. char *keyword = st->xattr_map.xm_map[i].xkey + XATTRS_PREFIX_LEN;
  693. if (!xattrs_masked_out (keyword, false /* like extracting */ ))
  694. {
  695. *output = '*';
  696. break;
  697. }
  698. }
  699. if (selinux_context_option > 0 && st->cntx_name)
  700. *output = '.';
  701. if (acls_option > 0 && (st->acls_a_len || st->acls_d_len))
  702. *output = '+';
  703. }
  704. void
  705. xattrs_print (struct tar_stat_info const *st)
  706. {
  707. if (verbose_option < 3)
  708. return;
  709. /* selinux */
  710. if (selinux_context_option > 0 && st->cntx_name)
  711. fprintf (stdlis, " s: %s\n", st->cntx_name);
  712. /* acls */
  713. if (acls_option > 0 && (st->acls_a_len || st->acls_d_len))
  714. {
  715. fprintf (stdlis, " a: ");
  716. acls_one_line ("", ',', st->acls_a_ptr, st->acls_a_len);
  717. if (st->acls_a_len && st->acls_d_len)
  718. fprintf (stdlis, ",");
  719. acls_one_line ("default:", ',', st->acls_d_ptr, st->acls_d_len);
  720. fprintf (stdlis, "\n");
  721. }
  722. /* xattrs */
  723. if (xattrs_option > 0 && st->xattr_map.xm_size)
  724. {
  725. int i;
  726. for (i = 0; i < st->xattr_map.xm_size; ++i)
  727. {
  728. char *keyword = st->xattr_map.xm_map[i].xkey + XATTRS_PREFIX_LEN;
  729. if (!xattrs_masked_out (keyword, false /* like extracting */ ))
  730. fprintf (stdlis, " x: %lu %s\n",
  731. (unsigned long) st->xattr_map.xm_map[i].xval_len, keyword);
  732. }
  733. }
  734. }