~lefteris-nikoltsios/+junk/samba-lp1016895

« back to all changes in this revision

Viewing changes to source3/lib/ldb/tools/ldbmodify.c

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
   ldb database library
3
 
 
4
 
   Copyright (C) Andrew Tridgell  2004
5
 
 
6
 
     ** NOTE! The following LGPL license applies to the ldb
7
 
     ** library. This does NOT imply that all of Samba is released
8
 
     ** under the LGPL
9
 
   
10
 
   This library is free software; you can redistribute it and/or
11
 
   modify it under the terms of the GNU Lesser General Public
12
 
   License as published by the Free Software Foundation; either
13
 
   version 3 of the License, or (at your option) any later version.
14
 
 
15
 
   This library is distributed in the hope that it will be useful,
16
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
 
   Lesser General Public License for more details.
19
 
 
20
 
   You should have received a copy of the GNU Lesser General Public
21
 
   License along with this library; if not, see <http://www.gnu.org/licenses/>.
22
 
*/
23
 
 
24
 
/*
25
 
 *  Name: ldb
26
 
 *
27
 
 *  Component: ldbmodify
28
 
 *
29
 
 *  Description: utility to modify records - modelled on ldapmodify
30
 
 *
31
 
 *  Author: Andrew Tridgell
32
 
 */
33
 
 
34
 
#include "includes.h"
35
 
#include "ldb/include/includes.h"
36
 
#include "ldb/tools/cmdline.h"
37
 
 
38
 
static void usage(void)
39
 
{
40
 
        printf("Usage: ldbmodify <options> <ldif...>\n");
41
 
        printf("Options:\n");
42
 
        printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
43
 
        printf("  -o options       pass options like modules to activate\n");
44
 
        printf("              e.g: -o modules:timestamps\n");
45
 
        printf("\n");
46
 
        printf("Modifies a ldb based upon ldif change records\n\n");
47
 
        exit(1);
48
 
}
49
 
 
50
 
/*
51
 
  process modifies for one file
52
 
*/
53
 
static int process_file(struct ldb_context *ldb, FILE *f, int *count,
54
 
                        int *failures)
55
 
{
56
 
        struct ldb_ldif *ldif;
57
 
        int ret = LDB_SUCCESS;
58
 
        
59
 
        while ((ldif = ldb_ldif_read_file(ldb, f))) {
60
 
                switch (ldif->changetype) {
61
 
                case LDB_CHANGETYPE_NONE:
62
 
                case LDB_CHANGETYPE_ADD:
63
 
                        ret = ldb_add(ldb, ldif->msg);
64
 
                        break;
65
 
                case LDB_CHANGETYPE_DELETE:
66
 
                        ret = ldb_delete(ldb, ldif->msg->dn);
67
 
                        break;
68
 
                case LDB_CHANGETYPE_MODIFY:
69
 
                        ret = ldb_modify(ldb, ldif->msg);
70
 
                        break;
71
 
                }
72
 
                if (ret != LDB_SUCCESS) {
73
 
                        fprintf(stderr, "ERR: \"%s\" on DN %s\n", 
74
 
                                ldb_errstring(ldb), ldb_dn_linearize(ldb, ldif->msg->dn));
75
 
                        (*failures)++;
76
 
                } else {
77
 
                        (*count)++;
78
 
                }
79
 
                ldb_ldif_read_free(ldb, ldif);
80
 
        }
81
 
 
82
 
        return ret;
83
 
}
84
 
 
85
 
int main(int argc, const char **argv)
86
 
{
87
 
        struct ldb_context *ldb;
88
 
        int count=0;
89
 
        int failures=0;
90
 
        int i, ret=LDB_SUCCESS;
91
 
        struct ldb_cmdline *options;
92
 
 
93
 
        ldb_global_init();
94
 
 
95
 
        ldb = ldb_init(NULL, NULL);
96
 
 
97
 
        options = ldb_cmdline_process(ldb, argc, argv, usage);
98
 
 
99
 
        if (options->argc == 0) {
100
 
                ret = process_file(ldb, stdin, &count, &failures);
101
 
        } else {
102
 
                for (i=0;i<options->argc;i++) {
103
 
                        const char *fname = options->argv[i];
104
 
                        FILE *f;
105
 
                        f = fopen(fname, "r");
106
 
                        if (!f) {
107
 
                                perror(fname);
108
 
                                exit(1);
109
 
                        }
110
 
                        ret = process_file(ldb, f, &count, &failures);
111
 
                        fclose(f);
112
 
                }
113
 
        }
114
 
 
115
 
        talloc_free(ldb);
116
 
 
117
 
        printf("Modified %d records with %d failures\n", count, failures);
118
 
 
119
 
        return ret;
120
 
}