123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- // This code is derived from jcifs smb client library <jcifs at samba dot org>
- // Ported by J. Arturo <webmaster at komodosoft dot net>
- //
- // This library is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Lesser General Public
- // License as published by the Free Software Foundation; either
- // version 2.1 of the License, or (at your option) any later version.
- //
- // This library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- // Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public
- // License along with this library; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- using System;
- using SharpCifs.Util;
- using SharpCifs.Util.Sharpen;
- namespace SharpCifs.Dcerpc.Ndr
- {
- public class NdrBuffer
- {
- internal int Referent;
- internal Hashtable Referents;
- internal class Entry
- {
- internal int Referent;
- internal object Obj;
- }
- public byte[] Buf;
- public int Start;
- public int Index;
- public int Length;
- public NdrBuffer Deferred;
- public NdrBuffer(byte[] buf, int start)
- {
- this.Buf = buf;
- this.Start = Index = start;
- Length = 0;
- Deferred = this;
- }
- public virtual NdrBuffer Derive(int idx)
- {
- NdrBuffer nb = new NdrBuffer(Buf, Start);
- nb.Index = idx;
- nb.Deferred = Deferred;
- return nb;
- }
- public virtual void Reset()
- {
- Index = Start;
- Length = 0;
- Deferred = this;
- }
- public virtual int GetIndex()
- {
- return Index;
- }
- public virtual void SetIndex(int index)
- {
- this.Index = index;
- }
- public virtual int GetCapacity()
- {
- return Buf.Length - Start;
- }
- public virtual int GetTailSpace()
- {
- return Buf.Length - Index;
- }
- public virtual byte[] GetBuffer()
- {
- return Buf;
- }
- public virtual int Align(int boundary, byte value)
- {
- int n = Align(boundary);
- int i = n;
- while (i > 0)
- {
- Buf[Index - i] = value;
- i--;
- }
- return n;
- }
- public virtual void WriteOctetArray(byte[] b, int i, int l)
- {
- Array.Copy(b, i, Buf, Index, l);
- Advance(l);
- }
- public virtual void ReadOctetArray(byte[] b, int i, int l)
- {
- Array.Copy(Buf, Index, b, i, l);
- Advance(l);
- }
- public virtual int GetLength()
- {
- return Deferred.Length;
- }
- public virtual void SetLength(int length)
- {
- Deferred.Length = length;
- }
- public virtual void Advance(int n)
- {
- Index += n;
- if ((Index - Start) > Deferred.Length)
- {
- Deferred.Length = Index - Start;
- }
- }
- public virtual int Align(int boundary)
- {
- int m = boundary - 1;
- int i = Index - Start;
- int n = ((i + m) & ~m) - i;
- Advance(n);
- return n;
- }
- public virtual void Enc_ndr_small(int s)
- {
- Buf[Index] = unchecked((byte)(s & unchecked(0xFF)));
- Advance(1);
- }
- public virtual int Dec_ndr_small()
- {
- int val = Buf[Index] & unchecked(0xFF);
- Advance(1);
- return val;
- }
- public virtual void Enc_ndr_short(int s)
- {
- Align(2);
- Encdec.Enc_uint16le((short)s, Buf, Index);
- Advance(2);
- }
- public virtual int Dec_ndr_short()
- {
- Align(2);
- int val = Encdec.Dec_uint16le(Buf, Index);
- Advance(2);
- return val;
- }
- public virtual void Enc_ndr_long(int l)
- {
- Align(4);
- Encdec.Enc_uint32le(l, Buf, Index);
- Advance(4);
- }
- public virtual int Dec_ndr_long()
- {
- Align(4);
- int val = Encdec.Dec_uint32le(Buf, Index);
- Advance(4);
- return val;
- }
- public virtual void Enc_ndr_hyper(long h)
- {
- Align(8);
- Encdec.Enc_uint64le(h, Buf, Index);
- Advance(8);
- }
- public virtual long Dec_ndr_hyper()
- {
- Align(8);
- long val = Encdec.Dec_uint64le(Buf, Index);
- Advance(8);
- return val;
- }
- public virtual void Enc_ndr_string(string s)
- {
- Align(4);
- int i = Index;
- int len = s.Length;
- Encdec.Enc_uint32le(len + 1, Buf, i);
- i += 4;
- Encdec.Enc_uint32le(0, Buf, i);
- i += 4;
- Encdec.Enc_uint32le(len + 1, Buf, i);
- i += 4;
- try
- {
- Array.Copy(Runtime.GetBytesForString(s, "UTF-16LE"), 0, Buf, i, len
- * 2);
- }
- catch (UnsupportedEncodingException)
- {
- }
- i += len * 2;
- Buf[i++] = unchecked((byte)('\0'));
- Buf[i++] = unchecked((byte)('\0'));
- Advance(i - Index);
- }
- /// <exception cref="SharpCifs.Dcerpc.Ndr.NdrException"></exception>
- public virtual string Dec_ndr_string()
- {
- Align(4);
- int i = Index;
- string val = null;
- int len = Encdec.Dec_uint32le(Buf, i);
- i += 12;
- if (len != 0)
- {
- len--;
- int size = len * 2;
- try
- {
- if (size < 0 || size > unchecked(0xFFFF))
- {
- throw new NdrException(NdrException.InvalidConformance);
- }
- val = Runtime.GetStringForBytes(Buf, i, size, "UTF-16LE");
- i += size + 2;
- }
- catch (UnsupportedEncodingException)
- {
- }
- }
- Advance(i - Index);
- return val;
- }
- private int GetDceReferent(object obj)
- {
- Entry e;
- if (Referents == null)
- {
- Referents = new Hashtable();
- Referent = 1;
- }
- if ((e = (Entry)Referents.Get(obj)) == null)
- {
- e = new Entry();
- e.Referent = Referent++;
- e.Obj = obj;
- Referents.Put(obj, e);
- }
- return e.Referent;
- }
- public virtual void Enc_ndr_referent(object obj, int type)
- {
- if (obj == null)
- {
- Enc_ndr_long(0);
- return;
- }
- switch (type)
- {
- case 1:
- case 3:
- {
- Enc_ndr_long(Runtime.IdentityHashCode(obj));
- return;
- }
- case 2:
- {
- Enc_ndr_long(GetDceReferent(obj));
- return;
- }
- }
- }
- public override string ToString()
- {
- return "start=" + Start + ",index=" + Index + ",length=" + GetLength();
- }
- }
- }
|