Hello community, here is the log from the commit of package samba for openSUSE:Factory checked in at 2014-05-16 17:56:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/samba (Old) and /work/SRC/openSUSE:Factory/.samba.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "samba" Changes: -------- --- /work/SRC/openSUSE:Factory/samba/samba.changes 2014-05-02 19:21:41.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.samba.new/samba.changes 2014-05-16 17:56:28.000000000 +0200 @@ -1,0 +2,11 @@ +Mon May 5 11:44:20 UTC 2014 - [email protected] + +- Fix byte-order macros on little endian Power8; (bso#10590); (bnc#871701). + +------------------------------------------------------------------- +Fri May 2 15:37:33 UTC 2014 - [email protected] + +- Pass through vfs_btrfs snapshot manipulation requests when + "btrfs: manipulate snapshots = no" is configured; (bnc#874180). + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ samba.spec ++++++ --- /var/tmp/diff_new_pack.pUcOVl/_old 2014-05-16 17:56:29.000000000 +0200 +++ /var/tmp/diff_new_pack.pUcOVl/_new 2014-05-16 17:56:29.000000000 +0200 @@ -144,7 +144,7 @@ %else %define build_make_smp_mflags %{?jobs:-j%jobs} %endif -%define SOURCE_TIMESTAMP 3233 +%define SOURCE_TIMESTAMP 3237 %define BRANCH %{version} %global with_mitkrb5 1 %global with_dc 0 ++++++ patches.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/series new/patches/series --- old/patches/series 2014-04-25 10:56:15.000000000 +0200 +++ new/patches/series 2014-05-06 17:40:59.000000000 +0200 @@ -130,6 +130,7 @@ suse/0004-doc-describe-smbcacls-propagate-inheritance-expandin.patch -p0 # fate 316474 suse/0001-log-winbind-version-when-requested-in-winbindd-log.patch -p0 # bnc 726937 suse/0001-handle-later-iniparser-version-assigning-a-zero-leng.patch -p0 # bnc 865771 +suse/0001-byteorder-do-not-assume-PowerPC-is-big-endian.patch -p0 # bso 10590, bnc 871701 +default_passdb_backend suse/passdb_backend_defaults_smbpasswd.diff -p0 # default to smbpasswd on pre 11.2 systems diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/suse/0001-byteorder-do-not-assume-PowerPC-is-big-endian.patch new/patches/suse/0001-byteorder-do-not-assume-PowerPC-is-big-endian.patch --- old/patches/suse/0001-byteorder-do-not-assume-PowerPC-is-big-endian.patch 1970-01-01 01:00:00.000000000 +0100 +++ new/patches/suse/0001-byteorder-do-not-assume-PowerPC-is-big-endian.patch 2014-05-06 17:40:59.000000000 +0200 @@ -0,0 +1,41 @@ +From 40cc7e4c89f78ba7689569b8f411d0fc47744c11 Mon Sep 17 00:00:00 2001 +From: David Disseldorp <[email protected]> +Date: Mon, 5 May 2014 13:42:36 +0200 +Subject: [PATCH] byteorder: do not assume PowerPC is big-endian + +byteorder.h currently uses reverse-indexing ASM instructions for little +endian multi-byte storage/retrieval on PowerPC. With Power8 this is an +incorrect assumption, as it can be big or little endian. + +Bug: https://bugzilla.samba.org/show_bug.cgi?id=10590 + +Signed-off-by: David Disseldorp <[email protected]> +Reviewed-by: Christof Schmitt <[email protected]> +--- + lib/util/byteorder.h | 10 ++++++---- + 1 file changed, 6 insertions(+), 4 deletions(-) + +diff --git lib/util/byteorder.h lib/util/byteorder.h +index 58cd68a..297be52 100644 +--- lib/util/byteorder.h ++++ lib/util/byteorder.h +@@ -89,10 +89,12 @@ it also defines lots of intermediate macros, just ignore those :-) + + + /* +- on powerpc we can use the magic instructions to load/store +- in little endian +-*/ +-#if (defined(__powerpc__) && defined(__GNUC__)) ++ * On powerpc we can use the magic instructions to load/store in little endian. ++ * The instructions are reverse-indexing, so assume a big endian Power ++ * processor. Power8 can be big or little endian, so we need to explicitly ++ * check. ++ */ ++#if (defined(__powerpc__) && defined(__GNUC__) && HAVE_BIG_ENDIAN) + static __inline__ uint16_t ld_le16(const uint16_t *addr) + { + uint16_t val; +-- +1.8.4.5 + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/suse/0009-vfs-add-snapshot-create-delete-calls-to-vfs_btrfs.patch new/patches/suse/0009-vfs-add-snapshot-create-delete-calls-to-vfs_btrfs.patch --- old/patches/suse/0009-vfs-add-snapshot-create-delete-calls-to-vfs_btrfs.patch 2014-04-25 10:52:47.000000000 +0200 +++ new/patches/suse/0009-vfs-add-snapshot-create-delete-calls-to-vfs_btrfs.patch 2014-05-06 17:40:59.000000000 +0200 @@ -1,4 +1,4 @@ -From c6973dbab412d7c76bee65897a92ed2af1001292 Mon Sep 17 00:00:00 2001 +From 3a612db0cff7a913ab3b014c19657ce32d37c669 Mon Sep 17 00:00:00 2001 From: David Disseldorp <[email protected]> Date: Tue, 4 Sep 2012 15:29:58 +0200 Subject: [PATCH 09/39] vfs: add snapshot create/delete calls to vfs_btrfs @@ -9,11 +9,11 @@ Signed-off-by: David Disseldorp <[email protected]> --- - source3/modules/vfs_btrfs.c | 326 ++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 326 insertions(+) + source3/modules/vfs_btrfs.c | 389 ++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 389 insertions(+) diff --git source3/modules/vfs_btrfs.c source3/modules/vfs_btrfs.c -index 997a5de..54bef3e 100644 +index 997a5de..8290dbc 100644 --- source3/modules/vfs_btrfs.c +++ source3/modules/vfs_btrfs.c @@ -22,6 +22,8 @@ @@ -61,7 +61,7 @@ struct btrfs_cc_state { struct vfs_handle_struct *handle; -@@ -332,6 +356,303 @@ err_out: +@@ -332,6 +356,366 @@ err_out: return status; } @@ -80,7 +80,9 @@ + + if (!lp_parm_bool(SNUM(handle->conn), + "btrfs", "manipulate snapshots", false)) { -+ return NT_STATUS_NOT_SUPPORTED; ++ DEBUG(2, ("Btrfs snapshot manipulation disabled, passing\n")); ++ return SMB_VFS_NEXT_SNAP_CHECK_PATH(handle, mem_ctx, ++ service_path, base_volume); + } + + /* btrfs userspace uses this logic to confirm subvolume */ @@ -130,9 +132,11 @@ +} + +struct btrfs_snap_create_state { ++ struct vfs_handle_struct *handle; + char *base_path; + char *snap_path; +}; ++static void btrfs_snap_create_done(struct tevent_req *subreq); + +static struct tevent_req *btrfs_snap_create_send(struct vfs_handle_struct *handle, + TALLOC_CTX *mem_ctx, @@ -158,10 +162,20 @@ + if (req == NULL) { + return NULL; + } ++ create_state->handle = handle; + + if (!lp_parm_bool(SNUM(handle->conn), + "btrfs", "manipulate snapshots", false)) { -+ tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER); ++ struct tevent_req *subreq; ++ DEBUG(2, ("Btrfs snapshot manipulation disabled, passing\n")); ++ subreq = SMB_VFS_NEXT_SNAP_CREATE_SEND(handle, mem_ctx, ev, ++ base_volume, tstamp, rw); ++ if (tevent_req_nomem(subreq, req)) { ++ return tevent_req_post(req, ev); ++ } ++ tevent_req_set_callback(subreq, ++ btrfs_snap_create_done, ++ req); + return tevent_req_post(req, ev); + } + @@ -240,6 +254,26 @@ + return tevent_req_post(req, ev); +} + ++/* only used if the request is passed through to next VFS module */ ++static void btrfs_snap_create_done(struct tevent_req *subreq) ++{ ++ NTSTATUS status; ++ struct tevent_req *req = tevent_req_callback_data( ++ subreq, struct tevent_req); ++ struct btrfs_snap_create_state *create_state = tevent_req_data(req, ++ struct btrfs_snap_create_state); ++ ++ status = SMB_VFS_NEXT_SNAP_CREATE_RECV(create_state->handle, ++ subreq, ++ create_state, ++ &create_state->base_path, ++ &create_state->snap_path); ++ if (tevent_req_nterror(req, status)) { ++ return; ++ } ++ tevent_req_done(req); ++} ++ +static NTSTATUS btrfs_snap_create_recv(struct vfs_handle_struct *handle, + struct tevent_req *req, + TALLOC_CTX *mem_ctx, @@ -261,9 +295,11 @@ +} + +struct btrfs_snap_delete_state { ++ struct vfs_handle_struct *handle; + char *dest_path; + char *subvolume; +}; ++static void btrfs_snap_delete_done(struct tevent_req *subreq); + +static struct tevent_req *btrfs_snap_delete_send(struct vfs_handle_struct *handle, + TALLOC_CTX *mem_ctx, @@ -285,10 +321,20 @@ + if (req == NULL) { + return NULL; + } ++ delete_state->handle = handle; + + if (!lp_parm_bool(SNUM(handle->conn), + "btrfs", "manipulate snapshots", false)) { -+ tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER); ++ struct tevent_req *subreq; ++ DEBUG(2, ("Btrfs snapshot manipulation disabled, passing\n")); ++ subreq = SMB_VFS_NEXT_SNAP_DELETE_SEND(handle, mem_ctx, ev, ++ base_path, snap_path); ++ if (tevent_req_nomem(subreq, req)) { ++ return tevent_req_post(req, ev); ++ } ++ tevent_req_set_callback(subreq, ++ btrfs_snap_delete_done, ++ req); + return tevent_req_post(req, ev); + } + @@ -350,6 +396,23 @@ + return tevent_req_post(req, ev); +} + ++/* only used if the request is passed through to next VFS module */ ++static void btrfs_snap_delete_done(struct tevent_req *subreq) ++{ ++ NTSTATUS status; ++ struct tevent_req *req = tevent_req_callback_data( ++ subreq, struct tevent_req); ++ struct btrfs_snap_delete_state *delete_state = tevent_req_data(req, ++ struct btrfs_snap_delete_state); ++ ++ status = SMB_VFS_NEXT_SNAP_DELETE_RECV(delete_state->handle, ++ subreq); ++ if (tevent_req_nterror(req, status)) { ++ return; ++ } ++ tevent_req_done(req); ++} ++ +static NTSTATUS btrfs_snap_delete_recv(struct vfs_handle_struct *handle, + struct tevent_req *req) +{ @@ -365,7 +428,7 @@ static struct vfs_fn_pointers btrfs_fns = { .fs_capabilities_fn = btrfs_fs_capabilities, -@@ -339,6 +660,11 @@ static struct vfs_fn_pointers btrfs_fns = { +@@ -339,6 +723,11 @@ static struct vfs_fn_pointers btrfs_fns = { .copy_chunk_recv_fn = btrfs_copy_chunk_recv, .get_compression_fn = btrfs_get_compression, .set_compression_fn = btrfs_set_compression, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/suse/0023-doc-document-FSRVP-snapshots-in-vfs_btrfs-man-page.patch new/patches/suse/0023-doc-document-FSRVP-snapshots-in-vfs_btrfs-man-page.patch --- old/patches/suse/0023-doc-document-FSRVP-snapshots-in-vfs_btrfs-man-page.patch 2014-04-25 10:52:47.000000000 +0200 +++ new/patches/suse/0023-doc-document-FSRVP-snapshots-in-vfs_btrfs-man-page.patch 2014-05-06 17:40:59.000000000 +0200 @@ -1,60 +1,85 @@ -From bd4aa7b96f39f4bafe81a25157e7140b232501a9 Mon Sep 17 00:00:00 2001 +From fa3f22be97c81a62bb7766a9dd12f7126c6e61f3 Mon Sep 17 00:00:00 2001 From: David Disseldorp <[email protected]> Date: Fri, 14 Sep 2012 20:55:40 +0200 Subject: [PATCH 23/39] doc: document FSRVP snapshots in vfs_btrfs man page --- - docs-xml/manpages/vfs_btrfs.8.xml | 29 +++++++++++++++++++++++++++-- - 1 file changed, 27 insertions(+), 2 deletions(-) + docs-xml/manpages/vfs_btrfs.8.xml | 52 +++++++++++++++++++++++++++++++++++++-- + 1 file changed, 50 insertions(+), 2 deletions(-) diff --git docs-xml/manpages/vfs_btrfs.8.xml docs-xml/manpages/vfs_btrfs.8.xml -index fef4847..ff6d135 100644 +index fef4847..481cfcd 100644 --- docs-xml/manpages/vfs_btrfs.8.xml +++ docs-xml/manpages/vfs_btrfs.8.xml -@@ -51,6 +51,16 @@ +@@ -51,21 +51,69 @@ </para> <para> -+ Btrfs snapshots can be manipulated by Samba's FSRVP server, or -+ fss agent RPC service. Snapshot creation and deletion requests -+ are translated to corresponding Btrfs IOCTLs. -+ Snapshot manipulation using this module should currently be -+ considered an experimental feature. -+ The <command>vfs_snapper</command> module is instead recommended -+ for this purpose. ++ Btrfs snapshots can be manipulated by Samba's FSRVP server. ++ Snapshot manipulation using this module is currently considered ++ experimental, and is therefore disabled by default. The ++ <command>vfs_snapper</command> module is instead recommended for ++ this purpose. + </para> + + <para> This module is stackable. </para> </refsect1> -@@ -60,12 +70,27 @@ + + <refsect1> ++ <title>OPTIONS</title> ++ ++ <variablelist> ++ <varlistentry> ++ <term>btrfs: manipulate snapshots = [yes|no]</term> ++ <listitem> ++ <para> ++ When set to <emphasis>yes</emphasis>, experimental support for ++ the creation and deletion of snapshots via corresponding Btrfs ++ IOCTLs will be enabled. The default is <emphasis>no</emphasis>, ++ which means that such requests are passed through to any ++ underlying VFS module. ++ </para> ++ </listitem> ++ </varlistentry> ++ </variablelist> ++</refsect1> ++ ++<refsect1> + <title>CONFIGURATION</title> <para> <command>vfs_btrfs</command> requires that the underlying share - path is a Btrfs filesystem. + path is a Btrfs subvolume. -+ </para> + </para> +- + <programlisting> + <smbconfsection name="[share]"/> + <smbconfoption name="vfs objects">btrfs</smbconfoption> ++ <smbconfoption name="btrfs: manipulate snapshots">no</smbconfoption> ++ </programlisting> + <para> -+ The fss agent RPC service must be running in order for Samba -+ to support MS-FSRVP snapshot manipulation requests. -+ Additionally, this experimental <command>vfs_btrfs</command> -+ functionality must be explicitly enabled. ++ To use the experimental snapshot manipulation functionality ++ provided by this module, it must be explicity enabled, and ++ Samba's FSRVP server must be running. + </para> + <para> + The <command>vfs_shadow_copy</command> module can be used to + expose snapshots created by <command>vfs_btrfs</command> to + Windows Explorer as file / directory "previous versions". - </para> - - <programlisting> ++ </para> ++ ++ <programlisting> + <smbconfsection name="[global]"/> + <smbconfoption name="rpc_daemon:fssd">fork</smbconfoption> ++ <smbconfoption name="registry shares">yes</smbconfoption> ++ <smbconfoption name="include">registry</smbconfoption> + - <smbconfsection name="[share]"/> -- <smbconfoption name="vfs objects">btrfs</smbconfoption> ++ <smbconfsection name="[share]"/> + <smbconfoption name="vfs objects">btrfs shadow_copy</smbconfoption> -+ <smbconfoption name="btrfs: manipulate snapshots">false</smbconfoption> ++ <smbconfoption name="btrfs: manipulate snapshots">yes</smbconfoption> </programlisting> </refsect1> ++++++ samba-pubkey_6568B7EA.asc ++++++ --- /var/tmp/diff_new_pack.pUcOVl/_old 2014-05-16 17:56:29.000000000 +0200 +++ /var/tmp/diff_new_pack.pUcOVl/_new 2014-05-16 17:56:29.000000000 +0200 @@ -1,6 +1,6 @@ -pub 1024D/6568B7EA 2007-02-04 [expires: 2016-01-17] +pub 1024D/6568B7EA 2007-02-04 [expires: 2014-02-25] uid Samba Distribution Verification Key <[email protected]> -sub 2048g/DA6DFB44 2007-02-04 [expires: 2016-01-17] +sub 2048g/DA6DFB44 2007-02-04 [expires: 2014-02-25] -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) @@ -25,39 +25,18 @@ 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 -9GHh4cjTsKMmRsY6FDkDm8mExQ== -=nU8K +1NxUyKwF+edxuQINBEXGOWEQCADIOV4TpVG6tDXU7YD1VjJ39xduomiWTg94dIOD +g1bZHLvwUa5I1X7zsjYmghZ5Qa6WxNknbRywWnaP0POMXSMspVWnqBQTZknxdApM +bMQEko0pPJSLwdTD3+0y5ht4edf08asWdSBT5yvu5Oak4O/Sa3P5lNIe8Q3SjfqR +YiSX12uWgqeh+2JsQC50Lr9rnz9AMjKqZEx2v7XKnCkxoaFy1XwOpPjJtIuPFaSI +5OunNsuhXYeGQv7MqqA2RNuulonoHgl9J6YzRBjdmDB28Lm+JKXyJpnHDrUkK6c5 +04EuxVXXQKOvLNPwod3U89OCZ3gFZU/zeESQdpWxXMiQvUqPAAQLCACnbn0cYaXh +l3UnnQgyPYVUJV12/sAjhlgAQq08SPgTJp4GE/Jx9C2KMS7dlWYH4tjDSbeO+RLL +d26npdhiy8Cn9UvsJvDs71/+5S2PTpV16eH5QzQZkvJ/PXkkRXQ1Ilovkvt5rKie +HCx4n6QZb5td9AuAeRZp75UXERO7pXKG/57o/SzswrD/tSEKRpBKQED4eHsPohLw +3dMKDWG6hLRf4GR8v+xKLFivqXr3ttELb9xS7ZyZqz6FSFucQAp6XY/xjnR3CFzf +Kq9pHO4PwvhU53uQeI9suAHSPecxfUIcQfrCaN6K6ktEMY+KxeTJUgqB7Fnskqyn +Cof0MN2OA40+iE8EGBECAA8CGwwFAk9Ki+YFCQ1GuYUACgkQbzORW2Vot+poJACe +Mx7cSix0y3zIgTvAIty06thlOMUAn1hZdeMtAkWjaKfu8LWk/umBetPI +=49fm -----END PGP PUBLIC KEY BLOCK----- ++++++ vendor-files.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/vendor-files/tools/package-data new/vendor-files/tools/package-data --- old/vendor-files/tools/package-data 2014-04-25 11:30:42.000000000 +0200 +++ new/vendor-files/tools/package-data 2014-05-06 18:04:36.000000000 +0200 @@ -1,2 +1,2 @@ # This is an autogenrated file. -SAMBA_PACKAGE_SVN_VERSION="3233" +SAMBA_PACKAGE_SVN_VERSION="3237" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
