[PR #196] [CLOSED] Supported extended attributes #1391

Closed
opened 2026-03-04 01:53:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/s3fs-fuse/s3fs-fuse/pull/196
Author: @ggtakec
Created: 6/13/2015
Status: Closed

Base: masterHead: xattr


📝 Commits (5)

  • f258a14 Supported extended attributes, initial commit
  • aac92bd Fixed wrong owner checking and return codes
  • 84fb3d8 Fixed xattr for binary value
  • 0ecf4aa Chaged codes about iterator
  • fe3abed Chaged codes about iterator etc

📊 Changes

6 files changed (+612 additions, -2 deletions)

View changed files

📝 src/common.h (+20 -0)
📝 src/common_auth.cpp (+56 -1)
📝 src/s3fs.cpp (+488 -0)
📝 src/s3fs_auth.h (+2 -1)
📝 src/string_util.cpp (+44 -0)
📝 src/string_util.h (+2 -0)

📄 Description

Supports extended attributes.
s3fs saves extended attributes to object's header "x-amz-meta-xattr" which is formatted as encoded json.

x-amz-meta-xattr: url encoded string({"key":"base64(value)","key":"base64(value)",....})

This change solves issues #166 and #169.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/s3fs-fuse/s3fs-fuse/pull/196 **Author:** [@ggtakec](https://github.com/ggtakec) **Created:** 6/13/2015 **Status:** ❌ Closed **Base:** `master` ← **Head:** `xattr` --- ### 📝 Commits (5) - [`f258a14`](https://github.com/s3fs-fuse/s3fs-fuse/commit/f258a140701f3df23f8d68c7ec53df7ff30f2030) Supported extended attributes, initial commit - [`aac92bd`](https://github.com/s3fs-fuse/s3fs-fuse/commit/aac92bd6c06007473bb3394894bd80d923983f3b) Fixed wrong owner checking and return codes - [`84fb3d8`](https://github.com/s3fs-fuse/s3fs-fuse/commit/84fb3d83d82f0b8ade0ec726e946e36980f8ed79) Fixed xattr for binary value - [`0ecf4aa`](https://github.com/s3fs-fuse/s3fs-fuse/commit/0ecf4aa6b43b7d8a6e3c5aee0cc07f08c55265dc) Chaged codes about iterator - [`fe3abed`](https://github.com/s3fs-fuse/s3fs-fuse/commit/fe3abed9f0d61feeef826479d01ecaa144dda9e0) Chaged codes about iterator etc ### 📊 Changes **6 files changed** (+612 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `src/common.h` (+20 -0) 📝 `src/common_auth.cpp` (+56 -1) 📝 `src/s3fs.cpp` (+488 -0) 📝 `src/s3fs_auth.h` (+2 -1) 📝 `src/string_util.cpp` (+44 -0) 📝 `src/string_util.h` (+2 -0) </details> ### 📄 Description Supports extended attributes. s3fs saves extended attributes to object's header "x-amz-meta-xattr" which is formatted as encoded json. ``` x-amz-meta-xattr: url encoded string({"key":"base64(value)","key":"base64(value)",....}) ``` This change solves issues #166 and #169. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:53:43 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/s3fs-fuse#1391
No description provided.